22.06.2011, 22:22
(
Последний раз редактировалось GangsTa_; 22.06.2011 в 23:51.
)
pawn Код:
command(helpers, playerid, params[])
{
#pragma unused params
if(Player[playerid][Helper] >= 1)
{
new string[128];
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(Player[i][Helper] >= 1)
{
format(string, sizeof(string), "{37DB45}HELPER: {FFFFFF}%s", GetName(i));
ShowPlayerDialog(playerid, 0, 9315, "Online helpers:", string, "Done", "");
}
}
}
return 1;
}
I made sure at OnDialogResponse there's nothing associated with this dialog ID.
Why's that?