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 question.js
javascript · 70 lines
1/**#command2name: creator question3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// ==================================================13// GIFT CREATOR — ABSOLUTE HARD OVERRIDE14// ==================================================15 16// Get the original incoming text17var creatorCheckText = String(18 userMessage ||19 params ||20 message ||21 ""22).trim().toLowerCase();23 24 25// Remove /ai and /ai@botname if present26creatorCheckText = creatorCheckText27 .replace(/^\/ai(?:@\w+)?\s*/i, "")28 .trim();29 30 31// --------------------------------------------------32// DETECT CREATOR QUESTIONS33// --------------------------------------------------34 35var isCreatorQuestion = false;36 37// Anything containing "creator"38if (creatorCheckText.indexOf("creator") !== -1) {39 isCreatorQuestion = true;40}41 42// Common questions43if (44 creatorCheckText.indexOf("who made you") !== -1 ||45 creatorCheckText.indexOf("who made gift") !== -1 ||46 creatorCheckText.indexOf("who created you") !== -1 ||47 creatorCheckText.indexOf("who created gift") !== -1 ||48 creatorCheckText.indexOf("who built you") !== -1 ||49 creatorCheckText.indexOf("who built gift") !== -1 ||50 creatorCheckText.indexOf("who is your maker") !== -1 ||51 creatorCheckText.indexOf("who's your maker") !== -1 ||52 creatorCheckText.indexOf("who is gift's maker") !== -1 ||53 creatorCheckText.indexOf("who's gift's maker") !== -154) {55 isCreatorQuestion = true;56}57 58 59// --------------------------------------------------60// HARD RESPONSE61// --------------------------------------------------62 63if (isCreatorQuestion) {64 65 Bot.sendMessage(66 "my creator and hubby is @midehatesgirls"67 );68 69 return;70}