Advertisement
LetsBladeHD

memtest.lua

May 26th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3. print("----------------------MEMTEST----------------------")
  4. n = 1
  5. print("")
  6. write("Checking RAM")
  7. sleep(1)
  8. write(".")
  9. sleep(1)
  10. write(".")
  11. sleep(1)
  12.  
  13. while n<=32 do
  14. term.clear()
  15. term.setCursorPos(1,1)
  16. print("----------------------MEMTEST----------------------")
  17. print("")
  18. write("Checking RAM...")
  19. write(" ")
  20. write(n)
  21. write(" GB")
  22. sleep(0.1)
  23. n=n+1
  24. end
  25.  
  26. write(" OK")
  27. term.setCursorPos(1,5)
  28. write("Launching Windows Blade")
  29. sleep(1)
  30. write(".")
  31. sleep(1)
  32. write(".")
  33. sleep(1)
  34. write(".")
  35. sleep(1)
  36. shell.run("win8")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement