Thanks in advance for the help, the title kind of tells it all…
I want the player to be able to choose an option if two conditions hold true. First his reputation must be higher than 4 and his agility must be higher than 7.
My code is something like
*choice
*if (fighter_rep > 4) and (agility > 7) #I will be a gym teacher
The error message is invalid expression at characther x, found bolean operator [AND]
I then went to the choice script wiki and went over the various possible expressions and found:
And / Or / Not
In addition, it’s possible to assign two or more conditions to a single *if statement, using and / or. Note that when checking two or more conditions simultaneously, parentheses are required to separate them, as follows:
And: *if (var1 > 10) and (var2 > 20)
Which looks rather similar to what i am trying to do…
What am i doing wrong?
Once again, thanks for the support.