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 2h agoCreated Aug 27, 2026
commands/_m.js
javascript · 44 lines
1/**#command2name: /m3answer: Used to set/disable the goodbye message.4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: true8need_reply: false9is_web: 010#command**/11 12// ==================================================13// /m — SET GOODBYE MESSAGE14// ==================================================15 16var text = String(message || "").trim();17 18if (!text) {19 Api.sendMessage({20 chat_id: chat.id,21 text: "Usage:\n/m Goodbye {name} 👋\n\nUse /m off to disable goodbye messages."22 });23 return;24}25 26var key = "goodbye_" + chat.id;27 28if (text.toLowerCase() === "off") {29 Bot.setProperty(key, "", "string");30 31 Api.sendMessage({32 chat_id: chat.id,33 text: "👋 Goodbye messages disabled."34 });35 36 return;37}38 39Bot.setProperty(key, text, "string");40 41Api.sendMessage({42 chat_id: chat.id,43 text: "✅ Goodbye message saved!"44});