24.12.2011, 12:04
strcmp returns 0 if the condition is true, and 1 if it's not. Change your strcmp code line to this:
Does that fix your problem?
The '!' (exclamation mark) checks if the value is 0 or if it's less than 0.
pawn Код:
if(!strcmp(GangName, GangInfo[i][gName], true))
The '!' (exclamation mark) checks if the value is 0 or if it's less than 0.