Quote: "-For this "" means it's not printing anything, but Im pretty sure its necessary"
Incorrect. Printing text to accompany an INPUT statement is not necessary. For example, try the following code:
INPUT "Name? ", name$
PRINT name$
PRINT "Age?"
INPUT age
PRINT age
WAIT KEY
As you'll see, it makes no difference if text is included or not.
To elaborate on what May0naise said, this code:
if answer1$=upper$("y") then goto noise_1
if answer1$=upper$("n")
cls
print "Since your scared I won't let you play."
print "Press any key to exit.Have a bad day."
wait key
end
else
cls
input "Sorry didn't understand please try again."
goto start
endif
Was wrong because you had an 'IF' statement nested within another 'IF' statement. Now, this is usually absolutely fine and works perfectly. However, you had it checking if the user had answered with yes and then, only if they had pressed yes, it would check if they had pressed no.
Thus, whatever happened, one of the two inputs would be false, which is why it wouldn't work.
One last thing, xxelixx. Use more meaningful titles for your posts next time, please. This makes it easier for people to find a solution which is specific to their particular problem in future when they use the search function.
Thanks,
Tom