Guest User

Untitled

a guest
Nov 23rd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. stock IsAdminConnected( )
  2. {
  3. for(new i; i < 300; i++)
  4. {
  5. if(IsPlayerConnected(playerid))
  6. {
  7. if(IsPlayerAdmin(i) || PlayerInfo[i][Level] > 3) {
  8. return 1;
  9. }
  10. else {
  11. return 0;
  12. }
  13. }
  14. }
  15. }
Add Comment
Please, Sign In to add comment