01.02.2014, 21:34
Shouldnt it be
?
you have:
ShowPlayerDialog(playerid, dialogid, style, info[], button1[], button2[]);
it should be:
ShowPlayerDialog(playerid, dialogid, style, caption[], info[], button1[], button2[]);
pawn Код:
ShowPlayerDialog(playerid, 4, DIALOG_STYLE_MSGBOX, "Title", string, "BUTTON1", "BUTTON2")
you have:
ShowPlayerDialog(playerid, dialogid, style, info[], button1[], button2[]);
it should be:
ShowPlayerDialog(playerid, dialogid, style, caption[], info[], button1[], button2[]);