Big M O O K
New Member
- Joined
- Aug 24, 2008
- Messages
- 35
- Reaction score
- 0
I need a script like the poi gravestone (or mirror), when u use it, it teleports you to wherever the coords u set it to (x,y,z).
Thanks!
Thanks!
<action actionid="1200" script="mirrorTP.lua"/>
local pos = {x=894, y=1177, z=8} -- Change to the position you want.
function onUse(cid, item, fromPosition, itemEx, toPosition)
doTeleportThing(cid, pos, TRUE)
return TRUE
end