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

[Movements] Passage for lvl 30-

adolfuu

New Member
Joined
Nov 4, 2011
Messages
11
Reaction score
0
Hello I wonder if you can configure a switch to only be able to pass below level 30, in a given sqm! :huh:
 
:confused: ;

Lua:
function onStepIn(cid, item, position, fromPosition)
		if getPlayerLevel(cid) >= 30 then
			doTeleportThing(cid, fromPosition, true)
			doPlayerSendCancel(cid,"Sorry, it's not possible.")
		end
    return true
end
 
you can use that items:
416, 426, 446 ,3216, 3202, 11062

- go to your map, for example in RME,
- insert insert item nr 416
- open options for that item and paste 1030 in aid position.

its the same with lever doors.

good luck
 
Back
Top