forked from RishBroProMax/Fsub-Bot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathData.py
More file actions
80 lines (55 loc) · 2.34 KB
/
Data.py
File metadata and controls
80 lines (55 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#🪄🔎🔮💫♻️🚀🍁🎺🖥️⚔️🖌️🎧👻👹👨💻🧑💻👨✈️🕵️🤘👋🖐️🪄🎉✨🎞️🎀🎁♥️♦️🔊🎧🛠️🔒⚙️⛓️🔗📲📸📡🎥📷📹📼🔍🔍🔎📘📙📚🔖💵💶🪙💸💷💴
from pyrogram.types import InlineKeyboardButton
class Data:
# Start Message
START = """
🍁Hello {}
Welcome to {}
I m Force Subscribe Bot !
Send /help Visit My Help Menu
🚀Powerd By @EmoBotDevolopers
"""
# Home Button
home_buttons = [
[InlineKeyboardButton(text="🏛️ Return Home 🏛️", callback_data="home")],
[InlineKeyboardButton("☣ Emo Bot Devolopers ☣", url="https://t.me/EmoBotDevolopers")],
]
# Rest Buttons
buttons = [
[InlineKeyboardButton("🪄Demo Bot", url="https://t.me/ImRishmika_Bot")],
[
InlineKeyboardButton("❔ How to Use ❔", callback_data="help"),
InlineKeyboardButton("♾️ About ♾️", callback_data="about")
],
[InlineKeyboardButton("👨💻 Devoloper 👨💻", url="https://t.me/ImRishmika")],
[InlineKeyboardButton("💬 Support 💬", url="https://t.me/KatszukiSupport")],
]
# Help Message
HELP = """
1) Add me as **Admin** to a group.
2) Add me to the particular chat as **Admin** where you want to force your users to join. It can be any group or channel, public or private.
3) Use /fsub chat_id/username to make me functional. Use /id if you need chat id.
Example : `/fsub -1001742371821` or `/forcesubscribe -1001742371821`
4) [Optional] Use /settings to change settings!
5) You are good to go. Leave the rest to me.
🔅 **Available Commands** 🔅
/fsub - See current force subscribe chat
/fsub chat_id/username - Force users to join the particular chat
/settings - Change Group Settings
/id - Get the chat id of any group or channel
/about - About The Bot
/help - This Message
/start - Start the Bot
**Note** - You can also use `/forcesubscribe` instead of `/fsub`
Powerd By [Emo Network](t.me/EmoBotDevolopers)
"""
# About Message
ABOUT = """
**About This Bot**
A Telegram Force Subscribing Bot by @ImRishmika
🪄Powerd By : @EmoBotDevolopers
🍁Framework : [Pyrogram](docs.pyrogram.org)
🍁Language : [Python](www.python.org)
🍁Developer : @ImRishmika
🖥️Host Sever : Heroku
"""