SA-MP Forums Archive
error 035: argument type mismatch (argument 3) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: error 035: argument type mismatch (argument 3) (/showthread.php?tid=650947)



error 035: argument type mismatch (argument 3) - RODELA - 10.03.2018

Here is the codes -_- getting these error.

Код:
error 035: argument type mismatch (argument 3)
Script codes:
Код:
ShowPlayerDialog(playerid, DIALOG_STYLE_MSGBOX, "{FFFFFF}Welcome to {FF1AFF}Test", "Would you like a helper to show you around?", "Yes", "No");



Re: error 035: argument type mismatch (argument 3) - Sew_Sumi - 10.03.2018

3rd argument is the style parameter, not the string you have there... You've mucked up the order of the params, and you've omitted the dialogid.

it goes... (playerid, dialogid, style, caption[], info[], button1[], button2[])

you have (playerid, style, caption[], info[], button1[], button2[])