Home Getting Started With Scripts Using this wiki Commands CTGUI Global functions Bracket Handlers

OR Operator

An OR gate combines two inputs and returns TRUE if at least one of the inputs is also TRUE.

Input 1Input 2Output
Input 1
0
Input 2
0
Output
0
Input 1
0
Input 2
1
Output
1
Input 1
1
Input 2
0
Output
1
Input 1
1
Input 2
1
Output
1