label fangs
NARR
Please reselect the mouth shape you chose.
choice
“Full Heart Pouty” { @FEL changes mouth into Full Heart Pouty @pause for a beat
NARR
Is this the mouth shape you chose?
choice
“Yes!” {
gain Full_Heart_Pouty
} “No, I messed up!” {
goto fangs
}
“Full Round Pouty” { @FEL changes mouth into Full Round Pouty @pause for a beat
NARR
Is this the mouth shape you chose?
choice
“Yes!” {
gain Full_Round_Pouty
} “No, I messed up!” {
goto fangs
}
“Small Heart” { @FEL changes mouth into Small Heart @pause for a beat
NARR
Is this the mouth shape you chose?
choice
“Yes!” {
gain Small_Heart
} “No, I messed up!” {
goto fangs
}
Moved to Directing Help and Tips since this is about coding. Make sure to check out our Forum Tutorial for more info about creating topics, and feel free to PM me if you’ve got questions.
I deleted the script it won’t work… can you fix it for me…? I need 2 of these for the vampire lips as I want to use for the female only the ones that are available with fangs and same goes to the male
You forgot to double close the bracket for all three choices.
label fangs
NARR
Please reselect the mouth shape you chose.
choice
“Full Heart Pouty” { @FEL changes mouth into Full Heart Pouty @pause for a beat
NARR
Is this the mouth shape you chose?
choice
“Yes!” {
gain Full_Heart_Pouty
} “No, I messed up!” {
goto fangs }}
“Full Round Pouty” { @FEL changes mouth into Full Round Pouty @pause for a beat
NARR
Is this the mouth shape you chose?
choice
“Yes!” {
gain Full_Round_Pouty
} “No, I messed up!” {
goto fangs }}
“Small Heart” { @FEL changes mouth into Small Heart @pause for a beat
NARR
Is this the mouth shape you chose?
choice
“Yes!” {
gain Small_Heart
} “No, I messed up!” {
goto fangs }}
if this is CC you cant use gains because you can un-gain
I would use the point system
like @FANGS =1 @FANGS =0
my question is what are you trying to achive
So my characters both Love interest and main character are vampires and the readers can customize them in the beginning, but as i have stated they are vampires so through out the story their fangs would appear and disappear and i want the reader to choose from the lips that have fangs too, i also don’t know how to know what they chose like maybe they chose heart pouty how would i know? i need a way to be able … :c
the way CC works is like an outfit honestly once the character “changes” into it the charater stays in it and thats why only clicking a button with only
@FEMALEAVATAR changes mouth into Full Heart Pouty
goto fem_mouth_1
You need to code the if/elif/else to remember what mouth shape the readers have chose. Since you are using gains:
if (Full_Heart_Pouty){ @FEL changes mouth into Full Heart Pouty Vampire Fangs
}
elif (Full_Round_Pouty){ @FEL changes mouth into Full Round Pouty Vampire Fangs
}
else{ @FEL changes mouth into Small Heart Vampire Fangs
}