Add more
This commit is contained in:
parent
f7bb6c8137
commit
5769eca2f2
5 changed files with 194 additions and 57 deletions
19
31_startup.lua
Normal file
19
31_startup.lua
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
-- apioframe ni
|
||||
-- sponsored by XNL
|
||||
|
||||
local modules = {
|
||||
"track/client.lua",
|
||||
"minit.lua",
|
||||
-- "shrekFly.lua",
|
||||
"carrotpay/carrotpay.lua"
|
||||
}
|
||||
|
||||
local functions = {}
|
||||
|
||||
for k, v in pairs(modules) do
|
||||
local f = loadstring("shell.run('" .. v .. "'); return 0")
|
||||
setfenv(f, _ENV)
|
||||
table.insert(functions, f)
|
||||
end
|
||||
|
||||
parallel.waitForAll(table.unpack(functions))
|
||||
Loading…
Add table
Add a link
Reference in a new issue