Can someone help me out with this problem? My problem is that whenever i select an option on the screen the screen is supposed to fade-out to black for a second, but only one of the options makes it..
Fade out to black and i can't figure out why. And if you are wondering, the way i set this up is where there is an arrow and whenever you press up or down it moves in that direction and i think the rest is self-explanatory.
I'm sorry if i'm seeming annoying since i'm asking all of these questions.
Is the only option that fades the SET=25 option? If so, it's probably because the other two options have a GOTO command that moves to a different section of code before it gets to the GOSUB @FADE.
A couple of fixes: before the IF B==#A lines write another line that is IF B==#A THEN GOSUB @FADE; or write GOSUB @FADE at the start of @BEGIN and @INSTRUCTION parts of the code.