It’s missing one step. Right now it’s a string compared to a number. I think it needs to be forced to be interpreted as a number on the left. Try this:
I put this in a test startup and it prints yes. If you are willing to let us see the rest of the code, maybe we can see what else is involved in the issue?
Okay. I’ve been running randomtest (the game passes quicktest) yet it running into an error during seed 4 which doesn’t seem to exist. So I thought I’d reuse this topic.
The specific error message is; Error: buried line 93: increasing indent not allowed, expected 2 was 4
Now the code;
*hide_reuse #"How do you think we should approach this?"
*if (partner = "Cassandra") [<- This is line 93]
"We need to make sure that the unnatural isn't a threat to anyone and stays contained. That has to be our first priority, or even better, we should set up explosives and blow the chamber up to ensure it stays buried," Cassandra says firmly.
*goto buried_talk
*elseif (partner = "Victor")
We should go straight to the creature and kill it, anything that can survive being buried alive needs to be taken down while its easiest," Victor replies.
*goto buried_talk
*else
"We need to speak to the client, find out all we can about the ruins," $!{partner} replies.
*goto buried_talk
It says 2 expected was 4 but I use tab and auto format in CSIDE which is set to 2. so I’m not sure why it’s erroring. I’m hoping some fresh eyes can spot the obvious issue I’m missing,