Thread: Get addons list
View Single Post
01-29-16, 06:10 AM   #2
Resike
A Pyroguard Emberseer
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,290
Lua Code:
  1. for i = 1, GetNumAddOns() do
  2.     local name, title, notes, enabled, loadable, reason, security = GetAddOnInfo(i)
  3.     print(name, title, notes, enabled, loadable, reason, security)
  4. end
  Reply With Quote