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

most od lvl

konolo22

Banned User
Joined
Jan 18, 2013
Messages
86
Reaction score
1
jak zrobić plik actions, który nie pozwoli graczowi przejść przez most jeżeli niema x lvl... ?
 
Lua:
function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor)

	if isPlayer(cid) then

if not(getPlayerLevel(cid) >= 8) then
	doTeleportThing(cid, fromPosition, true)
end
end
	return true
end
 
Back
Top