Is there a way to use multiple AND OR in bas?
-
Is there a way to use multiple AND OR in bas in a statement?
ex [[VARIABLE]] == "val" AND [[VARIABLE2]] == "val2" AND [[VARIABLE3]] == "val3"
-
@TryOn said in Is there a way to use multiple AND OR in bas?:
Is there a way to use multiple AND OR in bas in a statement?
ex [[VARIABLE]] == "val" AND [[VARIABLE2]] == "val2" AND [[VARIABLE3]] == "val3"
[[VARIABLE]] == "val" && [[VARIABLE2]] == "val2" && [[VARIABLE3]] == "val3"
-
@Fox said in Is there a way to use multiple AND OR in bas?:
@TryOn said in Is there a way to use multiple AND OR in bas?:
Is there a way to use multiple AND OR in bas in a statement?
ex [[VARIABLE]] == "val" AND [[VARIABLE2]] == "val2" AND [[VARIABLE3]] == "val3"
[[VARIABLE]] == "val" && [[VARIABLE2]] == "val2" && [[VARIABLE3]] == "val3"
Cool, thank you
How about OR , is it II ?
-
@TryOn No it is not I , it is || near ENTER key left side and above right shift key. It should be
[[VARIABLE]] == "val" || [[VARIABLE2]] == "val2" || [[VARIABLE3]] == "val3"