millswelbeck148/SireimadeBotPublic · Bot Template
AISireImade appears to be a Telegram automation bot. Commands include /start, /about, /support, /id, /admin, /ban, /unban, /x. Observed in code: messaging, keyboards, games.
Utilityutility
112 commands3 envUpdated 1h agoCreated Aug 27, 2026
commands/_message_handler.js
javascript · 46 lines
1/**#command2name: /message_handler3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: true8need_reply: false9is_web: 110#command**/11 12// ==========================================================13// 📡 GIFT — GROUP REGISTRY14// ==========================================================15 16if (17 chat &&18 (19 chat.type === "group" ||20 chat.type === "supergroup"21 )22) {23 24 var giftGroups = Bot.getProperty("GIFT_GROUPS");25 26 if (!giftGroups) {27 giftGroups = [];28 }29 30 if (!Array.isArray(giftGroups)) {31 giftGroups = [];32 }33 34 var giftGroupID = String(chat.id);35 36 if (giftGroups.indexOf(giftGroupID) === -1) {37 38 giftGroups.push(giftGroupID);39 40 Bot.setProperty(41 "GIFT_GROUPS",42 giftGroups,43 "json"44 );45 }46}