deletedaccount/Filosofi_1botPublic · Bot Template

Make more optional and custom bot contact @Mr_WASI_Developer

Scamscamgmail_farmingpaid_tasksearningsreferral_bonusdaily_bonus
ProfileTelegram
33 commands0 envUpdated 7h agoCreated Aug 1, 2026
Back to folder

commands/Admin/_admin_delete_task.js

javascript · 30 lines

Raw
1/**#command2name: /admin_delete_task3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12var adminId = 7460818622;13 14if (user.telegramid != adminId) {15  return;16}17 18Bot.setProperty("latest_gmail_task", null);19 20Api.answerCallbackQuery({21  callback_query_id: request.id,22  text: "🗑️ সক্রিয় কাজ ডিলিট করা হয়েছে!",23  show_alert: true24});25 26Api.sendMessage({27  chat_id: chat.chatid,28  text: "✅ <b>বর্তমান কাজ সফলভাবে রিমুভ করা হয়েছে!</b> ইউজাররা এখন নতুন কাজ আসার জন্য অপেক্ষা করবে।",29  parse_mode: "HTML"30});