LogoLogo
  • Main
  • Environment Functions
  • Script Functions
  • Table Functions
  • Input
  • Hooking
  • Misc
  • FileSystem
  • Libraries
    • Console
    • Fluxus
    • Drawing
    • Debug
    • Crypt
    • Bit
Powered by GitBook
On this page
  • <void> rconsoleprint(<string> msg)
  • <void> rconsoleinfo(<string> msg)
  • <void> rconsolewarn(<string> msg)
  • <void> rconsolerr(<string> msg)
  • <void> rconsoleclear(<void>)
  • <void> rconsoletitle(<string> msg)

Was this helpful?

  1. Libraries

Console

<void> rconsoleprint(<string> msg)

Prints msg into console.

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.

PreviousFileSystemNextFluxus

Last updated 3 years ago

Was this helpful?