New here, could use help!

Hello, so im new, and trying to make a game.

Now, i understand some of this," i just started."

But when i try to do choices inside of choices.

*choice
 # threaten someone
    Who would you threaten?
   * choice
Etc.

For some reason, it doesnt work. Are my tabs/ spaces mixed up?

it’s the indents~ (aka spaces)

*choice
 #threaten someone
   Who would you threaten?
   * choice1
     Etc. 
   *choice 2
     ETC
 #Weeeeeeeeee
  blablablabla
  *choice
   ETC

Not sure if that’s understandable? x’D

1 Like

Also, you need to end each choice with a goto:

*choice
    #Threaten
    |   Who?
    |   *choice
    |   |   #Tim
    |   |   |   *goto timthreat
    |   |   #Steve
    |   |   |   *goto stevethreat
    #Kiss
    |   Who?
    |   *choice
    |   |   #Tim
    |   |   |   *goto timkiss
    |   |   #Steve
    |   |   |   *goto stevekiss

(Added pipes to make the indents clearer, but these shouldn’t appear in your code.)

1 Like

Do you have to end a choice with a *goto, or can you just make it end?

*choice has to end with a *goto. *fake_choice doesn’t, but you can’t do nearly as much with it.