Home   Help Search Login Register  

Author Topic: GetIn script  (Read 867 times)

0 Members and 3 Guests are viewing this topic.

McHale

  • Guest
GetIn script
« on: 27 Sep 2003, 00:43:04 »
Anyone know how I can get a unit to move into a vehicle by only using scripts? I tried the following:

unit assignAsDriver _x;

But sod all happens.

Help?  ???

gundernak

  • Guest
Re:GetIn script
« Reply #1 on: 27 Sep 2003, 00:47:12 »
this is what you want:

unitname assignAsDriver vehiclename;

[unitname] orderGetIn true;

Mr.BoDean

  • Guest
Re:GetIn script
« Reply #2 on: 27 Sep 2003, 01:25:54 »
this is what you want:

unitname assignAsDriver vehiclename;

[unitname] orderGetIn true;

You can also use the MoveIn command

unitname moveInCargo vehiclename
unitname moveInDriver vehiclename
unitname moveInGunner vehiclename

but it is more of a "jump" into vehicle if you will see the action, rather than the more realistic version Gundy noted    ;)

You may also need to utilize the UnassignVehicle command when using these to get your units out

UnassignVehicle UnitName

or "unassignVehicle _x" foreach units thislist   ....don't remember syntax   :-X

McHale

  • Guest
Re:GetIn script
« Reply #3 on: 27 Sep 2003, 01:42:28 »
ub3r, I always wanted to know how to do that. THanks  8)