-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
156 lines (132 loc) · 5.94 KB
/
main.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
##Credits: nuker
##Discord: @yen
##Github: yencommits
#imports
from dhooks import Webhook
import time
import os
from colorama import Fore, Back, Style
import platform
import sys
import datetime
from time import sleep
loading = 0
cmd = 'mode 50,50'
os.system(cmd)
#function load
def load():
bar = [Fore.LIGHTCYAN_EX + "|", Fore.LIGHTCYAN_EX + "/", Fore.LIGHTCYAN_EX + "-", Fore.LIGHTCYAN_EX + "\\"]
for _ in range(20):
for char in bar:
print(f"\rLoading xem please wait: {char} {Fore.RESET}", end="", flush=True)
time.sleep(0.1)
#function clear
def clear():
if platform.system() == 'Windows':
os.system('cls & title xem.gg') # clear console, change title
elif platform.system() == 'Linux':
os.system('clear') # clear console
sys.stdout.write("\x1b]0;xem.gg\x07") # change title
elif platform.system() == 'Darwin':
os.system("clear && printf '\e[3J'") # clear console
os.system('''echo - n - e "\033]0;xem.gg\007"''') # change title
#function .1
def option1():
clear()
print(Fore.LIGHTCYAN_EX + """
,--.
{ }
K, }
/ ~Y`
, / /
{_'-K.__/
`/-.__L._
/ ' /`\_}
/ ' /
____ / ' /
,-'~~~~ ~~/ ' /_
,' ``~~~ ',
( Y
{ I
{ - `,
| ', )
| | ,..__ __. Y
| .,_./ Y ' / ^Y J )|
\ |' / | | ||
\ L_/ . _ (_,.'(
\, , ^^""' / | )
\_ \ /,L] /
'-_~-, ` ` ./`
`'{_ )
^^\..___,.--`
██╗ ██╗███████╗███╗ ███╗
╚██╗██╔╝██╔════╝████╗ ████║
╚███╔╝ █████╗ ██╔████╔██║
██╔██╗ ██╔══╝ ██║╚██╔╝██║
██╔╝ ██╗███████╗██║ ╚═╝ ██║
╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
""")
print("――――――――――――――――――――――――――――――――――――――――――――――――――")
print(Fore.RESET + " made by " + Fore.LIGHTCYAN_EX + "yen " + Fore.RESET + "| discord: " + Fore.LIGHTCYAN_EX + "dsc.gg/uXA6hz97bR" + Fore.RESET)
webhookurl = Webhook(input(Fore.RESET + "[spammer] webhook url:" + Fore.LIGHTCYAN_EX + " "))
message = input(Fore.RESET + "[spammer] message:" + Fore.LIGHTCYAN_EX + " ")
delay = int(input(Fore.RESET + "[spammer] delay:" + Fore.LIGHTCYAN_EX + " "))
clear()
#webhookspam
while True:
time.sleep(delay)
webhookurl.send(message)
print( "sent: " + message)
#time
#ui
e = datetime.datetime.now()
now = datetime.datetime.now()
load()
print()
print(Fore.LIGHTCYAN_EX + "[" + Fore.RESET + "+" + Fore.LIGHTCYAN_EX + "] " + Fore.RESET + "loaded xem starting ui")
time.sleep(2)
clear()
print(Fore.LIGHTCYAN_EX + """
,--.
{ }
K, }
/ ~Y`
, / /
{_'-K.__/
`/-.__L._
/ ' /`\_}
/ ' /
____ / ' /
,-'~~~~ ~~/ ' /_
,' ``~~~ ',
( Y
{ I
{ - `,
| ', )
| | ,..__ __. Y
| .,_./ Y ' / ^Y J )|
\ |' / | | ||
\ L_/ . _ (_,.'(
\, , ^^""' / | )
\_ \ /,L] /
'-_~-, ` ` ./`
`'{_ )
^^\..___,.--`
██╗ ██╗███████╗███╗ ███╗
╚██╗██╔╝██╔════╝████╗ ████║
╚███╔╝ █████╗ ██╔████╔██║
██╔██╗ ██╔══╝ ██║╚██╔╝██║
██╔╝ ██╗███████╗██║ ╚═╝ ██║
╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
""")
print("――――――――――――――――――――――――――――――――――――――――――――――――――")
print(Fore.RESET + " made by " + Fore.LIGHTCYAN_EX + "yen " + Fore.RESET + "| discord: " + Fore.LIGHTCYAN_EX + "dsc.gg/uXA6hz97bR" + Fore.RESET)
print(Fore.RESET + " connected to: " + Fore.LIGHTCYAN_EX + "nobody")
#choices
print()
print()
print(Fore.LIGHTCYAN_EX + " 1." + Fore.RESET + " Webhook Spammer")
#choice input
choice = int(input(" choice:" + Fore.LIGHTCYAN_EX + " "))
if choice == 1:
option1()