> ## 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 に 1 つ以上の値を書き込みます。値は Lua string conversion で変換され、tab 文字で区切られ、出力後に text attribute はリセットされます。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>
