-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMoogleScripts.lua
85 lines (84 loc) · 2.71 KB
/
MoogleScripts.lua
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
local MooglePath = GetLuaModsPath() .. [[MoogleStuff Files\]]
local MoogleScripts = {
[1] = {
name = [[Moogle Updater]],
status = [[open]],
filepath = MooglePath..[[Moogle Updater.lua]],
table = [[MoogleUpdater]],
url = [[TestFolder/Moogle Updater]],
category = [[Core Moogle Module]],
stability = [[open]],
info = [[Downloads scripts, keeps them updated. :P!]]
},
[2] = {
name = [[Main Window]],
status = [[open]],
filepath = MooglePath..[[Main Window.lua]],
table = [[KaliMainWindow]],
url = [[TestFolder/Main Window]],
category = [[Core Moogle Module]],
stability = [[open]],
info = [[The Main Window that all Moogle Scripts share to display the settings for each module.]]
},
[3] = {
name = [[MoogleLib]],
status = [[open]],
filepath = MooglePath..[[MoogleLib.lua]],
table = [[MoogleLib]],
url = [[TestFolder/MoogleLib]],
category = [[Core Moogle Module]],
stability = [[open]],
info = [[Where all my Moogle Functions are stored.]]
},
[4] = {
name = [[Moogle FPS]],
status = [[open]],
filepath = MooglePath..[[Moogle Scripts\Moogle FPS.lua]],
table = [[MoogleFPS]],
url = [[TestFolder/Moogle Scripts/Moogle FPS]],
category = [[Utility]],
stability = [[open]],
info = [[An FPS overlay like Fraps or Nvidia's GeForce Experience. For people who have issue using Minion with other overlays.]]
},
[5] = {
name = [[Moogle Text to Speech]],
status = [[open]],
filepath = MooglePath..[[Moogle Scripts\Moogle TTS.lua]],
table = [[MoogleTTS]],
url = [[TestFolder/Moogle Scripts/Moogle TTS]],
category = [[Utility]],
stability = [[open]],
info = [[Narrates NPC dialog, as well as some other windows in game.]]
},
[6] = {
name = [[Moogle PushButton]],
status = [[open]],
filepath = MooglePath..[[Moogle Scripts\Moogle PushButton.lua]],
table = [[MooglePushButton]],
url = [[TestFolder/Moogle Scripts/Moogle PushButton]],
category = [[Dev]],
stability = [[open]],
info = [[A developer module like the one in Dev, but able to iterate PushButton presses.]]
},
[7] = {
name = [[Moogle Recorder]],
status = [[open]],
filepath = MooglePath..[[Moogle Scripts\Moogle Recorder.lua]],
table = [[MoogleRecorder]],
url = [[TestFolder/Moogle Scripts/Moogle Recorder]],
category = [[Dev]],
stability = [[Beta]],
info = [[A developer module to record entity actions in a timeline fashion, recording behavior and patterns.]]
},
[8] = {
name = [[Moogle Music]],
status = [[open]],
filepath = MooglePath..[[Moogle Scripts\Moogle Music.lua]],
table = [[MoogleMusic]],
url = [[TestFolder/Moogle Scripts/Moogle Music]],
category = [[Dev]],
stability = [[Beta]],
info = [[A branch off of Ace's Music player with a few extra features.]]
},
}
return MoogleScripts