I CAN'T EDIT MAX LEVEL 255/120

stupeflix

New member
Messages
1
Points
0
GOOD DAY

I ALREADY READ ALL THE ARTICLES OR GUIDES RELATED TO EDITING MAX LEVEL AND ALL OF THAT DID NOT WORK TO MY SERVER

IM USING PACKETVER 20180620 AND ALL HERCULES SERVER FILES

FILES THAT I MODIFY

  • MMO.H
  • BATTLE.C
  • EXP_GROUP_DB.CONF
  • CLIENT.CONF
AFTER I MADE CHANGES TO MMO.H AND BATTLE.C.. ANYTHING FROM THE FOLDER SRC.. I ALWAYS RE-COMPILE.. BUT STILL NOT WORKING

HERE ARE THE GUIDES THAT I FOLLOW AND ALL OF THEM NOT WORK TO ME

GUIDE #1

GUIDE #2

GUIDE #3

SCREENSHOTS OF ALL THE LINKS THAT I ALREADY BEEN FOUND.. BUT STILL PROBLEM EXIST

https://prnt.sc/ozfrtk

PLEASE TO ALL PROFESSIONALS OUT THERE.. PLEASE HELP ME WITH MY PROBLEM

 
Were you able to fix this? I'm having the same issue :(
trunk/src/common/mmo.h

#define MAX_LEVEL 175


change into

#define MAX_LEVEL 255




Next is trunk/conf/map/battle/player.conf

this will make 255 stats

// Max limit of char stats. (AGI, STR, etc.)
max_parameter: 99


change into

// Max limit of char stats. (AGI, STR, etc.)
max_parameter: 255




Next is trunk/conf/map/battle/client.conf

max_lv: 99




change it to (same with the aura_lv if you want 255 player have a blue aura)

max_lv: 255




next step is trunk/db/pre-re/job_db.conf

you can use this one, not yet tested but give it a try

Link : https://pastebin.com/QaB3Y3Tv

Done forget to recompile your server after..

 
trunk/src/common/mmo.h

#define MAX_LEVEL 175

#define MAX_LEVEL 175


change into

#define MAX_LEVEL 255

#define MAX_LEVEL 255




Next is trunk/conf/map/battle/player.conf

this will make 255 stats

// Max limit of char stats. (AGI, STR, etc.)
max_parameter: 99

// Max limit of char stats. (AGI, STR, etc.)
max_parameter: 99


change into

// Max limit of char stats. (AGI, STR, etc.)
max_parameter: 255

// Max limit of char stats. (AGI, STR, etc.)
max_parameter: 255




Next is trunk/conf/map/battle/client.conf

max_lv: 99

max_lv: 99




change it to (same with the aura_lv if you want 255 player have a blue aura)

max_lv: 255

max_lv: 255




next step is trunk/db/pre-re/job_db.conf

you can use this one, not yet tested but give it a try

Link : https://pastebin.com/QaB3Y3Tv

Done forget to recompile your server after..
Thanks Kuys! Already fixed it. I edited the original file without knowing it's overwriting the value in IMPORT data. :)

 
Back
Top