-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
72 lines (60 loc) · 2.14 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
import os
import requests
import time
import discord
import json
from colorama import Fore , Style
os.system("cls")
os.system("title GodScript - T1zzo")
os.system("color f")
def painel():
print(f"""{Fore.LIGHTRED_EX}
.xUHWH!! !!?M88WHX:.
.X*#M@$!! !X!M$$$$$$WWx:.
:!!!!!!?H! :!$!$$$$$$$$$$8X:
!!~ ~:~!! :~!$!#$$$$$$$$$$8X:
:!~::!H!< ~.U$X!?R$$$$$$$$MM!
~!~!!!!~~ .:XW$$$U!!?$$$$$$RMM!
!:~~~ .:!M"T#$$$$WX??#MRRMMM!
~?WuxiW*` `"#$$$$8!!!!??!!!
:X- M$$$$ `"T#$T~!8$WUXU~ Made by godscript
:%` ~#$$$m: ~!~ ?$$$$$$ Version : 1.5
:!`.- ~T$$$$8xx. .xWW- ~""##*"
..... -~~:<` ! ~?T#$$@@W@*?$$ /`
W$@@M!!! .!~~ !! .:XUW$W!~ `"~: :
#"~~`.:x%`!! !H: !WM$$$$Ti.: .!WUn+!`
:::~:!!`:X~ .: ?H.!u "$$$B$$$!W:U!T$$M~
.~~ :X@!.-~ ?@WTWo("*$$$W$TH$! `
Wi.~!X$?!-~ : ?$$$B$Wu("**$RM!
$R@i.~~ ! : ~$$$$$B$$en:``
?MXT@Wx.~ : ~"##*$$$$M~
""")
painel()
lang = input("Escolha um Idioma [en/pt]: ")
if lang not in ["en", "pt"]:
print("Idioma inválido, tente novamente.")
exit()
with open("language.txt", "w") as f:
f.write(lang)
with open(f"lang/{lang}.json", "r", encoding="utf-8") as f:
messages = json.load(f)
os.system("cls")
painel()
opt = input(f"""
{Fore.LIGHTYELLOW_EX}[{Fore.LIGHTMAGENTA_EX}1{Fore.LIGHTYELLOW_EX}] {messages['menu_options']['1']}
{Fore.LIGHTYELLOW_EX}[{Fore.LIGHTMAGENTA_EX}2{Fore.LIGHTYELLOW_EX}] {messages['menu_options']['2']}
{Fore.LIGHTYELLOW_EX}[{Fore.LIGHTMAGENTA_EX}3{Fore.LIGHTYELLOW_EX}] {messages['menu_options']['3']}
{Fore.LIGHTYELLOW_EX}[{Fore.LIGHTMAGENTA_EX}4{Fore.LIGHTYELLOW_EX}] {messages['menu_options']['4']}
""")
if opt == "1":
os.system("cls")
os.system("python tools/webhook.py")
if opt== "2":
os.system("cls")
os.system("python tools/spam.py")
if opt== "3":
os.system("cls")
os.system("python tools/massdm.py")
if opt== "4":
os.system("cls")
os.system("python tools/password.py")