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

Doubt

tricolor1935

New Member
Joined
Nov 3, 2010
Messages
151
Reaction score
0
Location
Brazil
Hi guess, I want to know Where I can config the loss of level when players are dead?
I saw in vocations.xml and have lossless=30
I should put 0 ?
 
From what I've seen, the loss percentage is stored individually for each player in your database.

Using this command through phpMyAdmin (or whatever other database access software you use) would make sure no one drops any experience whatsoever.
SQL:
UPDATE `players` SET `loss_experience` = 0;
 
Back
Top