from pyrogram import Client, filters @Client.on_message(filters.private & filters.command(["help"])) async def help_cmd(client, message): help_text = """ 📖 Bot Help Menu
🚀 User Commands • /start - Start the bot. • /ping - Check bot latency and uptime. • /myusage - Check your processing history. • /caption - Instant caption change (via reply).
📝 How to Rename • Send any file to the bot. • Click the 📝 Rename button. • Follow the on-screen instructions.
⚡️ How to Change Caption • Send any file or reply to one. • Click 📝 Set Caption or use /caption. • Type your new caption text and send.
⚙️ Admin Commands • /stats - Check overall bot statistics. • /broadcast - Send message to all users. • /users - See total user count.
Maintained by @dragbotsupport 🚀 """ await message.reply_text(help_text)