Horse error with cus. template

Trying to make a horse custimazation template, how to deal with error:

Script:
INT. ROYAL BABY STABLES - DAY

@HORSE spot 0.884 166 115 in zone 1
@HORSE moves to layer 3
@HORSE faces right

label horse_name

input What is your name? | What is your horse’s name? | Done (NAME)

    NARRATOR
    Are you sure you want to stick with (NAME)?

choice “Yes” {

} “No” {
goto horse_name
}

label mane_style

    NARRATOR
    The style of mane.

choice [shouldPaginate : YES]
“Bald” {

@HORSE changes hair to Bald
} “Straight” {

@HORSE changes hair to Straight Natural
}

error:

2 Likes

Idk what’s wrong with the lable but I think it’s nit hair but hairStyle,so Horse changes into hairStyle ykkk

@HORSE changes hair into Bald

@HORSE changes hair into Straight Natural

Try this:
INT. ROYAL BABY STABLES - DAY
&HORSE spot 0.884 166 115 in zone 1 at layer 3 AND HORSE faces right

label horse_name

input What is your horse’s name? | What is your horse’s name? | Done (NAME)

    NARRATOR
    Are you sure you want to stick with (NAME)?

choice “Yes” {

} “No” {
goto horse_name
}

label mane_style

    NARRATOR
    The style of mane.

choice [shouldPaginate : YES]
“Bald” {

@HORSE changes hair into Bald
} “Straight” {

@HORSE changes hair into Straight Natural
}

It says it doesn’t exist when it does:

Did you try this?
INT. ROYAL BABY STABLES - DAY
&HORSE spot 0.884 166 115 in zone 1 at layer 3 AND HORSE faces right

label horse_name

input What is your horse’s name? | What is your horse’s name? | Done (NAME)

    NARRATOR
    Are you sure you want to stick with [NAME]?

choice “Yes” {

} “No” {
goto horse_name
}

label mane_style

    NARRATOR
    The style of mane.

choice [shouldPaginate: YES]
“Bald” {

@HORSE changes hair into Bald
} “Straight” {

@HORSE changes hair into Straight Natural
}

Those are body “styles” not body colors. They work the same way “athletic, generic, etc” work with the regular characters so there isn’t a command to change body styles that works. And just like with the regular characters, you cannot change a hairstyle into “bald”

1 Like

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