How to type "space" in pawno? - 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: How to type "space" in pawno? (
/showthread.php?tid=600275)
How to type "space" in pawno? -
Tudounaozi - 06.02.2016
I want to make them CANT use "SPACE" when typing a password or secret, how to make that happen?
Re: How to type "space" in pawno? -
SickAttack - 06.02.2016
pawn Код:
if(strfind(inputtext, " ", true) != -1) // found space
Re: How to type "space" in pawno? -
Tudounaozi - 06.02.2016
Someone types it in dialog, we will return a erroe message "Don't use SPACE"
Re: How to type "space" in pawno? -
Tudounaozi - 06.02.2016
Done, thankyou Sickattack