09.05.2013, 20:38
I would save those things as IDs to make sure, that I am able to check much easier and faster and also make functions to return different kind of "names" related to gender.
Additionally I want to say, that you have to use strcmp() to compare strings in PAWN.
Valid
Invalid
Additionally I want to say, that you have to use strcmp() to compare strings in PAWN.
Valid
pawn Код:
if(!strcmp(string_1, string_2))
pawn Код:
if(string_1 == string_2)