đŦConversations
MateBot uses Grammy's conversation API.
To create a command that uses conversation, follow the given step -
Step 1
Create a command with the following content:
await Ctx.conversation.enter("name");
Step 2
Create conversation with the name name
and paste the following script:â
await Ctx.reply("What is your name?");
const nameCtx = await conversation.waitFor(":text");
await Ctx.reply("Hi, " + nameCtx.message.text);
Now save and restart your bot.
Last updated