-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.lua
More file actions
executable file
·64 lines (63 loc) · 1.54 KB
/
data.lua
File metadata and controls
executable file
·64 lines (63 loc) · 1.54 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
local _, ns = ...
ns.data = {
defaults = {
alertEnd = true,
alertStart = true,
alert1Minute = true,
alert2Minutes = true,
alert5Minutes = true,
alert10Minutes = true,
alert30Minutes = true,
printText = true,
sound = true,
raidwarning = true,
timeFormat = 3,
alertOnLogin = true,
alwaysAlert = false,
alwaysTrackQuest = false,
},
timers = {
alert1Minute = 1,
alert2Minutes = 2,
alert5Minutes = 5,
alert10Minutes = 10,
alert30Minutes = 30,
},
timeouts = {
short = 10,
long = 300,
},
sounds = {
finish = 567436, -- alarmclockwarning1.ogg
present = 567399, -- alarmclockwarning2.ogg
future = 567458, -- alarmclockwarning3.ogg
},
toggles = {
noAlertsWarningSeen = false,
recentlyOutput = false,
timerActive = false,
},
durations = {
frequency = 10800,
offset = 3660,
rollover = 9000,
halfhour = 1800,
},
classColors = {
deathknight = "c41e3a",
demonhunter = "a330c9",
druid = "ff7c0a",
evoker = "33937f",
hunter = "aad372",
mage = "3fc7eb",
monk = "00ff98",
paladin = "f48cba",
priest = "ffffff",
rogue = "fff468",
shaman = "0070dd",
warlock = "8788ee",
warrior = "c69b6d",
},
questID = 81763, -- Defeat of Beledar's Spawn
mountID = 2192, -- Beledar's Spawn
}