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
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);
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);
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.
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());