Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

[CODE title="Hotkey"]/bct <Cleric_Name> //stopcast
/bct <Cleric_Name> //mqp on
/bct <Cleric_Name> //alt act 153
/bct <Cleric_Name> //mqp off[/CODE]
This should cause Cleric to stop casting, pause macro, cast radiant cure and then resume the macro.
You can do this:Do you ever have that hot key misfire?
Like EQ lags and it activates out of order because without pauses it try’s to execute those commands all at once?
/multiline ; /bct <Cleric_Name> //stopcast ; /timed 10
/multiline ; /bct <Cleric_Name> //mqp on ; /timed 10
/multiline ; /bct <Cleric_Name> //alt act 153 ; /timed 10
/multiline ; /bct <Cleric_Name> //mqp off
1) Make a regular 5 line macro in EQ so it triggers the aa, or drag and drop to a spot on your hotbar, then bind a key (in options) to that particular hotbar position.
/timer 10
/alt act 153
Alternatively, you can make a custom bind within KA (see at bottom of KA instructions for making a new inc file):
[CODE lang="ini" title="KA Way"]|||
||| At botom of KA, remove the | so it includes your customized binds.
|||
#include kissmycmds.inc
|||
||| Put this in your kissmycmds.inc
|||
||| Target the player, and type /radiantcure (also works as a hotbutton command)
|||
#bind DoRadiantCure /radiantcure
Sub Bind_DoRadiantCure
/echo Herbs and essential oils on the way!
/call CastWhat "Radiant Cure" ${Target.ID} Bind_DoRadiantCure 0 0
/return[/CODE]
You can do this:
\INI:/multiline ; /bct <Cleric_Name> //stopcast ; /timed 10 /multiline ; /bct <Cleric_Name> //mqp on ; /timed 10 /multiline ; /bct <Cleric_Name> //alt act 153 ; /timed 10 /multiline ; /bct <Cleric_Name> //mqp off
I don't use KA, do not like it.
/multiline ; /timed 20 /say hi; /say hi again/command TimeInTenthsOfASecond /CommandToFireOnceTimerExpires/multiline ; /bct <Cleric_Name> //stopcast
/timed 10 /multiline ; /bct <Cleric_Name> //mqp on
/timed 20 /multiline ; /bct <Cleric_Name> //alt act 153
/timed 30 /multiline ; /bct <Cleric_Name> //mqp off
/multiline ; /timed 5 /echo 1; /timed 30 /echo 2; /echo 3; /timed 10 /echo 4
