telebot icon indicating copy to clipboard operation
telebot copied to clipboard

askPlugin not work. Please, Any Help

Open MorganaUzhgorod opened this issue 6 years ago • 1 comments

ask Plugin just send message at the same time with parent command. I use it with namedButtons plugin. (usePlugins: ['namedButtons', 'askUser'])

See screenshots

Снимок экрана 2019-08-20 в 16 53 57

Снимок экрана 2019-08-20 в 16 49 25

MorganaUzhgorod avatar Aug 20 '19 13:08 MorganaUzhgorod

just remove the curly braces {} on your last bot response,

bot.on('/test', msg => {
  const id = msg.from.id;
  return bot.sendMessage(id, 'test run, now reply me anything.', {ask: 'waiting'});
});

bot.on('ask.waiting', msg => {
  const id = msg.from.id;
  const txt = msg.text;
  return bot.sendMessage(id, `Your reply is ${txt}`);
});

cikaldev avatar Mar 07 '21 17:03 cikaldev