📄 common.luac.lua
字号:
-- Decompiled using luadec 0.4 by sztupy (http://winmo.sztupy.hu)
-- Command line was: -l ;0;0,8,11;0,1,13;; 6efe8603_manila.luac
if COMMON_LUA_LOADED == nil then
trace("Loading Common Script\n")
COMMON_LUA_LOADED = true
ABS = function(l_1_0)
return l_1_0 < 0 and -l_1_0 or l_1_0
end
GetURLPath = function(l_2_0)
local l_2_1 = URL(URL_GetCurrentModuleUrl():ToString(URLParts_None), URLType_Custom)
local l_2_2 = URL(l_2_0)
return URL_MakeAbsolute(l_2_1, l_2_2)
end
LoadScript = function(l_3_0, l_3_1)
trace("You should use require instead of LoadScript from now on!\n")
if l_3_1 == nil then
l_3_1 = "HTC"
end
local l_3_2 = GetURLPath(l_3_1 .. "\\Scripts\\" .. l_3_0)
dofile(l_3_2:ToString(URLParts_None))
end
DownloadFile = function(l_4_0, l_4_1, l_4_2, l_4_3, l_4_4)
trace("Downloading File: " .. l_4_0:ToString(URLParts_None) .. "\n")
trace("File URL: " .. l_4_1:ToString(URLParts_None) .. "\n")
FileDownloader = HttpFileDownloader(l_4_0, l_4_1)
if l_4_2 ~= nil then
FileDownloader.Context = l_4_2
end
if l_4_3 ~= nil then
FileDownloader.OnCompletion:connect(l_4_3)
end
if l_4_4 ~= nil then
FileDownloader.OnlyDownloadIfModified = l_4_4
end
FileDownloader:StartDownload()
end
require("class")
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -