05.06.2014, 14:35
Quote:
Should i change the "if(strcmp(SecondParam, string, true) == 0)" to "if(!strcmp(SecondParam, string, true) == 0)"? ( Password checking )
|
pawn Код:
// an example:
if (a == 0)
// is same as:
if (!a)
Should i change the "if(strcmp(SecondParam, string, true) == 0)" to "if(!strcmp(SecondParam, string, true) == 0)"? ( Password checking )
|
// an example:
if (a == 0)
// is same as:
if (!a)