Search the Community
Showing results for tags 'multiple triggers'.
Found 1 result
-
Two Helis takeoff after loaded, not working on Dedicated Server
ClimberBill posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I know that this has been asked before and I have tried everything that I found. My problem is that I'm not using waypoints, I'm using the unitplay for my flight path. I don't want to use a radio activation. I want to use the Condition field of a trigger or task. This is the code I have in Condition. {_x in H1} count (units group player) == {alive _x} count (units group player); This works when testing in editor both in SP & MP, but does not work on the dedicated server. What happens is the takeoff without waiting to be loaded. I have also tried.... if (isServer) then { {_x in H1} count (units group player) == {alive _x} count (units group player); }; When using the (isServer) they don't take off but when I get on the chopper it does not activate. Let me also add that I"m using two choppers and need to wait till both choppers are loaded before they can takeoff. For this I have a trigger for each chopper with the above code. Then I have another trigger with this code in the Condition... triggerActivated H1Loaded && triggerActivated H2Loaded && triggerActivated EngineStart; The EngineStart trigger is activated as the players move to the chopper. I then have two more triggers for the sqf's that have the flight path info. Again this all works in SP & MP it the editor but DOES NOT work on the dedicated server. Any help would be great, thanks in advance.