Tappable overlay dressing game with arrows with remembering outfits & without [TEMPLATE]

Hey guys, I decided to share my tappable overlay dressing game with arrows.
If you use it, feel free to credit me, my ig is @nellyy.epi.

This code is without remembering choices
Steps :

  • First, you need three overlays, two arrow overlays [left and right] and then a check/tick overlay.
    If you don’t have any, you can find some on pngtree.com

  • Make your overlays appear with the code @overlay OVERLAYNAME create AND overlay OVERLAYNAME opacity 1 in T then place your overlays at the position that you want them to be.
    If you don’t know how to place/size overlays, check Dara’s guide here : Placing & Animating Overlays

  • Lastly, copy paste this code and change the overlay/outfit/character names.

label dress

tappable “ARROW LEFT”{
@GIRL changes into GIRL_OUTFIT3
goto tap
}“ARROW RIGHT”{
@GIRL changes into GIRL_OUTFIT1
goto tap
}“CHECK”{
GIRL (talk_neutral)
This should be it.
goto dress_end
}

label tap
tappable “ARROW LEFT”{
@GIRL changes into GIRL_OUTFIT2
goto tap1
}“ARROW RIGHT”{
@GIRL changes into GIRL_OUTFIT2
goto tap1
}“CHECK”{
GIRL (talk_neutral)
This should be it.
goto dress_end
}

label tap1
tappable “ARROW LEFT”{
@GIRL changes into GIRL_OUTFIT1
goto dress
}“ARROW RIGHT”{
@GIRL changes into GIRL_OUTFIT3
goto dress
}“CHECK”{
GIRL (talk_neutral)
This should be it.
goto dress_end
}

label dress_end
label dress_end
if (DRESS =0){
NARR
You need to choose an outfit first.
goto dress
}
@GIRL exits left

  • You should be done!

This code is with remembering choices with POINTSYSTEM
Steps :

  • First, you need three overlays, two arrow overlays [left and right] and then a check/tick overlay.
    If you don’t have any, you can find some on pngtree.com

  • Make your overlays appear with the code @overlay OVERLAYNAME create AND overlay OVERLAYNAME opacity 1 in T then place your overlays at the position that you want them to be.
    If you don’t know how to place/size overlays, check Dara’s guide here : Placing & Animating Overlays

  • Create a character on who you will hold points, if you copy paste my code name your character DRESS

  • Lastly, copy paste this code and change the overlay/outfit/character names.

label dress
@DRESS =0
@GIRL is idle

tappable “ARROW LEFT”{
@GIRL changes into GIRL_OUTFIT3
@DRESS =3
goto tap
}“ARROW RIGHT”{
@GIRL changes into GIRL_OUTFIT1
@DRESS =1
goto tap
}“CHECK”{
GIRL (talk_neutral)
This should be it.
goto dress_end
}

label tap
tappable “ARROW LEFT”{
@GIRL changes into GIRL_OUTFIT2
@DRESS =2
goto tap1
}“ARROW RIGHT”{
@GIRL changes into GIRL_OUTFIT2
@DRESS =2
goto tap1
}“CHECK”{
GIRL (talk_neutral)
This should be it.
goto dress_end
}

label tap1
tappable “ARROW LEFT”{
@GIRL changes into GIRL_OUTFIT1
@DRESS =1
goto dress
}“ARROW RIGHT”{
@GIRL changes into GIRL_OUTFIT3
@DRESS =3
goto dress
}“CHECK”{
GIRL (talk_neutral)
This should be it.
goto dress_end
}

label dress_end
if (DRESS =0){
NARR
You need to choose an outfit first.
goto dress
}
@GIRL exits left

Whenever you need your character to remember her/his outfit, use this code :
if (DRESS =1){
@GIRL changes into GIRL_OUTFIT1
}elif (DRESS =2){
@GIRL changes into GIRL_OUTFIT2
}elif (DRESS =3){
@GIRL changes into GIRL_OUTFIT3
}

Whenever you need to use this template again, remember to set your dressing character to 0 points with the code @DRESS =0

  • You should be done!

I hope that you found this post useful :blush:

4 Likes

Bookmarked this, thank you.

1 Like

No problem, I’m trying to make a gain/remembering outfits code of this as well.

1 Like

I have coded this in one of my stories with Tia, with gains, and a freckles/no-freckles choice. I’m actually really fammiliar with directing, so I made the template quickly. If you guys want it you can PM us! :smiley::+1:

1 Like

Found a way! I’ll edit this post with the remembering choices option as well.

1 Like

Done :smiley:

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