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/_auraprivate.js
javascript · 72 lines
1/**#command2name: /auraprivate3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// ==========================================================13// ⚔️ AURA BATTLE — PRIVATE MOVE MENU14// ==========================================================15 16var groupId = options && options.groupId17 ? String(options.groupId)18 : "";19 20var opponent = options && options.opponent21 ? options.opponent22 : "your opponent";23 24if (!groupId) {25 Bot.sendMessage("❌ Battle session expired.");26 return;27}28 29// ----------------------------------------------------------30// CHECK GAME31// ----------------------------------------------------------32 33var gameKey = "AURA_GAME_" + groupId;34var game = Bot.getProperty(gameKey);35 36if (!game) {37 Bot.sendMessage(38 "⚠️ <b>This Aura battle is no longer active.</b>",39 {40 parse_mode: "HTML"41 }42 );43 return;44}45 46// ----------------------------------------------------------47// PRIVATE MENU48// ----------------------------------------------------------49 50Bot.sendInlineKeyboard(51 [52 {53 title: "🪨 Rock",54 command: "/auraMove rock " + groupId55 },56 {57 title: "📄 Paper",58 command: "/auraMove paper " + groupId59 },60 {61 title: "✂️ Scissors",62 command: "/auraMove scissors " + groupId63 }64 ],65 "⚔️ <b>AURA BATTLE</b>\n\n" +66 "👤 Opponent: <b>" + opponent + "</b>\n\n" +67 "🎮 Choose your move:\n" +68 "🔒 Your choice stays private.",69 {70 parse_mode: "HTML"71 }72);