Like the title says using AHK (AutoHotKey). And trying to get "Interact With Target" set to "NumPadDiv".
Code:
~NumPadDiv::
KeyWait, NumPadDiv, D
ControlSend,, {NumPadDiv}, ahk_id %idClone%
Return
Similar commands are functioning on slave like this but that one specifically. I have "NumPadDiv" bound to master and slave so they do the action together. Just master interacts with the target via "NumPadDiv". Though even with "NumPadDiv" being bound on slave, it will not. Even tried other keys bound to Interact With Target, with the same luck. It just isn't wishing to work. Though all my other keys work just fine 0-9,keypad 0-9,F1-F12, Tab,Shift,Up,LButton,-,x.
Now if I swap one of the working ones that work into interact with target. Then it fails like before. Is there something more thats needed for my slave to interact with its target beyond a keybind to interact with target?
Using many but here's examples of working ones:
Code:
// numpaddadd macro
/assist [mainname]
// bound to target nearest enemy
~Up::
KeyWait Up
ControlSend,, {Up}, ahk_id %idClone%
Return
// bound to numpadadd that fires numpadadd macro. allows me to double click targets for them to target them as well.
~LButton::
ControlSend,, {NumPadAdd}, ahk_id %idClone%
Return
// bound to numpadsub that fires a macro
~NumPadSub::
KeyWait, NumPadSub, D
ControlSend,, {NumPadSub}, ahk_id %idClone%
Return
// bound to numpadadd that fires a macro
~NumPadAdd::
KeyWait, NumPadAdd, D
ControlSend,, {NumPadAdd}, ahk_id %idClone%
Return
Would appreciate anyone's input why Interact With Target regardless of the key I choose. Is failing to fire on slave. And again just to clarify the chosen key is being applied to both master and slave keybinds.
Connect With Us