Let's say I wanted to make a quiz with 2 questions..
Something like:
on *:TEXT:!quiz:#: {
/msg # starting 2 questions
/quiz.1
}
alias -l quiz.1 {
/msg # what is 1 + 1?
on *:TEXT:2:#: /msg right!
/quiz.2
}
alias -l quiz.2 {
/msg # what is 2 + 2?
on *:TEXT:4:#: /msg right!
/halt
}
now... it is very obvious what I want to do...
how do I make it WAIT for the user to enter a correct response before moving on to question 2?