-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSTimeCycle.lua
49 lines (38 loc) · 897 Bytes
/
STimeCycle.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
-- STIMECYCLE.LUA
-- AUTHOR : ALTAMURENZA
--[[
-----------------------
# CHALKBOARD UI CHECK #
-----------------------
]]
if type(shared.CBUI_Database) ~= "table" then
main = function()
while true do
Wait(0)
MinigameSetAnnouncement("ERROR: Missing CUIF!", true)
end
end
end
--[[
----------------------
# SET UNIVERSAL PATH #
----------------------
]]
shared.DIR = "storage/emulated/0/Android/data/com.rockstargames.bully/files/BullyOrig/Scripts"
--[[
-------------
# CALL INIT #
-------------
]]
local F, E = loadfile(shared.DIR.."/TRAINER/SYSTEM/ADVT_INIT.lur")
if F then
F()
else
main = function()
CB_Print("ADVT_INIT: "..(tostring(E) == "parser not loaded" and "Uncompiled!" or "Cannot read or missing!"), 30)
TutorialShowMessage("See READ ME.txt!", 5000, true)
while true do
Wait(0)
end
end
end