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

Max lvl

Czaku

Banned User
Joined
Mar 24, 2010
Messages
177
Reaction score
1
hej koledzy pomoże mi ktoś zmienić lvl na max 40?, bardzo mi się to przyda, jak nie chcecie pomuc naprowadźcie mnie plx
Z góry dzięki
a tak przy okazji naprowadzi ktoś gdzie zmienie też max lvl i skilki??
Wasz czak
 
function onAdvance(cid)
if getPlayerLevel(cid) >= 40 then
doPlayerAddExperience(cid, (getExperienceForLevel(40) - getPlayerExperience(cid)))
end
return true
end

łap to i dawaj repa.
 
Moje lepsze
Lua:
function onAdvance(cid, skill, oldLevel, newLevel)
	if(newLevel > 40 and skill == SKILL_LEVEL) then
		return false
	end
return true
end

Joł
 
Back
Top