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

Under level x to enter teleport

Robbiet6

New Member
Joined
Feb 22, 2009
Messages
83
Reaction score
1
Has anybody got a working script or can make me one, where you need to be
..Below level 15 to enter a the teleport i asign it to.
aprreciate it if u do thanks.
 
Lua:
function onStepIn(cid, item, position, fromPosition)
		if isPlayer(cid) == TRUE and getPlayerLevel(cid) < 15 then
			doTeleportThing(cid, {x = 111, y = 1111, z = 1})
			doSendMagicEffect({x = 111, y = 1111, z = 1}, 15)
			doPlayerSendTextMessage(cid, 25, 'Blahblahblah')
		end
	return true
end
 
Back
Top