<<nobr>>
<div style="margin-top:5vw;">
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/intro.jpg'" >
</div>
<div class="intro">
<p style="margin:0;margin-top:1.5%;">Please, read this</p>
This game is intended for <span style="color:#ff7bac;">mature audience only</span>
<br>
<p style="margin:0;margin-bottom:2%;">By clicking on button below, you will be confirming you are an adult. </p>
<!-- <div class="intro_button" data-passage="Intro_0" >
<p >Skip Intro</p>
</div> -->
<div class="intro_button" data-passage="Settings" >
<p >Start</p>
</div>
<div>
<p style="notation_text">Created by The Twist | Game version: v0.2 "Episode 2"</p>
</div>
<div>
<p style="notation_text">We hope you enjoy this game! With ♥ from The Twist.</p>
</div>
<</nobr>>
<<script>>
UIBar.hide();
<</script>>
<<set $currentDay to 0 >>
<<set $currentTime to 4 >>
<<set $mc_stats_arr = [] >>
<<set $character_stats_arr = [] >>
<<set $message to "" >>
<<set $kitchenEvent to 0>>
<<set $kitchenClean to 0 >>
<<set $poolClean to 0 >>
<<set $roomClean to 0 >>
<<set $eventCount = 0>>
<<set $exercise = 0>>
<<set $swimming = 0>>
<<set $laundry = 0>>
<<set $stealing = 0>>
<<set $activityType to "">>
<<set $activityImage to "">>
<<set $activityVideo to "">>
<<set $mediaType to "">>
<<set $kitchenTalk to 0>>
<<set $bedroomTalk to 0>>
<<set $poolTalk to 0>>
<<set $livingTalk to 0>>
<<set $myroomTalk to 0>>
<<include "CharacterInit" >>
<<include "TimeInit" >>
Character Init:
<<set $mc = {
"name" : "Mark",
"lastname" : "Williams",
"age" : 18,
"stats" :
{
"energy" : 0,
"knowledge": 0,
"stamina": 0,
"money" : 0,
"morality" : 0,
"mom_love" : 0,
"mom_lust": 0,
"mom_rel": 0,
},
"inventory" : {
"bikini" : 0,
"camera" : 0,
"groceries" : 0,
"dress" : 0,
"flower" : 0,
"tools" : 0,
},
"skills" :
{
"massage" : 0,
"sexual" : 0,
"action" : 0,
"skills" : 0,
}
}
>>
<<set $mom = {
"name" : "Mona",
"lastname" : "Williams",
"age" : 40,
"rel" : "Step-Mother",
"call": "Mrs. Mona Willams",
}
>>
<<set $gf = {
"name" : "Jenna",
"lastname" : "Mason",
"age" : 18,
"rel" : "Girlfriend",
"call": "Jenna",
}
>>
<<set $dad = {
"name" : "Rick",
"lastname" : "Williams",
"age" : 18,
"rel" : "Dad",
"call": "Mr. Rick Williams",
}
>>
<<set $talkEvent = {
'kitchen' : {
'title' : ["Kitchen_Talk_1","Kitchen_Talk_3","Kitchen_Talk_8","Kitchen_Talk_11"],
'status' : [0,0,0,0],
'rel' : [30,130,230,330],
'knowledge' : [30,180,330,480],
'count' : [0,0,0,0],
},
'bedroom' : {
'title' : ["Bedroom_Talk_2", "Bedroom_Talk_7","Bedroom_Talk_14"],
'status' : [0,0,0],
'rel' : [50,150,250],
'knowledge' : [60,210,360],
'count' : [0,0,0],
},
'living' : {
'title' : ["Living_Talk_6", "Living_Talk_9", "Living_Talk_15"],
'status' : [0,0,0],
'rel' : [70,170,270],
'knowledge' : [90,240,390],
'count' : [0,0,0],
},
'myroom' : {
'title' :["Myroom_Talk_5", "Myroom_Talk_10", "Myroom_Talk_12"],
'status' : [0,0,0],
'rel' : [90,190,290],
'knowledge' : [120,270,420],
'count' : [0,0,0],
},
'pool' : {
'title' :["Pool_Talk_4", "Pool_Talk_13", "Pool_Talk_16"],
'status' : [0,0,0],
'rel' : [110,210,310],
'knowledge' : [150,300,450],
'count' : [0,0,0],
},
}
>>
<<set $bathroom = {
"title" : [""],
"status": [0],
"time" : [4],
"money": [100],
"morality": [80],
"mom_lust": [0],
"mom_love": [230],
"mom_rel": [0],
"day": [0],
"stamina": [230],
}
>>
<<set $bedroom = {
"title" : ['Event_11','Event_14',],
"status": [0,0,],
"time" : [4,4],
"money": [100,100,],
"morality": [120,150],
"mom_lust": [90,120],
"mom_love": [120,150],
"mom_rel": [40,120,],
"day": [0,1,],
"stamina": [120,150],
}
>>
<<set $kitchen = {
"title" : ['Event_13',],
"status": [0,],
"time" : [1],
"money": [100],
"morality": [140],
"mom_lust": [110],
"mom_love": [140],
"mom_rel": [50],
"day": [0],
"stamina": [140],
}
>>
<<set $myroom = {
"title" : ["Event_7","Event_12", ],
"status": [0,0],
"time" : [4,4],
"money": [100,100],
"morality": [80,130],
"mom_lust": [50,100],
"mom_love": [80,130],
"mom_rel": [0,0,],
"day": [0,0],
"stamina": [80,130],
}
>>
<<set $pool = {
"title" : ["Event_0","Event_1","Event_2","Event_3","Event_4","Event_5", ],
"status": [0,0,0,0,0,0],
"time" : [2,2,2,2,2,2],
"money": [100,100,100,100,100,100],
"morality": [10,20,30,40,50,60],
"mom_lust": [0,0,0,10,20,30,],
"mom_love": [10,20,30,40,50,60],
"mom_rel": [0,0,0,0,0,0],
"day": [0,0,0,0,0,0],
"stamina": [10,20,30,40,50,60],
}
>>
<<set $living = {
"title" : ["Event_6","Event_8","Event_9","Event_10",],
"status": [0,0,0,0],
"time" : [4,5,5,5],
"money": [100,100,100,100],
"morality": [70,90,100,110],
"mom_lust": [40,60,70,80],
"mom_love": [70,90,100,110],
"mom_rel": [0,0,0,0],
"day": [0,0,0,0],
"stamina": [70,90,100,110],
}
>><div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/pool.jpg'">
<P class="notation_text"> We had a big backyard, square, with landscaping and plenty of green, some trees, and a pool house next to a Roman-shaped pool and an elevated spa off to the side. White tile surrounded the pool, the edges, and the granite rock forced a backdrop around half of the pool with an outcropping of rocks where a decorative waterfall added a final touch of paradise.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc1.jpg'">
<P class="notation_text"> I stepped through the dining room's swinging glass doors and into the sun, the rays of light warming my skin on contact. No shirt covered my upper body, but a white towel hung over my left shoulder, and a pair of colorful boardshorts circled my waist. I had chosen the shorts that <<print $gf.name>> had bought me. They hung low enough on my hips that if I hadn't trimmed my pubic hairs, more than a few curls would have poked out over the waistband. <<print $mom.call >> didn't like them--not when <<print $gf.name>> was around, and <<print $gf.name>>'s fingers had a tendency to glide across my skin, but maybe that would change now that we were alone. If <<print $mom.call >> could show off, then why couldn't I? (It had taken some effort to pull those shorts from their drawer and slide them up my legs.)
</p>
<div class="enter_button" data-passage="Intro_1">
<p >Continue</p>
</div>
<</nobr>>
</div>
/* Days of the week */
<<set $weekDays = [ "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]>>
<<set $weekendValue = [0, 0, 0, 0, 0, 1, 1]>>
/* Current day in total */
<<set $dayValue to 0>>
<<set $dayTimes = [ "Early Morning", "Morning", "Mid Day","Afternoon", "Evening", "Night", "Midnight" ]>>
<<set $dayTimeValue = 0 >>
/* Current time of the day */
<<set $timeInDay to 1>>
/* Wether to advance to the next time of the day when using the "leave" button */
<<set $timeForwardOnLeave = false>>
<div class="big_text">
<<nobr>>
<!-- Bedroom -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom6.jpg'">
<p class="notation_text"> <<print $mom.call>> was there.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I think it's time for some sun," <<print $mom.call >> said, standing in the shallow end with the water lapping around her thighs. I didn't hide my gaze this time, looking down her dripping wet body and focusing on the triangle of cloth that left the softness of her outer labia uncovered. "Don't you?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "In a second," I said, hidden up to my waist beneath the water's surface. "I just"--my heart thumped, creating a hollow boom within my chest that I was aware of but too excited to feel--"want to watch you get out of the pool."
</p>
</div>
<p class="notation_text"> <<print $mom.call >>'s eyes widened, and she seemed a little taken aback, but then she smiled with a kind of gotcha quality to her lips. She turned around and walked toward the steps, her ass and thigh gap holding my cock's attention. I just wanted to be between her thighs.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc4.jpg'">
<p class="notation_text"> Eighteen-year-olds weren't meant to be virgins, not when women--adult, fucking women--who shined like my <<print $mom.rel>> were teasing them.
</p>
<p class="notation_text"> <<print $mom.call >> walked around the front of the pool, her body dripping and her hair plastered to her body, its light, bright color at odds with her golden skin. I loved it. The sides of her almost-little tits jiggled, bouncing just enough to make my blood pump. Her body was the picture of classically toned slenderness not influenced by today's Instagram-fit girls or the pre-woke, skinny-girl chic, runway models, and it made every nerve ending through my flesh buzz with adrenaline.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom7.jpg'">
<p class="notation_text"> <<print $mom.call >> grabbed her towel, drying herself off with long sweeps of the terry cloth. She dried her arms and legs with pushing motions, turning her body so that whatever side she was drying was turned away from me, giving my eyes the freedom to roam over her skin without shame. <<print $mom.call >> finished, threading her hair through its headband, and she sat down on the floor.
</p>
<p class="notation_text"> After spending several hours, we departed
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Love Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home" >
<p >Leave</p>
</div>
<<set $talkEventCount = 2>>
<<set $eventCount += 1>>
<<set $living.status[0] = 1>>
<<set $pool.status[1] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- My Room Afternoon -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom8.jpg'">
<p class="notation_text"> <<print $mom.call>> was lying down on the hammock swing bed as the sun beat down on her. She lay with her legs slightly spread and her bikini panties cupping the tender folds between her legs. I could see the faintest impression of them, and I oh-so-badly wanted to touch them.
</p>
<p class="notation_text"> I walked to the edge of the pool--staring at <<print $mom.call >>. After a minute of this, when <<print $mom.call >> spread her legs further apart, I pressed my cock against the side of the pool, nearly coming. I wasn't about to hump the wall, but I wanted to. Instead, I bent my knees and dropped beneath the water, placing my hands on the lege and pushing myself underwater. I held my breath until a fire burned within my lungs and my throat convulsed--my heart speeding up for another reason. I did this until my erection softened enough not to hurt when I walked, and then I sprang out of the pool, no longer thinking about what I was doing as I walked to my lounge chair.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc5.jpg'">
<p class="notation_text"> My towel found its way into my hands, and I dried myself off, taking my time as I stared down at my <<print $mom.rel>>. Was she looking up at me? She had the hint of a smile on her lips, and her breathing was far from mellow. Her slim stomach rolled downward and up, her breasts rising and falling with them, her nipples reaching heavenward with unashamed stiffness. Could she feel my eyes on her--even if she wasn't looking at me?
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Pass me my tanning oil," <<print $mom.call >> whispered. "I think I could use just a bit more color, don't you?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Sure," I said, bending over and picking up the bottle of oil.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom9.jpg'">
<p class="notation_text"> <<print $mom.call >> didn't need more color. She had perfect skin, from its flawless complexion to the sun-cooked gold of her tan, but who was I to argue?
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call >>," I said, my voice shaking, "I can put it on for you."
</p>
</div>
<p class="notation_text"> <<print $mom.call >>'s smile straightened, and I saw her swallow as time slowed. The movement of her throat seemed exaggerated, and it cascaded down her breast, her stomach lowering and rising as well.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "That's okay," <<print $mom.call >> said. "I can do it. Why don't you sit down and enjoy yourself."
</p>
</div>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Love Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 4>>
<<set $eventCount += 1>>
<<set $pool.status[2] = 0>>
<<set $myroom.status[0] = 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Bedroom Night -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom26.jpg'">
<p class="notation_text"> <<print $mom.call>> was sunbathing at the poolside.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>I licked my lips and said, "I think I'm going to go see <<print $gf.name>>," in a quiet, almost guilty tone.
</p>
</div>
<p class="notation_text"> Time stopped.
</p>
<p class="notation_text"> I heard the wind and the static-like rustle of leaves blowing in the breeze. The sun moved, its rays growing hotter as it curved through the air, and then a chill hit me, and I shivered despite the heat.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>," <<print $mom.call >> whispered.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "What?" I asked in a whisper of breath.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom29.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Can you put the oil on me," <<print $mom.call >> said in a tone that matched mine. "My back first."
</p>
</div>
<p class="notation_text"> My shorts moved outward as my cock grew, and <<print $mom.call >>'s chin tilted down, her eyes staring a straight line toward my growing bulge. She froze for a <<print $mom.call >>ent, her breathing heavy, and then she rolled to her right, away from my cock, and turned onto her stomach. She turned her head away from me, crossing her arms beneath her cheek, and she laid her head across her small forearms.
</p>
<p class="notation_text"> I swallowed as my heart punched the underside of my chest hard enough to make my throat hurt. The world brightened, and I sat on the edge of <<print $mom.call >>'s chair as my vision swooned, moving left-to-right and left again, like a pendulum. I shivered again, and then I took a deep breath that sounded extra loud to my ears. I released it, then took another, and released that in a tunnel of wind through my lips.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Are you okay?" <<print $mom.call >> asked.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc6.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I said as my prick hardened fully. "I'm fine."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Okay," <<print $mom.call >> whispered.
</p>
</div>
<p class="notation_text">The cap to the oil was one of those push-down on one side and spring-up on the other kind, and I depressed it with my thumb and then held the bottle over my <<print $mom.rel>>'s back.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> My eyes stared at the strings of her bikini bra, and I asked, "No tan lines, right <<print $mom.call >>?" in a faraway voice.
</p>
</div>
<p class="notation_text"><<print $mom.call >> took a deep breath.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call >>," I said with enough urgency in my voice to make my suggestion sound like a demand.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Untie my bra for me," <<print $mom.call >> said, "and drop the strings to the sides." The sides, where I could already see the bottom flesh of her breasts, bulging outward as her upper body pushed their roundness into her cushioned bed.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/msg-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I reached down with my hand, fingers extended, the tips trembling, and I plucked one of the strings of her bra's bow on the first try. I pulled, watching as the string slid through the knot, and the bow shrank and shrank, snapping free and leaving a simple crossover knot. Pulling the string to the side and giving it a shake to loosen it from its partner, I tossed it to the side, and then I grabbed the other string, dropping it to <<print $mom.call >>'s left side, undressing her back. As the strings landed on the cushions, the cups of <<print $mom.call >>'s bra fell away, baring the side of her tits to my eyes. My cock jumped, and I pulled my hips back, trying to find room within my shorts for my aching erection.
</p>
<p class="notation_text"> There was no room.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/msg-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text">Tilting the bottle of oil, I let a stream of the thick liquid spill from the cap's nozzle. The sunlight caught its burnished gold color, making it sparkle--reminding me of that album cover in my grand<<print $mom.rel>>'s collection where honey drops from the comb. The end bulb struck the center of <<print $mom.call >>'s back. Her spine moved as she reacted to the oil's touch, and I watched as a pool formed over her skin, then slipped to the side in thin rivulets of liquid sex.
</p>
<p class="notation_text">Sex.
</p>
<p class="notation_text">I placed the bottle to the side, freeing my hands, and extended my fingers, bringing the tips down to my <<print $mom.rel>>'s back. They shook until they touched her skin and moved upward, my digits spreading as far apart as they could as I stroked my <<print $mom.rel>>'s skin. My adrenaline spiked, starting in my heart and radiating outward, finding the pathways through my shoulders and arms and down into my hands, where the energy passed through me and into my <<print $mom.rel>>.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/msg-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Mm,"
</p>
</div>
<p class="notation_text"> <<print $mom.call >> moaned, but it sounded like a low, muffled groan that she had tried to hold back. Her mouth never opened, and the sound was low and faint, but it was there. My heart raced, and I pushed harder into her skin, trying to get her to moan again. She didn't, but her lips twitched as I increased the pressure across her smooth skin.
</p>
<p class="notation_text">I reached <<print $mom.call >>'s neck, pushing my fingers into the slope running down to her shoulders. My <<print $mom.rel>> had a firm body, but not too firm, her muscles lying beneath a single layer of feminine softness, giving her body all the hints of having curves while still appearing thin. She had a showgirl's body, a runner's body, a dancer's--the kind of body that deserved admiration, coupled with a beauty that could turn a strong man weak or a hard man soft.
</p>
<p class="notation_text">All this from just touching her, I thought.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom10.jpg'">
<p class="notation_text">I had never touched my <<print $mom.rel>> before. Not like this. A hug, a kiss on the cheek, a tug on her arm or hand, but I had never stroked her in such a familiar way. There was no other way to rub oil on a person, whether they were a friend, a girlfriend, your <<print $mom.rel>>, or a client at a spa. This was as intimate as two people could physically become, outside of sex.
</p>
<p class="notation_text">Sex.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "It’s enough for today honey. I have some work." <<print $mom.call >> said, her words coming in a rush that was almost a pant. She pulled away from me, holding her right hand over her breasts as she stood, facing away from me. <<print $mom.call >> walked away.
</p>
</div>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Lust Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');statsChange(10,'Lust');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 6>>
<<set $eventCount += 1>>
<<set $living.status[1] = .1>>
<<set $pool.status[3] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Kitchen Morning-->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom28.jpg'">
<P class="notation_text"> <<print $mom.call>> was there.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> Approaching <<print $mom.call>> with a smile "Hey, <<print $mom.call>>, would you like some help applying that oil to your body?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> (Smiling back) "Oh, that would be so nice. Thank you, dear."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> (Taking the bottle of oil) "Of course, anything for you. Let me know where you need it."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> (Relaxing) "Start with my back, please."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> (Gently applying the oil) "Is this pressure okay, or should I be more gentle?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> (Enjoying the massage) "That's perfect, just keep going."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> (Continuing to massage and applying oil) "You look absolutely radiant in the sun, by the way."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> (Blushing) "Aw, thank you. It's the sunshine and you that make me feel that way."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/msg-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> I ran my hands down my <<print $mom.rel>>'s shoulders and over her arms, straightening each of her arms one at a time and having to tug the first one loose before she gave it up. I ran my hand down her arm, over her small bicep and forearm, my long fingers circling her limb completely. I reached her fingers, and I covered them with oil as well, taking time to stroke each one of her digits before making my way back to her shoulders, where I rowed my thumbs over her skin, warmed by the sun--and, I hoped, by me.
</p>
<P class="notation_text"> The more I touched my <<print $mom.rel>>, the harder she breathed and the calmer I grew. I stayed hard, and my excitement rushed through me, pushing through my veins in thick pulses of light, but I remained calm.
</p>
<P class="notation_text"> What was my <<print $mom.rel>> feeling?
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/msg-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> I lowered my hands down her back with my thumbs meeting along her spine. Her skin moved before my fingertips as I fanned them outward, turning them sideways so that they faced my <<print $mom.rel>>'s ribs and the sides of her breasts. Oil glistened in the light, and the velvet texture of her flesh sent ripples of desire through my arms. My cock swelled, and out poured a hefty glob of precum that would have given me a thick droplet of dewy goo to add to the oil covering her back.
</p>
<P class="notation_text"> If only I could rub my precum on her....
</p>
<P class="notation_text"> If only I could.
</p>
<P class="notation_text"> What a terrible, horrible, and thrilling thought. And like that, I had begun to free myself of every reservation that I had concerning how far I was willing to push my <<print $mom.rel>> in her game of tease with me.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/msg-8.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> Freeing myself--that final moment that pushed me across the line that <<print $mom.call >> had drawn--didn't mean that I was without fear or anxiety. It took an effort to push my hands outward, the tips pointing left and right, and then curling over <<print $mom.call >>'s slick back toward the outer bulges of her breasts. <<print $mom.call >> tensed as my fingers slid down her ribs, straight down toward the cushion, not backward toward her hips. Straight down, to her titties, almost reaching them, almost there, almost touching their softness until--
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>," <<print $mom.call >> said in a whispered rush, "your hands are slipping in the oil."
</p>
</div>
<P class="notation_text"> They aren't slipping, <<print $mom.call >>.
</p>
<P class="notation_text"> I swallowed to regain my composure. My cock ached and twitched, and after a pause, I moved my hands down her ribs to her sides. Touching her like this made her seem small. Her great <<print $mom.rel>>hood shrunken down to a normal woman, a sexy woman, who was letting me touch her in ways that she never had before. My cock jerked again, spitting up more precum, and I released a shaky breath as I moved my hands over her sides to the small of her back.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> (Sighing contentedly) "Enough for today. It was amazing. Thank you, honey. You're the best."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> (Kissing her forehead) "Anytime, <<print $mom.call>>. Now, let's enjoy this beautiful day together."
</p>
</div>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Lust Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');statsChange(10,'Lust');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 8>>
<<set $eventCount += 1>>
<<set $living.status[2] = 1>>
<<set $pool.status[4] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom27.jpg'">
<P class="notation_text"> <<print $mom.call>> was sunbathing at the poolside.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> (Approaching <<print $mom.call>> with a playful smile) "Hey there, how about a little more of that relaxing massage today?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> (Grinning) "You read my mind! I'd love that."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> (Taking the bottle of oil) "Great! Where should I start this time?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> (Playfully) "How about my lower back?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> (Gently applying the oil) "You got it. Just let me know if I should adjust the pressure."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/msg-7.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> My thumbs pressed into my <<print $mom.rel>>'s spin, then rowed up and around, and I opened and closed my fingertips. This was no casual massage that I was giving my <<print $mom.rel>>. I caressed her, opening my fingers wide and gliding my palms over her skin, watching as her flesh moved before my fingertips in a wave of visual stimulation.
</p>
<P class="notation_text"> What was my <<print $mom.rel>>’s feeling?
</p>
<P class="notation_text"> Her breathing had deepened. She lay still, mostly, with her lips tight and her eyes unreadable behind her sunglasses. I moved my hands lower, then higher, then lower, nearing the quarter-inch-thick waistband of her thong bikini. Closer and closer and closer....
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>," <<print $mom.call >> snapped when my oil-slick hands moved over her thong's waistband and right on her ass.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I have to get all of you," I said, my voice heavy and low, the sound of my breathing exciting me in its perversion.
</p>
</div>
<P class="notation_text"> Did it excite my <<print $mom.rel>>?
</p>
<P class="notation_text"> Her breathing had deepened.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $gf.name>>," I said as I pressed my palms into my <<print $mom.rel>>'s small, soft ass. Soft on the outside, firm on the inside, yet not as firm as a teenager's ass. That contrast between young tightness and mature firmness sent a sensual heat through my body that made the world spin. "<<print $gf.name>> lets me do this whenever I want."
</p>
</div>
<P class="notation_text"> <<print $mom.call >> hissed.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/msg-6.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> I curled my fingers down her butt, then opened them, my thumbs riding the edges of her shallow crack and grazing the line of the thong running between her cheeks. I didn't try to go under her thong, but I wanted to. Fuck, I wanted to, and my cock, dripping precum, was more than enough proof of my desire for my <<print $mom.rel>>.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>"Hurry up," <<print $mom.call >> whispered, her voice catching as I pressed the tips of my thumbs against the bottom of her ass cheeks. I followed the line of her hamstrings from the outside in, all the way to the inward curve down into the softness of her maternal muff. "Do my legs. Now."
</p>
</div>
<P class="notation_text"> I stopped with my thumbs outside of her pussy. They were so damn near the nylon of her panties that my fingers trembled from the heat between her legs. As I pulled them away, I pressed my thumbs harder into her tender flesh and pulled outward, spreading her open between her legs like the velvet curtains of a Broadway stage. <<print $mom.call >>'s pussy pulled outward, her outer lips slipping past the protection of her thong's covering and giving me a glimpse of her softer, fuller crescents.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Mm," <<print $mom.call >> moaned, the sound strained as she bit back the quiet, almost nonexistent sound.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/msg-9.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> I stopped my thumbs' movement, holding my <<print $mom.rel>>'s pussy open from the outside pressure on her inner thighs. Staring at the center of her cunny beneath her panties, I watched as her crimson nylon stuck to her lips, outlining the long slit beneath their fabric. I saw her folds, outer and inner, and the opening between them, where the red of her panties had darkened, growing wetter and--
</p>
<P class="notation_text"> Holy fuck, my <<print $mom.rel>> was wet with pussy juice.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I need to go back to work," <<print $mom.call >> said, her words coming in a rush that was almost a pant. She pulled away from me, holding her right hand over her breasts as she stood, facing away from me. "I expect you to stay at home while I work."
</p>
</div>
<P class="notation_text"> Her voice had trembled as she spoke, though it carried it a hard edge, the edge that I was used to hearing whenever I managed to get myself into trouble.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Okay," I said.
</p>
</div>
<P class="notation_text"> <<print $mom.call >> walked away, leaving me with my hard-on, and when I was sure she was in her bedroom--with windows that faced the backyard--I took out my cock and jerked off hard and fast in full view of her windows. I sprayed my cum onto my stomach before wiping it off with my towel. Satisfied, I jumped back into the pool to cool down.
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Lust Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');statsChange(10,'Lust');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 10>>
<<set $eventCount += 1>>
<<set $living.status[3] = 1>>
<<set $pool.status[5] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/mom41.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "It took you long enough to get down here," <<print $mom.call >> said. "I was about to go inside after you."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Ah, well," I said and shrugged. "I was just picking out my suit."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I see," <<print $mom.call >> said. Behind her glasses, I couldn't tell where her eyes had fallen on my body.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc2.jpg'">
<P class="notation_text"> I walked over to her and dropped my towel on the chair next to hers. I was about to sit down when she said, "How about a quick dip?"
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Sure," I said as the hairs on my body reached skyward.
</p>
</div>
<P class="notation_text"> <<print $mom.call >> removed her visor and stood, her butt toward me, and through the transparent mesh of her skirt, I caught glimpses of her cheeks and thighs. Before I could decipher whether she was wearing a G-string or a thong, she unwrapped her skirt, revealing a thick red thong running through the crack of her small, golden, and pear-shaped ass.
</p>
<P class="notation_text"> God damn it, but my father was a lucky man.
</p>
<div class="enter_button" data-passage="Intro_3">
<p >Continue</p>
</div>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom1.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "No tan lines," I whispered aloud as though my <<print $mom.rel>> wasn't four feet from me.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "No," <<print $mom.call >> laughed. "No tan lines." She turned around. "So, do you like my new swimsuit?"
</p>
</div>
<P class="notation_text"> Oh, dear lord, yes--yes, I did.
</p>
<P class="notation_text"> The thong riding my <<print $mom.rel>>'s crack swept outward at her lower back, just above her cheeks, leaving them bare. The strings were maybe a quarter-inch thick, biting into her skin a tad, giving her slenderness a faint bulge above and below her waistline. In front, they swept down the cut of her hips to the V of her crotch, where they connected to a red, triangular patch of cloth that didn't quite cover my <<print $mom.rel>>'s vanilla pie. A quarter-inch of labia lay exposed to the elements. I could see the impressions of what had to be a fluffy landing strip pushing against the front of her nylon panties--panties that rode so low on her mound that I could see several wispy, flaxen hairs poking above the nylon.
</p>
<P class="notation_text"> My cock thickened, the head expanding at a slow rate--slow enough that the stretching of my glans exploded through my nerve endings.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>?" <<print $mom.call >> asked.
</p>
</div>
<div class="enter_button" data-passage="Intro_4">
<p >Continue</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom15.jpg'">
<P class="notation_text"> I entered in the bedroom <<print $mom.call >> was there. She looked at me.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call >> said, "So you met with <<print $gf.name>>."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> “Not yet. I’ll meet with her tonight.” I replied.
</p>
</div>
<P class="notation_text"> I took a magazine and turned to leave.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>," <<print $mom.call >> said, her voice sharp. "Wait."
</p>
</div>
<P class="notation_text"> I turned around, facing her again, and watched as she finished her coffee. She set her cup on the desk's top, and then she lowered her hands to her skirt. My heart stuttered, then jumped into a sprint. She grabbed the hem of her tennis skirt and inched it upward, taking her time, the tops of her thighs brightened by the light.
</p>
<P class="notation_text"> My vision narrowed, focusing on my <<print $mom.rel>> below her waist.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom13.jpg'">
<P class="notation_text"> She stopped just below the bottom of her muff, only for a second before continuing upward and showing me a pair of small, black panties. They were nothing more than a tiny triangle covering her inner lips and mound, leaving so much of her tender labia exposed that I sighed aloud. Her sun blonde pubic hairs reached above the low-slung waistband and sprouted from beneath the sides of her small strip of panties. I didn't fail to notice the darker shade of dampness below the outline of her clit.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I have more," <<print $mom.call >> whispered. "Lots more. Panties that your father has never seen me wear. I can wear them for you, and only for you, if you don't fool around with <<print $gf.name>>."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call >>," I whispered, my insides deflating as I stared at her muff.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I mean it." <<print $mom.call >> swallowed, her voice trembling and her tits rising and falling as though she were sprinting. "I can wear them and a shirt for you every day while your father is out of the house."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call >>--"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom14.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "You can take pictures and videos, for when you're alone," <<print $mom.call >> said, panting. "Just don't fool around with <<print $gf.name>>. Please!"
</p>
</div>
<P class="notation_text"> Jesus, I thought she was about to cry.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Whenever Dad is out of the house?" I asked, my throat tight. "You promise?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Yes," <<print $mom.call >> whispered.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> It took forever before my lips moved, but I managed to croak out the word, "Okay," before <<print $mom.call >> could say anything else to convince me to agree to her demands.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom16.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Okay," <<print $mom.call >> said, her voice trembling.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call >>," I said, "I don't know how long I can hold out. I mean"--I swallowed, and my voice started to tremble--"you're not a normal-looking woman. You're"--I shook my head--"perfect."
</p>
</div>
<P class="notation_text"> <<print $mom.call >> lowered her skirt.
</p>
<P class="notation_text"> We stood in silence, and I realized that she wasn't going to speak. I nodded before leaving, and I went up to my room, where I took my dick out and came, then came again, then came one more time before going to bed without sending <<print $gf.name>> a picture of my cock. I had honestly forgotten to send her one.
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Love Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 12>>
<<set $eventCount += 1>>
<<set $myroom.status[1] = 1>>
<<set $bedroom.status[0] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/living-9.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text">I entered the living room. <<print $mom.call >>, who had been reading a book on the couch while Dad watched TV. I didn't see my <<print $mom.rel>> again until after Dad had arrived home. She had changed from her bikini into a pleated yellow tennis skirt that barely reached the middle of her thighs. A tight, dark blue polo shirt with white trim and short-short sleeves covered her upper body. We didn't talk, and <<print $mom.call >> made dinner, and we ate, her tits pushing against her top like two perky orbs outlined by the faintest impressions of a bra. It must have been a thin bra, maybe lace or something transparent, I didn't know, but my mind spent most of its time thinking about what kind of bra she could be wearing.
</p>
<P class="notation_text"> <<print $gf.name>> had some transparent bras that she liked to wear for me.
</p>
<div class="dialog_text ">
<p><span class = "character">Dad: </span> Dad said nothing about <<print $mom.call >>'s outfit. He was too busy mumbling, "My sleepless nights are getting worse. Can you believe that? They just won't go away anymore."
</p>
</div>
<P class="notation_text"> My dad, as far as I knew, had bouts of acute insomnia, typically lasting for several weeks, then they'd dissipate for several weeks, then they'd come back in an endless cycle of hell for him. When he mentioned this, I saw my <<print $mom.rel>>'s face tighten, but my heartbeat sped up. Had the same thoughts gone through our heads at the same time? I didn't know, but I'd like to think that they did. Despite her reaction, I was eager for my father to start taking his pills again.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom20.webp'">
<P class="notation_text"> Even though <<print $mom.call >> was wearing a short tennis skirt that showed off her slender legs down to her little, bare feet with their perfect toes and elegant arches, it wasn't like this morning and afternoon. Dad was here, so when <<print $mom.call >> noticed me looking for a little too long or a little too hard, she narrowed her eyes at me and sent a firm headshake--with only the slightest hints of movement--my way.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> Not long after dinner, I went upstairs, saying, "I need to give <<print $gf.name>> a call before she thinks I'm ignoring her."
</p>
</div>
<P class="notation_text"> Dad looked up at me as I headed upstairs and called out, "Remember our deal."
</p>
<div class="dialog_text ">
<p><span class = "character">Dad: </span> Our unspoken deal, I thought just as my father said, "Yeah, remember it. I don't want to have to explain to my <<print $mom.rel>> why her grandson had to drop out of high school to take care of his bastard."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Jesus, Dad," I said as my dad laughed, and I continued to my room.
</p>
</div>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Love Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 3>>
<<set $eventCount += 1>>
<<set $living.status[0] = 0>>
<<set $pool.status[2] = 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Club Night -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/mc7.jpg'">
<P class="notation_text"> I talked to <<print $gf.name>>, but I was distracted. She could tell. I knew that she could, but I couldn't tell her why. My thoughts kept drifting back to my <<print $mom.rel>> and the promise I had made her. Did I really make her a promise? Do unspoken promises count? I didn't think--so my cock said to me--but <<print $gf.name>> would be there for me in a week, while <<print $mom.call >> might end her desperation tactic if she thought I wasn't keeping my word.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Come on," <<print $gf.name>> was saying, "tell me how hard your cock is for me."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I can't," I said, licking my lips and continuing the lie I had told her at the start of our conversation. "<<print $mom.call >> keeps walking into my room."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/2/gf-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Fuck it," <<print $gf.name>> growled, "let her hear how hard I make your cock. I'll let my dad hear if you let your <<print $mom.call >> hear." She made a tongue-clicking sound. "Every time that my dad thinks that I'm being naughty with you, he gives me this look, and I just want to say, '<<print $mc.name>> makes my pussy wet, Daddy, deal with it."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Daddy," I said, laughing.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Well, Dad's my father," <<print $gf.name>> said, "but you're my Daddy."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc7.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Oh," I moan-groaned. "That's so fucking hot."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I know, right?" <<print $gf.name>> giggled. "The dirtier this gets, the jucier my pussy gets for your big, adult dick. Maybe my dad's just jealous of you getting my ass instead of...."
</p>
</div>
<P class="notation_text"> I groaned again as she trailed off, her voice slick, sly, and dangerously suggestive. My cock grew and grew. Maybe it was for the best if I put an end to <<print $mom.call >>'s teasing and went straight to <<print $gf.name>>. Why should we torture ourselves by waiting? We could fuck, tell her dad, and call his bluff. It had to be a bluff. <<print $gf.name>>'s <<print $mom.call >> loved me!
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I've got to go, you nasty girl," I whispered. "I can hear my <<print $mom.call >> outside of my door. I think she's pacing. I'll send you a picture later, okay?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Okay," <<print $gf.name>> sighed. "Our parents suck."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc8.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yes, they do," I whispered, hoping it was true in my <<print $mom.rel>>'s case.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Love you," <<print $gf.name>> said, "and don't forget that dick pick you owe me. I want to see cum and lots of it."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I promise," I whispered as her bratty voice sent a tingle through my glans. "Love you too."
</p>
</div>
<P class="notation_text"> Would she be mad when I didn't send her a picture?
</p>
<P class="notation_text"> Probably, but I'd think of something.
</p>
<P class="notation_text"> I left my phone on my bed. I had talked to <<print $gf.name>> for an hour; what would <<print $mom.call >> make of that? Was she antsy? Was she pissed? Should I pretend that something happened, even when it hadn't? There was danger in that; wasn't there, but how much?
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Love Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 5>>
<<set $eventCount += 1>>
<<set $pool.status[3] = 1>>
<<set $myroom.status[0] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Kitchen Morning-->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom21.jpg'">
<P class="notation_text"> I headed living room; Fuck, there were too many variables to digest, so I tried to slow down my thoughts as I descended from the top of the stairs into the TV-lit foyer and living room. <<print $mom.call >>, sitting on the back couch with her back against the armrest, turned her head to the left and gave me a long look. I smiled, and she watched me as I walked around the couch and sat opposite her. She had her knees up and together, along with her calves and feet, creating a wall that hid her panties from my eyes.
</p>
<P class="notation_text"> I leaned back against the couch's arm, bringing my feet onto the couch. <<print $mom.call >> looked at me, watching as the soft light flashed across my body. Dad yawned.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Did you already take your pill?" I asked my dad.
</p>
</div>
<div class="dialog_text ">
<p><span class = "character">Dad: </span> "Yeah," he yawned again. "I haven't had a good sleep in days."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc9.jpg'">
<P class="notation_text"> I hadn't noticed--what an asshole I was.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Gonna go upstairs?" I asked.
</p>
</div>
<div class="dialog_text ">
<p><span class = "character">Dad: </span> "You want the TV?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "No." I shook my head, though he was lying on his back with his head on a pillow, staring at the TV. "Just making conversation."
</p>
</div>
<div class="dialog_text ">
<p><span class = "character">Dad: </span> "Make it when the show's over," he said. "If I last that long."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom47.webp'">
<P class="notation_text"> I nodded and turned back to <<print $mom.call >>. She was still looking at me, and even though the living was dark, and I wouldn't have been able to see much had she spread her legs for me, I nodded at her knees anyway. <<print $mom.call >> tilted her head, and I lifted my hands, placed my palms together, then spread my fingers open by tilting them away from each other. <<print $mom.call >> widened her eyes, and then she looked toward the TV. I sighed without making a sound, extending my right foot and nudging her left toes. <<print $mom.call >> brought her feet back, and when they ran out of the room, she turned on her cushion and lowered her feet to the floor.
</p>
<P class="notation_text"> Damn it!
</p>
<P class="notation_text"> Was it because of Dad?
</p>
<P class="notation_text"> It had to be.
</p>
<P class="notation_text"> Or maybe she needed reassurance that I hadn't done anything with <<print $gf.name>>--over the phone. How was I going to do that? Fuck it, I was going to press my luck, and I could assure <<print $mom.call >> later that her son had followed her rules, mostly. Was talking dirty to my willing eighteen-year-old girlfriend going to get her pregnant? No!
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Love Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 7>>
<<set $eventCount += 1>>
<<set $pool.status[4] = 1>>
<<set $living.status[1] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/living-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> <<print $mom.call>> was talking on the phone and Dad was watching TV. I joined with them.
</p>
<P class="notation_text"> I sighed, a little louder. <<print $mom.call >> didn't look at me, and neither did Dad. I lowered my back down the armrest to my shoulders, and I stretched out my legs, pulling short of touching <<print $mom.call >> with my feet. Her skirt lay a tiny bit above the middle of her lap, both atop and along the sides, while the back lay bunched against the back of the couch. The pleats were perfect and rectangular, layered, her long legs illuminated by the bluish-silver of the TV light.
</p>
<P class="notation_text"> Like moonlight.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/living-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> When was <<print $mom.call >> going to pull her skirt up? She wasn't sitting on it, so it wasn't like her movement would disturb Dad. Not that he'd notice by the way he was lying.
</p>
<P class="notation_text"> Time ticked by, the show went on, and Dad yawned.
</p>
<P class="notation_text"> Any day now, I thought, throwing my silent words at my <<print $mom.rel>>
</p>
<P class="notation_text"> Was she mad at me for touching her? I had pushed it. Or, if not mad, was she having second thoughts? This game had barely started, so there was only one way to find out. I extended my right foot, the one closest to the back of the couch, with a slower-than-normal motion, making sure that my <<print $mom.rel>> would notice me coming from the corner of her eyes. She did. Her lips twitched, but was she attempting to hide a smile, or had they tightened? She didn't look at me, so I continued forward.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/living-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> My big toe touched the hem of her skirt along the side of her thigh. <<print $mom.call >> took a deep breath, her apple-sized breasts moving up and down, the tightness of her shirt accentuating the buoyant under-curve of her breasts. I imagined how they'd give under my fingers caresses, and my cock sprung forward as if trying to have a better look as my <<print $mom.rel>>'s goods.
</p>
<P class="notation_text"> I moved my foot toward the back of the couch, pulling <<print $mom.call >>'s skirt with me, baring her skin. <<print $mom.call >>'s head tilted to the left, her eyes down for a moment before looking forward again. I kept moving her skirt, back and back, back as far as the curve of her ass and exposing the naked side of her left cheek. She must have been wearing a thong or nothing. The thought made my balls warm as my thoughts went back to my <<print $mom.rel>>'s perfect cheek. When I ran my toe across my <<print $mom.rel>>'s skin, she brought her left hand down and pushed my foot away, but she didn't move her skirt back into place.
</p>
<P class="notation_text"> Good.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/living-10.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> My cock had stretched out during this time, filling with wall-throbbing strength and turning my skin slinky into a hungry flesh pipe. Oh, man, but I wasn't going to last a week away from <<print $gf.name>> at this rate. No fucking way.
</p>
<P class="notation_text"> I extended my foot again, touching my <<print $mom.call >>'s thigh by her knee. She looked down as I slid my toe along her leg, her lips parting as she let out a long breath. Her head turned a little when I reached her butt cheek, and I saw her throat move in a swallowing motion when I brushed her flesh to the far curve of her ass. Her hand moved, but not before I traced the line of her soft backside upward.
</p>
<P class="notation_text"> Suddenly a touch out of breath and standing quickly. Her skirt fell back into place. She left the living room without saying anything
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Love Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 9>>
<<set $eventCount += 1>>
<<set $pool.status[5] = 1>>
<<set $living.status[2] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom46.jpg'">
<P class="notation_text"> Dad was watching TV. <<print $mom.call >> was in the kitchen. I sat down and started to watch TV. Suddenly <<print $mom.call >> entered in the living room.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Does anyone want a drink?" <<print $mom.call >> said, "Rich? <<print $mc.name>>?
</p>
</div>
<div class="dialog_text ">
<p><span class = "character">Dad: </span> "No, thanks," Dad mumbled.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'm okay," I said, studying my <<print $mom.rel>>'s profile and the hardened protrusion of her left nipple.
</p>
</div>
<P class="notation_text"> <<print $mom.call >> walked to the right, her back to me as she left the living room and entered the dining room, then turned to the right, out of sight beyond the narrower entryway before heading into the kitchen.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I waited a minute before I said, "I think I could use a drink."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/kitchen-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> Dad mumbled something as I rose and turned to my left, hiding my semi-inflated sausage from his eyes in case he turned his head to watch me walk across the couch. Instead, I walked behind my couch, alongside the foyer, and down the narrow hallway along the stairs that cut across the living and dining rooms straight into the kitchen. I found <<print $mom.call >> standing against the inside of the kitchen island, sipping on wine. I noticed that I could hear the faint sounds of the TV from where we stood.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "What are you doing?" <<print $mom.call >> asked, her voice stern, and her eyes narrowed in a glare that I could only call petulant.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/kitchen-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "What am I doing?" I asked, keeping my voice low though I probably didn't have to. "What are you doing?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>--"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I know what you're doing. You're--"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/kitchen-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Don't say it--don't say it--don't say it," <<print $mom.call >> said like a jackrabbit thumbing its food and shaking her head as her glare deepened.
</p>
</div>
<P class="notation_text"> I kept my mouth shut. We stared at each other. <<print $mom.call >>'s expression softened as I did my best to remain neutral. I didn't want to blow this.
</p>
<P class="notation_text"> She sipped her wine.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/kitchen-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I watched, then I asked, "Can I have a sip?"
</p>
</div>
<P class="notation_text"> <<print $mom.call >>, who had never allowed me a drink before, handed me her half-full glass. I took a long drink, not enjoying the spicy flavor, but I drank it anyway, then handed the nearly empty glass back to her. She refilled it, and we stood there, staring at each other in silence.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call >>," I finally said, "You can't keep doing this to me."
</p>
</div>
<P class="notation_text"> <<print $mom.call >> flinched.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/kitchen-6.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I know you think it's for the best, but look at me." I looked at my semi-hard cock that was already coming back to life as my <<print $mom.rel>> dropped her gaze downward. "Is this what you wanted? To give me a--"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Don't say it," <<print $mom.call >> said, her eyes lingering before returning to my face. "Don't say anything. Just"--she licked her lips, her face tight, almost frowning--"just accept it."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I can't just accept it," I said, frowning. "It's driving me crazy. I need to see <<print $gf.name>> more than ever now because of you."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>," <<print $mom.call >> said, letting my name hang in the air.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/kitchen-7.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Look what you do to me!" It was a harsh whisper that I gave her--an accusation. "Look."
</p>
</div>
<P class="notation_text"> <<print $mom.call >> looked down again to where my cock had hardened fully. Her eyes widened a bit, and her cheeks reddened. She moved her head backward.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>When her eyes returned to my face, I said, "I know you mean well, but this isn't enough. I'm seeing <<print $gf.name>> tomorrow." I shrugged, knowing that a helpless, I'm sorry, expression shimmered across my face. "I have to."
</p>
</div>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Love Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 11>>
<<set $eventCount += 1>>
<<set $bedroom.status[0] = 1>>
<<set $living.status[3] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom0.jpg'">
<P class="notation_text">Next to the pool, opposite the granite wall, there was a row of white-cushioned lounge chairs and small glass tables. That's where I found <<print $mom.call >>. She lay on her back. Her skin didn't shine with lotion, and my heartbeat did a double-thump as soon as I saw that. She wore a dark red swimsuit top over her breasts, the kind made of strings that wrapped around her back and hooked over her shoulders, around her neck. The cups were half-moons that cut an angle across her breasts, covering her nipples but leaving the inner swells and the sides of her tits exposed.
</p>
<P class="notation_text">I wanted to whistle. I had never seen my <<print $mom.rel>> wear a top that exposed so much of her tit-flesh, and yet, I had to hide a sigh. I don't know why I had thought that <<print $mom.call >> would have worn less, but I had hoped. Did she think a swimsuit would keep me from running off to <<print $gf.name>> after her teasing today? And as if she wanted me to run off to <<print $gf.name>>, around her waist, she was wearing a mid-thigh length, white, semi-transparent wraparound skirt. A skirt? Damn it!
</p>
<div class="enter_button" data-passage="Intro_2">
<p >Continue</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<p class="notation_text">
<<print $message>>
</p>
<div id="pos">
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/computer.jpg'">
<p class="notation_text">What should I do now?</p>
</div>
<!-- <div class="enter_button" data-passage="MiniGame" data-setter = "$activityType = 'Morality'; $mediaType = 'image'; $activityImage = 'scenes/misc/porn.gif';" >
<p >Watch Porn!</p>
</div> -->
<!-- <img class="scenes_image" @src="setup.ImagePath+'scenes/misc/hack.jpg'"> -->
<div class="enter_button" data-passage="MiniGame" data-setter = "$activityType = 'Money'; $mediaType = 'image'; $activityImage = 'scenes/misc/hack.gif';" >
<p >Hacking!</p>
</div>
<div class="enter_button" data-passage="MyRoom" >
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<p class="notation_text">
<<print $message>>
</p>
<<if $currentTime is 4 and $weekendValue[$currentDay] is 0 >>
<div id="pos">
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/mom23.jpg'">
</div>
<p class="notation_text">What should I do now?</p>
<<if $mc.stats.mom_rel gte 50 and $knowledge gte 50>>
<div class="enter_button" data-passage="MiniGame" data-setter = "$activityType = 'Lust'; $mediaType = 'video'; $activityVideo = 'scenes/video/mom/bathroom-1.mp4';" >
<p >Help <<print $mom.call>>!</p>
</div>
<<else>>
<p class="notation_text">You need 100 relationship point and 100 Stealing point.</p>
<</if>>
<<else >>
<div id="pos2">
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/bathroom.jpg'">
<p class="notation_text"><<print $mom.call>> will be available here at Evening. What should I do now?</p>
</div>
<<if $laundry is 0 and $currentTime lte 5 >>
<div class="enter_button" data-passage="MiniGame" data-setter = "$laundry = 1; $activityType = 'Rel';
$mediaType = 'image'; $activityImage = 'scenes/misc/laundry.jpg';" >
<p >Laundry</p>
</div>
<</if>>
<</if>>
<div class="enter_button" data-passage="Home" >
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<p class="notation_text">
<<print $message>>
</p>
<<if $currentTime is 5 >>
<div id="pos">
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/mom18.jpg'">
<p class="notation_text"><<print $mom.call>> is here.</p>
</div>
<<if $mc.stats.mom_love gte 100 and $mc.stats.mom_lust gte 50>>
<div class="enter_button" data-passage="MiniGame" data-setter = "$mediaType = 'video'; $activityType = 'Lust'; $activityVideo = 'scenes/video/mom/2/msg-1.mp4'; ">
<p >Give Her A Massage!</p>
</div>
<<else>>
<p class="notation_text">You need 100 <<print $mom.call>> Love point and 50 Lust point</p>
<</if>>
<<if $mc.stats.mom_rel gte $talkEvent.bedroom.rel[$bedroomTalk]>>
<div class="enter_button" onclick="talkEventCheck('Bedroom');">
<p >Talk</p>
</div>
<<else>>
<p class="notation_text">To talk with <<print $mom.call>> need <<print $talkEvent.bedroom.rel[$bedroomTalk]>> relationship point</p>
<</if>>
<<else >>
<div id="pos2">
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/m_bedroom.jpg'">
<p class="notation_text"><<print $mom.call>> will be available here at Night. What should I do now?</p>
</div>
<<if $stealing is 0 and $currentTime lt 5 >>
<div class="enter_button" data-passage="MiniGame" data-setter = "$stealing = 1; $activityType = 'Money';
$mediaType = 'image'; $activityImage = 'scenes/home/m_bedroom.jpg';" >
<p >Steal Money</p>
</div>
<</if>>
<</if>>
<div class="enter_button" data-passage="Home" >
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<p class="notation_text">
<<print $message>>
</p>
<<if $currentTime is 1 >>
<div id="pos">
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/kitchen-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text">What should I do now?</p>
</div>
<<if $mc.stats.mom_rel gte $talkEvent.kitchen.rel[$kitchenTalk]>>
<div class="enter_button" onclick="talkEventCheck('Kitchen');">
<p >Talk</p>
</div>
<<else>>
<p class="notation_text">To talk with <<print $mom.call>> need <<print $talkEvent.kitchen.rel[$kitchenTalk]>> relationship point</p>
<</if>>
<div class="enter_button" data-passage="MiniGame" data-setter = " $mediaType = 'video'; $activityType = 'Love'; $activityVideo = 'scenes/video/mom/kitchen-4.mp4';" >
<p >Breakfast With <<print $mom.call>></p>
</div>
<<elseif $currentTime is 4 and $weekendValue[$currentDay] isnot 0 >>
<div id="pos">
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/kitchen-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text">What should I do now?</p>
</div>
<<if $mc.stats.mom_rel gte $talkEvent.kitchen.rel[$kitchenTalk]>>
<div class="enter_button" onclick="talkEventCheck('Kitchen');">
<p >Talk</p>
</div>
<<else>>
<p class="notation_text">To talk with <<print $mom.call>> need <<print $talkEvent.kitchen.rel[$kitchenTalk]>> relationship point</p>
<</if>>
<div class="enter_button" data-passage="MiniGame" data-setter = " $mediaType = 'video'; $activityType = 'Lust'; $activityVideo = 'scenes/video/mom/kitchen-7.mp4';" >
<p >Dinner With <<print $mom.call>></p>
</div>
<<else>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/kitchen.jpg'">
<p class="notation_text"><<print $mom.call>> will be available here at Morning & Evening(Weekend). What should I do now?</p>
<<if $kitchenClean is 0 and $currentTime lte 5 >>
<div class="enter_button" data-passage="MiniGame" data-setter = "$kitchenClean = 1; $mediaType = 'image'; $activityType = 'Rel'; $activityImage = 'scenes/home/kitchen/clean.webp';" >
<p >Clean Kitchen!</p>
</div>
<</if>>
<</if>>
<div class="enter_button" data-passage="Home" >
<p >Leave</p>
</div>
<</nobr>>
</div>
<!-- -->
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc3.jpg'">
<p class="notation_text"> <<print $mom.call >> was there, I sat on a pool chair. She lifted her left hand to her glasses, took the temple piece between her thumb and forefinger, and slid them from her face. There was a smile in her green eyes and something else that I could only call a victory. She tossed her glasses on her lounge chair and turned away, walking toward the pool with her butt cheeks rolling and her long legs slipping one in front of the other with each step. As I drooled over her ass, my eyes caught the heart-shaped gap at the top of her thighs and the tender bulge of her soft pussy meat as it created a hanging crescent in the gusset of her panties.
</p>
<p class="notation_text"> Oh my god! My cock sprang up so fast, and my balls tightened so hard that I had to clench my teeth to bite back my groan. <<print $mom.call >> reached the edge of the pool and dove forward, as graceful as the swan she was. As her steepled hands parted the water, I raced forward and dove in as well. The water coating my body was a crystalline blanket of freshness. I made sure to rise above the water at a depth that kept my waistline and erection hidden beneath the swaying water's surface.
</p>
<p class="notation_text"> Let <<print $mom.call >> see, my cock yelled at me. Let her fucking see what she does to us!
</p>
<p class="notation_text"> Maybe later, I mumbled to my perked-up soldier.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom4.jpg'">
<p class="notation_text"> <<print $mom.call >> came out of the water after I did, having swum to the opposite edge of the pool. Her head erupted through the water's surface, her hair whipping up and back and flinging globs of liquid through the air. She turned around, running her hand over her face as the water painted her nylon bra to her tits and more ran down her stomach and hips and back into the pool.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "That feels good," <<print $mom.call >> said. "Race you to the end!"
</p>
</div>
<p class="notation_text"> <<print $mom.call >> dove to her left, elongating her body as she started a sidestroke. I watched her for a <<print $mom.call >>ent, my eyes freezing to the gap between her thighs and the tight roll of nylon hammocking her muff. She had so much pussy meat for such a slender woman--so it looked in the water. My cock jerked, the head trying to rip through my shorts, creating a jolt of pleasure that ran along my shaft. Moaning, I followed my <<print $mom.rel>>'s body through the pool, wishing that I had worn a pair of goggles so that I could better appreciate the light glinting off my <<print $mom.rel>>'s body through the thickness of the oscillating water.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom3.jpg'">
<p class="notation_text"> She touched the back wall and broke through the surface. I followed. She shook her head, made a wuh sound, and swam away from me. Once again, I watched her slip through the water, my eyes finding her thong as it cupped her crack, and then her gusset as it cradled her wet pussy. Jesus Christ, but <<print $mom.call >> had to know that I wasn't going to just beat off after this when I had <<print $gf.name>> offering her juicy clam to me.
</p>
<p class="notation_text"> I followed <<print $mom.call >> back to the shallow end of the pool, my dick swinging in my shorts. Every kick of my feet and twist of my body sent a buzz through my cock. My dick wanted pussy. My mind wanted pussy. Fuck, my soul wanted pussy, and it wanted it right then.
</p>
<p class="notation_text"> After several hours we left.
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Love Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 1>>
<<set $eventCount += 1>>
<<set $pool.status[1] = 1>>
<<set $pool.status[0] = 0>>
<</nobr>>
</div>
<<nobr>>
<p class="notation_text">
<<print $message>>
</p>
<div class="button-pair">
<div class="loc_button" onclick="locEventCheck('Bedroom');" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/m_bedroom.jpg'">
<p>Bedroom</p>
</div>
<div class="loc_button" onclick="locEventCheck('Kitchen');" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/kitchen.jpg'">
<p>Kitchen</p>
</div>
<div class="loc_button" onclick="locEventCheck('Living');" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/living.jpg'">
<p>Living</p>
</div>
</div>
<div class="button-pair">
<div class="loc_button" onclick="locEventCheck('Pool');" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/pool.jpg'">
<p>Pool</p>
</div>
<div class="loc_button" onclick="locEventCheck('MyRoom');" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/my_room.jpg'">
<p>My Room</p>
</div>
<div class="loc_button" onclick="locEventCheck('Bathroom');" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/bathroom.jpg'">
<p>Bathroom</p>
</div>
</div>
<</nobr>>
<<script>>
UIBar.show();
<</script>>
<div class="big_text">
<<nobr>>
<p class="notation_text">
<<print $message>>
</p>
<<if $currentTime is 3 >>
<div id="pos">
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/mom22.jpg'">
<p class="notation_text">What should I do now?</p>
</div>
<<if $mc.stats.mom_rel gte 150 and $knowledge gte 150>>
<div class="enter_button" data-passage="MiniGame" data-setter = " $mediaType = 'video'; $activityType = 'Lust'; $activityVideo = 'scenes/video/mom/living-5.mp4';" >
<p >Check Out <<print $mom.call>></p>
</div>
<<else>>
<p class="notation_text">You need 150 relationship point and 100 Stealing point.</p>
<</if>>
<<if $mc.stats.mom_rel gte $talkEvent.living.rel[$livingTalk]>>
<div class="enter_button" onclick="talkEventCheck('Living');">
<p >Talk</p>
</div>
<<else>>
<p class="notation_text">To talk with <<print $mom.call>> need <<print $talkEvent.living.rel[$livingTalk]>> relationship point</p>
<</if>>
<div class="enter_button" data-passage="MiniGame" data-setter = "$activityType = 'Love'; $mediaType = 'video'; $activityVideo = 'scenes/video/mom/outing-2.mp4';" >
<p >Outing With <<print $mom.call>>!</p>
</div>
<<elseif $currentTime is 0 >>
<div id="pos">
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/mom42.webp'">
<p class="notation_text">What should I do now?</p>
</div>
<div class="enter_button" data-passage="MiniGame" data-setter = "$activityType = 'Love'; $mediaType = 'video'; $activityVideo = 'scenes/video/mom/living-6.mp4';" >
<p >Excercise With <<print $mom.call>>!</p>
</div>
<<else >>
<div id="pos2">
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/living.jpg'">
<p class="notation_text"><<print $mom.call>> will be available here at Afternoon & Early Morning. What should I do now?</p>
</div>
<<if $exercise is 0 and $currentTime lte 5 >>
<div class="enter_button" data-passage="MiniGame" data-setter = "$mediaType = 'image';$exercise = 1; $activityType = 'Stamina'; $activityImage = 'scenes/misc/excercise-1.webp';" >
<p >Exercise!</p>
</div>
<</if>>
<</if>>
<div class="enter_button" data-passage="Home" >
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<p class="notation_text">
<<print $message>>
</p>
<<set $message to "" >>
<img class="scenes_image" @src="setup.ImagePath+'scenes/city/city.jpg'" >
<p class="notation_text">Where should I go now?</p>
<div class="split-container">
<div class="column">
<div class="location_button" data-passage="Home">
<p >Dad's Apartment</p>
</div>
<div class="location_button" data-passage="Office">
<p >Dad's Office</p>
</div>
</div>
<div class="column">
<div class="location_button" data-passage="Bar">
<p >Bar</p>
</div>
<div class="location_button" onclick="locEventCheck('Club');" data-passage="Club">
<p >Sin City</p>
</div>
</div>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<<set _eventMoney = [$pool.money[0],$pool.money[1],$living.money[0],$pool.money[2],$myroom.money[0],
$pool.money[3],$living.money[1],$pool.money[4],$living.money[2],$pool.money[5],$living.money[3],
$bedroom.money[0],$myroom.money[1],$kitchen.money[0],$bedroom.money[1],"Completed"]>>
<<set _eventMorality = [$pool.morality[0],$pool.morality[1],$living.morality[0],$pool.morality[2],$myroom.morality[0],
$pool.morality[3],$living.morality[1],$pool.morality[4],$living.morality[2],$pool.morality[5],$living.morality[3],
$bedroom.morality[0],$myroom.morality[1],$kitchen.morality[0],$bedroom.morality[1],"Completed"]>>
<<set _eventStamina = [$pool.stamina[0],$pool.stamina[1],$living.stamina[0],$pool.stamina[2],$myroom.stamina[0],
$pool.stamina[3],$living.stamina[1],$pool.stamina[4],$living.stamina[2],$pool.stamina[5],$living.stamina[3],
$bedroom.stamina[0],$myroom.stamina[1],$kitchen.stamina[0],$bedroom.stamina[1],"Completed"]>>
<<set _eventMomLove = [$pool.mom_love[0],$pool.mom_love[1],$living.mom_love[0],$pool.mom_love[2],$myroom.mom_love[0],
$pool.mom_love[3],$living.mom_love[1],$pool.mom_love[4],$living.mom_love[2],$pool.mom_love[5],$living.mom_love[3],
$bedroom.mom_love[0],$myroom.mom_love[1],$kitchen.mom_love[0],$bedroom.mom_love[1],"Completed"]>>
<<set _eventMomLust = [$pool.mom_lust[0],$pool.mom_lust[1],$living.mom_lust[0],$pool.mom_lust[2],$myroom.mom_lust[0],
$pool.mom_lust[3],$living.mom_lust[1],$pool.mom_lust[4],$living.mom_lust[2],$pool.mom_lust[5],$living.mom_lust[3],
$bedroom.mom_lust[0],$myroom.mom_lust[1],$kitchen.mom_lust[0],$bedroom.mom_lust[1],"Completed"]>>
<<print $weekDays[$currentDay]>><br>
<<print $dayTimes[$currentTime]>><br>
<<if $weekendValue[$currentDay] lt 1>><<print "Weekday">>
<<else>><<print "Weekend">><</if>>
<p><span class = "ui_text">Stealing: </span> <<print $mc.stats.knowledge >><br>
<p><span class = "ui_text">Relation: </span> <<print $mc.stats.mom_rel >><br>
<p><span class = "ui_text">Morality: </span> <<print $mc.stats.morality >>/<<print _eventMorality[$eventCount]>><br>
<p><span class = "ui_text">Love: </span> <<print $mc.stats.mom_love >>/<<print _eventMomLove[$eventCount]>><br>
<p><span class = "ui_text">Lust: </span> <<print $mc.stats.mom_lust >>/<<print _eventMomLust[$eventCount]>><br>
<p><span class = "ui_text">Stamina: </span> <<print $mc.stats.stamina >>/<<print _eventStamina[$eventCount]>><br>
<!-- <p><span class = "ui_text">Energy: </span> <<print $mc.stats.energy >><br>
<p><span class = "ui_text">Energy: </span> <<print $mc.stats.energy >><br> -->
<br>
<span class = "ui_text">Money: </span> $<<print $mc.stats.money >>/<<print _eventMoney[$eventCount]>><br><br>
</p>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/dad/dad24.jpg'" >
<p class="notation_text"> Dad went to start his shift at the Sin City strip club.</p>
<p class="notation_text">Money increased by $20</p>
<div class="enter_button" onclick="getInfo(20,'Money'); getInfo(5,'Work'); forwardTime(1);" data-passage="Club" data-setter = "$message = ''">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/pool-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text mc_dialog_text">
<p><span span class="mc"><<print $mc.name>>:</span> "You know, you look absolutely stunning today. The way the sunlight dances on the water, it doesn't hold a candle to your beauty."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class="jc"><<print $mom.call>></span> with a smile "Thank you honey. Do you really like to spend time with your old <<print $mom.call>>."
</p>
</div>
<<if $talkEvent.pool.count[1] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >"I enjoy spending time with you, especially when you're wearing that two-piece outfit." I love to watch your body. (Lust+) </p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >"I feel shy when you wear this revealing outfit." (Morality+) </p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >I love to swim with you. (Love+) </p>
</div>
<<set $talkEvent.pool.status[2] = 1>>
<<set $talkEvent.pool.status[1] = 0>>
<<set $talkEvent.pool.count[1] += 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/living-7.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class="jc"><<print $mom.call>>:</span> kindly "In my experience, mutual respect and understanding are the cornerstones of any healthy sexual relationship. Do you want to hear more about this?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class="mc"><<print $mc.name>>:</span> considering "I'm open to hearing your perspective. Please, go ahead."
</p>
</div>
<p class="notification_text">What's your reaction to her offering insights about mutual respect and understanding in sexual relationships?</p>
<<if $talkEvent.living.count[1] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >I believe discussing on this matter will form sexual connections between us. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >I think I can navigate my own sexual relationships without her input. (Moral+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >I'm willing to listen, but I also want to make my own choices in this area. (Love+)</p>
</div>
<<set $talkEvent.living.status[2] = 1>>
<<set $talkEvent.living.status[1] = 0>>
<<set $talkEvent.living.count[1] += 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/myroom-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class="jc"><<print $mom.call>>:</span> firmly "You need proper guidence."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> listening intently "What are you saying?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class="jc"><<print $mom.call>>:</span> sincere "I'm saying, it's time to control your sexual attraction with the girl."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> pausing, considering her words "So, you're helping me on that?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class="jc"><<print $mom.call>>:</span>nodding "Yes, I am. It's for your own good."
</p>
</div>
<p class="notation_text">How do you perceive her intentions behind her help?</p>
<<if $talkEvent.myroom.count[1] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >I believe she's trying to guide me toward a better sexual experience. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >I feel like she's trying to control my sexual life and dictate my choices. (Morality+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >I think she has good intentions, but I also want to make my own decisions about my sexual choices. (Love+)</p>
</div>
<<set $talkEvent.myroom.status[2] = 1>>
<<set $talkEvent.myroom.status[1] = 0>>
<<set $talkEvent.myroom.count[1] += 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/kitchen-7.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span class="jc"><<print $mom.call>>:</span> gently "I believe it's important to discuss adult male-female relationships openly. How comfortable are you discussing these topics with me?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span class="mc"><<print $mc.name>>:</span> considering "Why do we need to talk about this?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span class="jc"><<print $mom.call>>:</span> understanding "I want to provide guidance and ensure you have a healthy perspective on relationships."
</p>
</div>
<p class="notation_text">How comfortable are you discussing adult male-female physical relationships with her?</p>
<<if $talkEvent.kitchen.count[3] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >I appreciate her openness to discussing these topics and providing sexual guidance. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >I feel a bit uneasy discussing adult relationships and would prefer to keep them private. (Morality+) </p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >I'm open to talking about it, but I need some time. (Love+)
</p>
</div>
<<set $talkEvent.kitchen.status[0] = 1>>
<<set $talkEvent.kitchen.status[3] = 0>>
<<set $talkEvent.kitchen.count[3] += 1>>
<<set $kitchenTalk = 0>>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/myroom-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class="jc"><<print $mom.call>>:</span> gently "I've noticed you've been growing up, and with that comes new emotions. How do you feel about opening up to me about your feelings for other girls?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class="mc"><<print $mc.name>>:</span> considering "What do you think?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class="jc"><<print $mom.call>>:</span> understanding "I think it's important to have someone you trust to talk about these things. But it's your choice."
</p>
</div>
<p>How do you feel about opening up to your <<print $mom.rel>> about your growing sexual feelings for <<print $gf.name>>?</p>
<<if $talkEvent.myroom.count[2] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >I think her insights could help me navigate these new feelings in an erotic way. (Lust+)
</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p > I find it awkward and prefer to deal with these emotions privately. (Morality+)
</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p > I'm open to discussing it with, but I also value having some personal feelings & fantasy. (Love+)
</p>
</div>
<<set $talkEvent.myroom.status[0] = 1>>
<<set $talkEvent.myroom.status[2] = 0>>
<<set $talkEvent.myroom.count[2] += 1>>
<<set $myroomTalk = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<p class="notation_text">
<<print $message>></p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/shop.jpeg'">
<p class="notation_text">What should I purchase?</p>
<<if $mc.inventory.groceries lt 100>>
<div class="enter_button" onclick="addInventory(100,30,'Groceries'); " data-passage="Shop" style="width:15vw;">
<p >Buy Groceries ($30)</p>
</div>
<</if>>
<<if $mc.inventory.camera == false>>
<div class="enter_button" onclick="addInventory(1,300,'Camera'); " data-passage="Shop" style="width:15vw;">
<p >Buy Camera ($300)</p>
</div>
<</if>>
<<if $mc.inventory.lingerie == false>>
<div class="enter_button" onclick="addInventory(1,400,'Lingerie'); " data-passage="Shop" style="width:15vw;">
<p >Buy Lingerie ($400)</p>
</div>
<</if>>
<<if $mc.inventory.dress == false>>
<div class="enter_button" onclick="addInventory(1,200,'Dress'); " data-passage="Shop" style="width:15vw;">
<p >Buy Dress ($200)</p>
</div>
<</if>>
<<if $mc.inventory.shoe == false>>
<div class="enter_button" onclick="addInventory(1,100,'Flower'); " data-passage="Shop" style="width:15vw;">
<p >Buy Gym Shoe ($100)</p>
</div>
<</if>>
<div class="enter_button" data-passage="Outdoor" style="width:15vw;" data-setter = "$message = ''">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/pool-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span class="jc"><<print $mom.call>>: </span>smiling warmly "I really cherish the moments we share, you know?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span class="mc"><<print $mc.name>>: </span>curious "You do?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span class="jc"><<print $mom.call>>: </span>nodding "Absolutely. You're like a ray of sunshine in my life."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span class="mc"><<print $mc.name>>: </span>a bit surprised "I didn't realize you felt that way."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span class="jc"><<print $mom.call>>: </span>grateful "Well, I do. So, how do you feel about spending time with me?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span class="mc"><<print $mc.name>>: </span>reflecting on their interactions "It's not bad, I guess."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span class="jc"><<print $mom.call>>: </span>nodding "Fair enough. So, how do you feel about spending time with me?"
</p>
</div>
<<if $talkEvent.pool.count[0] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust");forwardTime(1);' data-passage="Home" >
<p >I always enjoy our time together, and I must say, you look great in that bikini. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >I'd rather have some personal space, but I value our time. (Morality+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >Spending time with you is fine, and you cherish our moments together. (Love+)</p>
</div>
<<set $talkEvent.pool.status[1] = 1>>
<<set $talkEvent.pool.status[0] = 0>>
<<set $talkEvent.pool.count[0] += 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/kitchen-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> taking a seat with me "I want you to know, I truly care about your emotions & feelings."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> curious "Why are you saying this now?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> sincere "Because I've seen you grow into such an amazing person, and I want to be here to support you."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> somewhat skeptical "Support me in what?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> smiling "In whatever you choose to do with your life. I just want you to be happy and successful."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> pausing, considering her words "I appreciate that, but sometimes I wonder about your intentions."
</p>
</div>
<p class="notation_text">What's your overall impression of your <<print $mom.rel>>'s intentions?
</p>
<<if $talkEvent.kitchen.count[1] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >I believe she genuinely cares for my well-being. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p > I suspect she might have ulterior motives. (Morality+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p > I'm not entirely sure about her intentions either way. (Love+)
</p>
</div>
<<set $talkEvent.kitchen.status[2] = 1>>
<<set $talkEvent.kitchen.status[1] = 0>>
<<set $talkEvent.kitchen.count[1] += 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/bedroom-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> firmly "I've thought about this a lot, and I can't stand by while you make choices that might affect your future."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> listening intently "What are you saying?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> sincere "I'm saying, it's time to change your behavior with the <<print $gf.name>>."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> pausing, considering her words "So, you're giving me an ultimatum?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> nodding "Yes, I am. It's for your own good."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> responding "I'll think about it."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> understanding "That's all I ask."
</p>
</div>
<p class="notation_text">How do you feel about the pursuing relationships with <<print $gf.name>>?</p>
<<if $talkEvent.bedroom.count[0] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust");forwardTime(1);' data-passage="Home" >
<p >I agree with her plan and want to prioritize my sexual fellings with <<print $mom.call>>. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality");forwardTime(1);' data-passage="Home" >
<p >I think love and relationships aren't confined to timelines or future. (Morality+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love");forwardTime(1);' data-passage="Home" >
<p >I see the value in sexual feelings with <<print $gf.name>>, but I also want to explore my feelings to <<print $mom.call>>. (Love+)</p>
</div>
<<set $talkEvent.bedroom.status[1] = 1>>
<<set $talkEvent.bedroom.status[0] = 0>>
<<set $talkEvent.bedroom.count[0] += 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/kitchen-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> sitting down with the me "You know, I've been trying my best to create a bonding between you & me."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> raising an eyebrow "What do you mean?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> smiling warmly "I mean, I want this house to be a place where we all feel comfortable, supported, and happy. Your happiness matters to me."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> considering her words "I appreciate that, but sometimes it feels like you're trying to control everything."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> nodding thoughtfully "I hear you. I don't want to control your life, but I also want to make sure we're all on the same page. So, do you appreciate my efforts to create a harmonious home?"
</p>
</div>
<p class="notation_text">Do you appreciate your <<print $mom.rel>>'s efforts to create a happy home?
</p>
<<if $talkEvent.kitchen.count[0] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >Yes, I truly value her dedication. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >No, I feel she's overstepping boundaries. (Morality+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >I acknowledge her efforts, but I'm indifferent. (Love+)
</p>
</div>
<<set $talkEvent.kitchen.status[1] = 1>>
<<set $talkEvent.kitchen.status[0] = 0>>
<<set $talkEvent.kitchen.count[0] += 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/myroom-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class="jc"><<print $mom.call>>:</span> kindly "I've been through a lot in life, love, & physical relationship and I'm here to share my experiences with you, if you ever want to talk."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> considering "I appreciate that. I'll keep it in mind."
</p>
</div>
<p class="notation_text">How comfortable are you discussing matters of love and relationships with your <<print $mom.call>>?</p>
<<if $talkEvent.myroom.count[0] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >I value her insights and think her sexual experience could provide valuable guidance. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >I find it awkward and prefer to keep my romantic and sexual matters private. (Morality+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >I'm open to discussing love and sexual matters, but I also want to maintain a level of personal privacy. (Love+)</p>
</div>
<<set $talkEvent.myroom.status[1] = 1>>
<<set $talkEvent.myroom.status[0] = 0>>
<<set $talkEvent.myroom.count[0] += 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/living-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text">In a quiet moment when we're both in the living room, she gently broaches the subject to me.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "You know, understanding the dynamics of physical relationships and the importance of communication can make a significant difference in your life."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> Pondering her words, "I get what you're saying. It's just sometimes I feel like I can figure these things out on my own."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> Smiling warmly, "I know you're capable, but I want to make sure you have all the support and knowledge you need."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> Appreciating her concern, "I value that, and I'm open to learning from your experiences."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> Nodding, "That's all I ask, dear. You can always come to me when you have questions or need advice."
</p>
</div>
<p class="notation_text">How do you perceive her intention to ensure you understand the dynamics of love & sexual relationships?</p>
<<if $talkEvent.living.count[0] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >I see it as a sign that she cares about my emotional well-being and wants me to approach sexual topics thoughtfully. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >I find it a bit overbearing and believe I can manage my own sexual situations. (Morality+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >I appreciate her concern, but I also want the freedom to explore sexual relationships in my own way. (Love+)</p>
</div>
<<set $talkEvent.living.status[1] = 1>>
<<set $talkEvent.living.status[0] = 0>>
<<set $talkEvent.living.count[0] += 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/bedroom-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> sitting down with me "You know, I've always tried to be a positive force in this family."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> curious "What do you mean?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> thoughtful "I mean, I want to be there for all of you, to fill any gaps and make this family stronger."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> reflecting on it "I guess I never really thought about it that way."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> smiling "Well, it's something I've always believed in."
</p>
</div>
<p class="notation_text"> What's your perception of her role in the family dynamic?
</p>
<<if $talkEvent.bedroom.count[1] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >I see her as an important pillar that contributes positively in my sexual life. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >I sometimes feel she's trying to replace my loneliness. (Morality+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p > Her role is there, but it doesn't significantly affect me. (Love+)
</p>
</div>
<<set $talkEvent.bedroom.status[2] = 1>>
<<set $talkEvent.bedroom.status[1] = 0>>
<<set $talkEvent.bedroom.count[1] += 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/kitchen-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> offering a hand "Need any help with that?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>considering "I think I can manage on my own."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> smiling "Alright, just know that I'm here if you change your mind."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> softening "I appreciate that, thanks."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> nodding "You're welcome."
</p>
</div>
<p class="notation_text">So, how do you usually react when you help her with the tasks?
</p>
<<if $talkEvent.kitchen.count[2] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p> I get a chance to check her out while she does house chores. It makes me horney. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >I prefer handling things on my own without interference. (Morality+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p > I'm open to help her, it makes our bonding strong. (Love+)
</p>
</div>
<<set $talkEvent.kitchen.status[3] = 1>>
<<set $talkEvent.kitchen.status[2] = 0>>
<<set $talkEvent.kitchen.count[2] += 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<<set _eventQuest = ["Pushing it Poolside-1","Pushing it Poolside-2", "<<print $mom.call>>'s Concern-1", "Pushing it Poolside-3",
"I'm not stupid", "Pushing it Poolside-4","It wasn't My Imagination","Pushing it Poolside-5","Be assertive",
"Pushing it Poolside-6","Let her see","Deep Observation","It did the trick","Waited for a reason",
"I needed more","Completed"]>>
<<set _eventQuestLocation = ["Pool ","Pool ","Living","Pool", "My Room","Pool" ,"Living","Pool",
"Living","pool","Living","Bedroom","My Room","Kitchen","Bedroom","Completed"]>>
<<set _eventQuestTime = [$pool.time[0],$pool.time[1],$living.time[0],$pool.time[2],$myroom.time[0],
$pool.time[3],$living.time[1],$pool.time[4],$living.time[2],$pool.time[5],$living.time[3],
$bedroom.time[0],$myroom.time[1],$kitchen.time[0],$bedroom.time[1],"Completed"]>>
<<set _eventMoney = [$pool.money[0],$pool.money[1],$living.money[0],$pool.money[2],$myroom.money[0],
$pool.money[3],$living.money[1],$pool.money[4],$living.money[2],$pool.money[5],$living.money[3],
$bedroom.money[0],$myroom.money[1],$kitchen.money[0],$bedroom.money[1],"Completed"]>>
<<set _eventMorality = [$pool.morality[0],$pool.morality[1],$living.morality[0],$pool.morality[2],$myroom.morality[0],
$pool.morality[3],$living.morality[1],$pool.morality[4],$living.morality[2],$pool.morality[5],$living.morality[3],
$bedroom.morality[0],$myroom.morality[1],$kitchen.morality[0],$bedroom.morality[1],"Completed"]>>
<<set _eventTitle = [$pool.title[0],$pool.title[1],$living.title[0],$pool.title[2],$myroom.title[0],
$pool.title[3],$living.title[1],$pool.title[4],$living.title[2],$pool.title[5],$living.title[3],
$bedroom.title[0],$myroom.title[1],$kitchen.title[0],$bedroom.title[1],"Completed"]>>
<<set _eventStamina = [$pool.stamina[0],$pool.stamina[1],$living.stamina[0],$pool.stamina[2],$myroom.stamina[0],
$pool.stamina[3],$living.stamina[1],$pool.stamina[4],$living.stamina[2],$pool.stamina[5],$living.stamina[3],
$bedroom.stamina[0],$myroom.stamina[1],$kitchen.stamina[0],$bedroom.stamina[1],"Completed"]>>
<<set _eventMomLove = [$pool.mom_love[0],$pool.mom_love[1],$living.mom_love[0],$pool.mom_love[2],$myroom.mom_love[0],
$pool.mom_love[3],$living.mom_love[1],$pool.mom_love[4],$living.mom_love[2],$pool.mom_love[5],$living.mom_love[3],
$bedroom.mom_love[0],$myroom.mom_love[1],$kitchen.mom_love[0],$bedroom.mom_love[1],"Completed"]>>
<<set _eventMomRel = [$pool.mom_rel[0],$pool.mom_rel[1],$living.mom_rel[0],$pool.mom_rel[2],$myroom.mom_rel[0],
$pool.mom_rel[3],$living.mom_rel[1],$pool.mom_rel[4],$living.mom_rel[2],$pool.mom_rel[5],$living.mom_rel[3],
$bedroom.mom_rel[0],$myroom.mom_rel[1],$kitchen.mom_rel[0],$bedroom.mom_rel[1],"Completed"]>>
<<set _eventMomLust = [$pool.mom_lust[0],$pool.mom_lust[1],$living.mom_lust[0],$pool.mom_lust[2],$myroom.mom_lust[0],
$pool.mom_lust[3],$living.mom_lust[1],$pool.mom_lust[4],$living.mom_lust[2],$pool.mom_lust[5],$living.mom_lust[3],
$bedroom.mom_lust[0],$myroom.mom_lust[1],$kitchen.mom_lust[0],$bedroom.mom_lust[1],"Completed"]>>
<<set _eventDay = ["Weekday","Weekend","Weekday","Weekday","Weekday","Saturday","Weekday","Weekday","Sunday",
"Weekday","Weekday","Weekday","Weekday","Weekday","Weekday","Completed"]>>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc">Quest</span><br>
Quest: <<print _eventQuest[$eventCount]>><br>
Location: <<print _eventQuestLocation[$eventCount]>><br>
Time: <<print $dayTimes[_eventQuestTime[$eventCount]]>><br>
Required: <br>
Money: <<print _eventMoney[$eventCount]>> ||
<!-- Knowledge: <<print _eventMomLove[$eventCount]>> || -->
Morality: <<print _eventMorality[$eventCount]>> ||
Love: <<print _eventMomLove[$eventCount]>> ||
Lust: <<print _eventMomLust[$eventCount]>> ||
Stamina: <<print _eventStamina[$eventCount]>>
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc">Tips</span><br>
Money & Knowledge: Freelance at your room. / Bedroom<br>
Talk: Increase Relation by doing house chores<br>
Love: Exercise, Swim, Outing & Talk with <<print $mom.rel>><br>
Lust: Exercise, Swim & Talk with <<print $mom.rel>><br>
Morality: Increase Relation & Talk with <<print $mom.rel>><br>
<<print $mom.call>> Location: <br>
Pool: Midday ||
Kitchen: Morning & Evening (Weekend) ||
Bedroom: Night ||<br>
Living: Early Morning & Afternoon ||
Bathroom: Evening (Weekday) <br>
Cheat Code: Available in Your Room (Patreon Only)
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc">Character</span><br>
<<print $mom.rel>>:<br>
Relation: <<print $mc.stats.mom_rel>> ||
Lust: <<print $mc.stats.mom_lust>> ||
Love: <<print $mc.stats.mom_love>> ||<br>
</p>
</div>
<div class="enter_button" data-passage= "Home" >
<p >Leave</p>
</div>
<</nobr>>
</div>
[[Quest]]
[[Patreon]]<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/Mysterious.jpg'" >
<p class="notation_text">Thank you for joining me on this exciting journey! As I dive into my first-ever game project, I'm learning and growing every step of the way.
</p>
<p class="notation_text">
The game will always be free, but your support on Patreon means the world to me. Your contributions, no matter how big or small, fuel my passion and help bring this project to life. So, if you're excited to be a part of this adventure and want to show your support, consider pledging on my Patreon page.
</p>
<p class="notation_text">
Together, we're creating something amazing, and I truly appreciate your generosity. Let's make this game a reality!
</p>
<p class="notation_text">
I need a team. If you are good in English(Communication)/French/Czech (Translation) language please let me know. We can work together.
</p>
<p class="notation_text">
Your feedback is insanely appreciated! You can send it to my Discord or anywhere you want!
</p>
<p class="notation_text">
<a href="https://www.patreon.com/the_twist" target="_blank">Visit my Patreon page.</a>
</p>
<div class="enter_button" data-passage="Patreon" data-setter = "$message = ''">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Club Midday -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc12.jpg'">
<P class="notation_text"> I woke early in the morning, but I stayed in my room, watching the clock on my phone strike eight, then a minute after, then another, until five minutes had passed, then another five and then another five. During that time, the mechanical growl of the garage opening told me my father was leaving for work, but still, my <<print $mom.rel>> was going to be in her panties and a shirt for me--all day long. I couldn't wait, yet my nerves hit me, and they hit me hard.
</p>
<P class="notation_text"> The beating of my heart went from calm, unfelt throbs to a rapid, skipping pace, like a cymbal's rounded edge vibrating after receiving the battering of a drumstick. Goosebumps sprouted across my forearms while my small hairs stood on end, bringing with them a chill that caused my shoulders to dance. Little pinpoints of fuzzy lightness danced over my skin, making my palms and the soles of my feet sweat. Disgusting. My breathing rose, every inhale whistling through my nostrils and thickening in my ears, forming a gelatinous cushion between my eardrums and the outside world.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc11.jpg'">
<P class="notation_text"> Holy shit.
</p>
<P class="notation_text"> I needed to get in the moment.
</p>
<P class="notation_text"> The first thing I did was leave my room, speed-walk to the restroom, and turn on the cold water to full blast. Breathing hard and anticipating the chill, I jump in, the water hitting the outermost edges of my body before the rest of me followed, stepping under its jetting streams and tightening up as the freezing liquid constricted my nerve endings.
</p>
<P class="notation_text"> Holy shit!
</p>
<P class="notation_text"> That was dumb, but it did the trick.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc10.jpeg'">
<P class="notation_text"> By the time I had dried off and dressed in a T-shirt and basketball shorts--basketball shorts minus my boxer briefs, and that had been a tremor inducing decision with my mind screaming, Choose something! as I stood there as still as an asshole during a snowstorm.
</p>
<P class="notation_text"> Eventually, I settled down enough to walk downstairs without suffering a panic attack. I was going to enjoy my <<print $mom.rel>> today, no matter what. Every step out of my room was another step up a mountain, and the tingling had returned to my palms, along with the sweat--palms only. Jesus, but my <<print $mom.rel>> had a strange effect on me. I didn't see her at the top of the stairs, so I hurried down at a jog, my feet rumbling down the steps. I turned right and walked straight through the hallway, cutting into the kitchen, and that's where I found my <<print $mom.rel>>, dressed for me exactly as she had promised to dress for me.
</p>
<P class="notation_text"> God damn, but I was one lucky son of a bitch.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/living-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> <<print $mom.call >> had chosen a simple combination of clothes, but my cock still rose at the sight of her. She sat at the breakfast nook with her profile to me. A gray T-shirt made of thin cotton clung to her body, molding to her breasts, their sides and undersides, and her already rock-hard nipples. The shirt pushed right up to where the underside of her breasts met her chest and then slid straight down, stopping above her belly button and leaving her slim stomach bare, her little belly bottom shallow and kissable to my mind's eye. A white, lacy, elastic band circled her waist, about a quarter-inch thick, and that was all that I could see from her profile, meaning the rest of her panties lay snuggled between her ass cheeks in some kind of thong or G-string. I hoped she was wearing a G-string.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/mc10.jpg'">
<P class="notation_text"> I had stopped as soon as I had entered the kitchen, and my eyes slid from <<print $mom.call >> to the table, where her striped pajama pants lay neatly folded atop her pajama shirt, along with a white, half-cup bra made of transparent threads. My cock thickened. The swelling was so tangible that I felt every blood vessel in my shaft expand until my thickness throbbed from root to tip.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Morning," <<print $mom.call >> said, not looking up from her coffee and paper.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Morning," I said, my voice breaking like a kid's going through puberty.
</p>
</div>
<P class="notation_text"> <<print $mom.call >> laughed, almost spilling her coffee, but she still didn't look at me. This was supposed to be business as usual, and I understood that, so I told myself.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom44.jpg'">
<P class="notation_text"> While I did understand our arrangement, that didn't mean I was only going to take my glances as they came. I made myself some cereal and stood on the inside half of the island, leaning against the marble top with my vision in line with <<print $mom.call >>'s profile. I stared at her naked thigh, her hip, the outer half of her ass cheek, and her bare midriff. It was too bad she had her chair pulled in close to the table; otherwise, I'd at least get to see her back and her cheeks down to the chair's seat, but she'd have to stand soon enough.
</p>
<P class="notation_text"> <<print $mom.call >> read her paper, and she let me watch as she sipped her coffee, taking her time and pretending as if I wasn't there, perving on her in ways a good son never would. I spent time admiring her breasts. Her shirt was so thin and tight that I could see how her nipples created a darker shade of color against the fabric. Her areoles looked small and beaded with goosebumps, but it was her nipples that stole the show.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom42.jpg'">
<P class="notation_text"> They had been hard when I had entered the kitchen, but I swear I watched them thicken further, becoming larger at their peak while tightening near their base. God, if only I could talk my <<print $mom.rel>> into walking around in her bra and panties, or better still, nothing at all. Shoveling a mouthful of cornflakes into my mouth to hide a moan, I pressed my cock against the island and enjoyed the pressure running through my shaft.
</p>
<P class="notation_text"> <<print $mom.call >> placed her paper down and pushed her coffee aside. She lifted her arms above her head, her long fingers interlaced, and she arched her back as she stretched upward. Her little titties reached upward, the morning light from the patio creating a halo of sunshine around her body, and then she exhaled and pushed her chair away from the table.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom43.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I need to get to work," <<print $mom.call >> said, turning to look at me for the first time that morning. "You'll be around when I take my first break?"
</p>
</div>
<P class="notation_text"> I nodded my head. <<print $mom.call>> leave.
</p>
<P class="notation_text"> Fuck, I should have gone my room sooner. Now I had nothing but my memory to preserve this moment. You can take pictures and videos for when you're alone. Fuck me, but <<print $mom.call >> had spoken those words last time. Why'd I leave my phone in my room?
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Lust Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');statsChange(10,'Lust');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 13>>
<<set $eventCount += 1>>
<<set $kitchen.status[0] = 1>>
<<set $myroom.status[1] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<p class="notation_text">
<<print $message>>
</p>
<<if $currentTime is 2 >>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/mom41.jpg'">
<p class="notation_text">What should I do now?</p>
<<if $mc.stats.mom_rel gte $talkEvent.pool.rel[$poolTalk]>>
<div class="enter_button" onclick="talkEventCheck('Pool');">
<p >Talk</p>
</div>
<<else>>
<p class="notation_text">To talk with <<print $mom.call>> need <<print $talkEvent.pool.rel[$poolTalk]>> relationship point</p>
<</if>>
<div class="enter_button" data-passage="MiniGame" data-setter = "$mediaType = 'video'; $activityType = 'Love'; $activityVideo = 'scenes/video/mom/pool-2.mp4'; ">
<p >Swim With Mom!</p>
</div>
<<else >>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/pool.jpg'">
<p class="notation_text"><<print $mom.call>> will be available here at Midday. What should I do now?</p>
<<if $poolClean is 0 and $currentTime lte 5>>
<div class="enter_button" data-passage="MiniGame" data-setter = "$poolClean = 1; $mediaType = 'image'; $activityType = 'Rel'; $activityImage = 'scenes/misc/pool-clean.jpg';" >
<p >Clean Pool!</p>
</div>
<</if>>
<<if $swimming is 0 >>
<div class="enter_button" data-passage="MiniGame" data-setter = "$swimming = 1; $mediaType = 'image'; $activityType = 'Stamina'; $activityImage = 'scenes/misc/swim.gif';" >
<p >Swim!</p>
</div>
<</if>>
<</if>>
<div class="enter_button" data-passage="Home" >
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/2/bedroom-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> kindly "I've been through a lot in life, and I want to offer you some advice on how to approach relationships and interactions with girls. What's your reaction to that?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> considering "What kind of advice do you have?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>understanding "I just want to help you make the right choices and treat to make your companion happy and satisfied."
</p>
</div>
<p class="notation_text">How do you perceive her intention to ensure you understand the dynamics of sexual relationships?</p>
<<if $talkEvent.bedroom.count[2] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >I see it as a sign that she cares about my emotional well-being and wants me to approach sexual relationships thoughtfully. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >I find it a bit overbearing and believe I can manage my own sexual relationships. (Morality+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >I appreciate her concern and it will give me a chance to get her closer, but I also want the freedom to explore sexual relationships in my own way. (Love+)</p>
</div>
<<set $talkEvent.bedroom.status[0] = 1>>
<<set $talkEvent.bedroom.status[2] = 0>>
<<set $talkEvent.bedroom.count[2] += 1>>
<<set $bedroomTalk = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<p class="notation_text">
<<print $message>>
</p>
<<if $currentTime gte 5 >>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/mc6.jpg'" >
<p class="notation_text">What should I do now?</p>
<div class="enter_button" data-passage="MyRoom" onclick="forwardDay()" data-setter = "$message = ' '">
<p >Sleep</p>
</div>
<<else>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/my_room.jpg'">
<p class="notation_text"><<print $mom.call>> will be available here at Evening. What should I do now?</p>
<</if>>
<<if $currentTime is 4 >>
<<if $mc.stats.mom_rel gte $talkEvent.myroom.rel[$myroomTalk]>>
<div class="enter_button" onclick="talkEventCheck('MyRoom');">
<p >Talk</p>
</div>
<<else>>
<p class="notation_text">To talk with <<print $mom.call>> need <<print $talkEvent.myroom.rel[$myroomTalk]>> relationship point</p>
<</if>>
<</if>>
<div class="enter_button" onclick="forwardTime(1)" data-passage="MyRoom" data-setter="$message to ''" >
<p >Nap (+1 Hour)</p>
</div>
<div class="enter_button" data-passage="Computer" data-setter="$message to ''" >
<p >My Computer</p>
</div>
<div class="enter_button" data-passage="Home" data-setter = "$message = ''">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/pool-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class="jc"><<print $mom.call>>:</span> kindly "I've noticed you might be going through some physical attraction awakening. I'm here to help you navigate this in a considerate manner. How do you perceive my intention?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class="mc"><<print $mc.name>>:</span> considering "Why are you bringing this up?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class="jc"><<print $mom.call>>:</span> understanding "I care about your growth and well-being. I want to offer guidance."
</p>
</div>
<p class="notation_text">How do you perceive her intention to help you navigate your physical attraction awakening in a considerate manner?</p>
<<if $talkEvent.pool.count[2] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >I see it as a sign that she cares about my growth and well-being. (Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >I find it intrusive and think I should handle these feelings independently. (Morality+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >I understand her concern, but I also want the freedom to explore on my terms. (Love+)</p>
</div>
<<set $talkEvent.pool.status[0] = 1>>
<<set $talkEvent.pool.status[2] = 0>>
<<set $talkEvent.pool.count[2] += 1>>
<<set $poolTalk = 0>>
<</nobr>>
</div>
<<nobr>>
<div style="margin-top:5vw;">
<div>
<p style="notation_text">Created by The Twist | Game version: v1.3 "Chapter 3"</p>
</div>
<div>
<p style="notation_text">We hope you enjoy this game! With ♥ from The Twist.</p>
</div>
<</nobr>>
<<script>>
UIBar.show();
<</script>>
<<nobr>>
<div style="margin-top:5vw;">
</div>
<div class="intro">
<p style="margin:0;margin-bottom:2%;">Change Name & Relation by clicking on change button below. </p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/mc0.jpg'" >
<div class="setting_text">
<label for="mcName">Change My Name (Default: <<print $mc.name>> Williams):</label>
<input type="text" id="mcName" value="Mark" placeholder="Enter only nick name Mike/Mark/etc.">
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/gf0.jpg'" >
<div class="setting_text">
<label for="gfName">She is <<print $gf.name>> (Default: <<print $gf.rel>>)</label>
<input type="text" id="gfName" value="Jenna" placeholder="Enter only nick name Jenna/Silvy/etc.">
<br>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/mom0.jpg'" >
<div class="setting_text">
<label for="momName">She is <<print $mom.name>> (Default:<<print $mom.name>> Williams)</label>
<input type="text" id="momName" value="Mona" placeholder="Enter any Mona/Silvee/Reba"><br>
</div>
<div class="setting_text">
<label for="momRel">She is your (Default: <<print $mom.rel>>)</label>
<input type="text" id="momRel" value="Step-Mother" placeholder="Enter any Step-Mother/Mother/Landlady"><br>
</div>
<div class="setting_text">
<label for="momCall">You should call her (Default: <<print $mom.call>>)</label>
<input type="text" id="momCall" value="Stepmom" placeholder="Enter any Stepmom/Mom/Landlady/Name"><br>
</div>
<<button "Change" "Intro_0">>
<<set $mc.name = $("#mcName").val()>>
<<set $gf.name = $("#gfName").val()>>
<<set $mom.name = $("#momName").val()>>
<<set $mom.rel = $("#momRel").val()>>
<<set $mom.call = $("#momCall").val()>>
<</button>>
</div>
<</nobr>>
<div class="big_text">
<<nobr>>
<div class="bar">
<div class="segment">10</div>
<div class="segment" id="seg1">0</div>
<div class="segment" id="seg2">2</div>
<div class="segment" id="seg3">5</div>
<div class="segment" id="seg4">0</div>
<div class="cursor"></div>
</div>
<p id="result"></p>
<div id="stop-button" >
<p>STOP</p>
</div>
<<if $mediaType is "video">>
<video class="scenes_image" id="activityVideo" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<<else>>
<img id='activityImage' class="scenes_image">
<</if>>
<<set _random_value = random(1, 5)>>
<div id="leave-button" onclick="statsChangeRandom(); forwardTime(1);" data-passage="Home" >
<p >Random Point</p>
</div>
<div id="leave-button" onclick="forwardTime(1);" data-passage="Home">
<p >Leave</p>
</div>
<</nobr>>
</div>
<<script>>
/* pure JavaScript code */
$(document).ready(function() {
startGame();
// $("#stop-button").on("click", stopGame);
$("#stop-button").on("click", function() {
stopGame(variables().activityType);
});
});
<</script>>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/living-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span class="jc"><<print $mom.call>>:</span> gently "I've noticed you might be experiencing physical attraction to other girls. How comfortable are you discussing this with me?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span class="mc"><<print $mc.name>>:</span> considering "Why do you want to know?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span class="jc"><<print $mom.call>>:</span> understanding "I want to be here for you and provide guidance if needed."
</p>
</div>
<p class="notation_text">How comfortable are you discussing your physical attraction to other girls with your stepmother?</p>
<<if $talkEvent.living.count[2] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p >I value her guidance and think it's important to have open conversations. (Lust+)
</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p > I find it a bit uncomfortable and would prefer to keep these matters private. (Morality+)
</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p > I'm willing to talk about it, but I also want to maintain some boundaries. (Love+)
</p>
</div>
<<set $talkEvent.living.status[0] = 1>>
<<set $talkEvent.living.status[2] = 0>>
<<set $talkEvent.living.count[2] += 1>>
<<set $livingTalk = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom2.jpg'">
<P class="notation_text"> I raised my eyes, devouring her long body and her apple-sized breasts, whose just-over-a-handful size looked smaller than they were due to her height. Her nipples stood out straight and hard, stretching the nylon fibers forward and sideways, threatening to rip the threads apart. When I reached my <<print $mom.rel>>'s face, I saw swirls of pink in her cheeks, but her sunglasses hid her eyes. An almost-smile ghosted the corners of her full lips.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>"My swimsuit?" <<print $mom.call >> asked.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"It's breathtaking," I whispered.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>"Thanks." <<print $mom.call >>'s smile widened. "I'm glad you like it. I've bought more, too, for the rest of the summer." She breathed in, shivering, and then out, the sound trembling in the air. "And if things go well, maybe you can help me pick out more?"
</p>
</div>
<P class="notation_text">I nodded my head.
</p>
<P class="notation_text"><<print $mom.call>> leave.
</p>
<div class="enter_button" data-passage="Home">
<p >Leave</p>
</div>
<<set $talkEvent.kitchen.status[0] = 1>>
<<set $talkEvent.bedroom.status[0] = 1>>
<<set $talkEvent.living.status[0] = 1>>
<<set $talkEvent.myroom.status[0] = 1>>
<<set $talkEvent.pool.status[0] = 1>>
<!-- <<set $eventCount += 1>> -->
<<set $pool.status[0] += 1>>
<!-- <<set $kitchen.status[0] -= 1>> -->
<</nobr>>
</div>
<<script>>
UIBar.show();
<</script>>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom37.jpg'">
<P class="notation_text"> I entered the kitchen
</p>
<P class="notation_text"> <<print $mom.call >> stood, pausing as she faced forward, her head tilting to the left as if she were deciding what side of her body to reveal to me first. Was she? Maybe, I don't know, but I was eager to see both sides of her, front and back, at the same time. We needed a mirror for her to face. After another second, <<print $mom.call >> turned away, giving me a shot of her perfect, pear-shaped backside.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom38.jpg'">
<P class="notation_text"> It's one thing to describe what a floss-like band of nylon running through your <<print $mom.rel>>'s crack looks like, and it's another to see it live and in person when she wants you to see it. It's like she's naked, but not. The string lying between her cheeks hid the most vulnerable spots on her body, like her butthole, yet it presented my vision with the illusions of her crinkly spokes, and that's what I saw: The illusion of her nakedness.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom39.jpg'">
<P class="notation_text"><<print $mom.call >> continued her turn, walking around her chair and facing me. My eyes dropped to the front of her panties, where lacy flowers covered the transparent patch of cloth and formed a triangle over her mound. It was a small triangle, like last night, about an inch of her sunny-hued landing strip visible above the waistline, as the rest of her mound, hips, and thighs lay smooth and exposed to my eyes. The triangle narrowed, almost forming a point as it cupped the tender bulge of her pussy, hiding only her clit and inner lips but leaving the curved swell of her outer labia uncovered.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom40.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Close your mouth, <<print $mc.name>>," <<print $mom.call >> whispered. "It's not polite to chew with your mouth full."
</p>
</div>
<P class="notation_text"> I shut my mouth, my teeth clicking together hard.
</p>
<P class="notation_text"> <<print $mom.call >> laughed and walked out of the kitchen. It took me a moment to calm myself, but then I chased her down the hallway, watching as her ass rolled with her strides, her butt cheeks sliding against the G-string running through her crack. When she turned at the foyer and walked up the stairs, I followed, but I also waited for my <<print $mom.rel>> to get five steps above me before I chased her up the stairs.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom41.jpg'">
<P class="notation_text"> I waited for a reason: Her pussy. I loved the way her small panties cradled the softness of her lips. It was like a hammock trying to contain too much weight. The way her pussy meat bulged and rolled, trapped in that tiny strip of cloth, had taken hold of my gaze and wouldn't let go. It had turned me into my <<print $mom.rel>>'s obedient boy until she reached the upstairs landing, turned, and hid her pussy from my eyes.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call >> turned around, puckered her lips, but then she said, "I need to work."
</p>
</div>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Love Increased)
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');statsChange(10,'Lust');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 14>>
<<set $eventCount += 1>>
<<set $bedroom.status[1] = 1>>
<<set $kitchen.status[0] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Bedroom Night -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom36.jpg'">
<P class="notation_text"> I saw <<print $mom.call>> approaching towards her bedroom. Snapping out of my trance, I made a quick turn at the top of the stairs and darted to my room. I grabbed my phone and ran back to <<print $mom.call >>--ran, not speed-walked, but ran--catching her bedroom door a moment before it clicked shut.
</p>
<P class="notation_text"> She looked at me, first into my eyes, and then she glanced down at the hard-on poking against my pants. For a moment, her eyes widened, but then she saw my phone.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I'll be downstairs in a couple of hours," sounding relieved.
</p>
</div>
<P class="notation_text"> I nodded my head.
</p>
<P class="notation_text"> She looked relieved.
</p>
<P class="notation_text"> What had she thought I had come here to do?
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc11.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I know," I said, doing my best not to think as I spoke, "but I remembered what you said last night, about the pictures I could take, and I thought, 'I don't have enough pictures of you,' at the moment." I shrugged. "Can a son have too many pictures of his <<print $mom.rel>>?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call >>'s face remained calm, so I couldn't tell if she regretted her words from last night, but finally, she said, "Snap away, but be quick about it."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I held my camera up, my eyes shifting from my <<print $mom.rel>> to my screen to my <<print $mom.rel>>, and then I said, "Can you pose a little?"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom30.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Pose?"
</p>
</div>
<P class="notation_text"> I nodded.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "How?" <<print $mom.call >> asked, her eyes again flicking toward my hard-on.
</p>
</div>
<P class="notation_text"> I had my eyes on my screen, but I saw the downward angle of her gaze.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Smile," I said, adding, "or stare, but how about crossing your arms under your"--I swallowed to keep myself from saying tits--"across the front of your stomach? And spread your legs a little."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom31.jpg'">
<P class="notation_text"> Pink swirls of color backlit <<print $mom.call >>'s cheeks.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Step your feet apart, I mean," I said in a rush of words as tiny beads of sweat pushed through my pores, causing a strained warmth to flow down my forehead and into my cheeks. "Do whatever you want, but try not to be stiff about it." I stretched my neck to the right. "Why is it so hot in your bedroom?"
</p>
</div>
<P class="notation_text"> <<print $mom.call >> tried to hold in a laugh as her eyes darted down to my stiffness again. Fuck it. Let her see. I wanted her to see, and before her eyes could move away from my cock, I flexed my shaft, pulling it inward at the base and tightening the underside of my pole, forcing the head to pop upward.
</p>
<P class="notation_text"> <<print $mom.call >> turned her head to the side, then, after a deep breath, she crossed her arms beneath her breasts and stepped her right foot sideways, spreading her legs. The point of her pussy stood out with her legs separated and her cunny lips spreading, finding room to breathe and looking much fuller than they had downstairs. I snapped a picture, and I lowered the phone, finding an angle that gave me the best shot of the inside swells of <<print $mom.call >>'s ass that I could see when looking between her thighs.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom32.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Enough?" <<print $mom.call >> asked, her voice tight.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Could you turn around," I said, making my question a statement. "And grab onto something." I licked my lips. "Lean forward, I mean."
</p>
</div>
<P class="notation_text"> <<print $mom.call >>'s jaw tightened, and the muscles in her neck rippled. She turned around, giving my eyes the freedom to roam over her ass. The closest thing for her to grab onto her was her chair. With her legs against the seat's edge, she leaned forward, her arms coming up and her hands resting on the headrest, the stance pushing her butt toward the camera.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Spread your legs a little," I said, breathing hard.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom33.jpg'">
<P class="notation_text"> I felt like a pervert for making my <<print $mom.rel>> do this, yet, I also felt a thrill lighten my body, making my shoulders dance and my breath shudder. How could something so wrong make my dick so hard?
</p>
<P class="notation_text"> I loved it.
</p>
<P class="notation_text"> I hated it.
</p>
<P class="notation_text"> I didn't want it to end.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Perfect," I whispered. "<<print $mom.call >>, that's the perfect pose."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom34.jpg'">
<P class="notation_text"> <<print $mom.call >>'s legs had tightened, the curve of her hamstrings created a sensual rise and fall that partitioned her cheeks from her legs, giving the hint of athleticism to her otherwise slender body. The bottom of her cheeks had spread, creating the illusion of a curtained window focusing on the tight band of white cloth pressing into her slit, forming a from-behind cameltoe that made my mouth water. I saw dampness there, between her legs, spreading outward. Above, where her gusset narrowed into her G-string at her perineum, I saw the rounded edges of her asshole, leading downward into a hole covered by a thin string of nylon.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Take the pictures," <<print $mom.call >> said, her voice tight and her breathing measured.
</p>
</div>
<P class="notation_text"> I snapped two pictures. I took the first one with a wide lens, keeping my <<print $mom.rel>>'s entire body in the frame, along with her chair and the window at the side of her desk.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom35.jpg'">
<P class="notation_text">The next one, I zoomed in on the precious piece of meat between her legs, making sure to capture the dampness of her panties and the impression of her clit. After the second picture, <<print $mom.call >> stood, turned around, and sat in her chair, crossing her right leg over her left.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Run along now," she whispered as though I were a kid again. "I have to work."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I noticed fresh sparkles of sweat along her brow before I said, "I'll see you soon."</p>
</div>
<P class="notation_text"> I left her room, my cock swinging as I turned my body around. I hoped her eyes flickered down to my crotch one more time. She had to know her teasing wasn't going to be enough to satisfy me. She had to know, and so the question was:
</p>
<P class="notation_text">How was I going to tell her that I needed more from her?
</p>
<div class="enter_button" data-passage="Patreon">
<p >Continue</p>
</div>
<</nobr>>
</div>