I want a link to check for two variables, AA and BB, to lead to another page (P46) if both are greater than 1.
I tried this:
IF %AA > 1 AND %BB > 1 THEN
$DEST := @P45
But it doesn't work; it just goes to the linked page (P43) instead of P45. If I removed either one of the variables like so:
IF %BB > 1 THEN
$DEST := @P45
It does work. I am brought to P45.
I tested the game with variables on page to double-check that the values were indeed greater than 1 as well.
I'm sure I'm making some silly mistakes here, like maybe this is not how you check for two variables at once?
Apologies for the stupid question, and thank you in advance.