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.

Socialuzbekistanopenbudgetvotingciviccampaigninitiative
ProfileTelegram
4 commands0 envUpdated 15d agoCreated Aug 23, 2026
Back to folder

commands/πŸ—³ Ovoz berish.js

javascript Β· 30 lines

Raw
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}