• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Need teleport when push the piano

Lua:
function onUse(cid, item, frompos, item2, topos)
pos = {x=x, y=y, z=z}
   if item.uid == 9639 then
      doTeleportThing(cid,pos)
      doSendMagicEffect(pos,CONST_ME_TELEPORT)
    end
return 1
end
 
Back
Top