I want to combine castsequence and IWT and etc together with one single key press.
Two reason:
1) When I play melee team, I always need to press IWT key frequently, I just wonder whether I can make the key press simple
2) When I play Paldinx5 team, it's annoying to use castsequence macro with a lot of commas, I just wonder whether I can use traditional castsequence macro such as:
Code:
/castquence reset=8 Crusader Strike,Judgement of Light,Divine Storm
But in order to make instant Flash of Light work together, there is no way to make macro inside WOW except by using comma.
we can make them work together by using HotkeyNet(I think for other software, there is similar way to do it, I just show the way how HKN works).
Supposed we have 5 toons named: toon1,toon2,toon3,toon4,toon5, to make it simple, no FTL setup(in fact I am using FTL but it need many scripts).
Step1:
Make macros for each toon:
macro1:
Code:
/castquence reset=8 Crusader Strike,Judgement of Light,Divine Storm
macro2:
Code:
/cast [target=focus,help]Flash of Light;[target=player]Flash of Light
/stopcasting
Put macro1 in action bar, assign hotkey 1
Put macro2 in action bar, assign hotkey Ctrl Alt Shift 1
Step2:
Make scripts in HotkeyNet
Code:
<Hotkey ScrollLockOn F1>
<Toggle>
<SendLabel w1,w2,w3,w4,w5>
<Key 1>
<Toggle>
<SendLabel w1,w2,w3,w4,w5>
<Key Ctrl Alt Shift 1>
After lauching above scripts in HKN, and press F1 twice, you will find it first send key 1 to each toon and then if there is AOW triggered, it will cast the instant heal.
Above part is the "kernel", but the macros and scripts are not "perfect" because it didn't include "target enemy" and IWT action. We can add it one by one.
Step3:
make macros for assist,(suppose we always make toon1 as main toon):
in toon2~5:
assign assist macro Ctrl Alt Shift 2
assign IWT hotkey as you wish, suppose we assigned it Ctrl Alt Shift 3
Step4:
Modify HKN scripts:
Code:
<Hotkey ScrollLockOn F1>
//target enemy
<Toggle>
<SendLabel w2,w3,w4,w5>
<Key Ctrl Alt Shift 2>
//IWT
<Toggle>
<SendLabel w1,w2,w3,w4,w5>
<Key Ctrl Alt Shift 3>
//attack enemy
<Toggle>
<SendLabel w1,w2,w3,w4,w5>
<Key 1>
//cast instant heal
<Toggle>
<SendLabel w1,w2,w3,w4,w5>
<Key Ctrl Alt Shift 1>
After we complete these scripts and macros, we can press F1 4 times:
Press F1:
each toon target toon1's target
Press F1:
each toon IWT to target and begin to attack
Press F1:
each toon castsequence Crusader Strike,Judgement of Light,Divine Storm
Press F1:
each toon heal specified target.
If you press F1 quickly, you can find it works greatly, but the shortage is that you need press F1 for many times...
another usage for caster class to face enemy: target enemy first and stop.
I am sure there are many other usages, a little tips: if you want to complete a complex action, just decompose it into many steps.
I hope it's useful for you, comments appreciated.
Connect With Us