• 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 Reset levels query

freddzor11

Member
Joined
May 25, 2009
Messages
695
Reaction score
5
Anyone who got a query that sets all players to level 8 with correct exp, hp and mana, not reset skills and items

Kind regards,
 
Code:
UPDATE `players` SET `level` = 8, `experience` = 4200, `health` = 185, `healthmax` = 185, `mana` = 40, `manamax` = 40;
 
Code:
UPDATE `players` SET `level` = 8, `experience` = 4200, `health` = 185, `healthmax` = 185, `mana` = 40, `manamax` = 40, `manaspent` = 0, `cap` = 470, `posx` = 1000, `posy` = 1000, `posz` = 7;
 
It does not, insert maglevel after posz in the query.

`posz` = 7, `maglevel` = 0;
 
UPDATE `players` SET `skill_fist` = 10, `skill_club` = 10, `skill_sword` = 10, `skill_axe` = 10, `skill_dist` = 10, `skill_shielding` = 10, `skill_fishing`= 10;
 
Back
Top