forked from NightfallGT/Discord-Raider-Pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
260 lines (190 loc) · 7.75 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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
from PySide2 import QtCore, QtGui, QtWidgets
from PySide2.QtCore import (QCoreApplication, QPropertyAnimation, QDate, QDateTime, QMetaObject, QObject, QPoint, QRect, QSize, QTime, QUrl, Qt, QEvent)
from PySide2.QtGui import (QBrush, QColor, QConicalGradient, QCursor, QFont, QFontDatabase, QIcon, QKeySequence, QLinearGradient, QPalette, QPainter, QPixmap, QRadialGradient)
from PySide2.QtWidgets import *
from util import *
from ui import *
import threading
import sys
class MainWindow(QMainWindow):
def __init__(self):
clear()
os.system('title Discord Raid Pro [Console]')
os.system('mode 60, 20')
self.C = Container()
QMainWindow.__init__(self)
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
self.setWindowIcon(QIcon('icon/discord-128.ico'))
self.ui.Btn_Toggle.clicked.connect(lambda: UIFunctions.toggle_menu(self, 250, True))
self.ui.btn_page_1.clicked.connect(lambda: self.ui.stackedWidget.setCurrentWidget(self.ui.page_1))
self.ui.btn_page_2.clicked.connect(lambda: self.ui.stackedWidget.setCurrentWidget(self.ui.page_2))
self.ui.btn_page_3.clicked.connect(lambda: self.ui.stackedWidget.setCurrentWidget(self.ui.page_3))
self.ui.pushButton.clicked.connect(lambda: UIFunctions.ui_file_dialog(self))
#status changer
self.ui.pushButton_20.clicked.connect(self.status_changer)
#dm spammer fake type
self.ui.pushButton_19.clicked.connect(self.fake_type)
#embed spammer
self.ui.pushButton_17.clicked.connect(self.embed_spam)
#reaction adder
self.ui.pushButton_16.clicked.connect(self.react)
#vc spammer
self.ui.pushButton_13.clicked.connect(self.vc_music)
#vc leave
self.ui.pushButton_8.clicked.connect(self.vc_leave)
#vc join
self.ui.pushButton_7.clicked.connect(self.vc_join)
#text spam
self.ui.pushButton_6.clicked.connect(self.text_spam)
#server leave
self.ui.pushButton_5.clicked.connect(self.server_leave)
#server join
self.ui.pushButton_4.clicked.connect(self.server_join)
self.show()
def _setup(self):
tokens = self.C.get_tokens()
if tokens:
s = Setup(tokens)
return s
else:
return False
def _status_changer(self):
file_path = self.C.get_file_path()
os.system('start /wait cmd /c python util/console/status_changer.py --i "%s"' % (file_path))
def status_changer(self):
s = self._setup()
if not s:
msg = QtWidgets.QMessageBox()
msg.setWindowTitle('Error')
msg.setText('Add tokens')
msg.setIcon(QMessageBox.Critical)
x = msg.exec_()
return None
threading.Thread(target=self._status_changer).start()
def server_join(self):
s = self._setup()
if not s:
msg = QtWidgets.QMessageBox()
msg.setWindowTitle('Error')
msg.setText('Add tokens')
msg.setIcon(QMessageBox.Critical)
x = msg.exec_()
return None
print('Server Join called.')
discord_invite = self.ui.lineEdit_4.text()
threading.Thread(target=s.server_join, args=(discord_invite,)).start()
def server_leave(self):
s = self._setup()
if not s:
msg = QtWidgets.QMessageBox()
msg.setWindowTitle('Error')
msg.setText('Add tokens')
msg.setIcon(QMessageBox.Critical)
x = msg.exec_()
return None
print('Server leave called.')
guild_id = self.ui.lineEdit_5.text()
threading.Thread(target=s.server_leave, args=(guild_id,),).start()
def _text_spam(self):
channel_id = self.ui.lineEdit_6.text()
file_path = self.C.get_file_path()
os.system('start /wait cmd /c python util/console/text_spam.py --i "%s" --m %s' % (file_path, channel_id))
def text_spam(self):
s = self._setup()
if not s:
msg = QtWidgets.QMessageBox()
msg.setWindowTitle('Error')
msg.setText('Add tokens')
msg.setIcon(QMessageBox.Critical)
x = msg.exec_()
return None
threading.Thread(target=self._text_spam).start()
def _vc_join(self):
vcid = self.ui.lineEdit_7.text()
file_path = self.C.get_file_path()
os.system('start /wait cmd /c python util/console/vc_join.py --i "%s" --m %s' % (file_path, vcid))
def vc_join(self):
s = self._setup()
if not s:
msg = QtWidgets.QMessageBox()
msg.setWindowTitle('Error')
msg.setText('Add tokens')
msg.setIcon(QMessageBox.Critical)
x = msg.exec_()
return None
threading.Thread(target=self._vc_join).start()
def _vc_leave(self):
vcid = self.ui.lineEdit_8.text()
file_path = self.C.get_file_path()
os.system('start /wait cmd /c python util/console/vc_leave.py --i "%s" --m %s' % (file_path, vcid))
def vc_leave(self):
s = self._setup()
if not s:
msg = QtWidgets.QMessageBox()
msg.setWindowTitle('Error')
msg.setText('Add tokens')
msg.setIcon(QMessageBox.Critical)
x = msg.exec_()
return None
threading.Thread(target=self._vc_leave).start()
def _vc_music(self):
vcid = self.ui.lineEdit_13.text()
file_path = self.C.get_file_path()
os.system('start /wait cmd /c python util/console/vc_music.py --i "%s" --m %s' % (file_path, vcid))
def vc_music(self):
s = self._setup()
if not s:
msg = QtWidgets.QMessageBox()
msg.setWindowTitle('Error')
msg.setText('Add tokens')
msg.setIcon(QMessageBox.Critical)
x = msg.exec_()
return None
threading.Thread(target=self._vc_music).start()
def _react(self):
channel_id = self.ui.lineEdit_16.text()
file_path = self.C.get_file_path()
os.system('start /wait cmd /c python util/console/react_mes.py --i "%s" --m %s' % (file_path, channel_id))
def react(self):
s = self._setup()
if not s:
msg = QtWidgets.QMessageBox()
msg.setWindowTitle('Error')
msg.setText('Add tokens')
msg.setIcon(QMessageBox.Critical)
x = msg.exec_()
return None
threading.Thread(target=self._react).start()
def _embed_spam(self):
channel_id = self.ui.lineEdit_17.text()
file_path = self.C.get_file_path()
os.system('start /wait cmd /c python util/console/embed_spam.py --i "%s" --m %s' % (file_path, channel_id))
def embed_spam(self):
s = self._setup()
if not s:
msg = QtWidgets.QMessageBox()
msg.setWindowTitle('Error')
msg.setText('Add tokens')
msg.setIcon(QMessageBox.Critical)
x = msg.exec_()
return None
threading.Thread(target=self._embed_spam).start()
def _fake_type(self):
channel_id = self.ui.lineEdit_19.text()
file_path = self.C.get_file_path()
os.system('start /wait cmd /c python util/console/fake_type.py --i "%s" --m %s' % (file_path, channel_id))
def fake_type(self):
s = self._setup()
if not s:
msg = QtWidgets.QMessageBox()
msg.setWindowTitle('Error')
msg.setText('Add tokens')
msg.setIcon(QMessageBox.Critical)
x = msg.exec_()
return None
threading.Thread(target=self._fake_type).start()
if __name__ == "__main__":
app = QApplication(sys.argv)
window = MainWindow()
sys.exit(app.exec_())