> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# rconsoleinfo

> Grava zero ou mais valores na Windows console atual por stdout depois de definir o console text attribute como info text color. Os valores são convertidos com Lua string conversion, separados por caracteres tab, e o text attribute é redefinido depois. Se nenhuma console window existir, a chamada retorna sem converter nem gravar nada.

<div className="real-function-page">
  ```lua theme={null}
  rconsoleinfo(...values?: ...any)
  ```

  ## Aliases

  * `consoleinfo`

  ## Argumentos

  <ParamField path={"...values"} type={"...any"}>
    Valores opcionais. Se uma console existe, cada value e convertido com Lua string conversion e unido com caracteres tab antes de gravar.
  </ParamField>

  ## Exemplo

  Write a bright blue message to the current Windows console.

  ```lua theme={null}
  rconsolecreate()
  rconsoleinfo("Connected", "
  ")
  ```
</div>
