Post

Mandatory Membership Bot

بات عضویت اجباری

به این بات یه پیام بدید
اگه عضو کانال مورد نظر نباشید از شما درخواست عضویت میکنه
اگه عضو باشید جواب شما رو میده

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from balethon import Client
from balethon.conditions import is_joined

bot = Client("TOKEN")

CHAT_ID = 1234567890


@bot.on_message(~is_joined(CHAT_ID))
async def not_joined(message):
    await message.reply("Please join our chat first")


@bot.on_message()
async def answer_message(message):
    await message.reply("Thank you for using this bot")


bot.run()


پست قبلی: Payment Bot

پست بعدی: Downloader Bot

This post is licensed under CC BY 4.0 by the author.