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

Teleportation Book

Velory

New Member
Joined
Jul 7, 2011
Messages
44
Reaction score
0
ENG


Hi need a script: if you lose the protection zone, you can press a special itemke 2323 and assume it will teleport you to the temple, and if you have a protection zone does not teleport.

Using flies repute.






PL



Witajcie potrzebuje skrypta : jeśli zgubisz protection zone możesz nacisnąć na specjalną itemke założmy 2323 i teleprtuje cie do temple, a jeśli masz protection zone to nie teleportuje

Za pomoc leci reput.
 
Lua:
function onUse(cid, item, frompos, item2, topos)
		if isPlayerPzLocked(cid) then
			doPlayerSendCancel(cid, "You cannot use this item while protection zone locked!")
			doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POOF)
		else
			doTeleportThing(cid, getPlayerTownID(cid))
		end
	return true
end
Put it in actions/scripts

And in actions.xml:
XML:
<action itemid="2323" script="YOURSCRIPTNAME.lua" />
 
Back
Top