Spaces:
Running
Running
| from pyrogram import Client, filters | |
| async def help_cmd(client, message): | |
| help_text = """ | |
| <b>π <u>Bot Help Menu</u></b> | |
| <blockquote><b>π User Commands</b> | |
| β’ /start - Start the bot. | |
| β’ /ping - Check bot latency and uptime. | |
| β’ /myusage - Check your processing history. | |
| β’ /caption - Instant caption change (via reply).</blockquote> | |
| <blockquote><b>π How to Rename</b> | |
| β’ Send any file to the bot. | |
| β’ Click the <b>π Rename</b> button. | |
| β’ Follow the on-screen instructions.</blockquote> | |
| <blockquote><b>β‘οΈ How to Change Caption</b> | |
| β’ Send any file or reply to one. | |
| β’ Click <b>π Set Caption</b> or use /caption. | |
| β’ Type your new caption text and send.</blockquote> | |
| <blockquote><b>βοΈ Admin Commands</b> | |
| β’ /stats - Check overall bot statistics. | |
| β’ /broadcast - Send message to all users. | |
| β’ /users - See total user count.</blockquote> | |
| <i>Maintained by @dragbotsupport</i> <emoji id=5985386442824619877>π</emoji> | |
| """ | |
| await message.reply_text(help_text) | |