rednet.open("back")
while true do
term.clear()
term.setCursorPos(1,1)
print("Wizard Remote Control Systems")
print("")
print("1) Lights ON - Normal")
print("2) Red Lights (Silent)")
print("3) Full Alert!")
print("4) Lights OFF")
print("5) Reactor ON")
print("6) Reactor OFF")
print("7) Laser (Single Blast)")
print("8) Laser (Barrage)")

print("")
print("Make Selection:")

input = read()

if input == "1" then
rednet.send(5, "nor")
end
if input == "2" then
rednet.send(5, "red")
end
if input == "3" then
rednet.send(5, "ale")
end
if input == "4" then
rednet.send(5, "off")
end

if input == "5" then
rednet.send(13, "on")
end
if input == "6" then
rednet.send(13, "off")
end
if input == "7" then
rednet.send(4, "one")
end
if input == "8" then
rednet.send(4, "rap")
end
end
