deletedaccount/Filosofi_1botPublic · Bot Template
Make more optional and custom bot contact @Mr_WASI_Developer
Scamscamgmail_farmingpaid_tasksearningsreferral_bonusdaily_bonus
33 commands0 envUpdated 5h agoCreated Aug 1, 2026
commands/_task_submit_cancel.js
javascript · 25 lines
1/**#command2name: /task_submit_cancel3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12Api.answerCallbackQuery({13 callback_query_id: request.id14});15 16// কনফার্মেশন বাটন সেটআপ (Yes, cancel & Back)17var confirmButtons = [18 [{ text: "🚫 Yes, cancel", callback_data: "/task_confirm_cancel" }],19 [{ text: "⬅️ Back", callback_data: "/task_cancel_back" }]20];21 22Api.editMessageReplyMarkup({23 message_id: request.message.message_id,24 reply_markup: { inline_keyboard: confirmButtons }25});