Scoreboard bug
Scoreboard bug
I have noticed that when there are > 32 clients connected to a server that the scoreboard won't display when tab is pressed. Is this something that can be fixed server-side or is it a bug in the client code?
-
- Posts: 4022
- Joined: Sat Mar 12, 2005 6:24 pm
Re: Scoreboard bug
Client-side. Though I don't recall ever running into that behaviour.
Re: Scoreboard bug
Yes, it is very strange. It doesn't display any of the players only the red / blue team banner at the top of the scoreboard. Maybe I have messed something up in my mod? 

Re: Scoreboard bug
I just happened upon this code while trying to find a fix. I don't think it would cause the lack of scoreboard that I'm seeing but interesting that it won't send more than 32.
Code: Select all
// don't send more than 32 scores (FIXME?)
numSorted = level.numConnectedClients;
if ( numSorted > 32 ) {
numSorted = 32;
}
Re: Scoreboard bug
Any suggestions on what I can do to hunt this problem down?
Re: Scoreboard bug
Fire up Visual Studio, build the projects as DLLs, put breakpoints in appropriate functions, and then run Q3 in the debugger. By stepping through the scoreboard related code, inspecting the states of variables as you go, you should be able to figure out what is going wrong.