• 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!

change residence avesta

Ganjita

Active Member
Joined
Dec 15, 2009
Messages
494
Reaction score
37
Hello, i have that script for change the residence of player

Code:
--Example change voc and masterpos--

function onUse(cid, item, frompos, item2, topos)
    if item.uid==50101 then
        newpos = {x=32369, y=32241, z=7}
        doPlayerSetTown(cid, 4)
        doPlayerSendTextMessage(cid,22,"You have changed your residence to Thais")
        doTeleportThing(cid,newpos)
        doSendMagicEffect(newpos,12)
        return 1
    end
end


but that dont found, i put the unique id 50101, and action 50101 to teleport, but that dont found someone can help me?
 
Back
Top