Advertisement
Guest User

Untitled

a guest
Nov 28th, 2020
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.36 KB | None | 0 0
  1. public ABroadCast(color,const string[],level)
  2. {
  3.     foreach(new i : Player)
  4.     {
  5.         if(IsPlayerConnected(i))
  6.         {
  7.             if(gPlayerLogged[i] == 1)
  8.             {
  9.                 if (PlayerInfo[i][pAdmin] >= level)
  10.                 {
  11.                     SCM(i, color, string);
  12.                 }
  13.             }
  14.         }
  15.     }
  16.     return 1;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement