03.03.2011, 15:43
Bro, but how do I process the listitem from the dialog? cuz it need to be on dialog response callback:
pawn Код:
public OnPlayerClickPlayer(playerid, clickedplayerid, source)
{
foreach(Player, i)
{
new string[128];
format(string,sizeof(string)," %s ",GetMyName(i));
ShowPlayerDialog(playerid,600,DIALOG_STYLE_MSGBOX,".",string,"ok");
}
return 1;
}