27.03.2015, 13:23
Another bug in your code:
Should be:
Otherwise players can enter anything in that box and the age will always be 1.
pawn Код:
pData[playerid][pAge] = 1; // This will save the age.
pawn Код:
pData[playerid][pAge] = strval(inputtext); // This will save the age.