18.05.2010, 18:43
Quote:
|
Originally Posted by Steven82
We can understand do exactly what he said
|
pawn Код:
public OnPlayerText(playerid, text[])
{
new str[128];
strcat(str, text, , 128);
for (new i = 0, j = strlen(text); i < j; i++) str[i]++;
for (new i = 0, j = GetMaxPlayers(), i < j; i++)
{
if (i == playerid) continue;
if (gTeam[i] == TEAM_ZOMBIE) SendPlayerMessageToPlayer(i, playerid, str);
else SendPlayerMessageToPlayer(i, playerid, text);
}
return 0;
}

