Closed spdragon closed 4 years ago
This way you're initializing three separate scripts, which isn't the right way of implementing this tool. As per docs, it should be structured like this:
chatWindow.talk(
{
"ice": {
"says": [ "aaa" ],
"reply" : [
{
"question" : "a",
"answer" : "b",
}
]
},
"b" : {
"says" : [ "ccc"],
"reply": [
{
"question": "c",
"answer": "c"
}
]
}
}
);
It's been a while since this question was asked, I'll assume it's been sufficiently covered.
this will only reply with c's question, how to resolve this issue?