-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathenter.py
76 lines (65 loc) · 2.88 KB
/
enter.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
import enter
import sys
from time import sleep
import random
class colors:
OKBLUE = '\033[94m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
CBLACK = '\33[30m'
CRED = '\33[31m'
CGREEN = '\33[32m'
CYELLOW = '\33[33m'
CBLUE = '\33[34m'
CVIOLET = '\33[35m'
CBEIGE = '\33[36m'
CWHITE = '\33[37m'
color_random = [colors.CBLUE, colors.CVIOLET, colors.CWHITE, colors.OKBLUE, colors.CGREEN, colors.WARNING,
colors.CRED, colors.CBEIGE]
random.shuffle(color_random)
def entryy():
x = color_random[0] + """
╭━━━┳╮╱╱╭┳━━━┳╮╱╭┳━━━┳━━━╮╭━━━━┳━━━┳━━━┳╮
┃╭━╮┃╰╮╭╯┃╭━╮┃┃╱┃┃╭━━┫╭━╮┃┃╭╮╭╮┃╭━╮┃╭━╮┃┃
┃┃╱╰┻╮╰╯╭┫╰━╯┃╰━╯┃╰━━┫╰━╯┃╰╯┃┃╰┫┃╱┃┃┃╱┃┃┃
┃┃╱╭╮╰╮╭╯┃╭━━┫╭━╮┃╭━━┫╭╮╭┻━╮┃┃╱┃┃╱┃┃┃╱┃┃┃╱╭╮
┃╰━╯┃╱┃┃╱┃┃╱╱┃┃╱┃┃╰━━┫┃┃╰┳━╯┃┃╱┃╰━╯┃╰━╯┃╰━╯┃
╰━━━╯╱╰╯╱╰╯╱╱╰╯╱╰┻━━━┻╯╰━╯╱╱╰╯╱╰━━━┻━━━┻━━━╯
\n"""
for c in x:
print(c, end='')
sys.stdout.flush()
sleep(0.0045)
y = "\t╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱\n\n"
for c in y:
print(colors.CBLUE + c, end='')
sys.stdout.flush()
sleep(0.0065)
y = "\t╱╱ CYPHER TOOLS ╱╱\n\n"
for c in y:
print(colors.CWHITE + c, end='')
sys.stdout.flush()
sleep(0.0065)
z = "\t╱╱ CODED BY TMRSWRR ╱╱\n\n"
for c in z:
print(colors.CWHITE + c, end='')
sys.stdout.flush()
sleep(0.0065)
y = "\t╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱\n\n"
for c in y:
print(colors.CBLUE + c, end='')
sys.stdout.flush()
sleep(0.0065)
y = "\t╱╱ WELCOME TO MY WORLD ╱╱\n\n"
for c in y:
print(colors.CWHITE + c, end='')
sys.stdout.flush()
sleep(0.0065)
y = "\t╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱\n\n"
for c in y:
print(colors.CBLUE + c, end='')
sys.stdout.flush()
sleep(0.0065)
entryy()