XP stuck at 25313999999

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
babyjason
Posts: 575
Joined: Wed Dec 02, 2009 7:59 pm

XP stuck at 25313999999

Post 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
DeGato
Posts: 51
Joined: Wed Oct 28, 2009 4:49 pm

Re: XP stuck at 25313999999

Post by DeGato »

babyjason wrote:77,77-2.0;78,84-4.0;85,85-4.0
4% loss at 85? :shock:
User avatar
janiii
L2j Veteran
L2j Veteran
Posts: 4269
Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia

Re: XP stuck at 25313999999

Post 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))
DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper
I don't give private support - PM will be ignored!
babyjason
Posts: 575
Joined: Wed Dec 02, 2009 7:59 pm

Re: XP stuck at 25313999999

Post by babyjason »

thank you very much, hope it wokz
User avatar
janiii
L2j Veteran
L2j Veteran
Posts: 4269
Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia

Re: XP stuck at 25313999999

Post by janiii »

babyjason wrote:thank you very much, hope it wokz
pls report if it works. thx.
DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper
I don't give private support - PM will be ignored!
babyjason
Posts: 575
Joined: Wed Dec 02, 2009 7:59 pm

Re: XP stuck at 25313999999

Post by babyjason »

it works, thank you
Post Reply