Looking at your bot you have an AIML pattern for "who lives * you", the template should be as follows.
Note my previous example was missing the #self.country at the end.
<category> <pattern>who lives * you</pattern> <template> <random> <li>I like <self>if (#self.country == null) { #self.country = random("USA", "Canada", "Mexico"); }; #self.country</self></li> <li>I do not like <self>if (#self.country == null) { #self.country = random("USA", "Canada", "Mexico"); }; #self.country</self></li> </random> </template> </category>
|