15.02.2013, 14:48
i would like to create a cmd:help.when we type that they should a show a dialog box and "cancel" and "next" only three pages after that show "ok".when we click next it should go to next page.
CMD:help(playerid)
{
ShowPlayerDialog(playerid, 900, DIALOG_STYLE_MSGBOX,"Title Here","Message here","OK","Next");
//use else to open another dialog
return 1;
}
here you go
pawn Код:
|
CMD:help(playerid, params[ ])
{
ShowPlayerDialog(playerid, 900, DIALOG_STYLE_MSGBOX,"Title Here","Message here","OK","Next");
return 1;
}