Advertisement
Guest User

startup

a guest
Mar 3rd, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.50 KB | None | 0 0
  1. term.setBackgroundColor(8)
  2. term.setTextColor(32768)
  3.  
  4.  
  5.  
  6.  
  7.  
  8. -- windows load % --
  9. countdown = 101
  10. prozent = 0
  11.  
  12. while countdown > 0 do
  13. term.setCursorPos(13,8)
  14. print("windows is loading files")
  15. term.setCursorPos(23,9)
  16. write(prozent)
  17. print("%")
  18. sleep(0.05)
  19. shell.run("clear")
  20. countdown = countdown - 1
  21. prozent = prozent + 1
  22. end
  23.  
  24. term.setCursorPos(13,8)
  25. print("windows is loading files")
  26. term.setCursorPos(23,9)
  27. print("100%")
  28. sleep(2)
  29.  
  30. -- start window safter loading files --
  31.  
  32. shell.run("xp")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement