Aculaud 0 Posted February 7, 2002 How do i get a squad of soldiers to attack on my command only? Iv tried using a radio alpha trigger and synching it to their wp, but they still go before i say so. Share this post Link to post Share on other sites
iMoRtAliS 0 Posted February 8, 2002 Use a bool variable On ur alpha trigger ON ACTIVATION: LaunchAttack = TRUE; And on your waypoint CONDITION: LaunchAttack = TRUE; Share this post Link to post Share on other sites
Aculaud 0 Posted February 8, 2002 when i try to put LaunchAttack = TRUE; in the condition of my waypoint, it gives me an Unknown operater error message. Share this post Link to post Share on other sites
Intruder 0 Posted February 8, 2002 UnitName SetCombatMode "Mode" UnitName is the name of the unit to modify Mode is the combat mode : "BLUE"=Never Fire "GREEN"=Hold Fire "WHITE"=Hold Fire, Engage At Will "YELLOW"=Open Fire (stay where you are at) "RED"=Open Fire, Engage At Will (seek targets but stay near leader) Share this post Link to post Share on other sites
Aculaud 0 Posted February 8, 2002 thanks, but where am i supposed to put that? Share this post Link to post Share on other sites
Damage Inc 0 Posted February 8, 2002 In a triggers' On Activation field. Share this post Link to post Share on other sites
Aculaud 0 Posted February 8, 2002 yeah, but that doesnt keep them from following their wp, does it? they're still gonna go before i say so, i would think that just a combat mode change would only effect the speed that they get there. Share this post Link to post Share on other sites
Intruder 0 Posted February 9, 2002 If you want them to stop at a WP, simply sync that WP to a trigger, and when that trigger is activated they will move to their next WP. Share this post Link to post Share on other sites
mahuja 12 Posted February 11, 2002 </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (Aculaud @ Feb. 08 2002,04:19)</td></tr><tr><td id="QUOTE">when i try to put   LaunchAttack = TRUE;    in the condition of my waypoint, it gives me an Unknown operater error message.<span id='postcolor'> = is an assignment operator. Use it when you need to set a variable. == is a comparison operator. Use it when you need to compare to values. Share this post Link to post Share on other sites