Advertisement
LDDestroier

mSend Update Program

Feb 6th, 2015
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. -- This is the update file for mSend by LDDestroier
  2. -- Do not download nor use this file directly.
  3. print("Downloading newest mSend file...")
  4. if fs.exists(shell.dir() .. "msend") then
  5.     print("Overwriting...")
  6.     fs.delete(shell.dir() .. "msend")
  7. end
  8. local updateFile = http.get("http://pastebin.com/raw.php?i=0FW50ZZ1")
  9. local update = updateFile:readAll()
  10. local file = fs.open(shell.dir() .. "msend", "w")
  11. file.write(update)
  12. file.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement