Dialog Probelm. - 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: Dialog Probelm. (
/showthread.php?tid=305587)
Dialog Probelm. -
Lynn - 23.12.2011
When ever I type in a password, it says Incorrect.
But if I just hit Enter(Empty Dialog.)
It will log me in.
How can I make it so you can't hit Enter if nothing is typed in the Dialog?
Re: Dialog Probelm. -
coole210 - 23.12.2011
Код:
if(!response) return ShowPlayerDialog(Show it again)
Inside OnDialogResponse under the correct dialog
Re: Dialog Probelm. -
iTorran - 23.12.2011
pawn Код:
if(strlen(inputtext) == 0) return // Dialog
Works for me