Simple sql to make all char level 99

mrlongshen

Noobies
Messages
1,126
Points
0
Age
36
Location
localhost 127.0.0.1
Emulator
Based on topic I want to reset all player base level to 99 and job level 99. Someone please share ? 

 
Last edited by a moderator:
@@mrlongshen

This SQL query should work for you; But i guess you have to adjust the stats as well.

UPDATE `char` SET char.base_level = 99, char.job_level = 70;
Maybe you only want to set a characters level to 99 if it already is above 99. If so use this query:

UPDATE `char` SET char.base_level = 99 WHERE char.base_level > 99;UPDATE `char` SET char.job_level = 70 WHERE char.job_level > 70;
Best regards,

-simh

 
Last edited by a moderator:
Back
Top