Help with customization

I want the readers will change 4 female but I have error of duplicate…
And how I make the charaters to do freckles to their charater?
Thank for the help

1 Like

Thank you! And what about freckles? How can I do this?

to add freckles you have to go to outfits creation so you have to add them to each outfit you create for the character.

That I know but how I make the reader make them or not?

simpliest way is to make simple choice and use gains to remember the choice ad then use if/ elif/ else so the script will choice the right outfit any time you change clothes.

1 Like

I made this by there is an error:
NARRATOR
Do you want freckles?
choice (Freckles)

“With freckles” {

} “Without freckles” {

}
if (choice_name is “With freckles”) {

@MODEL1 changes into MODEL1_freckles
} else {

@MODEL1 changes into MODEL1_default

}

what is the problem?

gains are a lot easier, you can try this.

NARRATOR
Do you want freckles?
choice (Freckles)

“With freckles” {
gain freckles

} “Without freckles” {
gain none
}
if (freckles) {
@MODEL1 changes into MODEL1_freckles
} else (none) {
@MODEL1 changes into MODEL1_default
}

Not working :frowning:

hm… strange. try this.

NARRATOR
Do you want freckles?
choice (Freckles)

“With freckles” {

} “Without freckles” {

}
if (Freckles is “With freckles”) {

@MODEL1 changes into MODEL1_freckles
} else {

@MODEL1 changes into MODEL1_default

}
or did you already try that?


I have this error

can you send me a picture of your script please?

i think i might know the issue… you can’t skip a whole line between the word choice and option 1. not sure, try it?

so it would be

choice (Freckles)
“With Freckles” {

} “Without Freckles” {

}
and so on…

It is not how it look now?

you have a line in between choice and “with freckles”
choice (Freckles)

“with freckles”

it would have to be together
choice (Freckles)
“with freckles”

So what to delete?

copy and paste this. all i did was delete the blank line between choice and “with freckles”

NARRATOR
Do you want freckles?
choice (Freckles)
“With freckles” {

} “Without freckles” {

}
if (Freckles is “With freckles”) {

@MODEL1 changes into MODEL1_freckles
} else {

@MODEL1 changes into MODEL1_default

}

on the picture of your script that you sent me, you need to delete line 1562

Now its work but when I dont see this in my story