mahdiyar30301/ZorenixAI_botPublic · Bot Template

Not Bot Is Hacking You 🤣🤩

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

commands/clear_memory.js

javascript · 20 lines

Raw
1/**#command2name: clear_memory3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12try { Api.answerCallbackQuery({}); } catch(e) {}13 14let uid = "" + user.telegramid;15await db.global.set("history_" + uid, "[]");16 17Api.sendMessage({18  text: "🧹 **حافظه گفتگوی قبلی با موفقیت پاک شد!**\n\nاز الان یک مکالمه جدید شروع شد. هر سوالی دارید بفرمایید.",19  parse_mode: "Markdown"20});