-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCodeBreak.py
More file actions
59 lines (54 loc) · 1.37 KB
/
CodeBreak.py
File metadata and controls
59 lines (54 loc) · 1.37 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
# © 2024 CIPIX
# All rights reserved.
# Tous droits réservés.
try:
from config.config import *
from config.menu import *
from menu.discordAnim import discordAnim
import os
except Exception as e :
errorModule(e)
terminalTitle('MainMenu')
checkUpdate()
while True:
try:
CLEAR()
print(TITLE, LINK)
MENU(MainOption)
select = input(Prompt('Main Menu')).strip().lstrip('0')
if select == '1':
startProgram("info.py")
elif select == '2':
startMenu("setting.py")
elif select == '3':
discordAnim('nukeBot.py')
elif select == '4':
startProgram('infoServerDisc.py')
elif select == '5':
startProgram('ipInfo.py')
elif select == '6':
Soon()
elif select == '7':
Soon()
elif select == '8':
Soon()
elif select == '9':
Soon()
elif select == '10':
Soon()
elif select == '11':
Soon()
elif select == '12':
Soon()
elif select == '13':
Soon()
elif select == '14':
Soon()
elif select == '15':
Soon()
else:
print(f'\n{TIME_RED()} {ERROR} The choice is not recognized as a valid option !{reset}')
Pause()
except Exception as error:
print(f'{ERROR} An error has occurred.\n{yellow}{error}{reset}')
os.system("pause")