deviruzy 1 Posted March 6, 2014 Good day. Is there a way to gain 100% exp while in a party? Normally if you are in a party a pc will receive lower exp but I was wondering if it's possible to receive 100% exp no matter how many people are in a party. Would you be kind and teach me please? Thank you. Quote Share this post Link to post Share on other sites
0 AnnieRuru 957 Posted March 6, 2014 party.c base_exp/=c; job_exp/=c; zeny/=c; if (battle_config.party_even_share_bonus && c > 1) { double bonus = 100 + battle_config.party_even_share_bonus*(c-1); if (base_exp) base_exp = (unsigned int) cap_value(base_exp * bonus/100, 0, UINT_MAX); if (job_exp) job_exp = (unsigned int) cap_value(job_exp * bonus/100, 0, UINT_MAX); if (zeny) zeny = (unsigned int) cap_value(zeny * bonus/100, INT_MIN, INT_MAX); }remove this chunk of code and recompile basically this part of code calculate the exp gain for each party member ( 100% / number of party members ) so just don't have to execute this part to make it 100% Quote Share this post Link to post Share on other sites
0 deviruzy 1 Posted March 6, 2014 (edited) Thank you AnnieRuru. It works perfect! Thank you~!! Edited March 6, 2014 by deviruzy Quote Share this post Link to post Share on other sites
Good day.
Is there a way to gain 100% exp while in a party?
Normally if you are in a party a pc will receive lower exp but I was wondering if it's possible to receive 100% exp no matter how many people are in a party.
Would you be kind and teach me please?
Thank you.
Share this post
Link to post
Share on other sites