Blackhome

Download

Dec 3rd, 2025 (edited)
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.81 KB | Gaming | 0 0
  1. -- pastebin get xLfqC4SL Download
  2.  
  3. programName = ...
  4.  
  5. programList = {
  6.     ["HoneyFarmer"] = { ["code"] = "hVaHX6CG", ["requirements"] = { "fkt_inventory", } },
  7.     ["fkt_inventory"] = { ["code"] = "wCZcgvnn" },
  8.     ["Download"] = { ["code"] = "xLfqC4SL" },
  9.  
  10.     -- Storage System
  11.     ["Filter"] = { ["code"] = "Em2sZPSF", ["requirements"] = { "SE", "SDM",} },
  12.     ["RefuelDigger"] = { ["code"] = "180C8NRw"},
  13.     ["SDM"] = { ["code"] = "6fYKgMYH", ["requirements"] = { "FM", } },
  14.     ["FM"] = { ["code"] = "14xf463S" },
  15.     ["SE"] = { ["code"] = "BKmw3WTx"},
  16.     ["TCE"] = { ["code"] = "Q4y1iUEd", ["requirements"] = { "SDM", "CVF"} },
  17.     ["SMUI"] = { ["code"] = "q7maGyKb", ["requirements"] = { "SDM", "CVF"} },
  18.     ["CVF"] = { ["code"] = "PE0k7NQY"},
  19.     ["SM"] = { ["code"] = "wngsBEP2", ["requirements"] = { "TCE",} },
  20.     ["POS"] = { ["code"] = "a22LsH3d", ["requirements"] = { "SDM", "CVF"} },
  21.     ["BM"] = { ["code"] = "wsLBFGgx", ["requirements"] = { "POS", "CVF"} },
  22.     ["AM"] = { ["code"] = "Z5rK8b3r", ["requirements"] = { "BM", "POS"} },
  23.     ["TT"] = { ["code"] = "Bfmm8YH2", ["requirements"] = { "AM", "SE"} },
  24.     ["TURT"] = { ["code"] = "bSBgdCDF", ["requirements"] = { "TT"} },
  25. }
  26.  
  27. -- function to download the program
  28. local function downloadProgram(pastebinCode, fileName)
  29.     local  command = "delete " .. fileName
  30.     shell.run(command)
  31.    
  32.     command = "pastebin get " .. pastebinCode .. " " .. fileName
  33.     shell.run(command)
  34. end
  35.  
  36. program = programList[programName]
  37. pb_code = program["code"]
  38. requirements = program["requirements"] or {}
  39.  
  40. print("\nAttempt to download " .. programName .. ".")
  41.  
  42. if program and pb_code then
  43.     downloadProgram(pb_code, programName)
  44.  
  45.     for _, req in ipairs(requirements) do
  46.         local command = "Download " .. req
  47.         shell.run(command)
  48.     end
  49. end
Advertisement
Add Comment
Please, Sign In to add comment