This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
mrcrocodile123's profile picture

password protected menu interface help!

Started by mrcrocodile123, 03 September 2012 - 04:47 PM
mrcrocodile123 #1
Posted 03 September 2012 - 06:47 PM
i am getting the same error each time i try this!

'bios:206: [string "startup"]:12: '=' expected

?!?!?

what does this mean! any help is appreciated!


print("——————————")
print("WELCOME TO THE VOLCANIC TESTING CENTRE")
print("crocodile.inc")
print("please enter password to proceed to the menu interface")
input = io.read()
if input == "crocodile" then
y = "password correct"
else
print("INCORECT PASSWORD")
sleep(3)
os.reboot
end
while k == "password correct" do
while x ~= "exit" do
print("——————————")
print("MAIN MENU")
print('To access the lighting menu interface enter "lights"')
print('to access the generator menu interface enter "generators"')
print("——————————")
x=io.read()
if x == "lights" then
while y ~= "exit" do
print("——————————")
print("LIGHTING MENU")
print('To turn on the lighting system enter "on"')
print('To turn off the lighting system enter "off"')
print('To return to the Main Menu enter "exit"')
print("——————————")
y=io.read()
if y == "on" then
rednet.open("left")
rednet.send(13, "lights on")
rednet.close("left")
elseif y == "off" then
rednet.open("left")
rednet.send(13, "lights off")
rednet.close("left")
end
end
end
end
mrcrocodile123 #2
Posted 03 September 2012 - 06:49 PM
the y on line 7 should be a k* woops!
however this dosnt solve the error lol
SadProgrammer #3
Posted 03 September 2012 - 08:16 PM
You forgot the pharanthesis at os.reboot() at line twelve, so the interpreter thinks that it is a variable. When you fix it, it should work.
mrcrocodile123 #4
Posted 03 September 2012 - 09:50 PM
oh… thanks lol c: