execute_client_cmd
console.execute_client_cmd(command: string)
Executes a ConCommand.
console.print(message: string)
Outputs text to the console.
console.print_color(message: string, message_color: color)
Outputs text to the console with a specific color.
console.get_int(name: string): number
Returns the ConVar int value.
console.get_float(name: string): number
Returns the ConVar float value.
console.get_bool(name: string): boolean
Returns the ConVar boolean value.
console.get_string(name: string): string
Returns the ConVar string value.
console.set_int(name: string, var: number)
Sets the ConVar int value.
console.set_float(name: string, var: number)
Sets the ConVar float value.
console.set_bool(name: string, var: boolean)
Sets the ConVar boolean value.
console.set_string(name: string, var: string)
Sets the ConVar string value.