Is there a way to filter messages by word??
Something like this:
function OnPlayerSpeak(ID: Byte; Text: string): boolean;
begin
if ContainsString(Text, 'word') then CANCELPLAYERMESSAGE
//So.. if the message has the 'word' then it doesnt show up
end;
thanks...