Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
WoW
Talk
English
Views
Read
Edit
History
More
Search
Navigation
Home
Random page
Help using wiki
Editions
for WoW
for WildStar
for Solar2D
Documentation
for WoW
for WildStar
Reference
WoW
⦁ FrameXML
⦁ AddOns
⦁ API
⦁ WoW Lua
WildStar
⦁ AddOns
⦁ API
⦁ WildStar Lua
Engine
Tools
What links here
Related changes
Special pages
Page information
Site
Recent Changes
Editing
WoW:Lua file
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{uiaddon}}WoW AddOn [[Lua]] files are the code files for a WoW AddOn. This article describes the format for a WoW Lua file as a part of an WoW AddOn. == References == * [[WoW Lua]] == Summary == '''.lua files''' contain the Lua code for a particular addon (such as its functions, variables, etc.), as well as instructions that run while addon is being loaded by the client. The file must be present if listed in the [[TOC file]], and may or may not have the same name (plus extension) as its parent folder for the addon to be recognized by the client. ==== Example ==== -- Lua file for MyAddOn function MyAddOn_OnLoad() print("MyAddOn is started") end == Parameters == In WoW Lua files have file parameters passed when the Lua file is loaded, which can be accessed via standard Lua ellipses. * addonName (string) - the addon name that is the addon's folder name in the 'Interface\AddOns' WoW folder * addonTable (table) - a singular pre-created Lua table that is for the addon's private use, starts empty, not referenced in the global table, and is the same table passed to all Lua files loaded during the AddOn's load under the AddOn's folder, or referenced outside the folder during that AddOns load. ==== Example ==== For the 'MyAddOn' AddOn in the 'Interface\AddOns\MyAddOn' folder: MyAddOn TOC file myaddon1.lua myaddon2.lua myaddon.xml Lua file 1 for MyAddOn local addonName, addonTable = ... addonTable.banana = "apple" Lua file 2 for MyAddOn <pre> local addonName, addonTable = ... function MyAddOn_OnLoad() print("MyAddOn's name is " .. addonName) -- prints 'MyAddOn' print("MyAddOn's addon table banana var is " .. addonTable.banana) -- prints 'apple' end </pre> == Guides == * [[Lua basics]] [[Category:UI technical details]]
Summary:
Please note that all contributions to AddOn Studio are considered to be released under the Creative Commons Attribution-NonCommercial-ShareAlike (see
AddOn Studio Wiki:Copyrights
for details).
Submissions must be written by you, or copied from a public domain or similar free resource (see
AddOn Studio Wiki:Copyrights
for details).
Cancel
Editing help
(opens in new window)
Templates used on this page:
Template:Apinav
(
edit
)
Template:Editlink
(
edit
)
Template:Tocright
(
edit
)
Template:Uiaddon
(
edit
)