Hello im trying to do something, but i can do it one time im not able to do it repeatedly.
Just an exemple of what i want to do :
I want to deliver 2 item in one place for create one, for exemple an Offroad + a static HMG and that create an Offroad Hmg.
So i use 3 trigger to do this :
1st trigger :
trigger name : offroad
condition : {typeof _x isEqualTo "C_Offroad_01_F"} count thisList > 0
activation : _vehicles = nearestObjects [offroad, ["C_Offroad_01_F"], 100];
{deleteVehicle _x} forEach thisList;
2nd trigger :
trigger name : hmg
condition : {typeof _x isEqualTo "B_HMG_01_high_F"} count thisList > 0
activation : _vehicles = nearestObjects [hmg, ["B_HMG_01_high_F"], 100];
{deleteVehicle _x} forEach thisList;
3rd trigger :
no name
condition : TriggerActivated offroad AND TriggerActivated hmg;
activation : _veh = "B_G_Offroad_01_armed_F" createVehicle getMarkerPos "veh";
When i deliver the vehicle and the static weapon i got an offroad hmg that spawn, but not work on repeat trigger.
My question it is possible to do that with one trigger, a working line for multiple condition.