Advertisement
jlalt

wewa

Apr 9th, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.29 KB | None | 0 0
  1. #include a_samp
  2. #include zcmd
  3.  
  4. enum pInfo
  5. {
  6.     TM,
  7. };
  8.  
  9. new PlayerInfo[100][pInfo];
  10.  
  11. CMD:setalltmcolor(playerid, params[])
  12. {
  13.     for(new i = 0; i < MAX_PLAYERS; i++)
  14.     {
  15.         if(IsPlayerConnected(i) && PlayerInfo[i][TM])
  16.         {
  17.                 SetPlayerColor(i, 0xAFAFAFAA);
  18.         }
  19.     }
  20.     return 1;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement