Hello there
Does anyone know how I can add a jacket to a character but with the readers to have decided what she is going to wear ?
And how can I take off the jacket of an another character?
You have to create a duplicate outfit with the jacket on. That way when you want to add the jacket on the outfit, you can use @CHARACTER changes into outfitwithjacket
Taking off the jacket is the same process- have a duplicate outfit without the jacket.
Does it make any sense? xx
I knew that I could do that but the readers have decided the outfit
And is there a more easier way in the second ?
Thanks for answering
You should use if/elif/else.
How do I use them ?
…I don’t understand what you mean
Could you please explain ?
If it’s not too much for you of course
Sure! Okay so gains are something that help you to remember what the reader has done. For example if the reader chooses to be nice you add “gain Nice” and then you can use if/else to remember that later. For what you want to do I’d code:
NARR
What would you like to wear?
choice
“Outfit 1”{
gain Outfit_1
}”Outfit 2”{
gain Outfit_2
}”Outfit 3”{
gain Outfit_3
}
Then later:
if (Outfit_1){
#scene with outfit 1 goes here.
}elif (Outfit_2){
#scene with outfit 2 goes here.
}else{
#scene with outfit 3 goes here.
}
Hope I was clear enough, if you have any questions ask me.
Alright and what do I add to add the jacket and where ?
And how do I take off the jacket of the other character ?
Thank you again!!!
NARR
What would you like to wear?
choice
“Outfit 1”{
gain Outfit_1
}”Outfit 2”{
gain Outfit_2
}”Outfit 3”{
gain Outfit_3
}
Then later:
if (Outfit_1){
@CHAR1 changes into outfit1_without_jacket
@CHAR2 changes into outfit_without_jacket
}elif (Outfit_2){
@CHAR1 changes into outfit2_without_jacket
@CHAR2 changes into outfit_without_jacket
}else{
@CHAR1 changes into outfit3_without_jacket
@CHAR2 changes into outfit_without_jacket
}
Remember to create 4 new outfits in total, one with outfit 1 without jacket, outfit 2 without jacket, outfit 3 without jacket and the outfit of the other person without jacket.
I am really confused right now
What do I write now and what later in the script ?
What are your outfits and characters name? I can write the script exactly how it has to be in your portal.
Its PARTY1… how the readers see it and AMELIA_PARTY1… how their names are (they are 4)(the girl)
Its RON_PARTY the outfit he changes into (the boy )
The readers get to choose only the girl’s outfit not the bou’s
The boy is wearing the jacket at first and then I want to get the girl to wear it
Amelia ( name of the girl) Ron (name of the boy )
It’s INK
Let me know if you need more information
THANK YOU SO MUCH AGAIN
label outfit_choice
NARR
What would you like to wear?
choice
“PARTY1”{
@AMELIA changes into AMELIA_PARTY_1
NARR
Are you sure you want to wear this?
choice
“Yes, it’s perfect.”{
gain PARTY_1
}”No, take me back.”{
goto label outfit_choice
}
}”PARTY2”{
@AMELIA changes into AMELIA_PARTY_2
NARR
Are you sure you want to wear this?
choice
“Yes, it’s perfect.”{
gain PARTY_2
}”No, take me back.”{
goto label outfit_choice
}
}”PARTY3”{
@AMELIA changes into AMELIA_PARTY_3
NARR
Are you sure you want to wear this?
choice
“Yes, it’s perfect.”{
gain PARTY_3
}”No, take me back.”{
goto label outfit_choice
}
}”PARTY4”{
@AMELIA changes into AMELIA_PARTY_4
NARR
Are you sure you want to wear this?
choice
“Yes, it’s perfect.”{
gain PARTY_4
}”No, take me back.”{
goto label outfit_choice
}
}
Then later:
if (PARTY_1){
@AMELIA changes into AMELIA_PARTY_1_without_jacket
@RON changes into RON_PARTY_without_jacket
}elif (Outfit_2){
@AMELIA changes into AMELIA_PARTY_2_without_jacket
@RON changes into RON_PARTY_without_jacket
}elif (PARTY_3{
@AMELIA changes into AMELIA_PARTY_3_without_jacket
@RON changes into RON_PARTY_without_jacket
}else{
@AMELIA changes into AMELIA_PARTY_4_without_jacket
@RON changes into RON_PARTY_without_jacket
Thank you so much I am going to ckeck it now