Advertisement
RodneyFrancalim

Chat gang

Jul 31st, 2014
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.31 KB | None | 0 0
  1. stock ChatGang( playerid, msg[] )
  2. {
  3.     new
  4.         gang = GetPlayerTeam( playerid )
  5.     ;
  6.  
  7.     for( new i = 0; i < MAX_PLAYERS; ++i )
  8.     {
  9.         if( gang > -1 && gang < 255 )
  10.         {
  11.             if( GetPlayerTeam( i ) == gang ) SendClientMessage( i, COR_GANG, msg );
  12.         }
  13.     }
  14.     return 1;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement