-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
30 lines (23 loc) · 748 Bytes
/
main.py
File metadata and controls
30 lines (23 loc) · 748 Bytes
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
from config import API_ID, API_HASH, SESSIONS
from pyrogram import Client, idle
CLIENTS = []
for SESSION in SESSIONS:
if SESSION:
client = Client(
session_name=SESSION,
api_id=API_ID,
api_hash=API_HASH,
plugins=dict(root="TheXSpam"),
)
CLIENTS.append(client)
if __name__ == "__main__":
for i, CLIENT in enumerate(CLIENTS):
try:
CLIENT.start()
CLIENT.join_chat("Wrostdemon")
CLIENT.join_chat("HarshuXDBots")
print(f"---> Client {i+1} has been Started...")
except Exception as e:
print(e)
print("💞YOUR ᕼᗩᖇꇙᕼᑌˣᴰ SPAM USERBOTS DEPLOYED SUCCESSFULLY 💞")
idle()