09.02.2013, 19:16
I have this command:
I need a stock that checks if there is no symbols like this:
!,@,#,$,%,^,&,*,(,),_,+,|,/,.,',;,[,],{,},`
I need a stock that checks if there is no symbols like this:
!,@,#,$,%,^,&,*,(,),_,+,|,/,.,',;,[,],{,},`
Код:
CMD:changepassword(playerid, params[])
{
if(sscanf(params,"s[128]",newPassword[playerid]))
{
SyntaxMSG(playerid, "/changepass [password]");
SCM(playerid, -1, "{FF0000}[WARNING]:{FFFFFF} Do not use any {00FF00}symbols{FFFFFF} on your new password.");
return 1;
}
ShowDialog(playerid, Show:<ChangePass>, DIALOG_STYLE_INPUT, "Password changer", "Please enter your secret word that you've registered with!", "Change", "Exit");
return 1;
}

