Centenario wrote: ↑Mon 23 Nov 2020 9:29 AM
I used to do it this way:
You have 10 bars to use.
I have each bar identical except for 2 buttons.
1 button for qbar switch
1 button for chant
Then with AHK you say that when you press a button (I use Q) it will press both the chant and the qbar switch.
So if i am on qbar one with the af chant.
When pressing Q I use af chant and switch to qbar 2.
then when pressing Q i use the dps chant and switch to qbar 3
then when pressing Q (3rd) i use the heal chant and switch back to Q bar 1 (AF)
In gameplay I just press Q around every 3 seconds without worrying about which chant is playing.
A simple AHK would be:
;MainTwisting
Q::
Send, 90
return
With 9 being chant and 0 being the qbarswitch
Now I have switched to something more simple:
1) Main Twisting (AF/DPS/Heal)
2) Resist Twisting (All resists in a row)
I use them on mousewheel, so mousewheel up is main twisting and mousewheel down is resist twisting.
The AHK script is:
;Main Twisting
WHEELUP::
Send, 890
Return
;Resist Twisting
WHEELDOWN::
Send, <!3<!4<!5<!6<!7<!8
Return
So you can just do 1 tick of mousewheel up and down for the whole thing, or choose main or resist with going only in 1 direction.
I am not very satisfied with it, cause in scenarios where you'd like a specific resist to be last (maybe heat) then you cannot choose.
I am thinking maybe the best would be to use Wheelup for the corporeal resists (mind/body/matter) and the Wheeldown for the elemental resists.
And use another button for the Main Twisting.
Or maybe combining the first macro with this one, and switching all the qbars to have 1 resist as last all the time.
So you create a fake macro called FIRE that you put on your bar to tell you on which bar you are currently.
Lets say you are going to midgard, and you know midgard generally (http://disorder.dk/daoc/spell-damage-types/) you'd want cold or energy to stay more so you can preselect which resist would be last by pressing Q until u land on the COLD bar and then just use mwheeldown.
Anyway its a work in progress I havent played paladin enough to know what is the best setup yet.