Advertisement
Guest User

kurcina

a guest
Mar 29th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  1.  
  2. //////////////////////////////////////////
  3. // CONSOLE SETTINGS - DON'T TOUCH
  4. //////////////////////////////////////////
  5. developer "1" // Enables developer mode
  6. con_enable "1" // Enables the console
  7. con_notifytime "20" // Sets the on-screen output messages to 6 seconds until fade-away
  8. contimes "20" // Enables up to 14 lines of on-screen output messages
  9. con_filter_text "##@@" // Filters out other console output (the string must be a character sequence which is unlikely to appear in the console)
  10. con_filter_enable "1" // Enables filtering of console on-screen output
  11.  
  12.  
  13. //////////////////////////////////////////
  14. // MISC
  15. //////////////////////////////////////////
  16. dota_killcam_show "0" // Enables information windows upon death (default 0)
  17.  
  18.  
  19. //////////////////////////////////////////
  20. // MOUSE
  21. //////////////////////////////////////////
  22. dota_force_right_click_attack "1" // Rightclick deny disabled (default 0)
  23.  
  24.  
  25. //////////////////////////////////////////
  26. // MINIMAP
  27. //////////////////////////////////////////
  28. dota_minimap_hero_size "1200" // Slightly bigger hero icons on minimap (default 600)
  29. echo " [w~>] Minimap settings"
  30.  
  31.  
  32. //////////////////////////////////////////
  33. // NETGRAPH
  34. //////////////////////////////////////////
  35. bind "f11" "showgraph" // Toggle Net_Graph
  36. net_graphinsetbottom "416" // Position from bottom edge. Put "55" for 1280x800 (Default 0)
  37. net_graphinsetright "-194" // Position from right edge. Put "-100" for 1280x800 (Default 0)
  38. net_graphproportionalfont "0" // Makes net_graph text smaller (Default 1)
  39. net_graph "1" // Enables the Net_Graph (Default 0)
  40. alias "showgraph" "showgraph_off" // DON'T TOUCH THIS
  41. alias "showgraph_on" "net_graph 1; alias showgraph showgraph_off" // DON'T TOUCH THIS
  42. alias "showgraph_off" "net_graph 0; alias showgraph showgraph_on" // DON'T TOUCH THIS
  43. echo " [~>] Netgraph settings"
  44.  
  45.  
  46. //////////////////////////////////////////
  47. // SCRIPT: Rune top/bot hotkeys
  48. //////////////////////////////////////////
  49. // Jump camera to rune positions while pressing the keys and back to hero on release
  50. unbind "f1"; bind "f1" "+show_runetop" // Jump camera to top rune and back to hero
  51. unbind "f2"; bind "f2" "+show_runebottom" // Jump camera to bottom rune and back to hero
  52. alias "+show_runetop" "dota_camera_setpos -2296.339355 1085.593506 0.000000"
  53. alias "-show_runetop" "+dota_camera_follow;+dota_camera_follow;-dota_camera_follow"
  54. alias "+show_runebottom" "dota_camera_setpos 2874.552734 -3017.180664 0.000000"
  55. alias "-show_runebottom" "+dota_camera_follow;+dota_camera_follow;-dota_camera_follow"
  56. echo " [~>] Script runes settings"
  57.  
  58. //////////////////////////////////////////
  59. // FAST COURIER
  60. //////////////////////////////////////////
  61. // Courier picks up whole stash and brings it to you with speedup before returning to base
  62. bind "g" "quick_courier" // Change mouse5 to any key (eg: f1 or f2)
  63. alias "quick_courier" "dota_courier_deliver; say_team Courier is coming to me! Please wait.;dota_select_courier;dota_ability_execute 5;+dota_camera_follow"
  64. echo " [~>] Script courier settings"
  65.  
  66.  
  67.  
  68.  
  69. echo "///////////////////////////////////////////////////"
  70. echo "// AUTOEXEC.CFG DONE ! //"
  71. echo "///////////////////////////////////////////////////"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement