Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.57 KB | None | 0 0
  1. if(strcmp(cmdtext, "/admins", true) == 0){
  2. new Jogador[24];
  3. new count = 0;
  4. new msg[120];
  5. new ListaAdmins[128];
  6. for(new i=0; i<MAX_PLAYERS; i++){
  7. if(IsPlayerConnected(i) && IsPlayerAdmin(i)){
  8. GetPlayerName(i,Jogador,24);
  9. format(msg,sizeof(msg),"[brasukasamp.blogspot.com]Admins Online's: %s", Jogador);
  10. SendClientMessage(playerid, 0x000FFFAA, msg);
  11. count++;
  12. }
  13. }
  14. if(count >= 0){
  15. SendClientMessage(playerid, ADMINFS_MESSAGE_COLOR, "Admins Off");
  16. dini_IntSet (ListaAdmins, "Admins", 1);
  17. SendClientMessage(playerid, ADMINFS_MESSAGE_COLOR, ListaAdmins);
  18. }
  19. return 1;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement