I have a question please help!

So in one of my stories, The reader has a choice between 3 characters to customize and it works but by episode 3 or 4 their characters turn back into the original. I tried gains and flags but it still doesn’t work. Please help, I would want them to keep their characters throughout the entire episode.
I also followed guides to do this but it’s still the same

1 Like

it it happens in preview on PC than it is normal because preview do not remember choices from previouse chapters.

Test it in app it should work there.

I tried it in the app and it still does the same thing. It’s annoying to keep reediting a character in every episode

can you show me the code where you change the character?

hmm…app is remembering choices …it you havent used command “previews”
then the app should remember the choices…but what I do not sure if I understand what you mean with reediting character every chapter…you meal like giving CC again or you maualy reedit?

yes, I mean at the start of every episode they have to choose the same character in CC and then start the episode. I don’t want them to do that every time the next episode starts. I just want them to have the same character they chose in the beginning.

here’s my script:
label Character
@zoom on 32 296 to 142% in 0
@CHA 1 spot 1.345 72 -41 in zone 1 AND CHA 1 faces right AND CHA 1 starts flirt_wink_atcamera_pose
@CHA 2 spot 1.280 196 -14 in zone 1 AND CHA 2 faces right AND CHA 2 starts flirt_wink_atcamera_pose
@pause for a beat
NARR (RAHDIA)
Now you have a choice between these two characters or would you like to use | color:blue |your| reset | avatar instead?
choice “CHARACTER_1” {
@cut to zone 1
@zoom on CHA 1 to 150% in 2
@CHA 1 starts kiss_blow_happy_atcamera
@pause for a beat
gain CHARACTER_1
goto CHARACTER_1
} “CHARACTER_2” {
@cut to zone 1
@zoom on CHA 2 to 150% in 2
@CHA 2 starts kiss_blow_happy_atcamera
@pause for a beat
gain CHARACTER_2
goto CHARACTER_2
} “Avatar” {
@cut to zone 2
@zoom on AVI to 150% in 0
@AVI spot 1.280 52 14 in zone 2 AND AVI faces right AND AVI starts flirt_wink_atcamera_pose
@AVI becomes female profile
@AVI changes into AVI_default
@AVI starts kiss_blow_happy_atcamera
@pause for a beat
gain Avatar
}
goto Avatar

label CHARACTER_1
if (choose_CHARACTER_1) {
}

I made three labels and scenes for each character and THIS WORKS until episode 4 where they still have the first character.

so you actualy do not have CC if I understand right you use 2 different characters instead?

1 Like

yes, I used 3 different characters and they can customize each character

and the story is the same no matter what character they choice ?

yes

OK… just to understand why you have it so why you just dont give them one character with full CC?

Do they have different bodytypes?

basicly - if this is MC and all have the same bodytype - just use one character for MC especualy if you then give them full CC so they can anyway change them.

If you have female with normal and plus size body you can use this template instead - you will then have just one character (you do not need to make duplicate story)

If you ofer male and female body use this CC

you then have to have 2 storylines one for male other for female.

Also watch out for you if/else format - if you want it the way you have it and make 3 different sotries for this 3 different characters

your gains are:

CHARACTER_1

CHARACTER_2

Avatar

so your if/elif/ else on start of each chapter should look like

if (CHARACTER_1){
goto CHAR1
}elif (CHARACTER_2){
goto CHAR2
}else {
goto AVATAR
}

###########################
label CHAR1
NARR
Add the story line for @CHA 1
goto story end
############################
label CHAR2
NARR
Add the story line for @CHA 2
goto story end
#######################
label AVATAR
NARR
Add the story line for @AVI
goto story end
#######################
label story end
NARR
End of the story

,
you have there this below - but you do not have such gain named choose_CHARACTER_1

if (choose_CHARACTER_1) {
}

These are the templates that I used when I started my story so it’s fine the way I have it until the 3rd or fourth episode, I’m still getting the same results where they end up as the first character rather than the other two and now the story repeats.

if you use this template then do you use command

CHAR becomes CHAR?

of you ise if/ else and have 3 paralel stories?

yes for choosing the avatar in which they turn into their profile character
I’ll try it again though, thank you

@Farah_DeSantis It works thanks again for helping me!

1 Like

Sorry It worked until the second episode and now it messes up in episode 3 and so on. I followed all of the steps and templates that you recommended but none of it works…

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