"Hotkey" isn't the same as MovementHotkey, you need to use the MovementHotkey command, which is why all the stuff labeled Hotkey isn't working. It needs to look the same as the defined movement hotkeys in the basic script -
Code:
//-----------------------------------------------------------
// DEFINE MOVEMENT KEYS THAT WILL GET SENT TO BOTH WOW'S.
// ADD MORE KEYS IF YOU WANT.
//-----------------------------------------------------------
<MovementHotkey ScrollLockOn up, down, left, right>
<SendLabel w1, w2>
<Key %Trigger%>
What you're trying to do should look like this -
Code:
<MovementHotkey D>
<SendLabel w1>
<Key J>
But, MovementHotkey is for movement, not spamming keys. It is not a matter of infinitely sending J as long as you hold the key, that would be automation, which you will not get help with here. Movement hotkeys work by maintaining sustained keypresses, just like W works to move a character forward as long as you hold it in single play. W is not being repeatedly sent to the game, the action is just being sustained until the key is released. And depending on the game, it may reject this action anyway.
Connect With Us