Dialog without numbers - 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 without numbers (
/showthread.php?tid=575286)
Dialog without numbers -
Dominic123 - 25.05.2015
Hello sa-mp.com,i want to ask you if is possible make a DIALOG_STYLE_INPUT with restricstion.Restriction on numbers.If he put numbers in the dialog he will get a SCM(You can't put numbers in this dialog),this is possible?
Re: Dialog without numbers -
NoDi522 - 25.05.2015
PHP код:
if(IsNumeric(inputtext)) return SCM(playerid,-1,"You can't put numbers in this dialog");
Re: Dialog without numbers -
Bingo - 25.05.2015
Код:
if(IsNumeric(inputtext)) return SendClientMessage(playerid,0xFFFFFFFAA,"Your message");
Yes, This is possible.
Re: Dialog without numbers -
Dominic123 - 25.05.2015
Oh,thank you very much.