Created
March 30, 2015 16:28
-
-
Save Der-Eddy/7ddc99490adddb8cd763 to your computer and use it in GitHub Desktop.
Dota2 camera
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
////# Center on hero | |
alias "centerhero" "+dota_camera_center_on_hero;-dota_camera_center_on_hero" //"dota_select_all; dota_select_all; +dota_camera_follow" | |
////# Follow hero with single tap without locking camera | |
alias freelock "dota_camera_lock 0;+dota_camera_follow; -dota_camera_follow; +dota_camera_follow" | |
bind "SPACE" "freelock" | |
////# Jump to last map ping location while key pressed | |
alias "+show_lastping" "dota_recent_event";alias "-show_lastping" "centerhero" | |
bind "P" "+show_lastping" // Show Recent Event (last ping) - SET TO ALT+P IN GUI!!! | |
////# AveYo's Look around the map while key pressed - towers, runes, ancients | |
alias "+show_radiant_top" "dota_camera_set_lookatpos -5900 2200";alias "-show_radiant_top" "centerhero" | |
alias "+show_radiant_ancients" "dota_camera_set_lookatpos -2700 200";alias "-show_radiant_ancients" "centerhero" | |
alias "+show_radiant_bot" "dota_camera_set_lookatpos 5100 -5700";alias "-show_radiant_bot" "centerhero" | |
alias "+show_rune_top" "dota_camera_set_lookatpos -1800 1200";alias "-show_rune_top" "centerhero" | |
alias "+show_river_mid" "dota_camera_set_lookatpos -500 -400";alias "-show_river_mid" "centerhero" | |
alias "+show_rune_bot" "dota_camera_set_lookatpos 2400 -2100";alias "-show_rune_bot" "centerhero" | |
alias "+show_dire_top" "dota_camera_set_lookatpos -5500 5700";alias "-show_dire_top" "centerhero" | |
alias "+show_dire_ancients" "dota_camera_set_lookatpos 3900 -600";alias "-show_dire_ancients" "centerhero" | |
alias "+show_dire_bot" "dota_camera_set_lookatpos 6200 -1900";alias "-show_dire_bot" "centerhero" | |
////# LOOK AROUND THE MAP BY PRESS AND HOLDING NUMBERS 1-9 ON THE KEYPAD | |
bind "KP_7" "+show_radiant_top"; bind "KP_8" "+show_rune_top"; bind "KP_9" "+show_dire_top" //TOP ZONES 7 8 9 | |
bind "KP_4" "+show_radiant_ancients"; bind "KP_5" "+show_river_mid"; bind "KP_6" "+show_dire_ancients" //CENTER ZONES 4 5 6 | |
bind "KP_1" "+show_radiant_bot"; bind "KP_2" "+show_rune_bot"; bind "KP_3" "+show_dire_bot" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment