“Stupid” questions that never get answered? Get The Help Here 2!

Np :grin:
Glad I could help :blush:

1 Like

On a Mac I think it’s command+c, they’re a little different than other computers.

I might be wrong though :thinking:

1 Like

I’ve seen a request thread asking for auto-publish (you set a date and time and your episode automatically gets published on that schedule) Does anyone know if that’s been implemented?

I don’t believe it has.

Hey! I’m struggling on how to keep an outfit that the reader picked in the last scene… out of three options, the first one is picked rather than what if the the reader were to pick the second or third one you know? Thanks in advance :pleading_face:

Are you using tappable overlays?

1 Like

Code it like this:
When you’re letting the readers choose the outfit-

label choose_outfit
NARR
Which outfit do you want to wear?
choice “outfit 1” {
#scene here#
NARR
Are you sure you want to wear this outfit?
choice “yes” {
gain outfit1
} “no, I want to try the others” {
goto choose_outfit
}
} “Outfit 2” {
#scene here#
NARR
Are you sure you want to wear this outfit?
choice “yes” {
gain outfit2
} “no, I want to try the others” {
goto choose_outfit
}
} “Outfit 3” {
#scene here#
NARR
Are you sure you want to wear this outfit?
choice “yes” {
gain outfit3
} “no, I want to try the others” {
goto choose_outfit
}
}

Then when you’re coding the scene where you need to remember which outfit the reader chose you can do like this:

if (outfit1) {
@CHARACTER changes into outfit1_name
#scene here#
} elif (outfit2) {
@CHARACTER changes into outfit2_name
#scene here#
} else {
@CHARACTER changes into outfit3_name
}

3 Likes

Yes!! got it! thank you so much!!

1 Like

how do i animate my overlays? like for an intro and when the overlays move from the side or fade onto the screen. what codes would work for it and what are the possible animations i could use?

Check out this video for a detailed guide! :blob_sun:

2 Likes

Help me find a story I read and lost

The story is about a young 18 year old wanted to move to America what up family is a part of the mafia so she has a twin brother named Max and then she her father made her moved in with a man and she fell in love with him I just called him teddy bear

1 Like

You are talking about devil in diguise and her name was Muriel

Bump! :heart:

does this apply to other characters too? (not the mc)

Yes. This applies for all characters.

i know how to put my characters behind overlays and all but what would the code/command be to keep them in front of an overlay like for example a desk?

You just put the character at layer with a higher number than the overlay. Suppose the overlay is at layer 2 then you code it like:
@CHARACTER moves to layer 3
Because layer 3 is above 2 the character will appear in front of it. :))

como aser que dos personajes se besen

i tried doing that but apparently my overlay is a built in one and the code won’t work.