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

problem with citzenship portal

samneill

New Member
Joined
Jul 19, 2009
Messages
26
Reaction score
0
Location
Brasil
hi guys!

i mappead an isle of solitude in my ot (8.60, real map). i took 2 weeks of hard word, searching for prints, etc, to make the perfect island. the work is going to the end, and so.... a problem:

how can i make a portal of citzenship????

hope someone can help me :p

ah, as soon as it finished, i´ll post print screens and i´ll be glad to share!

thx for help.
 
Lua:
function onStepIn(cid, item, pos)

local town = {x=000, y=000, z=0}

    if item.actionid == 30022 then
        doPlayerSetTown(cid,2) 
		doTeleportThing(cid, town)
        doSendMagicEffect(getCreaturePosition(cid),12)
		doPlayerSendTextMessage(cid,22, "You are now a citizen of TOWNNAME")
        end
    return 1
end
 
hi ho my great friend Crolly!

thank you very very much for this!

i have on last question: what folder i should put this script?

thx!
 
Back
Top