1
Quick Start
Jrc13245 edited this page 2026-03-03 16:08:18 -05:00

Quick Start

Basic Syntax

#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 no prefix: [nobuff], [nomod:alt]
  • Target with @: [@mouseover,help], [@party1,hp:<50], [@targetowner,help] (v2.41+)
  • Spell names with spaces: "Mark of the Wild" or Mark_of_the_Wild

Multi-Value Logic

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)

Comparisons

[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)

Special Prefixes

Prefix Example Description
! !Attack Only use if not active
? ?[equipped:Swords] Ability Hide from tooltip
~ ~Slow Fall Toggle buff on/off