here is the line:
Code: Select all
/if n $char(hp,pct)<90 /if n $char(buff,"Supernal Cleansing")==0 /if n $char(gem,"Supernal Cleansing")>0 /if n $char(mana,pct)>20 /if n $char(hp,pct)<90 /cast "Supernal Cleansing" thanks for any help
Moderator: MacroQuest Developers
Code: Select all
/if n $char(hp,pct)<90 /if n $char(buff,"Supernal Cleansing")==0 /if n $char(gem,"Supernal Cleansing")>0 /if n $char(mana,pct)>20 /if n $char(hp,pct)<90 /cast "Supernal Cleansing" Code: Select all
/if (n $char(hp,pct)<90 && n $char(buff,"Supernal Cleansing")==0 && n $char(gem,"Supernal Cleansing")>0 && n $char(mana,pct)>20) {
/keypress toggletarget
/cast "Supernal Cleansing"
/keypress toggletarget
}