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:
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