shumon50926/shumon3883_botPublic · Bot Template

AIThis bot automatically reacts to every message in a group by picking a random emoji from Telegram's supported reaction set and applying it as a big reaction to the triggering message. It also has a /start command that sends a welcome message in private chats, inviting users to add the bot to groups for automatic reactions. The bot is simple, command-based, and uses Api.setMessageReaction with the current chat and message data.

Entertainmentauto-reactionreactionemojigroupsrandomfun
ProfileTelegram
2 commands0 envUpdated 9d agoCreated Jul 24, 2026
Back to folder

commands/_start.js

javascript · 19 lines

Raw
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>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});