Advertisement
Jeyjey0

Computercraft Invisible Pastebin Installer [API] !

Feb 25th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. function invisiblepastebin(code,name)
  2. local response = http.get(
  3. "http://pastebin.com/raw/"..code
  4. )
  5.  
  6. if response then
  7.  
  8. local sResponse = response.readAll()
  9. response.close()
  10. h = fs.open(name,"w")
  11. h.write(sResponse)
  12. h.close()
  13. return sResponse
  14. else
  15. print( "Failed." )
  16. end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement