-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.lua
More file actions
executable file
·124 lines (123 loc) · 2.92 KB
/
Copy pathdata.lua
File metadata and controls
executable file
·124 lines (123 loc) · 2.92 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
local _, ns = ...
ns.data = {
defaults = {
enable = true,
enableWM = true,
alertStart = true,
alert1Minute = false,
alert2Minutes = true,
alert5Minutes = true,
alert10Minutes = true,
alertCustomMinutes = 1,
printText = true,
sound = true,
raidwarning = true,
printWinsOnEnd = true,
warnAboutWMMismatch = true,
share = true,
allowDebug = false,
debug = false,
timeFormat = "long",
toggles = {},
startTimestampWM = 0,
startTimestamp = 0,
controlWM = "alliance",
control = "alliance",
},
characterDefaults = {
gamesWM = 0,
games = 0,
winsWM = 0,
wins = 0,
},
timers = {
alert1Minute = 1,
alert2Minutes = 2,
alert5Minutes = 5,
alert10Minutes = 10,
},
timeouts = {
short = 10,
medium = 20,
long = 60,
},
durations = {
short = 300,
medium = 600,
full = 900,
long = 1800,
},
toggles = {
timerActiveWM = false,
timerActive = false,
recentlyOutputWM = false,
recentlyOutput = false,
recentlyReceivedStartWM = false,
recentlyReceivedStart = false,
recentlyRequestedStart = false,
recentlySentStart = false,
recentlyAnnouncedStart = false,
recentlySentVersion = false,
recentlyEnded = false,
dataBrokerTimerActive = false,
updateFound = false,
},
sounds = {
present = 567399, -- alarmclockwarning2.ogg
future = 567458, -- alarmclockwarning3.ogg
},
mapIDs = {
main = 244, -- Tol Barad
peninsula = 245, -- Tol Barad Peninsula
},
widgets = {
active = {
control = 702,
timer = 682,
},
inactive = {
control = 687,
timer = 688,
},
activePeninsula = {
control = 701,
},
},
colors = {
alliance = "0078ff",
horde = "c41e3a",
enabled = "44ff44",
disabled = "ff4444",
},
durationColors = {
future = {
short = "9fee8d",
medium = "abe99d",
long = "b7e5ac",
},
past = {
short = "fbc7be",
medium = "ffab9c",
long = "ff9887",
},
},
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",
},
location = C_Map.GetBestMapForUnit("player"),
warmode = C_PvP.IsWarModeDesired(),
partyMembers = 0,
raidMembers = 0,
}