16.05.2011, 18:46
usas assim:
continue and break sгo aconselhбveis usar em loop.
pawn Код:
public OnPlayerText(playerid, text[])
{
if( (text[0] == '#' || text[0] == '@') && strlen(text) > 1)
{
static str[128];
new szPlayerName[MAX_PLAYER_NAME];
if(gTeam(playerid) == TEAM_GREEN)
{
format(str, 128, "[Green Team Chat]» O jogador %s: %s", szPlayerName, text[1]);
for(new iPlayerID; iPlayerID < MAX_PLAYERS; iPlayerID++)
{
if(IsPlayerConnected(iPlayerID))
{
if(gTeam[iPlayerID] == TEAM_GREEN)
{
SendClientMessage(iPlayerID, 0x0080C0AA, str);
}
}
}
}
return 0;
}
return 0;
}