Hi can anyone help me, i want the character changing back into the outfit they had at the start of the episode without her needing to re-pick it i’m not sure how it works, what would the template be? I know it has to do with a combination of “ifs”
No stress! Just put @CHARACTER changes into outfit. If it was the outfit they had on since the start
No i mean in my story the girl tries to hide by putting a mask on the only thing is i gave a choice of two outfit choices so i won’t know hich one they picked without the if command.
oh, sorry i didn’t know what you meant.
Use the choice & name method for when they first pick the outfit that way you can remember it for later.
Thank You
You will need to use the naming choice method and use the if/else to change your character into the same outfit with the mask then use the if/else again to change them back.
choice (OUTFIT)
“Option 1”{
scene here
}
“Option 2”{
scene here
}
If (OUTFIT is “Option 1”){
change your character into the same outfit but with the mask
}else{
change your character into option 2 outfit with the mask
}
to change your character back
if(OUTFIT is “Option 1”){
change your character into original outfit
}else{
change your character into option 2 original outfit
}
I hope this helps a little!
Yes thank you i was able to do it
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.