[Tool] AutoHotkey scripts

Inquisitor Seal cast under your feet when using controller

shift := 0
1::
    WinGetActiveStats, Title, Width, Height, X, Y
    MouseMove, shift + Width/2, Height/2
    shift := shift ^ 1
    Sleep, 10
    Send {Click, right}
Return

One guy didn’t like the fact that the seal is cast in front of your character if using gamepad.
The solution is to:

  1. bind Inquisitor Seal to Right click in Mouse & Keyboard mode
  2. bind ‘1’ to some controller key using Steam Configuration (you need to access ‘Legacy Keys’ menu)
  3. run the script
  4. unfortunately you need to move analog stick a bit after every such cast to go back to controller mode from mouse mode

More info here: A self-target action for Controller

1 Like