The addBotChat native AI script function adds an entry to the botchat menu for every bot in the group, with the specified text ID.
()addBotChat(BotChat: s) // addBotChat_s_
()setSimplePhrase("QUESTION", "How are you?");
()setSimplePhrase("REPONSE", "I'm fine, thank you!");
()addBotChat("menu:QUESTION:REPONSE");
This example sets two simple phrases using setSimplePhrase, then adds a botchat menu entry with the text ID "menu:QUESTION:REPONSE". When the botchat menu is opened, the bot will display "How are you?" and, if selected, respond with "I'm fine, thank you!".