Pretty much what the title says. I’ve tried the code again and left my mc in the scene just offscreen and the duplicate character’s body type still didn’t change to match. Everything else changed except the body type, so I don’t know if it’s something I can fix or a glitch.
you can see Dara’s guide or just put the script i put.(:
@CHARACTER changes body into Body Name
I did use Dara Amarie’s templates for CC, so everything works. The problem is when I use @CHARACTER2 becomes CHARACTER1, CHARACTER2 doesn’t change into CHARACTER1’s body type.
then use this script in your coding and that’s it.
@CHARACTER2 changes body into Body Name
Hello there!
If you want CHARACTER2 to change into CHARACTER1’s body type and you know exactly which body type CHARACTER1 has, you can simply use this code:
@CHARACTER2 changes body into Body Name
like @phoenix.brunet suggested.
(Keep in mind that this code won’t work with the Plus Size body type though)
However, if you don’t know CHARACTER1’s body type because you gave the readers a CC option, you can let the readers choose CHARACTER2’s body type via choice:
label character2_bodytype
NARRATOR
Choose CHARACTER2's body type.
choice
"Athletic" {
@CHARACTER2 changes body into Female Athletic Body
@pause for 1
goto character2_bodytype
} "Soft Female" {
@CHARACTER2 changes body into Female Soft Body
@pause for 1
goto character2_bodytype
} "Generic Female" {
@CHARACTER2 changes body into Female Generic Body
@pause for 1
goto character2_bodytype
} <PREMIUM> "Done" {
}
NARRATOR
Are you sure this is CHARACTER2's body type?
choice
"Yes." {
} "No, let me pick again." {
goto character2_bodytype
}
Hope this helps, if not, feel free to PM me.
Thank you for answering, but I figured out a way to fix it using the points system. I appreciate the help though
Well, good for you! how did you do it?
I created characters for the body types and added points based on the body type chosen when the MC is customized, then elif code when the duplicate character is customized. I adapted it from when the points system is used for skin color so arm/hand overlays used throughout a story will match. I’m just happy it worked
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.