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/_help.js
javascript · 77 lines
1/**#command2name: /help3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// ==========================================================13// 💝 GIFT AI — /help14// PUBLIC COMMAND — EVERYONE CAN USE15// DIRECT REPLY • FAST • ERROR-SAFE16// ==========================================================17 18// ----------------------------------------------------------19// HELP MESSAGE20// ----------------------------------------------------------21 22var helpText =23"💝 <b>GIFT AI — HELP MENU</b>\n\n" +24 25"🤖 <b>AI & GIFT</b>\n" +26"• /ask — Ask Gift anything\n" +27"• /ai — Chat with Gift\n\n" +28 29"🎵 <b>MUSIC</b>\n" +30"• /play — Play music\n\n" +31 32"🎮 <b>FUN & GAMES</b>\n" +33"• /8ball — Ask the magic 8-ball\n" +34"• /pick — Pick an option\n" +35"• /rps — Rock Paper Scissors\n" +36"• /xo — Tic-Tac-Toe\n" +37"• /dice — Roll a dice\n\n" +38 39"👤 <b>USER</b>\n" +40"• /id — Show your Telegram ID\n" +41"• /info — Show your profile\n" +42"• /ping — Check Gift's status\n\n" +43 44"🛡️ <b>GROUP TOOLS</b>\n" +45"• /rules — View group rules\n" +46"• /welcome — Welcome settings\n" +47"• /antilink — Anti-link settings\n\n" +48 49"ℹ️ <b>OTHER</b>\n" +50"• /start — Start Gift AI\n" +51"• /about — About Gift AI\n" +52"• /support — Contact support\n\n" +53 54"💗 <i>Gift is still under development.</i>\n" +55"More features coming soon!";56 57// ----------------------------------------------------------58// SEND DIRECT REPLY59// ----------------------------------------------------------60 61if (request && request.message_id) {62 63 Bot.sendMessage({64 text: helpText,65 parse_mode: "HTML",66 reply_to_message_id: request.message_id67 });68 69} else {70 71 // Safe fallback72 Bot.sendMessage({73 text: helpText,74 parse_mode: "HTML"75 });76 77 }