forked from souruko/Gibberish
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.lua
More file actions
50 lines (28 loc) · 895 Bytes
/
Main.lua
File metadata and controls
50 lines (28 loc) · 895 Bytes
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
import "Turbine.Gameplay"
import "Turbine.UI"
import "Turbine.UI.Lotro"
-- collection of global variables
import "Gibberish.Global"
-- importing libary with useful help functions
import "Gibberish.Utils"
-- importing libary with functions for handeling data
import "Gibberish.DataFunctions"
-- importing all window typ classes
import "Gibberish.Windows"
-- load all options items
import "Gibberish.Options"
-- starting up all the trigger tracking
import "Gibberish.Trigger"
-- get them juciy savefiles :3 and some saving stuff
import "Gibberish.Load_Save"
-- starting
-- effect tracking
Trigger.Effects.AddSelfEffectCallbacks()
if savedata.track_group_effects == true then
Trigger.Effects.AddGroupEffectCallbacks()
end
if savedata.track_target_effects == true then
Trigger.Effects.AddTargetEffectCallbacks()
end
-- skill tracking
Trigger.refreshAllSkillCallbacks()