You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 20, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,27 @@ New updates are added as a h2 header (`##`) above the previous version (meaning
6
6
We use [Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0.html) which is the undoubtedly best format for version formatting, please use it for your own projects.
7
7
8
8
9
+
## 5.0.3
10
+
```diff
11
+
+ Added sv_maxuptimelimit "0"; to networking.cfg and practice.cfg
12
+
+ Added snd_voipvolume 0.5625 (80%) to audio.cfg
13
+
+ Added viewmodel preset overrides to skinpictures to prevent the viewmodel from being changed from your manually-adjusted one when inspecting skins
14
+
+ Added timeout and surrender binds to the F9 and F10 keys respectively
15
+
+ Added spin left and spin right yaw binds to left and right arrow keys respectively
16
+
+ Added buggy "hyper spin" yaw bind to up arrow key
17
+
+ Added +fin_desubtick_attack bind to the enter key for keyboard-only combat
18
+
19
+
* Moved 180 bind from P key to down arrow key
20
+
21
+
- Removed -forcenovsync from quick-copy launch options, the documentation for it is still preset but there's a note that says it's non-functional.
22
+
- Removed -secure and -dont_allow_third_party_software from quick-copy launch options because they were pushing the launch option character limit and won't be used by most people
23
+
- Removed -asyncconsole from quick-copy launch options because it only applies to dedicated servers, this has also been bolded in the documentation for it.
24
+
- Removed cs_quit_prompt from F10 key
25
+
- Removed existing yaw spin bind from O key
26
+
- Removed sv_unify_random_seed, cl_lagcompensation, cl_predictweapons, and cl_predict from networking.cfg as they were all removed by Valve in a recent update
27
+
```
28
+
29
+
9
30
## 5.0.2
10
31
```diff
11
32
+ Added `-width` and `-height` launch options to README.md launch option list and easily-copiable string
Copy file name to clipboardExpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -95,12 +95,12 @@ There's always more you can do. A few popular ones are:
95
95
Separate from the above list of plug-and-play tweaks, you can also change your game's launch options to enforce certain settings and help CS behave as you'd like it to on your system, remove some artificial limitations, and add some functionality. Mine are below, along with short descriptions for each of them:
96
96
-`-secure` Not a real launch option, however it makes it quick and easy to add -insecure to your launch options
97
97
-`-dont_allow_third_party_software` Not a real launch option, however it makes it quick and easy to add -allow_third_party_software to your launch options
98
-
-`-asyncconsole` dedicated server only; runs the console in a separate thread
98
+
-`-asyncconsole`**dedicated server only**; runs the console in a separate thread
99
99
-`-condebug` Logs all console output into the console.log text file.
100
100
-`-console` Starts the game with the developer console enabled. Same as having con_enable enabled.
101
101
-`-dev` Enables developer mode. Also disables the automatic loading of menu background maps and stops the quit dialog from appearing on exit.
102
102
-`-devcontent` Enables additional console output
103
-
-`-forcenovsync` Force disables vsync (which you should always have off anyways)
103
+
-`-forcenovsync`**This seems to be non-functional**Force disables vsync (which you should always have off anyways)
104
104
-`-height 1440` Forces the engine to start with resolution set to <height>. Ex: -h 1080
105
105
-`-high` Sets the process priority to [HIGH_PRIORITY_CLASS](https://learn.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities)
106
106
-`-language textmod` Changes your language to the specified one, mine is [xPaw's text mod](https://github.com/xPaw/CS2).
@@ -116,7 +116,7 @@ Separate from the above list of plug-and-play tweaks, you can also change your g
Copy file name to clipboardExpand all lines: config/primary/init.cfg
+2-2
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@ echoln "[init.cfg] Start of init.cfg";
3
3
4
4
5
5
echoln "[init.cfg] {1} Initializing";
6
-
hostname "Fin's CS2 Config 5.0.2 - github.com/bigfinfrank/cfg"; // Sets the server name shown in the scoreboard
7
-
alias "fin_version""echoln 5.0.2"; // Sets version number to an alias (can be output with: "alias fin_version")
6
+
hostname "Fin's CS2 Config 5.0.3 - github.com/bigfinfrank/cfg"; // Sets the server name shown in the scoreboard
7
+
alias "fin_version""echoln 5.0.3"; // Sets version number to an alias (can be output with: "alias fin_version")
8
8
sv_steamgroup "42297947"; // The ID of the steam group that this server belongs to. You can find your group's ID on the admin profile page in the steam community. (currently https://steamcommunity.com/groups/advancedcfg)
9
9
cl_clanid "42297947"; // Current clan ID for name decoration
sv_unify_random_seed "true"; // Should we securely share seeds between the client and server?
7
6
sv_usercmd_custom_random_seed "false"; // When enabled server will populate an additional random seed independent of the client
8
7
net_client_steamdatagram_enable_override "1"; // 0: Use connect method requested by GC. >0: Always use SDR if possible. <0: Always use direct UDP if possible
9
8
cq_netgraph_problem_show_auto "true"; // Automatically activate/deactivate cq_netgraph when network conditions degrade
10
9
mm_dedicated_search_maxping "25"; // Longest preferred ping to dedicated servers for games
11
10
cl_phys_sleep_enable "false"; // Enable sleeping for dynamic physics bodies.
12
-
cl_lagcompensation "true"; // Perform server side lag compensation of weapon firing events.
13
-
cl_predictweapons "true"; // Perform client side prediction of weapon effects.
14
-
cl_predict "true"; // Perform client side prediction.
15
11
cl_timeout "60"; // After this many seconds without receiving a packet from the server, the client will disconnect itself
16
12
cl_resend "0.5"; // Delay in seconds before the client will resend the 'connect' attempt
17
13
rate "1000000"; // Min bytes/sec the host can receive data
0 commit comments