Page 1 of 1

Max players in server

Posted: Thu Aug 27, 2015 10:47 am
by Giel
Hi

Can anyone help me with changing the maximum players in a thps3 server? It's 8 atm.

I added '9 players' in netmenu.qb but that doesn't seem to work. I have no idea what else I should add/edit.

Code: Select all

num_players_info = ARRAY(
         
          STRUCT{
            name = "2 Players"
            checksum = num_2
            }
          STRUCT{
            name = "3 Players"
            checksum = num_3
            }
          STRUCT{
            name = "4 Players"
            checksum = num_4
            }
          STRUCT{
            name = "5 Players"
            checksum = num_5
            }
          STRUCT{
            name = "6 Players"
            checksum = num_6
            }
          STRUCT{
            name = "7 Players"
            checksum = num_7
            }
          STRUCT{
            name = "8 Players"
            checksum = num_8
            }
          STRUCT{
            name = "9 Players"
            checksum = num_9
            }


I spoke to one of the developers and he said it could be done 'as the limit was really there for performance and memory reasons.'

Re: Max players in server

Posted: Thu Aug 27, 2015 2:25 pm
by Demo
one of the developers? if it was as easy as adding 9 players menu item, that woud've been there since 2002.

Re: Max players in server

Posted: Thu Aug 27, 2015 3:11 pm
by Giel
I know that's why I asked one of the developers (mick west). He said it should be possible.
And ofcourse if it was that easy I wouldn't have asked it here.