Custom Video Resolution Setup:
Navigate to: X:\\Croteam\SeriousSamTSE\Scripts\ and open or create file Game_startup.ini with any text editor! (this will open all startup commands)
Copy these lines into that .ini file:
Code:
// force resolution
sam_bFullScreen=1;
sam_iScreenSizeI=1366;
sam_iScreenSizeJ=768;
sam_iDisplayDepth=0;
sam_iDisplayAdapter=0;
Save and start the game!
Check which resolutions your monitor can support before editing these lines!!!
Disable Chainsaw Flip:
Navigate to: X:\\Croteam\SeriousSamTSE\Controls\ and open file Controls0.ctl with any text editor! (this will open controls settings from first player in the game)
Copy these lines into that .ctl file:
Code:
Button
Name: TTRS Knife/Chainsaw
Key1: 1
Key2: Q
Pressed: ctl_bSelectWeapon[1] = 1; ctl_bWeaponFlip = 1;
Released: ctl_bSelectWeapon[1] = 0; ctl_bWeaponFlip = 0;
Save and start the game!
This should set Knife as a stronger (first) weapon when you pres Knife/Chainsaw button!!!
Add a Command Hotkey:
Navigate to:X:\\Croteam\SeriousSamTSE\Controls\System and open file Common.ctl with any text editor! (this will open all command hotkeys)
Add net-script hotkey:
Copy these lines into that .ctl file:
Code:
Button
Name: Ultra NetSettings
Key1: V
Key2: None
Pressed: cli_bPrediction=1;cli_iBufferActions=1;cli_iMinBPS =28000;cli_iMaxBPS=100000;
Released: ;
Button
Name: DSL/Cable Default
Key1: B
Key2: None
Pressed: cli_bPrediction = 1;cli_iBufferActions = 2;cli_iMinBPS = 6000;cli_iMaxBPS = 10000;
Released: ;
When you connect on public server and press “V” that should reduce your ping on lowest possible! If you get so much lags, press “B” and that will back you into normal connection!!!
Add framerate hotkey:
Copy these lines into that .ctl file:
Code:
Button
Name: TTRS Toggle frame rate
Key1: M
Key2: None
Pressed: hud_iStats=(hud_iStats+1)%3;
Released:
If you press “M” button, you should see current framerate on right-upper corner on your display. To turn it off press “M” twice!!!
Add demo forward hotkey:
Copy these lines into that .ctl file:
Code:
Button
Name: TTRS Demo Fast
Key1: J
Key2: None
Pressed: dem_fRealTimeFactor=4.0f;
Released: dem_fRealTimeFactor=1.0f;
When you watching recorded demo, press and hold “J” to skip unwanted parts!!!