Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --local s1 = shell.run("pastebin get CJKFgWNM t")
  2. --local s2 = shell.run("pastebin get sfNHpJKg inventory")
  3. --local s3 = shell.run("pastebin get 98TuF2cB quarry")
  4.  
  5. -- Download from github
  6.  
  7. print("Downloading 'quarry'")
  8. local quarry = fs.open("quarry", "w")
  9. local str = http.get("https://raw.githubusercontent.com/graytonio/quarry/master/quarry.lua").readAll()
  10. quarry.write(str)
  11. quarry.close()
  12. write("done!")
  13.  
  14. print("Downloading 'inv'")
  15. local inv = fs.open("inv", "w")
  16. str = http.get("https://raw.githubusercontent.com/graytonio/quarry/master/inv.lua").readAll()
  17. inv.write(str)
  18. inv.close()
  19. print("done!")
  20.  
  21. print("Downloading 't'")
  22. local t = fs.open("t", "w")
  23. local str = http.get("https://raw.githubusercontent.com/graytonio/quarry/master/t.lua").readAll()
  24. t.write(str)
  25. t.close()
  26. print("done!")
  27.  
  28. print("")
  29. print("Download successful! run with 'quarry'")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement