20.03.2012, 11:37
Right. Like anyone cares about some virtual pin number, virtual bank account or virtual money. <_<
Anyway, problem is here:
Please learn the difference between strval (get the integer value of a string) and strlen (get the length of a string). Replace with:
Anyway, problem is here:
pawn Код:
if(strval(inputtext) < 6 || strval(inputtext) >6) return 1;
pawn Код:
if(strlen(inputtext) != 6) return 1;