mother line 3: Invalid expression at char 47, expected CLOSE_PARENTHESIS, was: NAMED_OPERATOR [or]
I’m getting this error, I don’t know what I’m doing wrong. I’ve made a multiple if statement & that worked, this is written the same way. Below is how it’s written.
It’s supposed to show this paragraph if your a wolf or wolfdog, or the second is to show if your a coyote or coydog, & the third is if your something that is not one of mentioned ones.
*if (((breed = “Wolf”) or (breed = “Wolfdog_HC”) or (breed = “Wolfdog_LC”))
(paragraph)
*goto label
*if ((breed = “Coyote”)) or (breed = “Coydog”))
(paragraph)
*goto label
*else
(paragraph)
*goto label
You’re missing a parentheses. You have *if (((breed = “Wolf”) or (breed = “Wolfdog_HC”) or (breed = “Wolfdog_LC”))
Should be: *if (((breed = “Wolf”) or (breed = “Wolfdog_HC”)) or (breed = “Wolfdog_LC”))