Dev isn't an animator, they would look janky and horrible.man is the scenes were animated this would be amazing!
menu:
"Let's say goodmorning." if Mother_Affection in (0, 1, 2, 3, 4, 5, 6, 7, 8, 9):
jump Morning_KissA
label Morning_KissA:
scene MorningKissA_01
with Dissolve(0.5)
Main_Smiling "Well good morning."
scene MorningKissA_02
with Dissolve(0.5)
Mother_Smiling "Well, good morning to you too."
scene MorningKissA_03
with Dissolve(0.5)
if day > 4 and Mother_ShoppingA == False:
Main_Smiling "Let's go shopping and get you some new clothes."
Mother_Smiling "I'd love that."
jump Mother_ShoppingA
Main_Smiling "Let's eat."
$ Mother_Affection += 1
$ time_of_day += 1
jump Preload
return
Guess so.I guess I am the only one disappointed by the addition of a nutsack on an already perfect model.
I didn't lock the scene gallery because most people would rather it be unlocked anyways I think, they make mods to do that kind of thing actually. If I get enough people asking me to put a lock on it I'll see if I can finger it out but for now it's Christmas.hey there! is it ok to have the scene gallery unlocked just after installing the game? or there are more scenes to unlock?
I've played this a while ago. I have to delete any data inside the %appdata% folder maybe?
Ok then, ty! I thought it was something related to a previous version of the game. I'll start a new game in a bit, so... should I expect more scenes than those in the gallery in this version? xDI didn't lock the scene gallery because most people would rather it be unlocked anyways I think, they make mods to do that kind of thing actually. If I get enough people asking me to put a lock on it I'll see if I can finger it out but for now it's Christmas.
no she won't be playable but she'll help the mc in the gameis the twin sister going to be playable? I don't know if it has been asked yet.
Stupid question how to change the valuesOk I found why I couldn't get the shopping with mother : The only goodmorning scene that lead to the shopping is Morning_KissA and the condition for it are :
and here is the scene code :Code:menu: "Let's say goodmorning." if Mother_Affection in (0, 1, 2, 3, 4, 5, 6, 7, 8, 9): jump Morning_KissA
In order to do the shopping trip you must be on day 5 or above (condition in Morning_KissA) and be under 10 Affection (condition to access Morning_KissA) which can be easily reach if you work at the stripclub and do all the washing dishes event (3 per day).Code:label Morning_KissA: scene MorningKissA_01 with Dissolve(0.5) Main_Smiling "Well good morning." scene MorningKissA_02 with Dissolve(0.5) Mother_Smiling "Well, good morning to you too." scene MorningKissA_03 with Dissolve(0.5) if day > 4 and Mother_ShoppingA == False: Main_Smiling "Let's go shopping and get you some new clothes." Mother_Smiling "I'd love that." jump Mother_ShoppingA Main_Smiling "Let's eat." $ Mother_Affection += 1 $ time_of_day += 1 jump Preload return