president vankk
Web Developer & AuraOT Owner
- Joined
- Jul 10, 2009
- Messages
- 5,719
- Solutions
- 9
- Reaction score
- 339
I wanted a script that when you use it on a statue, you turn the city dweller
rep+:wub:
rep+:wub:
local statue = 1003 --uid statue
local pos = {x=1000,y=1000,z=7}
function onUse(cid, item, fromPosition, itemEx, toPosition)
if(itemEx.uid==statue)then
doTeleportThing(cid, pos, TRUE)
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Sorry")
end
return true
end