Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Original idea by Krakaen : https://www.youtube.com/watch?v=MkloBnl-W8s&ab_channel=Krakaen
- -- Adapted by Falax (aka Cynism)
- --Import the Pastebin while fixing the Pastebin error in ComputerCraft 1.7.10
- term.write("Please paste the raw pastebin https link : ")
- local input = read()
- term.write("Newly program name : ")
- local name = read()
- --Process
- local r = http.get(input)
- local f = fs.open( shell.resolve(name), "w" )
- f.write( r.readAll() )
- f.close()
- r.close()
Add Comment
Please, Sign In to add comment