rconsoleprint
Prints text to the executor console window.
function rconsoleprint(text: string): voidSynopsis
How it works
Writes text to the allocated console window using
WriteConsoleA:
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
WriteConsoleA(hOut, text, strlen(text), &written, NULL);
Does not append a newline automatically — include
in the string if needed. Supports basic text output only; no ANSI color escape sequences.Usage
Basic output
rconsolecreate()
rconsoleprint("Hello, World!\n")
rconsoleprint("Line 2\n")Parameters
text string The text to write. You must include \n for newlines.
Deprecated
Use Vindicta.print(0, "text") instead. rconsoleprint does not support severity levels.