Jump to content
  • 0
Sign in to follow this  
mrlongshen

Simple sql to make all char level 99

Question

Based on topic I want to reset all player base level to 99 and job level 99. Someone please share ? 

Edited by mrlongshen

Share this post


Link to post
Share on other sites

3 answers to this question

Recommended Posts

  • 0

@@mrlongshen you want to reset all players into level 99? what is your max level?

Yup. I want to reset base level and job level. My server level 99 and job is 70. Pre-renewal.

 

If can, can you reset all char to get stats point for level 99.

 

Before this my server is 255. Now I want to remake to 99 only..

Share this post


Link to post
Share on other sites
  • 0

@@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

Edited by simh

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.