Advertisement
Alakazard12

IRC Installer

Mar 23rd, 2013
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3. print("Downloading Nova IRC...")
  4. local Res = http.get("http://pastebin.com/raw.php?i=csQeuntK")
  5. local Fil = fs.open("/irc", "w")
  6. Fil.write(Res.readAll())
  7. Res.close()
  8. Fil.close()
  9.  
  10. print("Downloading GUI API")
  11. local Gapi = http.get("http://pastebin.com/raw.php?i=gUzi2RvL")
  12. local Gui = fs.open("/.gapi", "w")
  13. Gui.write(Gapi.readAll())
  14. Gapi.close()
  15. Gui.close()
  16.  
  17. print("Type 'irc' to run irc.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement