Aculaud 0 Posted February 8, 2002 I need a trigger that will make a number of infantry units enter a vehicle, and go to a location when a certain unit dies. Share this post Link to post Share on other sites
Rob 1 Posted February 8, 2002 make a trigger and make the radius big enough so that you make sure that then unit dies in that area and select "not present". Group it with the unit so that only he activates it and sync it with the get in wp for the other units so that they dont get in until he dies... if that doesn't work try adding a move wp right on top of the leader and sync it with that wp so he doesn't move on until the unit dies. Share this post Link to post Share on other sites
Acid 0 Posted February 9, 2002 heres another way, might be easier. have the units that will get in the vehicle grouped together so that they are commanded by one of the infantry units (the officer for exmaple) then select the officer unit and create a move waypoint as close as you can to the officer unit. In the condition field of the waypoint settings type something like: getinapc==1 now with this new waypoint selected create a get in waypoint on the vehicle that you want your infantry units to board. now give the infantry, unit whos death will activate the trigger, a name in the name field of its settings. something like infdeath or whatever. now create a trigger near that unit that will die. set the type to switch, leave activation as none. In the condition field type: not (alive infdeath) and in the on activation field of the trigger type: getinapc=1 The not (alive infdeath) variable will activate the trigger when the unit called infdeath is killed (infdeath can be replacd with any name) and when the trigger is activated it will set the getinapc variable to true which will allow the infantry to follow their waypoint path and get in the apc. hope this helps Share this post Link to post Share on other sites