08.09.2014, 09:07
Hello i need some help with the dialog it doest show up. This is the script that i dont know what bug or missing.
This is the message
This is the stock
and this is the command.
This is the message
Код:
new ChangesDialog[][] =
{
"V3.5.83",
"Fix TR radio, add anims at /time, fix /h remove object, add /buydrink at club",
"fix buygun money transfer to biz safe, added scripter and mapper rank",
"V3.5.20",
"added /setcapping for /capture, Added TR Faction Duty Armor and HP",
"Changing Government Color to dark grey, changing /changes chat to dialog",
"V3.5.16",
"Removing TR unused vehicle and added change vehicle model",
"Fixed the /badge bug for TR Faction",
"V3.4.78",
"Added business system and few bug fixed"
};
Код:
stock ShowChangesDialog(playerid)
{
new dialog_string[5000];
format(dialog_string, sizeof(dialog_string), ChangesDialog);
ShowPlayerDialog(playerid, zzzz, DIALOG_STYLE_LIST, "Latest Version of SR:RP", dialog_string, "Okay", "");
return 1;
}
Код:
CMD:changes(playerid, params[])
{
return ShowChangesDialog(playerid);
}

