Moderator: Tech Team
yeti_c wrote:Any bugs in 4.6.5 I should be aware of - POST HERE NOW!
Points Totals
r:BaldAdonis scored 0 points in this game
g:Chariot of Fire scored 0 points in this game
b:Dominator7 scored 0 points in this game
y:lanyards scored NaN points in this game
p:BENJIKAT IS DEAD scored NaN points in this game
c:TheWreckless1 scored 0 points in this game
Dominator7 wrote:Points Totals
r:BaldAdonis scored 0 points in this game
g:Chariot of Fire scored 0 points in this game
b:Dominator7 scored 0 points in this game
y:lanyards scored NaN points in this game
p:BENJIKAT IS DEAD scored NaN points in this game
c:TheWreckless1 scored 0 points in this game
This is what I am getting on my maps. Note where it says NaN. Anyone know how to fix this????
Elimination Summary wrote:Points Totals
r:peterBMW scored NaN points in this game
g:josmorgan scored NaN points in this game
b:Calidrmr scored NaN points in this game
y:BlazeFXC scored NaN points in this game
Dominator7 wrote:Points Totals
r:BaldAdonis scored 0 points in this game
g:Chariot of Fire scored 0 points in this game
b:Dominator7 scored 0 points in this game
y:lanyards scored NaN points in this game
p:BENJIKAT IS DEAD scored NaN points in this game
c:TheWreckless1 scored 0 points in this game
This is what I am getting on my maps. Note where it says NaN. Anyone know how to fix this????
var points = log[i].substring(log[i].indexOf(str_loses)+5,log[i].indexOf(str_points)-1);
var points = log[i].substring(log[i].indexOf(str_loses)+str_loses.length,log[i].indexOf(str_points)-1);
var points = log[i].substring(log[i].indexOf(str_gains)+5,log[i].indexOf(str_points)-1);
var points = log[i].substring(log[i].indexOf(str_gains)+str_gains.length,log[i].indexOf(str_points)-1);
Incandenza wrote:Sooooo I feel like this is an old issue that must have been brought up by now, but I haven't been keeping track since I don't play a lot of tourney games.
So tourney games have that wee thing at the top that throws off BOB. No problem, right, I just adjust the map alignment thing up. Problem is when I go to play a normal game on the same map, now the numbers are out of whack the other way.
Is there a simple way to address this? Or am I going to have to keep adjusting the alignment?
Elimination Summary wrote:2008-10-19 10:19:37 - tbrown0210 loses 16 points in round - 4
2008-10-19 10:19:37 - petewins1368 loses 16 points in round - 4
2008-10-19 10:19:37 - InsomniaRed gains 16 points in round - 4
2008-10-19 10:19:37 - MrBenn gains 16 points in round - 4
Points Totals
tbrown0210 scored NaN points in this game
petewins1368 scored NaN points in this game
InsomniaRed scored NaN points in this game
MrBenn scored NaN points in this game
MrBenn wrote:Yeti,
Just played Game 3494377, and the elimination summary was a little messed up:Elimination Summary wrote:2008-10-19 10:19:37 - tbrown0210 loses 16 points in round - 4
2008-10-19 10:19:37 - petewins1368 loses 16 points in round - 4
2008-10-19 10:19:37 - InsomniaRed gains 16 points in round - 4
2008-10-19 10:19:37 - MrBenn gains 16 points in round - 4
Points Totals
tbrown0210 scored NaN points in this game
petewins1368 scored NaN points in this game
InsomniaRed scored NaN points in this game
MrBenn scored NaN points in this game
InsomniaRed wrote:MrBenn wrote:Yeti,
Just played Game 3494377, and the elimination summary was a little messed up:Elimination Summary wrote:2008-10-19 10:19:37 - tbrown0210 loses 16 points in round - 4
2008-10-19 10:19:37 - petewins1368 loses 16 points in round - 4
2008-10-19 10:19:37 - InsomniaRed gains 16 points in round - 4
2008-10-19 10:19:37 - MrBenn gains 16 points in round - 4
Points Totals
tbrown0210 scored NaN points in this game
petewins1368 scored NaN points in this game
InsomniaRed scored NaN points in this game
MrBenn scored NaN points in this game
Yes, what he saidI've seen a lot of 'NaN' around my games lately. I've got the latest version installed.
kaiser0427 wrote:clickable maps still not working after updates
yowzer14 wrote:Dominator7 wrote:Points Totals
r:BaldAdonis scored 0 points in this game
g:Chariot of Fire scored 0 points in this game
b:Dominator7 scored 0 points in this game
y:lanyards scored NaN points in this game
p:BENJIKAT IS DEAD scored NaN points in this game
c:TheWreckless1 scored 0 points in this game
This is what I am getting on my maps. Note where it says NaN. Anyone know how to fix this????
The problem can be fixed easily enough. The 2 lines are 3336 & 3343. Change the two lines as follows;
Line # 3336 FROM
- Code: Select all
var points = log[i].substring(log[i].indexOf(str_loses)+5,log[i].indexOf(str_points)-1);
Line # 3336 To
- Code: Select all
var points = log[i].substring(log[i].indexOf(str_loses)+str_loses.length,log[i].indexOf(str_points)-1);
Line # 3343 FROM
- Code: Select all
var points = log[i].substring(log[i].indexOf(str_gains)+5,log[i].indexOf(str_points)-1);
Line # 3343 To
- Code: Select all
var points = log[i].substring(log[i].indexOf(str_gains)+str_gains.length,log[i].indexOf(str_points)-1);
Dominator7 wrote:Where are these line - codes to be adjusted?
kinda lost
I'm not so sure. It seems like the elimination summary isn't reading the full logs. In Game 3412555, I get the message that everyone was eliminated in round 1, even after making the fix that shows the proper scores.yeti_c wrote:Yeah - I knew where it was - it's because "str_gains" links to " gains " whereas those patterns used to match to "gains"
Cheers for posting that fix Yowzer - it's a good fix.
BaldAdonis wrote:I'm not so sure. It seems like the elimination summary isn't reading the full logs. In Game 3412555, I get the message that everyone was eliminated in round 1, even after making the fix that shows the proper scores.yeti_c wrote:Yeah - I knew where it was - it's because "str_gains" links to " gains " whereas those patterns used to match to "gains"
Cheers for posting that fix Yowzer - it's a good fix.
2008-10-12 09:39:04 - karelpietertje eliminated ZeroGig from the game in round - 2
2008-10-13 08:40:40 - sjnap eliminated Sochris from the game in round - 3
2008-10-13 16:10:47 - JustB eliminated heffman from the game in round - 4
2008-10-13 16:11:04 - loes eliminated timo1 from the game in round - 4
2008-10-13 16:11:04 - timo1 loses 5 points in round - 4
2008-10-13 16:11:04 - ZeroGig loses 5 points in round - 4
2008-10-13 16:11:04 - Sochris loses 5 points in round - 4
2008-10-13 16:11:04 - heffman loses 5 points in round - 4
2008-10-13 16:11:04 - karelpietertje gains 5 points in round - 4
2008-10-13 16:11:04 - loes gains 5 points in round - 4
2008-10-13 16:11:04 - JustB gains 5 points in round - 4
2008-10-13 16:11:04 - sjnap gains 5 points in round - 4
Points Totals
timo1 scored -5 points in this game
ZeroGig scored -5 points in this game
Sochris scored -5 points in this game
heffman scored -5 points in this game
karelpietertje scored 5 points in this game
loes scored 5 points in this game
JustB scored 5 points in this game
sjnap scored 5 points in this game
BaldAdonis wrote:I'm not so sure. It seems like the elimination summary isn't reading the full logs. In Game 3412555, I get the message that everyone was eliminated in round 1, even after making the fix that shows the proper scores.yeti_c wrote:Yeah - I knew where it was - it's because "str_gains" links to " gains " whereas those patterns used to match to "gains"
Cheers for posting that fix Yowzer - it's a good fix.
Users browsing this forum: No registered users