[Ajuda] Chat
#1

Eae galera agora todo o server esta vendo o chat das torcidas eu queria q so os menbros da t.o podesem ver o chat alguem me ajuda ae pf cуdigo :
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 : {FFFFFF}%s", Nome, text[1]);
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            if(PlayerInfo[i][pTorcida] == 1)
            {
                SendHelperMessage(COLOR_TVP, String);
                return 0;
            }
        }
        }
        if(PlayerInfo[playerid][pTorcida] == 2)
        {
        new Nome[24], String[128];
        GetPlayerName(playerid, Nome, sizeof(Nome));
        format(String, sizeof(String), "[Chat Torcida Coringгo Chopp] %s : {FFFFFF}%s", Nome, text[1]);
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            if(PlayerInfo[i][pTorcida] == 2)
            {
                SendHelperMessage(COLOR_TVP, String);
                return 0;
                        }

            }
        }
    }
 }
    return 1;
}

public SendHelperMessage(color, string[])
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            if(PlayerInfo[i][pTorcida] == 1)
            {
                SendClientMessage(i, COLOR_TVP, string);
                    }
            if(PlayerInfo[i][pTorcida] == 2)
            {
                SendClientMessage(i, COLOR_TVP, string);
            }
        }
    }
    printf("[Chat]%s", string);
}// Esta tipow Chat Global
Reply


Messages In This Thread
Chat - by denis15711 - 24.07.2012, 20:59
AW: Chat - by billy the kid - 24.07.2012, 21:03
Re: Chat - by denis15711 - 24.07.2012, 21:05
Re: Chat - by ViniBorn - 24.07.2012, 21:10
Re: Chat - by leonardo1434 - 24.07.2012, 21:10
Re: Chat - by denis15711 - 24.07.2012, 21:12
Re: Chat - by ViniBorn - 24.07.2012, 21:16
Re: Chat - by denis15711 - 24.07.2012, 21:24
Re: Chat - by denis15711 - 24.07.2012, 21:38
Re: Chat - by Don_Speed - 24.07.2012, 21:49

Forum Jump:


Users browsing this thread: 4 Guest(s)