How to create gem choices

Please tell me what I am doing wrong.

INT. WALKINCLOSET - DAY

@THE READER enters from left to screen center
@THE READER faces right
@THE READER is idle

    THE READER
What should I wear today?

choice (outfit)
GEMS:5 “Casual” {
@THE READER changes into THE READER_casual
THE READER
I want to feel comfy.
}
“Trendy” {
@THE READER changes into THE READER_dressy

    THE READER
I want to look stylish.

}
“Edgy” {
@THE READER changes into THE READER_gems_option_2
THE READER
I want to make a statement.
}

This is how you create gem choices right?

I’m pretty sure Before GEMS and after 5 you’re supposed to put< >
so it would look like,
GEMS:5"Casual" {
@THE READER changes into THE READER_casual
THE READER
I want to feel comfy.
}

Let me know if that works :blush:
It doesn’t show up on here :thinking:
Let me look at it in the portal…

Do you want them all to be gem option?

Gem choices aren’t displayed in the Writer’s Portal. As long as it works when you test it in the mobile app, it will work for readers.

2 Likes

Usually you let the reader try on the clothes and then make the gem choice when they confirm they want to keep the outfit. Otherwise, why would people pay for an outfit when they don’t know what it looks like?

In situations like this, I’d recommend you use a Dara Amarie template.

Thank you everybody for your help. Maybe I’ll leave out the gem choice until I’m able to understand how to create them more.

I have an edit script that I did I can send it to you and you can edit you out fit names to it it only has one gem choice and I edited it from Dara so keep the reader message

You will need her tappable overlays for it

Hey if u need help I can make a template for u

you did everything right you just need to add labels and move the gems to a second choice link so it won’t charge them if they want to not do the gems here’s your script edited with no tappables

INT. WALKINCLOSET - DAY

@THE READER enters from left to screen center
@THE READER faces right
@THE READER is idle

    THE READER
What should I wear today?
  NARR

gold is diamonds
label choiceoutfit
choice (outfit)
<PREMIUM“Casual” {
@THE READER changes into THE READER_casual
THE READER
I want to feel comfy.
goto casual
}
“Trendy” {
@THE READER changes into THE READER_dressy

    THE READER
I want to look stylish.

goto trendy
}
“Edgy” {
@THE READER changes into THE READER_gems_option_2
THE READER
I want to make a statement.
goto edgy
}
label casual
THE READER
Is this what I want to wear?
choice
GEMS:5Yes"{
NARR
Good choice
goto endchangeingoutfit
{}" I wanna see my other choices"{
NARR
Ok
goto choiceoutfit
label trendy
THE READER
Is this what I want to wear?
choice
Yes"{
NARR
Good choice
goto endchangeingoutfit
{
}" I wanna see my other choices"{
NARR
Ok
goto choiceoutfit
label edgy
THE READER
Is this what I want to wear?
choice
Yes"{
NARR
Good choice
goto endchangeingoutfit
{
}" I wanna see my other choices"{
NARR
Ok
goto choiceoutfit

label endchangeingoutfit
rest of story

Thank you. I appreciate it. I can’t wait until the day I can answer questions rather than asking them. I am such a newbie. :laughing:

1 Like

I hope they work if not I can test them out in my test story that won’t get published unless I do a tutorial type thing

You can use this template for outfit gem choices.

INT. WALKINCLOSET - DAY

@READER enters from left to screen center
@READER faces right
@READER is idle

label outfit

    THE READER
What should I wear today?

choice (outfit)
<PREMIUM> “GEM OUTFIT” {

@READER previews outfit GEMOUTFIT

goto gem_outfit
}
“OUTFIT1” {

@READER changes into OUTFIT2

}
“OUTFIT3” {

@READER changes into OUTFIT3

}

NARR
Is this what you want to wear?
choice
"Yes." {
goto story_start
}
"No, let me change." {
goto outfit
}

label gem_outfit

NARR
Is this what you want to wear?

choice
<GEMS:5> "Yes." {

@READER changes into GEMOUTFIT

}
"No, let me change." {

@READER unpreviews outfit GEMOUTFIT

goto outfit
}

label story_start
# Story continues here

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.