13.11.2016, 20:03
Hi,
I found somewhere made that function:
This that special characters can crash server, so everywhere player can input, or write i have to check? where i have to use that above?
I found somewhere made that function:
Код:
stock IsValidPassword(pass[]) { for(new i; i<strlen(pass); i++) { if((pass[i] < 48) || (pass[i] > 57 && pass[i] < 67) || (pass[i] > 90 && pass[i]< 97) || (pass[i] > 122)) return 0; } return 1; }