VINDICTA
Console · Function Deprecated
Bunni.fun
ChocoSploit
Cryptic
Potassium
Seliware
SirHurt
Solara
Velocity
Volcano
Volt
Wave
Xeno

rconsoleprint

Prints text to the executor console window.

Deprecated
This was mainly used in KRNL and Synapse afaik, but since those have been long gone, most executors dont support these functions, nor are there any current scripts that have used them
function rconsoleprint(text: string): void

Synopsis

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.