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

> يكتب صفرا أو أكثر من القيم إلى Windows console الحالية عبر stdout بعد ضبط console text attribute على info text color. يتم تحويل القيم باستخدام 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>
