View Single Post
Wilczek
AlliedModders Donor
Join Date: Oct 2012
Location: Poland
Old 04-02-2017 , 15:15   Re: Changing admin chat color
Reply With Quote #4

Open basechat.sp, somewhere around line 324:

PHP Code:
SendChatToAll(client, const String:message[])
{
    new 
String:nameBuf[MAX_NAME_LENGTH];
    
    for (new 
1<= MaxClientsi++)
    {
        if (!
IsClientInGame(i) || IsFakeClient(i))
        {
            continue;
        }
        
FormatActivitySource(clientinameBufsizeof(nameBuf));
        
        
PrintToChat(i"\x01 \x07(Admin) \x06%s: %s"nameBufmessage);
    }

__________________
Wilczek is offline