well, i need help lol, i’m using point system for the outfits tho idk how to remember them in next chapters?
This might help:
okei thank you !
Choice 1 CHAROUTFIT1 (CHAR = character name, OUTFIT represents that an outfit is being remembered, and 1 represents the episode number or the outfit number you’re remembering if you want to have multiple an episode) = 1, choice 2 CHAROUTFIT1 = 2, and so on.
When you want to remember that, just do…
if (CHAROUTFIT1 =1){
@char changes into outfit 1
} elif (…)
Full example:
NARRATOR
What outfit would you like to wear?
choice
"Outfit1"{
@CHAROUTFIT1 =1
@CHAR changes into outfit1
} "Outfit2"{
@CHAROUTFIT1 =2
@CHAR changes into outfit2
} "Outfit 3"{
@CHAR changes into outfit3
@CHARACTER1 =3
}
Later…
if (CHAROUTFIT1 =1){
@CHAR changes into outfit1
} elif (CHAROUTFIT1 =2){
@CHAR changes into outfit2
} elif (CHAROUTFIT1 =3){
@CHAR changes into outfit3
}
1 Like
yepp I did that and it worked
thank you !<33
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.