14.05.2013, 15:34
pawn Код:
public OnPlayerText(playerid, text[]) {
new String[250], Nome[24]; // Variбveis ficaram avulsas caso a condiзгo a baixo returnar false.
GetPlayerName(playerid, Nome, 24); //
if(text[0] == '!') {
format(String, sizeof(String), "[Chat Torcida %d]: %s (%d): %s", PlayerInfo[playerid][pTorcidas], Nome, playerid, text[1]);
for(new i; i < MAX_PLAYERS; i++) {
if(PlayerInfo[playerid][pTorcidas] == PlayerInfo[i][pTorcidas]) {
SendClientMessage(i, -1, String);
}
}
}
return 1;
}