Skip to content

Chips Reference

Wick edited this page Apr 26, 2026 · 1 revision

Chips Reference (General tab)

The General tab shows 38 clickable chips that insert common macro fragments into the editor at the cursor position. Two columns: conditionals on the left, slash commands on the right.

Conditional chips (20)

Conditionals go inside [brackets] after a slash command and gate when the action runs. Multiple conditionals in one bracket are AND-ed; multiple bracket sets in one command are OR-ed.

Targeting

Chip Inserts Meaning
@mouseover [@mouseover] act on whatever your cursor is over
@focus [@focus] act on your focus target
@player [@player] act on yourself
@target [@target] act on your current target (rarely needed — implicit)

Target qualifiers

Chip Inserts Meaning
help [help] target is friendly (can be helped)
harm [harm] target is hostile (can be harmed)
exists [exists] target slot has someone in it
nodead [nodead] target is alive

Modifier keys

Chip Inserts Meaning
mod:shift [mod:shift] Shift held while pressing
mod:ctrl [mod:ctrl] Ctrl held
mod:alt [mod:alt] Alt held

Combat / stance / form / stealth

Chip Inserts Meaning
combat [combat] you are in combat
nocombat [nocombat] you are NOT in combat
stance:1 [stance:1] warrior battle stance (or first stance for the class)
stance:3 [stance:3] berserker stance / third stance
form:3 [form:3] druid bear form (or third form)
stealth [stealth] you are stealthed
nostealth [nostealth] you are NOT stealthed

Common combos

Chip Inserts
mouseover-help [@mouseover,help,nodead]
mouseover-harm [@mouseover,harm,nodead]

Slash command chips (18)

Chip Inserts Notes
#showtooltip #showtooltip always put this on line 1 to make icon swap dynamic
/cast /cast most common command
/castsequence /castsequence iterates abilities on each press
/use /use for items / trinkets
/stopcasting /stopcasting abort current cast
/cancelaura /cancelaura drop a buff (usually self)
/cancelform /cancelform drop druid form / shaman ghost wolf
/stopattack /stopattack for bait/pull macros
/startattack /startattack force auto-attack on
/target /target switch target
/focus /focus set focus target
/clearfocus /clearfocus clear focus
/petattack /petattack send pet on current target
/petfollow /petfollow recall pet
/dismount /dismount get off the mount
/equip /equip swap weapon
/stopmacro /stopmacro conditional early-out (with bracket conditions)
/run /run run a Lua snippet (advanced)

Tips

  • Click any chip to insert at the editor's cursor position.
  • Most slash commands need a target (spell name, item, etc.) — the chip inserts a trailing space so you can type it.
  • Brackets-only conditionals (no command) can be chained: /cast [@mouseover,help] [@target,help] Healing Touch — falls through to the first valid target.
  • The 255-char counter goes amber at 200, red at 240. Keep your macros tight.

Coming later

User-defined custom chips (so you can add your own conditionals or slash commands) are noted as a pending feature — see the project repo's issues for status.

Clone this wiki locally