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

Does anyon have this script?

Werewolf

Forbidden Ascension
Joined
Jul 15, 2012
Messages
886
Reaction score
123
I need a Tile That Stops a Player from passing it Unless they are level 30+

A Tile that works just like an EXP door, but dont have to open it :D, Does anyone have this script?
 
Lua:
function onStepIn(cid, item, position, fromPosition)
	return getPlayerLevel(cid) >= 30 and true or doTeleportThing(cid, fromPosition) and doPlayerSedTextMessage(cid, 22, "You need level 30+")
end

There you go..
 
Back
Top