@Kuma Yeah this sucks man. That’s the reason why I’ve switched to M&K to play melee Primal Strike. The guy doesn’t approach enemies and sometimes swings in the air whereas with M&K he approaches automatically and you never swing in the air. Unfortunately I cannot do anything about since I don’t read the game’s memory and I cannot read the position of the monster you are targetting with a controller (the cursor is hidden and is in a completely different place then)
@klasperstanze
Inquisitor Seal cast under your feet when using mouse and keyboard
SendMode Input
;#UseHook
#NoEnv
#SingleInstance Force
#MaxHotkeysPerInterval 1000
#MaxThreadsPerHotkey 1
#KeyHistory 50
;#InstallKeybdHook
;#InstallMouseHook
SetWorkingDir %A_ScriptDir%
s::
WinGetActiveStats, Title, Width, Height, X, Y
MouseGetPos, xpos, ypos
BlockInput, MouseMove
MouseMove, Width/2, Height/2
Sleep 10 ;Sleep, 25 lowered it, needs testing in specific case
Send {3}
;Sleep, 25 not needed in most cases, test it
MouseMove, xpos, ypos
BlockInput, MouseMoveOff
Return
A few remarks:
- I included my settings in the beginning since not all scripts work well if I mess them up
- s:: -> the key you’d like to cast the seal with
- Send {3} -> bind this key to da Seal
- The keys in 2) and 3) should be different. I can make it work when it’s one and the same key but it has some minor problems so I would prefer these to be different. But if you really need this to be one key, tell me