Advertisement
Guest User

Untitled

a guest
Apr 27th, 2013
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.48 KB | None | 0 0
  1. // CONSOLE/PRELOAD
  2. con_enable "1" //Enable Console
  3.  
  4. // GENERAL SETTINGS
  5. dota_screen_shake "0" //Disable screen shake on certain abilities.
  6. dota_force_right_click_attack "1" //Allows you to deny with via right clicking.
  7. dota_disable_range_finder "0" //Brings up a range indicator when you use a spell.
  8. dota_player_multipler_orders "1" //Use CTRL to issue commands to multiple units.
  9. dota_player_units_auto_attack "1" //Autoattack (0 - OFF, 1 - ON)
  10. dota_unit_fly_bonus_height "10" //Sets flying unit's height. (10 = Ground Unit)
  11. dota_always_show_player_names "1" //Shows player names above health bar.
  12. dota_ability_quick_cast "0" //Double-cast ability to self cast. (0-OFF, 1-ON)
  13. dota_sf_game_end_delay 1 //Bring up scoreboard faster after game ends.
  14.  
  15. // FOR LOW SPEC PCs
  16. dota_cheap_water 1
  17. cl_globallight_shadow_mode 0
  18. r_deferred_height_fog 0
  19. r_deferred_simple_light 1
  20. r_screenspace_aa 0
  21.  
  22. // FRAME RATE
  23. fps_max "120" // Halves the default fps
  24. mat_vsync "0" // Stops screen refresh rate exceeding refresh rate of monitor
  25. mat_triplebuffered "0" // Enable with vsync if fps is less than 60 (0 Disables, 1 Enables)
  26.  
  27. // SOUND SETTINGS
  28. //volume "0.05" //This is adjusted for third-party voIP programs, disable if you are not using one
  29. snd_musicvolume "0" //Disable music.
  30.  
  31. // MINIMAP SETTINGS
  32. dota_minimap_hero_size 1000 //Size of hero icons on minimap. (Default = 600)
  33. dota_minimap_simple_colors 1 //Use WC3 Colors. (e.g Green x Red)
  34. dota_minimap_ping_duration 5 //How long pings last.
  35.  
  36. // HEALTH BAR SETTINGS (HEALTH CHANGE IS FASTER, AS OPPOSED TO SLOW DECAY) - Haven't messed much with these settings.
  37. dota_health_hurt_decay_time_max "0.4"
  38. dota_health_hurt_decay_time_min "0.15"
  39. dota_health_hurt_delay "0.05"
  40. dota_pain_decay "0.4"
  41. dota_pain_factor "1.5"
  42. dota_pain_multiplier "0.4"
  43. dota_health_per_vertical_marker "200" // Heath to show per vertical line on health bars.
  44. dota_health_marker_major_alpha "255"
  45. dota_health_marker_minor_alpha "128"
  46. dota_hud_healthbar_number "1"
  47.  
  48. // CAMERA SETTINGS
  49. dota_killcam_show 1 //Enables more detailed information upon death by default.
  50. dota_minimap_misclick_time "0.2" //Time to allow minimap misclicks (s).
  51. dota_camera_accelerate "49" //Good setting. Camera will stop instantly.
  52. dota_camera_speed "3682"
  53. dota_camera_disable_zoom "1" //Disables zoom via mouse wheel.
  54.  
  55. // NETGRAPH(PING)
  56. net_graphinsetbottom "418" // 100 to place below scoreboard
  57. net_graphinsetright "-80" // 600 to place below scoreboard
  58. net_graphproportionalfont "0" // Resize font
  59. net_graph "1"
  60. alias "showgraph" "showgraph_off"
  61. alias "showgraph_on" "net_graph 1; alias showgraph showgraph_off"
  62. alias "showgraph_off" "net_graph 0; alias showgraph showgraph_on"
  63. bind "F10" "showgraph" // Sets hotkey to F10 to toggle netgraph
  64.  
  65. // INTERNET SETTINGS
  66. rate "80000" // Total amount of bandwidth Dota 2 may use (40000)
  67. cl_updaterate "40" // Amount of updates recieved from server per second (20)
  68. cl_cmdrate "40" // Amount of updates sent to server per second (20)
  69. cl_interp "0" // cl_interp 1 / cl_updaterate * (cl_interp_ratio ) (Default 0.1)
  70. cl_interp_ratio "1" // Multiplies final result of cl_interp (Default 2)
  71. cl_smoothtime "0.01" // When errors occur smooth display over X time, 0 Disables (Default 0.1)
  72.  
  73. // KEY BINDINGS
  74. bind "F8" "exec autoexec.cfg" // Executes this autoexec.cfg again.
  75. bind "F11" "toggleconsole" // Open Console
  76.  
  77. alias "quick_courier" "dota_select_courier;dota_ability_execute 3;dota_ability_execute 4;dota_ability_execute 5;+dota_camera_follow;-dota_camera_follow;"say_team Courier is coming to me. Please wait.""
  78. bind "F3" "quick_courier" //Has courier grab from stash, speed boost, deliver items, and notify team that the courier is coming to you.
  79.  
  80. bind "u" "dota_learn_stats"
  81. dota_shop_force_hotkeys 0 // Adds hotkeys to shop (to turn off the set 0)
  82. bind "." "toggleshoppanel" // Open Shop
  83.  
  84. bind "F4" "dota_camera_setpos -2273.898682 1232.745483 982.072876" // Relocate camera to top rune.
  85. bind "F5" "dota_camera_setpos 3035.773438 -2972.680176 966.072937" // Relocate camera to bottom rune.
  86.  
  87. "bind" "[" "dota_range_display 0"
  88. "bind" "]" "dota_range_display 1300" //Pudge Hook Range, adjust for various ranges. (700 - Tower Range/Leshrac stun, 1200 - EXP Range, 1000 - Deny EXP Range)
  89.  
  90. // CHAT BINDINGS
  91. bind "p" "say_team Missing top!"
  92. bind "," "say_team Missing bottom!"
  93. bind "l" "say_team Missing mid!"
  94. bind "k" "say_team re"
  95. bind "n" "say_team b"
  96.  
  97. echo Autoexec.cfg loaded successfully. //Outputs text to the console to verify that autoexec has been run.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement