Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Vault Door Lock: White, Toggle - True = Unlocked
- --Vault Door Open/Close: Magenta, Pulse
- --Mineshaft Lock: Orange, Toggle - True = Unlocked
- --Alarm: Brown, Toggle - True = Active
- --Lab Wing Door Lock: Yellow, Toggle - True = Unlocked
- --Golem Bunkers: Lime, Toggle - True = Unlocked
- --Outpost Door Lock: Pink, Toggle - True = Unlocked
- --Current Problems:
- --1)Entering the wrong password at login and logging out reboot the computer resetting everything
- --2)Enabling one redstone color disable's the other
- --3)Can only turn on redstone signals
- local color = colors.lime
- term.clear()
- term.setCursorPos(1,1)
- password = "pipboy"
- side = "bottom"
- local VDL = redstone.testBundledInput(side, colors.white)
- local ML = redstone.testBundledInput(side, colors.orange)
- local AL = redstone.testBundledInput(side, colors.brown)
- local LWDL = redstone.testBundledInput(side, colors.yellow)
- local GB = redstone.testBundledInput(side, colors.lime)
- local ODL = redstone.testBundledInput(side, colors.pink)
- term.setTextColor(color)
- print("--------------------------------------------------")
- print("-------------VAULT 2 MASTER CONTROLS--------------")
- print("--------------------------------------------------")
- print("-- ROBCO INDUSTRIES (TM) TERMLINK PROTOCOL --")
- print("-- GREETINGS OVERSEER --")
- print("-- ENTER PASSWORD NOW --")
- print("-- --")
- print("-- --")
- print("-- --")
- print("-- PASSWORD: --")
- print("-- [ ] --")
- print("-- --")
- print("-- --")
- print("-- --")
- print("-- --")
- print("-- --")
- print("-- ROBCO / VAULT-TEC UI Model 1.3 --")
- print("--------------------------------------------------")
- print("--------------------------------------------------")
- term.setCursorPos(21,10)
- input = read("*")
- if input == password then
- term.setCursorPos(15,12)
- print("Password Recognised.")
- sleep(2)
- term.clear()
- else
- term.setCursorPos(12,12)
- print("Password not Recognised.")
- sleep(2)
- os.reboot()
- end
- term.setCursorPos(1,1)
- print("Vault Door Lock: - [1] "..tostring(VDL))
- print("Vault Door: ------ [2] ")
- print("Mineshaft Lock: -- [3] "..tostring(ML))
- print("Alarm: ----------- [4] "..tostring(AL))
- print("Lab Wing Lockdown: [5] "..tostring(LWDL))
- print("Golem Bunkers: --- [6] "..tostring(GB))
- print("Outpost Door Lock: [7] "..tostring(ODL))
- print("Logout: ---------- [8] ")
- while true do
- event, param1 = os.pullEvent()
- if event == "char" and param1 == "1" then
- print("Toggling Vault Door Lock")
- redstone.setBundledOutput(side, colors.combine(redstone.getBundledOutput(side), colors.white, true))
- elseif event == "char" and param1 == "2" then
- print("Vault Door Opening")
- redstone.setBundledOutput(side, colors.combine(redstone.getBundledOutput(side), colors.magenta, true))
- sleep(1)
- redstone.setBundledOutput(side, colors.magenta, false)
- elseif event == "char" and param1 == "3" then
- print("Toggling Mineshaft Lock")
- redstone.setBundledOutput(side, colors.combine(redstone.getBundledOutput(side), colors.orange, true))
- elseif event == "char" and param1 == "4" then
- print("Toggling Alarm")
- redstone.setBundledOutput(side, colors.combine(redstone.getBundledOutput(side), colors.brown, true))
- elseif event == "char" and param1 == "5" then
- print("Toggling Lab Wing Lockdown")
- redstone.setBundledOutput(side,colors.combine(redstone.getBundledOutput(side), colors.yellow, true))
- elseif event == "char" and param1 == "6" then
- print("Toggling Golem Bunkers")
- redstone.setBundledOutput(side, colors.combine(redstone.getBundledOutput(side), colors.lime, true))
- elseif event == "char" and param1 == "7" then
- print("Toggling Outpost Door Lock")
- redstone.setBundledOutput(side, colors.combine(redstone.getBundledOutput(side), colors.pink, true))
- elseif event == "char" and param1 == "8" then
- os.reboot()
- end
- end
Add Comment
Please, Sign In to add comment