Advertisement
joric

autoexec.cfg

Jun 15th, 2018
491
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // copy to portal2/cfg after editing, if it doesn't work type "exec autoexec"
  2. // write to console (use say command to echo something on game screen)
  3. echo "Running autoexec"
  4.  
  5. // name is also in the .ini files
  6. name "Player"
  7.  
  8. bind "q" "save quick"
  9. bind "z" "load quick"
  10.  
  11. bind "1" "host_timescale 0.1"
  12. bind "2" "host_timescale 1.0"
  13. bind "3" "host_timescale 2.0"
  14.  
  15. alias +ff "sv_cheats 1; host_timescale 5.0; multvar volume 0 1 0.25"
  16. alias -ff "host_timescale 1.0; multvar volume 0 1 4"
  17. bind "Shift" "+ff"
  18.  
  19. alias noclipToggleOn "sv_cheats 1; noclip; alias noclipToggle noclipToggleOff"
  20. alias noclipToggleOff "noclip; alias noclipToggle noclipToggleOn"
  21. alias noclipToggle noclipToggleOn
  22. bind "c" "noclipToggle"
  23.  
  24. alias brightToggleOn "sv_cheats 1; mat_fullbright 1; alias brightToggle brightToggleOff; say 4 pressed - fullbright on"
  25. alias brightToggleOff "mat_fullbright 0; alias brightToggle brightToggleOn; say 4 pressed - fullbright off"
  26. alias brightToggle brightToggleOn
  27. bind "4" "brightToggle"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement