Skip to content
This repository was archived by the owner on Feb 7, 2025. It is now read-only.
This repository was archived by the owner on Feb 7, 2025. It is now read-only.

stop/interupt askUser Plugin #215

@noerarief23

Description

@noerarief23

bot.on('/start', msg => {
const id = msg.from.id;
// Ask user name
return bot.sendMessage(id, 'What is your name?', {ask: 'name'});
});
// Ask name event
bot.on('ask.name', msg => {
const id = msg.from.id;
const name = msg.text;
// Ask user age
return bot.sendMessage(id, Nice to meet you, ${ name }! How old are you?, {ask: 'age'});
});

if send /cancel or another command, how to stop/interupt askUser ?
to hide/stop this message "Nice to meet you, /cancel ! How old are you?"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions