Falax

Pastebin manager ComputerCraft - FTB Infinity Evolved 1.7.10

Nov 5th, 2020 (edited)
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. -- Original idea by Krakaen : https://www.youtube.com/watch?v=MkloBnl-W8s&ab_channel=Krakaen
  2. -- Adapted by Falax (aka Cynism)
  3.  
  4. --Import the Pastebin while fixing the Pastebin error in ComputerCraft 1.7.10
  5. term.write("Please paste the raw pastebin https link : ")
  6. local input = read()
  7. term.write("Newly program name : ")
  8. local name = read()
  9.  
  10. --Process
  11. local r = http.get(input)
  12. local f = fs.open( shell.resolve(name), "w" )
  13. f.write( r.readAll() )
  14. f.close()
  15. r.close()
  16.  
  17.  
Add Comment
Please, Sign In to add comment