Zafarali/Open_ByutjetbotPublic Β· Bot Template
AIAn Uzbek-language civic campaign bot for the 'Open Budget' (openbudget.uz) initiative platform. /start greets users with a main menu; the 'π³ Ovoz berish' command shares a direct voting link for a specific active initiative on new.openbudget.uz and renders a custom reply keyboard ('Ortga π' / 'yordamβΉοΈ'), while its code block also targets a hardcoded chat_id (8891447651), apparently notifying or copying the prompt to that chat. The 'Ovoz berdim β ' command asks users who voted to send a screenshot as proof to the admin (@E_zafara1i, referenced via bot bio), and 'Ortga π' simply returns users to the menu. It is a purely static, command-driven funnel with no database, API calls, or dynamic logic.
commands/π³ Ovoz berish.js
javascript Β· 30 lines
1/**#command2name: π³ Ovoz berish3answer: π³ Open Budget4 5Ovoz berish uchun quyidagi havolani bosing:6 7https://new.openbudget.uz/uz/initiative-budget/active-initiatives/55/d6dda810-018d-4f63-9123-15d5f90ea5878keyboard: Ovoz berdim β
9Ortga π10parse_mode: markdown11aliases: 12allow_only_group: false13need_reply: false14is_web: 015#command**/16 17{18 "text": "Iltimos adminga sikrenshot yuboring @E_zafara1i",19 "reply_markup": {20 "keyboard": [21 [22 {"text": "Ortga π"},23 {"text": "yordamβΉοΈ"}24 ]25 ],26 "resize_keyboard": true,27 "one_time_keyboard": false28 },29 "chat_id": 889144765130}