-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiscordspam.py
213 lines (178 loc) · 5.37 KB
/
discordspam.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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
import requests
import time
import threading
file = open("token.txt", "r")
token = file.read()
headers = {"authorization": token}
file = open("text.txt", "r")
line = file.read()
#MTEzMDUwMzI1MDQ2MjkwMDI3NA.Gp0Z1u.RmdY2FY_26ui1WTRk3U8JzTjOhRBvM4A0lRtBc
#ODIwNjE1MTc3MzgwMDM2Njg4.GRRDuT.FbJ3gvMw6QQbXxtBdJl6NoISWWDpvptB4Xb2sQ
def mesaj(channelID):
requests.post(f"https://discord.com/api/v9/channels/{channelID}/messages", headers = headers, json = {"content": line} )
print("Mesaj atıldı")
def gro():
while True:
# 13 minutes of work for gro
mesaj(691266691522363444) # blok
time.sleep(1)
mesaj(895702150196383884) # consumable
time.sleep(1)
mesaj(895690960586031104) # pack
print("growtopia atıldı")
time.sleep(13 * 60)
print("growtopia restarted")
def thelast1():
while True:
#uzun olan the last nemo growtopia
mesaj(846671811223355402)
print("Thelastnemo başladı")
time.sleep(135 * 60)
print("thelast1 restart")
def thelast2():
while True:
#uzun olan the last nemo growtopia
mesaj(782718523629633567)
time.sleep((135+15) * 60)
print("thelast2 restart")
def thelast3():
while True:
#uzun olan the last nemo growtopia
mesaj(846661246303469598)
time.sleep((135+30) * 60)
print("thelast3 restart")
def thelast4():
while True:
#uzun olan the last nemo growtopia
mesaj(846673193426354176)
time.sleep((135+45) * 60)
print("thelast4 restart")
def thelast5():
while True:
#uzun olan the last nemo growtopia
mesaj(806523338797219860)
time.sleep((195+1) * 60)
print("thelast5 restart")
def thelast6():
while True:
#uzun olan the last nemo growtopia
mesaj(733050809314705458)
time.sleep((195+15) * 60)
print("thelast6 restart")
def thelast7():
while True:
#uzun olan the last nemo growtopia
mesaj(1105154359114875072)
time.sleep((195+30) * 60)
print("thelast7 restart")
def thelast8():
while True:
#uzun olan the last nemo growtopia
mesaj(737344235199660123)
time.sleep((195+45) * 60) #4 saat
print("thelast8 restart")
def thelast9():
while True:
#uzun olan the last nemo growtopia
mesaj(846678280928624650)
time.sleep((255+1) * 60)
print("thelast9 restart")
def thelast10():
while True:
#uzun olan the last nemo growtopia
mesaj(900823352275521546)
time.sleep((255+15) * 60)
print("thelast10 restart")
def thelast11():
while True:
#uzun olan the last nemo growtopia
mesaj(762434767912173588)
time.sleep((255+30) * 60)
print("thelast11 restart")
def thelast12():
while True:
#uzun olan the last nemo growtopia
mesaj(846671811223355402)
time.sleep((255+45) * 60)
print("thelast12 restart")
def thelast13():
while True:
#uzun olan the last nemo growtopia
mesaj(782718823488290826)
time.sleep((315+1) * 60)
print("thelast13 restart")
def thelast14():
while True:
#uzun olan the last nemo growtopia
mesaj(733350990010384464)
time.sleep((315+15) * 60)
print("thelast14 restart")
def thelast15():
while True:
#uzun olan the last nemo growtopia
mesaj(806498636065931265)
time.sleep((315+30) * 60)
print("thelast15 restart")
def thelast16():
while True:
#uzun olan the last nemo growtopia
mesaj(944657054377836645)
time.sleep((315+45) * 60)
print("thelast16 restart")
def thelast17():
while True:
#uzun olan the last nemo growtopia
mesaj(1104057271215984741)
time.sleep((375+1) * 60)
print("thelast17 restart")
thread1 = threading.Thread(target=gro)
thread2 = threading.Thread(target=thelast1)
thread3 = threading.Thread(target=thelast2)
thread4 = threading.Thread(target=thelast3)
thread5 = threading.Thread(target=thelast4)
thread6 = threading.Thread(target=thelast5)
thread7 = threading.Thread(target=thelast6)
thread8 = threading.Thread(target=thelast7)
thread9 = threading.Thread(target=thelast8)
thread10 = threading.Thread(target=thelast9)
thread11 = threading.Thread(target=thelast10)
thread12 = threading.Thread(target=thelast11)
thread13 = threading.Thread(target=thelast12)
thread14 = threading.Thread(target=thelast13)
thread15 = threading.Thread(target=thelast14)
thread16 = threading.Thread(target=thelast15)
thread17 = threading.Thread(target=thelast16)
thread18 = threading.Thread(target=thelast17)
thread1.start()
print("growtopia")
thread2.start()
time.sleep(60)
thread3.start()
time.sleep(60)
thread4.start()
time.sleep(60)
thread5.start()
time.sleep(60)
thread6.start()
time.sleep(60)
thread7.start()
time.sleep(60)
thread8.start()
time.sleep(60)
thread9.start()
time.sleep(60)
thread10.start()
time.sleep(60)
thread11.start()
time.sleep(60)
thread12.start()
time.sleep(60)
thread13.start()
time.sleep(60)
thread14.start()
time.sleep(60)
thread15.start()
time.sleep(60)
thread16.start()
time.sleep(60)
thread17.start()