-
-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
STAC incompatible with latest TF2 100 maxplayers addition #160
Comments
You're running an outdated version, this is explained better here: https://github.com/sapphonie/StAC-tf2/blob/master/scripting/stac.sp#L293-L307 StAC doesn't make any sense to run at above 32 players and arguably at above 24, depending on hardware, the engine wasn't designed to iterate through so many clients within a sane amount of time and StAC can't count on receiving at least vaguely consistent data from each player - this is why there is a check for server stuttering every game frame: https://github.com/sapphonie/StAC-tf2/blob/master/scripting/stac.sp#L223-L240 ... and that check will probably just get hit constantly, rendering the plugin mostly useless, unless StAC is running on godly hardware that can manage to keep the tickrate stable. But it gets worse - more than 32 players is almost 100% going to result in wacky unexplainable bugs not only in the engine itself but also in StAC and maybe even SourceMod itself. I can probably stick it behind a cvar similarly to |
That would be nice, as I am one person running their server on godly hardware (5950x with a custom kernel). Currently, 33 players with all slots used doesn't really go above 60% (with a lot happening), while the tickrate is pretty much 100% at 66.6-66.7. As for the bugs - we are used to those, it's the Source engine after all ;) |
I think that'd be a fair compromise. I'd like to experiment with higher-count servers, while still trying to avoid aimbotting players as much as possible. |
Great news, this is now done as of 6.1.0, and it doesn't need a cvar. it also works with sourcemod 1.11. Probably. Try it today! |
I know it's closed, but why not caching cmds, then find artifacts in them? |
SourcePawn is single threaded, and multi threading isn't trivial even if I were to port this to a C++ extension. |
The error is obvious, but I figure I'd note it here as something that should be changed as a lot of admins (myself included) will want to increase their maxplayers per this update to try and attract more players.
The text was updated successfully, but these errors were encountered: