Hello, I am having trouble with gains. I have four gains that in a chapter that are: “janitor_proof,” “janitor_no_proof,” “kitchen_proof,” and “kitchen_no_proof”. In the next episode after these gains, I don’t see the “kitchen_no_proof” flag in the “Story Modifiers” → “Flags”. The four flags is being used right at the beginning of the next episode after these flags are gained. Here’s the code:
if(janitor_proof){
#scenes for janitor_proof
}elif(janitor_no_proof){
#scenes for janitor_no_proof
}elif(kitchen_proof){
#scenes for kitchen_proof
}else{
#scenes for kitchen_no_proof
}
I don’t have any code inside the “janitor_no_proof,” “kitchen_proof,” or the else (kitchen_no_proof). This could be the problem, but the other two without text work just fine. Why is the “else” command for “kitchen_no_proof” not showing? Thanks.