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

Dont lose lvl

Set
deathLostPercent = 10
to zero. Or.... use this xD
creaturescript/whateverucallit.lua
Code:
 function onLogin(cid)
    if getPlayerLevel(cid) < 8 then
    doPlayerAddExperience(cid, (getExperienceForLevel(8) - getPlayerExperience(cid)))
end
return TRUE
end
Just change level u want to not let them fall below
 
Back
Top