BADSHA/Badsha_support_botPublic · Bot Template

AIThis bot automatically reacts to incoming messages in groups by picking a random emoji from a large list of supported Telegram reactions and applying it with Api.setMessageReaction. It also handles /start in private chats with a welcome message that encourages users to add the bot to groups. The implementation is simple TBL using built-in Api methods for reactions and messages.

Entertainmentauto-reactionemojireactionstelegram-botgroup-chatwelcome
ProfileTelegram
2 commands0 envUpdated 8d agoCreated Aug 30, 2026
Back to folder

commands/_start.js

javascript · 19 lines

Raw
1/**#command2name: /start3answer: WELCOME TO BADSHA  BHAIYA BOT4keyboard: Bacj5parse_mode: html6aliases: 7allow_only_group: true8need_reply: true9is_web: 110#command**/11 12if(chat.type != "private") return;13 14let text = `🤖 <b>Welcome to Auto Reaction Bot!</b>\n\nAdd me to your group and I will automatically react to every message, making your chat more interactive and fun! 🎉`;15 16Api.sendMessage({17  text: text,18  parse_mode: "html"19});