/admins
#1

hello i've this command to see the online admins but the problem its only show me one admin even if is there two or more admins online any way to fix that?

PHP код:
CMD:admins(playerid,params[])
{
  new 
name[24], str[100];
  new 
count 0;
  for(new 
0<MAX_PLAYERSi++)
  {
    if(!
IsPlayerConnected(i)) continue;
    if(
pdata[i][Adminstator])
    {
      
GetPlayerName(i,name,sizeof(name));
      
format(str,sizeof(str),"%s (%d): %s",name,i,AdminLevel(i));
      
ShowPlayerDialog(playerid,20,DIALOG_STYLE_LIST,"Online admins",str,"Close","");
      
count++;
    }
    if(
count == 0) return ShowPlayerDialog(playerid,22,DIALOG_STYLE_MSGBOX,"Online admins","No players found","Close","");
  }
  return 
1;

Reply


Messages In This Thread
/admins - by TuNiSiAnO1 - 02.03.2015, 08:07
Re: /admins - by CalvinC - 02.03.2015, 08:12
Respuesta: /admins - by JuanStone - 02.03.2015, 08:22

Forum Jump:


Users browsing this thread: 1 Guest(s)