💬Conversations
MateBot uses Grammy's conversation API.
Step 1
await Ctx.conversation.enter("name");Step 2
await Ctx.reply("What is your name?");
const nameCtx = await conversation.waitFor(":text");
await Ctx.reply("Hi, " + nameCtx.message.text);Last updated