DARA’S TEMPLATE: Create Your Own Outfit Game

Please visit my website for more templates and guides!
https://www.dara-amarie.com/

Here’s an outfit game I made a while back where you get to choose from 3 tops, 3 bottoms, and 3 shoes to create your own outfit.

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!!

Using this template means 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 with Top1 - (2)Bottom1 with Top2 - (3)Bottom1 with Top3
    • (4)Bottom2 with Top1 - (5)Bottom2 with Top2 - (6)Bottom3 with Top3
    • (7)Bottom3 with Top1 - (8)Bottom3 with Top2 - (9)Bottom3 with 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 and SHIRTS

Here is a video of how the game works.

I used Limelight for the template, but it also works with INK. You just need to change the Limelight animations to INK animations.
Also, you can change the zooms to better fit your scene.

YOU CAN FIND THE TEMPLATE BY CLICKING HERE

35 Likes

Thank you! :smiling_face_with_three_hearts:

1 Like

I will use this one day! :joy:

3 Likes

Same :joy: :100:

3 Likes

Me too!

1 Like

Bump

Bump :fries:

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

Reopened at request of Op

Bump :cake4:

1 Like

This thread helped so much! I’ll be sure to give you credit! I tweaked the template, so I want to share it with you. One problem I found was the “Choose this!” button allows the player to pick no clothes. I made sure the button shows up after the player picked one of the clothing items. Here’s the link: https://docs.google.com/document/d/15HSixJNLAC2_u6R2FsElYEL2XW2Z8ZFETZTqags06oY/edit?usp=sharing

Bottom and Shirt? So you can not use this with costumizable characters?

Yes you can.

1 Like

Hey, I have a question.
I use your ‘Simple Tappable Arrows Dressing Game’ template.
When I press ‘‘No, let me try the others’’ it changes to the last outfit (in this case outfit 5)
Is it possible, that if you press ‘No’ that the last outfit you pressed is still there ? (For example I choose outfit 2 and press NO then outfit 2 stays there instead of changing to outfit 5)
I hope you know what I mean

The template already does that. It doesn’t change to outfit 5 if you choose the “no” option. Your character stays in the last outfit that was chosen when you press the “no” option.

Yes, that’s how it should be. However it doesn’t work for me somehow. And I don’t know why :thinking:

Here a example.

Video

https://files.fm/f/c3rrxjgt

Did you edit the template in any way? Did you remove/edit the points system? Can you copy and paste what you have in your script?

No I didn’t. At least I think so :thinking: :sweat_smile:

Summary

EXT. BLUE - DAY

@MIKU changes into Miku underwear
@MIKU stands screen center

ARROWS DRESSING GAME - 5 OUTFITS {

&ui LEFT_ARROW create and ui LEFT_ARROW scales to 0.8 0.8 in 0 and ui LEFT_ARROW shifts to 7 187 in 0 and ui LEFT_ARROW opacity 1 in 0
&ui RIGHT_ARROW create and ui RIGHT_ARROW scales to 0.8 0.8 in 0 and ui RIGHT_ARROW shifts to 250 187 in 0 and ui RIGHT_ARROW opacity 1 in 0
&ui CHOOSE create and ui CHOOSE scales to 0.4 0.4 in 0 and ui CHOOSE shifts to 75 110 in 0 and ui CHOOSE opacity 0 in 0

tappable
“LEFT_ARROW” {
&ui CHOOSE opacity 0.8 in 0.1
goto tap_outfit_5
} “RIGHT_ARROW” {
&ui CHOOSE opacity 0.8 in 0.1
goto tap_outfit_1
}

label tap_outfit_1
@MIKU =1
################## CHANGE OUTFIT NAME TO YOUR 1ST OUTFIT ###############
@MIKU changes into Miku party

tappable
“LEFT_ARROW” {
goto tap_outfit_5
} “RIGHT_ARROW” {
goto tap_outfit_2
} “CHOOSE” {
goto tap_outfit_choose
}

label tap_outfit_2
@MIKU =2
################## CHANGE OUTFIT NAME TO YOUR 2ND OUTFIT ###############
@MIKU changes into Miku party2

tappable
“LEFT_ARROW” {
goto tap_outfit_1
} “RIGHT_ARROW” {
goto tap_outfit_3
} “CHOOSE” {
goto tap_outfit_choose
}

label tap_outfit_3
@MIKU =3
################## CHANGE OUTFIT NAME TO YOUR 3RD OUTFIT ###############
@MIKU changes into Miku party3

tappable
“LEFT_ARROW” {
goto tap_outfit_2
} “RIGHT_ARROW” {
goto tap_outfit_4
} “CHOOSE” {
goto tap_outfit_choose
}

label tap_outfit_4
@MIKU =4
################## CHANGE OUTFIT NAME TO YOUR 4TH OUTFIT ###############
@MIKU changes into Miku outfit

tappable
“LEFT_ARROW” {
goto tap_outfit_3
} “RIGHT_ARROW” {
goto tap_outfit_5
} “CHOOSE” {
goto tap_outfit_choose
}

label tap_outfit_5
@MIKU =5
################## CHANGE OUTFIT NAME TO YOUR 5TH OUTFIT ###############
@MIKU changes into Miku outfit2

tappable
“LEFT_ARROW” {
goto tap_outfit_4
} “RIGHT_ARROW” {
goto tap_outfit_1
} “CHOOSE” {
goto tap_outfit_choose
}

label tap_outfit_choose
&ui LEFT_ARROW opacity 0 in 0.1 and ui RIGHT_ARROW opacity 0 in 0.1 and ui CHOOSE opacity 0 in 0.1
@MIKU is primp_neutral
NARRATOR
Are you sure you want to wear this outfit?
choice
“Yes!” {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Arrows Dressing Game Template Credit
@MIKU is kiss_blow_happy_atcamera
} “No, let me try the others” {
&MIKU starts idle and ui LEFT_ARROW opacity 1 in 0.1 and ui RIGHT_ARROW opacity 1 in 0.1 and ui CHOOSE opacity 0.8 in 0.1
if (CHARACTER =1) {
goto tap_outfit_1
} elif (CHARACTER =2) {
goto tap_outfit_2
} elif (CHARACTER =3) {
goto tap_outfit_3
} elif (CHARACTER =4) {
goto tap_outfit_4
} else {
goto tap_outfit_5
}
}

ARROWS DRESSING GAME - 5 OUTFITS }

When use change the character name in a template, make sure you only highlight just the name and not include the @ sign, that way all CHARACTER gets changed to your character’s name. You need to change CHARACTER in the if/elif to your characters name.

Ahh I didn’t realize that! Good to know. Thanks a lot :blush: