nindalf

Nindalf's Dota2 autoexec.cfg

Aug 21st, 2012
602
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 3.38 KB | None | 0 0
  1. //==============================================
  2. //=              Dota 2 Autoexec               =
  3. //=            From the Dota2 wiki             =
  4. //=--------------------------------------------=
  5. //=Place the autoexec.cfg file in here:        =
  6. //=steam\steamapps\common\dota 2 beta\dota\cfg\=
  7. //==============================================
  8.  
  9. // From the reddit post on autoexec.cfg where users shared their favourite commands:
  10. // http://sl.reddit.com/r/DotA2/comments/snij4/so_rdota2_what_setup_do_you_have_inside_your/
  11.  
  12. // Note: once you have placed this file in your cfg folder, please ensure there are no
  13. // clashes with your other key bindings. For example, the quick_courier is bound here to
  14. // the key "m", but by default that is assigned to movement. For this to work, the
  15. // move command has to be reassigned to something else.
  16.  
  17. //////////////
  18. // SETTINGS //
  19. //////////////
  20.  
  21. // Enables the in-game console
  22. con_enable "1"
  23.  
  24. // Enables the old learn tab where heroes would say their dialogues
  25. dota_sf_old_heropedia "1"
  26.  
  27. //Enables right click deny: 0= off   1= on
  28. dota_force_right_click_attack "1"
  29.  
  30. // Hero autoattack disabled    
  31. // dota_player_units_auto_attack 0 
  32. // Alternately you could use this. If you press h once, he will stop auto attacking
  33. alias "auto_attack" "stop_attacking"
  34. alias "stop_attacking" "dota_player_units_auto_attack 0; dota_stop; alias auto_attack start_attacking"
  35. alias "start_attacking" "dota_player_units_auto_attack 1; dota_stop; alias auto_attack stop_attacking"
  36. bind "h" "auto_attack"
  37.  
  38. //Shows the range of your spells: 0= When clicked to use the spell   1= When mouse is over spell icon
  39. dota_disable_range_finder "0"
  40.  
  41.  
  42. //////////////
  43. ///   SAY  ///
  44. //////////////
  45.  
  46. bind "leftarrow" "say_team miss top"
  47. bind "rightarrow" "say_team miss bottom"
  48. bind "downarrow" "say_team miss mid"
  49. bind "uparrow" "say_team re"
  50.  
  51.  
  52. //////////////  
  53. /// SCRIPT ///
  54. //////////////
  55.  
  56. // Courier gets all items from stash and transfers to you while activating speed burst. Your hero is selected once more.
  57. // Works even on the non-flying version that does not have speed burst.
  58. alias "quick_courier" "dota_select_courier;dota_ability_execute 3;dota_ability_execute 4;dota_ability_execute 5;+dota_camera_follow; -dota_camera_follow"
  59. bind "m" "quick_courier"
  60.  
  61. // Sends the courier home while activating speed burst. Your hero is selected once more.
  62. alias "courier_gtfo" "dota_select_courier;dota_ability_execute 0;dota_ability_execute 5;+dota_camera_follow"
  63. bind "n" "courier_gtfo"
  64.  
  65. // Creates a circle of a given radius around your hero. A different version allows dynamic resizing.
  66. // 950 = Smoke range
  67. // 1000 = lvl4 pudge hook range/morphling waveform
  68. // 700 = tower range
  69. // 1150 = dagger range
  70. // 1200 = experience range
  71. alias "+range" "dota_range_display 1200"
  72. alias "-range" "dota_range_display 0"
  73.  
  74. bind "p" "+range"
  75.  
  76. alias "+showgraph" "+showscores;net_graph 3;"
  77. alias "-showgraph" "-showscores;net_graph 0"
  78.  
  79. bind "o" "+showgraph"
  80.  
  81.  
  82. //////////////
  83. // BINDINGS //
  84. //////////////
  85.  
  86. //bind "F3" "exec autoexec.cfg"
  87. bind "F2" "toggleconsole"  
  88. //say_team "[autoexec.cfg loaded]"
  89. bind "F3" "dota_camera_setpos -2273.898682 1232.745483 982.072876"   //Top rune
  90. bind "F4" "dota_camera_setpos 3035.773438 -2972.680176 966.072937"   //Bot rune
  91.  
  92. //Changes the amount of health per marker on health bars:  default= 250
  93. //dota_health_per_vertical_marker 100
Add Comment
Please, Sign In to add comment