Page 1 of 1

Scoreboard bug

Posted: Fri Mar 12, 2010 8:11 pm
by nexus024
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?

Re: Scoreboard bug

Posted: Sat Mar 13, 2010 2:10 pm
by ^misantropia^
Client-side. Though I don't recall ever running into that behaviour.

Re: Scoreboard bug

Posted: Sat Mar 13, 2010 3:26 pm
by nexus024
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? :confused:

Re: Scoreboard bug

Posted: Mon Mar 15, 2010 2:04 pm
by nexus024
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

Posted: Thu Mar 25, 2010 9:29 pm
by nexus024
Any suggestions on what I can do to hunt this problem down?

Re: Scoreboard bug

Posted: Mon Apr 05, 2010 1:27 pm
by AnthonyJ
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.