Party exp modification

Nagad

New member
Messages
109
Points
0
I want to raise the exp at +30% if there are 4 or more members in a party, how to do that??

Thanks
default_smile.png


 
Last edited by a moderator:
conf/battle/party.conf

Code:
// Give additional experience bonus per party-member involved on even-share parties (excluding yourself)?// ex. If set to 10, an even-share party of 5 people will receive +40% exp (4 members * 10% exp)://     140% party experience in total, so each member receives 140%/5 = 28% exp (instead of 20%).party_even_share_bonus: 0 
 
Hi evilpuncker

Thanks for your answer
default_smile.png
I knew it, I just do not want that a party with 2 or 3 members only get the extra bonus that I want to add (that's why I said "4 or more members").

Do you know how to do that?

 
Last edited by a moderator:
Lookup party_exp_share @ party.c

Where it says "party_even_share_bonus && c > 1", c stands for the amount of party members (yourself included). Setting it to "c > 4" would mean if the party has more than 4 members (5 in total). 

 
Back
Top