11.03.2016, 23:58
The string is too big , OnplayerText should use "SendPlayerMessageToAll" Not "SendClientMessageToAll"
PHP Code:
public OnPlayerText(playerid, text[])
{
new chat[200], name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(chat, sizeof(chat), "{6B828A}(({FFFFFF} %s(%d): {009900}%s{FFFFFF} {6B828A}))", name, playerid, text);
SendPlayerMessageToAll(0xFFFFFFFF, chat);
return 0;
}