Festival of Darkness

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
Belier
Posts: 42
Joined: Mon Aug 10, 2009 9:39 pm

Festival of Darkness

Post by Belier »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:4691
L2JDP Revision Number:8089

I have a big error in festival of darkness: The points of each cabal is displaying all wrong.

I add images self-explained:
Image
Image
Image
Image

Thank you and waiting any solution :)
Image
Image
User avatar
kocinski
Posts: 141
Joined: Wed May 06, 2009 3:12 pm
Location: España
Contact:

Re: Festival of Darkness

Post by kocinski »

This Event is historically buged since ever and needs a big rework.
Has been reported lot of times but so far has not been corrected.
Belier
Posts: 42
Joined: Mon Aug 10, 2009 9:39 pm

Re: Festival of Darkness

Post by Belier »

How can I suspend it then?

Thank you :)
Image
Image
Belier
Posts: 42
Joined: Mon Aug 10, 2009 9:39 pm

Re: Festival of Darkness

Post by Belier »

then, no solution?

I just need to desactivate the festival of darkness =)

Thanks!
Image
Image
Sdw
L2j Veteran
L2j Veteran
Posts: 855
Joined: Mon May 03, 2010 8:38 am
Location: France

Re: Festival of Darkness

Post by Sdw »

Code: Select all

Index: SevenSignsFestival.java===================================================================--- SevenSignsFestival.java (revision 4692)+++ SevenSignsFestival.java (working copy)@@ -1586,7 +1586,7 @@        {            // If the current score is greater than that for the other cabal,            // then they already have the points from this festival.-           if (thisCabalHighScore < otherCabalHighScore)+           if (thisCabalHighScore > otherCabalHighScore)                return false;                        List<Integer> prevParticipants = getPreviousParticipants(oracle, festivalId); 
Should fix the score registration.
Belier
Posts: 42
Joined: Mon Aug 10, 2009 9:39 pm

Re: Festival of Darkness

Post by Belier »

Testing!

I will tell later if this works :P
Image
Image
kostantinos
Posts: 120
Joined: Fri May 11, 2007 6:10 am

Re: Festival of Darkness

Post by kostantinos »

so?
kostantinos
Posts: 120
Joined: Fri May 11, 2007 6:10 am

Re: Festival of Darkness

Post by kostantinos »

Sdw wrote:

Code: Select all

Index: SevenSignsFestival.java===================================================================--- SevenSignsFestival.java (revision 4692)+++ SevenSignsFestival.java (working copy)@@ -1586,7 +1586,7 @@        {            // If the current score is greater than that for the other cabal,            // then they already have the points from this festival.-           if (thisCabalHighScore < otherCabalHighScore)+           if (thisCabalHighScore > otherCabalHighScore)                return false;                        List<Integer> prevParticipants = getPreviousParticipants(oracle, festivalId); 
Should fix the score registration.

if you ahve test pliz tell me yes or no
Sdw
L2j Veteran
L2j Veteran
Posts: 855
Joined: Mon May 03, 2010 8:38 am
Location: France

Re: Festival of Darkness

Post by Sdw »

Try it yourself, there is no big deal in this modification, it won't ruin anything, just plain logic. The worst that can happen is that it still doesn't work.
User avatar
Faelucc
Posts: 27
Joined: Sun Nov 28, 2010 8:22 pm

Re: Festival of Darkness

Post by Faelucc »

Hi,
I tested this fix long time ago and it worked.

BUT, I don't recommend to enable festivals: it still a lot of bugs.
galrunch
Posts: 37
Joined: Thu Feb 10, 2011 7:42 pm

Re: Festival of Darkness

Post by galrunch »

this modification to fix this problem is in DP l2j server o core l2j server?
User avatar
Faelucc
Posts: 27
Joined: Sun Nov 28, 2010 8:22 pm

Re: Festival of Darkness

Post by Faelucc »

L2J_Server/java/com/l2jserver/gameserver/SevenSignsFestival.java
galrunch
Posts: 37
Joined: Thu Feb 10, 2011 7:42 pm

Re: Festival of Darkness

Post by galrunch »

oks, is a core l2j server thx :)
galrunch
Posts: 37
Joined: Thu Feb 10, 2011 7:42 pm

Re: Festival of Darkness

Post by galrunch »

mmm, i'm was trying this fix but in my serveer don't work :S anyone can tell me another method to fix this bug of seven sings?
User avatar
Faelucc
Posts: 27
Joined: Sun Nov 28, 2010 8:22 pm

Re: Festival of Darkness

Post by Faelucc »

Sorry for posting here, but this problem still exist on revision 5247.

The solution given above works, I've tested it several times.

But, for the reason I said in ticket 4887, I prefer to delete this four lines...

Code: Select all

Index: java/com/l2jserver/gameserver/SevenSignsFestival.java===================================================================--- java/com/l2jserver/gameserver/SevenSignsFestival.java   (revision 5247)+++ java/com/l2jserver/gameserver/SevenSignsFestival.java   (working copy)@@ -1569,11 +1569,6 @@        // Check if this is the highest score for this level range so far for the player's cabal.        if (offeringScore > thisCabalHighScore)        {-           // If the current score is greater than that for the other cabal,-           // then they already have the points from this festival.-           if (thisCabalHighScore < otherCabalHighScore)-               return false;-                       List<Integer> prevParticipants = getPreviousParticipants(oracle, festivalId);            partyMembers = new ArrayList<String>(prevParticipants.size());             
Post Reply