fallenswordhelper / legacy_issues

0 stars 0 forks source link

Updates to GVG and targets #1272

Closed gschizas closed 9 years ago

gschizas commented 9 years ago

Originally reported on Google Code with ID 1273

After the recent updates to the GVG, the orange coloring on guilds to show which members
can be targeted for a conflict isn't 100% correct any more. Could FSH be updated to
correct this issue and show players that are within range for a GVG conflict?

Reported by ringhalg on 2012-05-15 18:10:25

gschizas commented 9 years ago
Here is temporary fix for this problem:

Locate line 2052, it looks like this:

} else if (highlightGvGPlayersNearMyLvl && Math.abs(vlevel - levelToTest) <= 25) {

and replace line 2052 with this line:

}  else if (highlightGvGPlayersNearMyLvl && Math.abs(vlevel - levelToTest) <= ((levelToTest
<= 300)?25:(levelToTest > 300 && levelToTest <= 700)?50:100)) {

Also, please note that this is maybe not 100% correct as I currently don't know if,
for example, player on level 301 is able to attack -50 or -25 of player level (or lowest
player with level 251 or 276), same for other level ranges.

Reported by bizzpu on 2012-08-05 22:31:11

gschizas commented 9 years ago
will be fixed in next version

Reported by Vong.Help on 2012-08-30 14:33:09