Home   Help Search Login Register  

Author Topic: Please tell me why this dosn't work  (Read 626 times)

0 Members and 1 Guest are viewing this topic.

Lucky Ed

  • Guest
Please tell me why this dosn't work
« on: 14 Mar 2004, 22:10:29 »
In Movein.sqs file:

;Get the driver, gunner, commander and vehcile
_driv = _this select 0
_gunn = _this select 1
_comm = _this select 2
_vehc = _this select 4

;Move the units into the vehcile
_driv MoveInDriver _vehc
_gunn MoveInGunner _vehc
_comm MoveInCommander _vehc
exit

In "On activation" field of crew commander [Crew1,Crew1_1,Crew1_2,M2A2W1] exec MoveIn.sqs

I don't see the problem.. but it must be there somewhere.... :-\
« Last Edit: 14 Mar 2004, 22:11:08 by Lucky Ed »

Offline h-

  • OFPEC Site
  • Administrator
  • *****
  • Formerly HateR_Kint
    • OFPEC
Re:Please tell me why this dosn't work
« Reply #1 on: 14 Mar 2004, 22:20:14 »
_vehc = _this select 4

 should be

_vehc = _this select 3 ::)
Project MCAR   ---   Northern Fronts   ---   Emitter 3Ditor
INFORMATIVE THREAD TITLES PLEASE. "PLEASE HELP" IS NOT ONE..
Chuck Norris can divide by zero.

Lucky Ed

  • Guest
Re:Please tell me why this dosn't work
« Reply #2 on: 14 Mar 2004, 22:30:25 »
hahaha!!!....
It's the kind of things it takes another to see... ;D

Thanks!