> For the complete documentation index, see [llms.txt](https://fluxusrbx.gitbook.io/fluxus/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fluxusrbx.gitbook.io/fluxus/libraries/console.md).

# Console

## \<void> rconsoleprint(\<string> msg)

Prints msg into console.&#x20;

```
rconsoleprint("@@YELLOW@@")
rconsoleprint("Hello")
```

| **Color**     | **Code**           |
| ------------- | ------------------ |
| Black         | @@BLACK@@          |
| Blue          | @@BLUE@@           |
| Green         | @@GREEN@@          |
| Cyan          | @@CYAN@@           |
| Red           | @@RED@@            |
| Magenta       | @@MAGENTA@@        |
| Brown         | @@BROWN@@          |
| Light Gray    | @@LIGHT\_GRAY@@    |
| Dark Gray     | @@DARK\_GRAY@@     |
| Light Blue    | @@LIGHT\_BLUE@@    |
| Light Green   | @@LIGHT\_GREEN@@   |
| Light Cyan    | @@LIGHT\_CYAN@@    |
| Light Red     | @@LIGHT\_RED@@     |
| Light Magenta | @@LIGHT\_MAGENTA@@ |
| Yellow        | @@YELLOW@@         |
| White         | @@WHITE@@          |

## \<void> rconsoleinfo(\<string> msg)

Prints msg with info text.

## \<void> rconsolewarn(\<string> msg)

Prints msg with warn text.

## \<void> rconsolerr(\<string> msg)

Prints msg with error text.

## \<void> rconsoleclear(\<void>)

Clears the console.

## \<void> rconsoletitle(\<string> msg)

Sets console title to msg.
