SA-MP Forums Archive
if else - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: if else (/showthread.php?tid=639699)



if else - Bussyman - 21.08.2017

Hi,

new bool:test;

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


Re: if else - Misiur - 21.08.2017

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

//Somewhere else
test = !test;