Skip to content

Commit

Permalink
command is .tut
Browse files Browse the repository at this point in the history
  • Loading branch information
xditya authored May 22, 2020
1 parent ff4114e commit 0088572
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions userbot/plugins/tutorial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"""Plugin to get the video tutorial to deploy TeleBot
.tut"""

from userbot.utils import register

@register(outgoing=True, pattern="^.tut$")

async def join(e):

if not e.text[0].isalpha() and e.text[0] not in ("/", "#", "@", "!"):

await e.edit("Get a userbot like mine!! Watch [this video tutorial](https://youtu.be/XmvdDHiIDb4) on deploying...")

0 comments on commit 0088572

Please sign in to comment.