31.01.2013, 00:47
Try this:
pawn Код:
public OnPlayerText(playerid, text[])
{
if(text[0] == '$' && PlayerGang[playerid] > 0)
{
new string[256], nombre[MAX_PLAYER_NAME];
GetPlayerName(playerid, nombre, MAX_PLAYER_NAME);
format(string, sizeof(string), "* [Clan] %s [%i]: %s", nombre, playerid, text[1]);
ForEach(i,MAX_PLAYERS)
{
if(IsPlayerAdminLevel(playerid, 4)) SendClientMessage(i, 0x00FF00FF, string);
else if(PlayerGang[i] == PlayerGang[playerid]) SendClientMessage(i, 0x00FFFFFF, string);
}
return 0;
}
return 1;
}