18.02.2013, 02:59
Strcmp returns 0 (false) if the strings match. Source: https://sampwiki.blast.hk/wiki/Strcmp
Therefore, this:
Should become:
Therefore, this:
pawn Код:
if(strcmp(inputtext,pInfo[playerid][Pass]) == 0)
pawn Код:
if(!strcmp(inputtext,pInfo[playerid][Pass], false))