soumyadeepdas/Like765_botPublic · Community Store Listing
Auto Reaction Bot
2 commands0 envUpdated 9d agoCreated Sep 24, 2025
commands/_start.js
javascript · 19 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>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});