22.11.2010, 22:00
I have made checkpoints at my org HQ and it is sposed to show the members of the org in a dialog.
But it only shows when the member is online, how can i do it so it shows even when the member is offline.
But it only shows when the member is online, how can i do it so it shows even when the member is offline.
pawn Код:
case 1:
{
new count;
for(new i; i<MAX_PLAYERS; i++){
if(Member[i] == 1)
GetPlayerName(i,Name,sizeof(Name));
format(String, sizeof(String), "%s",Name);
count++;
ShowPlayerDialog(playerid,19, DIALOG_STYLE_LIST, "San Andreas Police Department.",String,"Back", "Cancel");
}