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

temple teleport scroll

agomez

Member
Joined
Jan 28, 2009
Messages
211
Reaction score
5
how can i make you can use the temple teleport scroll if yo uare in a No Logout Tool
i have this temple teleport scroll:
PHP:
function onUse(cid, item, frompos, item2, topos)
ppos = getPlayerPosition(cid)
temple = getPlayerMasterPos(cid)
if (getCreatureCondition(cid, CONDITION_INFIGHT) == FALSE) then
doTeleportThing(cid, temple, TRUE)
doSendMagicEffect(ppos,10)	
doSendAnimatedText(frompos,'Teleport!',198)
else
doPlayerSendCancel(cid,"You can't teleport immediately after fight.")
doSendMagicEffect(ppos,2)
end
return 1
end
 
Back
Top