Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- local r = http.get("https://pastebin.com/raw/jCfCfBPn"); local f = fs.open( shell.resolve( "pastebin" ), "w" ); f.write( r.readAll() ); f.close(); r.close()
- -- Define the table with links and program names
- local programs = {
- { link = "nFSUKiYE", name = "getLava" },
- { link = "rpXRAZs4", name = "quarry" },
- { link = "Es7ie2B3", name = "excavate" },
- { link = "bmW5UFWB", name = "basementDigger" },
- { link = "gkz5sgZ8", name = "OCM" },
- -- { link = "HanjL7Mz", name = "logger" },
- -- { link = "nDgxjQas", name = "startup" },
- { link = "4BmfBfp3", name = "SuperMiner" },
- { link = "6MezVzXF", name = "oreQuarryBlacklist.txt" },
- { link = "UrsscJDS", name = "start.lua" },
- { link = "VbzaRCbf", name = "Bettertunnel" },
- { link = "ws56HwHa", name = "stairs" },
- { link = "T6MjERCE", name = "basic" },
- { link = "rkAmqH7B", name = "treelogger" },
- -- Add more entries as needed
- }
- -- Function to download a program from Pastebin
- local function downloadProgram(link, name)
- shell.run("pastebin", "get", link, name)
- end
- -- Loop through the programs table and download each program
- for i, program in ipairs(programs) do
- local link = program.link
- local name = program.name
- print("Downloading program: " .. name)
- downloadProgram(link, name)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement