meade95 0 Posted March 17, 2011 I have a mission where I have a Friendly Fire Team providing security, while my team conducts the take down - I have this friendly unit using a UPS patrol script - I would like for them to join my group and move to extract once i've accomplished my task. Is there a simple way for me to do this. Thanks Share this post Link to post Share on other sites
demonized 16 Posted March 17, 2011 As i recall i think UPS changes the group name when activated, try this as a workaround. in init of leader of group place: _null = [this] execVM "script.sqf" here is script.sqf _leader = _this select 0; // here paste the line that activates UPS on the group, (the one youd normally place in initline) <code> waitUntil {objective1}; // objective1 is set to true when you have finished your task, either in a trigger or in a script. {[_x] joinSilent (group player)} foreach units (group _leader); Share this post Link to post Share on other sites