[Ajuda] Team Chat
#2

usas assim:
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;
}
continue and break sгo aconselhбveis usar em loop.
Reply


Messages In This Thread
[Ajuda] Team Chat - by Wendell_. - 16.05.2011, 18:34
Re: [Ajuda] Team Chat - by TheGarfield - 16.05.2011, 18:46
Re: [Ajuda] Team Chat - by RockFire - 16.05.2011, 18:50
Re: [Ajuda] Team Chat - by Wendell_. - 16.05.2011, 18:51
Re: [Ajuda] Team Chat - by TheGarfield - 16.05.2011, 18:53
Re: [Ajuda] Team Chat - by Wendell_. - 16.05.2011, 18:55
Re: [Ajuda] Team Chat - by RockFire - 16.05.2011, 18:57
Re: [Ajuda] Team Chat - by Wendell_. - 16.05.2011, 19:02
Re: [Ajuda] Team Chat - by TheGarfield - 16.05.2011, 19:02
Re: [Ajuda] Team Chat - by RockFire - 16.05.2011, 19:04

Forum Jump:


Users browsing this thread: 2 Guest(s)