I have a complicated If Statement. I'm not sure how I need to organize it.
The code reads if "Lnd" is true then checks if "Ste" matches.
Does this code read If Lnd is True then read If Ste matches?
Or does the code read If Lnd is True and Ste = "Stand" then check weather Ste Matches another string and ignore Lnd?
If so is it possible to use parenthesis within if statements?
The code reads if "Lnd" is true then checks if "Ste" matches.
If Lnd = True And Ste = "Stand" Or Ste = "Walk" Or Ste = "Crouch" Or Ste = "Crawl"
Does this code read If Lnd is True then read If Ste matches?
Or does the code read If Lnd is True and Ste = "Stand" then check weather Ste Matches another string and ignore Lnd?
If so is it possible to use parenthesis within if statements?
If ( Lnd = True And ( Ste = "Stand" Or Ste = "Walk" Or Ste = "Crouch" Or Ste = "Crawl" ))