What are your PC specs (RAM, CPU, GPU, etc.)? If I wait, will the program start working? How can I replicate this on purpose?
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" -
@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 ?