-
Notifications
You must be signed in to change notification settings - Fork 0
Chips Reference
Wick edited this page Apr 26, 2026
·
1 revision
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.
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.
| 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) |
| 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 |
| Chip | Inserts | Meaning |
|---|---|---|
mod:shift |
[mod:shift] |
Shift held while pressing |
mod:ctrl |
[mod:ctrl] |
Ctrl held |
mod:alt |
[mod:alt] |
Alt held |
| 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 |
| Chip | Inserts |
|---|---|
mouseover-help |
[@mouseover,help,nodead] |
mouseover-harm |
[@mouseover,harm,nodead] |
| 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) |
- 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.
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.