Create Colored say for MatchboxTF

This commit is contained in:
2025-08-19 01:50:52 -04:00
parent 6f9fd54686
commit 06fa175eb9

View File

@@ -0,0 +1,20 @@
#include <sourcemod>
#include <morecolors>
public Plugin myinfo = {
name = "Colored Chat Comms",
author = "Fartsy",
description = "Allows the server to post colored chat",
version = "1.0.0",
url = "https://panel.hydrogenhosting.org"
};
public void OnPluginStart(){
RegServerCmd("sm_clsay", Command_ClSay, "Prints a colored chat to the chat box");
}
public Action Command_ClSay(int args){
char text[512];
GetCmdArgString(text, sizeof(text));
CPrintToChatAll(text);
return Plugin_Handled;
}