I am currently editing my first story and I am struggling to get the script to remember an outfit choice. I have my MC pick her outfit at the beginning of the chapter, halfway through the chapter is a flash back scene (where MC wears different clothes) and come back to the present day and the MC is wearing a completely different outfit.
Any and all help is greatly appreciated!
Scranton Place
I tried the if/elif/else and it didn’t seem to work. But that could be because I may have entered it wrong. I will go ahead and take a look at the link. thank you so much!
If you’re using the web preview it doesn’t remember choices. Check these on the app and reset story progress. It should work. If it isn’t, there may be a problem with your coding. Feel free to DM me any time if you need help
EXT. POOL HOUSE - NIGHT
sound ambient_crickets @DUKE changes into DUKE_halloween @DUKE stands screen center @DUKE faces left @CHARLOTTE stands screen left
if (chose_angel) { @CHARLOTTE changes into CHARLOTTE_angel
} elif (chose_sexycat) { @CHARLOTTE changes into CHARLOTTE_cat
} elif (chose_devil) { @CHARLOTTE changes into CHARLOTTE_devil
You put the flags in each option which means all those flags will be gained if you try on all the outfits, which is why your if/elif/else is not working properly.
I am about to pull my hair out lol I filled in everything correctly (at least I think I did)
And now all I am getting is an error code at else saying "unexpected expression: Did you leave out the word choice or forget to put a character name in ALL CAPS
if (halloween_cat) { @CHARLOTTE changes into CHARLOTTE_cat
} elif (halloween_devil) { @CHARLOTTE changes into CHARLOTTE_devil
} elif (halloween_fairy){ @CHARLOTTE changes into CHARLOTTE_fairy
} elif (halloween_mikasa){ @CHARLOTTE changes into Charlotte_mikasa
} else (halloween_witch) { @CHARLOTTE changes into CHARLOTTE_witch
}