Home   Help Search Login Register  

Author Topic: can anyone tell me why this isnt working?  (Read 602 times)

0 Members and 1 Guest are viewing this topic.

_Ross_

  • Guest
can anyone tell me why this isnt working?
« on: 18 Jun 2003, 05:06:56 »
In my mission, i am flown in by helicopter, and then a jeep picks me up. heres the script that executes

#loop
dude2 move getpos dude
~1
goto #loop

I am dude, and dude2 is the guy in the jeep coming to pick me up. For some reason this isnt working.

thanks;D

_hammy_

  • Guest
Re:can anyone tell me why this isnt working?
« Reply #1 on: 18 Jun 2003, 05:09:29 »
well... i think some of the problem is that are making OFP loop that over and over again, which might get it confused, all you need to do is exec. that command once.

what u maybe could do instead is, make a trigger or somethin that is synced with a bunch of waypoints for teh jeep, so when u go into the trigger, then he starts to follow the WPs....

;)

u could also try the domove command
Code: [Select]
dude2 domove getpos dude

but the 2 commands (domove and move) probably do the same thing...
« Last Edit: 18 Jun 2003, 05:14:12 by HAMMY »

_Ross_

  • Guest
Re:can anyone tell me why this isnt working?
« Reply #2 on: 18 Jun 2003, 05:14:31 »
thanks.;D