Hinny 0 Posted March 26, 2004 Okay, I have a mission where you are a chopper pilot and have to transport some troops to an area. However I can't get rid of the yellow waypoint box showing me exactly where to go even in veteran mode. Is there any other way to get to a point and make the people get out (preferably not an eject script) without having the yellow box. OR is there a way to get rid of the box that I'm just not aware of? Share this post Link to post Share on other sites
MrZig 0 Posted March 26, 2004 Try "unnassignvehicle _X" foreach units grp1 Share this post Link to post Share on other sites
MrZig 0 Posted March 26, 2004 Or even, lemme show you <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">_grp = _this select 0 _helo = _this select 1 @getpos _helo select 2 <2 _aunits = units _grp _i = 0 _Max = count _aunits #Here (_aunits select _i) action ["EJECT",_helo] unassignvehicle (_aunits select _i) _i=_i+1 ~1 ?_Max>_i:goto "Here" exit It'll eject em at <2 altitude, but not all at once so it'll look good. Share this post Link to post Share on other sites
Hinny 0 Posted March 26, 2004 Try"unnassignvehicle _X" foreach units grp1 Cheers, that's exactly what I was looking for Share this post Link to post Share on other sites