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

Solved Change the amount of mana for all players.

ohman

Member
Joined
Oct 24, 2008
Messages
294
Reaction score
8
Location
Sweden
Hi, I did a mistake on my server. I was going to change how fast the mana is regenerate for knights and elite knights. But I did wrong and changed instead the mana amount when leveling up, instead of 5 mana per level they got 10 for 1 day. Now I changed back. But all players that took level has more mana is still more than it should be.

Is there any way to change mana for all knights and elite knights, like this: level * 5 = mana amount in like sql? Thanks! :)
 
Code:
UPDATE `players` SET `mana` = `level` * 5, `manamax` = `level` * 5 WHERE `vocation` = 4;
 
Server can be online but players needs to be offline while executing this query in PMA.
 
Back
Top