@@ -19,13 +19,48 @@ def window_resize_startup():
19
19
CMD = "mode 1000,1000"
20
20
os .system (CMD )
21
21
22
+ #this idea was requested by Smashel on issue #30.
23
+ #defualt value is 1-5650
24
+ #if it somehow gets that number the ascii will "corrupt" and use an alt
25
+ def startup_screen_ascii_roll ():
26
+ corrupted_ascii_roll = random .randint (1 ,5650 )
27
+ #normal value for this var is 3479
28
+ if corrupted_ascii_roll == 3479 :
29
+ corrupted_ascii_startup_screen ()
30
+
31
+ else :
32
+ norm_startup_screen_ASCII ()
33
+
34
+ #if the number is rolled correctly, then this ASCII will play instead of the norm.
35
+ def corrupted_ascii_startup_screen ():
36
+ print (r"""
37
+
38
+ ERR! NORM ASCII STARTUP FAILURE, USING ALT ASCII. APPLICATION IS STILL USEABLE.
39
+ _____ _____
40
+ \____\ \____\
41
+ _____ _____ ______ _____ _____ _____ _____ ______
42
+ \ \ / / / \ \ \ \ \ \ \ / / / \
43
+ \ \ / / / \ \ \ \ \ \ \ / / / \
44
+ \ \/ / / /\ \ \ \ \ \ \ \/ / / /\ \
45
+ \ / / / \ \ \ \ \ \ \ / / / \ \
46
+ \______/ /____/ \____\ \____\ \____\ \ / /____/ \____\
47
+ / /
48
+ / /
49
+ /_____/
50
+ VAIIYA technologies LLC
51
+ Empowering security, one byte at a time.
52
+
53
+
54
+ please wait while the program does mandatory checks.
55
+
56
+ """ )
22
57
23
58
24
59
25
60
#NOTE: THERE MAY BE MINOR LINE WRAP IN THE ASCII
26
61
27
62
# Loading screen with VAIIYA SECURITY ASCII Art
28
- def startup_screen_ASCII ():
63
+ def norm_startup_screen_ASCII ():
29
64
print (r"""
30
65
31
66
@@ -390,7 +425,7 @@ def frostbytes_EE_entered():
390
425
# Main system loop
391
426
def game_loop ():
392
427
#window_resize_startup()
393
- startup_screen_ASCII ()
428
+ startup_screen_ascii_roll ()
394
429
loading_bars_intro_1 ()
395
430
loading_bars_intro_2 ()
396
431
loading_bars_intro_3 ()
0 commit comments