Advertisement
Rolcam

Computercraft - Formatter & Slot Machine reinstaller

May 24th, 2024 (edited)
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3. print("Wiping system...")
  4. shell.run("label","clear")
  5. for _,file in ipairs(fs.list("/")) do
  6.   if not fs.isReadOnly(file) then
  7.     fs.delete(file)
  8.   end
  9. end
  10. print("System wiped! Reinstalling slot machine program...")
  11. shell.run("pastebin get NqNYzKNP startup")
  12. print("Slot machine downloaded! Rebooting to complete install...")
  13. sleep(2)
  14. os.reboot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement