View Single Post
Rabisu
Junior Member
Join Date: May 2019
Old 02-15-2020 , 06:55   Re: CSGO ! to issue a say message with the command help?
Reply With Quote #6

Quote:
Originally Posted by zerefator View Post
Code:
#include <sourcemod>
#include <morecolors>

#pragma semicolon 1
#pragma newdecls required

public void OnPluginStart()
{
	RegConsoleCmd("sm_ip", show_ip);
}

public Action show_ip(int client, int args)
{
	CPrintToChat(client, "\x06Server ip:\x07 185.xxx.xxx.xxx");

}
Just change the text at CPrintToChat inside the "" Have fun !
Thank you very much for your help
Rabisu is offline