24.05.2018, 10:24
You are using "float" instead of an integer, age and skin are not floats.
instead of
use this, it should fix your problem
the problem was you we're using Floats in age and skin, which should be an integer, removing the "float:" in your code should fix the problem.
instead of
pawn Код:
new rmenu[600], gender[8], float:age, float:skin;
pawn Код:
new rmenu[600], gender[8], age, skin;