/* plugin_clanchat.sma
// DSLR - Kosh Vorlon
// Kosh_Vorlon@Mindspring.com
// http://www.dslreports.com/useremail/u/168446
// Updated: 07/31/2001
// This plugin will allow clan members to talk to each other in game without
// public members of the game seeing it. I have set the access level to the same
// level as admin_gag and admin_ungag, change it if you please. Only people in your
// user.ini file that have access to admin_gag will see or be able to use this
// feature. I created this program to help us watch for cheaters, not to be used 
// as a cheat. From the console admin_clanchat <msg>
//
// ***** NOTICE *****
// If you want to log not only what is being said, but who is saying it. In
// case you find a clan member is using it for cheating purposes, you can do
// the following.
//
// Add this to your declaration area:
// new Command[MAX_COMMAND_LENGTH];
// convert_string(HLCommand,Command,MAX_COMMAND_LENGTH);
//
// Then Change
// log(Text);
// to
// log_command(User,Command,Data);
//
// Then you can go into the cstrike/log area and
//
// cat * | grep "ADMIN Command" > admin.log
// cat admin.log | grep "admin_clanchat" > clanchat.log
// cat clanchat.log
//
// You should get messages that look like this:
//
// L 07/21/2001 - 14:02:56: [ADMIN] ADMIN Command: [ClanMsg]JoePlayer used command admin_clanchat Yeah, this is neat
*/