Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Limit Level?

Initiate Mage
Joined
Sep 14, 2022
Messages
4
Reaction score
0
I want to limit level flyff max 121H (V19)

How to do it please
 
Initiate Mage
Joined
Sep 14, 2022
Messages
4
Reaction score
0
I tried but not work
i kill monster level up to 122

#define MAX_MONSTER_LEVEL 121
#define MAX_GENERAL_LEVEL 120
#define MAX_LEGEND_LEVEL 130

#ifdef __4TH_JOBS
#define MAX_3RD_LEGEND_LEVEL 170
#define MAX_4TH_JOBS_LEVEL 200
#else // __4TH_JOBS
#define MAX_3RD_LEGEND_LEVEL 155
#endif // __4TH_JOBS

#ifdef __4TH_JOBS
#define MAX_CHARACTER_LEVEL 121
#else // __4TH_JOBS
#define MAX_CHARACTER_LEVEL 121
#endif // __4TH_JOBS
 
Last edited:
Upvote 0
Junior Spellweaver
Joined
Sep 29, 2021
Messages
133
Reaction score
26
I tried but not work
i kill monster level up to 122
Open DefineJob.h in VS. Change MAX_3RD_LEGEND_LEVEL and MAX_CHARACTER_LEVEL, recompile Neuz & Worldserver. Adjust your ExpTable.inc
or check this
Code:
https://forum.ragezone.com/f724/increasing-maximum-level-995155/


 
Upvote 0
Back
Top