View Single Post
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 07-14-2018 , 17:25   Re: Is this possible to make more than 64 players on csgo?
Reply With Quote #9

Quote:
Originally Posted by Neuro Toxin View Post
You have to edit and recompile the server binary most likely as its a hard coded limit.

Would probably have to edit and recompile the client binary is the hard coded limit most likely occurs in their also.
It is hard coded. Specifically, it's hard-coded to 65. You can even see it in the most recent public version of the Source SDK in shareddefs.h

This value is used in a lot of different places in the source code on both the server and client sides, too.

Edit: If more than 65 clients are connected, chances are clients will crash on connect, not sure about the server. This is because certain netprops, such as the ones that control the scoreboard, use fixed-size arrays.
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 07-14-2018 at 17:28.
Powerlord is offline