Posted 29 June 2016 - 08:47 PM
Literally a super simple code.
What im trying to do here, Is I created a locking mechanism activated by a dandy redstone cable.
Program is called LockDown
term.clear()
term.setCursorPos(1, 1)
Print("Lock Down!")
rs.setBundledOutput("back", 1)
sleep(2)
Print("Lab has been locked")
Thats literally it. Then, for the unlocking
Program is called Unlock
term.clear()
term.setCursorPos(1, 1)
Print("Unlocking Lab!")
rs.setBundledOutput("Back", 0)
sleep(2)
Print("Lab is now open")
The error is
bios:14: [string "LockDown"]:2: ')' expected
What im trying to do here, Is I created a locking mechanism activated by a dandy redstone cable.
Program is called LockDown
term.clear()
term.setCursorPos(1, 1)
Print("Lock Down!")
rs.setBundledOutput("back", 1)
sleep(2)
Print("Lab has been locked")
Thats literally it. Then, for the unlocking
Program is called Unlock
term.clear()
term.setCursorPos(1, 1)
Print("Unlocking Lab!")
rs.setBundledOutput("Back", 0)
sleep(2)
Print("Lab is now open")
The error is
bios:14: [string "LockDown"]:2: ')' expected