Hey yall im having problems with the point system but the videosare not helping me

idk know how to do like if your character pick this outfit then something happens

1 Like

I’m not too sure if I got what you mean but:

label outfit

NARRATOR 
What do you want to wear?

choice (outfitscene)

"Outfit 1" {
@CHARACTER changes into OUTFIT
goto sure

}"Outfit 2" {
@CHARACTER changes into OUTFIT
goto sure

}"Outfit 3" {
@CHARACTER changes into OUTFIT
goto sure

}

label sure

NARRATOR
Are you sure?

choice
"Yes"{
goto Continue
}"No" {
goto outfit
} 


label Continue

if (outfitscene is "Outfit 1") {

Add your scene for this outfit here

} elif (outfitscene is "Outfit 2") {

Add your scene for this outfit here

} else {

Add your scene for this outfit here

}

Let me know if this was what you were looking for, and if there are any errors.

finna go try it out ty you btw

1 Like

No problem!

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