So I'm currently working on a large project for mIRC as a twitch rob0t. I'm running into a bunch of stuff I don't know how to do (Which is good).
Is there a way for it to use maybe a while loop to wait for a response -- a on text event taking and storing the next thing they say?
I'll write an example:
on *:text:!note:#: {
set %note on
msg $chan what note would you like to leave?
}
on *:text:*:#: {
while (%note = on)
blah blah blah save what they say here to a file.
}
I would like to keep it to separate events but I'm not sure why it doesn't work / what would work.