Quote:
Originally Posted by Blacklite
strcmp can return values less than 0 too. To correctly check if string1 does not match string2, use this:
pawn Код:
if(strcmp(BizInfo[PlayerInfo[playerid][pBizKey]][bOwner],PlayerName(playerid),true) != 0)
|
when you don't use a condition it's check if the result is
different than 0, not more.