Obscure CIA_Agent 0 Posted March 15, 2006 Hey guys! Â I've been stumped again here. Â So in the mission if all five players die I want the End #2 trigger to activate and end the mission. Â This much works. Â The problem is the trigger activates when westsoldier1 (the leader) dies. Â Now I've tried linking the trigger to the group and using the 'whole group' activation, but that makes it so when any player dies the trigger is activated. This is where I'm at right now: not (alive westsoldier1); and not (alive westsoldier2); and not (alive westsoldier3); and not (alive westsoldier4); and not (alive westsoldier5); This makes it so when westsoldier1 dies the mission ends. Â However I want all the players dead before the mission ends. I'm sure one of you savages knows what I'm doing wrong. Â Any suggestions? Thanks, CIA Share this post Link to post Share on other sites
Metal Heart 0 Posted March 15, 2006 I'm quite sure it's the semicolons. Try like this: not alive westsoldier1 and not alive westsoldier2 and not alive westsoldier3 and not alive westsoldier4 and not alive westsoldier5 Share this post Link to post Share on other sites
SevenBEF 0 Posted March 15, 2006 or use Quote[/b] ]("alive _x" count [westsoldier1,westsoldier2,westsoldier3,westsoldier4,westsoldier5]) == 0; Share this post Link to post Share on other sites