I’m making my first simple chatbot now for fun. Everything works great. The manual says that you can use rejoinders so that your chatbot can answer anticipated responses to a statement. I’ve been coding rejoinders like this.
s:(my name is _*)^noerase() Hello, _0. What do you want to talk about?
a:(~school)^noerase() I always had problems in history class.
Theoretically, when the first line is triggered, the program will read then next line nested inside the first to see if it matches up with the input, but for some reason none of my rejoinders work. I don’t know if the program itself is corrupted or if I’m just misunderstanding the format that the rejoinders are supposed to be in. Please help