does anyone knows the way to do a gem choice ?
and how can I add a cup , pizza , cupcake to the hand of the character ?
and how to make the player costumise the character ?
and does lables could be used in next characters ( ex. I labeled in chapter one can I use goto label that exist in chapter one ?
choice (NAMESOMETHINGRANDOM)
“CHOICENAME”{
(stuff inside the choice)
}
NOTE: You have to put something inside the bracket next to the word choice.
The reason why you do this is, if you want to make choices that affect the story, do it like this:
if (NAMESOMETHINGRANDOM is CHOICENAME){
(insert scene here)
}
elif (NAMESOMETHINGRANDOM is CHOICENAME2){
(insert scene here)
}
else{
(insert scene here)
}
TO add prop input this command to your script: @add PROPNAME to CHARACTER
to remove do @remove PROPNAME from CHARACTER
There is a Female Avatar and Male Avatar script template in the writers portal. Access it by clicking Script Template on the right side menu beside your script
I’m a lil confused by your question but I think you meant can you label something in chapter one and then go back to the label afterward?
So, to answer your question:
Let’s say u have two choices: label findperson
GIRL
Where to find (person)?
choice
“Choice 1”{
(insert scene here)
}
“Choice 2”{
(insert scenes here)
}
Let’s say choice 1 is the correct place, second place is the wrong place.
If character goes to second place, then you write.
goto findperson at the end of the choice.
so the reader gets redirected to the choices part where the can choose which place they go.
Afterwards, they continue the story when they click choice 1.
@EpisodeForLife93 tysm for your help but wht I meant in my question is : if I labeled smthing in chapter one can I go back to lable when I am in chapter 2 ?