Error question

I’m getting this error: Error: chapterone line 13: It is illegal to fall out of a *choice statement; you must *goto or *finish before the end of the indented block.

Line 13 is the start of the choice but I can’t see what the problem is as I have a goto command for each choice.

#choice
	#Go up and talk to him
		*set confidence +20
		*set kind +20 
		*goto talk
	#Pretend you don't see him	
		*set confidence -20
		*set unkind +20
		*goto ignore 

Replace hashtag with an asterisk before the choice command.

1 Like

Thanks, can’t believe I missed such an obvious problem

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.