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/_sudos.js
javascript · 73 lines
1/**#command2name: /sudos3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// ==========================================================13// 💜 GIFT AI — /ADMINS14// SHOW BOT ADMIN LIST15// REPLIES DIRECTLY TO COMMAND16//17// • Shows the bot owner18// • Shows all added bot admins19// • Anyone can use this command20// ==========================================================21 22// 👑 BOT OWNER ID23var OWNER_ID = 8031061590;24 25// ----------------------------------------------------------26// GET ADMINS27// ----------------------------------------------------------28 29var admins = Bot.getProperty("GIFT_BOT_ADMINS");30 31if (!Array.isArray(admins)) {32 admins = [];33}34 35// ----------------------------------------------------------36// BUILD LIST37// ----------------------------------------------------------38 39var text =40 "👑 <b>GIFT AI — BOT ADMINS</b>\n\n" +41 "👑 <b>OWNER</b>\n" +42 "└ <code>" + OWNER_ID + "</code>\n\n";43 44if (admins.length === 0) {45 46 text +=47 "🛡 <b>ADMINS</b>\n" +48 "└ No additional admins yet.";49 50} else {51 52 text +=53 "🛡 <b>ADMINS (" +54 admins.length +55 ")</b>\n\n";56 57 for (var i = 0; i < admins.length; i++) {58 text +=59 (i + 1) +60 ". <code>" +61 admins[i] +62 "</code>\n";63 }64}65 66// ----------------------------------------------------------67// SEND LIST — REPLY DIRECTLY TO /ADMINS68// ----------------------------------------------------------69 70Bot.sendMessage(text, {71 parse_mode: "HTML",72 reply_to_message_id: request.message_id73});