mahdiyar30301/ZorenixAI_botPublic · Bot Template

Not Bot Is Hacking You 🤣🤩

Utilityutility
ProfileTelegram
455 commands2 envUpdated 6h agoCreated Aug 26, 2026
Back to folder

commands/_onDrawError.js

javascript · 20 lines

Raw
1/**#command2name: /onDrawError3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12let origPrompt = await db.global.get("orig_draw_" + chat.chatid) || "photo";13let seed = Math.floor(Math.random() * 9999999);14let imageUrl = "https://image.pollinations.ai/prompt/" + encodeURIComponent(origPrompt) + "?model=flux&width=1024&height=1024&nologo=true&seed=" + seed;15 16Api.sendPhoto({17  photo: imageUrl,18  caption: "🎨 **تصویر شما آماده شد!**\n\n📝 پرامپت: `" + origPrompt + "`",19  parse_mode: "Markdown"20});