Drixevel-Archive / Chat-Processor

A Sourcemod plugin which allows other plugins to add and manage chat related features.
GNU General Public License v3.0
58 stars 28 forks source link

CP_OnChatMessage not emitting on say_team #52

Closed T1MOXA closed 5 years ago

T1MOXA commented 5 years ago

Code:

#include <chat-processor>

public Action CP_OnChatMessage(int &iClient, ArrayList hRecipients, char[] sFlags, char[] sName, char[] sMessage, bool& bProcesscolors, bool& bRemovecolors) {
    PrintToServer("CP_OnChatMessage: %s || %s", sFlags, sMessage);
    return Plugin_Continue;
}

Plugin version - 2.2.0 SourceMod Version: 1.10.0.6416

Drixevel-Archive commented 5 years ago

I'm assuming you solved the issue by closing this issue but depending on the game, you should able to find and/or add different types of messages with the configuration file. (just in case that was your issue)

Cheers.

T1MOXA commented 5 years ago

Yes, I solved the problem, or rather it solved itself. Thanks for the reply.