đŽConsole Functions
These are all of the functions revolving the console that Wave supports.
Console Print:
Prints
text
into the console.
Console Info:
Prints
text
into the console, with[INFO]
written before it.
Console Error:
Prints
text
into the console, with[ERROR]
written before it.
Console Clear:
Clears all text from the console.
Console Name:
Sets the console's title to
title
.
Console Input:
Yields the current thread until the user inputs text and presses
Enter
. Returns the input they put in.
Console Close:
Closes the console.
Print Console:
Prints
message
into the internal and integrated console with RGB value.
Console Colors:
Name | Type |
---|---|
Black | @@BLACK@@ |
Blue | @@BLUE@@ |
Green | @@GREEN@@ |
Cyan | @@CYAN@@ |
Red | @@RED@@ |
Magenta | @@MAGENTA@@ |
Light Gray | @@LIGHT_GRAY@@ |
Dark Gray | @@DARK_GRAY@@ |
Light Blue | @@LIGHT_BLUE@@ |
Light Green | @@LIGHT_GREEN@@ |
Light Cyan | @@LIGHT_CYAN@@ |
Light Red | @@LIGHT_RED@@ |
Light Magenta | @@LIGHT_MAGENTA@@ |
Yellow | @@YELLOW@@ |
White | @@WHITE@@ |
Example:
You must use \n
at the end of rconsoleprint
to make a new line.
rconsoleinfo
, rconsolewarn
, and rconsoleerr
do this automatically.
Last updated