28.05.2012, 00:06
I hope that helps:
PHP код:
new dialoglist[1024], name[32];
new ii=0;
for(new i=0; i<MAX_PLAYERS; i++){
if(IsPlayerConnected(i)){
GetPlayerName(i, name, sizeof(name));
format(dialoglist,sizeof(dialoglist),"%s\n%s",dialoglist,name);
haxedplayer[ii]=i;
ii+=1;
}
}
return ShowPlayerDialog(playerid,723,DIALOG_STYLE_LIST,"Bank hack program",dialoglist,"Option 1", "Option 2");
switch(dialogid==723){
if(!response) return SendClientMessage(playerid, 0xFF0000FF, "You cancelled.");
else return SendClientMessage(haxedplayer[listitem],COLOR_RED,"LOOOL");
}