Jump to content
  • 0
Sign in to follow this  
deviruzy

Party exp 100%.

Question

 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

2 answers to this question

Recommended Posts

  • 0

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%

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.