gotwqqd wrote: ↑Wed 13 Jan 2021 2:21 PM
How do you use backup with the qbind and macro
You qbind the two styles. You don't want to use keys you would use to write with another one.
Don't mix A and E in AHK otherwise each time you type A in the chat it will write AE.
Here is an example of what I do for PA and ice storm as a back up :
;perforate A
$tab::
send, {tab}{f11}
return
Tab is the qbind for PA and Ice Storm is F11. So when I press tab, it will send tab+F11
This is the whole stuff I do with my BM as an example :
;Noashakrah
RETURN
#UseHook
#IfWinActive, ahk_class DAoCMWC
;Peel back side
r::
send, r{up}{f3}{f2}
return
;Deal anytime Side
e::
send, e{up}{ins}{f7}{f5}{f1}
return
;Fire blade
a::
send, a{up}{end}{f2}{down}
return
;Slam
<::
send, <{up}{f11}{right}
return
#UseHook off
As an example :
;Slam
<::
send, <{up}{f11}{right}
return
It sends stick (up) + slam (f11) + protec (right), so if i use it on an enemy it will slam and on an ally it will apply protection. "<" isn't bound to anything, you need to put it there otherwise you can't use it in the chat.