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/_auras.js
javascript · 38 lines
1/**#command2name: /auras3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// =====================================13// SHOW AURA14// =====================================15 16var userId = String(user.id);17var chatId = String(request.chat.id);18 19var key = "AURA_" + chatId + "_" + userId;20 21var data = Bot.getProperty(key);22 23if (!data) {24 data = {25 aura: 0,26 messages: 0,27 lastActive: Date.now(),28 lastClaim: 029 };30 31 Bot.setProperty(key, data, "json");32}33 34Bot.sendMessage(35 "✨ " + user.first_name + "'s Aura\n\n" +36 "💫 Aura: " + data.aura + "\n" +37 "💬 Messages: " + data.messages38);