Dara Amarie's Official Help Thread! [closed]

generally yes. the higher the number the slower they walk

1 Like

Thank you. :slight_smile:

Try this instead:
Hey are you on your way? |underline, color:blue| I overslept again |reset, no-space|!!

1 Like

Thank you. :slight_smile:

1 Like

i need help with a male template! heres the things i want the reader to customize

skin tone
eyes (eye color)
lips (lip color)
nose
eyebrows (eyebrow color)

Can check out: LIMITED Character Customization Templates & WORKSHOP!

hey, i kinda need help with changing characters;-;

Do you know how to change eye and lip shape?

For example ik how to change eye color: @CHARACTER changes eyesColor into Blue

@CHARACTER changes bodyColor into Color
@CHARACTER changes eyebrows into Eyebrow
@CHARACTER changes eyebrowsColor into Color
@CHARACTER changes face into Face
@CHARACTER changes eyes into Eyes
@CHARACTER changes eyesColor into Color
@CHARACTER changes mouth into Mouth
@CHARACTER changes mouthColor into Color
@CHARACTER changes hair into Hair
@CHARACTER changes hairColor into Color
@CHARACTER changes nose into Nose

1 Like

I’m a bit confused with what you’re trying to do?

You first have these 2 choice options…

But then you start another choice with the first choice option as the next choice’s name?

But then you’re trying to combine the 2 different choices in your if/elif/else which doesn’t make sense and is also not possible…

Try reading through this guide to understand how an if/elif/else works and how to remember choices in the correct format: DARA’S GUIDE: Remember Choices with if/elif/else

:blush::blush: tysm for the help!

Is there a way to flip an overlay horizontillay by code?

.

Could you help me with this please. I have been trying to do clothing choices and this keeps coming up.

The format of your dressing game is a bit odd and not really correct. Also, some brackets are facing the wrong way or not placed in the right spots. Take a look at this to see how a dressing game should look:

Thank you i guess the girl in the video did it wrong

It now say’s this

Do you have more than 3 options? If so remove the word choice on line 91, then remove the bracket on line 90

Thank you so much it worked. I forgot i copy and pased and didn’t delete the word “choice”

Hi I would love to get some help for my story and some questions! I am very new to this but i’ve read the guides but it was hard to keep up with them and hoped someone here in the community could help me out because what I want to do is pretty complex for me and I just wanna be able to do them as I don’t have inspiration to do it simple sometimes.

I want to let the player be able to choose their gender, is that possible to do and how do I go about it? I want the person to be able to choose the gender, the name and the CC, but how do I go about it?
I have done a little of it, but the rest I don’t know how to do it with the CC and yeah. Is there something wrong with my script or could I do it better?

    NARR
Do you want to play as the girl in the story

    NARR
Or do you want to play as the boy in the story?

choice
“I want to play as the girl”{
gain play_girl

@YOU G enters from right to screen center AND YOU G faces left
@YOU G starts flirt_wink_atcamera
@zoom on 130 231 to 126% in 0

}
“I want to play as the boy”{
gain play_boy

@YOU B enters from left to screen center AND YOU B faces right
@YOU B starts flirt_wink_atcamera
&zoom on 130 231 to 126% in 0
}

if (play_girl) {
@YOU G starts flirt_wink_atcamera
@zoom on 130 231 to 126% in 0

    NARRATOR
But, you do need a first name and a last name!

input What is your first name? | What is your first name? | Done (YOU)
input What is your last name? | What is your last name? | Done (LM)

    YOU G (talk_exclaim_yes_happy)
I LOVE IT!

    YOU G (sing_energetic_loop)
I am [YOU] [LM]!

@YOU G is laugh_giggle

    YOU G (talk_agree_happy)
For real though, I like it.

} elif(play_boy) {

@YOU B starts flirt_wink_atcamera
@zoom on 130 231 to 126% in 0

    NARRATOR
But, you do need a first name and a last name!

input What is your first name? | What is your first name? | Done (YOU)
input What is your last name? | What is your last name? | Done (LM)

    YOU B (talk_flirt_charming_atcamera)
[YOU] [LM]... I like that.

}
else {

}

2 Likes