Initial commit
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
Meta
|
19
Yapper.lua
Normal file
19
Yapper.lua
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
local addonname, data = ...
|
||||||
|
---@cast addonname string
|
||||||
|
|
||||||
|
local function init()
|
||||||
|
print("Yapper loaded!")
|
||||||
|
end
|
||||||
|
|
||||||
|
local loadedFrame = CreateFrame("Frame")
|
||||||
|
loadedFrame:RegisterEvent("ADDON_LOADED")
|
||||||
|
loadedFrame:SetScript("OnEvent", function(self, event, addonName)
|
||||||
|
if addonName == addonname then
|
||||||
|
init()
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
|
local logoutFrame = CreateFrame("Frame")
|
||||||
|
logoutFrame:RegisterEvent("PLAYER_LOGOUT")
|
||||||
|
logoutFrame:SetScript("OnEvent", function(self, event)
|
||||||
|
end)
|
7
Yapper.toc
Normal file
7
Yapper.toc
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
## Interface: 70300
|
||||||
|
## Title: Yapper
|
||||||
|
## Notes: Yaps in a random channel saying random shit
|
||||||
|
## Author: Cyka
|
||||||
|
|
||||||
|
#core
|
||||||
|
Yapper.lua
|
Reference in New Issue
Block a user