Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Due to recent spam attacks that heavily used compormised accounts we did reset all user passwords, AGAIN, if it happens and your account got compromised again due to re-used passwords your account will be perma-banned.
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,