-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAzerapi-SpamTools.py
More file actions
125 lines (112 loc) · 5.47 KB
/
Copy pathAzerapi-SpamTools.py
File metadata and controls
125 lines (112 loc) · 5.47 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#chat spam bot
import string
import pyautogui
import time
import os
import passwordConfig as cfg
running = True
while running:
print(""""
___ ________ _______ .______ ___ .______ __
/ \ | / | ____|| _ \ / \ | _ \ | | _
/ ^ \ `---/ / | |__ | |_) | / ^ \ | |_) | | | (_)
/ /_\ \ / / | __| | / / /_\ \ | ___/ | |
/ _____ \ / /----.| |____ | |\ \----. / _____ \ | | | | _
/__/ \__\ /________||_______|| _| `._____|/__/ \__\ | _| |__| (_)
_______..______ ___ .___ ___. .___________. ______ ______ __
/ || _ \ / \ | \/ | | | / __ \ / __ \ | |
| (----`| |_) | / ^ \ | \ / | `---| |----`| | | | | | | | | |
\ \ | ___/ / /_\ \ | |\/| | | | | | | | | | | | | |
.----) | | | / _____ \ | | | | | | | `--' | | `--' | | `----.
|_______/ | _| /__/ \__\ |__| |__| |__| \______/ \______/ |_______|
Disclaimer: This script was made to mess with people on apps like discord and to mess with people on
chat sites don't use it to spread malicious messages or to annoy your teachers during online classes!
""")
print("[1] Spam bot")
print("[2] Chat Message bot")
print("[3] Spam bot(with limits)")
print("[4] Discord spambot(max 16 msgs)")
choice = int(input("[?]:"))
if choice == 1:
print("This option is password protected")
password = cfg.password["password"]
passwordInput = input("[🔒]:")
if passwordInput == password:
os.system('cls')
i = 0
choice2 = input("enter word or phrase you want to spam: ")
count = int(input("how many times do you want to spam?(warning don't spam over 50 times!)"))
print("You have 5 seconds place your cursor in the desired chat box")
time.sleep(5) #5 second pause
for i in range(count):
pyautogui.typewrite(choice2)
pyautogui.press("enter")
time.sleep(0.1) # 0.1 second pause
os.system('cls')
i = i + 1
print(f"spammed {i} times")
print(f"spammed: {choice2} {count} times" )
else: print(f"{passwordInput} is not the right password")
elif choice == 2:
os.system('cls')
choice2 = input("enter words or phrases you want to spam: ")
count = int(input("how many times do you want to spam?(warning don't spam over 50 times!)"))
print("You have 5 seconds place your cursor in the desired chat box")
time.sleep(5) #5 second pause
i = 0
for i in range(count):
time.sleep(1)
pyautogui.typewrite(choice2)
pyautogui.press("enter")
time.sleep(1)
pyautogui.press("escape")
pyautogui.press("escape")
time.sleep(0.2)
i = i + 1
os.system('cls')
print(f"spammed {i} times")
print(f"spammed: {choice2} {count} times" )
elif choice == 3:
os.system('cls')
choice3 = input("enter words or phrases you want to spam: ")
count = int(input("how many times do you want to spam?(Max. 25 times)"))
if count <= 25:
print("You have 5 seconds place your cursor in the desired chat box")
time.sleep(5) #5 second pause
i = 0
os.system('cls')
time.sleep(5) #5 second pause
for i in range(count):
pyautogui.typewrite(choice3)
pyautogui.press("enter")
time.sleep(0.1) # 0.1 second pause
os.system('cls')
i = i + 1
print(f"spammed {i} times")
print(f"spammed: {choice3} {count} times" )
elif count > 25: print(f"You chose {count} however you can't spam more than 25 times")
else: "Count can't be empty"
elif choice == 4:
os.system('cls')
choice3 = input("enter words or phrases you want to spam: ")
count = int(input("how many times do you want to spam?(Max. 16 times bc of discord ratelimit)"))
if count <= 16:
print("You have 5 seconds place your cursor in the desired chat box")
time.sleep(5) #5 second pause
i = 0
os.system('cls')
time.sleep(5) #5 second pause
for i in range(count):
pyautogui.typewrite(f"[Discord SpamBot]:{choice3}")
pyautogui.press("enter")
time.sleep(0.1) # 0.1 second pause
os.system('cls')
i = i + 1
print(f"spammed {i} times")
print(f"spammed: {choice3} {count} times" )
elif count > 16: print(f"You chose {count} however you can't spam more than 16 times")
else: "Count can't be empty"
else: "type the right things buddy"
stop = input("druk op enter om door te gaan of op x om te stoppen:\n")
if(stop == "X" or stop == "x"):
running = False