mahdiyar30301/ZorenixAI_botPublic · Bot Template

Not Bot Is Hacking You 🤣🤩

Utilityutility
ProfileTelegram
455 commands2 envUpdated 6h agoCreated Aug 26, 2026
Back to folder

commands/mood.js

javascript · 26 lines

Raw
1/**#command2name: mood3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// کامند: mood13try {14  Api.sendMessage({15    text: "🌤️ حال‌وهوات چطوره؟",16    reply_markup: {17      inline_keyboard: [18        [{ text: "😊 خوب", callback_data: "mood_good" }, { text: "😐 معمولی", callback_data: "mood_ok" }],19        [{ text: "😔 خسته", callback_data: "mood_tired" }, { text: "😰 استرس", callback_data: "mood_stress" }],20        [{ text: "😡 عصبی", callback_data: "mood_angry" }, { text: "💪 انگیزه", callback_data: "mood_boost" }]21      ]22    }23  });24} catch (e) {25  Bot.sendMessage("⚠️ خطا mood:\n" + String(e && e.message ? e.message : e));26}