-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commands
Warning
THIS PAGE IS STILL WORK IN PROGRESS AND IS NOT FINISHED.
Warning
THIS PAGE CONTAINS SPOILERS! BUT ARE NEAR THE BOTTOM OF THE PAGE, YOU WILL BE WARNED BEFORE YOU VIEW SPOILERS
Hello again fellow VAIIYA trustees and THE FINALS contestants! Welcome to the COMMANDS part of the VAIIYA Terminal wiki! here you will be shown all the active commands, the basic code for them, and come hidden things that you cant get normally!
Note
I will try to put down the best examples as I can, as these wiki pages are for your fellow VAIIYA helpers! <3
| command | description | is enabled? ❌/✅/ |
If |
|---|---|---|---|
credits |
Shows the credits to VAIIYA Terminal! <3 | ✅ | None |
version |
Shows the version of VAIIYA Terminal, and a few EEs along with it! | ✅ | None |
discord |
Gives the user a link to The VAIIYA Hub! | ✅ | None |
CNS |
Brings the user to a screen the isn't supposed to be there ( ̄y▽, ̄)╭ | ✅ | None |
walker |
One of the THE FINALS's CMs logins! I don't have the password! (⊙_⊙)? | The user needs the password to have access to the stuff behind... (´・ω・`)? | |
frostbyte |
Another THE FINALS's CM login, but frost.... go to a doc... stop doin UwU | Same as the walker command |
|
DEBUG |
A simple debugging commandline that skips all the other steps. | ❌ | restricted for devs only. |
commands |
The same ol' commands list! for everything you want to know! | ✅ | None |
exit |
Well... i think you know what this does ( ̄y▽, ̄)╭ | ✅ | None |
Important
the commands in all of these examples are all inside of the open_terminal() block, or the DEBUG_COMMANDLINE() block.
the general prompt nest from prompt toolkit is here:
text = prompt('awaiting command(s)>>> ')
the credits command in VAIIYA Terminal is a basic credits screen! I believe that all contributors, no matter the size, needs to have their work seen and apricated.
the code for the credits command as follows:
elif text == 'credits':
print("""|""")
print("""|""")
print("The credits of VAIIYA terminal!")
print("""|""")
print("Owner: T342, T342guy or Nathan johnson.")
print("licensed under MIT ©2024 Nathan Johnson. view LICENSE for more info.")
print("""|""")
print("contributors: ")
print("Smashel from discord.")
print("Riskit from discord.")
print("""|""")
print("""|""")
print("and thats all for now! have fun, stay safe and secure! VAIIYA trustees and THE FINALS contestants!")
print("""|""")
The discord command is for an easy invite to The VAIIYA Hub!
it contains a link that will never expire!
the code for the discord command as follows:
elif text == 'discord':
print("""|""")
print(" the invite link to The VAIIYA Hub and VAIIYA Terminal news!: https://discord.gg/Qt5Je9sFE5 ")
print("""|""")
Note
The discord link to The VAIIYA Hub is also now in the README!
Caution
This wiki contains a large amount of spoilers for VAIIYA Terminal! YOU WILL BE WARNED BEFORE SPOILERS SHOW UP!
Warning
This wiki is currently WORK IN PROGRESS! Thank you for understanding.