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

pomocy

menio53

New Member
Joined
Mar 6, 2009
Messages
96
Reaction score
0
chciałbym zrobić na mapie kratkę na której nie będzie można przejść mając lvl mniejszy niż 30 i nie wiem jak to zrobić czy ktoś wie jak to zrobić
 
W notatniku najlepiej.
Code:
local maxLevel = 30

function onStepIn(cid, item, pos, fromPos)
	if getPlayerLevel(cid) > maxLevel then
		doTeleportThing(cid, fromPos, true)
	end
end
 
Back
Top