Skip to content

Commit 5c499de

Browse files
authored
Update To V0.0.5 🔥
1 parent 60fae95 commit 5c499de

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Rkn_Bots/Caption.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Telegram Channel @RknDeveloper & @Rkn_Bots
55
# Developer @RknDeveloperr
66

7-
from pyrogram import Client, filters, errors
7+
from pyrogram import Client, filters, errors, types
88
from Config import Rkn_Bots
99
import asyncio, re, time, sys
1010
from .database import *
@@ -62,8 +62,14 @@ async def start_cmd(bot, message):
6262
user_det = {"_id": user_id)
6363
await users.insert_one(user_det)
6464
await message.reply(
65-
f"<b>Hey, {message.from_user.mention}\n\nI'm an auto-caption bot. I automatically edit captions for videos, audio files, and documents posted on channels.\n\nuse <code>/set_caption</code> to set caption\nUse<code>/delcaption</code> To delete caption and set caption to default.\n\nNote:All commands works on channels only</b>"
66-
)
65+
f"<b>Hey, {message.from_user.mention}\n\nI'm an auto-caption bot. I automatically edit captions for videos, audio files, and documents posted on channels.\n\nuse <code>/set_caption</code> to set caption\nUse<code>/delcaption</code> To delete caption and set caption to default.\n\nNote:All commands works on channels only</b>",
66+
reply_markup=types.InlineKeyboardMarkup([
67+
types.InlineKeyboardButton('Uᴩᴅᴀᴛᴇꜱ', url='https://t.me/RknDeveloper'),
68+
types.InlineKeyboardButton('Sᴜᴩᴩᴏʀᴛ', url='https://t.me/RknDeveloperSupport')
69+
], [
70+
types.InlineKeyboardButton('🔥 Source Code 🔥', url='https://github.com/RknDeveloper/Rkn-AutoCaptionBot')
71+
]]))
72+
6773

6874

6975
@Client.on_message(filters.command("set_caption") & filters.channel)

0 commit comments

Comments
 (0)