Coding help for outfits

I don’t know what’s wrong with this?

label choosing_outfit

    CHARACTER
(What shall I wear?)

choice
“Outfit 1”{

@CHARACTERis dustoff_neutral_loop

@pause for 2

@CHARACTER changes into OUTFIT 1

@CHARACTERis idle_shiftweight_neutral_loop

}
“Outfit 2”

@pause for 2

@CHARACTERchanges into CHARACTER OUTFIT 2

@pause for 1

@CHARACTER is idle_shiftweight_neutral_loop

}
“Outfit 3”

@CHARACTERis dustoff_neutral_loop

@pause for 2

@CHARACTER changes into OUTFIT 3

@CHARCATER is idle_shiftweight_neutral_loop

}

    CHARACTER (think_rubchin)
(Shall I wear this? Or choose something else?)

choice
“Wear this Outfit”{

    CHARACTER (idle_shiftweight_neutral_loop)
(Yep , this will do!)

}
“Try something else”{

goto choosing_outfit

}

1 Like

Try using space between “@CHARACTER” and “is” and between “@CHARACTER” and “changes”. Hope this helps.
UPDATE: you’re not using the labels correctly. Dara Amarie has a full dressing template on her site.

1 Like

thank you!

1 Like

label choosing_outfit

CHARACTER (think_rubchin)

(What shall I wear?)
choice
“Outfit 1”{

@CHARACTER is dustoff_neutral_loop

@pause for 2

@CHARACTER changes into OUTFIT 1

@pause for 1

@CHARACTER is idle_shiftweight_neutral_loop

goto end_outfit

}
“Outfit 2” {

@CHARACTER is dustoff_neutral_loop

@pause for 2

@CHARACTER changes into CHARACTER OUTFIT 2

@pause for 1

@CHARACTER is idle_shiftweight_neutral_loop

goto end_outfit

}
“Outfit 3” {

@CHARACTER is dustoff_neutral_loop

@pause for 2

@CHARACTER changes into OUTFIT 3

@pause for 1

@CHARACTER is idle_shiftweight_neutral_loop

goto end_outfit
}
label end_outfit
CHARACTER (think_rubchin)
(Shall I wear this? Or choose something else?)
choice
“Wear this Outfit”{

CHARACTER (idle_shiftweight_neutral_loop)

(Yep, this will do!)
}
“Try something else”{

goto choosing_outfit

}
Try this, I don’t have CHARACTER in the list of my characters and such outfits too and I don’t want to create them so idk if this works or not.

thanks allot!

1 Like