So here's what I have for the clear screen bit:
print("Looks like that's it. Clear?")
print("Hit 1 for yes, 2 for no.")
local e = read()
if e == 1 then
print("Ok then. clearing screen!")
sleep(1)
term.clear()
else
print("You don't want to clear that mess? Ok...")
end
The problem is whenever I type in 1, it still goes and prints, "You don't want to clear that mess? Ok..." I tested it out by replacing e with 1 so it reads, "1 == 1", and it works. So any idea on what I did wrong?











