-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I chain replies #201
Comments
Your triggers are very similar so my guess is that both forms of message are matching the same trigger.
This is essentially
This is On a side note, the To see what's going on, run RiveScript in debug mode and see which trigger matches each message. |
So "1 + 1 times 7" matches this
but the response is Edit (kirsle): formatted your code in a fenced code block. |
I tried this as well but the effect was essentially the same
Edit (kirsle): formatted your code in a fenced code block. |
Ahh, I see what's going on now. This is similar to the other bugs that popped up when object macros were made async (see Asynchronous Support), such as #111 and #178. To let object macros run asynchronously, they are handled in two passes (the first one mangles them into those ugly The wiki link above has more background info if you're curious. The I'll be able to fix the case of " |
RiveScript.js v1.17.2 should fix the bug for synchronous object macros in redirects. |
Playing with calculations, I want to be able to input
"10 times 4 divided by 2"
is that possible?
Here's what I have;
^^^^^ That is where the problem
Any ideas?
The text was updated successfully, but these errors were encountered: