Error Message Invalid indent? Expected an #option here, not *set

I’ve been getting the error message Invalid indent? Expected an #option here, not *set and was wondering what part is wrong

Thanks for the help

What name is she calling?

*choice
	#Jennifer
	*set name "Jennifer"
	*goto paragrah1
	#Emily
	*set name "Emily"
	*goto paragraph1
	#Violet
	*set name "Violet"
	*goto paragraph1
	#Sarah
	*set name "Sarah"
	*goto paragraph1
	#Other
	*input_text name
	*set "Name"
	*goto paragraph1
	

All text below the # command should be indented one level. This is to indicate that the indented texts are “parented” by the preceding # hash.

And when you use input_text, you dont need a set anymore.

Advice: when a player gets to put in text, ask afterwards if the input is correct. Like:

*choice
   #name1
      *set name "Name1"
      *goto paragraph1
   Etc
   #enter name:
      *goto enter_name

*label enter_name
What is the name?
*input_text name
$!{name} is that correct?
*choice
   #yes
      *goto paragraph1
   #no
      *goto enter_name
2 Likes

Thanks

1 Like