Hi, I'm using Harlowe 2.0.1 and I'm trying to create an object that will make the game easier by using different links (to the same places) based on the object's value. Here's what I have:
You are in a wasteland. You cannot see beyond the tip of your nose because of all the smog in the air. Do you go:
(if: $map is false or 0)[[[Forwards]]]
(if: $map is false or 0)[[[Backwards]]]
(if: $map is false or 0)[[[To the left]]]
(if: $map is false or 0)[[[To the right]]]
(if: $map is false or 0)[[[Forwards and to the left]]]
(if: $map is false or 0)[[[Forwards and to the right]]]
(if: $map is false or 0)[[[Backwards and to the left]]]
(if: $map is false or 0)[[[Backwards and to the right]]]
(if: $map is true)[The magic map says you are in the middle, facing north.]
Do I need more brackets or something? Thanks!