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/Creator Check.js
javascript · 39 lines
1/**#command2name: Creator Check3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12if (!userMessage && message && String(message).trim()) {13 userMessage = String(message).trim();14}15 16// 👇 PASTE CREATOR BLOCK HERE17 18var creatorCheckText = String(userMessage || "").trim().toLowerCase();19 20creatorCheckText = creatorCheckText21 .replace(/^\/ai(?:@\w+)?\s*/i, "")22 .trim();23 24var isCreatorQuestion =25 creatorCheckText.indexOf("creator") !== -1 ||26 creatorCheckText.indexOf("who made you") !== -1 ||27 creatorCheckText.indexOf("who created you") !== -1 ||28 creatorCheckText.indexOf("who built you") !== -1 ||29 creatorCheckText.indexOf("who is your maker") !== -1 ||30 creatorCheckText.indexOf("who's your maker") !== -1;31 32if (isCreatorQuestion) {33 34 Bot.sendMessage(35 "my creator and hubby is @midehatesgirls"36 );37 38 return;39}