Page 1 of 1
Teleport to a specific location
Posted: 2004-10-19 02:07:29
by supimpa
i would like to know how i can set a hotkey to cast the spell teleport into a specific tile.
Re: Teleport to a specific location
Posted: 2004-10-20 00:49:00
by GrayLord
supimpa wrote:i would like to know how i can set a hotkey to cast the spell teleport into a specific tile.
Code: Select all
uo.waittargettile(tilenum,x,y,z)
uo.cast("Teleport")
where:
x,y,z - coordinates
and tilenum - number of that tile, where do you needed to teleport.
for example, if x=100, y=150, z=3, and tilenum=6040, then
in hotkeys you may set:
waittargettile 6040 100 150 3 ; cast 'Teleport'
Posted: 2004-10-20 01:01:19
by supimpa
got it... thanks...