By Dara

An advanced dressing game that let's the reader create their own outfit using 3 tops, 3 bottoms, and 3 shoes.

BE WARNED! This is an extremely complicated code! I advise to not try to use this code if you are not an advanced director and are not familiar with if/elif/else or the point system!

You will have to create 39 different outfits:

Create 3 different outfits with just the bottoms (no tops or shoes. ADD A BRA)

Create 9 outfits for bottom with tops combinations

(1)Bottom1/Top1 - (2)Bottom1/Top2 - (3)Bottom1/Top3

(4)Bottom2/Top1 - (5)Bottom2/Top2 - (6)Bottom2/Top3

(7)Bottom3/Top1 - (8)Bottom3/Top2 - (9)Bottom3/Top3

Then create all the 27 different combinations (with top, bottom, and shoes)

This template uses the point system for 2 different characters, so you will need to create characters named BOTTOMS & SHIRTS

You must copy and paste the template into your script first!
Then you need to change the template’s character name to your character’s name.
Follow these instructions in order :

Highlight “FEMALEAVATAR” in your script

Press Ctrl + F on your keyboard (Cmd + F for Macs)

A small grey box will pop up, click on ALL first!

Type in your character’s name in all caps

This template also works in INK. You just need to change the Limelight animations to INK animations.

You may also adjust zooms to better fit your scene.

 

INT. JUVIE WELLES BEDROOM - DAY
@FEMALEAVATAR changes into Undies
@FEMALEAVATAR spot 1.137 160 133 in zone 2
@cut to zone 2 and zoom reset

@pause for 5

        NARRATOR
    Are you ready to create your outfit?
    Let's get started!

label create_outfit

@BOTTOMS =0
@SHIRTS =0
@FEMALEAVATAR changes into Undies
@FEMALEAVATAR starts idle

@zoom on 479 214 to 220% in 0.8

label bottoms
@FEMALEAVATAR starts idle
@zoom on 479 214 to 220% in 0

        NARRATOR
    Choose your bottoms.

choice
"Skirt" {
@FEMALEAVATAR changes into Skirt
@BOTTOMS =1
@pause for 0.8
goto bottoms

} "Shorts" {
@FEMALEAVATAR changes into Shorts
@BOTTOMS =2
@pause for 0.8
goto bottoms

} "Jeans" {
@FEMALEAVATAR changes into Jeans
@BOTTOMS =3
@pause for 0.8
goto bottoms

}<PREMIUM>"Choose this!" {
}

@zoom on 486 384 to 273% in 0.8


label shirts
@zoom on 486 384 to 273% in 0

        NARRATOR
    Choose your top.

choice
"Tank" {
if (BOTTOMS = 1) {
@FEMALEAVATAR changes into skirttank
} elif (BOTTOMS = 2) {
@FEMALEAVATAR changes into shortstank
} elif (BOTTOMS = 3) {
@FEMALEAVATAR changes into jeanstank
}
@SHIRTS =4
@pause for 0.8
goto shirts

} "Sweater" {
if (BOTTOMS = 1) {
@FEMALEAVATAR changes into skirtsweater
} elif (BOTTOMS = 2) {
@FEMALEAVATAR changes into shortssweater
} elif (BOTTOMS = 3) {
@FEMALEAVATAR changes into jeanssweater
}
@SHIRTS =5
@pause for 0.8
goto shirts

} "Blouse" {
if (BOTTOMS = 1) {
@FEMALEAVATAR changes into skirtblouse
} elif (BOTTOMS = 2) {
@FEMALEAVATAR changes into shortsblouse
} elif (BOTTOMS = 3) {
@FEMALEAVATAR changes into jeansblouse
}
@SHIRTS =6
@pause for 0.8
goto shirts

}<PREMIUM>"Choose this!" {
}


@zoom on 477 10 to 433% in 0.8

label shoes
@zoom on 477 10 to 433% in 0

        NARRATOR
    Choose your shoes.

choice
"Wedges" {
if (BOTTOMS = 1) {
if (SHIRTS = 4) {
@FEMALEAVATAR changes into skirttankflats
} elif (SHIRTS = 5) {
@FEMALEAVATAR changes into skirtsweaterflats
} elif (SHIRTS = 6) {
@FEMALEAVATAR changes into skirtblouseflats
}
} elif (BOTTOMS = 2) {
if (SHIRTS = 4) {
@FEMALEAVATAR changes into shortstankflats
} elif (SHIRTS = 5) {
@FEMALEAVATAR changes into shortssweaterflats
} elif (SHIRTS = 6) {
@FEMALEAVATAR changes into shortsblouseflats
}
} elif (BOTTOMS = 3) {
if (SHIRTS = 4) {
@FEMALEAVATAR changes into jeanstankflats
} elif (SHIRTS = 5) {
@FEMALEAVATAR changes into jeanssweaterflats
} elif (SHIRTS = 6) {
@FEMALEAVATAR changes into jeansblouseflats
}
}

@pause for 0.8
goto shoes


} "Heels" {
if (BOTTOMS = 1) {
if (SHIRTS = 4) {
@FEMALEAVATAR changes into skirttankheels
} elif (SHIRTS = 5) {
@FEMALEAVATAR changes into skirtsweaterheels
} elif (SHIRTS = 6) {
@FEMALEAVATAR changes into skirtblouseheels
}
} elif (BOTTOMS = 2) {
if (SHIRTS = 4) {
@FEMALEAVATAR changes into shortstankheels
} elif (SHIRTS = 5) {
@FEMALEAVATAR changes into shortssweaterheels
} elif (SHIRTS = 6) {
@FEMALEAVATAR changes into shortsblouseheels
}
} elif (BOTTOMS = 3) {
if (SHIRTS = 4) {
@FEMALEAVATAR changes into jeanstankheels
} elif (SHIRTS = 5) {
@FEMALEAVATAR changes into jeanssweaterheels
} elif (SHIRTS = 6) {
@FEMALEAVATAR changes into jeansblouseheels
}
}
@pause for 0.8
goto shoes


} "Boots" {
if (BOTTOMS = 1) {
if (SHIRTS = 4) {
@FEMALEAVATAR changes into skirttankboots
} elif (SHIRTS = 5) {
@FEMALEAVATAR changes into skirtsweaterboots
} elif (SHIRTS = 6) {
@FEMALEAVATAR changes into skirtblouseboots
}
} elif (BOTTOMS = 2) {
if (SHIRTS = 4) {
@FEMALEAVATAR changes into shortstankboots
} elif (SHIRTS = 5) {
@FEMALEAVATAR changes into shortssweaterboots
} elif (SHIRTS = 6) {
@FEMALEAVATAR changes into shortsblouseboots
}
} elif (BOTTOMS = 3) {
if (SHIRTS = 4) {
@FEMALEAVATAR changes into jeanstankboots
} elif (SHIRTS = 5) {
@FEMALEAVATAR changes into jeanssweaterboots
} elif (SHIRTS = 6) {
@FEMALEAVATAR changes into jeansblouseboots
}
}
@pause for 0.8
goto shoes

}<PREMIUM>"Choose this!" {
}


&FEMALEAVATAR is idle_handsonhips_neutral_loop
@zoom on 477 10 to 100% in 1
@pause for 0.5
&FEMALEAVATAR spot 1.137 160 144 in zone 2 and FEMALEAVATAR faces right and FEMALEAVATAR is talk_handsonhips_neutral_rear
@pause for 0.5
&FEMALEAVATAR spot 1.137 160 144 in zone 2 and FEMALEAVATAR faces left and FEMALEAVATAR is talk_handsonhips_neutral_rear
@pause for 0.5
@FEMALEAVATAR spot 1.137 160 133 in zone 2 and FEMALEAVATAR faces left and FEMALEAVATAR is primp_neutral

        NARRATOR
    How does your outfit look?

choice
<PREMIUM>"Awesome!" {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Outfit Template Credit
@FEMALEAVATAR is dance_groove_happy_loop
} "I want to try again." {
goto create_outfit
}