Guest User

startup

a guest
Apr 7th, 2013
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.32 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3.  
  4. while true do
  5. term.clear()
  6. term.setCursorPos(1,1)
  7. print("**************************************************")
  8. print("*****  Vault-Tek  Radiological Research Lab  *****")
  9. print("**************************************************")
  10. i = 4
  11. repeat
  12. term.setCursorPos(1,i)
  13. print("*****                                        *****")
  14. i = 1 + i
  15. until i == 16
  16. print("**************************************************")
  17. print("*****                                        *****")
  18. print("**************************************************")
  19. term.setCursorPos(7,6)
  20. print("[1] Specimen 001 'Creeper'")
  21. term.setCursorPos(7,7)
  22. print("[2] Specimen 002 'Skeleton'")
  23. term.setCursorPos(7,8)
  24. print("[3] Specimen 003 'Zombie'")
  25. term.setCursorPos(7,9)
  26. print("[4] Specimen 004 'Slime'")
  27. term.setCursorPos(7,10)
  28. print("[5] Specimen 005 'Cave Spider'")
  29. term.setCursorPos(7,11)
  30. print("[6] Specimen 006 'Spider'")
  31. term.setCursorPos(7,13)
  32. print("[7] EMERGENCY SPECIMEN PURGE SYSTEM")
  33. term.setCursorPos(6,17)
  34. print(" Enter Selection: ")
  35. term.setCursorPos(24,17)
  36. input = read()
  37. if input == "7" then
  38. rs.setOutput("top", true)
  39. rs.setBundledOutput("right", 0)
  40. rs.setBundledOutput("right", colors.cyan)
  41. sleep (60)
  42. rs.setOutput("top", false)
  43. rs.setBundledOutput("right",0)
  44.  
  45. end
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60. end
Advertisement
Add Comment
Please, Sign In to add comment