29.05.2009, 21:51
Quote:
Originally Posted by MenaceX^
if(variable==1)
and if(variable) they are the same. also if(variable==0) and if(!variable) are same aswell. |
pawn Код:
if ( blah == 1 ) //equals one
if ( blah ) //is true, is NOT false
if ( !blah ) //is false, is NOT true