> ## 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

> 将 console text attribute 设置为 info text color 后，通过 stdout 向当前 Windows console 写入零个或多个值。值会使用 Lua string conversion 转换，并用 tab 字符分隔，随后会将 text attribute 设置为 default console text color。如果不存在 console window，该调用会直接返回，不会转换或写入任何内容。

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

  ## 别名

  * `consoleinfo`

  ## 参数

  <ParamField path={"...values"} type={"...any"}>
    可选值。如果存在 console，每个 value 会用 Lua string conversion 转换，并在写入前用 tab 字符连接。
  </ParamField>

  ## 示例

  Write a bright blue message to the current Windows console.

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