22.07.2012, 17:01
Eae tipow o chat esta bugado quando escreve aparece a msg para ele mais para os outros menbros da torcida nao aparece pq sera cуdigo:
Alguem me ajuda ae por favor
pawn Код:
public OnPlayerText(playerid, text[])
{
if(text[0] == '!')
{
if(PlayerInfo[playerid][pTorcida] == 1)
{
new Nome[24], String[128];
GetPlayerName(playerid, Nome, sizeof(Nome));
format(String, sizeof(String), "[Chat Gaviхes da Fiel] %s : %s", Nome, text[1]);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(VarTorcida[i] == Torcida[i])
{
SendClientMessage(i, COLOR_TVP, String);
return 0;
}
}
}
}
return 1;
}