rconsoleclear
Clears all text from the executor console window.
function rconsoleclear(): voidSynopsis
How it works
Clears the console screen buffer by filling the entire buffer with spaces using
FillConsoleOutputCharacterA, then resets the cursor position to (0,0) with SetConsoleCursorPosition. Equivalent to the cls command in cmd.exe.Usage
Clear console
rconsoleclear()Deprecated
Deprecated. The built-in Vindicta console does not require manual clearing.