WoW:TOC file

From AddOn Studio
Revision as of 04:49, 15 August 2023 by Move page script (talk | contribs) (Move page script moved page TOC file to TOC file without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW AddOn

A TOC file is a file with a .toc file extension that provides information about an AddOn for WoW when WoW loads the AddOn. An AddOn must have a TOC file to work.

Summary[edit]

WoW TOC, Table Of Contents, files are a required 'manifest' file for a WoW AddOn.

TOC files contain information about a particular addon (such as its name, description, saved variables, etc.), as well as instructions on how the addon should be loaded by the client (for example, the order in which lua and xml files should be loaded). The file must be present, and have the same name (plus extension) as its parent folder for the addon to be recognized by the client.

Examples[edit]

## Interface: 80205
## Title: MyAddon
## Notes: Notes about MyAddon
## Version: 1.0
MyAddon.xml
MyAddon.lua

Guides[edit]

References[edit]