AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Snippets and Tutorials (https://forums.alliedmods.net/forumdisplay.php?f=112)
-   -   [INC] Console colors (https://forums.alliedmods.net/showthread.php?t=334140)

sapphonie 08-31-2021 15:21

[INC] Console colors
 
Uses ansi escape codes to print colored chat to server console, probably only works on linux.

Thanks nosoop for some help.

https://github.com/sapphonie/sourcemod-consolecolors

Example:


Code:

#include <sourcemod>
#include <concolors>

public void OnPluginStart()
{
    PrintToServer(ansi_cyan ... "Hello " ... ansi_bright_magenta ... "there" ... ansi_reset ... "!");
}

https://i.imgur.com/cb3wx6R.png

Bacardi 09-06-2021 22:41

Re: [INC] Console colors
 
Nice

8guawong 09-08-2021 04:18

Re: [INC] Console colors
 
nice but linux only :cry:


All times are GMT -4. The time now is 13:36.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.