02.04.2013, 05:04
The below dialog, only shows 1 admin online when you type /admins.
This is the string.
This is the code.
The exact same happens for /vips.
This is the string.
pawn Код:
new string[128];
pawn Код:
format(string, 128, "{FFFFFF}Level: {FFFF00}%d{FF0000} - %s (Id:%i) {FF0000}| %s | %s",AccInfo[i][Level], PlayerName2(i),i,AdmRank,AdmDuty);
count++;
ShowPlayerDialog(playerid, DIALOG_ADMIN, DIALOG_STYLE_MSGBOX, "{FF0000}Currently Online Admins", string, "Ok", "");
}
}
}
if (count == 0)
ShowPlayerDialog(playerid, DIALOG_ADMIN, DIALOG_STYLE_MSGBOX, "{FF0000}Currently Online Admins", "{FF0000}No admins are currently online", "Ok", "");
return 1;
}
The exact same happens for /vips.
pawn Код:
format(string, sizeof(string),"{FFFFFF}VIP Level - {FFFF00}%d: {FF0000}%s ", AccInfo[playerid][pVip],name);
count++;
ShowPlayerDialog(playerid, DIALOG_VIP, DIALOG_STYLE_MSGBOX, "{FF0000}Currently Online VIP's", string, "Ok", "");
}
}
}
if(count == 0) {
ShowPlayerDialog(playerid, DIALOG_VIP, DIALOG_STYLE_MSGBOX, "{FF0000}Currently Online VIP's", "{FF0000}No VIP's are currently online", "Ok", "");
}
return 1;
}