&& and || - 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: && and || (
/showthread.php?tid=545663)
&& and || -
Greaper - 09.11.2014
What's the Difference between || and &&
Re: && and || -
Dignity - 09.11.2014
&& means and & || means or.
Read more here:
https://sampwiki.blast.hk/wiki/Control_Structures#Operators
Re: && and || -
Infinity - 09.11.2014
pawn Код:
if (a == true && b == true) {
// This only gets excuted if BOTH a AND (&& = and) b are true
}
if (a == true || b == true) {
// This gets executed when either:
// a == true (b can be true or false) OR (|| = or)
// b == true (a can be true or false)
}