Team Chat
#1

What is an easy way to send team message?
There is no SendTeamNessage function is there?
Don't worry about posting a full command if that function exists.
If not could you please show me how to send team messages.
Reply
#2

pawn Код:
stock SendTeamMessage( playerid, t_MSG[ ] )
{
    for( new i = 0; i < MAX_PLAYERS; i ++ )
    {
        if( GetPlayerTeam( i ) == GetPlayerTeam( playerid ) )
        {
            new c_msg[ 128 ], c_name[ MAX_PLAYER_NAME ];
            GetPlayerName( playerid, c_name, sizeof c_name );
            format( c_msg, ( 128 ), "%s: {FFFFFF}%s", c_name, t_MSG );
            SendClientMessage( i, GetPlayerColor( playerid ), c_msg );
        }
        else continue;
    }
    return ( 1 );
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)