1
0
Fork 0
AllTheLittleThings/modules/battlegrounds.lua

23 lines
407 B
Lua
Raw Normal View History

2011-05-30 13:01:19 -04:00
local core = LibStub("AceAddon-4.0"):GetAddon("AllTheLittleThings")
local mod = core:NewModule("Battlegrounds", "AceEvent-3.0")
local defaults = {
}
local options = {
}
local gilneasTimes = { -- time in seconds to get a point
[0] = 0,
[1] = 8,
[2] = 3,
[3] = 1/3,
}
core.wgStatus = 0
core.flagStatus = 0
core.eotsHook = false
function mod:OnInitialize()
core:RegisterOptions(options, defaults)
end