So, I tried to set chat's color for admins to gray, after I compile the script, I get this weird thing in the compile log:
I only have 1 warning which is not a problem. This is the string I used:
Anyone who knowns what's that log?
Code:
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
Header size: 34752 bytes
Code size: 5709568 bytes
Data size: 25073708 bytes
Stack/heap size: 16384 bytes; estimated max. usage: unknown, due to recursion
Total requirements:30834412 bytes
1 Warning.
Code:
public OnPlayerText(playerid, text[])
{
new string[200];
if(!IsAdmin (playerid,1))
{
format(string, sizeof(string), "{9C9C9C}» {%06x}%s {9C9C9C}[%d]: {BABABA} %s", (GetPlayerColor(playerid) >>> 8), pName[playerid], playerid, text);
SendClientMessageToAll((GetPlayerColor(playerid)), string);
}
...