-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBoostWaitlistDB.lua
43 lines (42 loc) · 995 Bytes
/
BoostWaitlistDB.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
------------------------------------
-- BoostWaitlist Beta (3/11/2020)
------------------------------------
local L = LibStub("AceLocale-3.0"):GetLocale("BoostWaitlist", true)
_G.BoostWaitlistDBDefaults = {
Main = {
version = '3.0.0',
active = false,
forming = false,
enableSounds = false,
inactivereply = false,
enableBalanceWhisperThreshold = false,
enableWaitlist = true,
enableStats = true,
everActive = true,
autobill = true,
waitlistInfo = {
waitlist = {},
requestsByTarget = {},
requestsBySender = {},
},
blacklist = {},
accountBalance = {},
overrideCharge = {},
initialReply = L["initialReply"],
doneMessage = L["whisperDone"],
inactivereplymsg = L["whisperInactive"],
name = "Booster",
cost = 15,
maxWaitlist = 20,
balanceWhisperThreshold = 0,
},
GUI = {
points = {"CENTER"},
minimap = {
hide = false,
},
},
Options = {
points = {"CENTER"},
}
}