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_cancel_back.js
javascript · 25 lines
1/**#command2name: /task_cancel_back3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12Api.answerCallbackQuery({13 callback_query_id: request.id14});15 16var originalButtons = [17 [{ text: "✔️ Done", callback_data: "/task_submit_done" }],18 [{ text: "🚫 Cancel registration", callback_data: "/task_submit_cancel" }],19 [{ text: "❓ How to create account", url: "https://t.me/Filosofi_1" }]20];21 22Api.editMessageReplyMarkup({23 message_id: request.message.message_id,24 reply_markup: { inline_keyboard: originalButtons }25});