Page 1 of 1

XP stuck at 25313999999

Posted: Wed Dec 02, 2009 8:01 pm
by babyjason
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: 6738
L2JDP Revision Number:

Hello, i have a big problem. Xp for lvl 85 characters gets stuck at the value 25313999999 and they dont lose xp even if i set in cofig to lose any amount of xp . ANybody can help me? :(

XP loss is affected by clan luck in core
PlayerXPPercentLost = 0,39-7.0;40,75-4.0;76,76-2.5;77,77-2.0;78,84-4.0;85,85-4.0

Re: XP stuck at 25313999999

Posted: Thu Dec 03, 2009 6:37 am
by DeGato
babyjason wrote:77,77-2.0;78,84-4.0;85,85-4.0
4% loss at 85? :shock:

Re: XP stuck at 25313999999

Posted: Thu Dec 03, 2009 7:02 am
by janiii
found the bug.. here is a fix:

Code: Select all

Index: java/net/sf/l2j/gameserver/model/actor/stat/PlayableStat.java===================================================================--- java/net/sf/l2j/gameserver/model/actor/stat/PlayableStat.java	(revision 3633)+++ java/net/sf/l2j/gameserver/model/actor/stat/PlayableStat.java	(working copy)@@ -38,7 +38,7 @@     // Method - Public     public boolean addExp(long value)     {-		if ((getExp() + value) < 0 || getExp() == (getExpForLevel(Experience.MAX_LEVEL) - 1))+		if ((getExp() + value) < 0 || (value > 0 && getExp() == (getExpForLevel(Experience.MAX_LEVEL) - 1)))             return true;  		if (getExp() + value >= getExpForLevel(Experience.MAX_LEVEL))

Re: XP stuck at 25313999999

Posted: Fri Dec 04, 2009 3:45 am
by babyjason
thank you very much, hope it wokz

Re: XP stuck at 25313999999

Posted: Fri Dec 04, 2009 7:03 am
by janiii
babyjason wrote:thank you very much, hope it wokz
pls report if it works. thx.

Re: XP stuck at 25313999999

Posted: Thu Dec 10, 2009 5:27 am
by babyjason
it works, thank you