ID:175878
![]() Mar 1 2003, 8:37 pm
|
|
Is it possible to make a warp like in Earth and Beyond where if you select a target then if you click warp you move REALLY fast to it. If this is possible in byond how could i do this or what should i look up?
|
no i dont want to teleport the topic is Warping not teleporting...i want it so when you choose a target you move REALLY fast to it
|
Zlegend2 wrote:
Oh, u want to teleport when u click a spot to teleport to? No, he wants to move there quickly but not instantaneously. Lummox JR |
How could i make it so that if you click auto pilot and enter the coords that it goes around things with a density of 1?
|
It would make common sense that your air craft already has a density of 0, if so it will pass over any object.
|
mob/var/coordinanceY
mob/var/coordinanceX
mob/var/coordinanceZ
mob/verb/teleport()
coordinanceX = input("X coordinant?") as num|null
coordinanceY = input("Y coordinant?") as num|null
coordinanceZ = input("Z coordinant?") as num|null
src.loc = (locate(coordinanceX,coordinanceY,coordinanceZ))
return..()
I compiled that code and it works. I made it just for u.