Targeting scenes depending on a condition

Hi All,

Trying to create a small game for the Neo-Twiny Jam 2024. Technically I got it working apart from one thing: I seem unable to go to another scene based on a condition.

For example: I want to go to the station scene when the score is zero, and to the tracks scene otherwise. I tried using the following:

title: guess
new-page: true
go-to: station if score = 0; tracks

But then I get the following error:

Error: Couldn't find an id matching "guess" in "menu".

Somehow adding that condition breaks things. When I replace it with:

title: guess
new-page: true
go-to: station if score = 0

Then the game compiles, but its logic is broken…