By Dara
label dressing_game_1 CHARACTER (animation) What do I want to wear? choice "Outfit 1" { @CHARACTER changes into Outfit1 #add your own dialogue and animations CHARACTER (animation) Is this the one? choice "It's perfect!" { gain Flag_Name_1 #change the flag name to whatever you want #flag names can only have letters, numbers, and underscores. No spaces } "No, I want to try on the others!" { goto dressing_game_1 } #### OUTFIT 2 STARTS HERE #### } "Outfit 2" { @CHARACTER changes into Outfit2 #add your own dialogue and animations CHARACTER (animation) Is this the one? choice "It's perfect!" { gain Flag_Name_2 #change the flag name to whatever you want #flag names can only have letters, numbers, and underscores. No spaces } "No, I want to try on the others!" { goto dressing_game_1 } #### OUTFIT 3 STARTS HERE #### } "Outfit 3" { @CHARACTER changes into Outfit3 #add your own dialogue and animations CHARACTER (animation) Is this the one? choice "It's perfect!" { gain Flag_Name_3 #change the flag name to whatever you want #flag names can only have letters, numbers, and underscores. No spaces } "No, I want to try on the others!" { goto dressing_game_1 } }
Remember Flags:
if (Flag_Name_1) { #replace Flag_Name_1 with your flag name @CHARACTER changes into Outfit1 } elif (Flag_Name_2) { #replace Flag_Name_2 with your flag name @CHARACTER changes into Outfit2 } else { #This is where the third option goes @CHARACTER changes into Outfit3 }