soumyadeep/ReactItBotPublic · Bot Template

A Telegram bot that automatically replies to keywords with text or media in groups. Easy to set up and perfect for FAQs, community management, and automated responses.

ProfileTelegram
8 commands0 envUpdated 16h agoCreated Jun 7, 2026
Back to folder

commands/_start.js

javascript · 55 lines · click line # to share

1/**#command2name: /start3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12if (chat.type != "private") return;13 14let text = `<b>Hello, I'm Keyword React Bot</b>15 16I automatically reply to keywords with text or media in groups.17 18Add me to a group and I'll handle the reactions.19 20Use /help to see how I work.`;21 22let inlineKeyboard = {23  inline_keyboard: [24    [25      {26        text: "➕ Add to Group",27        url: "https://t.me/ReactItBot?startgroup=true"28      }29    ],30    [31      {32        text: "Help",33        callback_data: "/help"34      },35      {36        text: "Details",37        callback_data: "/details"38      }39    ]40  ]41};42 43if (request.data) {44  Api.editMessageText({45    message_id: request.message.message_id,46    text: text,47    parse_mode: "HTML",48    reply_markup: inlineKeyboard49  });50} else {51  msg.reply(text, {52    parse_mode: "HTML",53    reply_markup: inlineKeyboard54  });55}