how can we make our character walk in same spot position??, whenever the animation starts the spot position of character automatically changes.
You mean to just walk in place without moving to a different spot? You would just need to make your character do a walking animation.
Another reminder:
Please keep in mind that this is my help thread and I run this thread on my own. Thank you.
The dripping mascara I’m pretty sure is behind @Nikkie, can I get some help? It’s not showing over her. I don’t think I’m doing anything wrong.
The layer command needs to be after the create command. It can’t go before it because it hasn’t been created yet.
hi dara i was wondering if you could help me with making characters run super fast on screen i always get stuck on that and im making a vampire story
@CHARACTER walks to [spot] in [time] and CHARACTER does it while [run_animation]
For super fast, the time should be less than 1 second, like 0.5 or 0.7 or whatever you want.
Have you tried fixing the error on line 231, saving, then refreshing web previewer?
yes
Hi Dara,
I want to thank you for your templates, they are very helpful! I have a question about the choice box. Is there a way to move the choice option boxes, like we can with the speech bubbles? Thank you for your time.
Hey Dara.
I need help with my script. I have a scene where my character needs to change her clothes but I can’t make it like she’ll be able to look at the outfit and then change. Like when you push the button its just the outfit you get and the story moves on but I want to give my readers a change to see the outfits and then decide. How do I do that?
Love CERW
This may seem like a weird and silly question but I’ll try to be clear as possible lol.
What’s the script to make SURE someone selected something first instead of immediately letting them confirm?
This is for not just dressing games where people will accidentally select "yes’ before actually changing into anything (causing characters inscript to be in scenes without a towel). I’d like to know this so I can “make/force” readers choose their natural lipcolor, for instance, that way I can duplicate a “child” version inscript by making sure that the reader selects the natural lip color for said character.
This is the template for the natural lip color for INK you gave me for example. How do I get rid of the confirm option BEFORE the reader selects their actual choice if that makes sense?
Sorry, idk why but you’d think I’d be used to the “yes and no” kinda choices by now since I’ve been already toying around with more advanced options lmfao and actually doing well with them.
label femlip_natural1
NARRATOR
Choose a natural lip color.
choice [shouldPaginate: YES]
“Blush” {
@FEMALEAVATAR changes mouthColor into Blush
goto femlip_natural1
} “Dune” {
@FEMALEAVATAR changes mouthColor into Dune
goto femlip_natural1
} “Ivory” {
@FEMALEAVATAR changes mouthColor into Ivory
goto femlip_natural1
} “Sand” {
@FEMALEAVATAR changes mouthColor into Sand
goto femlip_natural1
} “Olive” {
@FEMALEAVATAR changes mouthColor into Olive
goto femlip_natural1
} “Done” {
goto femlip_end1
}
“Mocha” {
@FEMALEAVATAR changes mouthColor into Mocha
goto femlip_natural1
} “Taupe” {
@FEMALEAVATAR changes mouthColor into Taupe
goto femlip_natural1
} “Terracotta” {
@FEMALEAVATAR changes mouthColor into Terracotta
goto femlip_natural1
} “Toffee” {
@FEMALEAVATAR changes mouthColor into Toffee
goto femlip_natural1
} “Umber” {
@FEMALEAVATAR changes mouthColor into Umber
goto femlip_natural1
} “Done” {
goto femlip_end1
}
“Rosewood” {
@FEMALEAVATAR changes mouthColor into Rosewood
goto femlip_natural1
} “Dark” {
@FEMALEAVATAR changes mouthColor into Dark
goto femlip_natural1
} “Sable” {
@FEMALEAVATAR changes mouthColor into Sable
goto femlip_natural1
} “Crimson” {
@FEMALEAVATAR changes mouthColor into Crimson
goto femlip_natural1
} “Chestnut” {
@FEMALEAVATAR changes mouthColor into Chestnut
goto femlip_natural1
} “Done” {
goto femlip_end1
}
label femlip_end1
NARRATOR
Is this the right lip color?
choice
“Yes it is!” {
#continue
} “No, let me try the others” {
goto femlip_natural1
}
@pause for 0
readerMessage Template created by @dara.amarie.ep on IG!
Aye, Dara.
So, my character is falling from the ceiling and I want the camera to shake harder than a twerk contest. But even with the episode Life template I can’t do it. Can you help me?
INT. DELI OL - DAY
&zoom on 320 31 to 122% in 0
@CALYPSO spot 1.019 60 468
@CALYPSO walks to spot 1.019 60 3 in 3 AND CALYPSO is surf_crowd_loop
sound body_drop
@zoom on 320 0 to 122% in 0.3
&zoom on 320 108 to 122% in 0.3
&zoom on 280 108 to 122% in 0.3
&zoom on 317 195 to 122% in 0.3
@CALYPSO spot 0.965 113 146 AND CALYPSO faces right AND CALYPSO is stand_up
@CALYPSO is dustoff_loop
@pause for a beat
CALYPSO (idle_wounded)
Ouch.
Hello! I am not new to the episode community but for writing I am! But as I am a beginner I need some help with the coding as I want my first story to really stand out. I have watched some youtube videos but I think it will be easier one on one! Please reply.
Kind regards,
Amy
Hi this is my first story and I am having trouble with character placement, I would like my character to turn away and walk away from the camera as such. I would like your assistance with how to write that as a command, please
Thanks
You can only move the boxes higher or lower on the screen by moving the speech bubble.
You need a confirmation choice after the dressing choice to choose whether to go back and start the dressing game over or to continue. HERE is how that’s done.