Advertisement
Jenkins1337

setUp_disk.lua

Aug 24th, 2022 (edited)
1,071
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.02 KB | None | 0 0
  1. -- pastebin get W29ChWZ9 setUp_disk
  2.  
  3. write("Downloading 'client'")
  4. local client = fs.open("disk/client", "w")
  5. local str = http.get("https://pastebin.com/raw/yXvrbsUh").readAll()
  6. client.write(str)
  7. client.close()
  8. print(" - done!")
  9.  
  10.  
  11. write("Downloading 'quary'")
  12. local quary = fs.open("disk/quary", "w")
  13. local str = http.get("https://pastebin.com/raw/f18qfgg4").readAll()
  14. quary.write(str)
  15. quary.close()
  16. print(" - done!")
  17.  
  18.  
  19. write("Downloading 'inv'")
  20. local inv = fs.open("disk/inv", "w")
  21. str = http.get("https://pastebin.com/raw/Yjk6fvRa").readAll()
  22. inv.write(str)
  23. inv.close()
  24. print(" - done!")
  25.  
  26.  
  27. write("Downloading 't'")
  28. local t = fs.open("disk/t", "w")
  29. local str = http.get("https://pastebin.com/raw/VWb0xJL4").readAll()
  30. t.write(str)
  31. t.close()
  32. print("done!")
  33.  
  34.  
  35. write("Downloading 'startup'")
  36. local startup = fs.open("disk/startup", "w")
  37. local str = http.get("https://pastebin.com/raw/AFaqg27a").readAll()
  38. startup.write(str)
  39. startup.close()
  40. print(" - done!")
  41.  
  42.  
  43. print("")
  44. print("Download successful!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement