• 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

Citizen Teleport ? :S

Add this into 'actions.xml'.
LUA:
<action uniqueid="7659" script="tools/town.lua" />

Then add this into, 'scripts/tools' with the name 'town.lua'.
LUA:
function onUse(cid, item, frompos, item2, topos)

player = getThingfromPos(playerpos)
newpos = {x=435, y=483, z=7}
playerpos = getPlayerPosition(cid)

        if item.uid == 7659 then
                doPlayerSendTextMessage(cid,22,"You are now a citizen of the town Nova.")
                doPlayerSetTown(cid, TOWN ID)
                doTeleportThing(cid,newpos)
                doSendMagicEffect(playerpos,12)
        end
end

/Limannen
 
Here, take one cityzen from me
images


xD
 
Back
Top