Commit 422375c5 by Anna Sokolova

new commit

1 parent d547627f
Showing with 24 additions and 1 deletions
......@@ -353,7 +353,7 @@ node ask_price
}
transitions
{
when_call: goto end_conversation_3 on true;
when_call: goto when_call on true;
}
onexit
......@@ -365,6 +365,29 @@ node ask_price
}
}
node when_call
{
do
{
$cjm.push("when_call");
#say("when_call");
var result = blockcall SkipMessagesBlock();
wait*;
}
transitions
{
end_conversation_3: goto end_conversation_3 on true;
}
onexit
{
end_conversation_3: do {
var text = #getMessageText();
#log(text);
}
}
}
node end_conversation_1
{
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!