Zippomoon

Vault 2 Master Control

Jan 15th, 2016
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.40 KB | None | 0 0
  1. --Vault Door Lock: White, Toggle - True = Unlocked
  2. --Vault Door Open/Close: Magenta, Pulse
  3. --Mineshaft Lock: Orange, Toggle - True = Unlocked
  4. --Alarm: Brown, Toggle - True = Active
  5. --Lab Wing Door Lock: Yellow, Toggle - True = Unlocked
  6. --Golem Bunkers: Lime, Toggle - True = Unlocked
  7. --Outpost Door Lock: Pink, Toggle - True = Unlocked
  8.  
  9. --Current Problems:
  10. --1)Entering the wrong password at login and logging out reboot the computer resetting everything
  11. --2)Enabling one redstone color disable's the other
  12. --3)Can only turn on redstone signals
  13.  
  14. local color = colors.lime
  15.  
  16. term.clear()
  17. term.setCursorPos(1,1)
  18. password = "pipboy"
  19. side = "bottom"
  20.  
  21. local VDL = redstone.testBundledInput(side, colors.white)
  22. local ML = redstone.testBundledInput(side, colors.orange)
  23. local AL = redstone.testBundledInput(side, colors.brown)
  24. local LWDL = redstone.testBundledInput(side, colors.yellow)
  25. local GB = redstone.testBundledInput(side, colors.lime)
  26. local ODL = redstone.testBundledInput(side, colors.pink)
  27.  
  28. term.setTextColor(color)
  29.  
  30. print("--------------------------------------------------")
  31. print("-------------VAULT 2 MASTER CONTROLS--------------")
  32. print("--------------------------------------------------")
  33. print("-- ROBCO INDUSTRIES (TM) TERMLINK PROTOCOL --")
  34. print("-- GREETINGS OVERSEER --")
  35. print("-- ENTER PASSWORD NOW --")
  36. print("-- --")
  37. print("-- --")
  38. print("-- --")
  39. print("-- PASSWORD: --")
  40. print("-- [ ] --")
  41. print("-- --")
  42. print("-- --")
  43. print("-- --")
  44. print("-- --")
  45. print("-- --")
  46. print("-- ROBCO / VAULT-TEC UI Model 1.3 --")
  47. print("--------------------------------------------------")
  48. print("--------------------------------------------------")
  49.  
  50. term.setCursorPos(21,10)
  51. input = read("*")
  52. if input == password then
  53. term.setCursorPos(15,12)
  54. print("Password Recognised.")
  55. sleep(2)
  56. term.clear()
  57. else
  58. term.setCursorPos(12,12)
  59. print("Password not Recognised.")
  60. sleep(2)
  61. os.reboot()
  62. end
  63.  
  64. term.setCursorPos(1,1)
  65.  
  66. print("Vault Door Lock: - [1] "..tostring(VDL))
  67. print("Vault Door: ------ [2] ")
  68. print("Mineshaft Lock: -- [3] "..tostring(ML))
  69. print("Alarm: ----------- [4] "..tostring(AL))
  70. print("Lab Wing Lockdown: [5] "..tostring(LWDL))
  71. print("Golem Bunkers: --- [6] "..tostring(GB))
  72. print("Outpost Door Lock: [7] "..tostring(ODL))
  73. print("Logout: ---------- [8] ")
  74.  
  75. while true do
  76. event, param1 = os.pullEvent()
  77. if event == "char" and param1 == "1" then
  78. print("Toggling Vault Door Lock")
  79. redstone.setBundledOutput(side, colors.combine(redstone.getBundledOutput(side), colors.white, true))
  80. elseif event == "char" and param1 == "2" then
  81. print("Vault Door Opening")
  82. redstone.setBundledOutput(side, colors.combine(redstone.getBundledOutput(side), colors.magenta, true))
  83. sleep(1)
  84. redstone.setBundledOutput(side, colors.magenta, false)
  85. elseif event == "char" and param1 == "3" then
  86. print("Toggling Mineshaft Lock")
  87. redstone.setBundledOutput(side, colors.combine(redstone.getBundledOutput(side), colors.orange, true))
  88. elseif event == "char" and param1 == "4" then
  89. print("Toggling Alarm")
  90. redstone.setBundledOutput(side, colors.combine(redstone.getBundledOutput(side), colors.brown, true))
  91. elseif event == "char" and param1 == "5" then
  92. print("Toggling Lab Wing Lockdown")
  93. redstone.setBundledOutput(side,colors.combine(redstone.getBundledOutput(side), colors.yellow, true))
  94. elseif event == "char" and param1 == "6" then
  95. print("Toggling Golem Bunkers")
  96. redstone.setBundledOutput(side, colors.combine(redstone.getBundledOutput(side), colors.lime, true))
  97. elseif event == "char" and param1 == "7" then
  98. print("Toggling Outpost Door Lock")
  99. redstone.setBundledOutput(side, colors.combine(redstone.getBundledOutput(side), colors.pink, true))
  100. elseif event == "char" and param1 == "8" then
  101. os.reboot()
  102. end
  103. end
Add Comment
Please, Sign In to add comment