How to keep an outfit choice the same

if change_of_clothes is “Old clothes 1” {
@MC changes into Old outfit 1 VB

} elif change_of_clothes is “Old clothes 2” {
@MC changes into Old clothes 2 VB

} else change_of_clothes_1 is “Old Clothes 3” {
@MC changes into Old Clothes 3 VB

}

Am I missing something because I keep getting an error

That’s how it has to be, unless your script is different.

if (change_of_clothes is “Old clothes 1”) {
@MC changes into Old outfit 1 VB

} elif (change_of_clothes is “Old clothes 2”) {
@MC changes into Old clothes 2 VB

} else {
@MC changes into Old Clothes 3 VB
} 

And this could also help you.

1 Like

Okay, Thank you I’ll try that and thanks for the link

Thanks phoenix it worked

1 Like

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