455 commands2 envUpdated 6h agoCreated Aug 26, 2026
commands/dnd.js
javascript · 41 lines
1/**#command2name: dnd3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12/**#command13name: dnd14answer: 15keyboard: 16parse_mode: markdown17aliases: 18allow_only_group: false19need_reply: false20is_web: 021#command**/22 23try {24try { Api.answerCallbackQuery({}); } catch (e0) {}25var uid = "";26if (typeof user !== "undefined" && user) {27 if (user.telegramid) uid = String(user.telegramid);28 else if (user.id) uid = String(user.id);29}30if (!uid) return;31var on = String((await db.global.get("dnd_" + uid)) || "");32if (on === "1") {33 await db.global.set("dnd_" + uid, "");34 Bot.sendMessage("🔔 DND خاموش. اعلان و اتاق میآید.");35} else {36 await db.global.set("dnd_" + uid, "1");37 Bot.sendMessage("🔕 DND روشن. اعلان همگانی و پیام اتاق نمیآید.");38}39} catch (e) {40 Bot.sendMessage("خطا dnd");41}