dragxd's picture
Feature: Add /myusage, blockquote /help, and user stats tracking. Remove /myplan
1c4b5a6
from pyrogram import Client, filters
@Client.on_message(filters.private & filters.command(["help"]))
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)