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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

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