Fully tested, ready for release

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401185
This commit is contained in:
Michael McKoy 2007-07-26 23:52:19 +00:00
parent 6b3a0c6a95
commit efe5f0d2fe

View File

@ -33,7 +33,7 @@ public Plugin:myinfo =
url = "http://www.sourcemod.net/"
};
decl String:g_ColorNames[13][10] = {"White", "Red", "Green", "Blue", "Yellow", "Purple", "Cyan", "Orange", "Pink", "Olive", "Lime", "Violet", "Lightblue"};
new String:g_ColorNames[13][10] = {"White", "Red", "Green", "Blue", "Yellow", "Purple", "Cyan", "Orange", "Pink", "Olive", "Lime", "Violet", "Lightblue"};
new g_Colors[13][3] = {{255,255,255},{255,0,0},{0,255,0},{0,0,255},{255,255,0},{255,0,255},{0,255,255},{255,128,0},{255,0,128},{128,255,0},{0,255,128},{128,0,255},{0,128,255}};
new Handle:g_Cvar_Chatmode = INVALID_HANDLE;
@ -133,7 +133,7 @@ public Action:Command_SayChat(client, args)
{
decl String:arg[64];
new len = BreakString(message, arg, sizeof(target));
new len = BreakString(message, arg, sizeof(arg));
new target = FindTarget(client, arg, true, false);
if (target == -1)