-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMain.lua
More file actions
73 lines (59 loc) · 3.16 KB
/
Main.lua
File metadata and controls
73 lines (59 loc) · 3.16 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
--=================================================================================================
--= Main
--= ===============================================================================================
--= load and start up
--=================================================================================================
---------------------------------------------------------------------------------------------------
-- lotro interface
import "Turbine.Gameplay"
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
-- lotro ui elements
import "Turbine.UI"
import "Turbine.UI.Lotro"
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
-- global variables and constants
import "Gibberish3.Variables"
import "Gibberish3.Constants"
import "Gibberish3.Defaults"
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
-- class / type lua
-- combat chat parse
-- load / save
-- global variables / constants
-- utils functions
import "Gibberish3.UTILS"
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
-- data structures
import "Gibberish3.STRUCTS"
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
-- ui elements
import "Gibberish3.UI_ELEMENTS"
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
-- load data
import "Gibberish3.UTILS.Save"
import "Gibberish3.UTILS.Load"
Data = Options.LoadData()
Options.FillPersistantCollection()
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
-- trigger events
import "Gibberish3.TRIGGER"
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
Windows.StartUp()
Options.LoadRunningTimer()
Trigger.InitAll()
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
-- options
import "Gibberish3.OPTIONS"
---------------------------------------------------------------------------------------------------
-- startup
Options.StartUp()
---------------------------------------------------------------------------------------------------