wow-macro-commands

Document World of Warcraft macro commands, conditionals, and syntax.

39|4|Updated Feb 12, 2026
One-click install
npx skills add https://github.com/JBurlison/WoWAddonAPIAgents --skill wow-macro-commands-jburlison
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wow-macro-commands
Source: https://github.com/JBurlison/WoWAddonAPIAgents/tree/main/.github/skills/wow-macro-commands
Command: npx skills add https://github.com/JBurlison/WoWAddonAPIAgents --skill wow-macro-commands-jburlison

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides a comprehensive guide to creating and understanding World of Warcraft macros, enabling players to automate complex in-game actions and optimize their gameplay.

Core Features & Use Cases

  • Macro Command Reference: Detailed explanations of all available slash commands like /cast, /use, /target, and /script.
  • Conditional Logic: Understand and implement macro conditionals ([mod:shift], [@mouseover], [help], [harm]) for dynamic spell casting and targeting.
  • Use Case: You want to create a macro that heals your mouseover target if you're holding Shift, otherwise casts a healing spell on your current target. This Skill will guide you through the exact syntax.

Quick Start

Explain how to use the [@mouseover, help, nodead] conditional with the /cast command.

Frequently Asked Questions about wow-macro-commands

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I write a WoW macro that casts a heal on my mouseover target?

To heal a mouseover target in a WoW macro, use the `/cast` command combined with the `[@mouseover, help, nodead]` conditional syntax to dynamically target the unit under your cursor.

What is the difference between secure and insecure commands in World of Warcraft macros?

Secure commands in WoW macros, like `/cast` and `/use`, execute protected gameplay actions, while insecure commands handle UI or chat functions, and the macro system enforces strict rules to prevent automation of secure actions.

How does the castsequence command work in WoW macros?

The `/castsequence` command in WoW macros allows you to queue multiple spells or items to execute in order with each button press, often combined with conditionals or reset timers to manage ability cooldowns.

Can I use modifier keys like Shift to change spell targeting in a macro?

Yes, you can use modifier conditionals like `[mod:shift]` within your WoW macro to change spell targeting or cast different spells dynamically based on whether the modifier key is held down.

Why does my WoW macro show the wrong tooltip and icon?

If your WoW macro shows the wrong tooltip, you need to use the `#showtooltip` or `#show` syntax at the top of the macro to explicitly define which spell or item icon should be displayed.

What are the limitations of conditionals in World of Warcraft macro scripting?

WoW macro conditionals are limited by the game's secure command rules, meaning you cannot use them to automate complex decision-making loops or cast multiple spells simultaneously with a single keypress.