-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy patherfan4lx.py
41 lines (36 loc) · 1.36 KB
/
erfan4lx.py
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
from pyrogram import Filters, Client
from time import sleep
app = Client("erfan4lx", api_id=, api_hash="", phone_number="")
banner = """
_______________ _______________
| ___________ | | ___________ |
| | | | | | | |
| | X X | | | | | |
| | - | | | | 0 0 | |
| | ___ | | | | - | |
| | / \ | | | | \___/ | |
| | \___/ | | | | | |
| |___________| | | |___________| |
|_______________| |_______________|
____| |___.............._|________|_
| ********** | | ********** |
| ********** | | ********** |
------------ ------------
[ Coded by : erfan4lx] Teams : [M4nifest0 - Unidentified - Vortex ](Cyber Security Teams)
"""
print(banner)
counter = 1
@app.on_message(Filters.me & Filters.text)
def main(c, m):
global counter
if m.text == "erfan4lx":
for i in app.iter_chat_members(m.chat.id):
if i.user.is_deleted:
ids = i.user.id
app.kick_chat_member(m.chat.id, ids)
print("Kicked "+str(counter))
sleep(3)
counter += 1
app.run()
banner1 = "[ Coded by : erfan4lx] Teams : [M4nifest0 - Unidentified - Vortex ](Cyber Security Teams)"
print(banner1)