Hi Guys
Just wondering if someone can tell me what im doing wrong
Very basic stuff im sure but as im trying to learn these things come up.
Im just trying to create a group of downed pilots via a script with a downed blackhawk. I also want to disarm the pilots and stop them from moving.
I currently have something like this.
_posmarker = [7975,7286,0];
_grpilot = createGroup (west);
_heli = createVehicle ["BlackhawkWreck", _posmarker, [], 0, "NONE"];
"SoldierWPilot" createUnit [_posmarker, _grpilot];
"SoldierWPilot" createUnit [_posmarker, _grpilot];
_pilot1 = (units _grpilot select 0);
_pilot1 disableAI "MOVE";
_pilot1 allowfleeing 0;
_pilot1 setBehaviour "Careless";
removeallweapons _pilot1;
_pilot1 setCaptive true;
commandStop _pilot1;
_pilot2 = (units _grpilot select 1);
_pilot2 disableAI "MOVE";
_pilot2 allowfleeing 0;
_pilot2 setBehaviour "Careless";
removeallweapons _pilot2;
_pilot2 setCaptive true;
commandStop _pilot2;
Im not gettin any joy..it just isnt doin anything.
Many thanks
Wedge