SA-MP Forums Archive
Please help with this warning? - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Please help with this warning? (/showthread.php?tid=248622)



Please help with this warning? - Adam420 - 15.04.2011

Okay so i keep getting the warning:
Код:
warning 202: number of arguments does not match definition
heres the line the error is on:
Код:
ShowPlayerDialog(playerid,11,DIALOG_STYLE_LIST,"Car control");
I can't really find the problem here but then again im not a good scripter can anyone help me out please?


Re: Please help with this warning? - Backwardsman97 - 15.04.2011

You didn't put enough arguments as the function calls for. As the warning states. Lookie here.

https://sampwiki.blast.hk/wiki/ShowPlayerDialog


Re: Please help with this warning? - aircombat - 15.04.2011

ShowPlayerDialog(playerid,11,DIALOG_STYLE_LIST,"Ca r control","What You Want","Ok","Cancel");


Re: Please help with this warning? - CrazyBlob - 15.04.2011

Код:
ShowPlayerDialog(playerid,11,DIALOG_STYLE_LIST,"Car control","Ok","Cancel");



Re: Please help with this warning? - nuriel8833 - 15.04.2011

Quote:
Originally Posted by CrazyBlob
Посмотреть сообщение
Код:
ShowPlayerDialog(playerid,11,DIALOG_STYLE_LIST,"Car control","Ok","Cancel");
I need to mention that instead of the "Ok" and "Cancel" you can change to what you want to be written on the buttoms.


Re: Please help with this warning? - Miller - 15.04.2011

Adam420, You forgot that

Код:
ShowPlayerDialog(playerid,11,DIALOG_STYLE_LIST,"Car control","Open bonnet\nEngine start","Ok","Cancel");



Re: Please help with this warning? - Adam420 - 15.04.2011

Okay thank you very much to everone who posted you helped me out alot!