-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrizky.pyy
64 lines (33 loc) · 1.13 KB
/
rizky.pyy
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
import os
import sys
import time
import random
wd = "\033[90;1m" # dark
GL = "\033[96;1m" # Blue aqua
BB = "\033[34;1m" # Blue light
YY = "\033[33;1m" # Yellow light
GG = "\033[32;1m" # Green light
WW = "\033[0;1m" # White light
RR = "\033[31;1m" # Red light
CC = "\033[36;1m" # Cyan light
B = "\033[34m" # Blue
Y = "\033[33;1m" # Yellow
G = "\033[32m" # Green
W = "\033[0;1m" # White
R = "\033[31m" # Red
C = "\033[36;1m" # Cyan
def runntxt(s):
for noobs in s + '\n':
sys.stdout.write(noobs)
sys.stdout.flush()
time.sleep(10. / 2100)
def banner():
runntxt(GL+" __ _ _ _ ")
runntxt(GL+" /__(_)___| | _(_) _ _ __ _ _ __ ___ ")
runntxt(WW+" / \// / __| |/ / | | | | |/ _` | '_ \/ __| ")
runntxt(WW+" / _ \ \__ \ <| | | |_| | (_| | | | \__ \ ")
runntxt(GL+" \/ \_/_|___/_|\_\_| \__, |\__,_|_| |_|___/ ")
runntxt(WW+" |___/ ")
banner()
print(WW+'[1]','\033[36;1m.DARKFB ')
main()