TomDark 0 Posted July 20, 2010 Hello how do I do it which the KSK-team sitting in the helicopter and then the mission ends ! it should play no role how many team members are still alive after the Mission can anyone help me ? :confused: Share this post Link to post Share on other sites
shuko 59 Posted July 20, 2010 {_x in uhName} count units kskGroupName == count units kskGroupName Share this post Link to post Share on other sites
TomDark 0 Posted July 20, 2010 I'm sorry but it does not work !! ? the groupleader is name is SP1 in the Init.sqs ==> sp1 setGroupID ["kskteam","GroupColor2"]; the helicopter name is Uh60 i put this in a trigger but it don´work {_x in uh60} count units kskteam == count units kskteam Share this post Link to post Share on other sites
kylania 568 Posted July 20, 2010 setGroupID just changes what you look like when you speak, it's not an object you can refer to the group as. Try: kskteam = group this; kskteam setGroupID ["KSK Team", "GroupColor2"] Then the count units kskteam will work, since you've aliased your group to "kskteam" via = group this. Share this post Link to post Share on other sites
TomDark 0 Posted July 20, 2010 very well , now it´s working ! thanks for the help ! Share this post Link to post Share on other sites
TomDark 0 Posted July 20, 2010 and how can i make opposite from all units in Uh60 when all units out of uh60. Share this post Link to post Share on other sites
shuko 59 Posted July 20, 2010 {_x in uh60} count units kskteam == 0 Share this post Link to post Share on other sites
TomDark 0 Posted July 21, 2010 nice, thanks again ! Share this post Link to post Share on other sites