-
-
Notifications
You must be signed in to change notification settings - Fork 830
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
update default gamemode='1' and address the issue #2031 #2442
Conversation
updated the default gamemode value to '1' to start the server as a competitive match rather than a casual match.
added the 'sv_lan 0' which refers to INTERNET mode play whereas 'sv_lan 1' represents ONLY LAN mode play - VAC(Valve Anti Cheat) is turned off when it's value is 1 added 'sv_cheats 0' as default starting parameters which explicitly restricts any player from taking any unfair advantage for the game over other players, whereas 'sv_cheats 1' enables users for special powers such as 'god' and 'noclip'
gamemode='1'
and address #2031
gamemode='1'
and address #2031
imho I would prefer only to take the second commit for the sv_lan changes and sv_cheats. |
OK I understand your concern, then shall I remove the first commit? |
When I had setup the server with my friends, All of them suggested that the default game mode should be changed to competitive as that is the most widely played game mode and most preferred way of playing even with custom maps like 5v5 Retake Servers. i hope you understand the concern and merge this commit for the good of the counter strike community where I believe this should have been default playing mode in the game as done by the default vanilla in-game screen as well. |
No need to set it via command line as well. Option to set these in two places is a bad practice. They can override each other. As in the #2031, even in the official documentation they setup these values in the config file, not in the command line. I agree with the default game mode set to competitive.
|
Okay! I did not notice that those config files are used when the server got deployed. Assumed it to be some side project. Thank You @borzaka for bringing up.
|
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
commit
0db1e2f deals with updating the defaultgamemode='1'
to start the server as a competitive match rather than a casual match.and
commit
0971a64 deals with #2031 and servers to solve the issue with addingsv_lan 0
andsv_cheats 0
explicitly under the default starting parameters argument list.