Orion Solutions Docs
ORION SOLUTIONS LUA API

Console

Console output helpers exposed to Lua scripts.

The console variable provides functions for writing output to the Orion Solutions console.

print

console.print(...)

Prints one or more values to the Orion Solutions console.

Arguments

NameTypeDescription
...anyOne or more values to print.

Example

console.print("Hello from Orion Solutions!")
console.print("Number:", 1337)
console.print("Enabled:", true)
Alias

The global print(...) function uses the same output implementation.