0072: Missing logical operator
A conditional statement has multiple conditions but a required logical operator (AND or OR) is missing.
Possible solutions: change the statement by either keeping only one condition or adding the operator AND or OR:
if
[email protected] == 1
[email protected] == 1 // error, logical operator is missing
then
//
end
if and
[email protected] == 1
[email protected] == 1 // OK
then
//
end
if or
[email protected] == 1
[email protected] == 1 // OK
then
//
end
if
[email protected] == 1 // OK
then
//
end
Last modified 2yr ago