Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local configs = fs.find "arc*.tbl"
- local h = http.get "https://pastebin.com/raw/vdmRK38T"
- local ARC, err = loadstring(h.readAll())
- if err then error(err) end
- h.close()
- local instances = {}
- for _, config in pairs(configs) do
- table.insert(instances, function() ARC(config) end)
- end
- parallel.waitForAll(unpack(instances))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement