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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

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