File tree 2 files changed +93
-0
lines changed
2 files changed +93
-0
lines changed Original file line number Diff line number Diff line change
1
+ import random
2
+ import string
3
+ from cfg import *
4
+ import os
5
+ from time import sleep
6
+ try :
7
+ import discordwebhook
8
+ except ImportError :
9
+ print ('whoops. the required packages arent installed. please install from requirements.txt' )
10
+
11
+ from discordwebhook import Discord
12
+
13
+ discord = Discord (url = wh )
14
+ dscrdlink = "http://discord.gift/"
15
+ print ("""
16
+
17
+ Created by website37 <3
18
+ it should auto generate to your webhook
19
+ If you are getting a error whilst sending please configure your webhook in cfg.py
20
+ """ )
21
+ sleep (2 )
22
+
23
+ os .system ('cls' )
24
+
25
+ print ("""
26
+ ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
27
+ ⣿⣿⣿⡟⠁⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠈⢹⣿⣿⣿
28
+ ⣿⣿⣿⡇⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⢸⣿⣿⣿
29
+ ⣿⣿⣿⡇⠄⠄⠄⢠⣴⣾⣵⣶⣶⣾⣿⣦⡄⠄⠄⠄⢸⣿⣿⣿
30
+ ⣿⣿⣿⡇⠄⠄⢀⣾⣿⣿⢿⣿⣿⣿⣿⣿⣿⡄⠄⠄⢸⣿⣿⣿
31
+ ⣿⣿⣿⡇⠄⠄⢸⣿⣿⣧⣀⣼⣿⣄⣠⣿⣿⣿⠄⠄⢸⣿⣿⣿ PYTHON NIRO GEN
32
+ ⣿⣿⣿⡇⠄⠄⠘⠻⢷⡯⠛⠛⠛⠛⢫⣿⠟⠛⠄⠄⢸⣿⣿⣿
33
+ ⣿⣿⣿⡇⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⢸⣿⣿⣿ STARTING NOW!
34
+ ⣿⣿⣿⣧⡀⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⢡⣀⠄⠄⢸⣿⣿⣿
35
+ ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣆⣸⣿⣿⣿
36
+ ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
37
+ """ )
38
+
39
+ count = 0
40
+ while True == True :
41
+ discord .post (
42
+ content = dscrdlink + '' .join (random .choices (string .ascii_uppercase + string .ascii_lowercase + string .digits , k = 16 )),
43
+ username = username ,
44
+ avatar_url = pfp
45
+ )
46
+ count = count + 1
47
+ print ("Sent! |" , count + 1 )
48
+ print (dscrdlink + '' .join (random .choices (string .ascii_uppercase + string .ascii_lowercase + string .digits , k = 16 )))
49
+
Original file line number Diff line number Diff line change
1
+ from cfg import *
2
+ import os
3
+ from time import sleep
4
+ try :
5
+ import discordwebhook
6
+ except ImportError :
7
+ print ('whoops. the required packages arent installed. please install from requirements.txt' )
8
+
9
+ from discordwebhook import Discord
10
+
11
+ discord = Discord (url = wh )
12
+
13
+ print ("""
14
+
15
+ Created by website37 <3
16
+ Type anything to spam to your webhook
17
+ If you are getting a error whilst sending please configure your webhook in cfg.py
18
+ """ )
19
+ sleep (2 )
20
+
21
+ os .system ('cls' )
22
+
23
+ print ("""
24
+ ________ ___ ___ _________ ___ ___ ________ ________ ________ ________ ________ _____ ______ _____ ______ _______ ________
25
+ |\ __ \|\ \ / /|\___ ___\\ \|\ \|\ __ \|\ ___ \ |\ ____\|\ __ \|\ __ \|\ _ \ _ \|\ _ \ _ \|\ ___ \ |\ __ \
26
+ \ \ \|\ \ \ \/ / ||___ \ \_\ \ \\ \ \ \ \|\ \ \ \\ \ \ \ \ \___|\ \ \|\ \ \ \|\ \ \ \\ \__\ \ \ \ \\ \__\ \ \ \ __/|\ \ \|\ \
27
+ \ \ ____\ \ / / \ \ \ \ \ __ \ \ \\ \ \ \ \\ \ \ \ \_____ \ \ ____\ \ __ \ \ \\ |__| \ \ \ \\ |__| \ \ \ \_|/_\ \ _ _\
28
+ \ \ \___|\/ / / \ \ \ \ \ \ \ \ \ \\ \ \ \ \\ \ \ \|____|\ \ \ \___|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \_|\ \ \ \\ \|
29
+ \ \__\ __/ / / \ \__\ \ \__\ \__\ \_______\ \__\\ \__\ ____\_\ \ \__\ \ \__\ \__\ \__\ \ \__\ \__\ \ \__\ \_______\ \__\\ _\
30
+ \|__||\___/ / \|__| \|__|\|__|\|_______|\|__| \|__| |\_________\|__| \|__|\|__|\|__| \|__|\|__| \|__|\|_______|\|__|\|__|
31
+ \|___|/ \|_________|
32
+
33
+ """ )
34
+
35
+ message = input (">" )
36
+ count = 0
37
+ while True == True :
38
+ discord .post (
39
+ content = message ,
40
+ username = username ,
41
+ avatar_url = pfp
42
+ )
43
+ count = count + 1
44
+ print ("Sent! |" , count + 1 )
You can’t perform that action at this time.
0 commit comments