-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathData.py
More file actions
66 lines (49 loc) · 1.72 KB
/
Data.py
File metadata and controls
66 lines (49 loc) · 1.72 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
from pyrogram.types import InlineKeyboardButton
class Data:
# Start Message
START = """
Halo {}
Selamat datang {}
Jika kamu tidak percaya bot ini,
1) gausah baca pesan ini
2) blokir bot atau hapus chat
Bot ini Bekerja Untuk Membantu Kamu Mendapatkan String Session Via Bot , Rekomendasi Jika Ingin Mengambil String Gunakan Akun Lain , Agar Tidak Delay
**Terimakasih**
"""
# Home Button
home_buttons = [
[InlineKeyboardButton("• Mulai Generating Session •", callback_data="generate")],
[InlineKeyboardButton(text="🏠 Kembali 🏠", callback_data="home")]
]
generate_button = [
[InlineKeyboardButton("• Mulai Generating Session •", callback_data="generate")]
]
# Rest Buttons
buttons = [
[InlineKeyboardButton("• Mulai Generating Session •", callback_data="generate")],
[InlineKeyboardButton("🐱 Developer 🐱", url="https://t.me/tzypis")],
[
InlineKeyboardButton("Menu Bantuan ❔", callback_data="help"),
InlineKeyboardButton("🤖 About 🤖", callback_data="about")
],
[InlineKeyboardButton("• Info Project •", url="https://t.me/ApisProject")],
]
# Help Message
HELP = """
👇🏻 **Perintah yang tersedia** 👇🏻
/about - Tentang Bot ini
/help - Pesan ini
/start - Mulai Bot
/generate - Mulai Generating Session
/cancel - Membatalkan proses
/restart - Membatalkan proses
"""
# About Message
ABOUT = """
**Tentang Bot ini**
Sebuah telegram bot untuk mengambil pyrogram dan telethon String Session
Grup Support : [Userbot Telegram](https://t.me/UserbotTelegramSupport)
Kerangka : [Pyrogram](docs.pyrogram.org)
Bahasa : [Python](www.python.org)
Developer : @tzypis
"""