Jump to content
  • 0

[3.7.0.1318] Adventures award too much exp


Fhav6X

Question

I know this won't be fixed now that PoE2 is out. Still...

 

Adventures award more exp then intended (I think).

 

The formula for exp rewards from adventures is as of now

 

(Exp earned by PC)*((0.75 not-in-party-penalty)+(0.75 not-in-party-penalty)+(%Exp for adventure type))

 

This is about 150% and more of the PC exp. The reason why the 0.75 is applied two times can be found under

public class StrongholdAdventure

public void Finish(Stronghold stronghold)

               

                int num2 = this.DeferredXP * (num + StrongholdAdventure.PercentXPFromPlayer) / 100;
                component.Experience += num2;

 

I think the "+= num2" must be "== num2" so that the 0.75 not-in-party-penalty is applied once.

 

 

 

  • Like 1
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

I have been poking a little with eternitykeeper and it seems the overload exp comes from the code line

 

  int num2 = this.DeferredXP * (num + StrongholdAdventure.PercentXPFromPlayer) / 100;

 

The "+ StrongholdAdventure.PercentXPFromPlayer" is responsible for the second (0.75 not-in-party-penalty) and the overload exp.

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...