Urik_Kane

mat_setvideomode guide [Source / L4D2]

Jan 22nd, 2013 (edited)
7,614
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. ------ Aliasing a scheme reloading command based on mat_setvideomode [L4D2] ------
  2.  
  3. Command values explanation:
  4. To load some L4D2 resource files, it requires a change in either screen resolution or windowed/fullscreen state.
  5. mat_setvideomode <horizontal resolution> <vertical resolution> <windowed yes/no
  6.  
  7. In the following examples, the command tells the game to switch to windowed mode and back to fullscreen instantly.
  8. The command requires defining the correct screen resolution you're playing in.
  9.  
  10. --- Examples here (you can copy / paste these to your autoexec.cfg):
  11.  
  12. -----4x3 ratio
  13. alias reloadfont "mat_setvideomode 1024 768 1; mat_setvideomode 1024 768 0"
  14. alias reloadfont "mat_setvideomode 1280 1024 1; mat_setvideomode 1280 1024 0"
  15.  
  16. -----16:10 ratio
  17. alias reloadfont "mat_setvideomode 1280 768 1; mat_setvideomode 1280 768 0"
  18. alias reloadfont "mat_setvideomode 1280 800 1; mat_setvideomode 1280 800 0"
  19. alias reloadfont "mat_setvideomode 1440 900 1; mat_setvideomode 1440 900 0"
  20. alias reloadfont "mat_setvideomode 1600 1024 1; mat_setvideomode 1600 1024 0"
  21. alias reloadfont "mat_setvideomode 1680 1050 1; mat_setvideomode 1680 1050 0"
  22.  
  23. -----16:9 ratio
  24. alias reloadfont "mat_setvideomode 1280 720 1; mat_setvideomode 1280 720 0"
  25. alias reloadfont "mat_setvideomode 1360 768 1; mat_setvideomode 1360 768 0"
  26. alias reloadfont "mat_setvideomode 1366 768 1; mat_setvideomode 1366 768 0"
  27. alias reloadfont "mat_setvideomode 1600 900 1; mat_setvideomode 1600 900 0"
  28. alias reloadfont "mat_setvideomode 1920 1080 1; mat_setvideomode 1920 1080 0"
  29.  
  30.  
  31. NOTE: If you play in windowed mode, then swap the "1" and "0", example:
  32. alias reloadfont "mat_setvideomode 1920 1080 0; mat_setvideomode 1920 1080 1"
Add Comment
Please, Sign In to add comment