Compare commits
2 Commits
004b603d91
...
69b2b46311
Author | SHA1 | Date | |
---|---|---|---|
69b2b46311 | |||
4464fa3e3f |
17
HalfLifeSlowDown/timebinds.cfg
Normal file
17
HalfLifeSlowDown/timebinds.cfg
Normal file
@ -0,0 +1,17 @@
|
||||
fps_override 1
|
||||
fps_max 144
|
||||
|
||||
// Slow Down time time hold bind
|
||||
alias +slowdown "host_framerate 0.003"
|
||||
alias -slowdown "host_framerate 0"
|
||||
bind kp_5 "+slowdown"
|
||||
|
||||
// Speed Up time toggle bind
|
||||
alias speedup "speedup_on"
|
||||
alias speedup_on "host_framerate 0.03; alias speedup speedup_off"
|
||||
alias speedup_off "host_framerate 0; alias speedup speedup_on"
|
||||
bind x speedup
|
||||
|
||||
// Jump with mousewheel
|
||||
bind mwheeldown +jump
|
||||
bind mwheelup +jump
|
12
WallpaperEngineTools/record-obs.ahk
Normal file
12
WallpaperEngineTools/record-obs.ahk
Normal file
@ -0,0 +1,12 @@
|
||||
; This script is very simple, it just starts a timer when the Ctrl + Shift + F11 key is pressed, starts recording in OBS, and then stops recording after 11 minutes using hotkeys within OBS
|
||||
; 11 minutes is because I want to have a minute to make better looping while as close to 10m after editing
|
||||
; Ctrl + Shift + F10 is what I use to toggle recording in OBS, so this script is useful for me to stop recording after 10 mins
|
||||
|
||||
^+F11::
|
||||
Send, ^+F10
|
||||
SetTimer, Timer, 600000
|
||||
Return
|
||||
|
||||
Timer:
|
||||
Send, ^+F10
|
||||
Return
|
10
WallpaperEngineTools/source-setup.cfg
Normal file
10
WallpaperEngineTools/source-setup.cfg
Normal file
@ -0,0 +1,10 @@
|
||||
// First enable cheats
|
||||
sv_cheats 1
|
||||
|
||||
// set max fps for cosistent waiting
|
||||
fps_max 60
|
||||
|
||||
// Hide the HUD
|
||||
cl_drawhud 0
|
||||
impulse 200
|
||||
// crosshair 0
|
Loading…
Reference in New Issue
Block a user