In reply to: Hmmm... -- Xorlak 11:46:40 08-24-2004
Last problem, heh... Posted by: Tidus 19:03:24 08-24-2004 |
#method playnote()
{
#if(a$~=A)
{
#if(a$~=S)
{
#if(a$~=D)
{
#end
}
}
}
#if(a$=A)
{
#put(x2!,5,notes.tst1)
#x2!=x2!+1
#midirest()
#midiplay(putsomethinghere$)
}
#if(a$=S)
{
#put(x2!,5,notes.tst2)
#x2!=x2!+1
#midirest()
#midiplay(putsomethinghere$)
}
#if(a$=D)
{
#put(x2!,5,notes.tst3)
#x2!=x2!+1
#midirest()
#midiplay(putsomethinghere$)
}
#method checkforcombo()
{
#if(combo$="AAA")
{
#ectext(0,1,Congrats Moron)
#delay(2)
#done!=1
}
}
Now when i get the combo to appear (it says congrats moron on the screen) it doesnt shut the program off after the 2 second delay, do i need to put a #returnmethod in there somewhere?