Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- term.clear()
- term.setCursorPos(1,1)
- while true do
- c = colors.combine(colors.green, colors.gray, colors.red, colors.white, colors.black, colors.blue)
- rs.setBundledOutput("right",c)
- term.clear()
- term.setCursorPos(1,1)
- print("**************************************************")
- print("***** Vault-Tek Radiological Research Lab *****")
- print("**************************************************")
- i = 4
- repeat
- term.setCursorPos(1,i)
- print("***** *****")
- i = 1 + i
- until i == 16
- print("**************************************************")
- print("***** *****")
- print("**************************************************")
- term.setCursorPos(7,6)
- print("[1] Specimen 001 'Creeper'")
- term.setCursorPos(7,7)
- print("[2] Specimen 002 'Skeleton'")
- term.setCursorPos(7,8)
- print("[3] Specimen 003 'Zombie'")
- term.setCursorPos(7,9)
- print("[4] Specimen 004 'Slime'")
- term.setCursorPos(7,10)
- print("[5] Specimen 005 'Cave Spider'")
- term.setCursorPos(7,11)
- print("[6] Specimen 006 'Spider'")
- term.setCursorPos(7,13)
- print("[7] EMERGENCY SPECIMEN PURGE SYSTEM")
- term.setCursorPos(6,17)
- print(" Enter Selection: ")
- term.setCursorPos(24,17)
- input = read()
- if input == "7" then
- rs.setOutput("top", true)
- rs.setBundledOutput("right", 0)
- rs.setBundledOutput("right", colors.cyan)
- sleep (60)
- rs.setOutput("top", false)
- rs.setBundledOutput("right",0)
- if input == "1"
- c = colors.subtract(colors.green)
- rs.setBundledOutput("right",c)
- sleep (10)
- end
- if input == "2"
- c = colors.subtract(colors.red)
- rs.setBundledOutput("right",c)
- sleep (10)
- end
- if input == "3"
- c = colors.subtract(colors.gray)
- rs.setBundledOutput("right",c)
- sleep (10)
- end
- if input == "4"
- c = colors.subtract(colors.white)
- rs.setBundledOutput("right",c)
- sleep (10)
- end
- if input == "5"
- c = colors.subtract(colors.blue)
- rs.setBundledOutput("right",c)
- sleep (10)
- end
- if input == "6"
- c = colors.subtract(colors.black)
- rs.setBundledOutput("right",c)
- sleep (10)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment