sorry I don't know how to make spoilers
Here is the code
print ("Welcome to your new Operating System (OS)")
sleep(1)
print ("Would you like to know the new programs on this OS?")
print ("Y/N")
input = read()
if input == "Y" then
print ("KosOS offers a range of new programs.")
print ("The new programs are")
print ("1. Chat")
print ("2. Mail")
print ("We are trying to get more programs for this OS")
print ("Please type what program you would like to know about (number)")
print ("If you would like to leave type 'leave'")
prog = read()
if prog == "1" then
print ("Chat")
print ("The chat program is a way to chat through computers.")
print ("Don't like your Minecraft username?")
print ("We ask you for a name to use.")
print ("With this feature you could choose your real name, or something completely new")
print ("If it's something different others wont reconise you though")
print ("NOTE: You must have a wireless modem")
print ("If you would like to know this again type 'KosOS'")
elseif prog == "2" then
print ("Mail")
print ("This is your E-Mail")
print ("You send and recieve mesages")
print ("When you are sending messages make sure to send it to the computer ID not the persons name")
print ("If you are waiting for mail that has been sent you must Refresh your Email")
print ("Before you send any mail you should change your name for the computer. This will show up as the name for other users")
print ("NOTE: You need a wireless modem")
print ("IMPORTANT: You must go edit pref and change side to what side your wireless modem is on")
else
print ("Invalid entry")
elseif input = "N" then
print ("If you would like this help at anytime just type KosOS")
else
print ("Invalid entry")
end
but I get the error:bios:206: [string "KosOS"]:35: 'end' expected (to close 'if' at line 15)












