As Sel says some of the modules have inits for when the vehicles (virtual) or crates (supply drop) are spawned on certain providers. or use the variables the support modules store on the player .... e.g [ "supportCalled", "onEachFrame", { if ((player getVariable "BIS_SUPP_request") select 0 != "" && count ((player getVariable "BIS_SUPP_request") select 1) == 3 && (player getVariable "BIS_SUPP_selectedProvider") getVariable "BIS_SUPP_supporting") then { hint "support called"; //do what ever here }; } ] call BIS_fnc_addStackedEventHandler; //has a type of support been selected (player getVariable "BIS_SUPP_request") select 0 != "" //have valid coordinates been choosen count ((player getVariable "BIS_SUPP_request") select 1) == 3 //is the choosen provider activated and supporting (player getVariable "BIS_SUPP_selectedProvider") getVariable "BIS_SUPP_supporting"
    • Thanks
    1