michaelsoftman Posted December 6, 2012 Group: Members Topic Count: 48 Topics Per Day: 0.01 Content Count: 410 Reputation: 29 Joined: 04/04/12 Last Seen: November 28, 2024 Share 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 Link to comment Share on other sites More sharing options...
donkeyg Posted December 15, 2012 Group: Members Topic Count: 344 Topics Per Day: 0.07 Content Count: 1060 Reputation: 1 Joined: 02/13/12 Last Seen: November 14, 2016 Share Posted December 15, 2012 bump. i need this too.. i wanna make my gunslinger max stats is 120.. same as 3rd job.. Quote Link to comment Share on other sites More sharing options...
Soulworld Posted December 16, 2012 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 24 Reputation: 0 Joined: 12/07/12 Last Seen: April 10, 2013 Share 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 Link to comment Share on other sites More sharing options...
donkeyg Posted December 16, 2012 Group: Members Topic Count: 344 Topics Per Day: 0.07 Content Count: 1060 Reputation: 1 Joined: 02/13/12 Last Seen: November 14, 2016 Share Posted December 16, 2012 can u giveme the source modification pleasE? Quote Link to comment Share on other sites More sharing options...
donkeyg Posted December 17, 2012 Group: Members Topic Count: 344 Topics Per Day: 0.07 Content Count: 1060 Reputation: 1 Joined: 02/13/12 Last Seen: November 14, 2016 Share Posted December 17, 2012 bump.. need it urgent please Quote Link to comment Share on other sites More sharing options...
Zephyr Posted December 17, 2012 Group: Members Topic Count: 25 Topics Per Day: 0.01 Content Count: 95 Reputation: 29 Joined: 10/11/12 Last Seen: December 12, 2023 Share 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 Link to comment Share on other sites More sharing options...
Rebel Posted May 10, 2013 Group: Members Topic Count: 68 Topics Per Day: 0.01 Content Count: 436 Reputation: 32 Joined: 02/19/12 Last Seen: May 22, 2024 Share Posted May 10, 2013 what if i want gunslinger and star gladiator to have same stats with third jobs? Quote Link to comment Share on other sites More sharing options...
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.
Link to comment
Share on other sites
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.