natunobilis 0 Posted April 5, 2020 In my mission, when a Bluefor player enters an area, the trigger causes Independent AI forces to respawn. Altogether 16 Independent soldiers. The problem is that when another Bluefor member also enters the area, another 16 Independent AI enters the game. What should I do to be born only 16 enemies for the entire Bluefor team? Trigger Config Tipe: None Activation: BLUEFOR Activation Type: Present Repeatable: DISABLED Server Only: DISABLED My code: (How to perform this only 1 time to the side (Team). But it can be activated by any player on the team.) if (!isDedicated) then {null = [this] execVM "Gatilhos\Defesa\Alpha\Ind\Squad1.sqf";}; Share this post Link to post Share on other sites
Harzach 2517 Posted April 5, 2020 Enable the "Server Only" option. 1 Share this post Link to post Share on other sites
opusfmspol 280 Posted April 5, 2020 And If mission is intended for dedicated server use, also remove the if-then condition to run the script. Just execute the script. By enabling 'Server Only' option, and letting the (!isDedicated) condition remain, the script would never get executed on a dedicated server. But would work fine for SP and MP hosted, the host's trigger would execute the script when activated. 1 1 Share this post Link to post Share on other sites