[WoW] Assistance with Script and Interact with target
Hello!
This is my first post here, so thanks for the opportunity and hopefully I'm not posting on the wrong subforum.
I'll be brief: In WoW, I'm trying to make so my HotKeyNet script will allow me to trigger modifiers like the sequence: Shift + C, etc... The thing is, I managed to get my script working (kind of) but now the keybind placed to trigger the 'Interact with target' (which I assigned the number '3' to) won't work properly, as it used to before I tinkered with the key modifier stuff.
That said script is very primitive and basic, and was inspired in a video I just saw on YouTube. It currently looks like this:
Main code:
Code:
<Label alpha local SendWinM WoW1>
<Label bravo local SendWinM WoW2>
<Hotkey Shift Oem102>
<SendLabel alpha, bravo>
<KeyDown Shift Oem102>
<Hotkey Shift Oem5>
<SendLabel alpha, bravo>
<KeyDown Shift Oem5>
<Hotkey Shift e>
<SendLabel alpha, bravo>
<KeyDown Shift e>
<Hotkey Shift q>
<SendLabel alpha, bravo>
<KeyDown Shift q>
<Hotkey Shift r>
<SendLabel alpha, bravo>
<KeyDown Shift r>
<Hotkey Ctrl Oem102>
<SendLabel alpha, bravo>
<KeyDown Ctrl Oem102>
<MovementHotkey 1, 2, 3, 4, 5, Space, F1, F3, Oem102, q, e, r, t, f, c, v, z>
<SendLabel alpha, bravo>
<Key %Trigger%>
Written down in a notepad .txt file.
The code that was working with 'Interact with target':
Old code:
Code:
<Label alpha local SendWinM WoW1>
<Label bravo local SendWinM WoW2>
<MovementHotkey 1, 2, 3, 4, 5, Space, F1, F3, Oem102, q, e, r, t, f, c, v, z>
<SendLabel alpha, bravo>
<Key %Trigger%>
My doubts:
1. I'm really new to this stuff... Am I being redundant with the Main Code? Is there a way to sum that up without interfering with the mentioned Interact with target keybind?
2. If so, will it be possible for you guys to give me a hand and explain to me what's the best way to make so my modifiers or key sequences can now work as intented?
My goal:
1. Broadcast this hotkeys or key sequences: Shift+C, Shift+R, Shift+<, Ctrl+<, etc... without messing up the Old Code that was working fine.
Thank you all for your thoughts and happy holidays! :D