Home   Help Search Login Register  

Author Topic: Helo land on a roof top?  (Read 588 times)

0 Members and 1 Guest are viewing this topic.

Robinhansen

  • Guest
Helo land on a roof top?
« on: 06 Sep 2003, 21:03:14 »
How do I make a helo land on a roof top... ??? I've tried with an invisible H and the flyinheight command...but the helo simply flys to fast to land on the house...maybe the real problem is the speed and not the flyinheigh command... :) :)

Offline KJAM

  • Contributing Member
  • **
  • Why Me, Whats it For?
    • Nightstalker mod
Re:Helo land on a roof top?
« Reply #1 on: 06 Sep 2003, 22:45:02 »
try this in the waypoint and a trigger

unitname setvelocity [0,0,]

e.g

helicopter setvelocity [0,0,0] that should bring it to a total stop.

Offline LCD

  • Former Staff
  • ****
    • Everon Cartel
Re:Helo land on a roof top?
« Reply #2 on: 06 Sep 2003, 23:23:09 »
i dont think its posible 2 make AI halo realy land on da roof  :-\

but deres alwayz tricks

i saw in BAS mision dat dey made it fly high outta sight nd den just made looped setpos nd made it go down slwoly

now u know how 2 setpos right ? ;)

so wat u need 2 do is like dat

Code: [Select]
hig = num
#loop
chopername setpos [X,Z,hig]
? hig < odernum : exit
~0.1
hig = hig-0.1
goto "Loop"

X n Z r da simple things from da setpos

da hig thing u just need 2 put da startin hig nd how much u want it 2 get down every 0.1 of a sec ;)

so da startin high is in

hig = num (put number instead of num)

nd in

hig = hig-0.1

change da 0.1 for da amouont u want it 2 get down every 0.1 sec

? hig < odernum : exit

change da odernum 4 da high u want it 2 stop w/ ;)

LCD OUT
"guess being the community has downsides .." - cheetah
Help Perfecting Da Next Best Thing - O-Team Beta

GrimMonkey

  • Guest
Re:Helo land on a roof top?
« Reply #3 on: 07 Sep 2003, 02:49:52 »
I had a problem like that, to make the chopper go slower you can give it more waypoints so it slows down to reach each one. Simply put a waypoint or more along the route you wish to take  :).

Robinhansen

  • Guest
Re:Helo land on a roof top?
« Reply #4 on: 07 Sep 2003, 03:09:38 »
Well thats just how i've solved my problem... :cheers: