22.06.2014, 16:57
You can't easily compare strings with == or check the strings length by => <= > even <
You need strcmp, and strlen.
Should be:
You need strcmp, and strlen.
pawn Код:
if(VehicleInfo[pveh][bought] == pname && VehicleInfo[pveh][bought] <= MAX_PLAYERS_)
pawn Код:
if(!strcmp(VehicleInfo[pveh][bought], pname) && strlen(VehicleInfo[pveh][bought]) <= MAX_PLAYERS_NAME)