wow-api-events

Documents World of Warcraft Retail frame events, payloads, and handling patterns for addon development.

1|Updated Feb 22, 2026
One-click install
npx skills add https://github.com/pfchrono/SimpleUnitFrames --skill wow-api-events-pfchrono
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wow-api-events
Source: https://github.com/pfchrono/SimpleUnitFrames/tree/main/.agents/skills/wow-api-events
Command: npx skills add https://github.com/pfchrono/SimpleUnitFrames --skill wow-api-events-pfchrono

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides a comprehensive reference and guide for understanding and utilizing World of Warcraft's frame events, enabling developers to build more robust and efficient addons.

Core Features & Use Cases

  • Event Reference: Detailed lists of WoW Retail frame events, including their payloads and associated API systems.
  • Event Handling Guide: Explains core APIs, handler signatures, and common patterns like the Dispatch Table.
  • Use Case: When developing a new addon that needs to react to player login, combat events, or UI updates, this Skill helps you quickly find the correct event and understand how to process its data.

Quick Start

Use the wow-api-events skill to find the event payload for PLAYER_LOGIN.

Frequently Asked Questions about wow-api-events

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

FAQPage Schema
How do I register WoW API events for addon development?

To register WoW API events for addon development, you set up an OnEvent handler on a frame and call RegisterEvent for specific frame events. This Skill provides the structured reference and handler signatures needed to facilitate creating event-driven addon logic.

What payloads do World of Warcraft frame events provide?

World of Warcraft frame events provide specific payloads passed to OnEvent handlers. This Skill documents Retail frame events and their payload details, helping you quickly find and process the correct data for addon updates.

How does a dispatch table work for WoW addon event handling?

A dispatch table works for WoW addon event handling by mapping registered frame events to specific handler functions. This Skill explains this common pattern alongside core event setup APIs to build robust addon logic.

Can I find player login event payloads for WoW Retail addons?

Yes, you can find player login event payloads for WoW Retail addons. This Skill documents the PLAYER_LOGIN frame event and its payload, enabling your addon to react correctly when a player logs in.

Are there categorized lists of WoW API events for addon development?

Yes, there are categorized lists of WoW API events for addon development. This Skill provides detailed lists of Retail frame events, including associated API systems, to help you locate the correct event for combat or UI updates.

Why is my WoW addon OnEvent handler not receiving frame events?

If your WoW addon OnEvent handler is not receiving frame events, you likely missed event registration or used incorrect handler signatures. This Skill provides the structured reference for OnEvent setup and registration to ensure correct event delivery.