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

Windows Small problem

Gkatt

New Member
Joined
Mar 24, 2009
Messages
413
Reaction score
4
Hello my Vocations.xml was fucked up so now when a mage level 13 is supposed to have for example 20 hp he gave 40hp

How can i set all characters on my database to their normal hp?

thanks.
 
using kito2's health formula query :
SQL:
UPDATE `players` SET `healthmax` = ((`players`.`level` - 8) * 15 + 185) WHERE `vocation`= 2;
UPDATE `players` SET `health` = ((`players`.`level` - 8) * 15 + 185) WHERE `vocation`= 2;
 
Back
Top