Dota – command to move your character

dota-2

I am searching for a command to use in the console to move my hero (optional: to a specific location).

My reference is: http://dota2.gamepedia.com/Console_Command_List

But it is outdated.

Does anyone have an idea how to archive this?

Best Answer

i found a way to do it:

alias "myLeftclick" "+sixense_left_click; -sixense_left_click"

alias "myMove" "mc_move; myLeftclick"
bind "B" "myMove"

Explanation:

myLeftclick uses the sixense commands from valve which allow to simulate a leftclick (+ for pressing down and - for releasing it)

mc_move is the move command. (it changes your mouse cursor to reflect that you pressed this command.) it expects a destination (a click anywhere on the map or minimap).

now we combine both into one command myMove and bind this to B