Goto and label error

I’m having trouble with my goto and label, it just keeps sending back bad label mission

My code looks like this:

Ah, welcome trainer! I can see you've already started your journey to catching them all! 
While I was doing my research I was getting swamped having to split my time between being in the field and working in the lab. 
So, I was wondering if you would care to help me with my field work? 

*choice

  #Yes
   *goto yes
   *label yes
   Why how excellent! 
   *goto mission
  #No
   *goto no
   *label no
   Well, that's too bad. It's not too hard so I'll explain it to you anyways
*label misson 
I have prepared for you a simple task to get started.

*finish

You’re misspelled “mission” here. That said, you don’t even need the *label there, since both options go there. If you used *fake_choice instead, you could just cut that *goto and *label out. (Also, you don’t need the *goto yes *label yes, since the code will just flow that way naturally.) The full choice would be better like this:

*fake_choice
  #Yes
   Why how excellent! 
  #No
   Well, that's too bad. It's not too hard so I'll explain it to you anyways
I have prepared for you a simple task to get started.
2 Likes

ahaha awesome thanks i couldnt see it

oh ya that is a better solution! thanks