michaelsoftman Posted December 6, 2012 Posted December 6, 2012 I think the line to change this in the config is here, #define pc_maxparameter(sd) ( ((((sd)->class_&MAPID_UPPERMASK) == MAPID_KAGEROUOBORO) || (sd)->class_&JOBL_THIRD ? ((sd)->class_&JOBL_BABY ? battle_config.max_baby_third_parameter : battle_config.max_third_parameter) : ((sd)->class_&JOBL_BABY ? battle_config.max_baby_parameter : battle_config.max_parameter)) ) But I'm not sure how to change it. I want Gunslingers to be able to reach the same max stats as 3rd jobs. Quote
donkeyg Posted December 15, 2012 Posted December 15, 2012 bump. i need this too.. i wanna make my gunslinger max stats is 120.. same as 3rd job.. Quote
Soulworld Posted December 16, 2012 Posted December 16, 2012 you could be a little more polite than just Bumping @ _ @... but as far as I know that would require some source modification Quote
donkeyg Posted December 16, 2012 Posted December 16, 2012 can u giveme the source modification pleasE? Quote
Zephyr Posted December 17, 2012 Posted December 17, 2012 Open you "src/map/pc.h" file and find: #define pc_maxparameter(sd) ( ((((sd)->class_&MAPID_UPPERMASK) == MAPID_KAGEROUOBORO) || (sd)->class_&JOBL_THIRD ? ((sd)->class_&JOBL_BABY ? battle_config.max_baby_third_parameter : battle_config.max_third_parameter) : ((sd)->class_&JOBL_BABY ? battle_config.max_baby_parameter : battle_config.max_parameter)) ) Replace it with: #define pc_maxparameter(sd) ( ((((sd)->class_&MAPID_UPPERMASK) == MAPID_KAGEROUOBORO) || (sd)->class_&JOBL_THIRD ? ((sd)->class_&JOBL_BABY ? battle_config.max_baby_third_parameter : battle_config.max_third_parameter) : ((sd)->class_&JOBL_BABY ? battle_config.max_baby_parameter : ( sd->class_&MAPID_GUNSLINGER ? 120 : battle_config.max_parameter ) )) ) Quote
Rebel Posted May 10, 2013 Posted May 10, 2013 what if i want gunslinger and star gladiator to have same stats with third jobs? Quote
Question
michaelsoftman
I think the line to change this in the config is here,
But I'm not sure how to change it.
I want Gunslingers to be able to reach the same max stats as 3rd jobs.
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.