SuicidalSTDz

remiX's Signature :D

Feb 10th, 2013
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. function virus()
  2. term.clear()
  3. sleep(0.3)
  4. term.setCursorPos(18,1)
  5. term.setTextColor(colors.red)
  6. io.write("VIRUS ALERT!!!")
  7. sleep(0.3)
  8. end
  9. x,y = term.getCursorPos()
  10. function fail()
  11. term.setBackgroundColor(colors.white)
  12. term.setTextColor(colors.black)
  13. for i = 1,35 do
  14. term.clear()
  15. term.setCursorPos(i,1)
  16. io.write("system failure...")
  17. sleep(0.001)
  18. end
  19. end
  20. while true do
  21. term.clear()
  22. term.setBackgroundColor(colors.white)
  23. for i = 1,3 do
  24. virus()
  25. end
  26. fail()
  27. end
Advertisement
Add Comment
Please, Sign In to add comment