Console
Creating and writing to a separate output console window.
Available Functions
| Function | Description |
|---|---|
| rconsolecreate | Creates a console window. Text previously output to the console will not be cleared. Only 1 console can be created. |
| rconsoledestroy | Destroys the console window. Text output to the console will be cleared. |
| rconsoleclear | Clears all text in the console. |
| rconsolesettitle | Sets the title of the console window. |
| rconsoleprint | Prints to the console. If the console hasn't been already created, rconsoleprint will create one. |
| rconsoleinfo | Prints a dark blue message to the console. If the console hasn't been already created, rconsoleinfo will create one. |
| rconsolewarn | Prints a yellow message to the console. If the console hasn't been already created, rconsolewarn will create one. |
| rconsoleerror | Prints a red message to the console. If the console hasn't been already created, rconsoleerror will create one. |
| rconsoleinput | Receives input directly from the console. Any thread that runs this function will be suspended until input is received. |