print"The TNT will now fire at the village"
redstone.setOutput("back",true)
sleep(.1)
redstone.setOutput("back",false)
sleep(6)
print"Confirmed hit!"
sleep(1.5)
term.clear()
term.setCursorPos(1, 1)
print"Type Launch to fire again"
io.read()
io.read = input
if
input == "Launch"
then do
redstone.setOutput("back",true)
sleep(.1)
redstone.setOutput("back",false)
end
else
os.reboot()
end
The problem is, when I type "Launch", it does os.reboot() instead of doing the "then" command. Can someone help? Thanks












