24.12.2012, 18:31
It means if it's true.
pawn Код:
if(somecondition)
{
//somecondition returns true;
}
pawn Код:
if(!somecondition)
{
//somecondition returns false;
}