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

How to make this.

julianfern94

New Member
Joined
Dec 26, 2012
Messages
168
Reaction score
4
Im using thais pvp war 8.6 with bots i set start lvl 150, but when people dead they get low lvl than 150 im saying that i want to people cant be less of lvl 150 anyway if they die.. help
 
Add this to your login.lua.
Code:
if getPlayerLevel(cid) < 150 then
    doPlayerAddExperience(cid, getExperienceForLevel(150) - getPlayerExperience(cid))
end
 
Back
Top Bottom