<<nobr>>
<div style="margin-top:5vw;">
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/intro.jpg'" >
<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_4" >
<p >Skip Start</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.3 "Episode 3"</p>
</div>
<div>
<p style="notation_text">We hope you enjoy this game! With ♥ from The Twist.</p>
</div>
</div>
<</nobr>>
<<script>>
UIBar.hide();
<</script>>
<<set $currentDay to 0 >>
<<set $currentTime to 5 >>
<<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' : [20,60,160,220],
'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' : [40,140,280],
'knowledge' : [60,210,360],
'count' : [0,0,0],
},
'living' : {
'title' : ["Living_Talk_6", "Living_Talk_9", "Living_Talk_15"],
'status' : [0,0,0],
'rel' : [120,180,300],
'knowledge' : [90,240,390],
'count' : [0,0,0],
},
'myroom' : {
'title' :["Myroom_Talk_5", "Myroom_Talk_10", "Myroom_Talk_12"],
'status' : [0,0,0],
'rel' : [100,200,240],
'knowledge' : [120,270,420],
'count' : [0,0,0],
},
'pool' : {
'title' :["Pool_Talk_4", "Pool_Talk_13", "Pool_Talk_16"],
'status' : [0,0,0],
'rel' : [80,260,320],
'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_7',],
"status": [0,],
"time" : [2,],
"money": [100],
"morality": [70],
"mom_lust": [70],
"mom_love": [70,],
"mom_rel": [40,],
"day": [0,],
"stamina": [70,],
}
>>
<<set $kitchen = {
"title" : ['Event_2','Event_3'],
"status": [0,0],
"time" : [1,1],
"money": [100,100],
"morality": [20,30],
"mom_lust": [20,30],
"mom_love": [20,30],
"mom_rel": [0,0],
"day": [0,0],
"stamina": [20,30],
}
>>
<<set $myroom = {
"title" : ["Event_0",'Event_10','Event_11' ],
"status": [0,0,0],
"time" : [2,3,3],
"money": [100,0,0],
"morality": [10,60,60],
"mom_lust": [10,60,60],
"mom_love": [10,60,60],
"mom_rel": [0,0,0],
"day": [0,0,0],
"stamina": [10,60,60],
}
>>
<<set $pool = {
"title" : [ ],
"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,70,70,70],
"mom_lust": [0,0,0,30,50,70],
"mom_love": [30,50,70,90,110,130],
"mom_rel": [0,0,0,0,0,0],
"day": [0,0,0,0,0,0],
"stamina": [20,40,80,120,160,100],
}
>>
<<set $living = {
"title" : ['Event_4','Event_5','Event_6','Event_13','Event_14','Event_15','Event_16','Event_17',],
"status": [0,0,0,0,0,0,0,0],
"time" : [1,5,3,5,5,5,5,5],
"money": [100,100,100,100,100,100,100,100],
"morality": [40,50,60,70,80,90,100,110],
"mom_lust": [40,50,60,70,80,90,100,110],
"mom_love": [40,50,60,70,80,90,100,110],
"mom_rel": [0,0,0,0,0,0,0,0],
"day": [0,0,0,0,0,0,0,0],
"stamina": [40,50,60,70,80,90,100,110],
}
>><div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/mc6.jpg'">
<P class="notation_text"> I entered to my room to think about that, coming up with a scenario where I walked into my <<print $mom.rel>>'s' bedroom with a speech in mind, to allowing her to catch me masturbating face to face, to--to weird, surreal fantasies that bordered on science fiction. In the end, I jerked off to <<print $mom.call >>'s pictures--making it last as long as I could--fisting several wads of cum into a towel, and then I went downstairs to wait for my <<print $mom.rel>>'s first break of the day.
</p>
<P class="notation_text"> It took forever, despite having edged myself for an hour to her photos. I filled the second hour with pacing, foot-tapping, regular jerks of my cock, and releasing the anxious waves of energy coursing through my body with push-ups, pull-ups, squats, and lunges. That last hour convinced me of one thing: I was going to put my <<print $mom.rel>>'s determination to keep me from the sex offender's list to the test as soon as I saw her again. I wasn't fucking around anymore. I needed pussy, and the pussy that I wanted answered to the title of <<print $mom.call >>.
</p>
<div class="enter_button" data-passage="Home">
<p >Continue</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 $myroom.status[0] = 1>>
<</nobr>>
</div>
<<script>>
UIBar.show();
<</script>>/* 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 -->
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/laundry-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text">She gracefully shed her robe, revealing a white top and panties, and she appeared absolutely stunning.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"Walk with me," <<print $mom.call >> said, walking toward the hallway.
</p>
</div>
<p class="notation_text"> I pulled out my camera, snapping more pictures of her, her cheeks filling with pink with every click of the button. She continued eating even as the digital shutter snapped away. We talked about my senior year of high school, about college, about the possibility of me getting a job to keep me busy.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I laughed when she said that, but then I said, "I think a job would be good for me, but I'm not going to let it ruin my social life." I smiled at her. "I have commitments."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/laundry-10.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $mom.call >>'s lips tightened, but then she put her hands together and stretched them over her head, inverting her palms and arching her back. Her breasts pushed toward me, her nipples hard and thick as they attempted to cut through her shirt. She stretched so high that she rose onto her tiptoes, and maybe she meant to, or maybe she didn't, but the barest hint of the bottom of her breasts came into view. I snapped a quick picture, and <<print $mom.call >> relaxed and went back to washing machine.
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses.
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home" >
<p >Leave</p>
</div>
<<set $talkEventCount = 1>>
<<set $eventCount += 1>>
<<set $kitchen.status[0] = 1>>
<<set $myroom.status[0] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Kitchen Morning-->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom2.jpg'">
<p class="notation_text"> I entered the kitchen island, <<print $mom.call>> was there
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Wow, what a stunning dress she's wearing! It looks like she's all set for a photoshoot."
</p>
</div>
<p class="notation_text">I started talking to her as she made herself a snack of fruits cut down to bite-sized portions. Every slice of her knife made her titties shake. <<print $mom.call >> knew I was looking at them because sometimes she'd say,
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>"Don't stand with your head hunched; it's bad for your posture." Then she'd go back to cutting with a smile on her face. When she had finished cutting her fruits, she pushed her plate to the right so that it lay between us, but I wasn't in the mood to snack on an array of neatly assorted fruits.
</p>
</div>
<p class="notation_text"> Meanwhile, I stared at her picture, my cock throbbing as I admired the bottom roundness of her tits. As <<print $mom.call >> talked about something, college, I think, and that perhaps it would be best if I went to school somewhere out of the state so that I could get a taste of the real world on my own.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah, that's the reason I should go to school out of state," I said.
</p>
</div>
<p class="notation_text"> <<print $mom.call >> continued talking, and I moved from where I was, walking around her. <<print $mom.call >>'s eyes followed me, and then she turned her head over her right shoulder as far as she could as I stopped several feet behind her and then backed up several feet more.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Well...." <<print $mom.call >> said, still trying to look at me.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom5.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Can you spread your legs a little," I said, making my question a statement the way I had upstairs in her bedroom.
</p>
</div>
<p class="notation_text"> <<print $mom.call >> continued standing straight up and down. She lowered her right hand to the fruits, plucking a strawberry from the plate. Her hand went up, and the strawberry disappeared as <<print $mom.call >> brought it to her mouth. I pictured her full lips opening and the deep red of the strawberry touching the bed of her tongue, her fingers clutching the stem and holding the strawberry lightly as her teeth closed, slicing the fruit in half. Juices exploded in my mind's eye, and <<print $mom.call >>'s cheeks rippled, and her tongue bobbed as she chewed on her delicate, mid-morning treat.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"Your legs, <<print $mom.call >>," I said as I stared down at her ass and the white string riding her crack. "Spread them."
</p>
</div>
<p class="notation_text"> <<print $mom.call >> chewed, creating a wet sound, and then she sighed as she stepped her feet apart, first the left and then the right, widening her stance. Her outer labia pulled to the sides, so smooth and tender, giving my camera the perfect view of that crescent cunny bulge between her legs.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Lean forward," I whispered as I knelt. "And stick your butt out." I didn't sound like myself in my own ears.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom4.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>," <<print $mom.call >> snapped. "Don't talk to me like that. I'm still your <<print $mom.rel>>."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Stick it out, please." A pulse shot through my cock, dropping a thick load of sticky precum into my shorts. "It's a great view, <<print $mom.call >>. I don't think <<print $gf.name>> could look this good from here, but I'm willing to find out."
</p>
</div>
<p class="notation_text"> <<print $mom.call >> released a long breath that sounded like exasperation. It was a sound I knew well. When I was younger, and <<print $mom.call >> would take me to the park, she always made that sound about an hour after I had first begged her for just one more push on the swing, or one more slip down the slide or one more anything, and <<print $mom.call >> would give--my <<print $mom.rel>> really would do anything for me.
</p>
<p class="notation_text"> My cock throbbed again.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom1.jpg'">
<p class="notation_text"> <<print $mom.call >> bent forward, still holding her knife, and placed her elbows on the island's marble top. Her lower back arched, her spine barely visible, the little bumps pushing against her sensual skin, and her legs straightened, making her muscles go taut and adding a sexy firmness to the swan-like grace of her limbs.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I whispered, my voice not as shaky as it had been. "Perfect."
</p>
</div>
<p class="notation_text"> I needed to find out how far <<print $mom.call >> was willing to go, and I needed to find out soon.
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses.
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 2>>
<<set $eventCount += 1>>
<<set $kitchen.status[1] = 1>>
<<set $kitchen.status[0] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Kitchen Morning -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom6.jpg'">
<p class="notation_text"> <<print $mom.call>> was there.</p>
<p class="notation_text"> I pulled out my camera and snapped a picture. Then I snapped another. <<print $mom.call >> tried to stand, but I said, "Not yet," in a low growl, and she made a wet, clicking noise with her tongue, but she leaned back onto her elbows. "I need to video this."
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>," <<print $mom.call >> said, almost pouting.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You said I could video you."
</p>
</div>
<p class="notation_text"> <<print $mom.call >> did pout this time, and more precum left my balls, making my sack tingle as my cock convulsed. She stood still, though, and even leaned farther forward, stretching her upper body along the counter. I heard the plate of fruit slide across the marble island as I hit my phone's video record button.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom7.jpg'">
<p class="notation_text"> I captured <<print $mom.call >>'s body, panning the camera down one leg, then up, then down the other, then up again. I moved the camera to the side and recorded my <<print $mom.rel>>'s small feet before bringing the camera back to that special bit of love between her thighs. I zoomed in on her pussy, first on the outer edges, moving the camera in so close that I could see the smoothness of her skin. The twin bulges of her labia made my balls ache, and they seemed to open and spread for me the longer I focused my camera on them--natural-born stars. The fabric of her panties pushed inward against her slit, turning a darker shade of white as her wetness dripped from her.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Almost done?" <<print $mom.call >> asked, her voice breathy and shaky.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Almost," I said and moved closer to her.
</p>
</div>
<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> "Almost."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom5.jpg'">
<p class="notation_text"> I stopped with the camera about six inches from her cunny. I took a deep breath, trying to calm my heartbeat, and that's when an intoxicating fragrance caressed my nostrils, inside and out, making them flare as threads of pink mists curled about them. <<print $mom.call >>'s pussy. <<print $mom.call >>'s pussy perfume. She smelled like flowers and sweetness, and her fragrance clung to the hollow of my nostrils, thickening and blooming with the promise of sex and the keen notes of her desire. Holy shit, this was that intoxicating scent that came from nowhere but instantly made a person think of fucking and nothing else.
</p>
<p class="notation_text"> Fuck me, but <<print $mom.call >> was horny. She wasn't just wet. She wanted to fuck!
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call >>," I said, still kneeling, "can you turn around for me?"
</p>
</div>
<p class="notation_text"> <<print $mom.call >> pushed herself to a standing position and turned around. She looked down at me, but I didn't look up at her. I had my phone focused on the triangle of her labia, recording the blonde hairs sticking above her waistline and panning the camera over the exposed sides of her mound. I panned lower, loving how the outer edges of her lips lay outside of the triangle of her little panties.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom3.jpg'">
<p class="notation_text"> I stood, keeping the camera on my <<print $mom.rel>>'s body, recording her stomach and belly button and her breasts. I captured each one, zooming in on her nipples, and then I moved up to her face, where she was nibbling on the last of her strawberry, and a little bit of juice escaped her lips as she bit into it.
</p>
<p class="notation_text"> My cock hurt so fucking much because of this... this... this craziness.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call >>," I said, "I can't do this anymore."
</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, dropping her hand from her mouth, the strawberry's top slipping from her fingers and crashing to the wooden floor below.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I need to see <<print $gf.name>>." I lowered my camera. "This is too much. I mean, look!" I tilted my phone's viewer at my cock. "Your teasing--"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Don't say that," <<print $mom.call >> said. "You can't see <<print $gf.name>>. You can't. You have to do something else. You have to find a way to stay away from her. You have to--"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Can I touch you?" I asked, my question slicing through her words and leaving her wide-eyed. "I'm not leaving <<print $gf.name>> for another woman. I'm not. But if you're going to insist on this, whatever this is, I need to touch 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, sighing.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I need to." I licked my lips. "And not like when I put the oil on you. I need to touch you." I shut my eyes, my face clenching. I wasn't acting. "<<print $gf.name>> won't tease me like you do. She wants to give me the real thing. I need more from you, <<print $mom.call >>."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/3/mc1.jpg'">
<p class="notation_text"> I opened my eyes, but I didn't look at my <<print $mom.rel>>. I stared down and to the left, the expression on my face a tangible mixture of shame, frustration, desire, and other emotions that left me feeling like a swelling ball of rage that would continue to grow until it burst.
</p>
<p class="notation_text"> <<print $mom.call >> stared at me in silence.
</p>
<p class="notation_text"> A minute slipped into the past.
</p>
<p class="notation_text"> I almost looked up at her.
</p>
<p class="notation_text">Another minute disappeared from my life.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"I'm going to <<print $gf.name>>," I said, turning around and walking toward the hallway cutting straight to the foyer. "This isn't working. Not the way you wanted it to work. I'm sorry."
</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, her voice firm but not cold. There was a kind of resignation in her tone that warmed my blood. "Meet me in the living room at morning. Wait for me, no matter how long I take."
</p>
</div>
<p class="notation_text">Not turning around, I nodded.
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses.
</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] = 1>>
<<set $kitchen.status[1] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Living Morning-->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/3/mc2.jpg'">
<p class="notation_text"> I walked to the living room and sat on the couch facing the TV, placing my phone on the armrest. Time went by, one minute, then two--my dick still hard. By the third minute, I had started tapping my right foot, my balls now aching. By the fourth minute, my left foot had joined my right, my knees rising and falling in unison. I breathed in deeply, taking in as much air as possible to calm myself, but it wasn't working. I looked toward the kitchen often for the next several minutes, and by the eighth minute, I stood and almost walked back to the kitchen, but <<print $mom.call >> had said to wait, no matter how long she took.
</p>
<p class="notation_text"> Fuck.
</p>
<p class="notation_text"> God had not given horny eighteen-year-olds the patience to wait for sex. It was no wonder that so many of us got into trouble. I was ready to stand up again by the time half an hour had passed, but then I heard the soft tap of <<print $mom.call >>'s feet on the hallway's wooden floor.
</p>
<p class="notation_text"> I turned to the right, looking at my <<print $mom.rel>>, who was coming out of the kitchen with a full glass of wine. I guessed it was not her first since I had left the kitchen, and maybe not her second. There was a soft glaze filming her eyes.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/living-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $mom.call >> stepped from the wooden foyer and down into the carpeted living room, walking around the far end of the couch. She sipped her wine and then walked forward, stopping in front of me. There was plenty of room between the couch and the coffee table--<<print $mom.call >> didn't believe in clutter--and she stared down at me with an unreadable expression on her face.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call >>?" I asked.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call >> licked her lips before saying, "If I let you touch my legs, you will not see <<print $gf.name>>."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "For today," I said. "I won't see <<print $gf.name>> for today."
</p>
</div>
<p class="notation_text"> <<print $mom.call >> narrowed her brows.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I promise." I tilted my head to the left and then rolled it to the right before straightening it. "Next day too."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/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 >> inhaled deeply, then exhaled with a heavy sound. Was she trying to guilt me into changing my mind? It wasn't going to work. My <<print $mom.call >>--any <<print $mom.call >>--standing in front of their son while wearing a pair of tiny panties and a cropped tank top that hugged her tits like a second skin was not about to convince their sex-starved child that touching her wasn't in his best interest.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Okay," <<print $mom.call >> said. "Get off the couch."
</p>
</div>
<p class="notation_text"> I stood, looming over my <<print $mom.rel>>. She brought her wine up to her lips and drank. Her green eyes found mine, and they didn't break contact. The stem of the wine glass tilted upward, the round base pointing at me as the wine disappeared into my <<print $mom.rel>>'s mouth. Every last drop of the wine ran down her throat before she turned to her left and moved away from me. <<print $mom.call >> walked one step and then glided into the couch with a cat-like crawl, her right knee going up first, then her right hand. She braced herself as she set her wine glass down, the stretch of her arm and spine lifting her ass into the air. With her legs parted, that fabric capturing her pussy folds seemed to stretch, and she then brought her left hand and leg onto the couch and lay down on her stomach with her legs closed.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/living-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> "Go ahead," <<print $mom.call >> said. "Touch me."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Anywhere," I said.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "No," <<print $mom.call >> snapped. "Not anywhere."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I mean anywhere that you aren't wearing clothes."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/living-11.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> "My legs," <<print $mom.call >> said. "My back and my sides. That's where you can touch me." <<print $mom.call >> made a clicking sound with her tongue. "I'm still your <<print $mom.rel>>." She gathered her hair and pulled it over her left shoulder. "Remember that."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I know," I said. "No other woman could convince me not to see <<print $gf.name>>."
</p>
</div>
<p class="notation_text"> <<print $mom.call >>'s head turned as if she were about to look over her shoulder at me, but then she faced forward. She grabbed a couch pillow and rested her cheek on its softness. Her eyes faced the backrest, and then they closed. I took that as a sign to get in my feels.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t2.gif'">
<p class="notation_text"> There was no lotion this time, only skin-to-skin contact. I dropped to my knees, my hard-on hovering above the cushions and pointing at <<print $mom.call >>'s hip. I placed my left hand on the small of her back, the warmth of her skin flowing into my hand, and I felt the rise of goosebumps across her flesh. I placed my right hand on her left leg, the outside leg, above her ankle, and I stroked upward toward the back of my <<print $mom.rel>>'s knee.
</p>
<p class="notation_text"> <<print $mom.call >> stiffened, and she drew in a deep breath, releasing it with a tremor. I spread my fingers along her calf, touching as much of her as possible, with my thumb pointed upward along her leg. At her knee, I rubbed her skin in a small circle, then I moved back down and then back up, pulling her leg toward the edge of the couch cushions. <<print $mom.call >> resisted at first, but I increased my pressure, and slowly, I managed to get her to spread her legs for me. A narrow V opened up, pointing straight to the white cloth cupping her cunny meat. My eyes focused between her legs, and my cock throbbed, begging me to stick it right there as if I had a say in the matter.
</p>
<p class="notation_text"> In due time, I told my prick.
</p>
<p class="notation_text"> I rubbed my <<print $mom.rel>>'s lower back as I moved my hand to her other calf. My fingers tips pressed into her, and I slid my hand up to the hem of her crop top and around to her far side, giving her slender body a squeeze. <<print $mom.call >>'s breathing deepened, but she didn't tell me to stop touching her above her waist. I could tell that she was trying to control the volume of her breathing.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t3.gif'">
<p class="notation_text"> I moved my right hand back to her left calf and moved upward, stopping at her knee, moving down, then pushing back to her knee and moving above it. <<print $mom.call >> tensed at the first touch of my fingertips along her inner thigh, my long digits curving inward toward the softer part of her leg.
</p>
<p class="notation_text"> She felt smooth and soft, but the deeper I pressed into her skin, the firmer her muscles grew. I moved my fingers to her right thigh, brushing her flesh with the backs of my fingers and then moving back to her left thigh, feathering her skin with my fingertips, almost tickling her, and doing my best to send pleasure through her body. A man was touching her between her legs. It had to feel good, right?
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses.
</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 $living.status[1] = 1>>
<<set $living.status[0] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/living-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<!-- Living Night -->
<p class="notation_text"> I entered the living room, and <<print $mom.call>> was sitting on the sofa. I approached her and sat beside her, placing my hand behind her back. My eyes moved to the cloth that was cupping my <<print $mom.rel>>'s pussy, and I smiled when I saw the damp line outlining the length of her maternal slit. God, my father was lucky to have been inside her small hole. My cock pulsed. I bit back a moan as I took my hand from my <<print $mom.rel>>'s back and angled my body toward her head, making it easier for me to place my hands on the back of her thighs, just above her knees.
</p>
<p class="notation_text"> Licking my lips as my <<print $mom.rel>> shivered, I pulled my hands upward, adding pressure to my fingertips. My digits were on the top of <<print $mom.call >>'s thighs, but my thumbs were on the insides, where <<print $mom.call >> had to be the most sensitive. Before my fingertips could reach the bottoms of <<print $mom.call >>'s butt cheeks, I stopped my hands, but I rowed my thumbs along her inner thigh, massaging her and then caressing her far beyond the measure of a normal <<print $mom.rel>>/son relationship.
</p>
<p class="notation_text"> God, my dick hurt. If only I could take it out.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t1.gif'">
<p class="notation_text"> I moved my hands higher.
</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 rushed. "My legs only."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I know," I said as I slid my hands inward, down to her inner thighs, my fingertip about a quarter inch away from the start of her inner lips. I curled my fingers over my <<print $mom.rel>>'s flesh, pulling her skin hard enough to stretch the exposed layers of her outer folds further away from the cover of her panties.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>," <<print $mom.call >> gasped as her cunny lips slipped away from each other.
</p>
</div>
<p class="notation_text"> I stretched my fingers outward, getting closer to the heat radiating from between her thighs. I curled them again, watching as her pussy pulsed with my movements. Her lower lips puckered as I pushed inward, and they opened as I curled my fingers away from her center groove. I placed more pressure on my <<print $mom.rel>>'s thighs, forcing her right leg against the back of the couch and her left leg closer to the edge. The left side of her cunny showed more skin than her right side.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t5.gif'">
<p class="notation_text"> I curled my fingers again.
</p>
<p class="notation_text"> A soft moan escaped my <<print $mom.rel>>'s lips.
</p>
<p class="notation_text"> Sighing, I swept my hands up the backs of her thighs, and as my heart beat faster, I pushed upward, inching my fingers onto her bare butt cheeks and then over them. <<print $mom.call >> whimpered. As I did this, I humped my hips forward, rubbing the underside of my cock against the couch. Pleasure shot through me. I humped the couch faster, pushing precum from my cock and pressing my fingers harder into my <<print $mom.rel>>'s ass--really making her feel my touch. <<print $mom.call >> reached back with her hands, placing her fingers over mine, but I pushed upward anyway, not stopping until I held both of her firm hams in my palms with my thumbs resting along her crack.
</p>
<p class="notation_text"> A strange, helpless whine left my <<print $mom.rel>>'s lips.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/mc11.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call >>," I said, talking without thinking, "can I jerk off on you?"
</p>
</div>
<p class="notation_text"> My heart stopped. Why had I asked her that question? What happened to taking my time? What happened to moving slowly? What happened to not shoving my head up my ass? I squeezed my <<print $mom.call >>'s butt hard, not knowing what to do, but I had to do something.
</p>
<p class="notation_text"> <<print $mom.call >> pushed herself up into the Upward Dog yoga pose. Without saying a word, she slid her left leg from the couch and then her right, facing away from me, and she walked around the couch and up onto the foyer, and then up the stairs, her pear-shaped as swaying as she left me alone.
</p>
<p class="notation_text"> Fuck me!
</p>
<p class="notation_text"> I had fucked up.
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses.
</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 $living.status[2] = 1>>
<<set $living.status[1] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Living Night -->
<!-- <img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t24.gif'"> -->
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/teasing-2.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.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"Is he already asleep?" I typed and then passed the tablet to her. Afterward, I took a seat on the cushion beside mom.
</p>
</div>
<P class="notation_text"> I swept my thumb across the top of my <<print $mom.rel>>'s thigh as I applied pressure to her legs, seeking deeper access to her body. <<print $mom.call >> didn't budge. She squeezed her thighs together harder, and the heat from between them warmed my hand.
</p>
<P class="notation_text"> "Stop", <<print $mom.call >> typed.
</p>
<P class="notation_text"> "If I do, can we go to my room?"
</p>
<P class="notation_text"> "No."
</p>
<P class="notation_text"> "Fine", I typed. "But this is what I have waiting for me next door."
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/type-5.gif'">
<P class="notation_text"> I moved my fingers across my screen, clicking buttons and swiping folders until I pulled up a picture of <<print $gf.name>>, and she hadn't dressed as an innocent eighteen-year-old girl would have. In the picture, she was wearing her friend's black lingerie: stockings, garters, see-through panties, and an open-bust shelf bra. Her black, satin-gloved hands with white lace at the cuffs covered her nipples but left a good amount of her skin bare.
</p>
<P class="notation_text"> "If not you, then <<print $gf.name>>," I wrote, my breathing deepening.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom32.jpg'">
<P class="notation_text"> <<print $mom.call >> stared at the picture. She stared and stared, then she closed the window and shook her head. I stood, slipping my hand from her between her legs. Dampness coated my skin, more so on the side that had been deepest between my <<print $mom.rel>>'s legs. My cock stood straight out from my shorts. I looked to Dad, and from my higher angle, I could see that he had his eyelids closed. Opportunity missed. Before I could step away, <<print $mom.call >> tugged on the leg of my shorts. She tugged hard, and after a second tug, I sat down next to her. <<print $mom.call >> sighed, and she spread her legs open... for me.
</p>
<P class="notation_text"> As I sat, <<print $mom.call >> turned my tablet back on. This time she wrote, "Do not masturbate in front of me."
</p>
<P class="notation_text"> "Under my shorts?" I asked.
</p>
<P class="notation_text"> "Sorry <<print $mc.name>> not tonight. It's late; I should head to bed. I've got work to do tomorrow." <<print $mom.call>> replied.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom33.jpg'">
<P class="notation_text"> <<print $mom.call >> tilted her head to the right, her eyes rolling in the same direction. I palmed my knob with my left hand, pushing down on my head. A buzzing, pleasure-filled cloud swirled around my glans before shooting straight down my shaft, forcing my ass to tighten and my hips to rise. <<print $mom.call >> turned the tablet off and placed it on the end table next to her. She faced forward, her eyes on the TV, then looking at Dad, who seemed to be sleeping, and then back at the TV.
</p>
<P class="notation_text"> "We didn't set any other boundaries," I thought as I went back to my room. What was <<print $mom.call >> going to do if I went too far? Yell for Dad? Run upstairs, where we could be alone? Holy shit, my thoughts were getting dark.
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses.
</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 $living.status[7] = 1>>
<<set $living.status[6] = 0>>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<!-- Living Night -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t22.gif'">
<!-- <video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/kitchen-2.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>> was there, watching TV, while Dad was sleeping on the couch. I sat beside her.The moment was mine, and yet, my hand moved slowly toward her thigh. I had freedom now, and I moved with a slow, persistent pressure as if giving my <<print $mom.rel>> a chance to back out. Or maybe I wanted to savor this. Maybe I was savoring this and giving my <<print $mom.rel>> a chance to back out. I didn't know, but now that <<print $mom.call >> had called my bluff, an entirely new expectation had fallen upon me. I had to perform. I had only ever touched <<print $gf.name>>. There had been plenty of finger-banging and pussy-eating between us, but what did my inexperience really know about <<print $gf.name>>'s body or how to please a woman?
</p>
<P class="notation_text"> A real woman who was waiting for me to do to her whatever I dared to do to her.
</p>
<P class="notation_text"> My <<print $mom.call >>?
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t27.gif'">
<P class="notation_text"> My heartbeat thickened in my chest. Dampness chilled my palm as my pulse beat against the center of my hand. I had to perform. I had to. Performing was the only way that I was going to make my <<print $mom.rel>> want my touch, instead of having to endure my touch.
</p>
<P class="notation_text"> I pressed my palm against my <<print $mom.rel>>'s thigh. Her skin seared me. My fingers pointed inward, wrapping around her limb to caress the inner meat between her legs. She had parted her thighs, and I had a narrowing V-shaped window running toward the beautiful, sun-kissed cunny that marked the prettiest portion of a woman's body.
</p>
<P class="notation_text"> I squeezed her thigh. <<print $mom.call >> said nothing. I squeezed her thigh again, pulsing my digits against her limb, my rhythm slow and tender. My left palm rolled over my knob, my hips humping upward as pleasure shot through me. Would <<print $mom.call >> touch me if I asked?
</p>
<P class="notation_text"> Don't push it, I thought. We've rushed this enough. Tonight is about showing her what we can do.
</p>
<P class="notation_text"> I slid my hand toward my <<print $mom.rel>>'s knee. She looked at Dad as I caressed her smooth skin. I stroked my cock faster through my shorts, keeping my fingers around the neck of my shaft and rowing my thumb over the head. Several trembling breaths left my lungs, and <<print $mom.call >> angled her head in my direction enough that she had to be able to see me stroking my stiffy.
</p>
<P class="notation_text"> This was madness.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t1.gif'">
<P class="notation_text"> I slid my hand down her thigh, pushing inward so that my fingertips brushed the cushion between her legs, my palm resting against her skin. Down I went. <<print $mom.call >> shivered once I passed the middle of her thigh. A warm cloud of mist seemed to greet the side of my hand closest to her muff, dampening my flesh and urging my little finger to stretch outward as far as possible, stopping less than an inch from her satin-covered crotch.
</p>
<P class="notation_text"> A blurred, wobbling lightness hammered the inside of my skull. I moved back up <<print $mom.call >>'s thighs, and she breathed easier. I moved back down, and her next inhale turned heavy. I glanced at the front of her shirt, where her rock-hard nipples poked at the fabric, threatening to rip through the threads. They stuck outward, thick and hard, like Jennifer Anniston's nipples on nearly every episode of Friends.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/teasing-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> I moved lower than before, forcing <<print $mom.call >> to spread her legs further apart as my knuckles grazed the inner meat of her right thigh. She wiggled her butt, but she had nowhere to run. My pinky extended again, riding her damp flesh and teasing the leghole of her boyshorts. Her left hand twitched, so I pulled my hand up her leg and caressed the middle of her thigh, squeezing and feeling the smooth firmness of my <<print $mom.rel>>'s skin.
</p>
<P class="notation_text"> I continued stroking my cock and working the precum from my balls. Each spurt of crystal-clear jizz reminded my cock that there was soft treasure between my <<print $mom.rel>>'s thighs. I had come from those folds, saying hello to the world by spreading her open, and now I wanted to go back and spread her open again, but instead of emptying her pink channel of life, I wanted to fill it with my own once more.
</p>
<P class="notation_text"> My balls shivered, and I almost came to my sick, perverse, and cock-hardening desires. I was going to have my <<print $mom.rel>> one day; before the end of this, and maybe, one day, <<print $gf.name>> and her both.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/3/mc7.jpg'">
<P class="notation_text"> At the same time, my cock said as a jolt of pleasure pushed a moan from my lips.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>"Shhhhh," <<print $mom.call >> hissed, moving her right arm from the armrest and slapping my hand between her legs.
</p>
</div>
<P class="notation_text"> Something about that movement reminded me of the girls in porn, spanking their hairless beavers before their costars punched their cocks into their pussies.
</p>
<div class="enter_button" data-passage="Event_18">
<p >Continue</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Myroom Afternoon -->
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/3/gf-6.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<!-- <p class="notation_text"> I waited for her laughter to end before I said, "Not in those words. Are you going to listen to me or laugh at me?"
</p> -->
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> “So tell me what is your idea?” <<print $gf.name>> asked curiously.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> “Now my idea focuses on convincing your dad to let you give up the pussy.”
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> <<print $gf.name>> laughed, looking down between her legs. "The pussy, huh? Do you think he'll say, 'Hey, <<print $gf.name>>, I think it's about time for you to give up the pussy'?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I waited for her laughter to end before I said, "Not in those words. Are you going to listen to me or laugh at me?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Both?" <<print $gf.name>> laughed. "Can I play with myself while you talk about my dad?"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/3/gf-9.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Her words poured out of her mouth with a thick, honey-like sweetness that fed naughty thoughts through my ears--a merry-go-round of <<print $gf.name>>'s tits, her round ass, her pink pussy, and her white-toothed smile enticed me to slip into her body. Ah, fuck, but I had no willpower.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yes," I said. "You can play with yourself."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "You jerk off too." Her fingers had moved to her breasts, wetting her nipples and twisting the thick nubs between her thumbs and forefingers.
</p>
</div>
<p class="notation_text"> I nodded, thinking, Don't be angry with me, <<print $mom.call >>. I'm just jerking off.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/3/gf-7.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> turned on her bed, her feet facing her camera and her head disappearing as she lay back on her mattress. She dug her heels into her comforter, pulling her body closer to the camera with her knees open and her thighs pointing the way to her pink-slitted clam. When she got as close to the camera as she could, she grabbed a pillow and placed it under her head, and then another, propping herself up enough to view her phone's screen and me within it.
</p>
<p class="notation_text"> I could see her pussy, her inner thighs, her spreading butt cheeks, and the bottom of her crack as it disappeared against her comforter. Her stomach led the way to the bottoms of her tits, capped by thick, juicy-pink nipples and then her blonde, Barbie doll face. Looking into her blue eyes, I thought, I hope my plan works.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Let me see that big cock," <<print $gf.name>> purred. "I miss playing with it."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/3/gf-10.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I moaned, keeping my voice as low as possible. I held my phone in my left hand, as far below my cock as I could reach so <<print $gf.name>> could look at my cock while I admired her snatch. The position was going to be awkward, so I grabbed a book from my nightstand, and after a minute, I managed to prop my phone up between my legs in a position similar to <<print $gf.name>>'s.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Do you miss the taste of my pussy?" <<print $gf.name>> asked as she used her index fingers to pull her little lips apart, forming a pair of dewy butterfly wings split by the line of her slit and capped by her clit's swollen jewel.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yes," I whispered as a line of white cream formed between the meeting place of <<print $gf.name>>'s pink pussy walls.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/3/gf-8.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> collected the cream with her right middle finger and brought it to her lips. Her tongue flicked out, the point pushing against her cunny honey and brushing upward, gathering the juices and pulling them into her mouth.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck, Baby I need to go. I think <<print $mom.cal>> is calling." I hissed, stroking my cock harder as precum lathered my mushroom cap in a clear, slippery liquid.
</p>
</div>
<!-- <p class="notation_text"> I paid $200 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Love Increased)
</p> -->
<div class="enter_button" data-passage="Event_12">
<p >Continue</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/3/mc3.jpg'">
<!-- living afternoon -->
<p class="notation_text"> Can I jerk off on you?
</p>
<p class="notation_text"> That was such a stupid thing to ask my <<print $mom.rel>>.
</p>
<p class="notation_text"> I sat on the couch, my mind empty and my cock raging hard, but I didn't bother touching it. I wanted to grab ahold of that big fucker. God damn it, I wanted to. A good jerk was something I could use right now. Why did we ever start this? Why did I let it get this far? <<print $gf.name>>'s dad wasn't going to do anything to me. This was a big waste of time, and even worse--much worse--this had made things strange around my <<print $mom.rel>>. What the fuck had she been thinking?
</p>
<p class="notation_text"> So much for pushing her, you pussy, my cock said to me, the accusation in his voice throwing shame at me from all directions. You fucking <<print $mom.call >>ma's boy!
</p>
<p class="notation_text"> My phone buzzed with an incoming text. I grabbed it--it was from my <<print $mom.rel>>--and it read, Bring me a glass of wine.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/mc7.jpg'">
<p class="notation_text"> My heart sped up, and a hollow boom echoed within my chest. I tingled all over. What did this mean? Was <<print $mom.call >> going to end it? Or was <<print $mom.call >> going to--
</p>
<p class="notation_text"> Get the wine, my cock shouted at me, and that's what I did, striding to the kitchen with long steps as my cock bobbed up and down and side-to-side. I grabbed her glass, made sure it was full, and jogged upstairs, aware of how hard and stiff my cock felt. How long it felt. How thick it felt. I was proud of my size, but at that moment, I didn't have a cock between my legs; I had a redwood that I was about to turn into a battering ram.
</p>
<p class="notation_text"> No. I slowed down as I reached <<print $mom.call >>'s bedroom door. Not a battering ram. What an asshole I could be--driving my <<print $mom.rel>> to her room. I didn't know what was going to happen in my parents' bedroom, but I had pushed my <<print $mom.rel>> as far as I was willing to, no matter what. (So I had thought at the time.) What had I been thinking? She was my <<print $mom.rel>>.
</p>
<p class="notation_text"> My knuckles rapped against the door, the touch was soft, and the disruption of noise was barely noticeable. It didn't come open. <<print $mom.call >> had shut it all the way, and when I tried the knob, I found it locked. I knocked again, harder than before, but not too hard--hard enough to make the door rattle a little. I wanted to knock harder, but my balled fingers hovered in front of the door, unable to move forward.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/bedroom-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I was about to knock again when the door opened. First a crack, and then enough to reveal my <<print $mom.rel>> in all her tank top and long pant-wearing glory. My cock, still hard, suffered an involuntary jerk that drew <<print $mom.call >>'s glassy eyes. I had the wine in my right hand, a chardonnay from an open bottle in the fridge. <<print $mom.call >> raised her eyes, extended one swan-like arm, and plucked the glass from my hand, our fingers touching against the stem.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "All right," she said. "But, you can't go to <<print $gf.name>> after this." She paused. "For a week."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "All right, what?" I asked, my mouth going dry. The question was an honest one. All right, what? She couldn't be saying what I thought she was saying, not after walking away from me. All right, what? I only wanted to know.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/bedroom-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> "All right," <<print $mom.call >> said, her eyes tightening, but her voice came out meek and resigned. "You can jerk off on me." <<print $mom.call >>'s eyes glanced downward again. "On my butt, over my panties. Meet me in my bedroom at midday when your dad goes out."
</p>
</div>
<p class="notation_text"> Oh, those fucking words.
</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');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 6>>
<<set $eventCount += 1>>
<<set $bedroom.status[0] = 1>>
<<set $living.status[2] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- bedroom midday -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/3/mc10.jpg'">
<p class="notation_text"> I reached <<print $mom.call >>'s bedroom door. I knocked. My cock jerked again, and this time the spasm registered on my face. <<print $mom.call >> opened the door and looked at me --her little boy--and what I saw in her eyes told me that she didn't see her little boy anymore. I don't know what she saw, but it wasn't the child she had raised.
</p>
<p class="notation_text"> She turned around and walked deeper into the room. I watched her taut, pear-shaped ass roll with her strides. When she reached the bed, her right knee slid onto the mattress, parting her cheeks, followed by her left knee and her left right hand. <<print $mom.call >> crawled across her bed, prowling, her knees sliding forward, and her white-clad pussy bulge rolling between her thighs. She held her wine held in her left hand, placing the glass on the nightstand next to her white bed, then she lay down and pulled her hair over her right shoulder and waited, on the bed, with her legs slightly parted and the line of her panties creating a beacon of brightness between her thighs.
</p>
<p class="notation_text"> Holy fuck.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/bedroom-7.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I swallowed my gathering saliva as I walked across the threshold to my parents' bedroom. A tingle ran through my skin. This was my <<print $mom.rel>>'s room. My father's room. This is where my father slid his cock into my <<print $mom.rel>> on a nightly basis. He'd go into her mouth or between her fingers, or up into the little hole between her legs and maybe the smaller one between her buns--no, my <<print $mom.rel>> had to be an anal virgin. I was sure of it in the same way that a kid is sure that his <<print $mom.rel>> is as pure as the Holy Spirit and always would be.
</p>
<p class="notation_text"> Until she lets her son jerk off on her butt.
</p>
<p class="notation_text"> I walked to her bed, my cock bobbing as it pushed against my shorts, creating a strain in the tip that ran down my shaft into its base. My prick had never been this hard before. I stopped at the edge of <<print $mom.call >>'s bed, breathing hard as my heartbeat rose and my skin tingled. There was a choice to be made here, and I made it, first pushing my basketball shorts down my legs and over my feet, and then, after a quick pause as my hairs stood on end, I pushed my boxer briefs down my thighs.
</p>
<p class="notation_text"> Oh, god, that felt good.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/bedroom-6.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> The heat of my cock met the coolness of my <<print $mom.rel>>'s sunlit room, soothing the numbing ache that had swollen my meat to monstrous proportions. I knew that I was big, but right now, I looked downright dangerous with this dick jutting out from below my waist and... my shirt. My shirt. I was standing only in my shirt, like some rapey-perv who was afraid to get naked. I pulled my shirt off and tossed it to the floor as a shiver ran through me. I looked back down at my cock, and then at my <<print $mom.rel>>, where she had buried her face in a white, satin-covered pillow.
</p>
<p class="notation_text"> Look at me, I thought, but <<print $mom.call >> didn't move.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/teasing-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I climbed onto the bed, the mattress sinking beneath my weight and stalling my movements. After a quick pause to see what my <<print $mom.rel>> would do--I don't know why I paused to see what she would do--I shuffled forward on my knees. When I reached her feet, I had a choice to make: Should I straddle my <<print $mom.rel>>'s thighs, or should I crawl between her legs? I thought for a second before I pushed my knees between her feet, forcing her to spread her legs open.
</p>
<p class="notation_text"> <<print $mom.call >>'s skin burned to the touch. My sack tightened with an airy lightness, though my balls felt the ache. I shuffled forward, keeping my knees pressed to my <<print $mom.rel>>'s skin, and she spread her legs wider and wider as I moved forward. As she opened her legs, her thighs parted, and that little hammock of white cupping the smooth tenderness of her cunny narrowed, allowing the swells of her outer lips to bulge outward. I needed to lick her. My eyes focused on the hollow dip that separated her inner thighs from her outer labia, and a sigh left my throat, which turned into a low moan when I saw the line of dampness darkening my <<print $mom.rel>>'s narrow slit.
</p>
<p class="notation_text"> The dampness was darker than before.
</p>
<p class="notation_text"> Holy shit.
</p>
<div class="enter_button" data-passage="Event_8">
<p >Continue</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Kitchen Morning-->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom10.jpg'">
<p class="notation_text"> I continued upward. My knees brushed <<print $mom.call >>'s knees, and then her thighs. She had to bend her left knee, pulling it up the bed, which tilted her hips upward and to the right, along with her upper body. Her head turned to the left, but she pulled the pillow with her, keeping the side of her face buried in it. I couldn't spread my <<print $mom.rel>>'s legs much more than they were, unless....
</p>
<p class="notation_text"> I nudged my <<print $mom.rel>>'s right thigh with my knee. She tried to move it to the side. I lowered my right hand, fingers pointing down, and I cupped her thigh near her pussy, giving it a push. <<print $mom.call >> inhaled a shaky breath as the heat between her legs washed over my hand.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>I applied pressure to her leg, then squeezed her hot flesh, saying, "Come on, <<print $mom.call >>, up you go."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom15.jpg'">
<p class="notation_text"> <<print $mom.call >> bent her right knee as her breathing grew harsher. She brought her leg up, which forced her ass up, and evened out her hips. She faced forward, pulling the pillow with her as she knelt in front of me in a low, frog-like squat that parted her ass cheeks and opened her muff to my eyes.
</p>
<p class="notation_text"> I uttered a sound somewhere between a moan and a groan.
</p>
<p class="notation_text"> <<print $mom.call >> whimpered at my hungry sound.
</p>
<p class="notation_text"> What thoughts were running through her head? What did she think I was going to do to her?
</p>
<p class="notation_text"> My prick pointed straight ahead as I shuffled forward and pressed my knees beneath the small gap of space under my <<print $mom.rel>>'s thighs. I lowered my ass to my heels as <<print $mom.call >> settled the weight of her thighs against mine. My cock, as hard as a steel pipe, hovered above her ass so close that the warmth of her body dampened my incest-craving dipstick.
</p>
<p class="notation_text"> Jesus fucking Christ.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom16.jpg'">
<p class="notation_text"> I stared at the panty string running through my <<print $mom.rel>>'s crack, and in her low-frog-squat, I could see the golden spokes of her asshole in ultra-high definition. How small did her butthole have to be to remain hidden by that string? That string widened at her perineum, thicker nylon bracketing silk, but the damp flesh to the right and left of its center still lay exposed--so fucking sexy. <<print $mom.call >>'s pussy, with her legs spread and her body stretched forward as it was, pressed hard against her transparent panties, the lacy flower pattern covering and hiding the wet gap between her inner lips.
</p>
<p class="notation_text"> My cock swelled, or seemed to, rising upward and filling with a thickness that made me afraid for my knob. Was it about to burst? I stretched my left arm forward and took my <<print $mom.rel>> by her hip. She shuddered as I squeezed her flesh hard, laying claim to what should have been my father's property. I lifted my right hand to my mouth, the palm facing upward, and I spit into my palm. Half a second later, I had my slippery fingers around my shaft, and a half-second after that, I was pumping my dick flesh hard enough to make my balls swing back and forth.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom17.jpg'">
<p class="notation_text"> I squeezed my cock harder, fucking my fist while jerking my hand up and down my shaft. My balls slapped against my thighs; the lewdness of the smacking sounds sent tingles through the tip of my dick. I gripped my <<print $mom.rel>>'s hip harder, pressing my fingers into her, and as I rocked my body forward, fucking my fist, my thighs rocked into her thighs, which pushed her body forward. I had to pull her back against me, creating a pseudo fucking that soon had her panting.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Huh-huh-huh," <<print $mom.call >> uttered as her body moved back and forth.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck," I gasped and paused my stroking. I looked down, opened my mouth, and dropped some more spit onto my cock. Some caromed off my shaft and landed on my <<print $mom.rel>>'s ass. Moaning, I resumed jerking my dick above my <<print $mom.rel>>'s butt.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Oh, fuck, <<print $mom.call >>," I moaned. "I'm close, <<print $mom.call >>. I'm so fucking close."
</p>
</div>
<div class="enter_button" data-passage="Event_9">
<p >Continue</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/rub-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> The line of her thong gleamed beneath my cock. If only I could take my knob and slide it through her crack. If only I could spank her small ass. If only I could.... I slid my hand from her hip around her thigh and onto her ass, palming the tender meat of her backside with my fingers pointing down. <<print $mom.call >>, still taking the slapping of my thighs into hers, pushed back against me whenever I humped her little body forward. She was working hard to keep her head from hitting the headboard. My cock hand blurred, my fingers concentrating on my knob as pleasure shot through my shaft and buzzed around my balls.
</p>
<p class="notation_text"> <<print $mom.call >> kept her face buried in her pillow, the slapping of our thighs growing in tempo and pitch. I squeezed her ass once more before I started sliding my fingers downward. <<print $mom.call >> shook her head. Did she know what I had planned? Precum shot from my cock, landing on her right cheek, and I angled my hand down between her legs, cupping the crux of her left thigh--that hollow dip right next to her outer labia, my pinky edging her soft meat.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/rub-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $mom.call >> moaned into her pillow, her butt shooting forward. I stood on my knees, still stroking, still holding her between her legs, refusing to let go, but I was still off to the side of her pussy. I wanted to touch that tender piece of pie between her legs. I wanted to hold her cunny in my palm and slide my fingers through her pudding-soft folds, spreading her lips open and touching the stickiness dripping out of her. But I couldn't do that. I could touch her where I was, outside of her panties, where her damp skin filled my hand, and my pinky lay against the tenderness of her labia, the heat between her legs sending electric pulses through my body.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck, fuck, fuck," I panted, my orgasm closing in as the tip of my glans tingled with bliss. "I'm gonna come, <<print $mom.call >>. Fuck, I'm gonna come on your ass, <<print $mom.call >>." I stroked my shaft harder. "Gonna come on my <<print $mom.rel>>'s ass!" I tightened my grip around my pole while spreading my fingers and gripping my <<print $mom.rel>>'s thigh hard. My pinky swept outward, over her outer labia, brushing the nylon border of her panties. "Oh, fuck, <<print $mom.call >>, I'm gonna come."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/rub-6.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Tremors of pleasure shook my thighs, buzzing my groin and weakening my legs. My balls tightened and swelled. My shaft expanded, and a lightning rod of ecstasy electrified my glans, ringing my corona and traveling down my shaft into my sack. "I'm coming, <<print $mom.call >>. I'm coming on you!"
</p>
<p class="notation_text"> My balls erupted, spewing a thick river of jizzy goo that swelled my urethra before shooting out of my cock and landing on my <<print $mom.rel>>'s buns. I looked down, aiming my cockhead between her cheeks and dumping load after load of hot, sticky cream into her crack. My cum splashed against her asshole, blending with her G-string, and I lowered my knob, spurting cum onto her perineum and flinging the last rope of jizz onto the cotton covering the softness of her pussy, never slowing my cock stroking.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call >>, <<print $mom.call >>, <<print $mom.call >>," I whispered, my voice shaking as much as my body.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/rub-7.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Aftershocks of pleasure rolled through my balls and slithered out of my piss slit, causing me to tremble. I squeezed <<print $mom.call >> between her legs again, brushing the edge of her panties again and then again, the tip of my pinky pushing her skin inward as I tried to get under her nylon leg band. Her hand appeared between her legs from below, and she pushed my hand away with a frantic slap, then she cupped her cunny and protected it from me with a tight squeeze of her fingers. She trembled. I didn't fight her. Instead, I circled the base of my cock, pushing outward, and forcing the last of my cum onto the backs of her fingers.
</p>
<p class="notation_text"> <<print $mom.call >> lowered her legs, and I shuffled backward off her bed. She turned her head to the left, breathing hard and keeping her eyes closed. The hand with my cum on it remained between her legs, her pussy resting on her wrist.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom8.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Get out," <<print $mom.call >> panted.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Okay."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> I turned to leave, and she said in a tired voice, "One week, <<print $mc.name>>. You have to stay away from <<print $gf.name>> for one week."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $gf.name>> is willing to do this for me every day," I said. There were no limits now. "Every day, <<print $mom.call >>."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Get out!"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/3/mc8.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'll see you at night."
</p>
</div>
<p class="notation_text"> I gathered my clothes and went to my room. <<print $gf.name>> would be expecting my call once she got out of school, and we had things to discuss. I wasn't about to break up with my girlfriend or stop seeing her, but dropping my load on my <<print $mom.rel>>'s ass had given me an idea. If a <<print $mom.rel>> could convince her son to stay away from his girlfriend, what could a daughter do to convince her father to let her see her boyfriend?
</p>
<p class="notation_text"> Maybe I could have my <<print $mom.rel>> and <<print $gf.name>> too.
</p>
<p class="notation_text"> Maybe.
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses.
</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 $myroom.status[1] = 1>>
<<set $bedroom.status[0] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- myroom afternoon -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/3/gf1.jpg'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "How come you aren't coming over?" <<print $gf.name>> asked.
</p>
</div>
<p class="notation_text"> I had my earbuds plugged into my phone while I spoke as softly as possible into the speaker. I had shut and locked my bedroom door before the start of the conversation, checking my hallway and making sure that my <<print $mom.rel>> was still in her room, which she must have been since I hadn't seen her downstairs or in the backyard. Even so, I had turned my computer on, clicked on my music, and set the volume to low.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'm easing my <<print $mom.rel>>'s worry," I said, smiling into my phone's camera. "We'll be together soon, I promise."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Let me see it," <<print $gf.name>> whispered.
</p>
</div>
<p class="notation_text"> Sighing--on the inside--I swung my phone away from my face and toward my cock, where my dick stood big, hard, and swollen with the memory of my <<print $mom.rel>>'s body running through its head. On her side of the phone, <<print $gf.name>> sat naked, with her phone on a stand and her hairless-from-the-eyebrows-down body on full display for my hungry gaze. <<print $gf.name>> always gave me a hard-on, but this particular hard-on was still the result of coming on my <<print $mom.rel>>'s ass, which had given me an idea.
</p>
<p class="notation_text"> Would <<print $gf.name>> buy into it?
</p>
<p class="notation_text"> Hopefully.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/3/gf2.jpg'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Mmm," <<print $gf.name>> moaned for me. "That looks so yummy. I want to lick it."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I groaned and said, "Soon, baby, I promise."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Now," she pouted.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Soon."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "No, now," <<print $gf.name>> pouted again, her voice taking on a little girl's whine. "I'll call you Daddy."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "That's hot," I said. Had <<print $mom.call >> ever called Dad, Daddy? "Speaking of Daddies...."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/3/gf3.jpg'">
<p class="notation_text"> <<print $gf.name>> rolled her eyes. She lay on her left side, with her legs extended and her left hand propping her head up. Her tits, in all their teenage perkiness, stayed tight to her chest, though the side of her left breast pressed into her mattress' comforter. Unlike <<print $mom.call >>, <<print $gf.name>> had no hair between her thighs, and only the smooth triangle of her mound was visible as her thighs lay one atop the other.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "My dad still says, 'You're too young for sex.'" <<print $gf.name>> groaned and turned onto her back, her tits shaking and settling on her chest, their bases spreading out. "If I'm too young for sex, then how come that's all my pussy can think about? I'm eighteen!"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I groaned again and said, "I have an idea. It's kinky, but it may help take our relationship to the next level."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/3/gf4.jpg'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yeah?" <<print $gf.name>> turned back onto her side. "Does it involve me spreading my pussy for you?" She smiled, first big and playful, but then her lips spread outward, turning sly. Her eyes drew my eyes' focus, and she licked her lips for the camera. "Does it, Daddy?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "It does now." I shook my head. "Well, maybe later. I need to go. I have some work to do. I’ll call you later."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> “Ok, daddy” <<print $gf.name>> said
</p>
</div>
<!-- <p class="notation_text"> I paid $200 to <<print $mom.call>> for rent and other household expenses. (<<print $mom.call>> Love Increased)
</p> -->
<div class="enter_button" onclick="forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 6>>
<<set $eventCount += 1>>
<<set $myroom.status[2] = 1>>
<<set $myroom.status[1] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Living Night -->
<!-- <img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t23.jpg'"> -->
<P class="notation_text"> I left my room and entered the living room, where I found my dad peacefully asleep on the couch, and <<print $mom.call>> engrossed in the TV program. As I walked in, my <<print $mom.call>> glanced my way and scooted over, making room for me to sit beside her. Appreciating the gesture, I settled down next to her, and together, we began watching TV, sharing a quiet moment in the cozy living room.
</p>
<P class="notation_text"> I pressed the back of my hand against my <<print $mom.rel>>'s thigh until I met resistance, then I slid it upward, turning my pinky to the right along my <<print $mom.rel>>'s skin. A shiver ran through <<print $mom.call >> as I placed my hand on her thigh below her short-shorts. I squeezed her leg while reaching for the tablet's keyboard with my left hand.
</p>
<P class="notation_text">"Do you know what I love most about watching you?"
</p>
<P class="notation_text">My chest turned thick as I waited for <<print $mom.call >> to reach for the keyboard. When she did, her fingers moved by the millimeter, their forward momentum almost nonexistent, but when their tips contacted the keypad, she typed in a rush, "What?"
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom29.jpg'">
<P class="notation_text">I moved much quicker than my <<print $mom.rel>>. "Your pubic hair. I love the way your blonde curls stick up over the waistband of the little panties you wore for me. I heard <<print $mom.call >>'s quick inhale. I didn't even know that <<print $mom.call >>s were allowed to own panties that small. I glanced at her, using only my eyes. I swear I saw her smile, so I swept my thumb across her thigh, opening and closing it as I typed. <<print $gf.name>> doesn't have pubic hair. She's smooth between her legs. <<print $mom.call >> breathed in sharply again. I get extra hard whenever I see your thick, blonde hairs."
</p>
<P class="notation_text"> <<print $mom.call >> said nothing.
</p>
<P class="notation_text">"Do you dress like that for Dad?"
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/type-3.gif'">
<P class="notation_text"><<print $mom.call >> typed, "You shouldn't talk like that to me, taking her time and hitting backspace more than once."
</p>
<P class="notation_text">"Why not?" I opened all of my fingers across her thigh. "<<print $gf.name>> lets me talk to her that way. She likes it." I slid my hand across her thigh, following the inward curve and getting my middle, ring, and pink fingers between her legs before she closed them tight, trapping my three digits between her warm limbs. "I can show you the videos."
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom31.jpg'">
<P class="notation_text"><<print $mom.call >> looked at me, then typed, "You have videos?"
</p>
<P class="notation_text">"Not new ones." I squeezed her thigh again. "Not since you started this."
</p>
<P class="notation_text">Her fingers moved like a whirlwind over the screen. "You have to delete them." She looked at me again. "And so does she."
</p>
<P class="notation_text">"Why?"
</p>
<P class="notation_text">"Don't be stupid."
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/type-2.gif'">
<P class="notation_text">As slowly as I could, as my heartbeat rose and my cock pulsed with the idea of what I was about to tell my <<print $mom.rel>>, I typed, "I'll get rid of them if you let me touch you." I tapped the screen several times before I continued. "Right now."
</p>
<P class="notation_text"> <<print $mom.call >> stared at the screen. I stared at her. My heart swelled until my chest could no longer contain its size. Beneath my shorts, my balls tightened, and my cock tried to harden further, intent on stiffening until it snapped in two. As I was getting ready to type again, <<print $mom.call >> answered me.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom30.jpg'">
<P class="notation_text">"Your father is right next to us."
</p>
<P class="notation_text">I breathed a sigh of relief so loud that <<print $mom.call >> turned her head toward me. I stayed focused on the screen as I wrote, "He's either asleep or too sleepy to notice."
</p>
<P class="notation_text">"No."
</p>
<P class="notation_text">"You let me do more this last day."
</p>
<P class="notation_text"> I squeezed my <<print $mom.rel>>'s thigh and forced my forefinger between her legs, joining my other fingers and getting a better grip on her limb.
</p>
<P class="notation_text">"Can you wait until tomorrow?" <<print $mom.call >> typed.
</p>
<P class="notation_text">"Ok I will." I typed and left.
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses.
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 10>>
<<set $eventCount += 1>>
<<set $living.status[6] = 1>>
<<set $living.status[5] = 0>>
<</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">
Location : <<print passage()>></p>
<p class="notation_text">
<<print $message>>
</p>
<<if $currentTime is 4 and $weekendValue[$currentDay] is 1 >>
<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">
Location : <<print passage()>></p>
<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 50 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">Give Her A Massage! You need 50 <<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>>
<!-- Myroom Early Morning-->
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/myroom-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> It was nearing noon when my <<print $mom.rel>> came upstairs. She was wearing a white robe made of cotton. Her nipples were thick buds against the fabric. The hem of her shirt hung off her little breasts, baring her stomach from her sternum down and back to those tiny panties again. The whiteness of her outfit made her golden skin and hair shine, along with that small tuft of hair poking out above her G-string.
</p>
<P class="notation_text"> I lay on the bed, on its left side, the side that allowed me to look up the door as my <<print $mom.rel>> walked in my room. She saw me watching her, but I'm positive what she saw was me waiting for her in that way I used to wait for my parents when I knew that they were taking me somewhere fun, with fast rides and cotton candy and every treat that a growing boy wanted to get his hands on. Now, though, the treat I wanted was my <<print $mom.rel>>, and her cheeks reddened as my eyes locked onto the pouty pussy between her thighs. (Would teasing me always embarrass her?) The thought made my knob swell.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/myroom-2.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> "Hey," I said, "good to see you."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call >> rolled her eyes as she said, "It's good to see you too."
</p>
</div>
<P class="notation_text">I looked down at my shorts and the growing tent, but I don't think that's what <<print $mom.call >> meant. Hopefully, she looked as well because I gave her at least ten seconds to follow my eyes as my erection sprouted to its full hardness in front of her.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Talk to me," <<print $mom.call >> said when she reached the bottom of the stairs. "Follow me around while I do things."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I said, standing and my cock bobbing as I walked around the couch and stopped in front of her. I topped her by a head while being twice as broad as her, and her smallness sent a tingle through my cock.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/3/myroom-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<P class="notation_text"> It was a strange thing to notice; our size difference, but while my <<print $mom.rel>> was still Superwoman to me, she was also a woman. A very sexy and desirable woman, who now may have been attainable for me. The knowledge took away some of the fear I had for my <<print $mom.rel>>'s authority. When she was teasing me, she wasn't Superwoman; she was... pussy.
</p>
<P class="notation_text"> I shivered.
</p>
<div class="enter_button" data-passage="Event_1">
<p >Continue</p>
</div>
<</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">
Location : <<print passage()>></p>
<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">"Check Out" You need 100 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 = [$myroom.money[0],$kitchen.money[0],$kitchen.money[1],$living.money[0],$living.money[1],
$living.money[2],$bedroom.money[0],$myroom.money[1],$myroom.money[2],$living.money[3],$living.money[4],
$living.money[5],$living.money[6],$living.money[7],"Completed"]>>
<<set _eventMorality = [$myroom.morality[0],$kitchen.morality[0],$kitchen.morality[1],$living.morality[0],$living.morality[1],
$living.morality[2],$bedroom.morality[0],$myroom.morality[1],$myroom.morality[2],$living.morality[3],$living.morality[4],
$living.morality[5],$living.morality[6],$living.morality[7],"Completed"]>>
<<set _eventStamina = [$myroom.stamina[0],$kitchen.stamina[0],$kitchen.stamina[1],$living.stamina[0],$living.stamina[1],
$living.stamina[2],$bedroom.stamina[0],$myroom.stamina[1],$myroom.stamina[2],$living.stamina[3],$living.stamina[4],
$living.stamina[5],$living.stamina[6],$living.stamina[7],"Completed"]>>
<<set _eventMomLove = [$myroom.mom_love[0],$kitchen.mom_love[0],$kitchen.mom_love[1],$living.mom_love[0],$living.mom_love[1],
$living.mom_love[2],$bedroom.mom_love[0],$myroom.mom_love[1],$myroom.mom_love[2],$living.mom_love[3],$living.mom_love[4],
$living.mom_love[5],$living.mom_love[6],$living.mom_love[7],"Completed"]>>
<<set _eventMomLust = [$myroom.mom_lust[0],$kitchen.mom_lust[0],$kitchen.mom_lust[1],$living.mom_lust[0],$living.mom_lust[1],
$living.mom_lust[2],$bedroom.mom_lust[0],$myroom.mom_lust[1],$myroom.mom_lust[2],$living.mom_lust[3],$living.mom_lust[4],
$living.mom_lust[5],$living.mom_lust[6],$living.mom_lust[7],"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/3/pool-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"><<print $mom.call>>, dressed in a swimsuit by the poolside, looked absolutely stunning. sometimes I think "what's my deepest desire when it comes to her?"
</p>
<<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 > To make her mine in every way possible. (Lust+) </p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >To make her feel loved and cherished every day. (Morality) </p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >To give her a love story that legends are made of. (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/3/bedroom-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text">I was watching TV, seated beside my <<print $mom.call>>, when a scene in the Tv series caught my attention. In that moment, as the hero shared his wife with a friend, a thought crossed my mind—what if I shared my <<print $mom.call>> with someone else?"</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 would love to see her squeezing tits and sucking pussy and going wild. (Lust)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p > No. I am very possessive about her. (Moral)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >I love her to the moon and back. She is only mine. (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>
<p class="notation_text">As I sat with <<print $mom.call>> , engaged in a lively discussion about <<print $gf.name>>,
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> suddenly inquired, "So, have the two of you gone on a date yet?"
</p>
</div>
<p class="notation_text">You shook your head in response.</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> Undeterred, <<print $mom.call>> continued, "Well, since you haven't had that first date, What's your idea of the perfect date with your girlfriend?"
</p>
</div>
<<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 >An intimate evening in a luxury hotel. (Lust)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >A cozy dinner at home. (Morality)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p > A scenic picnic followed by stargazing. (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-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Making coffee in her kitchen facing her back to me.
</p>
<p class="notation_text">What thoughts or feelings arise when you see her beautiful round-shaped ass?
</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 >Spank her ass, squeeze her tits from behind. Lift her up on the kitchen slab. Rub her pussy and kiss her wildly.
(Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >stare at one glance and admire. (Morality+)
</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >Hug her from behind, smell her hair and capture the moment. (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>
<p class="notation_text">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/3/pool-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 a lovely sunny day!
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>Don't forget to lock the door behind you.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> oh yeah. Sorry, my bad! Now let's roll to the pool
</p>
</div>
<p class="notation_text"> “How do you feel when you are around your <<print $mom.call>>?”
</p>
<<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 >Make her seat on my lap, pull down her panty to make her feel my dick. (Lust)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >Amazing feeling which cannot be expressed in words. (Morality)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p > My heart races with an exhilarating blend of devotion and desire. (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/3/kitchen-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text">curiously making faces, asks “How would you react with <<print $gf.name>> if there is a disagreement?”
</p>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p> listen to her perspective, and try to find a solution. (Moral)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p>bring her closer and give her a tight hug. (Love)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p> grab her by hair, put two fingers in her pussy and make her give me a blowjob. (Lust)</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/3/living-23.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> spraying perfume, “Can you feel my perfume?”
</p>
</div>
<p class="notation_text">What do I feel when I smell her?</p>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p>evokes memories and triggers attraction (Moral)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p> I get consumed by her and desire to love her. (Love)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p>grabbing her by the waist, sliding hands down to the ass slowly and licking her neck leading to her tits. (Lust)</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/3/kitchen-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text">I was discussing with <<print $mom.call>> how I typically describe my first impression of my loving person.</p>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p>"I always feel like she light up the room." (Moral)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p>"Her grace and elegance are captivating." (Love)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p>"I can't help but admire her curves." (Lust)</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>
<p class="notation_text"> Sometimes I wonder about the chemistry between me and my <<print $mom.call>>. Social obligations can make it feel impossible. </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 >Touching her pussy and she feels the shock from her crotch to her tits, making them hard. (Lust)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >A spark that makes two people feel deeply connected and attracted to each other. (Morality)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >Enchanting dance of hearts and souls. (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/3/bedroom-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text">Sit besides me in wearing a concave printed dress.</p>
<div class="dialog_text jc_dialog_text">
<p><span class="jc"><<print $mom.call>>: </span> "How I am looking honey?"
</p>
</div>
<p class="notation_text">Seeing that you are feeling like</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 >Her curves make me turn her, spanking & penetrating fingers into her pussy. (Lust)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >She looks divine. (Morality)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >She wore it like a spellbinding enchantress, making my heart race with every glance. (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/3/living-19.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text">I sat beside mom and we discussed about special occasions. I express my wish to celebrate special occasions with her. What should I plan to express her on special occasions?
</p>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p>"Thoughtful gifts and a heartfelt letter." (Moral)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p>"A surprise date under the stars." (Love)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p>"A passionate night neither of us will forget." (Lust)</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>
<p class="notation_text">You and your <<print $mom.call>> are having a discussion about how you envision spending the rest of your life with your loved one.
</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> Exploring every corner of her heart and body. (Lust)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p > Building a loving and supportive partnership. (Morality)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p > Traveling the world and making unforgettable memories. (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 = ["Desirable Woman","Photoshoot-1", "Photoshoot-2", "Touch Me",
"I had fucked up", " Oh, those fucking words.","I walked to her bed","Make a plan!","Share your idea!",
"Sleeping Pill","Sexting","Don't be stupid","Under my shorts?","This was madness.","Completed"]>>
<!-- <<set _eventQuestLocation = [$myroom.time[0],$kitchen.time[0],$kitchen.time[1],$living.time[0],$living.time[1],
$living.time[2],$bedroom.time[3],$myroom.time[1],$myroom.time[2],$living.time[3],$living.time[4],
$living.time[5],$living.time[6],$living.time[7],"Completed"]>> -->
<<set _eventQuestLocation = ["My Room ","Kitchen ","Kitchen","Living", "Living","Living" ,"Bedroom","My Room",
"My Room","Living","Living","Living","Living","Living","Completed"]>>
<<set _eventQuestTime = [$myroom.time[0],$kitchen.time[0],$kitchen.time[1],$living.time[0],$living.time[1],
$living.time[2],$bedroom.time[0],$myroom.time[1],$myroom.time[2],$living.time[3],$living.time[4],
$living.time[5],$living.time[6],$living.time[7],"Completed"]>>
<<set _eventMoney = [$myroom.money[0],$kitchen.money[0],$kitchen.money[1],$living.money[0],$living.money[1],
$living.money[2],$bedroom.money[0],$myroom.money[1],$myroom.money[2],$living.money[3],$living.money[4],
$living.money[5],$living.money[6],$living.money[7],"Completed"]>>
<<set _eventMorality = [$myroom.morality[0],$kitchen.morality[0],$kitchen.morality[1],$living.morality[0],$living.morality[1],
$living.morality[2],$bedroom.morality[0],$myroom.morality[1],$myroom.morality[2],$living.morality[3],$living.morality[4],
$living.morality[5],$living.morality[6],$living.morality[7],"Completed"]>>
<<set _eventTitle = [$myroom.title[0],$kitchen.title[0],$kitchen.title[1],$living.title[0],$living.title[1],
$living.title[2],$bedroom.title[3],$myroom.title[1],$myroom.title[2],$living.title[3],$living.title[4],
$living.title[5],$living.title[6],$living.title[7],"Completed"]>>
<<set _eventStamina = [$myroom.stamina[0],$kitchen.stamina[0],$kitchen.stamina[1],$living.stamina[0],$living.stamina[1],
$living.stamina[2],$bedroom.stamina[0],$myroom.stamina[1],$myroom.stamina[2],$living.stamina[3],$living.stamina[4],
$living.stamina[5],$living.stamina[6],$living.stamina[7],"Completed"]>>
<<set _eventMomLove = [$myroom.mom_love[0],$kitchen.mom_love[0],$kitchen.mom_love[1],$living.mom_love[0],$living.mom_love[1],
$living.mom_love[2],$bedroom.mom_love[0],$myroom.mom_love[1],$myroom.mom_love[2],$living.mom_love[3],$living.mom_love[4],
$living.mom_love[5],$living.mom_love[6],$living.mom_love[7],"Completed"]>>
<<set _eventMomRel = [$myroom.mom_rel[0],$kitchen.mom_rel[0],$kitchen.mom_rel[1],$living.mom_rel[0],$living.mom_rel[1],
$living.mom_rel[2],$bedroom.mom_rel[0],$myroom.mom_rel[1],$myroom.mom_rel[2],$living.mom_rel[3],$living.mom_rel[4],
$living.mom_rel[5],$living.mom_rel[6],$living.mom_rel[7],"Completed"]>>
<<set _eventMomLust = [$myroom.mom_lust[0],$kitchen.mom_lust[0],$kitchen.mom_lust[1],$living.mom_lust[0],$living.mom_lust[1],
$living.mom_lust[2],$bedroom.mom_lust[0],$myroom.mom_lust[1],$myroom.mom_lust[2],$living.mom_lust[3],$living.mom_lust[4],
$living.mom_lust[5],$living.mom_lust[6],$living.mom_lust[7],"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>
Stamina: Increase Exercise & Swim<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="Start" data-setter = "$message = ''">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Myroom Afternoon -->
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/3/gf-12.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> "What's your plan?" <<print $gf.name>> asked. Her fingers had moved to her clits "What's your plan for my daddy?
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'll tell you after we come," I said grabbing my cock and stroking it from its balls to its tip.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "No," <<print $gf.name>> pouted. "Tell me now."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Okay," I said, still stroking my prick. "Your dad thinks--mmm--that he can keep you from fucking me, but--oh, yeah, show me that pink, baby--does he think it's going to keep you from--oh, fuck, you're wet--from getting horny?"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/3/gf-13.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> <<print $gf.name>> shook her head, then asked, "What do you mean?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I mean," I said, breathing hard as my forearm started to burn, "what if he saw how sexual you became when he keeps you away from me?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "How about with you?" <<print $gf.name>> moaned, sliding two small fingers into the slippery hole between her legs. "That would be hot if he caught us again."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "No, not with me, but that would be hot." I took a deep breath. "I meant, in general. What if he saw how horny you got when you're not having any kind of sex?"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/3/gf-15.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> "Keep talking," <<print $gf.name>> panted.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "What if you teased him?" I couldn't tell her that my <<print $mom.rel>> was teasing me, could I? No, I couldn't--
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, you nasty pervert," <<print $gf.name>> whimpered. "You sick fuck. I love it."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You need to dress as sexy as possible around your house."
</p>
</div>
<p class="notation_text"> <<print $gf.name>>'s moans grew louder as her fingers worked her clit hard and pussyhole deep, making wet, sloshy sounds that tightened my balls.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Short shorts and tank tops," I said. "Tight shirts without a bra. Make sure your nipples are hard." I moaned, stroking my dick faster. "Leave your shower robe open around the house."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/3/gf-16.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> moaned, nearly sobbing as she finger-fucked her pussy with growing speed.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Wear loose shorts without panties." Would she? "And let him see up the leg holes."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, yeah," <<print $gf.name>> moaned. "I could sit on his lap, too."
</p>
</div>
<p class="notation_text"> I moaned.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I could make him think that I'm going crazy without your cock in me." <<print $gf.name>>'s pussy glistened with her juices. "And I am, baby. I need your big fucking dick in my pussy so bad!"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/3/gf-17.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> She did, I could see that, as much as I needed her pussy--as much as we needed to be together. After we had come, <<print $gf.name>> needed to come again. This time she turned around, getting on her knees and showing off her slit from behind. We talked about her father and how nasty it would be for her to tease him with her precious teen body. By the time she had come, her pussy was a dripping mess of sticky honey and yummy creamy.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I'm going to do it," <<print $gf.name>> said afterward. "I'm gonna tease the fuck out my father, and he's gonna let me have your dick. It's showtime, baby."
</p>
</div>
<p class="notation_text"> I laughed, thinking, God damn it, <<print $mom.call >>, what have you started?
</p>
<p class="notation_text"> I left my room about an hour after talking to <<print $gf.name>> with an idea of what I would do when I saw <<print $mom.call >> again--inspired by <<print $gf.name>> creaming to the notion of teasing her father.
</p>
<!-- <p class="notation_text"> I paid $200 to <<print $mom.call>> for rent and other household expenses.
</p> -->
<div class="enter_button" onclick="forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 7>>
<<set $eventCount += 1>>
<<set $living.status[3] = 1>>
<<set $myroom.status[2] = 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/3/living-21.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notification_text">I entered the bedroom, paused, and gazed at my <<print $mom.call>>. She lay sound asleep, her chest gently rising and falling beneath the blankets, her eyes closed, and her expression serene in the soft, warm glow enveloping her.
</p>
<p class="notation_text">How would you describe her in one word?</p>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p>Inspiring (Moral)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p>Enchanting (Love)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Lust"); forwardTime(1);' data-passage="Home" >
<p>Irresistible (Lust)</p>
</div>
<<set $talkEvent.bedroom.status[0] = 1>>
<<set $talkEvent.bedroom.status[2] = 0>>
<<set $talkEvent.bedroom.count[2] += 1>>
<</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>
<<elseif $currentTime is 4 and $weekendValue[$currentDay] is 0>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom//mom3.jpg'">
<<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>>
<<else>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/mc6.jpg'" >
<p class="notation_text">What should I do now?</p>
<</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>
<p class="notation_text">What's the sweetest thing I've ever done for her?
</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 > Giving her a sensual massage.(Lust+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p >Helping her sharing money. (Morality+)</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p >Swim with her. (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-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $mom.call>> bends over to clean the floor. it felt as if her heart and mine shared a secret, intimate connection that words could never express.
</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 >squeeze her tits till they become hard, then put my cock between her ass chicks (Lust)
</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Morality"); forwardTime(1);' data-passage="Home" >
<p > admired the delicate glimpse of her cleavage. (Morality)
</p>
</div>
<div class="enter_button" onclick='statsChange(10,"Love"); forwardTime(1);' data-passage="Home" >
<p > the glimpse seemed like it gave me a promise of passion and connection(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/3/mom34.jpg'">
<P class="notation_text"> I had to bite back another moan, but as I did, I opened my little finger as far as I could and entered the leghole of <<print $mom.call >>'s shorts, touching the crease where her outer pussy lip met the inside of her thigh.
</p>
<P class="notation_text"> <<print $mom.call >> answered my touch with a sharp inhale of breath. She looked down. The hand that had slapped mine now rested on my forearm. She tried to push me back up her thigh, but I held firm, staring down between her legs and shaking my head.
</p>
<P class="notation_text"> <<print $mom.call >> pushed again on my arm.
</p>
<P class="notation_text"> I shook my head harder.
</p>
<P class="notation_text"> <<print $mom.call >>'s thighs started to close. I didn't mind, she'd only trap me between them, but as her legs clamped down on my hand, I brushed my little finger against the side of my <<print $mom.rel>>'s warm pussy bulge. A silk-like mesh greeted my digit, but my fingertip caught the leg band of her panties and pushed under the nylon, touching skin so hot that I was surprised my finger didn't melt.
</p>
<P class="notation_text"> She's so fucking wet, I thought as my little finger pushed the moisture covering her mound across her skin, following the edge of her panty line.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t20.webp'">
<P class="notation_text"> <<print $mom.call >> pushed harder on my wrist. I turned my head toward Dad with a sharp twist of my chin. <<print $mom.call >>'s hand froze as she looked at Dad. I pushed hard between her thighs, my ring finger colliding with the pillow-like softness at the center of her muff and my little finger slipping into the crux of her thigh.
</p>
<P class="notation_text"> Dad didn't move, continuing to breathe with the mellow tempo of a man who was sound asleep. I stroked my cock harder. Could I get away with this while he was awake? He couldn't see us from where he was. My heartbeat hammered against the inside my chest, and my feet tingled as I thought of my father watching TV while I felt up his wife on the couch behind him.
</p>
<P class="notation_text"> <<print $mom.call >> pushed on my wrist again. I held myself firm, fighting her resistance and sinking the side of my ring finger into her pussy's tender folds. <<print $mom.call >> arched her back, pushing her titties and thick nipples outward, and I wiggled my little finger, slipping two knuckles beneath her panties. She uttered a soft whimper as my digit slid against her mound. Her pubic hairs feathered my skin, the strands softer and fuller than the finest threads of silk.
</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>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t19.gif'">
<P class="notation_text"> I didn't answer her. Instead, I sawed my hand through my <<print $mom.call >>'s thighs, up and down, doing my best to get my finger sandwiched between her folds while hoping that I'd rub her clit with my motions. It's not like I hadn't touched a pussy before. I had <<print $gf.name>>, and we had practiced often, and as <<print $mom.call >> continued the pressure against my wrist with her hand, she added a new pressure, on purpose or by accident, I didn't know, but I felt the thrust of her hips against me as if trying to dislodge my fingers.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Stop," <<print $mom.call >> whispered.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "No," I whispered back, my voice lower and more forceful than hers.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Please?"
</p>
</div>
<P class="notation_text"> I pushed harder against her pussy as I ran my little finger across her damp pubic hairs.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I could always go to <<print $gf.name>>," I said.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call >> made a frustrated sound. "Your father could wake up."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "He's not going to." <<print $mom.call >> hadn't sounded like she believed that either. "He took his pill."
</p>
</div>
<div class="enter_button" data-passage="Event_19">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Living Night -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/mc1.jpg'">
<p class="notation_text"> I headed downstairs. I had dressed in a pair of loose, black basketball shorts and a body-fitting workout shirt of matching color. The downstairs was as dark as I had hoped, with the light coming from the television in blinking spurts of white, gray, and darker, mood-setting atmospherics. Dad lay on the couch to the right of <<print $mom.call >>, swallowed by its size with his head on a pillow, and <<print $mom.call >> sat on the back couch, her flaxen hair shining, despite the darkness.
</p>
<p class="notation_text"> My footfalls barely registered to my ears, but there was no way they'd reach <<print $mom.call >> or Dad over the explosions and shell bursts of the war movie they were watching. When I rounded my side of the back couch, <<print $mom.call >> turned her head, the surprise on her face making me smile as much as her outfit did. Had she expected me sooner or not at all? It didn't matter, because now I was there.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom18.jpg'">
<p class="notation_text"> <<print $mom.call >> had dressed as though she had expected me. She wore a tight, gray tank top, low cut with three pink buttons in the center of her chest. If she undid those buttons, the halves would spread under the pressure of trying to contain her breasts and reveal her twin mounds almost to her nipples. Her shirt had a pink, lacy trim, as did her gray boy shorts. They were small shorts, the kind that a teenage girl might wear despite being too small for her body. The smallest portion of <<print $mom.call >>'s butt would hang out if she stood, showing off that smile at the bottom of her cheeks--the crease that formed where her hamstring met the meat of her ass. The shorts were small but not tight, and the leg holes didn't lay flush against her thighs. At the right angle, they'd hide nothing from my prying eyes.
</p>
<p class="notation_text"> As dirty thoughts passed through my head, my cock thickened, begging me to take a look between my <<print $mom.rel>>'s legs as quickly as possible.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc9.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Did you take a pill tonight, Dad?" I asked.
</p>
</div>
<div class="dialog_text ">
<p><span class = "character">Dad: </span> "Why, are you afraid I'm going to sleep down here, and you won't get the TV?" Dad asked, then yawned. "Yeah, I took a pill."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Just asking," I said. "You won't mind if I talk to <<print $mom.call >> while you watch your movie? We were talking about colleges today, and I've been looking at some and--"
</p>
</div>
<div class="dialog_text ">
<p><span class = "character">Dad: </span> "Whisper," Dad said. "Whisper, and let me fall asleep."
</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> "You got it," I said.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Colleges?" <<print $mom.call >> asked, looking at me as the TV's light danced over her face, striking like lightning as the scenes changed. Her tone may as well have said, Is that best you could come up with: Colleges?
</p>
</div>
<p class="notation_text"> I shrugged, and <<print $mom.call >> looked back at the TV without saying anything.
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses.
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 8>>
<<set $eventCount += 1>>
<<set $living.status[4] = 1>>
<<set $living.status[3] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Living Night -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/tablet.jpg'">
<P class="notation_text"> I stepped lightly and quickly, with my tablet in my right hand, as I headed downstairs. I hit my tablet's touchscreen and opened a text file. I thought for a moment before I typed," Are you upset about this afternoon?"
</p>
<P class="notation_text"> After studying the words for another minute, I slid my tablet over to <<print $mom.call >> and said, "Have a look at this one."
</p>
<P class="notation_text"> <<print $mom.call >> turned her head toward the tablet. She puckered her lips, then took it from my hands and read what I had written. She took her time, and I slid closer to her, my shoulder and thigh almost touching her.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/ml.jpg'">
<P class="notation_text"> I watched as <<print $mom.call >> raised her right hand and brushed her fingertips across the tablet's border. She took even breaths, then her fingers typed, punching the keys with quick strikes, hitting backspace, then moving more slowly. I didn't read her words so much as I watched her graceful fingers poke at the keyboard.
</p>
<P class="notation_text"> She handed the tablet back to me, and it read, "I don't know."
</p>
<P class="notation_text"> Oh, man, how was I supposed to work with that? I typed back," You didn't say no", and I handed <<print $mom.call >> the tablet.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/type-1.webp'">
<P class="notation_text"> I know, <<print $mom.call >> typed and handed it back to me.
</p>
<P class="notation_text"> I moved closer to <<print $mom.call >>, placing the tablet between us, resting it on our thighs, my right, her left. I typed, I had fun. I paused, my fingers hovering over the soft keyboard. "I would have been with <<print $gf.name>> today if you hadn't let me do that." I took my fingers away, placing them below the tablet on the side of my upper thigh. The backs of my knuckles were close to <<print $mom.call >>'s skin beneath her shorts--so close I could feel the warmth of her body.
</p>
<P class="notation_text"> <<print $mom.call >> typed, and I read, "That doesn't make it right."
</p>
<P class="notation_text"> "But it makes me safe, doesn't it?"
</p>
<P class="notation_text"> Before <<print $mom.call >> could answer me, I opened another window, clicked on a picture folder, and brought up a picture of <<print $gf.name>> in a tiny, emerald bikini that lay plastered on her skin like a hentai drawing. The upper and lower swells of her breasts were on display while her nipples poked against the green nylon of her bikini bra as if green were her nipple's natural color. She was on her knees, sitting back on her heels with her thighs spread. The V of her legs narrowed toward her teenage cunny, where the thickness of her meaty, outer labia bulged outward from her panty's triangular covering. And beneath the green fabric, every fold of my girlfriend's pussy pressed against her panties, projecting her labia with three-dimensional craftsmanship.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/type-2.gif'">
<P class="notation_text"> See, I wrote after switching back to the text file. "How do you expect me to stay away from her?"
</p>
<P class="notation_text"> "There are WOMEN your age."
</p>
<P class="notation_text"> "But I love <<print $gf.name>>", I typed, my skin tingling and my cheeks warming. "The only other woman I love is you."
</p>
<P class="notation_text"> I moved my fingers away from the tablet, placing them on the outside of my right thigh; only this time, I brushed my knuckles against <<print $mom.call >>'s skin. My eyes moved from the tablet to her profile, stopping to admire the soft slope of her rising and falling breasts and the hard nipples poking through their cotton, under-lit by the tablet's white glow. Upward, my gaze continued to her Viking-like features, taking in her lean jaw and full lips, her prominent cheeks, and the fay-like quality of her composition.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom27.jpg'">
<P class="notation_text"> <<print $mom.call >> stared down at the tablet, her lips slightly parted, and the urge to move forward and plant a kiss on them radiated through me with the strength of a gunshot. I looked away from <<print $mom.call >>, over to Dad, and then back at the screen--my cock had thickened in that time, forcing a soft mmm reaction in my throat and a slight clenching of my eyes.
</p>
<P class="notation_text"> <<print $mom.call >> hadn't answered. I looked at her again. Her head turned, angling to the left, her eyes latching onto my crotch and the growing tent in my lap. <<print $mom.call >>'s gaze sent a tingle through my cock, the head perking up as my shaft surged forward, pushing my knob against my shorts in a spear-like thrust. This time I groaned aloud.
</p>
<P class="notation_text"> <<print $mom.call >> slapped my thigh.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t25.gif'">
<P class="notation_text"> I brushed my fingers against her bare leg before I typed, See what your plan is doing to me? I tapped the screen as if thinking, which I was, but I was only thinking about how long to wait before I started typing again. "I have porn to jerk off to, but I don't want to come alone. You're not helping me unless you have a way to take care of me."
</p>
<P class="notation_text"> There was a moment of hesitation, and then <<print $mom.call >> typed, Why isn't looking at me enough for you? Her eyes moved to my cock again. I swear I saw a tremor run through her as she took her next breath. "I'm your <<print $mom.rel>>."
</p>
<P class="notation_text"> I didn't hesitate. My fingers flashed across the tablet, typing, "And that's why you're the only woman I can cheat on <<print $gf.name>> with."
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom26.jpg'">
<P class="notation_text"> <<print $mom.call >>'s eyes widened, then narrowed. Her next exhale took a long time to billow downward from her nostrils. The sound from the TV grew softer, taking on a distant vibration while my senses concentrated on my <<print $mom.rel>>. Cheat. I had typed cheat. <<print $mom.call >>'s following inhale echoed in my ears as though it were one of my own breaths. She turned her head, looking at Dad, and my eyes followed her gaze. He lay deep within the couch, on his back, his head resting on a pillow pushed against the base of the armrest. He had the couch's blanket over his body, covering him from the chest down, and his hands rested on his stomach, over the blanket. Fuck, I wish the man would snore.
</p>
<P class="notation_text"> I looked back at <<print $mom.call >>.
</p>
<P class="notation_text"> Frozen. She's frozen. I took a deep breath. My fingers curled and uncurled, inching toward the tablet's soft keyboard. This is her game. It stops when she says no... and means it. A chill ran through me. What had I meant by 'and means it'?
</p>
<P class="notation_text"> I think she needs some time. Without saying anything I stood up and left.
</p>
<p class="notation_text"> I paid $100 to <<print $mom.call>> for rent and other household expenses.
</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 $living.status[5] = 1>>
<<set $living.status[4] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t10.gif'">
<P class="notation_text"> <<print $mom.call >> pushed harder against the side of my hand. She dug her heels into the base of the couch and pushed her hips hard against me. I was on an upward slide, and as our movements collided, <<print $mom.call >> released a ragged breath that sounded like a muted whimper. I pushed down with unstoppable determination, trying to use the same path as before, and <<print $mom.call >>'s next breath trembled. I did it again, and <<print $mom.call >> closed her eyes and turned her face sharply to the right, her nostrils flaring, their sound reaching my ears.
</p>
<P class="notation_text"> Again I pushed my hand through her thighs, rubbing her pussy hard. I swore I felt the dampness of her muff soaking her satin boyshorts. My pinky finger, still against her mound, was as slippery as my fingers got whenever I dipped them into <<print $gf.name>>'s pink well, but not as sticky--yet.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Hurry up and come," <<print $mom.call >> mumbled through her clenched teeth, her voice breaking. "Finish this."
</p>
</div>
<P class="notation_text"> I squeezed my knob. I wanted to come--god, how I wanted to come--but how much better would the next time be if I made my <<print $mom.rel>> come with me? I wanted--no--I needed her teasing to be something she wanted to do, not something she felt that she had to do.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t14.gif'">
<P class="notation_text"> Uttering a moan, I pulled my hand from between <<print $mom.call >>'s leg, and for the briefest of moments, I had to pull against her resistance as she pressed her pussy against my hand one more time. <<print $mom.call >> let go of me, her fingers springing open and her legs spreading wide as if electrified. Her eyes opened as she turned her head toward me. I slid away from her a little, just a little, not much, and I bent forward, sliding my right arm under her knees, lifting, and swinging her legs toward me. <<print $mom.call >> spun on her butt as I brought her knees up and sat her feet next to me on the couch. Her toes touched my thigh as she leaned against the couch's armrest. I pulled my arm from beneath her knees and pushed my hands between her shins, forcing her left leg against the back of the couch and her right toward the cushion's edge.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "What are you doing?" <<print $mom.call >> hissed at me as the light bathed her in shades of silver and blue.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Touching you," I whispered, looking into her eyes as I placed my palm on the inner meat of her right leg.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t30.gif'">
<P class="notation_text"> <<print $mom.call >> swallowed as I pushed my hand down her thigh. The loose leghole of her shorts lay in a wave, the peak giving my fingers access into her shorts. I pushed inside. <<print $mom.call >> inhaled deeply as my fingers made contact with the crux of her thigh and swept inward, following the slope of her skin until I had fully cupped the wet heat between her legs. <<print $mom.call >>'s breath caught, and she turned her wide eyes to the right, staring at the TV as her next breath trembled and a tremor ran through her body.
</p>
<P class="notation_text"> I held my <<print $mom.rel>>'s creamy, hot pussy in my palm for several moments. The warmth between her legs sent squiggly rays of pleasure through my arm. My knob swelled, and a soft buzzing massaged my balls, forcing my sack to constrict and my asshole to clench.
</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 low, shaky voice.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t8.gif'">
<P class="notation_text"> I squeezed her pussy, holding her wetness in the palm of my hand.
</p>
<P class="notation_text"> <<print $mom.call >> sighed, pinching her eyes shut as a frustrated, puppy-like whine left her lungs.
</p>
<P class="notation_text"> My father lay still--still sleeping, still dreaming--unaware of what I was doing to my <<print $mom.rel>> or the new, floral pussy scent that pollinated the room.
</p>
<P class="notation_text"> I released my <<print $mom.rel>>'s snatch. Her breasts rose and fell in rapid motions, and when I squeezed her pussy meat again, they swelled upward as she sucked in her breath. Her silky panties lay matted to my palm, soaked through and sticky to the touch. The triangle protecting her pussy folds was thin and narrow, allowing my fingers to press against the exposed flesh of her outer lips. My middle finger was long enough to rest against her slit and then some, the tip settling against the dental floss covering her asshole. <<print $mom.call >> jumped when I touched her back there, and she jumped again, pushing her pussy against my hand when I applied the slightest bit of pressure against the oven-hot crinkle of her rosebud.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom23.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "You," <<print $mom.call >> said, pausing as I squeezed her pussy again, "have to stop."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I can't," I said, speaking as low as she had. "I need this. I'm eighteen. I'm horny, and you've made my dick so fucking hard."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Then hurry up and come."
</p>
</div>
<P class="notation_text"> I wanted to do so much more to her, but the crown of my cock was a knot of tingling nerve-endings whose need for release had spilled into my thighs. I felt as though I were floating, carried on a prickling cloud that had hollowed out my insides with soul-shaking adrenaline.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'll come later," I whispered, almost panting, my words hurting my throat. "But you're gonna come now."
</p>
</div>
<div class="enter_button" data-passage="Event_20">
<p >Leave</p>
</div>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom19.webp'">
<P class="notation_text"> <<print $mom.call >> opened her mouth to speak, but before she could utter a word, I pushed aside the gusset of her panties, and the tips of my middle and forefinger found her clit on the first try. Her mouth opened, but no sound left her lips. Her face tightened, tensing into a moment of pleasure with her eyes narrowing and her lips puckering. The muscles in her neck went taut. My fingers slid through the dewy crease of her pussy, pushing against the pink flesh behind her lips and above her hole, and then my fingers sank into her muffin as they followed that line downward.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Uh," <<print $mom.call >> moaned from the back of her throat, surprise and shock painted on her face.
</p>
</div>
<P class="notation_text"> My digits followed the curving of her inner channel. I didn't go deep. Instead, I hooked my fingers through her wetness, pressing the tips against the underside of her mound as my thumb continued forward and wiggled between the thickness of her upper cunny lips. I knew I was beneath my <<print $mom.rel>>'s clit, and I pushed my thumb higher in a hurry. I didn't stop until my <<print $mom.rel>>'s body jumped as if electrified, and she uttered another moan through her trembling lips.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "That's it, <<print $mom.call >>," I whispered in a rush. "Just let me touch you, and I'll stay away from <<print $gf.name>>."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom20.jpg'">
<P class="notation_text"> <<print $mom.call >> didn't move. Had <<print $gf.name>>'s name caused her to freeze in place? Or was it because I had two fingers inside of her pussy, my thumb on her clit, and my ring finger pressing into the crack of her ass while my pink finger rested along the bottom of her right cheek? I didn't know, but I wasn't about to ask.
</p>
<P class="notation_text"> Please, God, help me make my <<print $mom.rel>> come, I prayed, and then I started moving my fingers between the squishiness of her pink, maternal walls.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Uh-oh," <<print $mom.call >> whisper-moaned, her face struggling with defiance.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/3/t15.gif'">
<P class="notation_text"> I had my palm upward with my fingers adapting to the curve of her inner channel; the wet and rubbery pinkness of her hidden flesh was soft to the touch. Soft and tight, squeezing me with ridged muscles and a deeper strength I hadn't anticipated. <<print $gf.name>>'s pussy had never done that, but the word control floated through my mind. <<print $mom.call >> was a woman who knew how to use her pussy to her advantage.
</p>
<P class="notation_text"> I stared at her face as I curled and uncurled my fingers across the underside of my <<print $mom.rel>>'s mound. Her G-spot, so the pornstars said. So the internet said. So <<print $gf.name>> said while whimpering and holding back tears while I stroked her cunny to orgasm.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom21.jpg'">
<P class="notation_text"> I didn't move my fingers fast or slow. I caressed my <<print $mom.rel>>'s insides with methodical pressure and used the same rhythm to thumb my <<print $mom.rel>>'s clit. Her squishy pearl rolled smoothly between the upper portions of her outer lips, where the pussy meat was thick and tender and perfect for squeezing around my <<print $mom.rel>>'s clitoral hood. I bit back a moan. I couldn't strip my <<print $mom.rel>> naked right now and squeeze her pussy lips together, hugging her clit with her clam's outer shell no matter how much I wanted to. Next time, I told myself, next time. I had so many plans for my <<print $mom.rel>>'s body that it was almost impossible to think straight.
</p>
<P class="notation_text"> As I soaked my fingers between <<print $mom.call >>'s lips, her face betrayed the pleasure coursing through her maternal core. She had bitten her lower lip, and with each turn of her clit and massage of her insides, her chin twitched to the left or right, her eyes narrowing and her brows spasming. From her pussy came a messy amount of honey-thick nectar, staining my hand and her shorts, ruining her panties, and wetting her ass crack and butthole.
</p>
<P class="notation_text"> I moaned.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom24.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Shh," <<print $mom.call >> hissed, turning her head over her right shoulder as far as she could. Her eyes opened, and she shivered as I pressed down on her love button. Her hips shot upward, and her thighs opened and closed, squeezing my hand, then releasing it, then squeezing it. The scent of her sweet musk filled my nostrils and probably the whole damn living room. I breathed it in deeply as my left hand pushed its way under my shorts without permission and grabbed hold of the stiffest cock I had ever had in my life.
</p>
</div>
<P class="notation_text"> Holy shit, but I needed to get this big son-of-a-bitch into my <<print $mom.rel>>--but not tonight. I wanted to cry as that thought hit me, but I wanted to come even more, so I started stroking my member faster while working my <<print $mom.rel>>'s juicy muff harder and rubbing her clitty at a quicker pace.
</p>
<P class="notation_text"> The faster I rubbed my precum-slick prick, the harder I worked my <<print $mom.rel>>'s pussy, matching the rhythms of my hands together. As I synchronized their movements, <<print $mom.call >>'s and my pleasure seemed to intertwine. Every time I suppressed a moan, my <<print $mom.rel>> did the same. She looked at me with a kind of helplessness that made my balls beg for mercy.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom22.jpg'">
<P class="notation_text"> Within minutes of touching myself, her jaw trembled, and her head started to nod as if urging me onward. She puckered her lips, her face tightening as my cock swelled in anticipation of my orgasm. As my pleasure swirled along my glans' corona, <<print $mom.call >>'s pussy channel constricted, and she raised her left palm to her mouth. A look of shame, and surprise, filled her eyes as her pussy turned into a creamy mess across my fingers.
</p>
<P class="notation_text"> She's gonna come. She's gonna come. She's gonna--
</p>
<P class="notation_text"> <<print $mom.call >> shook her head, at herself or me, I don't know, but she twisted the hand covering her mouth and bit the crescent line of flesh running from her thumb to her forefinger. Her pussy clamped down on my fingers, and <<print $mom.call >> closed her knees and feet, trapping my hand between her sweaty thighs, keeping my fingers lodged inside of her as her ass lifted from the couch, bucking her pussy at my probing digits and pearl-polishing thumb. Cum drenched my fingers. Thick and hot, it poured from her, wetting everything it touched and branding the fabric of her panties, shorts, and the couch, with her strawberry fragrance. When her whimpers escaped her fingers, and she brought her right hand up to help cover her mouth, and I lost control.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/2/mc10.jpeg'">
<P class="notation_text"> My cock stiffened along its underside, bending upward and back as my thighs tensed and my ass cheeks clenched. The pressure in my balls released, shooting up and around and then through my cock, filling my shaft with cum before it exploded into my shorts.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call >>, <<print $mom.call >>, <<print $mom.call >>," I whisper-moaned, trembling and pushing my hips forward as thick blasts of jizzed ruined my jockeys and wet my fingers.
</p>
</div>
<P class="notation_text">My moans continued, riding the wispy strands of my breath, impossible for anyone but my <<print $mom.rel>> or myself to hear. I pushed my fingers hard into my <<print $mom.rel>>'s cunny, straightening them and mashing my knuckles against her pussyhole, my thumb sliding up her clitoral hood and over her pubic hairs, my fingers clamping onto her pubic bone as though I owned her. I fought for depth inside of her channel, and when a low moan escaped my <<print $mom.rel>>'s lungs, the sound was sexy enough to force one last aftershock of cum to shake my system, emptying my balls of every ounce of jizz they held.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Thank you," I panted after a minute of silence, "for letting me touch you, <<print $mom.call >>."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Take your fingers out of me," <<print $mom.call >> said, her voice stern. "And go to your room."
</p>
</div>
<P class="notation_text"> I didn't argue. I didn't speak. I nodded my head, slid my fingers from my <<print $mom.rel>>, and hurried upstairs, not even sparing <<print $mom.call >> another look. I left my tablet behind, but I didn't care at the moment. I went upstairs to my room, where I licked my <<print $mom.rel>>'s sweetness off my fingers. My saliva glands erupted, my tongue tingled. I had never tasted anything so smooth and creamy before. I had to get my mouth between her legs next time.
</p>
<P class="notation_text"> Would there even be a next time?
</p>
<P class="notation_text"> Fuck, yes, there would be.
</p>
<div class="enter_button" data-passage="Event_21">
<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 $pool.status[0] += 1>> -->
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/3/mc9.jpg'">
<p class="notation_text"> An hour later, I went downstairs to get my tablet. I walked through the dark hallway, reached the top of the stair, and witnessed the silvery-blue light from the TV as it tried to break the foyer's curtain of darkness. At the top of the stairs, I heard the sounds of low, heavy panting, and the faint plop, plop, plop, of flesh smacking flesh. Crouching and taking my time, I slid-walked down the stairs far enough to see into the living, and what I saw hardened my cock quicker than my hand ever could.
</p>
<p class="notation_text"> Silvery-blue light washed over my <<print $mom.rel>>, who was facing away from me. My father still looked asleep, but how he remained asleep, even with his pills, was beyond anything the medical world could have explained to me. <<print $mom.call >> sat astride him, her boyshorts missing from her body, though I couldn't make out any details since the light only hit her from the front.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom38.jpeg'">
<p class="notation_text"> She was a black specter, a shadow, a nymph made of nighttime sin, and everything tantalizing about the forbidden. Her ass moved up and down as she rode my father cowgirl style, pumping her pussy on the length of his cock. His breath left his lungs in rough pulses, but he was far from awake. Unable to help myself, I pulled my cock out and jerked off for the next ten minutes, watching the shadow of my <<print $mom.rel>> ride my father and wishing I could join them.
</p>
<p class="notation_text"> After I came, I watched my <<print $mom.rel>> use my father's cock until she threw back her head and moaned, filling the downstairs with the sounds of her orgasm. Dad woke up then. He said something, but it was low and muffled; sleepy, but I recognized his mumbling, and then
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom35.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>:</span> <<print $mom.call >> laughed and said, "If you can stay awake...."
</p>
</div>
<p class="notation_text"> I smiled as I went back to my room, thinking that in a perfect world, my father would be willing to share my <<print $mom.rel>> with me. Who knew if he ever would, but I needed my sleep. Tomorrow was a new day, and I had plans for my <<print $mom.rel>>.
</p>
<p class="notation_text">Nasty--naughty--plans.
</p>
<div class="enter_button" onclick="statsChange(-200,'Money');forwardTime(1)" data-passage="Patreon">
<p >Continue</p>
</div>
<<set $talkEventCount = 11>>
<<set $eventCount += 1>>
<</nobr>>
</div>