Bouben 3 Posted June 21, 2012 Hi, every time I execute a script via trigger which makes a group disembark they will immediately get order from their leader to board a vehicle again even if leader is out of the vehicle too. I tried unassigning them from the vehicle, I have also tried ordergetout and getout and eject commands... How to make the group disembark and never get in again? I don't recall these problems back in OFP days. Thank you in advance for a simple solution (no waypoints, please, as they are not good for my current mission). Share this post Link to post Share on other sites
AZCoder 921 Posted June 21, 2012 Use this immediately when ordered out: http://community.bistudio.com/wiki/allowGetIn Share this post Link to post Share on other sites
Shellagh 1 Posted June 21, 2012 How can I accept Secondary Operations? The HQ ask me to do a quest but I don't know how to accept it and they call me again in a sort time and tell me they will handle it... Share this post Link to post Share on other sites
twirly 11 Posted June 22, 2012 Hi,every time I execute a script via trigger which makes a group disembark they will immediately get order from their leader to board a vehicle again even if leader is out of the vehicle too. I tried unassigning them from the vehicle, I have also tried ordergetout and getout and eject commands... How to make the group disembark and never get in again? I don't recall these problems back in OFP days. Thank you in advance for a simple solution (no waypoints, please, as they are not good for my current mission). Un-assign them from the vehicle they won't get back in.... unAssignVehicle Ooops...sorry! Didn't see that you tried that. Hmmmm ...that always works for me. Share this post Link to post Share on other sites
Bouben 3 Posted June 22, 2012 Thanks for your input, guys! I'll try that and write back my results. I still wonder though, how come this is happening anyway? What was changed in this particular case from OFP times (or first Arma times?)? Share this post Link to post Share on other sites
Bouben 3 Posted June 22, 2012 So I've tried this script and...it does not work. [b]skupina = group leader this[/b] // a unit's init [b]{unAssignVehicle _x; _x action ["eject",tank]} forEach units skupina; {_x allowGetin false} forEach units skupina;[/b] // a trigger The crew will eject a tank but instantly get back in. Share this post Link to post Share on other sites
f2k sel 164 Posted June 22, 2012 (edited) This works for me. skupina = group leader this ;{unAssignVehicle _x; _x action ["eject",tank];[_x] allowGetin false} forEach units skupina; If you didn't get any error warning you may want to check out this http://forums.bistudio.com/showthread.php?121163-Script-not-working-Use-the-showScriptErrors-parameter! Edited June 22, 2012 by F2k Sel Share this post Link to post Share on other sites
Bouben 3 Posted June 22, 2012 (edited) If you didn't get any error warning you may want to check out this http://forums.bistudio.com/showthread.php?121163-Script-not-working-Use-the-showScriptErrors-parameter! Thanks, I will try. Update: Got it. [_x] solved it. Thanks a lot. Edited June 22, 2012 by Bouben update Share this post Link to post Share on other sites