FocusedWolf

CS:GO launch options

Mar 15th, 2016
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.11 KB | None | 0 0
  1. # This is what i use now.
  2. # -no-browser + cl_disablehtmlmotd "0" in autoexec = no more ads/kicks from community servers + no more ads.
  3. -no-browser -nod3d9ex -novid -nojoy +mat_vignette_enable 0
  4.  
  5. # Someone said +mat_queue_mode 2 could lower performance
  6. -nod3d9ex -novid -nojoy +mat_vignette_enable 0
  7.  
  8. -no-browser --> Disable the MOTD browser, and now you can set "cl_disablehtmlmotd 0" to avoid getting kicked from surf/idle servers.
  9. This will also give you an FPS boost and less FPS drops if you used to play with ads.
  10. This parameter will do the same as cl_disablehtmlmotd "1".
  11. It will NOT disable your overlay browser that browser is integrated with the Steam client not CSGO.
  12. https://www.reddit.com/r/GlobalOffensive/comments/7jjwq9/if_you_get_kicked_for_using_cl_disablehtmlmotd_1/
  13.  
  14. -language pirate --> Pirate language.
  15.  
  16. -freq 60 --> https://www.reddit.com/r/GlobalOffensive/comments/4aissc/59_hz_caused_that_my_game_felt_so_laggy_my_mouse/
  17. Open your console and write "mat_info"
  18. Check the displayed info where it mentions monitor Hz.
  19. If its set to 59HZ exit the game -> go to launch options and add "-freq 60" -> press ok and check how the game feels.
  20.  
  21. heapsize --> http://steamcommunity.com/sharedfiles/filedetails/?id=557297126
  22. https://steamcommunity.com/app/730/discussions/0/618457398956951008
  23.  
  24. 1gb = 1048576 = 1 * 1024 * 1024 (PC's with 2gb of system RAM)
  25. 1.5gb = 1572864 = 1.5 * 1024 * 1024 (PC's with 3gb of system RAM)
  26. 2gb = 2097152 = 2 * 1024 * 1024 (PC's with 4gb of system RAM)
  27. 3gb = 3145728 = 3 * 1024 * 1024 (PC's with 6gb of system RAM)
  28. 4gb = 4194304 = 4 * 1024 * 1024 (PC's with 8GB of system RAM)
  29. 6gb = 6291456 = 6 * 1024 * 1024 (PC's with 12GB of system RAM)
  30. 8gb = 8388608 = 8 * 1024 * 1024 (PC's with 16GB of system RAM)
  31. 12gb = 12582912 = 12 * 1024 * 1024 (PC's with 24GB of system RAM)
  32. 16gb = 16777216 = 16 * 1024 * 1024 (PC's with 32GB of system RAM)
  33.  
  34. -novid --> Disable the intro videos that play when starting cs:go.
  35.  
  36. -tickrate 128 --> Force 128 tick offline servers.
  37.  
  38. -high --> Start the game in high-priority process mode.
  39.  
  40. -threads 4 --> Processor has 4 physical cores (8 hyper threaded threads) therefore 4 gives the best fps.
  41. Some people have reported less fps when using this. Perhaps it's due to different processors and the number of threads cs:go is now using.
  42.  
  43. -nod3d9ex
  44. -nod3d9ex1 --> Disables D3D9ex extensions whould allows you to alt-tab faster.
  45. Note: Some online sources say this is "-nod3d9ex" instead of "-nod3d9ex1"
  46. Maybe just specify both -nod3d9ex and -nod3d9ex1
  47. Also someone said that in some builds -nod3d9ex caused fps loss.
  48. Also other ppl say this command was removed.
  49.  
  50. -nojoy --> Removes joystick support.
  51.  
  52. +mat_vignette_enable 0 --> Removes black circular edges around the screen.
  53.  
  54. +mat_queue_mode 2 --> https://www.reddit.com/r/GlobalOffensive/comments/41b8lc/mat_queue_mode_2/
  55. Determines the threading mode the material system uses.
  56. -1 use the default for your system
  57. 0 use synchronous single thread
  58. 1 use queued single threaded mode
  59. 2 uses multi-threaded mode. Many users report performance increases on multi-core systems when using 2.
  60.  
  61. This setting also is listed in video.txt like "setting.mat_queue_mode" "2" but its good to specify it here to because video options tend to get accidentally changed.
Add Comment
Please, Sign In to add comment