Party exp 100%.

deviruzy

New member
Messages
67
Points
0
 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.

 
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%

 
Thank you AnnieRuru. It works perfect!
default_biggrin.png
Thank you~!!

 
Last edited by a moderator:
Back
Top