if else
#1

Hi,

new bool:test;

Код:
if( test == false )
{
test = true;
}
else
{
test = false;
}
I can do this?
Reply
#2

Sure you can. You can also do:
pawn Код:
new bool:test = true;

//Somewhere else
test = !test;
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)