29.05.2009, 18:26
Ok. I create a variable.
if i try to make a function , something like this
It took i = 1 , isn't ?
This is equivalent with this , isn't ?
Right ...
but if i do like this
It took i == 0 , whY?
pawn Код:
new i = 1;
pawn Код:
if(i))
{
// function
}
This is equivalent with this , isn't ?
pawn Код:
if(i == 1)
{
//function
}
but if i do like this
pawn Код:
if(!i))
{
//function
}