BABES!!!
Help me, please!!!
If I want the MC to borrow the jacket of the LI, how do I do it?!
Thank you <3
PLEASE Go and check my new story: The Heat
Link: http://episodeinteractive.com/s/5744578577760256
BABES!!!
Help me, please!!!
If I want the MC to borrow the jacket of the LI, how do I do it?!
Thank you <3
PLEASE Go and check my new story: The Heat
Link: http://episodeinteractive.com/s/5744578577760256
You can either make the maleâs jacket into an overlay or search for something similar in the female section and create an outfit for the girl with it in it.
Right, but how do I do this?
Coding speaking
For the overlay:
You have to first âcopyâ the jacket into an image manipulation program and turn it into a PNG format. Then upload it into the portal under overlays. Then for coding:
INT. BACKGROUND - DAY (<-- your backgroundâs name) with BOY JACKET to x y z
&GIRL spot x y z AND GIRL faces right
&BOY spot x y z AND BOY faces left
CHAR1 (talk_flirt_coy)
Thank you for the jacket.
To place the jacket in the right place, you click on âShow Helpersâ in the previewer, then âSpot Directingâ --> âChange overlayâ and then place it where you think it fits, use âSwitch to: scaleâ if necessary. And then you copy the right spot command from under the previewer into your script.
For the outfit:
First check which jackets look similar for a male and female character. Then create the same outfit your character has currently on but + the jacket. Then for the coding (example):
@BOY is tinker_loop_rear
@GIRL changes into outfit_with_jacket
@BOY is idle
GIRL (talk_sheepish)
Thank you.
Hope itâs understandable
perfect!!! Thank uuu
one more question:
This also works when the outfit she is wearing was decided by the readers choice?
Only if the outfit is remembered by the script, meanig your outfit game should look like this:
label outfit
NARR
Choose an outfit:
choice
âOption 1â {
@GIRL changes into outfit1
NARR
Do you want to wear this outfit?
choice
âYesâ {
gain outfit1
}âNo, let me see other optionsâ {
goto outfit
}
}âOption 2â {
.
.
.
and so on.
Youâll have to create a seperate outfit with the jacket for each option. Then to ârecallâ the outfit:
if (outfit1){
@GIRL changes into outfit1_with_jacket
}elif (outfit2){
@GIRL changes into outfit2_with_jacket
}
.
.
. etc.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.