Ending episodes question

So as I’m starting to write my story and also read stories I was wondering, how do I end the episodes? Like, on the first episodes of every story, the little question of “add to favorites?” Do I put that in there or does it appear by default once it’s published. Also the “support the author” gem choice thingy, does episode add that once it’s published? Do I have to put it? Is this something that’s added when the story gets a certain amount of reads?

The “add to favorites” is a default by episode, so you don’t have to put it in there.
Episode did not add that “support the author” option, you have to code it in your script. It’s not necessary to code that in, it’s just a way for readers to show their support, and get the authors to the trending. Here’s the code if you need it.

Remove the spacing between “5” and “>”, and
the prices of gem choices can be set at: 5, 8, 12, 17, 22, 28 and 35 gems.

NARRATOR
Would you like to support the author?
choice
<GEMS:5 > “Yes!”{
NARRATOR
Thank you so much for your support!
}
“No.”{
NARRATOR
It’s ok!
}

4 Likes

Thank you so much!

to go along with what xANGEL said, just make sure you’re labeling the choice as well. gem choices won’t work if you don’t label the choice. so:

choice (support)
GEMS:5”Support my work!” {

} “No thanks.” {

}

you get the idea lol

2 Likes

Sounds good! Thanks!

1 Like