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/_stickerid.js
javascript · 89 lines
1/**#command2name: /stickerid3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// ==========================================================13// 💜 GIFT — /stickerid14// TELEBOTHOST STANDALONE COMMAND15//16// Usage:17// Reply to a sticker with:18// /stickerid19// ==========================================================20 21var msg = update && update.message;22 23if (!msg) {24 return;25}26 27var text = String(msg.text || "").trim();28 29if (!text) {30 return;31}32 33// Only handle /stickerid34if (!/^\/stickerid(?:@\w+)?$/i.test(text)) {35 return;36}37 38// Must be replying to something39var reply = msg.reply_to_message;40 41if (!reply) {42 Bot.sendMessage(43 "❌ Reply to a sticker with /stickerid."44 );45 return;46}47 48// Must be a sticker49if (!reply.sticker) {50 Bot.sendMessage(51 "❌ The message you replied to is not a sticker.\n\n" +52 "Reply directly to a Telegram sticker."53 );54 return;55}56 57// Get sticker information58var sticker = reply.sticker;59 60var fileId = sticker.file_id || "Unknown";61var uniqueId = sticker.file_unique_id || "Unknown";62var emoji = sticker.emoji || "None";63var pack = sticker.set_name || "No sticker pack";64 65var type = "Static";66 67if (sticker.is_animated) {68 type = "Animated";69}70 71if (sticker.is_video) {72 type = "Video";73}74 75// Send result76var result =77 "🎟️ <b>STICKER ID</b>\n\n" +78 "🆔 <b>File ID:</b>\n" +79 "<code>" + fileId + "</code>\n\n" +80 "🔐 <b>Unique ID:</b>\n" +81 "<code>" + uniqueId + "</code>\n\n" +82 "🎭 <b>Type:</b> " + type + "\n" +83 "😀 <b>Emoji:</b> " + emoji + "\n" +84 "📦 <b>Pack:</b> " + pack;85 86Bot.sendMessage(result, {87 parse_mode: "HTML",88 reply_to_message_id: msg.message_id89});