forked from jrc13245/SuperCleveRoidMacros
-
Notifications
You must be signed in to change notification settings - Fork 3
Quick Start
Jrc13245 edited this page Mar 3, 2026
·
1 revision
#showtooltip
/cast [mod:alt] Frostbolt; [mod:ctrl] Fire Blast; Blink-
Conditionals in
[]brackets, space or comma separated -
Arguments use colon:
[mod:alt],[hp:>50] -
Negation with
noprefix:[nobuff],[nomod:alt] -
Target with
@:[@mouseover,help],[@party1,hp:<50],[@targetowner,help](v2.41+) -
Spell names with spaces:
"Mark of the Wild"orMark_of_the_Wild
| Syntax | Logic | Example | Meaning |
|---|---|---|---|
[buff:X/Y] |
OR | [buff:Renew/Rejuvenation] |
Has Renew or Rejuvenation |
[buff:X&Y] |
AND | [buff:Fortitude&Mark_of_the_Wild] |
Has Fort and MotW |
[nobuff:X/Y] |
NOR | [nobuff:Renew/Rejuvenation] |
Missing both Renew and Rejuvenation |
[nobuff:X&Y] |
NAND | [nobuff:Fortitude&Mark_of_the_Wild] |
Missing at least one of Fort or MotW |
De Morgan's Law: Negation flips the operator.
no+/(OR) → AND (must lack all).no+&(AND) → OR (must lack at least one).
Multiple instances = AND between groups:
[mybuff:X/Y mybuff:Z] -- (has X OR Y) AND (has Z)[hp:>50] -- Health above 50%
[hp:>20&<50] -- Health between 20% and 50%
[buff:"Name"<5] -- Less than 5 seconds remaining
[debuff:"Name">#3] -- 3+ stacks (use # for stacks)| Prefix | Example | Description |
|---|---|---|
! |
!Attack |
Only use if not active |
? |
?[equipped:Swords] Ability |
Hide from tooltip |
~ |
~Slow Fall |
Toggle buff on/off |