Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit 5de7b3c

Browse files
committed
added notes,fixes,credits,discord link,and more commands
1 parent 5efde8f commit 5de7b3c

File tree

1 file changed

+52
-20
lines changed

1 file changed

+52
-20
lines changed

VAIIYA terminal.py

Lines changed: 52 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -143,43 +143,72 @@ def timefetch():
143143
print('and the date is: ',curdate)
144144
print("have a wonerful day at VAIIYA Technologies LLC!")
145145
print("""|""")
146-
# Start the TERMINAL and its commands
146+
147+
#this is here so that this doesnt dupe every time the commandline reprints. it now only happens once.
147148
def terminal_start_message():
148149
print(" for a list of commands, please type 'commands' ")
149150
print("""|""")
150151

152+
#TERMINAL BEHAVIOR NOTES! make sure to use `elif` instead of `if`. this will prevent the error string from printing if we retun from the EEs or logins.
153+
#
154+
#
155+
#notes here^^^
156+
151157

158+
#Starts the TERMINAL and its commands
152159
def open_terminal():
153160

154161
while True:
155162

156163
text = prompt('awaiting command(s)>>> ')
157164
#put all the usercommands under here please!
158-
165+
#this is the FIRST `if`, replace and all new should be `elif`.
166+
if text == 't342':
167+
print('heyy thanks for sayin somthin!')
168+
continue
169+
#this is BELOW the first command. put `elif` on all new commands.
159170

171+
#the credits for the game!
172+
elif text == 'credits':
173+
print("""|""")
174+
print("""|""")
175+
print("The credits of VAIIYA terminal!")
176+
print("""|""")
177+
print("Owner: T342, T342guy or Nathan jonhson.")
178+
print("""|""")
179+
print("contributors: ")
180+
print("Smashel from discord.")
181+
print("Riskit from discord.")
182+
print("""|""")
183+
print("""|""")
184+
print("and thats all for now! have fun, stay safe and secure! VAIIYA trustees and THE FINALS contestants!")
185+
print("""|""")
186+
160187

161-
162-
163-
164-
165-
if text == 'CNS':
188+
#the link given will NEVER EXPIRE
189+
elif text == 'discord':
190+
print("""|""")
191+
print(" the invite link to The VAIIYA Hub/VAIIYA terminal dev: https://discord.gg/Qt5Je9sFE5 ")
192+
print("""|""")
193+
194+
195+
196+
elif text == 'CNS':
166197
print("CNS_VAIIYA_BYPASS_V4.567.EXE EXITCUTING....")
167198
time.sleep(2)
168199
CNS_EE_HAKED()
169-
170-
if text == 't342':
171-
print('heyy thanks for sayin somthin!')
172-
continue
200+
#this just prints the one line and starts the CMDline again.
173201

174-
175-
if text == 'walker':
202+
203+
#walkers login, requires password. this will print the following, stop for 3 secs and then runs the `walker_login()`.
204+
elif text == 'walker':
176205
print("welcome walker to your login! please wait while your coffee brews.......")
177206
time.sleep(3)
178207
walker_login()
179208

180-
#BUG: the error "no command" will reply when exiting the FROST EE!
209+
#the `no-command bug has been resolved.`
181210
# FROST EE WIP!!
182-
if text == 'frostbyte':
211+
elif text == 'frostbyte':
183212
print("welcome frostbyte to your login! please wait while i startup the supercomputer and freeze these bytes!....")
184213
time.sleep(3)
185214
#enters the frostbyte EE
@@ -188,19 +217,22 @@ def open_terminal():
188217

189218
#below are all the non-user commands, DO NOT REMOVE!
190219
#the COMMANDS directory, DO NOT REMOVE!
191-
if text == 'commands':
220+
elif text == 'commands':
192221
print("""|""")
193222
print("""|""")
194223
print("Avalible commands: (all may not be listed.)")
195224
print("""|""")
196-
print("command: walker | The login for CM|walker")
197-
print("command: frostbyte | The login for CM|frostbyte")
225+
print("command; walker | The login for CM|walker")
226+
print("command; frostbyte | The login for CM|frostbyte")
198227
print("placeholder here | explanation here")
199228
print("placeholder here | explanation here")
200-
print("""C0MM#ND: CNS | {ERROR: UNKNOWN PROGRAM ENTITY}""")
229+
print("""C0MM#N0D;;.."' CNS | {ERROR: UNKNOWN PROGRAM ENTITY}""")
230+
print("""|""")
231+
print("""|""")
232+
print("""command; credits | the credits to the game! (^///^) """)
233+
print("command; discord | get a invite link to The VAIIYA hub!, a hang-about and VAIIYA-terminal server!")
201234
print("""|""")
202235
print("""|""")
203-
204236

205237
#the EXIT command, DO NOT REMOVE!!
206238
elif text == 'exit':

0 commit comments

Comments
 (0)