suvo_/ImglyBotPublic · Bot Template
AIThis bot searches images through a Pinterest-related HTTP API and delivers results in private chats, inline mode, and guest business queries, with a search-more inline button and copy URL action. It tracks referrals from /start links, records referrer counts and lists, and displays referral benefits. The bot also handles business sticker messages by matching emoji and replying with a random sticker from the same set, asks users for feedback after feature usage, and includes an admin-only broadcast system plus a token-based clone-bot request flow.
Utilityimage-searchpinterestinline-modereferralbroadcastclone-bot
27 commands3 envUpdated 3d agoCreated Jul 2, 2026
commands/_askfb.js
javascript · 28 lines
1/**#command2name: /askfb3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12let targetUser = Number(params);13 14let count = User.getProperty("feature_count") || 0;15count++;16 17User.setProperty("feature_count", count, "number");18 19if (count < 6) return;20if (User.getProperty("feedback_asked", false)) return;21 22User.setProperty("feature_count", 0, "number");23 24Api.sendMessage({25 chat_id: targetUser,26 text: `⭐ Have any suggestions or found a bug?27We'd love to hear from you! Just use /feedback to send us your /feedback. Every message helps us improve. 💙`28});