• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

I need urgent help (tp scroll exausted)

beenii

Well-Known Member
Joined
Jul 26, 2010
Messages
586
Solutions
1
Reaction score
58
I need this item (tp scroll), you can use only every 15 minutes,

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,13)
doSendAnimatedText(frompos,'Teleport',251)
else
doPlayerSendCancel(cid,"Tienes Pz Noob Esperate.")
doSendMagicEffect(ppos,2)
end
return 1
end
 
Code:
local temple = {x=1000, y=1000, z=7}
function onUse(cid, item, frompos, item2, topos)
    if getPlayerSkull(cid) > SKULL_GREEN then
       doPlayerSendCancel(cid,"You cannot use this with a skull.")
       return 0
    else
       doSendMagicEffect(topos,12)
       doTeleportThing(cid,temple)
       doSendMagicEffect(temple,10)
       doPlayerSendTextMessage(cid,22,"You have been teleported to the temple By the powers of this scroll.")
       doRemoveItem(item.uid,5952) 
    end
    return 1
end
If I helped you, REP ME+
If you don't know how to rep..
Click below:
REP Tonks
 
Back
Top