30.01.2013, 21:05
hi, create a clan chat for my server, and everything works but the chat does not work normally, bone is not listed, help.
Code:
Code:
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[i]) SendClientMessage(i,0x00FFFFFF,string);
}
return 0;
}
return 0;
}