You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 13, 2025. It is now read-only.
Welcome to the Terminal! all checks are complete. you can continue on your work.
187
-
""")
118
+
withopen("assets/text_lines/ASCII/startup_ASCII_2login.txt") asf: # The with keyword automatically closes the file when you are done
119
+
print(f.read())
120
+
f.close()
121
+
188
122
defmessage_of_the_day(): #or per boot
189
123
print("|")
190
124
print("The message of the day is: ")
191
125
print("|")
192
126
#picks a random number, each value (depending on how many messages) will have a number.
193
-
MOTD=3#random.randint(1,6)
127
+
MOTD=random.randint(1,6)
194
128
195
129
ifMOTD==1:
196
-
print("john? what the hell are you doing over there? GET BACK TO WO- ##TRANSCRIPT ENDED CODE 87##")
130
+
withopen("assets/text_lines/MOTD/MOTD_1.txt") asf: # The with keyword automatically closes the file when you are done
131
+
print(f.read())
132
+
f.close()
133
+
197
134
elifMOTD==2:
198
-
print("Remember: CNS is our greatest enemy! WE CANNOT LET THEM INTO THE SYSTE- ## LOG SYSTEM FAILURE CODE #9)*^9 ##")
135
+
withopen("assets/text_lines/MOTD/MOTD_2.txt") asf: # The with keyword automatically closes the file when you are done
136
+
print(f.read())
137
+
f.close()
138
+
199
139
elifMOTD==3:
200
-
print_formatted_text(HTML('<b>SYSTEM AUTOLOG OVERRIDE: SERVERS #108,#196,#102,#156,#342 HAVE BEEN ISOLATED. DO NOT CHANGE THIS ORDER.</b>'))
140
+
withopen("assets/text_lines/MOTD/MOTD_3.txt") asf: # The with keyword automatically closes the file when you are done
141
+
print(f.read())
142
+
f.close()
143
+
201
144
elifMOTD==4:
202
-
print("VRRALSA systems detecting ##isU3s## within servers #342 and #902. please advise.")
145
+
withopen("assets/text_lines/MOTD/MOTD_4.txt") asf: # The with keyword automatically closes the file when you are done
146
+
print(f.read())
147
+
f.close()
148
+
203
149
elifMOTD==5:
204
-
print("VAIIYA Engine update found! Please install immediately for best security. Thankyou for understanding.")
150
+
withopen("assets/text_lines/MOTD/MOTD_5.txt") asf: # The with keyword automatically closes the file when you are done
151
+
print(f.read())
152
+
f.close()
153
+
205
154
#remove this MOTD on the next update PAST christmas, maybe new years or when the snow melts.
206
155
elifMOTD==6:
207
-
print("merry christmas VAIIYA employees! except for herbert...")
156
+
withopen("assets/text_lines/MOTD/MOTD_xmas.txt") asf: # The with keyword automatically closes the file when you are done
157
+
print(f.read())
158
+
f.close()
159
+
208
160
elifMOTD==7:
209
-
print("Well well everyone! We got another highlight within THE FINALS! CNS cannot stop us now!. . . eh, john what is that over there? ## END OF FILE ##")
161
+
withopen("assets/text_lines/MOTD/MOTD_6.txt") asf: # The with keyword automatically closes the file when you are done
withopen("assets/text_lines/VRRALSA_lines/VRRALSA_commands/VRRALSA_logslist.txt") asf: # The with keyword automatically closes the file when you are done
512
+
print(f.read())
513
+
f.close()
583
514
584
515
elifVRRALSA_TEXT=='records':
585
516
print("|")
@@ -612,13 +543,9 @@ def VRRALSA_COMMAND_PANEL():
612
543
time.sleep(1)
613
544
print("Record found!")
614
545
print("|")
615
-
print("citizen record; frostbyte")
616
-
print("username=frost.dime")
617
-
print("user_traits= funny, quote'says UwU OwO and other. please advise' ")
withopen("assets/text_lines/VRRALSA_lines/VRRALSA_records/VRRALSA_record_frostbyte.txt") asf: # The with keyword automatically closes the file when you are done
0 commit comments