-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogs.lua
More file actions
68 lines (59 loc) · 1.34 KB
/
Logs.lua
File metadata and controls
68 lines (59 loc) · 1.34 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
EventTypes = {
Done = 1,
ExtractValue = 2
}
local Sunday = 1
local Monday = 2
local Thusday = 3
local Wednesday = 4
local Thursday = 5
local Frieday = 6
local Saturday = 7
local test = Turbine.Engine.GetDate()
Turbine.Shell.WriteLine(test.DayOfWeek)
-- content -----------------------------------------------------------------------------
_G.Content = {
[1] = {
name = "Zwergen update",
level = "140"
}
}
-- instances ---------------------------------------------------------------------------
_G.Instances = {
[1] = {
name = "HoA"
}
}
-- tiers -------------------------------------------------------------------------------
_G.Tiers = {
[1] = {
name = "T1"
}
}
-- logs --------------------------------------------------------------------------------
_G.Events = {
[1] = {
name = "Hirmil",
match = "The chest of Hirmil",
content = 1,
instance = 1,
tier = 1,
type = EventTypes.Done,
reset = {
days = {Monday, Thusday},
time = 10
},
},
[2] = {
name = "Nethe",
match = "The chest of Nethelos",
content = 1,
instance = 1,
tier = 1,
type = EventTypes.Done,
reset = {
days = {Monday, Thusday},
time = 10
}
}
}