<<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="Settings" >
<p >Start</p>
</div>
<div>
<p style="notation_text">Created by The Twist | Game version: v0.5 "Episode 5"</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 $eventMoney = [] >>
<<set $eventMorality = [] >>
<<set $eventStamina = [] >>
<<set $eventMomLove = [] >>
<<set $eventMomLust = [] >> -->
<<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 $taskDialogue 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" : ['','',''],
"status": [0,0,0],
"time" : [1,1,1],
"money": [100,100,100],
"morality": [40,90,120],
"mom_lust": [40,90,120],
"mom_love": [40,90,120],
"mom_rel": [0,0,0],
"day": [0,0,0],
"stamina": [40,90,120],
}
>>
<<set $kitchen = {
"title" : ['',],
"status": [0,],
"time" : [1,],
"money": [100],
"morality": [70],
"mom_lust": [70],
"mom_love": [70,],
"mom_rel": [0,],
"day": [0,],
"stamina": [70,],
}
>>
<<set $myroom = {
"title" : ["Event_2",'Event_3',"Event_4","Event_6","Event_9","Event_10","Event_12","Event_15","Event_16", ],
"status": [0,0,0,0,0,0,0,0,0,],
"time" : [1,3,2,4,1,1,3,4,3],
"day": [0,0,0,0,0,0,0,0,0,],
"mom_rel": [0,0,0,0,0,0,0,0,0,],
"morality": [20,30,40,60,90,100,120,150,160,],
"mom_lust": [20,30,40,60,90,100,120,150,160,],
"mom_love": [20,30,40,60,90,100,120,150,160,],
"stamina": [20,30,40,60,90,100,120,150,160,],
"money": [100,100,100,100,100,100,100,100,100,],
}
>>
<<set $pool = {
"title" : ["" ],
"status": [0,],
"time" : [2,],
"money": [100,],
"morality": [100,],
"mom_lust": [100,],
"mom_love": [100,],
"mom_rel": [0,],
"day": [0,],
"stamina": [100,],
}
>>
<<set $living = {
"title" : ['Event_1','Event_5','Event_7','Event_8','Event_11',"Event_13","Event_14",],
"status": [0,0,0,0,0,0,0,],
"mom_rel": [0,0,0,0,0,0,0,],
"time" : [2,3,3,5,3,4,3,],
"day": [0,0,0,0,0,0,0,],
"morality": [10,50,70,80,110,130,140],
"mom_lust": [10,50,70,80,110,130,140],
"mom_love": [10,50,70,80,110,130,140],
"stamina": [10,50,70,80,110,130,140],
"money": [100,100,100,100,100,100,100],
}
>><div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/gym.jpeg'">
<P class="notation_text"> I showered, I rested, then I decided to work out. We had a spare upstairs master suite that dad and I had converted into a small gym. We had a treadmill, an Olympic weight bench, dumbbells, a pull-up, and dip machine, and just enough room to use each machine without having to tuck anything in. I skipped cardio and performed a lightweight/many reps routine, working hard, but not so hard I wouldn't be able to give my <<print $mom.rel>> the erotic time she deserved.
</p>
<div class="enter_button" data-passage="Home">
<p >Continue</p>
</div>
<</nobr>>
</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 $living.status[0] = 1>>
<<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>>
<!-- Living middaY -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/3.jpg'">
<p class="notation_text"> I decided to go downstairs to meet my <<print $mom.call>>. Jeans and a plain black T-shirt made up my outfit, and I was downstairs, sitting on the couch with my phone off to the side when I heard <<print $mom.call>>'s office door open and close. I heard the opening and closing of her bedroom door; then it opened again about ten minutes later.
</p>
<p class="notation_text"> <<print $mom.call>> came downstairs, dressed in a high-on-the-thigh, gray tennis skirt. If she bent over, she'd be showing muff. She also wore a dark blue polo shirt with a white collar and trim. The fabric hugged her littlish tits, and by the way they bounced and her nipples stuck out, I could see that she wasn't wearing a bra. She still had her hair worn back, though it looked neater than this morning. She had her purse on her left arm and her sunglasses on her face, and as she cleared the last stair, she tossed me the keys to her Mercedes SUV.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I want to go out for lunch today," <<print $mom.call>> said, heading for the door. "To Biggie's Burgers. You can drive."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Your car?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Yeah," <<print $mom.call>> said, "it's harder for most people to look through my windows than yours when we're driving. You never know when we may need our privacy."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/1.webp'">
<p class="notation_text"> I followed my <<print $mom.call>> outside. We were driving through our neighbourhood five minutes later, on our way to the fast-food drive-through with <<print $mom.call>>'s purse in the backseat and my cock growing in pants every time she tilted her head to look at my crotch.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "How are things with <<print $gf.name>>?" <<print $mom.call>> asked.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Good," I said, shrugging, my eyes glancing at her lotioned legs. "She's frustrated."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "And you?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Not as much as I used to be." I smiled. "But, it's hard when I'm around her."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "You are being careful?"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/2.jpg'">
<p class="notation_text"> I nodded.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "You've done stuff with <<print $gf.name>>," <<print $mom.call>> said. "Tell me, what have you done?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Kissed," I said, my cheeks warming enough to tell me that they were turning red.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Aw, what's the matter?" <<print $mom.call>> asked. "Why so shy?"
</p>
</div>
<p class="notation_text"> I shrugged.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Have you... sucked <<print $gf.name>>'s titties?" <<print $mom.call>> asked, licking her lips. "They look nice. Are they as cute as her pussy?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yes," I said, my heartbeat rising and my cock swelling. "I've sucked them."
</p>
</div>
<div class="enter_button" data-passage="Event_1_1">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- My room Morning-->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/4.jpg'">
<p class="notation_text"> I woke up to the sound of dad closing the garage door, it was almost 11 in the morning I guess. For some strange reason, I couldn't sleep properly at night. I talked to <<print $gf.name>>, video called her. However, in my head, I was afraid of losing my <<print $mom.call>>'s pussy.
</p>
<p class="notation_text"> What if she cancels our promise?- this mere thought kept me up all night.
</p>
<p class="notation_text"> My <<print $mom.call>> came to my room after dad left for work. And thank God, I was awake because my naughty <<print $mom.call>>, that bad girl, was licking my hard wood of the morning.
</p>
<p class="notation_text"> She didn't noticed that I woke up untill I put my hands on her cheeks and pulled it up to see her beautiful face.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/6.png'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Good morning baby boy, wake up, get ready cause <<print $mom.call>> needs to go somewhere." she said
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "But <<print $mom.call>>, I feel sorry for yesterday," I tried to comfort her for the damage I have been causing her.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "It's alright, just stay away from <<print $gf.name>> for a little bit longer and I will try to keep my promise." she smiled.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Won't you help me cum in your mouth?"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/7.png'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Nope" still stroking her hands on my dick and smiling. She looked at me, winked and said, "Get ready, I have better plans. <<print $mom.call>> wants to have the Biggies Burger for lunch. Will you drive me there?" <<print $mom.call>> asked with a sexy, slutty voice.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> " Yes, give me time to freshen up." i got up, kissed her and went for the bathroom.
</p>
</div>
<p class="notation_text"> We got in the car after 12. She was wearing a tennis skirt and white loose shirt.
</p>
<p class="notation_text"> I started driving and tried to take a glance at my <<print $mom.call>> After a while, she looked at me and asked 'Should I finiah our unfinished business in the morning?"
</p>
<p class="notation_text"> My blood rushed through my whole body thinking she's gonna suck my dick in the middle of the street, in front of people, in the car!!
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yes, <<print $mom.call>>, you should.You have been very naughty lately and leaving me alone with my hard cock".
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/1.webp'">
<p class="notation_text"> <<print $mom.call>> pulled her shoulder strap over her head, letting it fall back against the seat. It was only then I noticed how loose the seatbelt was, and I immediately slowed down--not that I was driving fast in my <<print $mom.rel>>'s Mercedes--but I slowed down nonetheless. She turned toward me, pulling her left leg up, her pleated tennis skirt unable to hide the bright pink triangle of her lacy panties, the coverage so small that the start of her thong dipped between the lower portion of her pussy lips.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Like them?" <<print $mom.call>> asked, her eyes following mine between her legs as we sat at a stop sign. "I bought them for you."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I love them."
</p>
</div>
<p class="notation_text"> A car honked behind me, and I drove off.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>, if you're going to make me do naughty things to you," <<print $mom.call>> whispered, "then take your time driving to Biggie's Burgers."
</p>
</div>
<p class="notation_text"> Trust me, I took my time.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/6.avif'">
<p class="notation_text"> There was no way I would dare waste the car ride. I was wondering what <<print $mom.call>> could do in such a small space in the car but I have seen way too much porns to suggest suitable positions for her if she needs it.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> : <<print $mom.call>> leaned over, saying, "Shit," as she unbuckled her seatbelt completely. I eased up on the gas, driving as slow as I could without becoming too suspicious. She leaned toward me, her hands moving over my jeans, her touch tickling me through the thickness of my pants as she ran her right hand up my thigh. Her hand dipped inward, caressing my inner thigh, then sliding between my legs, cupping my cock and balls through my pants.
</p>
</div>
<p class="notation_text"> Looks like she doesn’t need any help.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "What do we have here?" <<print $mom.call>> teased, adding pressure to her caress as she played with my belt. "What are you stuffing your pants with to make your bulge so big?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I could hear it in my <<print $mom.rel>>'s voice: She didn't want her dirty talk to be a monologue, so I said, "I'm stuffing my pants with the big cock you gave me."
</p>
</div>
<div class="enter_button" data-passage="Event_2_1">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- myroom afternoon -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/mom4.jpg'">
<p class="notation_text"> I was in my room playing games in the afternoon when <<print $mom.call>> came.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> pouted to see me and said, " I told you that I need to go somewhere to buy something extremely necessary. Why did you keep me waiting?"
</p>
</div>
<p class="notation_text"> I got close to her, grabbed her waist and pulled her close to me. I was missing her juicy lips so I kissed her. And tried to convince her that i still remember what she said.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> Getting into the car I asked, "Where are we going today?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> turned halfway to me and said,"To a secret place!"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/sex-shop.webp'">
<p class="notation_text"> I wondered where that would be. <<print $mom.call>> gave me direction the whole way and right before I drove to the last turn, we were at Secret Stories, a lingere shop. Secret Stories, which had a downstairs pornography shop full of DVDs, sex toys, and everything you could buy on the internet, but without the overnight delivery. How many boyfriends had brought their girlfriends down here after a night of titty watching? What nasty things did those girls buy afterward? What was <<print $mom.call>> going to buy?
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call>>, " I said, keeping my voice low as I looked at the guy with a piercing in his ear. He was wearing black t-shirt and a choker. His dark black nail polish catched my eyes from behind the checkout counter. "What do you need to buy from here?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "There's something that I've always wanted to do, but it takes at least two cocks to do it," <<print $mom.call>> said, walking to the far end of the shop where a wall made of dildos stood. <<print $mom.call>> looked sideways at me and gave me a silly smile. "And your father's princess would never be allowed to own a dildo."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I laughed, but then a thought hit me, and I said, "Does Dad make you do things?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Yes, he does," <<print $mom.call>> said. "Your father makes me stand on a pedestal when all I want to do is lick his asshole."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/9.jpg'">
<p class="notation_text"> I tripped, the ground seeming to have grown an extra foot in height, and I almost fell on my face.
</p>
<p class="notation_text"> <<print $mom.call>> laughed as her eyes scanned the wall. She took small steps, stopping to touch a box here, read a description there, or give a particularly big dick a visual once over.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call>>?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Yeah?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You'll never regret that you are doing all this with me in the future, will you?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> exhaled, her lips forming into a reflective smile. "No"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/17.webp'">
<p class="notation_text"> I waited for more, but that's all she said. I reflected on those words until I understood what they had meant. I grabbed my <<print $mom.rel>>'s left hand with my right, and I squeezed her palm with a son's love. <<print $mom.call>> turned her head, smiled at me, and squeezed my hand as well. Then she went back to the wall, her eyes all business once again.
</p>
<p class="notation_text"> Though <<print $mom.call>> considered all of her options, her focus continually returned to the suction-cupped dildos. She went back to them, stopped, and looked over the phallic variations. Her eyes drifted to me, then back to the cocks, and then back to me, and then back to the cocks.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "How big do you think you are?" <<print $mom.call>> asked.
</p>
</div>
<p class="notation_text">I knew how big I was, and when I told her,
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> said, "Liar."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'm serious," I said.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> looked at me again, biting her lower lip and swinging her shoulders. "Since I'm your <<print $mom.rel>>, I had to show no fear, but your dick did scare me a little."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/16.jpg'">
<p class="notation_text"> Heat filled my cheeks, and a solid bar of warmth flowed into my shaft.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "We need a cock almost as big as yours," <<print $mom.call>> said, "that we can stick to surface tops. I want to be able to suck something while getting fucked, and I want to be able to fuck something while I'm sucking you." She squeezed my hand again as her eyes had focused on a long, thick, and curved cock that looked about an inch shorter than mine. "I just want an extra prick to play with."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> The image of <<print $mom.call>> riding my father's cock while he slept came back to me, and I said, "Do you think Dad would wake up if you blew him while I fucked you?"
</p>
</div>
<p class="notation_text"> <<print $mom.call>>'s smile turned into a pucker, and her eyes widened, her brows rising, and she turned to look at me with an ooh, that sounds interesting expression on her face.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "We're still buying a dildo," <<print $mom.call>> said before lowering her voice and adding, "but we're going to have to find out about your father, you dirty fucking bastard."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/15.jpg'">
<p class="notation_text"> My cock spat up a wad of creamy precum as my <<print $mom.call>> gave me a sexually charged glare. She grabbed the suction cup dildo that she had been eyeing and walked us toward the checkout counter, pulling me by the hand.
</p>
<p class="notation_text"> My heart and dick was jumping with joy to only think about the fun we are going to have tonight. We reached home and I waited for her text to call me to her room.
</p>
<p class="notation_text"> But she wasn’t texting me even after an hour when my <<print $mom.call>> and <<print $dad.call>> went to their bedroom. I texted her, "Are we going to try your new toy today?" She texted me back after a while.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I'm sorry but you have to wait for a little bit longer, baby boy. I have better plans for you and my new toy."
</p>
</div>
<p class="notation_text"> So, disappointed, I texted <<print $gf.call>>, called her and watched her masturbating for me. I slept after midnight thinking about what surprise <<print $mom.call>> was talking about tomorrow.
</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 $myroom.status[2] = 1>>
<<set $myroom.status[1] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- myroom Midday-->
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/2/dad-tv.jpg'">
<p class="notation_text"> My <<print $dad.call>> was home the entire day and left home after lunch. so we couldn't have our usual fancy sexy time in the morning. Sadly, I had to calm myself down with my <<print $mom.rel>>s videos and photos for almost the entire day.
</p>
<p class="notation_text"> I wondered all day long what she was going to do with the dildo. After dad left, <<print $mom.call>> came to my room wearing a beige shirt and tight blue jeans with the dildo in one hand.
</p>
<p class="notation_text"> She wasn't trying to look sexy. However, her perky nipples were telling me she wasn't wearing any bra underneath that satin shirt.
</p>
<p class="notation_text"> She was looking bold and hot.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/mom11.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "You have 5 minutes to get ready for the surprise. And please get the car in the driveway. I need to do some finishing touch up." <<print $mom.call>> said hurrying me and making a young guy like me greedy for her surprise with the dildo.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Where are we going?" I asked; fixing my seatbelt.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Pink's Playground," <<print $mom.call>> said. "It's a strip club."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I," I said, cocking my head, "know what it is."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "You do?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "We're going there as soon as Billy turns eighteen, I said, mentioning the youngest of my friends. Speaking of friends, I hadn't talked to anyone but <<print $gf.name>> since my <<print $mom.rel>> had started teasing me. My <<print $mom.rel>> fucking owned me. Shit.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/mom4.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Do you know the way?" <<print $mom.call>> asked.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I do," I said.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "There's something I've always wanted to do in that place, and you're father almost let me once, for my birthday, but...." <<print $mom.call>> shook her head. "Drive on."
</p>
</div>
<p class="notation_text"> I had no idea what <<print $mom.call>> planned to buy or do at Pink's Playground, but I had visions of a stripper lineup, each girl topless and wearing a micro G-string that glowed with the power of neon sex. White girls, black girls, Asian girls, Mexican girls, Indian Girls--they danced in my head--a potluck of pussy that <<print $mom.call>> wanted to buy for me. <<print $gf.name>> tried to poke her head into my fantasy, which only made me harder. Lap dances weren't cheating. As it turned out, dancing pussy was not on my <<print $mom.rel>>'s shopping list.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/sales-milf-2.jpg'">
<div class="dialog_text character">
<p><span span class = "character">Women: </span> The big-titted MILF was sitting behind the counter there. She checked me out and said, "Aren't you the lucky one," to me. "Where'd you find this cutie, cougar?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I found him trying to get into my pants," <<print $mom.call>> said, and the two shared a laugh as if they were old friends.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Women: </span> "Aren't they all?" Big Tits asked.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> looked at me and asked, "Did the drive-through really turn you on?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I said, still remembering the shock in the attendant's eyes.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> turned back to Big Tits. "I read about this place on the forum FillMeUp, and I'd like to play with my new toy on-site, in the Buyer's Showroom." <<print $mom.call>> made a silly face. "That's a real thing, right?"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/sales-milf-1.jpg'">
<div class="dialog_text character">
<p><span span class = "character">Women: </span> "You're a kinky one," Big Tits said. "It's real. Follow me."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Mah," I said, then changed what I was about to say to "Deborah," which was my <<print $mom.rel>>'s real name.
</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, pulling me along as she followed Big Tits down a hallway. "Keep calling me, '<<print $mom.call>>' The watchers will get a kick out of it."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "The watchers?"
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Women: </span> "Some watchers," Big Tits said. "It's a bit early, but you'll get a few granddads to drop a few loads this afternoon."
</p>
</div>
<p class="notation_text"> <<print $mom.call>> laughed, yet her cheeks swirled with red, matching the heat that bloomed across mine. Could I do what I think we were going to do?
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "My boy here is going to watch his <<print $mom.call>>ma," <<print $mom.call>> said. "The website said you'd provide me with a mask."
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Women: </span> "I'll take care of you." Big Tits stopped in front of a door, turning and winking at <<print $mom.call>> "Don't you worry, <<print $mom.call>>ma."
</p>
</div>
<div class="enter_button" data-passage="Event_4_1">
<p >Leave</p>
</div>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<!-- <video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/4/sc/sc-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video> -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/friends.jpg'">
<!-- Living Afternoon -->
<p class="notation_text"> In the afternoon, A sudden friend's meeting came up as Billy got sick. And guess what he had some weird allergies with strawberry condoms. So all of our friends went to his place to roast him.
</p>
<div class="dialog_text character">
<p><span span class = "character">Rick: </span> "Man, I can't believe you got allergies with condoms." Rick said laughing.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Billy: </span> "I know I'm unlucky, but you guys should be careful," Billy looked tired actually.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "That's why I like it raw." I said.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Rick: </span> "You are waiting for Jenna, aren’t you?" Rick asked.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yes, and I'm gonna feel the touch of her body without any boundaries." I replied.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Rick: </span> "Lucky bastard, you got a girlfriend like Jenna and a hot adult woman as your <<print $mom.call>>." I knew they were envious from the very beginning. but talking about my <<print $mom.call>> turned me on a little bit and I remembered everything from yesterday.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Well, good luck with allergies Billy, I really need to be somewhere right now", I left for home to pick <<print $mom.call>> up.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/23.jpg'">
<p class="notation_text"> And we were there again, in the showroom, with my slutty <<print $mom.call>> on one side and me on the other.
</p>
<p class="notation_text"> She started like yesterday and there were those two guys again. They are regular here I see. And they looked extremely excited that my <<print $mom.call>> was there stripping again.
</p>
<p class="notation_text"> rubbed myself through my jeans as <<print $mom.call>> tilted her head back, moanged again, sputtered, spit, and pulled the cock from her pussy. After gasping, she looked at the mirror, her eyes seeming to find me, and she took the cock down again. Her pussy must have opened because she didn't moan as it slid into her pussy past the halfway point, her lips stretching as far as they could, like when she tried to take my cock into her pussy.
</p>
<div class="dialog_text character">
<p><span span class = "character">Stranger: </span> "Fuck me," someone to my left whispered.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/24.jpg'">
<p class="notation_text"> <<print $mom.call>>'s breasts heaved, and she shook her head and wiggled her dildo, trying to force more down her pussy. After a long minute, or two, she pulled it out and moanged again, thick wads of pussy juice that dripped down her pussy and onto her perfect, smallish tits.
</p>
<div class="dialog_text character">
<p><span span class = "character">Stranger: </span> "She's a cocksucker," the Right Guy said. "A tasty treat born to eat meat."
</p>
</div>
<p class="notation_text"> I looked at him. I wasn't mad, but I was ready to tell him to shut the fuck up, but he wasn't talking to me, not by the way he stared straight ahead as he stroked himself. His eyes were huge, and his voice was full of resonating awe. I left him alone and turned my eyes back to my <<print $mom.rel>> and the gritty, pornographically surreal reality that surrounded us.
</p>
<p class="notation_text"> <<print $mom.call>> dropped to her knees and stuck the cock against the glass just a little below her pussy. Again, I swore that she looked right at me as if she knew where I was sitting. I had my hand on my pants, over my rock-hard cock, and my solid bar of dick-steel wanted to tear through my jeans for a breath of fresh air. My left hand went straight to my belt, but I curled my fingers into a fist, holding myself still. <<print $mom.call>>, though, was anything but still.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/25.jpg'">
<p class="notation_text"> Her store-bought cock had realistic balls, and she cupped them the way she cupped mine, her fingers dancing over its sack and making my own nut-bag tingle. As she wrapped her lips over her dildo's knob, she jerked off the shaft, gathering her spit, then dropping her hand down to her bald pussy lips where her meaty cunny folds were soft and tender, hanging between her thighs in two fat, pussywatering crescents. She was kneeling with her knees spread, and the dark creased between her pouty lips dripped with her juices and spit, and every time her fingers found her clit, her entire body shuddered with small, pleasure-filled quakes.
</p>
<div class="dialog_text character">
<p><span span class = "character">Stranger: </span> "Ride me harder, Candy," a guy to the left said.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Stripper: </span> "Sure thing, Gramps," she said.
</p>
</div>
<p class="notation_text"> I turned my eyes to the left, expecting to see fucking, but the girls were only rubbing their naked asses against both men's laps, trapping their cocks between their cheeks and the john's stomachs. Everyone was watching my <<print $mom.rel>>, and the strippers didn't seem to notice how these old fucks cupped their little titties and pulled on their nipples. The only sign that the girls felt anything was the slight tightening of their faces and their soft gasps as the old guys tweaked their nipples hard.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/28.jpg'">
<p class="notation_text"> <<print $mom.call>> drew my attention again; her sloppy moans and wet fuck sounds were coming through the room's speakers with new, cock-buzzing nastiness. She had squeezed her tits together, and now she was holding the silicone dick between them, fucking the cock as she dribbled saliva onto her chest. Her skin glistened with oil and spit as the light reflected off the semi-white liquid making a mess on her body. After several minutes of itty-bitty-titty fucking, <<print $mom.call>> stood and readjusted the cock against the glass, then she turned around and bent over at the waist, backing her pussy up toward the cock and its long banana curve.
</p>
<p class="notation_text"> I groaned and stood, walking toward the glass wall. I stopped close enough to look down at my <<print $mom.rel>>'s ass, now in a heart shape, as she bent over at the waist. Her cheeks curved outward and around, then down into her thighs, her crack was visible, and so was everything between, including her little, tan-colored pucker. My eyes dropped lower, where her pussy-swells puffed out against her thighs. Her outer folds were in a narrow oval shape, protecting the straight line of her inner crease. My left hand opened, my fingers grabbing onto my belt, the buckle snapping open as I tore at my clothes.
</p>
<div class="dialog_text character">
<p><span span class = "character">Stripper: </span> "Hey, wait, hey!" one of the strippers said, and then she was a step to my left, her john pushing her against the glass wall as he rubbed his cock across her buns. "Wait, damn it! Wait."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/29.jpg'">
<p class="notation_text"> <<print $mom.call>>'s pussy touched the tip of the missile-shaped knob, so much like mine, but smaller in every way, except for its curve. The dildo pushed <<print $mom.call>>'s soft lips inward, her pussy collapsing and then widening to the sides, her slit turning into a pink circle as she eased her twat-hole over the oil-slick dildo stuck to the wall.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>"Oh, yeah," <<print $mom.call>> moaned as the dick stretched her slot open.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Stripper: </span> "No," the stripper next to me whined, followed by a low and angry, "uh," as a cock broke its way into her prepaid muff. "You have to--uh--pay me--uh--first!"
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Gramps: </span> "Yeah," Gramps said, sighing and slapping the stripper's small ass, his enthusiasm met with curses and whimpers.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/30.jpg'">
<p class="notation_text"> My right hand joined my left, reaching into my pants and fishing out my iron-hard pole as my left hand pushed the waistline of my boxer briefs down below my nuts. I placed my left hand on the glass, spread my legs, and stroked my cock as my <<print $mom.rel>> fed her muff to her brand new dildo.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Uh, fuck, uh," <<print $mom.call>> moaned as she took the cock halfway up her snatch, keeping her legs tightly together, her juice-box swelling and making her blonde clam as snug as possible. "Mmm, yeah, mmm, <<print $mc.name>>, baby, fuck."
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Stranger: </span> "My name's Jim," the cock-stroker to the right of me said, standing a few feet from me. "C'mon, say my name. It's Jim. Say Jim for me."
</p>
</div>
<p class="notation_text"> My heart surged with new energy. Did I want to punch this guy? Did I want to fuck <<print $mom.call>> in front of him? Was this a strange dream that I'd later jerk off to, then wish I'd never had, then jerk off to it again?
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/stripper.webp'">
<div class="dialog_text character">
<p><span span class = "character">Stripper: </span> "Fuck, fuck, shit, fuck, oh!" the stripper next to me whimpered as her hands slid up and down the wall as the old guy fucked her young pussy hard.
</p>
</div>
<p class="notation_text"> Somewhere behind us, the other stripper groaned as one of her holes found itself stuffed with thick man-meat.
</p>
<p class="notation_text"> I stroked my dick faster, forgetting about the voyeurs and exhibitionists next to me. I stared down at my <<print $mom.rel>>'s ass, her tight pucker, and her vertical smile as it gobbled down a healthy dose of fuck-stick. My balls swelled as I stroked my cock, flinging precum onto the glass, encouraged by <<print $mom.call>>'s pleasure-filled cries as she fucked her pussy all the way back to the glass wall. The backs of her thighs and her ass cheeks flattened, spreading out, and when she pulled her pussy off the dildo, I saw that her sweet nectar had stained the glass.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/26.jpg'">
<p class="notation_text"> This continued for several minutes until <<print $mom.call>> reached back with her left hand and grabbed her ass cheek, spreading it to the side. Her asshole and pussy lips stretched, and her right hand dipped between her legs from the front. Her fingers found her clit and rubbed the little nub in wide circles. <<print $mom.call>>'s whimpers picked up, and her pussy turned creamy around the cock buried within her slippery muff.
</p>
<p class="notation_text"> My balls tingled.
</p>
<p class="notation_text"> The guy still sitting in the chair moaned, shouting, "Fuck, I'm coming!" as the guy next to me shot his load against the glass wall. I kept stroking my dick, watching <<print $mom.call>>, and holding back my rising cum. The guy force-fucking the other stripper jizzed, grabbing her hips and pulling her back hard as he drove his dick into her muff with a skin-slapping thrust. He let her go, and she sank to her knees, breathing hard as the old man's sperm leaked out of her.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/22.jpg'">
<p class="notation_text"> <<print $mom.call>>'s whimpers reached a new pitch, and she came hard, pressing her pussy down the cock and grinding her butt against the glass. A tremor shook my entire body. My thighs swelled, flexing and tensing, and I rose onto my toes, aiming my cock at <<print $mom.call>>'s back as I splattered the wall with my jizz. <<print $mom.call>> continued whimpering, her knees bending and straightening, her hands on her thighs, her pussy twisting the cock as she ground her insides against the silicone.
</p>
<p class="notation_text"> She eventually slid off the dildo, its long body covered in my <<print $mom.rel>>'s cum as it wobbled side to side after her dismount. <<print $mom.call>> fell onto her hands and knees, her pussy staring at me, its pinkness revealed and glistening with her juices. She breathed hard for a while before looking over her shoulder at me and said, "We got to go, Son, lunch is waiting."
</p>
<p class="notation_text"> I still don't know how my <<print $mom.rel>>'s eyes kept finding me through the one-way glass.
</p>
<div class="dialog_text character">
<p><span span class = "character">Stranger: </span> "Oh, fuck," the man to the right said. "She really is your slut.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/stripper-2.gif'">
<p class="notation_text"> I stepped back, wearing a smile that was all ego as I put my dick away. Gramps grabbed his stripper's blonde hair and pushed her face toward my cum. She frowned, scrunching her face as he rubbed her cheek into my seed, followed by her pussy and lips as he said, "Lick it up, Angie. I'm paying you for this."
</p>
<p class="notation_text"> I watched as her lips parted and her pussy clit came out, then I turned and walked away. This was dirty. Nasty. Pornographic. And yet, my heart raced, and my limbs pulsed with adrenaline. Next time, I would make <<print $mom.call>> sit with me in one of those chairs, and then I wouldn't have to jerk off.
</p>
<p class="notation_text"> I waited for <<print $mom.call>> at the back of the glass room. <<print $mom.call>> had changed to her previous outfit and urged me to leave the place asap. She was breathing heavily. And I knew she was meant to ask, how was it? So, before she said anything, I said, " You know it was breathtaking, right?” <<print $mom.call>> smiled and looked relieved as if she had done something she wanted to do for a long time.
</p>
<p class="notation_text"> I couldn't wait to go home and suck that pussy all over again.
</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[3] = 1>>
<<set $living.status[1] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Myroom Afternoon -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/4/msg.jpg'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Are we going to have sex today?" Jenna texted me from school when I was stroking my hard dick, lying in my room. We couldn't talk in the morning because I was still asleep when she left for her classes.
</p>
</div>
<p class="notation_text"> I can't wait to have sex with Jenna. I know I would love to have sex with my <<print $mom.call>> but I have been planning to do this with Jenna for so long. It would be a crime now to make her wait any longer.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Come home as soon as you finish your classes. My dick is aching for your pussy."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I need to go home in the afternoon. I left my brand new bikini set. I'll bring it back for you."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/15.jpg'">
<p class="notation_text"> I had seen her wearing a bikini before, but this time it was different because I wouldn't need to control my dick this time. I could fuck her virgin pussy whenever I want.
</p>
<p class="notation_text"> I'm ready for you, Daddy, Jenny texted me nearly ten minutes after we finished dinner. And I've set up my phone and your webcam to record us. Come get your little girl's virgin cunny.
</p>
<p class="notation_text"> I read the text while standing outside my bathroom, not far from my room, and for the first time that night, my heart jolted into a trot. I stopped thinking about silly things as soon as my fingers touched my doorknob. I turned it, pushed the door open, and heard the soft sounds of instrumental strings as I stepped inside. <<print $gf.name>> had dimmed my lights to a soft, golden glow augmented by several candles that gave off the scent of lavender as the flames licked away at their waxy bodies.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Nice," I said, closing the door behind me. "You look beautiful."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> She did, sitting on my bed, wearing a pink peekaboo teddy made of lace and sheer silk that hugged her body like a leotard. She wore pink stockings with bright white welts stamped with pink roses. White garters connected her stockings to her V-cut bodice, and when she spun, she revealed an oval cutout on the back of her panties that showed off the crack of her bubbly, teen ass.
</p>
<p class="notation_text"> Jesus, I thought, kinda like <<print $mom.call>>'s lingerie. My cock went from semi-hard to full-blown steel, filling with excitement so fast that a small groan rumbled through my throat.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Your <<print $mom.call>> helped you pick that out?" I asked when <<print $gf.name>> had completed her spin. The teddy wasn't all, though; her makeup made her beauty glow, adding five years of maturity to her features and giving me a glimpse of the woman she'd become.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> She smiled, her red lipstick making her full lips even fuller. "Classy, yet sexy," <<print $gf.name>> whispered. "<<print $mom.call>> isn't like Dad. She knows what a girl wants." <<print $gf.name>> winked, adding in a sing-song voice: "What a girl needs."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Record us with your phone, too," <<print $gf.name>> said. "Over there."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I turned my head, where she had set up a camera mount to my left that I hadn't noticed because of her beauty. I walked to it, set my camera on it, and looked through the viewfinder until I had the frame centred on my bed, then I hit record. I looked at <<print $gf.name>> and said, "I feel underdressed."
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I think you're overdressed."
</p>
</div>
<p class="notation_text"> I smiled, my hands crossing and grabbing the hem of my shirt. I pulled upward, the movement causing my back to arch and my chest to expand, flexing my muscles in a way I knew <<print $gf.name>> loved. I tossed the shirt aside.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-3.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> "Mmm," <<print $gf.name>> moaned. "You look so fucking delicious when you're naked." She nibbled her lower lip for a second. "That big cock looks so yummy." She smiled with a shy pull to her lips and a forward head tilt. "Can I taste it?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Are you ready for that?" I asked, my cock twitching.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yeah," <<print $gf.name>> whispered. "I've been waiting to taste that dick for so long."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "How long?" I walked closer to her, my cock swinging as my hands rose and came to rest on her arms.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Since forever," <<print $gf.name>> whispered.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "That's not a bad thing," I said.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> <<print $gf.name>> shook her head. "No, it's not."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I lowered my head, and <<print $gf.name>> rose onto her toes, meeting my lips halfway. During our kiss, I turned our bodies sideways to the bed, sliding downward and taking her with me. My nakedness caused goosebumps to rise across my skin as my sack hung in the open air for a moment before coming to rest against my inner thighs as I sat. <<print $gf.name>> followed, climbing onto the bed with her knees, her hands finding my chest and pushing me onto the mattress.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I want your cock inside me." Her cheeks turned pinker beneath her makeup as the flickering of candlelight danced across her flesh. "Inside my pussy."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Okay." I licked my lips. "I'll take care of you."
</p>
</div>
<p class="notation_text"> I put my hands on <<print $gf.name>>'s waist. She rested her palms on my shoulders. We leaned into each other as our lips pressed together, then I fell back, taking <<print $gf.name>> with me and running my hands over her lace and silk teddy, the fabric sending goosebumps up my arms and tightening my balls. <<print $gf.name>> lay on the bed, I ran my hands down to her ass, my fingers resting beyond the oval cutout in her onesie's panties, their tips slipping into the crack of her ass. I squeezed her firm butt cheeks, pulled her buns apart, pushed them together, apart and together, my fingers dipping deeper into the heat nestled within her rear cleft.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Do you want to be on top?" I asked.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> shook her head and slid to the side, her body rubbing my cock and pulling it to the left. I followed her turn, moving above her and sliding legs between hers. and pushed my shorts down, freeing my cock in one smooth motion. The big guy bobbed upward, thick and ready for fucking, and already throbbing with the desire to feel the heat between <<print $gf.name>>'s virgin pussy lips. My prick hung above her mound, and I pushed my knees up as far as I could. <<print $gf.name>> had to drape the backs of her thighs over my thighs, which opened her pussy even more for me, her cunny pushing upward as though eager for a taste of my dick.
</p>
<p class="notation_text"> I ran my hands up <<print $gf.name>>'s body, cupping the underside of her breasts, squeezing them, then lowering my head to take her left nipple in my mouth. The lace rubbed against my tongue, and my saliva soaked the threads making up her bodice. <<print $gf.name>> moaned, and I moved to her other breast, licked and sucked, nibbled and chewed, then I pulled her shoulder straps down her arms, tugging until I freed her tits and trapped her elbows close to her body.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, baby," <<print $gf.name>> moaned as I took her nipple into my mouth again. "Mmm, Daddy."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-6.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> My cock jumped. I knew what <<print $gf.name>> meant when she said Daddy, and maybe one day, I could tell her what I pretended she meant when she called me Daddy.
</p>
<p class="notation_text"> I moved down her body, taking her teddy with me. My tongue traced the circle of her navel; dipped inside, making her stomach wave. I left her skin wet, kissed her sides, and slid my hands down to her ass after bunching her teddy around her waist. I kissed the edges of her mound, planting my lips against the cut of her muff-triangle outlined by her thighs. She tasted strawberry and vanilla, hints of herbs, and whatever else her expensive lotions had blended into her skin. Growling, I had to breathe deeply to keep myself from devouring her body the way I would my <<print $mom.rel>>'s.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "So fucking sexy," I whispered against her silk-covered mound. "Your pussy smells so fucking good, like sweet-scented flowers."
</p>
</div>
<p class="notation_text"> <<print $gf.name>> giggled--talking about her pussy's fragrance had a way of making her shy.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-7.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I looked down at her precious little virgin pussy, her pouty folds swollen between her thighs, looking so pure, and I took my cock in my hand and ran the tip through her bulging cleft. <<print $gf.name>> moaned. I tossed her onesie to the floor, letting go of her legs. <<print $gf.name>> dropped them again, her hamstrings landing on my thighs.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I'm just going to get your cock wet for my little pussy," <<print $gf.name>> whispered as she smiled at me. "I need it between my legs too fucking much to suck you off completely."
</p>
</div>
<p class="notation_text"> I groaned, lying back on my pillows so I could look across my nude body as my girlfriend polished my knob and gobbled down my shaft.
</p>
<p class="notation_text"> <<print $gf.name>> traced the lines of my muscles as she straddled my thighs, keeping her pussy away from my vertical shaft. She bent over, planting kisses on my chest, licking around my areolas, and flicking the tip of her tongue against my stiff nipples. Her firm tummy pressed into my dick, and then the bottom of her breasts caressed my cock as she continued to plant her lips along my body. She licked my abs and belly button, kissed my treasure trail, and feathered my waist with her tongue as her hands stroked my skin.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-8.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'm dripping with precum," I whispered.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yummy," <<print $gf.name>> said, moving her head to my right and resting her cheek against my thigh. She gazed at my cock, reaching up with her right hand and cupping my balls. Her left hand slid down to my ass cheek, grasping the curve of my backside.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Oh, that's nice," I sigh-moaned, drawing out the last word. "So fucking nice. You make me tingle all over.."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yeah?" <<print $gf.name>> said in a teasing voice. "What does this make you feel?"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-9.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Her tongue pressed against my sack, where it connected with my shaft, and she licked upward with a sideways raise of her head. I moaned. <<print $gf.name>> licked downward on my cock, bringing another moan from my lungs. She moved lower and over the tops of my thighs, her lace and silk-covered breasts touching my skin as her tongue swished along my sack.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Good," I whispered, trembling. "That feels really fucking good."
</p>
</div>
<p class="notation_text"> <<print $gf.name>> laughed. I could hear her smile. She took hold of my cock with her right hand, moving it out of her way as her mouth danced around the base of my dick, her tongue washing my hard flesh with some saliva that she brushed toward my knob. She licked the length of my cock, then the long, thick, dorsal vein running along the underside of my shaft, and finally running the flat of her tongue around the corona circling my crown.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah, oh, yeah," I moaned.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-10.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> licked upward, brushing her tongue across the spongy tip of my prick, the heat from her mouth dampening my crown as she licked me like a lollipop.. She jerked me off from the base of my cock to its neck, her tongue swirling around my glans and collecting the precum that her cock-stroking pumped from my nuts.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Suck it, baby," I whispered, tightening my ass and forcing my cock toward her mouth. "Give me that mouth."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Ha," <<print $gf.name>> laugh-breathed. "What mouth?" She licked her lips. "This mouth?" A full, wet, umm, sound followed as she opened her lips wide and swallowed my knob.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I breathed. "That naughty mouth."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Is it good?" <<print $gf.name>> asked in a quiet, mousy tone.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Worth the wait and then some," I whispered, looking down into her eyes. "You don't have to stop."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-11.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> smiled, then gave me a grin as she tilted her head in that sarcastic oh, really kind of way. But she went back to work, and my cock thanked her by spitting up a healthy glob of clear, cummy liquid that she was sure to taste.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Mmm," she moaned as she rolled her tongue around my shaft, swinging it left to right and around the sides of my prick, not letting her mouthful of dick keep her from swirling her tongue around my glans.
</p>
</div>
<p class="notation_text"> My thick knob bumped the roof of her mouth and slid against the velvety texture of her tongue. I poked her cheek as she turned her head. My knob followed her cheek back to her throat, hitting her uvula--she gagged, sputtering spit onto my cock--and my sexy little girl tried to take down more of my dick despite her gagging. She gagged again when my tip found her throat-hole just beyond the downward slope of her tongue.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-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> "Ah-umph," <<print $gf.name>> gagged, pulling off my cock, but jerking it quickly. She wiped her eyes, her mascara running, and a double handful of precum shot up from my cock slit.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You're going to make me come if you keep gagging," I said.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I like watching girls gag." <<print $gf.name>> sat. "It's sexy." She looked down at my cock. "Do you want me to try again, or are you ready for my pussy?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I lifted my right hand and brushed the side of her cheek. "What are you ready for?" I asked, sliding my thumb across her lips before pulling my hand away.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Do you think your pussy is ready for this dick?" I asked, stroking the full length of my cock, letting her see my swollen size. "Do you think it's gonna fit in your small hole?"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-12.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> smiled and shook her head. She narrowed her eyes, giving me a sexy, dirty look.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Should we try?"
</p>
</div>
<p class="notation_text"> <<print $gf.name>> nodded her head.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Tell me," I whispered, my blood rising. "Tell Daddy what we should do."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Ooh, Daddy," <<print $gf.name>> pouted, "I think we should try to get your big, fat dick up my little teen pussyhole."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I moaned. Still holding my cock, I leaned over <<print $gf.name>> and to the left, grabbing a thick pillow, and I slid it against her round ass. <<print $gf.name>> lifted her hips, and I pushed it under her bum. Her body looked like a launching pad, her shoulders low, but her torso angled upward, offering the slope of her mound and the pussy-lipped hole below for sacrifice. I ran the tip of my cock through her silky folds once more, her pussy lips melting softly to the sides while every touch coated my tingling knob in her luscious cream.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "So fucking hot," I whispered. "Your pussy is so fucking hot right now."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I know, Daddy," <<print $gf.name>> whined. "I'm hot. I'm hot all over." She ran her hands over her big tits, squeezed them, and then moved lower, stopping with her palms against her lower tummy. "And here." She uttered a soft pout. "And here, it's so hot." She ran both hands between her legs, resting them in the hollow between her thighs and cunny. "I need that cock, Daddy. I need it so much."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I ground the underside of my tip against <<print $gf.name>>'s hood, giving her clitty several teasing brushes. The way the upper portions of her pussy lips moved beneath my crown fascinated me. I placed my left hand on <<print $gf.name>>'s hairless mound, then moved upward until my palm rested between her breasts. The thudding of her heartbeat sent vibrations through my palm.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Nervous?" I asked.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> <<print $gf.name>> nodded, saying, "Excited. Horny. Ready."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Play with yourself for me," I whispered. "Play with your little pink pearl for me, baby."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I moved my cock out of the way as <<print $gf.name>> moved her right hand from her thigh to her mound, her fore and middle fingers pressing down on her swollen nub and moving the fat jewel in soft, side-to-side motions. I watched her face tremble as I ran my knob through the lower portions of her pussy lips, concentrating my movements over her pussyhole and pushing her folds apart.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, yeah, yeah, oh, yeah," <<print $gf.name>> moan-whispered, her face twitching in pleasure.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Baby," I said, licking my lips, "reach below your ass and rub your butthole too."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "God," <<print $gf.name>> gasped as my cock's head split her muff's folds.
</p>
</div>
<p class="notation_text"> Jesus, <<print $mom.call>>, what have you turned me into?
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/cg-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> didn't argue. She slid her left hand around the side of her cheek instead of going behind her back. Her middle finger found her pussy-juiced soaked pucker in an instant. "Fuck," she moaned as she massaged her tight crinkle. "Oh fuck, <<print $mc.name>>. Fuck, that feels so fucking good." She whimpered. "It feels so naughty and--mmm--nasty to be doing this for you."
</p>
<p class="notation_text"> I slid my left hand to her tits, cupping them in turn, squeezing them, and pulling on her nipples. <<print $gf.name>> continued to moan, her sounds getting louder and higher in pitch. I kept waving my cock through her slit with fast up and down strokes, making sweet, wet music as her cream dripped onto my knob and fingers. Every couple of seconds, I paused my pussy strokes and gave my dick a quick tug, polishing my shaft with <<print $gf.name>>'s slippery lube so I could fuck my big boy into her body as smoothly as possible.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "How's that pussy feel, baby?" I asked,
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/cg-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Now poking her hole and the remaining membrane of her hymen--that circle of pink flesh that made her hole look so small whenever we pulled her pussy lips to the sides. It wasn't intact, but some of it was still there bordering the entrance to her cunny channel, and as strange as it may have sounded, we had pictures of <<print $gf.name>>'s virgin opening with the thin membrane showing.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "It feels good," <<print $gf.name>> said, her voice trembling. "So fucking good, Daddy. Fucking great."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Tell me when you're about to come," I said,
</p>
</div>
<p class="notation_text">Still stroking her slit with the head of my cock while I massaged her body with my left hand, caressing her breasts and sides, her ribs and stomach, the insides of her thighs and the space between her pussy and her asshole.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/cg-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I pushed my knob into her, my piss slit kissing her hole while the last of her hymen kissed my glans. <<print $gf.name>>'s moans turned into whimpers, then whines. She nodded her head as fast as her fingers moved over her pretty cunny gem, then she cried out, "Daddy, I'm coming!"
</p>
<p class="notation_text"> I waited until I felt the first jet of warm, honey-like cream squirt from her pussy onto my cock, and then I tightened my ass and pushed my hips forward hard, sending my cock into the buttery softness of her virginity. <<print $gf.name>>'s mouth and eyes widened, her pleasure-filled whimpers turning into a single, rough, elongated moan before breaking apart into whimpers of ecstasy.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Jesus," I gasped, stopping my thrust as I filled <<print $gf.name>>'s cunny with the first five inches of my prick. "Keep coming, baby, keep coming for me."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/cg-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>>'s body shook, her left hand flying to the side and grabbing onto my comforter. Her pussy squeezed me, pulling the precum from my balls as her insides sucked hard on my member.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, fuck," <<print $gf.name>> moaned as I gave her tender love-nub some side-to-side joy.
</p>
</div>
<p class="notation_text"> With her ass on the pillow, her legs spread, and her body still shaking, I watched as <<print $gf.name>> danced her pussy on my cock with rolling motions of her hips. Another, smaller orgasm ripped through her right on top of her first. <<print $gf.name>> grabbed my right hand with her left and tried to pull my cock into her. I gave her clitty several more swishes before allowing her to move my hand. Then I spread my knees and bent my back, lowering my upper body over hers until my pectorals lay pressed against her big, perky tits.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Ready for a fucking?" I asked, my lips against hers, then opening hers as my tongue slipped into her mouth
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Mm-hmm," <<print $gf.name>> moaned, lapping at my tongue as though we were in a Japanese porno.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/dg-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I pulled my cock from <<print $gf.name>> and pushed back in, feeding her dripping wet clam the same five inches as before. I used a slow fuck-stroke on my girlfriend, moaning into her ear as her tender softness baked my cock with her warmth. Silky and smooth, with rolling cunny walls that sucked at my shaft with wet pulses, that's what I felt when I buried my prick within <<print $gf.name>>'s twat.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck, that's a good pussy," I whispered in <<print $gf.name>>'s ear, licking her. "So fucking hot around my cock."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Mmm," <<print $gf.name>> moaned. "Oh, fuck, you're so fucking--uh--hard, <<print $mc.name>>."
</p>
</div>
<p class="notation_text"> I had wrapped my arms under <<print $gf.name>>'s shoulders, with one hand cradling the back of her head and the other resting atop it, in her hair, ready to hold her in place when I really started to rock her body with my dick. <<print $gf.name>> had lifted her feet from the bed, hooking her heels around my thighs and splaying her knees outward like a pair of wings, making it easier for my cock to slip into the pool of wetness between her legs. But she was so fucking tight, even as creamy as she was, the friction of her insides against my prick made every pass through her channel an ecstasy-filled journey.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, oh, oh fuck," <<print $gf.name>> moaned, then adding in a whimper, "Fuck, Daddy, that dick gets deep."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/dg-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I had about a third of my cock left to give her. I smiled against her cheek, the thought, That's what <<print $mom.call>> likes, sliding through my mind before I could push it away. "And I'm only going to go deeper," I said, slipping another half-inch of cock into her muff, spreading open the untouched cunny meat within her channel.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, god," <<print $gf.name>> whimpered. "I can take it, Daddy. I can."
</p>
</div>
<p class="notation_text"> I kissed <<print $gf.name>>'s cheek several times before bracing my weight on my knees and forearms and rocking my slick pole deeper into <<print $gf.name>>'s creamy folds. I could feel her pussy lips sinking inward with each thrust and chasing my cock outward as I withdrew. I fucked my little girl with slow strokes, picking up speed, then slowing down, listening to her whimpers and whines, her soft moans, and the deep grunts she uttered whenever I fed her teen twat new inches of my prick. Another inch and another, I slipped into her pink box until my balls came to rest against her asshole. Inside of her, I felt something soft rubbing against my glans, causing streams of precum to leave my body. Fuck, but that thread-like stream of jizz made me shiver.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, Jesus," <<print $gf.name>> groaned, "you're in my guts, Daddy."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck," I growled, pumping her little pussy faster.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Tiny yelps left <<print $gf.name>>'s lips as I humped her pink pussy full of cock meat. I sped up, listening to her cries and adjusting my speed and depth to her moans. Her nipples rubbed my chest, her big titties shook, and sweet, wet, squelching noises sounded from her pussy every time I dipped into her juicy hole.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "That sounds so fucking sexy," I said into <<print $gf.name>>'s ear. "Hearing your pussy take my dick--it's talking to me, baby. Faster or slower? How does my little girl want it?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, oh, oh, fuck," <<print $gf.name>> moaned. "Faster, Daddy. Mmm, fuck, faster!"
</p>
</div>
<p class="notation_text"> I sped up, moving faster, not harder--<<print $gf.name>> wasn't ready for a hard fucking.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yeah, oh yeah," she whimpered. "Oh, god, baby. Oh, fuck, Daddy. I'm getting hot. So fucking hot. Mmm, mmm, fuck!"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-6.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> slid her feet up my thighs and over my ass, then crossed her ankles together at the small of my back. Her hands slid from my shoulders down my sides, her body folding as much as it could beneath me as she reached for my ass cheeks, found them, then pulled me into her. She circled her hips, grinding her pussy on my cock as I moved in and out of her tiny twat, never going all the way in, never coming all the way out, and always keeping her pussy half-full of my hard pole. As the signs of her orgasm neared--wetness, creaminess, her cunny walls tightening, and her whimpers growing louder--tingling streams of pleasure swirled my glans, flowing through my shaft and into my balls.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Fuck, I'm gonna come," <<print $gf.name>> whispered, panting hard in my ear. "Kiss me, <<print $mc.name>>. Kiss me--mmm--<<print $mc.name>>."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck, <<print $gf.name>>," I gasped, finding her lips with mine and pushing my tongue against hers.
</p>
</div>
<p class="notation_text"> <<print $gf.name>>'s whimpers continued, filling my mouth as her tongue darted, licked, and stroked mine. The pleasure in the tip of my cock forced my thighs to tremble as <<print $gf.name>>'s cunny walls rippled over my shaft. I pushed in deep, as deep as I could, and she uttered a whiny, "<<print $mc.name>>," right before she cried out and came.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $gf.name>>," I moaned as the muscles in my glans turned to liquid, and my balls released an extra thick torrent of creamy cum into my girlfriend's pink depths.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> We shook and trembled, my hips pumping my dick into <<print $gf.name>>'s pussy with a mind of their own. I shot my cum while fucking my dick into <<print $gf.name>>'s hole, spraying her insides with jizz, my cum quickly mixing with her pussy juices, turning into a thick white cream that my cock pulled out with each withdrawal.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck, oh, fuck," we panted together, our voices merging as my cock softened within her cunny, eventually slipping out of her hole and dragging a thick glob of honey along with it.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Daddy," <<print $gf.name>> said some minutes later, still breathing hard. "Can we do that again?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck yeah," I said as my cock lay on my sack, resting in its half-hard salami state. "I need some water. Do you want some water?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yeah." <<print $gf.name>> purred. "Go get it? I'm going to keep myself warm for you."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I got up from my bed and looked down at <<print $gf.name>>, then a light bulb went off above me, and I said, "Wait." I grabbed my phone from its tripod and held it in front of me as I walked to <<print $gf.name>>. "Let's get a close-up of your freshly fucked pussy."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Daddy, that's so nasty." <<print $gf.name>> grabbed her pillow, placing it beneath her butt and spreading her legs. She planted her feet on the bed and lifted her lower back, creating a downward sloping bridge to her shoulders. "For the best view."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I laughed and zoomed in on her smooth, golden muff. Aside from the deep pink color of her lips, my baby girl's pussy didn't look battered at all. I'm gonna fix that, I thought, then I wondered why it made me so hot when I thought of beating up <<print $gf.name>>'s pussy. After several minutes of videoing <<print $gf.name>> with my phone, I set it back on its tripod, grabbed her phone, and made another video of her slippery clam for her. Then I handed the phone to her as she sat up and recorded her snatch herself.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Your cum is dripping out of me," <<print $gf.name>> whispered. "Look."
</p>
</div>
<p class="notation_text"> I laughed and crawled onto the bed, peering between her wide-open thighs. Thick, white liquid dripped from her pussyhole, staying together like a string of honey.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Touch it," <<print $gf.name>> whispered.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I slid my right hand between her legs, my fingers extended, and I touched her tender flesh. Wet stickiness greeted my fingers as our cum collected on their tips.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Feed it to me, Daddy," <<print $gf.name>> whispered. "I want to taste it."
</p>
</div>
<p class="notation_text"> I lifted my fingers to her lips. We met each other's eyes. Beneath my chest, my heartbeat soared as <<print $gf.name>> opened her lips, her expression innocent, shy, and curious. Her pink tongue came out as her cheeks reddened, and then I slid my cum-coated fingertips into her mouth.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> <<print $gf.name>> sucked, and from her throat came the purr, "Mmm," as she closed her eyes in ecstasy, her mouth sucking our juices from my fingertips.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/cum.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I was rock fucking hard by this time.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Get that water, baby," <<print $gf.name>> whispered after she had cleaned my fingers. "And then you can get this pussy again. Oh, and a Coke. I have a surprise for you."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Okay," I said, having to wait for my hard-on to soften. I wouldn't have, but <<print $gf.name>> mentioned that my parents didn't want to see how hard I was for her.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Hurry back," she said when it was safe to head downstairs.
</p>
</div>
<p class="notation_text"> I nodded, having to force myself to leave <<print $gf.name>>'s side. I pulled on a pair of shorts and walked downstairs with my semi-hard-on, thinking that my <<print $mom.rel>> had already gone to bed. Instead, the living room lights were on. I saw my <<print $mom.rel>> on the couch, in our spot with her butt near the cushion's edge and her boy-shorts sitting on the coffee table, next to a bottle of wine. The glass was on the end table to her right. An adult movie played on the TV. A blonde, flaxen-haired MILF took the cocks of two young men--one in her pussy, the other in her ass. <<print $mom.call>> had her right hand in her lap while her left hand caressed her breasts beneath her buttoned-up pajama shirt. She didn't notice me as I walked to the couch and stopped behind her.
</p>
<div class="enter_button" data-passage="Patreon">
<p >Leave</p>
</div>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<!-- Living Night -->
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/lick-7.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I smiled against her ass and flicked her hole with up and down licks of my tongue. Had <<print $mom.call >> looked through my tablet?
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Whatever you do for me," I said, "I won't do to <<print $gf.name>>." I swirled my tongue around her back door, rimming her butthole until she was soaking wet with my spit.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Oh," <<print $mom.call >> whispered. "Oh, god, <<print $mc.name>>."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Reach back, <<print $mom.call >>," I said, "and pull your ass open for me."
</p>
</div>
<p class="notation_text"> <<print $mom.call >> had been looking forward again, but as her hands came back and her fingers cupped the bottoms of her cheeks, she looked over her shoulder one more time. <<print $mom.call >> pulled her ass cheeks open for me. As her buns parted, the lips of her pussy spread as well, and I sighed.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/lick-8.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Her inner lips were like rose petals in the sunrise, wet and dewy and sticking together. I saw her thick nectar stretch between her inner lips, as delicate as strands of webbed crystal, and they snapped, bursting into invisible teardrops that dispersed through the air.
</p>
<p class="notation_text"> I sighed again.
</p>
<p class="notation_text"> It was past time for a taste of my <<print $mom.rel>>'s cunny.
</p>
<p class="notation_text"> I dragged my right hand from <<print $mom.call >>'s thigh and over her ass. Once my palm rested squarely on her crack, I pushed upward, beneath her shirt, and to the center of my <<print $mom.rel>>'s back. I pushed down on her, saying, "Bend over, <<print $mom.call >>. I can't kiss your pussy from this angle." Through her back, I felt my <<print $mom.rel>>'s heartbeat rise.
</p>
<p class="notation_text"> Still holding her cheeks open, she bent over at the waist. I slid my left hand around her thigh to her front, where I supported her hip, and I did the same with my right hand, sliding it around her right side and taking hold of her. My arms tensed as her weight pulled forward, but she was a feather in my hands. Her hair fell about her shoulders, and through her legs, which she had parted, I could see her hair hanging down to the room's wooden floorboards. I moaned as I pressed my tongue against her asshole and licked downward between my <<print $mom.rel>>'s cheeks.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Fuck," <<print $mom.call >> moaned as I tickled her rear door. She moaned again when I licked her perineum, and she gasped as I moved lower and took the bottom curve of her pussy into my mouth.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/lick-9.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> "Mmm,"
</p>
</div>
<p class="notation_text">I sighed, straight into her gummy cunnyhole. I pushed my tongue forward, sliding easily through her soft lips and right into the pink depths of her tight insides. Sticky wetness greeted my tongue, and it was like her pussy had decided to return my kiss. Wet, hungry sounds that were beyond perverse filled the room. The longer I kissed my <<print $mom.rel>>'s pussy, the louder and wetter the sounds became, and it wasn't long before my <<print $mom.rel>>'s knees bent down and then back up in a horny shuffle as she slid her vertical smile across my face.
</p>
<p class="notation_text"> I squeezed my <<print $mom.rel>>'s waist hard, pulling her back onto my mouth as my tongue spread her pussy lips and drew out her wetness. She didn't dance or twerk her cunny meat on my face as <<print $gf.name>> would have. <<print $mom.call >> moved slowly, her thighs tensing and her calves flexing. She found a sensual rhythm as my tongue traveled the length of her slit, from the bottom of her hole to the swell of her pleasure-nub. Whenever her clit found my lips, <<print $mom.call >> would stop moving, and I'd suck her tiny jewel into my mouth, swishing and pulling it from its hood until <<print $mom.call >> pulled her pussy away and humped her slit across my face once more. I could have kept this up forever, but my cock had other plans.
</p>
<p class="notation_text"> How much of me was my <<print $mom.rel>> ready to let inside of her? I was confident that she'd be willing to take my dick, but despite my craving to feel her silky heat surround my cock, I discovered that I wasn't in a rush. There was still so much more to do, but I wanted to come, and if there was one thing I had experience in, it was dry fucking <<print $gf.name>> until I nutted in my pants.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/lick-10.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I leaned back, pulling <<print $mom.call >> with me and keeping her pussy glued to my face, but I could only go back so far before her calves hit the front of the couch, stopping her short as I continued to lean into the backrest. <<print $mom.call >> lost her balance and sat down, her butt hitting my stomach and sliding down to my cock, where she sat her pussy along the length of my shaft, pushing it against my thighs and causing an unbearable strain of pleasure to tighten my thickness.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Uh," <<print $mom.call >> moaned when the hardness of my prick pushed into her through my shorts.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "That's it, <<print $mom.call >>," I whispered, pressing my lips against the exposed skin of her left shoulder. "This keeps me away from <<print $gf.name>>."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Yeah," <<print $mom.call >> panted. "It better."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/lick-19.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I slid my hands to the tops of her thighs and pushed outward as far as I could, then I slid them between her legs with my fingers pointed down, and I spread her open. <<print $mom.call >> moaned again, her breathing growing ragged as I pushed my hands deeper between her legs, sliding them along her inner thighs until I bracketed the triangle of her soaking wet muff between my thumbs and forefingers. The tips of my middle finger rested on her perineum while my ring and pinky fingers held the bottom, inside swells of her ass cheeks.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>," <<print $mom.call >> gasped as I squeezed her pussy lips together, puffing out her folds and squishing her clit between her cunny meat.
</p>
</div>
<p class="notation_text"> I squeezed her pussy several times, pushing in and pulling out, puffing her lips outward like the meat of a burger patty. I reached inward, feathering her slit and wetting my fingers, then running their tips along the length of her small crease while teasing the shallowness of her hole with soft penetrations.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Mmm, mmm, mmm,"
</p>
</div>
<p class="notation_text"><<print $mom.call >> whimpered, her feet settling atop of mine. She pushed down, then, and using her leverage, she ground her ass on my cock, sending bolts of pleasure through my shaft and into my balls.
</p>
<div class="enter_button" data-passage="Event_18">
<p >Continue</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- living Midday -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/17.png'">
<p class="notation_text"> I was waiting for <<print $mom.call>> in the living room before lunch according to our previous planning.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Don't forget to bring your new dildo."
</p>
</div>
<p class="notation_text"> She didn't. I filmed her stockings and the glossy sleekness they encased her legs in as she came downstairs holding her dildo. She sit right in front of me, spreading her legs open so that i can get a good view.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "It's time for you to play with that pretty little pussy between your legs."
</p>
</div>
<p class="notation_text"> <<print $mom.call>> turned around, staying on her knees, her hand shooting out and grabbing my cock before I could step back any further.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>"Just a taste," <<print $mom.call>> pouted, looking at me with soft doe eyes, the light within them pleading for me to say yes.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/bj-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> She licked her lips, and I said, "Okay, but a quick one."
</p>
</div>
<p class="notation_text"> I let <<print $mom.call>> tug me toward her; my knob aimed straight for her mouth as she guided my cock forward. My tip hit her lips. They rolled over my dick as she took me into her mouth, and her hand slid along my shaft, stroking me to my balls. Wet, hungry mwuh, umm, mwuh sounds came from my <<print $mom.rel>>'s throat, deep and rich and hungry. I switched my phone from camera mode to video mode and filmed my <<print $mom.rel>> from above, then the sides while trying to watch the screen so I could capture the perfect angle of her cock-sucking face. I uttered soft moans the entire time, and I did my best not to fuck up the shot as my body trembled.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>"Give me that cum," <<print $mom.call>> said around a wet mouthful of dick.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/bj-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I almost did. My <<print $mom.rel>>'s naughty words, spoken with her mouth full, sent tingles down my spine and into my balls, getting my jizz ready for a rocket blast down her throat.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Oh, no," I said, bending over and pulling my hips back, the movement stealing my prick from my <<print $mom.rel>>'s lips. "We've got time to make a dirty movie, <<print $mom.call>> I want to see your pussy cream on camera."
</p>
</div>
<p class="notation_text"> <<print $mom.call>> pouted. I walked away, half turning to grab her dildo while keeping my phone on her at the same time. I handed <<print $mom.call>> her dildo, and she dropped to her knees on the coffee table. The pearl slit of her panties opened, and her sexy pussy lips slipped out as her desire swelled her cunny folds and popped her clit out of its hiding spot. I panned the camera upwards, filming <<print $mom.call>>'s pink-nippled tits followed by her regal features, making her look like a queen who was doing something that no lady of status would ever do in front of a camera, or real in life, where rumors could make or break someone's social status.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/d3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> But this is real life, I thought, and <<print $mom.call>> only does this for me.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>Cum dripped from my cock, and I walked forward, saying, "<<print $mom.call>>, wet your dildo with my precum."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>"My son's precum?" <<print $mom.call>> asked, reaching forward with a cat-like prowl. "My son's precum on my toy cock?" She pouted, then grabbed my cock with an overhand grip and rubbed her thumb over my piss slit. Then she rubbed what jizz she could over her fake dick. "<<print $mom.call>>mies shouldn't do this with their sons' precum."
</p>
</div>
<p class="notation_text"> I moaned.
</p>
<p class="notation_text"> <<print $mom.call>> brought the dildo between her tits, their size not enough to pillow the fat cock in her hands. She held her dildo by its shaft as she cradled its balls, looking down and releasing a thick wad of whitish spit onto the knob. With a soft moan, she fucked the cock between her little tits, stroking the shaft and letting more spit fall from her mouth. The nastiness of seeing my <<print $mom.rel>> acting so slutty sent my pulse into overdrive.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/toy-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You're so fucking sexy," I said, moving around and capturing my <<print $mom.rel>>'s body at different angles. "You're such a slutty <<print $mom.rel>> for your titty-fucking dildo."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "For you," <<print $mom.call>> said, eyeing the camera. "I'm titty-fucking this piece of meat for my son." She winked, nibbled her lip, looking coy, and then she opened her lips and slid the tip of her spit-covered prick into her mouth.
</p>
</div>
<p class="notation_text"> I groaned.
</p>
<p class="notation_text"> <<print $mom.call>> moaned around her toy dick; her sounds hungry and desperate, almost whiny. I watched her gobble up the cock, take the stalk down her throat, gag, pull off, gasp for breath, and go back for more. I should have made her wear mascara.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/toy-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Fuck, I thought, her jaw is going to be sore. My <<print $mom.rel>> didn't seem to be the type of woman who believed in showing herself mercy. You're a great man, Dad, but you should have treated <<print $mom.call>> like a whore every once in a while. Then again, thankfully, he hadn't.
</p>
<p class="notation_text"> Next time, I would. She pulled the cock from her mouth and taped it against her tongue. I reached down to stroke my cock, and <<print $mom.call>> reached out her hand, using her fingers to call me to her. I came, letting her wrap her fingers around my prick and jerk me off as she sucked her silicone dick fast and hard.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/toy-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I pulled away, my cock waving back and forth in front of <<print $mom.call>> and just out of her reach. She glared at me, then at the camera, and her anger gave me goosebumps. She lowered her dildo to the coffee table and stuck its suction cup base to the glass, the long, curved shaft sticking straight into the air.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span>"Are you gonna make <<print $mom.call>>ma fuck this dick, baby?" <<print $mom.call>> asked, looking at my camera. "You gonna make my little pussy handle this big, monster dick?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I said, breathing hard.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/toy-6.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> My <<print $mom.call>>, my gorgeous <<print $mom.call>>, fucked her toy dick so hard that day, it made me cum intensely. I slept again after I had downloaded <<print $mom.call>>'s video to my computer. Then I downloaded the video to a flash drive, which I tossed into my desk drawer, which I locked. I never had to worry about anyone going through my room before. <<print $gf.name>> had never asked me to let her snoop around, so I had no fear of discovery, but it still made me feel better to lock the drawer. <<print $mom.call>> would die if that video ever got out.
</p>
<p class="notation_text"> And yet she let you take it, I thought as I closed my eyes and went to bed.
</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 $myroom.status[6] = 1>>
<<set $living.status[4] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/10.jpg'">
<!-- myroom evening -->
<p class="notation_text"> So, I slept for a few hours in the afternoon since <<print $mom.call>> was busy with her office, watched a movie and when a sex scene came, suddenly I started missing <<print $gf.name>>.
</p>
<p class="notation_text"> I needed to see her. So, I waited till my parents fell asleep and I could sneak off to her room. Who knew <<print $gf.name>> would give me such exciting news?
</p>
<p class="notation_text"> Ready for me? I texted <<print $gf.name>> five minutes before midnight.
</p>
<p class="notation_text"> I didn't have to wait long before <<print $gf.name>> sent me: My parents are asleep. I'm in the hot tub. Get your sexy butt over here.
</p>
<p class="notation_text"> I rolled out of bed, changed into a pair of boardshorts, and made the trip down to my backyard. <<print $gf.name>> had left her yard dark, leaving only the starlight to guide my path to her hot tub's glowing water. I jumped onto the grass and walked across <<print $gf.name>>'s lawn, around her pool, and to her hot tub.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/8.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "It's so dark," I said, standing on the lip of the hot tub as I stared down at <<print $gf.name>>, sitting in the blue water. "But it always is. What if I was some stranger instead of me?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Shut up and get in here," <<print $gf.name>> said, her voice bubbly and barely contained. "Dad is going to let us have sex!"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "That's better than therapy." I stepped into the hot tub, the water crawling over my skin and warming my body. "How'd this happen?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I," <<print $gf.name>> said, standing and grabbing my hands. "I"--she smile-cringed before saying--"kissed him!"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You did what?" I asked without thinking, my voice coming out quick and sharp and curious as my mind slammed against my skull. Her words struck me with the precision of a ball-peen hammer, and I started to chuckle. "Kissed him how?"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/1.jpg'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> <<print $gf.name>> shrugged and looked to the side. "You said I should tease him."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Tease, not kiss."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I've been teasing him every night, but"--it seemed as if she tried to shrink--"but it just kept turning me on. Dad kept fucking <<print $mom.call>> every night afterward--I couldn't take it anymore." She looked at me; her eyes were big beneath the starlight. "So, I asked him about you, and he said, 'No,' and then I said, 'Well, I need to fuck somebody,' and I kissed him." Soft, rapid laughter fell from her lips. "I sat on his lap and kissed him."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Holy shit," I whispered, thinking, Guess what I've been doing? "Then what happened?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "You're not mad?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I shook my head. "No. It's fucking strange, but you're a strange girl." Should I have been mad? Was I allowed to be mad? It didn't matter because I wasn't mad.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/2.jpg'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Shut up," <<print $gf.name>> said. "I needed to show him how much I needed it. You know what the strange thing was?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Stranger than a daughter kissing her father? No, I don't know what's stranger than that." Oh, but I knew, though.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Dad, kinda, you know," <<print $gf.name>> whispered, "kissed me back."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Oh." I tried to keep my expression blank as blood flowed into my cock, giving my dangling monster a swift thickening of size.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Then he pushed me off his lap and went to see <<print $mom.call>>" <<print $gf.name>> sighed. "I'm pretty sure he fucked the hell out of her." She widened her eyes as she told me that. "Later, after he finished with <<print $mom.call>>, he said, 'Okay. You can be with <<print $mc.name>>, but there will be rules.'"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "What kind of rules?" Rules were good. The idea of "rules" didn't seem to bother my cock, which continued to grow beneath my shorts.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/3.jpg'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I don't know. He wants to see you and your parents tomorrow."
</p>
</div>
<p class="notation_text"> I took <<print $gf.name>>'s face in my hands and looked into her eyes. I saw the smile of an excited youth stretch her lips, not that I was so old and wise, but she was still young and inexperienced. Not like my <<print $mom.rel>>. Not even like me. <<print $gf.name>> was a virgin. Maybe waiting a couple of years wasn't such a big deal any--
</p>
<p class="notation_text"> <<print $gf.name>> stood on her toes, wrapped her hands around my neck, and pulled my mouth down to hers. Our lips met and slid together, the perfect union of flesh that parted as our tongues merged, first in my mouth, then pushing into hers. We pressed against each other, our tongues licking and sliding together, generating saliva as we tasted each other. I moved my right hand behind her head and my left down her teen body; the muscles beneath her tight skin felt hard and thick. My hand found her ass, and I filled my palm with her meat.
</p>
<p class="notation_text"> Oh, yeah, I thought as my fingertips dipped into her crack and traced the twat. She's not that young. Within moments, my hard-on pressed into her stomach.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/4.jpg'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "What?" <<print $gf.name>> asked as I laughed against her lips.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Nothing," I said. "I've had a long week without you." But I wouldn't trade it for all the wishes in the world. "So, you're a Daddy kisser now?" What a pair we made.
</p>
</div>
<p class="notation_text"> <<print $gf.name>> stared at me, her eyes widening. Her mouth dropped open, but no words came out.
</p>
<p class="notation_text"> I laughed.
</p>
<p class="notation_text"> <<print $gf.name>> blushed, the light from around the spa revealing the flushing of her cheeks.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "How did you kiss your father? With tongue?" I teased.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> <<print $gf.name>> turned to the side, her eyes going wide, "Yeah, maybe, I don't know," she said, her answer spoken with a long, drawn-out embarrassment that only made my prick harder. "I wasn't thinking about it when I did it. I just did it. I only know how to kiss with tongue, okay? Teasing him was your idea!"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'll get to do more than suck them soon," I said. "Tomorrow?"
</p>
</div>
<p class="notation_text"> <<print $gf.name>> nodded her head, biting her lip.
</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 = 6>>
<<set $eventCount += 1>>
<<set $living.status[2] = 1>>
<<set $myroom.status[3] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- living afternoon -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/11.jpg'">
<p class="notation_text"> The thought of having sex with <<print $gf.name>> was making me hard every second ongoing. I couldn't stop touching her and I thought let's see what I have learned all these days with my <<print $mom.rel>>. Without wasting time I made the trip down to her home. She was taking shower.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Daddy kisser," I said, squeezing her ass. "What a bad little girl you are."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I didn't kiss my Daddy," <<print $gf.name>> said, looking at me and shaking her head with a don't be an idiot expression on her face. "I kissed my father." Her following smile was nothing but coy sweetness and false innocence. "You're my Daddy, and I love kissing my Daddy."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Then give Daddy a kiss."
</p>
</div>
<p class="notation_text"> Our lips met, and I dug my tongues deeper into her thick ass, making her moan into my mouth. <<print $gf.name>> pulled me down into the water and pushed me back, sitting me down on the spa's granite bench. Bubbles splashed around my shoulders as <<print $gf.name>> straddled my lap. Her thinly clad muff pressed into my cock as she wrapped her arms around my head. I held onto her ass with my right hand and ran my left hand up her back, finding the strings keeping her bikini top together. I pulled them apart. Her bikini's half-cups came loose from her chest and floated atop the water, bouncing with the explosions of air along the water's surface.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/breast.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> "Did you miss these titties, Daddy?" <<print $gf.name>> asked, her voice turning pouty. "You haven't been able to suck them for a week."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Should I suck them now?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yeah," <<print $gf.name>> whispered. "Right now."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I said, thinking of <<print $mom.call>> and our agreement. Yet, if I now had permission and I still owned <<print $mom.call>>'s pussy, then what was the problem? God, I was a bastard.
</p>
</div>
<p class="notation_text"> <<print $gf.name>> pushed her breasts toward me, rising to her knees and thrusting her hips forward. I held her back with my left hand, pressing my palm into her as I cupped her left tit with my other hand and lowered my mouth to her thick nipple. Her nipples were shorter than <<print $mom.call>>'s, yet just as thick, though her areolas were larger as well. Her tits--one of them equaled both of <<print $mom.call>>'s--were much bigger. I sucked their firm, youthful perkiness into my mouth with enough slobbering noise to dub a Japanese porno.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Ooh," <<print $gf.name>> moaned, running her hands through my hair and kissing the top of my head. "I've missed--mmm--this." She moaned again. "Your mouth on my titties is so fucking hot. I tell our friends about how good you suck my titties. It makes them so wet."
</p>
</div>
<p class="notation_text"> I growled around her left tit, dropped both my hands to her thick ass, and lifted her into the air. <<print $gf.name>> gasped, laughing as I turned her around and set her down on the lip of the spa. Our mouths touched, as did our tongues.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> I pressed my body over hers, easing her down to the cement behind her. When I rose, she asked, "<<print $mc.name>>, baby, sweetie... will you eat my pussy for me?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I thought you'd never ask," I whispered, kneeling in the water.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/lick-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>>'s ass lay on the edge of the spa. I moved forward, rising from the water so that the back of her knees rested on my shoulders. Starlight led the way between her legs, making the patch of nylon covering her fat pussy viewable. Her bikini panties had bowties at her hips. I grabbed the strings, tugged them loose, and pulled her panties to the right. <<print $gf.name>> lifted her butt, and I tossed them in the water behind me, the smooth lips of her bare beaver stealing my focus.
</p>
<p class="notation_text"> I lowered my lips to her lips, kissing the long seam of her twat right below her clit and above her actual pussyhole. <<print $gf.name>> purred as I pushed my tongue outward, curling it over my lower lip and laying it flat against <<print $gf.name>>'s upper slit. With a growl, I licked upward, digging into her cleft and pushing down on her clitty, making her jump as I flicked her love button with rapid strokes.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Mmm, yeah," <<print $gf.name>> moaned, keeping her voice low. "Tomorrow--mmm--I'll be doing this for you."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/lick-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I moaned against her pussy. How would <<print $gf.name>>'s virgin mouth compare to my <<print $mom.rel>>'s experience? I shouldn't compare, I thought, yet when I compared their bodies, I always found a way to love both of them. She'll be great.
</p>
<p class="notation_text"> I wrapped my arms around <<print $gf.name>>'s thighs and placed my tongues on her outer pussy lips. Her tender skin warmed beneath my touch, and when I spread her open, the sweet fragrance of her inner pinkness filled my nostrils, sending my head into a spin. I pressed my lips to her pussyhole and drove my tongue into her wetness, tasting her smooth cunny walls and the thick honey flowing from her twat tunnel.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "So good," I said around a mouthful of pussy. "So fucking tasty."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yeah," <<print $gf.name>> whispered. "That's your pussy, <<print $mc.name>>. That's your fucking pussy."
</p>
</div>
<p class="notation_text"> I groaned; the sound was hungry and desperate. That's your fucking pussy. Had she hidden a microphone in my house? Imagine if she had. Imagine her and <<print $mom.call>> sucking my cock or bending over my bed side-by-side while I played pussy-roulette with their creamy twats.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/lick-3.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> "Ooh," <<print $gf.name>> hissed as I pushed my tongue into her virgin cunny's tightness. "Your tongue is so much teasing."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Imagine how my dick is gonna feel inside of you," I said, then licked around her slit where it gripped my finger.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "You're going to have to get me so wet to fuck that big thing into me." <<print $gf.name>> moaned, still keeping her voice low as I sucked her clit away from her pussy. "Fuck, that feels good, baby."
</p>
</div>
<p class="notation_text"> Let's see if I learned anything, I thought as I closed my eyes and went to work on my girlfriend's twat. We had to be quiet, but less than a minute later, I had to grab <<print $gf.name>>'s panties and stuff them into her mouth, followed by her bra. Even then, she had to cover her mouth with her hands. I used my fingers and tongue between her legs, pulling her pussy lips open with my thumbs and licking her inner folds.
</p>
<p class="notation_text"> I traced the line of her sweet lips, inside and out, and I sucked her clit, polishing the little pearl with the tip of my tongue as I held it between my lips. When <<print $gf.name>>'s cream had drenched my mouth, I slipped tongue into her muff, curled them upward, and rubbed the soft underside of her mound, finding her G-spot and making her squirm. As I gave her a two-fingered pussy stroke, my left hand strayed to her asshole, where I teased her anal bud with soft pokes that pushed her hot ring inward, but never all the way.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/lick-4.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> "Mmm, mmm, mmm," <<print $gf.name>> cried, her whimpers and whines flowing through her wet panties and escaping her palm. "Umm, mmm, mmm, umm, mmm."
</p>
</div>
<p class="notation_text"> I pushed my tongue deep into her slippery hole while sucking on her clit. <<print $gf.name>>'s thighs tensed, and she pushed her ass off the cement. The wet muscles of her pussy gripped my tongue hard, her velvety walls sucking on my digit and teasing my cock with the tightness of her hole. I doubled down on my sucking, pulling my tongue from her ass and moving it to her mound. I lay my palm flat atop her cunny slope and pushed my thumb down her clitoral hood, resting the tip across her pink jewel. <<print $gf.name>> jumped as I rubbed her swollen nub and licked around the sides of my thumb, wetting her pearl whenever I had the chance.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Fuck, fuck, fuck, fuck, <<print $mc.name>>!" <<print $gf.name>>'s voice mumbled through her panties and palms. "I'm gonna cum!" And then she did, tightening her entire body and pinching my fingers hard with the creamy vise between her thick thighs.
</p>
</div>
<p class="notation_text"> I pushed into <<print $gf.name>>'s teen twat as far as I could, wiggling my tongue against her grip as I swished her clit from side to side. She spread her legs wide, and I stood, tongue-poking her pussy fast and hard and watching her big tits shake as she came beneath the starlight. Something happened that had never happened before--jet streams of her liquid cum sprayed from her pussyhole, reminding me of those pornos where the girls squirt their juices all over the camera's lens.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck," I whispered, not easing up on <<print $gf.name>>'s pussy.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/lick-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> She fought me for a second, then turned on her side to get away from my tongue. I let her go and watched as she pulled her arms and legs tight to her body. Her knees came up by her breasts as she trembled through the biggest orgasm I had ever seen her experience.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You okay?" I asked once her breathing had calmed.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Fuck," <<print $gf.name>> said, pushing herself up and sitting at the edge of the spa. "Where did you learn that?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> Heat warmed my cheeks. I shrugged and said, "Just missing you; that's all."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "You should miss me more often." <<print $gf.name>> put her hands around my neck and pulled me down for a slow tongue dance before asking, "Can I jerk your big dick off, Daddy?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You don't need my permission babe," I said, pushing my shorts down my thighs.
</p>
</div>
<p class="notation_text"> Ten minutes later, after dropping a healthy dose of white cream on <<print $gf.name>>'s tits, then rubbing my jizz into her breasts and neck.
</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 = 7>>
<<set $eventCount += 1>>
<<set $living.status[3] = 1>>
<<set $living.status[2] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Living Night-->
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/play.gif'">
<p class="notation_text"> My friends called me over to play football the entire day. I prefer tiring my body out with all that running, probably that's why I love having sex as well.
</p>
<p class="notation_text"> I stepped into my living room at night. Dad still lay on the couch with the TV on. <<print $mom.call>> had gone upstairs. I stood above my dad, looking down at him from behind his couch, and my heart started to speed up as I leaned over him and placed my hand on his chest.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Dad?" I asked, shaking him. He didn't stir. "Dad? Dad?" He still didn't stir, just like he hadn't stirred when <<print $mom.call>> had sucked the cum from his balls while he had slept. Holy shit, how much cum had my <<print $mom.rel>> eaten this week? "Dad?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I leaned over, my heart starting to echo between my ears. "Dad," I whispered, "I wish we could share <<print $mom.call>> together." Sweat pushed through the pores along my hairline. "I wish we could double team her." Was I sick? "If you don't wake up right now, I'm going to upstairs and fuck your wife all night long."
</p>
</div>
<p class="notation_text"> Dad didn't stir--thank fucking God!
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Last chance, Dad," I said in a normal tone as my cock thickened and lengthened, ignoring its soreness in favor of the pussy that lay in bed upstairs. "Three... two... one... I'm going upstairs to fuck <<print $mom.call>>"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/sleep.gif'">
<p class="notation_text"> Dad never stirred, even as I dropped heavy footsteps on each stair leading upward. (What was wrong with me?) By the time I reached the second-floor landing, my cock had gained its full size. I went to my room, took off my clothes, gave myself a towel and used my body spray to mask the scent of the Jacuzzi. Then I went to <<print $mom.call>>'s well-lit room. Inside, she lay naked atop the covers of her bed with her hands between her legs. She smiled when she saw me. "What kept my son so long?" <<print $mom.call>> spread her pussy lips for me. "<<print $mom.call>>my's pussy is hungry."
</p>
<p class="notation_text"> It's time to finish the unfinished business this afternoon. And with much astonishment I discovered that I'm getting hard again even after <<print $gf.name>> running all day and got tired.
</p>
<p class="notation_text"> What a lucky bastard I am.
</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 $myroom.status[4] = 1>>
<<set $living.status[3] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- My room Morning-->
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/alarm.gif'">
<p class="notation_text"> My alarm went off at half-past seven in the morning, but I closed my eyes and drifted back to sleep. I spent quite a long time with <<print $mom.call>> last night. Sipping my cock in her softness but didnt let it in as she would stop me right before.
</p>
<p class="notation_text"> We continued massaging the soreness from her pussy and my cock. We kissed with passion, devouring each other and matching our lips to the mellow rhythm of our body as I was sucking her meat thinking of what she did back at the strip clab. Halfway through the night, after <<print $mom.call>> had come again, she whispered, "If you keep this up, your father's in trouble."
</p>
<p class="notation_text"> I laughed. Sometime after that, I went back to my room after leaving the last of my cum on the inner lips of my <<print $mom.rel>>'s pink nipples.
</p>
<p class="notation_text"> So, waking the morning after our session wasn't easy, but after Dad had left for work, the velvet wetness of <<print $mom.call>>'s tongue brushed against my prick. When I tried to rise, she said, "Relax, baby, let <<print $mom.call>>my take care of you." So I relaxed, and <<print $mom.call>> took care of me, then she went to her office to get some work done.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/12.jpg'">
<p class="notation_text"> I spent the morning in bed, wondering how I would tell my <<print $mom.rel>> that <<print $gf.name>> had convinced her father to let us have a sexual relationship. I thought about it, and I thought about it, and I decided that the best way to tell <<print $mom.call>> was to let Mr. Mason tell <<print $mom.call>>
</p>
<p class="notation_text"> I was such a pussy.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck it," I said, getting up just before <<print $mom.call>> was ready to have lunch. "No plan is perfect."
</p>
</div>
<p class="notation_text"> I undressed at lunchtime, walked downstairs, and found <<print $mom.call>> in the kitchen, eating her regular meal of fruits and vegetables. She had dressed in white trimmed, blue soccer shorts with loose leg holes and a cropped white T-shirt.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> She saw me and raised an eyebrow. "I like what I see, but this will take some getting used to." She closed her fingers into fists and shivered. "It's like I'm a teenager again, only this time I know that I'm living in a porno."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Lucky for me," I said, smiling and grabbing my cock and stroking it. I had my phone in my left hand. "I'm going to take some pictures of you. Then I'm going to video you as you masturbate for me, using your new cock." I looked upward and through the ceiling toward her room. "And then,one day, I'm going to fuck you while we watch the video."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/33.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> smiled around an apple wedge. Her cheeks turned pink, and she said, "May I finish lunch first?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Take your time," I said. "I'll be in the living room, jerking off." I half turned away, then looked back at <<print $mom.call>> "Did you remember not to wear panties?"
</p>
</div>
<p class="notation_text"> <<print $mom.call>> slid her left hand to her right leg hole and pulled her shorts to the left. Her bare pussy lips and some of her pubic hairs came into view as she held her shorts to the side, waiting for my approval.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Good girl," I said as goosebumps exploded across my shoulders.
</p>
</div>
<p class="notation_text"> <<print $mom.call>> smiled.
</p>
<p class="notation_text"> I turned and walked away, my heartbeat starting to rise. Holy shit! Where had that come from? Where had any of my behavior come from?
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/13.jpg'">
<p class="notation_text"> It's better to let me do the thinking, my cock said to me. I used my spit to grease my cock, and as I stroked the full length of my member, pulling the neck skin over the head, I promised myself that I'd go and buy some lube. Something warm and soothing that gave a person the tingles. Something I could use on <<print $mom.call>>'s asshole. Would <<print $mom.call>> give it up, even if I made her? That was something <<print $gf.name>> wasn't going to give me until she turned nineteen, so maybe I could make my <<print $mom.rel>> give me hers.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>>'s footsteps sounded to my right. I turned my body to the left and looked at <<print $mom.call>> as she stood behind the couch, still clothed as she said, "I need to get my new toy."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'll wait," I said. "And <<print $mom.call>>"--I licked my lips--"change into some lingerie for me."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>>'s cheeks reddened as her lips widened into a big, teeth-baring grin. "You know, I've bought some for you." She nodded her head, speaking in a rush. "I'll go get it."
</p>
</div>
<p class="notation_text"> She ran off, jogging upstairs as fast as she had spoken.
</p>
<p class="notation_text"> <<print $mom.call>> had bought some lingerie--for me. Online or had she gone out for it? I didn't know, but it wasn't like I was spending all day with her, just most of it. Given <<print $mom.call>>'s horny side, I bet she had lingerie for Dad, too, only more elegant than whatever she planned to wear for me.
</p>
<p class="notation_text"> I was stroking my dick, however, it was time for me to get disappointed. <<print $mom.call>> came downstairs without wearing any sexy lingerie.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/34.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> She was fully dressed to go somewhere. "Your dad called. He's not feeling good and asked me to take him to a doctor. Please sweety, you promised that you won't visit <<print $gf.name>>. I'll be back in no time. Please don't leave the house." <<print $mom.call>> looked panicked and I was feeling awkward standing there naked.
</p>
</div>
<p class="notation_text"> I assured her again that I wouldn't leave the house until she comes back.
</p>
<p class="notation_text"> I went upstairs called <<print $gf.name>> and spend almost half of the day watching <<print $mom.call>>'s videos.
</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 $myroom.status[5] = 1>>
<<set $myroom.status[4] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- myroom morning -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/4/ty.jpg'">
<p class="notation_text"> I was woken up by my <<print $mom.call>>'s phone call in the morning. Come downstairs. Your breakfast is waiting for you.
</p>
<p class="notation_text"> I wasn't even wearing shorts as I slept last night after musterbating. So, I left my room as with any. <<print $mom.call>> wasn't in the living room. I heard a sound from her office room so I waited half lying on the sofa.
</p>
<p class="notation_text"> Stroke me harder, damn it! my cock wailed as an ache ran through my shaft at the sudden, steel-like hardness in my pole that threatened to snap my rod in two. I gave in to what the big guy wanted. <<print $mom.call>> would be downstairs soon, and I planned to masturbate while she fucked her dildo for me. Right after she came, I was going to drop a load of jizz on her beautiful face. The thought made me groan as a bead of glistening precum flowed from my tip.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/d5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $mom.call>> came downstairs ten minutes after I had told her to change. She tossed her dildo next to me on the couch as she stepped into the living, dressed in midnight black lingerie that pressed into her skin, making her appear more muscular than she was. She wore a shelf bra that supported her hard-nippled titties from underneath but left the rest of her breasts bare. Stockings covered her legs to the middle of her thighs, held up by a lacy garter belt around her waist as silver clips kept the four suspenders connected to her stockings' thick welts. As sexy as her lingerie was, the real magic lay between my <<print $mom.rel>>'s thighs.
</p>
<p class="notation_text"> She had put on sheer black panties split down the center by twin strings of pearls that outlined her pretty little pussy lips. They glistened--the pearls and her pinkness, both shiny and bright and as smooth as soft-serve ice cream. <<print $mom.call>> spun for me. I sighed as her mostly naked ass came into view. The back of her panties was nothing more than four straps angled across her cheeks that connected to the gusset that cupped the upper half of her pussy, but left her hole open for fucking. Nothing covered her crack. <<print $mom.call>> spread her cheeks for me, showing off the smooth tightness of her untouched, virgin pucker.
</p>
<p class="notation_text"> She won't be a virgin back there forever, I thought, my mouth watering and my tongue itching for a lick of her backdoor.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/d1.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> "Sexy enough?" <<print $mom.call>> asked as she completed her turn. "Or should I buy something sluttier for you?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"It's sexy enough, <<print $mom.call>>, " I said, stroking my dick for her, "but slutty is always better."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> laughed, then she tugged at her lower lip with her teeth before saying in a resigned if I have to tone, "What are you going to make me do for you now?" <<print $mom.call>> pressed her lips together in thought before speaking again. "Remember, I still have to go back to my office and work."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"Damn," I said. "I keep forgetting that you're a real grown-up."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Would you rather I was a teenager?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>I shook my head, saying, "No," I said, "I'm happy you're my <<print $mom.rel>>."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/d2.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> "What do you want me to do?" <<print $mom.call>> asked, smiling.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"We're going to take some pictures." I wiped my cock-stroking hand on my thigh and grabbed my phone. "Then, you're going to play with your little pussy for me and make it come."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "You nasty, naughty bastard," <<print $mom.call>> whispered. "I love it when you talk dirty to me."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"I wish I knew that when I was younger. It would have been easier for me to talk my way out of trouble."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> laughed, then she tilted her head and uttered in a suggestive whisper, "Maybe."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"Get on the coffee table and spread your pink for me."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/d3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $mom.call>> stepped onto the table, her stocking feet sticking to the glass and her long legs dominating my vision. She looked down as she ran her fingers along the pearl slit guarding her wet crease, then she pulled the pearl curtains aside to show off the golden cunny between her thighs.
</p>
<p class="notation_text"> I snapped a picture, zoomed in, and snapped another, then stepped close for an upward shot. <<print $mom.call>> dipped her fingertips into her folds and pulled them open, and I snapped a picture of her glistening pink butterfly. After several more pictures, <<print $mom.call>> pushed her fingers deeper into her hole, two from each side, and she pulled outward, groaning as she stretched her pussyhole for me.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"So fucking sexy, <<print $mom.call>>, " I whispered, getting a close-up of her glistening pink well. "Does that little kitty love her son's incest-dick?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "God, <<print $mc.name>>," <<print $mom.call>> said, her voice rushed and trembling. "That makes my pussy so fucking wet. See?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"Yeah," I said, taking another picture of her cooze. I moved in close, my nose almost touching the sides of her dewy walls as I took a deep breath. Heat cascaded down my body as <<print $mom.call>>'s flowery scent filled my nostrils, her intoxicants settling in my lungs and driving my precum from my balls. "I can see how wet you are for me. I can smell how much your pussy wants my cock."
</p>
</div>
<div class="enter_button" data-passage="Event_10_1">
<p >Leave</p>
</div>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<!-- Myroom evening -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/mc7.jpg'">
<p class="notation_text"> Jenna wasn't happy at all that she fell asleep on our first night. I was playing a new game that launched yesterday in my room before dinner, and suddenly I smiled, wondering how long I'd be able to keep my incest secret from her. Not forever, my cock whispered, because we want both pussies at the same time.
</p>
<p class="notation_text"> Fuck off, I thought back. I'm a gentleman.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I need to shower, Daddy," <<print $gf.name>> whispered, her breathing causing her tits to swell. "I need to shower so we can fuck tonight and i dont doze off."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sh-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I growled as I turned her toward the shower, dropping my right hand around her side and taking her centaur-ass in my hand, squeezing it hard. So different from <<print $mom.call>>'s ass. There was no such thing as loving one single body type. No fucking way. My preference came in all shapes and sizes: short, plump, tall, slender, hard, soft, skinny--whatever. I liked them all.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'm getting in with you," I said, pushing the sliding glass door open.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Do it," <<print $gf.name>> said as she stepped into the shower. "Taking a shower with my Daddy in his parents' home is so naughty."
</p>
</div>
<p class="notation_text"> I left the door open as I stripped, watching <<print $gf.name>> the entire time, the water splashing against her body and breaking into tiny globes that exploded against whatever they struck. <<print $gf.name>>'s eyes stayed on my body, her ever-present smile widening as my shirt hit the floor and my pants came undone. She nibbled her lower lip as my dick came into view, and her eyes widened as the full, erect size pointed straight at her. She looked like a bird, stunned and looking for an escape, and I didn't blame her. My cock stood hard and proud, like a thick piece of unbendable rebar, swollen and purple with the strain of taking on a Viagra-like stiffness.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I don't think I've ever been this big before," I whispered, leaving out the with you part. <<print $mom.call>> had seen my cock this angry and hungry on more than one occasion, and my <<print $mom.rel>> would again... for the rest of her life.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Your cock looks so yummy," <<print $gf.name>> said with a tremor running through her voice, "but so big, too." I stepped into the shower, my spongy tip pressing into her firm tummy and then sliding upward as I stepped closer to her, the underside pushing against her stomach and the head pointed at her tits. "You can't just ram that dick into me, <<print $mc.name>>."
</p>
</div>
<p class="notation_text"> I laughed.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sh-2.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> "I'm serious!"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I won't," I whispered. "I'll be even gentler than you need me to be."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "You do love me," <<print $gf.name>> said, looking upward into my eyes. She wrapped her arms around my neck, interlocking her fingers as she rubbed her stomach against my cock with swaying, side-to-side motions. "Misty, Sarah, and Katie all said their boyfriends just rammed their cocks into them their first times like it was some apartment-fuck porno scene with a rapist with a camera. I don't want that, <<print $mc.name>>."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'm not going to do that, either." I lowered my mouth, pressing my lips to hers and turning my head, so our mouths slid together. Our tongues met, licked, and traded spit. "I've been doing a lot of research this week, and my cock is going to melt right into your hot, little pussyhole. Okay?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Okay."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Trust me?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "With all my heart," <<print $gf.name>> whispered, her words causing a pleasure-filled chill to race across my shoulders, leaving goosebumps in its wake.
</p>
</div>
<p class="notation_text"> Did <<print $mom.call>> make Dad feel like this?
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "We should hurry," I whispered. "I need to find out if I can reach your heart with my cock."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sh-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Laughter exploded from <<print $gf.name>>'s lips, and I thought, Oh, man, that didn't sound romantic at all. We separated, though <<print $gf.name>> reached down and grabbed my prick, stroking it as I grabbed the body wash, uncapped it, and poured some into my left palm. I sighed as she soothed the ache in my shaft, my cock so hard that it felt numb.
</p>
<p class="notation_text"> I started with <<print $gf.name>>'s face, working my way down to her shoulders and arms, then moving to her tits. I soaped them up as the water continuously washed the lather away. I leaned down and kissed each of her pink nipples before taking them into my mouth one by one. My body continued to move lower, my knees touching the bottom of the tub, leaving my mouth below <<print $gf.name>>'s breasts. She leaned downward, bending at the waist, her perky tits fighting gravity as she fed me her nipple-buds, my tongue licking around them, flicking them, doing its best to bend them before I sucked them into my mouth once again.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, fuck, Daddy," <<print $gf.name>> whimpered. "You're making me so wet. My nipples are--mmm, god--tingling. I feel it in my pussy."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I smiled, then said, "Turn around."
</p>
</div>
<div class="enter_button" data-passage="Event_15_1">
<p >Leave</p>
</div>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<p class="notation_text">
<<print $message>>
</p>
<div id="pos">
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/computer.jpg'">
<p class="notation_text">What should I do now?</p>
</div>
<!-- <div class="enter_button" data-passage="MiniGame" data-setter = "$activityType = 'Morality'; $mediaType = 'image'; $activityImage = 'scenes/misc/porn.gif';" >
<p >Watch Porn!</p>
</div> -->
<!-- <img class="scenes_image" @src="setup.ImagePath+'scenes/misc/hack.jpg'"> -->
<div class="enter_button" data-passage="MiniGame" data-setter = "$activityType = 'Money'; $mediaType = 'image'; $activityImage = 'scenes/misc/hack.gif';" >
<p >Hacking!</p>
</div>
<div class="enter_button" data-passage="MyRoom" >
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<p class="notation_text">
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/5/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>
<!-- -->
<<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 _eventStamina =[$living.stamina[0],$myroom.stamina[0],$myroom.stamina[1],$myroom.stamina[2],$living.stamina[1],
$myroom.stamina[3],$living.stamina[2],$living.stamina[3],$myroom.stamina[4],$myroom.stamina[5],$living.stamina[4],
$myroom.stamina[6],$living.stamina[5],$living.stamina[6],$myroom.stamina[7],$myroom.stamina[8],"Completed"]>>
<<set _eventMomLove = [$living.mom_love[0],$myroom.mom_love[0],$myroom.mom_love[1],$myroom.mom_love[2],$living.mom_love[1],
$myroom.mom_love[3],$living.mom_love[2],$living.mom_love[3],$myroom.mom_love[4],$myroom.mom_love[5],$living.mom_love[4],
$myroom.mom_love[6],$living.mom_love[5],$living.mom_love[6],$myroom.mom_love[7],$myroom.mom_love[8],"Completed"]>>
<<set _eventMomRel = [$living.mom_rel[0],$myroom.mom_rel[0],$myroom.mom_rel[1],$myroom.mom_rel[2],$living.mom_rel[1],
$myroom.mom_rel[3],$living.mom_rel[2],$living.mom_rel[3],$myroom.mom_rel[4],$myroom.mom_rel[5],$living.mom_rel[4],
$myroom.mom_rel[6],$living.mom_rel[5],$living.mom_rel[6],$myroom.mom_rel[7],$myroom.mom_rel[8],"Completed"]>>
<<set _eventMomLust = [$living.mom_lust[0],$myroom.mom_lust[0],$myroom.mom_lust[1],$myroom.mom_lust[2],$living.mom_lust[1],
$myroom.mom_lust[3],$living.mom_lust[2],$living.mom_lust[3],$myroom.mom_lust[4],$myroom.mom_lust[5],$living.mom_lust[4],
$myroom.mom_lust[6],$living.mom_lust[5],$living.mom_lust[6],$myroom.mom_lust[7],$myroom.mom_lust[8],"Completed"]>>
<<set _eventMoney = [$living.money[0],$myroom.money[0],$myroom.money[1],$myroom.money[2],$living.money[1],
$myroom.money[3],$living.money[2],$living.money[3],$myroom.money[4],$myroom.money[5],$living.money[4],
$myroom.money[6],$living.money[5],$living.money[6],$myroom.money[7],$myroom.money[8],"Completed"]>>
<<set _eventMorality =[$living.morality[0],$myroom.morality[0],$myroom.morality[1],$myroom.morality[2],$living.morality[1],
$myroom.morality[3],$living.morality[2],$living.morality[3],$myroom.morality[4],$myroom.morality[5],$living.morality[4],
$myroom.morality[6],$living.morality[5],$living.morality[6],$myroom.morality[7],$myroom.morality[8],"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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/42.png'">
<p class="notation_text"><<print $mom.call>> is here</p>
<<if $talkEvent.pool.count[1] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= ' <<print $mom.call>> and I did some sightseeing and we had a lot of fun just taking in the vibe of the sea.';
$activityType = 'Morality'; $activityVideo = 'scenes/video/mom/5/poot-2-mor.mp4'; " >
<p> Go Beach with <<print $mom.call>> (Moral+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'My hands moved up and slowly peeled the velvet over her beautiful ass - every bit as magnificent as I expected and down her legs. She stepped out and was naked at last. She made to turn round and face me but I kept her facing away and resumed my massaging of her pussy lips and clit. ';
$activityType = 'Love'; $activityVideo = 'scenes/video/mom//5/poot-2-love.mp4'; " >
<p> Give her a massage (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I went to my knees between her legs. She spread open for me, just like she had spread for my dad. Some of her cum was glistening around the opening to her vagina. -- Eat my sloppy cunt. Lick your dad s cum out of me. ';
$activityType = 'Lust'; $activityVideo = 'scenes/video/mom//5/poot-2-lust.mp4'; " >
<p> Your pussy is the best. I wish I were kissing it right now. (Lust+)</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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/31.png'">
<p class="notation_text"><<print $gf.name>> is here</p>
<<if $talkEvent.living.count[1] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I returned my attention to her pussy, my tongue working up through her valley before swirling around and then pressing against her clitoris. I rubbed my tongue firmly against it, feeling her thrusting and squirming beneath my attentions, knowing I was building her quickly toward orgasm. I d learned that if I chose, I could take her to the brink, back off and build her up again and again, but my goal for today was multiple orgasms, not an extended edging.';
$activityType = 'Lust'; $activityVideo = 'scenes/video/gf/5/lrt-2-mor.mp4'; " >
<p> Can't resist, I love the smell of pussy. (Lust+) </p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'She leaned in and I watched as her tongue wetted her lips before they parted to slide down over the head of my dick. I moaned as I was engulfed. <<print $gf.name>> sucked up and down my cock, her tongue working along the underside and flickering around each time it reached the tip. ';
$activityType = 'Love'; $activityVideo = 'scenes/video/gf//5/lrt-2-love.mp4'; " >
<p>I'll show you (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I sat back slightly, and she spread her own legs, hooking them behind her elbows, her knees almost back on the bed beside her, like an upside-down frog. The position presented her stretched pussy and puckered little starfish, both of them glistening with her juices. I used my fingers to tease her as well, having come to discover she enjoyed a bit of penetration during the early stages of her arousal. ';
$activityType = 'Morality '; $activityVideo = 'scenes/video/gf//5/lrt-2-lust.mp4'; " >
<p> So cuuuuute (Moral+)</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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/41.png'">
<p class="notation_text"><<print $mom.call>> is here</p>
<<if $talkEvent.myroom.count[1] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I spoke slowly, so he would absorb every detail. I said, -- She was totally naked. I had pulled off her little socks that she wears. I was holding her bare feet, one in each hand, looking at her. I was tickling the soles of her feet while I was looking right at her pussy. She thought my eyes would bulge out of her head. She was looking at my prick. It was standing up, ready for action, looking for a warm place to hide. ';
$activityType = 'Morality'; $activityVideo = 'scenes/video/mom/5/mrt-2-mor.mp4'; " >
<p> Share details about <<print $gf.name>> with <<print $mom.call>> (Moral+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I curled my fingers to find the G spot and started massaging her insides with my finger tips, increasing the tempo as her breathing increased with her quicker sighs and moans.';
$activityType = 'Love'; $activityVideo = 'scenes/video/mom//5/mrt-2-love.mp4'; " >
<p> I want you so much <<print $mom.call>> (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'Oh <<print $mom.call>>, <<print $mom.call>>, <<print $mom.call>>. What are you doing to me? -- I cried. Now I am pretty good at controlling myself but I was a rank amateur in the face of her excellence. 5 minutes of this, and I was pretty amazed I lasted that long, it was over for me. -- I m coming! She looked at me and doubled her efforts as my cock unleashed a massive spurt of cum down her throat. She pulled me out, just as the second spurt arrived to hit her face. She them put my cock back in her mouth as the third and fourth hit. ';
$activityType = 'Lust'; $activityVideo = 'scenes/video/mom//5/mrt-2-lust.mp4'; " >
<p> Thank you for making your home and body available to me. (Lust+)</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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/40.png'">
<p class="notation_text"><<print $mom.call>> is here</p>
<<if $talkEvent.kitchen.count[3] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'Lovely <<print $mom.call>> though: kind, caring, supportive. ';
$activityType = 'Morality'; $activityVideo = 'scenes/video/mom/5/kit-3-mor.mp4'; " >
<p> Fuck <<print $mom.call>>, you're a tease. (Moral+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= ' This was some kind of special fuck. <<print $mom.call>> was waring her fake dildo and started fucking in my ass.';
$activityType = 'Love'; $activityVideo = 'scenes/video/mom//5/kit-3-love.mp4'; " >
<p> Can you feel me cock? (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= ' <<print $mom.call>> sat down on the bed and opened her legs. She put her hand on her vagina, spreading the lips open to display her glistening pinkness. -- Come over here and eat my pussy, lover man.';
$activityType = 'Lust'; $activityVideo = 'scenes/video/mom//5/kit-3-lust.mp4'; " >
<p> I want you to eat your cunt.(Lust+)</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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/33.png'">
<p class="notation_text"><<print $gf.name>> is here</p>
<<if $talkEvent.myroom.count[2] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'She pulled me along behind her, and I couldn t help but enjoy the sight of her tight little butt as it wiggled along in a skin-tight, extremely short pink skirt. I pushed myself up on her butt and fucked her hard and fast and shortly after, exploded inside her.';
$activityType = 'Lust'; $activityVideo = 'scenes/video/gf/5/mrt-3-mor.mp4'; " >
<p> Please fuck me! (Lust+) </p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= ' Well, if it helps, I m also about to take your perfectly formed cock into my mouth and suck the cum from it,-- she replied, sitting up on the edge of her bed. She followed through on exactly what she d said she d do, taking me into her mouth. I watched her lips sliding up and down my cock. I thrust at her, and she let me slide my entire cock in until it barely nudged the back of her throat. I felt her tongue somehow flutter against my scrotum while she held me inside and groaned.';
$activityType = 'Love'; $activityVideo = 'scenes/video/gf//5/mrt-3-love.mp4'; " >
<p>You're the best! (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'Rick was talking about who on the football team she would like to sleep with, and your name came up. Lizzie told her not to bother. She claimed the two of you hooked up after a game earlier this year, and when she went to blow you, she... and this is just me quoting her here... she said that all she found in your pants was a tiny prick the size of an Ikea pencil. Rick asked what she did, and she claimed to have laughed at you and walked out with your pants still around your ankles. ';
$activityType = 'Morality'; $activityVideo = 'scenes/video/gf//5/mrt-3-lust.mp4'; " >
<p> Tease Her (Moral+)</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">
Location : <<print passage()>></p>
<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>
<div class="button-pair">
<div class="loc_button" onclick="addInventory(50,0,'groceries'); " data-passage="Shop" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/m_bedroom.jpg'">
<p>Buy Groceries ($50)</p>
</div>
<div class="loc_button" onclick="addInventory(200,0,'wine'); " data-passage="Shop" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/m_bedroom.jpg'">
<p>Wine ($200)</p>
</div>
<!-- <<if $mc.inventory.camera == false>> -->
<div class="loc_button" onclick="addInventory(100,0,'porn'); " data-passage="Shop" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/m_bedroom.jpg'">
<p>Porn DVD ($100)</p>
</div>
<!-- <</if>> -->
</div>
<div class="button-pair">
<div class="loc_button" onclick="addInventory(250,0,'gasoline'); " data-passage="Shop" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/m_bedroom.jpg'">
<p>Gasoline ($250)</p>
</div>
<div class="loc_button" onclick="addInventory(70,0,'video_game'); " data-passage="Shop" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/m_bedroom.jpg'">
<p>Video Game ($70)</p>
</div>
<!-- <<if $mc.inventory.camera == false>> -->
<div class="loc_button" onclick="addInventory(150,0,'cleaning_item'); " data-passage="Shop" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/m_bedroom.jpg'">
<p>Cleaning Item ($150)</p>
</div>
<!-- <</if>> -->
</div>
<div class="button-pair">
<div class="loc_button" onclick="addInventory(50,30,'gift_item'); " data-passage="Shop" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/m_bedroom.jpg'">
<p>Gift Item ($50)</p>
</div>
<div class="loc_button" onclick="addInventory(450,30,'camera'); " data-passage="Shop" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/m_bedroom.jpg'">
<p>Camera ($450)</p>
</div>
<!-- <<if $mc.inventory.camera == false>> -->
<div class="loc_button" onclick="addInventory(350,30,'computer_parts'); " data-passage="Shop" data-setter= '$msg = ""'>
<img class="scenes_image" @src="setup.ImagePath+'scenes/home/m_bedroom.jpg'">
<p>Computer Parts ($350)</p>
</div>
<!-- <</if>> -->
</div>
<div class="enter_button" data-passage="Home" data-setter = "$message = ''">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/34.png'">
<p class="notation_text"><<print $gf.name>> is here</p>
<<if $talkEvent.pool.count[0] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'Her hole is soaking wet from the mixture of her saliva and her pussy fluid. She s relaxed enough that the finger slips right in. Her perfect, soft hole clenches around her finger immediately. She closes her eyes and tosses her head back. ';
$activityType = 'Lust'; $activityVideo = 'scenes/video/gf/5/poot-1-mor.mp4'; " >
<p> Maybe you'll have to play with yourself to make up for it. (Lust+) </p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'Her tongue is hot and wet and my dick begins standing up the second I press my open mouth on hers. Even after twelve years together she s still shy about french-kissing. I know it turns her on, but she can t handle it for more than a minute. Not me. I could tongue fuck her slippery mouth for hours if she d let me. ';
$activityType = 'Love'; $activityVideo = 'scenes/video/gf/5/poot-1-love.mp4'; " >
<p> Your wish is granted. (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= ' She s wearing a yellow skirt. Her fingernails are painted res and her hair is perfectly straight except for the small ringlets at the end. -- I m glad you got a facial, you say, because you won t get one from me tonight. -- Oh no, she says smiling.';
$activityType = 'Morality'; $activityVideo = 'scenes/video/gf/5/poot-1-lust.mp4'; " >
<p> Did I look good?. (Moral+)</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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/39.png'">
<p class="notation_text"><<print $mom.call>> is here</p>
<<if $talkEvent.kitchen.count[1] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I was able to start exploring <<print $mom.call>> s stunning body. I could feel her breasts through the velvet and she clearly had no bra on underneath. The cat suit was tight and her breasts were so young and firm they needed no extra support. Her nipples pushed out through the material, clearly highly aroused. There was no access to them other than through the velvet, as he outfit zipped up at the back, with the zip going from her neck to the top of her ass. ';
$activityType = 'Morality'; $activityVideo = 'scenes/video/mom/5/kit-2-mor.mp4'; " >
<p> Ok, boy, let's see what this new thing is all about. (Moral+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= '<<print $mom.call>> is exploring my body, popping a couple of buttons on my shirt to get access to my chest and torso. Her hands were soft but her movements had an urgency to them. She pinched my nipples and squeezed my pecs before moving her hand down my abs. My cock was now rock hard and getting very uncomfortable in my pants. She pulled her hand from under my shirt and tailed her fingers over my bulge, looking at me with lust in her eyes. She leaned forward and whispered in my ear -- That feels very nice <<print $mc.name>>. And all for me. ';
$activityType = 'Love'; $activityVideo = 'scenes/video/mom//5/kit-2-love.mp4'; " >
<p> What have we here? (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'She took a slow long lick from the base to the tip, making sure she licked the pre-cum oozing out. Then slowly back down again. Her fingers squeezing my balls gently, with her nails scratching the underside of the sack. I m starting to moan my pleasure. -- Oh god <<print $mom.call>>, that feels incredible. Oooooooh, yes.';
$activityType = 'Lust'; $activityVideo = 'scenes/video/mom//5/kit-2-lust.mp4'; " >
<p> Suck it, <<print $mom.call>>. (Lust+)</p>
</div>
<<set $talkEvent.kitchen.status[2] = 1>>
<<set $talkEvent.kitchen.status[1] = 0>>
<<set $talkEvent.kitchen.count[1] += 1>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/35.png'">
<p class="notation_text"><<print $mom.call>> is here</p>
<<if $talkEvent.bedroom.count[0] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video'; $activityType = 'Morality';
$activityVideo = 'scenes/video/mom/5/brt-1-mor.mp4'; $taskDialogue= 'Do you want me to tell you what I remember the best?'" >
<p> Watch TV with <<print $mom.call>> (Moral+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video'; $activityType = 'Love';
$activityVideo = 'scenes/video/mom//5/brt-1-love.mp4'; $taskDialogue= 'She spread her pussy lips apart so I could see everything. She rubbed her finger over her clit for me. I had my cock in my hand, rubbing it to be sure it was ready.' " >
<p> Do you want to see my pussy? (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video'; $activityType = 'Lust';
$activityVideo = 'scenes/video/mom//5/brt-1-lust.mp4'; $taskDialogue= ' She rubbed my dick around her pink hole for me. I like it when she do that for me. Her nail scraped over my dick. I wanted and needed to be fucked. She thought about taking my dick in her ass.'" >
<p> Your pussy is the best. (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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/29.png'">
<p class="notation_text"><<print $gf.name>> is here</p>
<<if $talkEvent.kitchen.count[0] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<!-- <div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue = ' '; $activityType = 'Morality'; $activityVideo = 'scenes/video/gf/5/kit-1-mor.mp4'; " >
<p> Now it's your turn. (Moral+)</p>
</div> -->
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue = 'I sucked hard on her clit and swirled my tongue around it. I felt the walls of her pussy pulsating on my fingers. Her ass clenched and I think she started swearing but it wasn t in English. She rocked her hips against my hand, forcing my fingers all the way inside her. Her body stiffened and then heaved more times than I could count. Then she stilled.';
$activityType = 'Lust'; $activityVideo = 'scenes/video/gf/5/kit-1-mor.mp4'; " >
<p> Now it's your turn. (Lust+) </p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue = 'I put my hands out to stop her but she just kept coming at me, not even stopping when my hands filled with her breasts as she grabbed at the waist of my shorts. When I tried to pull my hands back from her breasts, she pulled herself even closer, her hands entangled in my shorts and her breasts pressing up against my t-shirt. I felt my cock growing even harder as suddenly <<print $gf.name>> succeeded in opening my shorts and pulling them down around my knees, my cock bulging in underwear. ';
$activityType = 'Love'; $activityVideo = 'scenes/video/gf/5/kit-1-love.mp4'; " >
<p> Oh, that feels so good. (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue = 'My god! Her ass is spectacular. Her firm, young cheeks curve just enough to make me want to grab a handful and plant kisses all over them. ';
$activityType = 'Morality'; $activityVideo = 'scenes/video/gf/5/kit-1-lust.mp4'; " >
<p> We'll have to talk about it. (Moral+)</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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/32.png'">
<p class="notation_text"><<print $gf.name>> is here</p>
<<if $talkEvent.myroom.count[0] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'Oh yeah, that s the way, <<print $gf.name>> purred in pleasure. I teased at the hole, my tongue flicking back and forth and swirling around while I rubbed at her clit with her thumb. Now her clit again, She moaned after I d licked her for a few moments. --- I wont cum from that, but fuck it feels good. You should definitely remember it as part of the build-up, Look for your girl s hints, don t just dive in there. ';
$activityType = 'Lust'; $activityVideo = 'scenes/video/gf/5/mrt-4-mor.mp4'; " >
<p> Don't stop! (Lust+) </p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I ll go easy on you for a while, I assured her, returning her tongue to my dick and down to my asshole again, my juices having slicked it up. ';
$activityType = 'Love'; $activityVideo = 'scenes/video/gf//5/mrt-4-love.mp4'; " >
<p> Oh baby, that was fantastic. (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I grabbed her hand, leading her into the house. Just before I got to the door she stopped me and faced me and surprised me by kissing me hard, her tongue seeking out my own in my mouth. ';
$activityType = 'Morality'; $activityVideo = 'scenes/video/gf//5/mrt-4-lust.mp4'; " >
<p> Hello Babe. (Moral+)</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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/30.png'">
<p class="notation_text"><<print $gf.name>> is here</p>
<<if $talkEvent.living.count[0] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I swallowed and knelt between her legs, watching closely as she reached to her pussy and gently parted herself. Before I could do anything, she reviewed each part of herself with me, going back over what the diagram had taught. I stared as her detailed every element of her pussy, marvelling in the detail. ';
$activityType = 'Lust'; $activityVideo = 'scenes/video/gf/5/lrt-1-mor.mp4'; " >
<p> You don't mind? (Lust+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'She reached for me and pulled me close enough to grab my jeans, making quick work of the fastenings. She pulled my jeans and boxers down in one motion, my small but erect penis bouncing free.I watched as she took my cock in her hand, encircling it with her thumb and forefinger as she started stroking me. I found myself unable to say anything. I was so horny from the fact she was holding my cock, that I didn t think I was going to last long, but I wasn t about to announce the probability. ';
$activityType = 'Love'; $activityVideo = 'scenes/video/gf/5/lrt-1-love.mp4'; " >
<p>Don't stop it. Let it come out. (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= '-- C mon Scooter, please? She had pleaded with me.I brushed my teeth and used some of Mom s mouthwash and everything. No cooties, I swear. But then she d looked at me seriously and said something that had never even occurred to me back then. I did like she asked, I kissed her. Our young lips merged hesitantly in a tender way for a long moment. Actually, it was kinda nice. ';
$activityType = 'Morality'; $activityVideo = 'scenes/video/gf/5/lrt-1-lust.mp4'; " >
<p> To lure you into my lair? (Moral+)</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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/36.png'">
<p class="notation_text"><<print $mom.call>> is here</p>
<<if $talkEvent.bedroom.count[1] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'What did you like the most? She was probing. She would ask the same question about What I liked the most every time we went somewhere or did something together. This was different though. ';
$activityType = 'Morality'; $activityVideo = 'scenes/video/mom/5/brt-2-mor.mp4'; " >
<p> We should be comfy for what we're going to be doing. (Moral+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I love your tits more than anything. I guess it s the forbidden fruit aspect. Your tits have intrigued me for years. The chance to actually see them was irresistible. ';
$activityType = 'Love'; $activityVideo = 'scenes/video/mom//5/brt-2-love.mp4'; " >
<p> Your breasts are perfect. (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'She saw that I was too big around to fit into her mouth. I made myself slowly get smaller, while softly pushing forward past <<print $mom.call >> s lips. When I got to the right size, she was able to take me further. She loved having her mouth filled with my cock. She sucked and massaged me every way she could think of. I was in heaven. ';
$activityType = 'Lust'; $activityVideo = 'scenes/video/mom//5/brt-2-lust.mp4'; " >
<p> Cum for me!!! (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>>
<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"><<print $mom.call>> is here</p>
<<if $talkEvent.kitchen.count[2] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'Well, you could perhaps kiss me first,-- she giggled and leaned in close to me. I glanced down at her flat lips, glistening with gloss. I wasn't silly enough to miss the cue, and I turned to her enough that I could press my lips to hers. I found her tongue quickly worming its way between my lips and met it with my own, my cock hardening at the sudden turn of events. We kissed for several minutes before breaking, both breathing heavily, our faces flushed from our shared passion. ';
$activityType = 'Morality'; $activityVideo = 'scenes/video/mom/5/kit-4-mor.mp4'; " >
<p> Her body in full view with my hands exploring. (Moral+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I lifted her on my shoulder, pointing my tongue and thrusting it inside my <<print $mom.call>> s wet hole, pushing it in and out. I kept going until <<print $mom.call>> told me to change it up, now to lick her clit. ';
$activityType = 'Love'; $activityVideo = 'scenes/video/mom//5/kit-4-love.mp4'; " >
<p> You are so fucking hot. (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'My tongue felt raw, it was flattened against her clit, and I was rubbing it back and forth, feeling my <<print $mom.call>> buck her hips against my face as I did so. Her fingers grabbed hold of me and held me to her as she came hard, wailing with her orgasm. She pushed my head away and lay back on sofa, her belly fluttering, her whole pussy pulsing with the aftershocks of her ecstasy. ';
$activityType = 'Lust'; $activityVideo = 'scenes/video/mom//5/kit-4-lust.mp4'; " >
<p> Tensing her ass cheeks. (Lust+)</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 = ["<<print $mom.call>> looked sad and jealous","Surprise", "I got close to her",
"Pink's Playground", "Lucky bastard", "Ready for me?","Daddy kisser,"," Unfinished Business",
" I was such a pussy.",
"Sexy enough?","What about the future?","What are you thinking?","Let them go",
"I'm serious!","Are you ready for that?","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 = ["Living", "My Room","My Room","My Room","Living","My Room","Living","Living",
"My Room","My Room","Living","My Room","Living","Living","My Room","My Room","Completed"]>>
<<set _eventQuestTime = [$living.time[0],$myroom.time[0],$myroom.time[1],$myroom.time[2],$living.time[1],
$myroom.time[3],$living.time[2],$living.time[3],$myroom.time[4],$myroom.time[5],$living.time[4],
$myroom.time[6],$living.time[5],$living.time[6],$myroom.time[7],$myroom.time[8],"Completed"]>>
<<set _eventMoney = [$living.money[0],$myroom.money[0],$myroom.money[1],$myroom.money[2],$living.money[1],
$myroom.money[3],$living.money[2],$living.money[3],$myroom.money[4],$myroom.money[5],$living.money[4],
$myroom.money[6],$living.money[5],$living.money[6],$myroom.money[7],$myroom.money[8],"Completed"]>>
<<set _eventMorality =[$living.morality[0],$myroom.morality[0],$myroom.morality[1],$myroom.morality[2],$living.morality[1],
$myroom.morality[3],$living.morality[2],$living.morality[3],$myroom.morality[4],$myroom.morality[5],$living.morality[4],
$myroom.morality[6],$living.morality[5],$living.morality[6],$myroom.morality[7],$myroom.morality[8],"Completed"]>>
<<set _eventTitle = [$living.title[0],$myroom.title[0],$myroom.title[1],$myroom.title[2],$living.title[1],
$myroom.title[3],$living.title[2],$living.title[3],$myroom.title[4],$myroom.title[5],$living.title[4],
$myroom.title[6],$living.title[5],$living.title[6],$myroom.title[7],$myroom.title[8],"Completed"]>>
<<set _eventStamina =[$living.stamina[0],$myroom.stamina[0],$myroom.stamina[1],$myroom.stamina[2],$living.stamina[1],
$myroom.stamina[3],$living.stamina[2],$living.stamina[3],$myroom.stamina[4],$myroom.stamina[5],$living.stamina[4],
$myroom.stamina[6],$living.stamina[5],$living.stamina[6],$myroom.stamina[7],$myroom.stamina[8],"Completed"]>>
<<set _eventMomLove = [$living.mom_love[0],$myroom.mom_love[0],$myroom.mom_love[1],$myroom.mom_love[2],$living.mom_love[1],
$myroom.mom_love[3],$living.mom_love[2],$living.mom_love[3],$myroom.mom_love[4],$myroom.mom_love[5],$living.mom_love[4],
$myroom.mom_love[6],$living.mom_love[5],$living.mom_love[6],$myroom.mom_love[7],$myroom.mom_love[8],"Completed"]>>
<<set _eventMomRel = [$living.mom_rel[0],$myroom.mom_rel[0],$myroom.mom_rel[1],$myroom.mom_rel[2],$living.mom_rel[1],
$myroom.mom_rel[3],$living.mom_rel[2],$living.mom_rel[3],$myroom.mom_rel[4],$myroom.mom_rel[5],$living.mom_rel[4],
$myroom.mom_rel[6],$living.mom_rel[5],$living.mom_rel[6],$myroom.mom_rel[7],$myroom.mom_rel[8],"Completed"]>>
<<set _eventMomLust = [$living.mom_lust[0],$myroom.mom_lust[0],$myroom.mom_lust[1],$myroom.mom_lust[2],$living.mom_lust[1],
$myroom.mom_lust[3],$living.mom_lust[2],$living.mom_lust[3],$myroom.mom_lust[4],$myroom.mom_lust[5],$living.mom_lust[4],
$myroom.mom_lust[6],$living.mom_lust[5],$living.mom_lust[6],$myroom.mom_lust[7],$myroom.mom_lust[8],"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 -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/18.jpg'">
<p class="notation_text"> I woke up an hour and a half before Dad was supposed to be home. <<print $gf.name>> had texted me, giving me a time to meet her at her house so her father could discuss the future of our sex lives with my parents. It made me laugh. That would have felt weird a week ago, but now, the thought of talking to our parents about my sex life didn't even make me blush.
</p>
<p class="notation_text"> I found my <<print $mom.rel>> in the pool, swimming, and when she saw me standing in the sliding, glass patio doorway, she swam to the stairs, stood, walked out with water dripping from her sun-gold skin. She headed into the house, saying, "I need a shower. Do you want to dry me off?"
</p>
<p class="notation_text"> Fuck, I thought, I hope I have enough dick left for <<print $gf.name>> tonight.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/l1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Upstairs, for the next hour, I spent my time kissing my <<print $mom.rel>> between her legs, licking the insides of her thighs, then slow-feeding my tongue into her pussy while she held onto my ass with her legs drawn up and her knees bent to the sides.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>I told her how tight her pussy was and how hard she made me and asking her: "Why does your pussy get so wet for your son? Huh, <<print $mom.call>>, why's your little kitty so bad for me?"
</p>
</div>
<p class="notation_text"> Whenever I mentioned our <<print $mom.rel>>/son relationship, <<print $mom.call>> closed her eyes and released a deeper moan, as if my words had brought her as much pleasure as my cock. We showered together, dried off, and I waited for Dad to come home so I could walk into the living, stand in front of the left side couch that we never used,
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/19.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>and say, "<<print $mom.call>>, Dad: <<print $gf.name>>'s parents would like to talk to you tonight at six. It's about the future of my relationship with <<print $gf.name>>."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "What about the future?" <<print $mom.call>> asked.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I shrugged, saying, "Dunno, but I'm sure it has to do with sex."
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character"><<print $dad.call>>: </span> Dad shook his head and said, "You know, when I had you, I thought to myself, 'I can't wait for the day that I can broker the deal for my son's virginity." He laughed, smiling to himself. "You are a virgin, right? If you're sleeping with <<print $gf.name>> despite the warnings, what's the point?"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/20.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $gf.name>> and I are virgins," I said, trying to keep a straight face. "If I were going to cheat, I'd have to love that woman even more than I love <<print $gf.name>>."
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character"><<print $dad.call>>: </span> Dad blew out his lips and mumbled, "Teen bullshit."
</p>
</div>
<p class="notation_text"> <<print $mom.call>> stared at me, straight-lipped but not flat-faced. Her cheeks held a little color while amusement rippled beneath her expression, coming to life in her green eyes as a twinkle of light.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Sure," <<print $mom.call>> said, her tone disguising whatever it was she was thinking. "Six. Let him know we'll be there."
</p>
</div>
<p class="notation_text"> I nodded and went upstairs, texting <<print $gf.name>>.
</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 = 12>>
<<set $eventCount += 1>>
<<set $living.status[5] = 1>>
<<set $myroom.status[6] = 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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/37.png'">
<p class="notation_text"><<print $mom.call>> is here</p>
<<if $talkEvent.bedroom.count[2] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I pushed one and then two fingers into her soaked pussy and she grunted at the welcome invasion. It was so easy with so much juice. '; $activityType = 'Morality'; $activityVideo = 'scenes/video/mom/5/brt-3-mor.mp4'; " >
<p> Give her rosebud a gentle massage. (Moral+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I moved toward her and she felt the tip of my prick touch her ass. I rubbed my cock against her ass, flicking it back and forth over her little button. I was so hot. Her pussy was beautiful. She needed that cock inside her.'; $activityType = 'Love'; $activityVideo = 'scenes/video/mom//5/brt-3-love.mp4'; " >
<p> You know exactly where and how to touch me, <<print $mc.name>>. (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'She rubbed my boner against her pussy lips. I was almost drooling. She likes the feel of my cock pressed against her pussy lips. '; $activityType = 'Lust'; $activityVideo = 'scenes/video/mom//5/brt-3-lust.mp4'; " >
<p> That feels very nice (Lust+)</p>
</div>
<<set $talkEvent.bedroom.status[0] = 1>>
<<set $talkEvent.bedroom.status[2] = 0>>
<<set $talkEvent.bedroom.count[2] += 1>>
<<set $bedroomTalk = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/43.png'">
<p class="notation_text"><<print $mom.call>> is here</p>
<<if $talkEvent.pool.count[2] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= ' <<print $mom.call>> and I got on well, so swimming with her was a pleasure.';
$activityType = 'Morality'; $activityVideo = 'scenes/video/mom/5/poot-3-mor.mp4'; " >
<p> Swim with her <<print $mom.call>> (Moral+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'My cock resting in the crack of her perfect ass, she wriggled it to let me know she felt it. I may suck you later but for now, let s clean up yourself gorgeous man.';
$activityType = 'Love'; $activityVideo = 'scenes/video/mom//5/poot-3-love.mp4'; " >
<p> Taste It! (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= ' It was the sheer suction power she was getting that blew me away. <<print $mom.call>> had a technique I had never experienced before, or since. It was overpowering, magical, fucking sexy and I was all in just holding on to what was happening.';
$activityType = 'Lust'; $activityVideo = 'scenes/video/mom//5/poot-3-lust.mp4'; " >
<p> My god, that feels good. (Lust+)</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>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/38.png'">
<p class="notation_text"><<print $mom.call>> is here</p>
<<if $talkEvent.living.count[2] gt 0>>
<p class="notation_text">Should I change my mind?</p>
<</if>>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'You are so beautiful <<print $mom.call>>. Every part of you. Every fold, every hollow, every curve. '; $activityType = 'Morality'; $activityVideo = 'scenes/video/mom/5/lrt-3-mor.mp4'; " >
<p> Hello <<print $mom.call>>! (Moral+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= 'I pushed one and then two fingers into her soaked pussy and she grunted at the welcome invasion. It was so easy with so much juice. '; $activityType = 'Love'; $activityVideo = 'scenes/video/mom/5/lrt-3-love.mp4'; " >
<p> Oh baby, that was fantastic. (Love+)</p>
</div>
<div class="enter_button" data-passage="MoneyGame" data-setter = "$mediaType = 'video';
$taskDialogue= '<<print $mom.call>> pulled herself up to meet my face and we kissed passionately. Welcome to home she said. I hope you will be very happy here tonight. '; $activityType = 'Lust'; $activityVideo = 'scenes/video/mom/5/lrt-3-lust.mp4'; " >
<p> Don't stop! (Lust+)</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>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/lick-18.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> After several minutes of teasing her pussy, <<print $mom.call >> lowered her right hand to mine and pulled my fingers over her cunny, forcing me to cup her clam. She used her middle fingers to push my middle finger into her pussyhole, then she stroked my finger, guiding me in and out of her channel by feel. Her left hand found my left hand, and she pulled my fingers to her pussy as well, only now she had me settle my digits on her clit, and together, as <<print $mom.rel>> and son, we masturbated her pussy while she rode the length of my cock with long strokes of her damp, naked ass.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Oh, god," I moaned, still holding her pussy, still pressing my lips against her shoulder. I could taste her lotion and smell hints of vanilla beneath the floral thickness of her cunny's perfume.
</p>
</div>
<p class="notation_text"> My <<print $mom.rel>>'s ass made my cock tingle through my shorts. I pushed my fingers into her hole, her tightness still surprising me, and her wetness thrilled me. She had soaked my lap, and my shorts lay wetly against my knob, plastered to them as if I had spilled a bottle of scented oil over my cock. <<print $mom.call >>'s clit, a rubbery ball of tender flesh, felt thicker than before. I swished and rolled her pearl around her upper lips as I let her hands teach me how to make her pussy sing.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/lick-20.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> We played like that for some time--<<print $mom.call >>, sitting in my lap, her feet braced against mine, her legs taut with strain while I played with her cunnyhole and rubbed her clitty, humping my cock up against her ass. <<print $mom.call >>'s moans grew louder, as did mine. Her pussy tightened, despite the cream dripping from her wet channel. My cock strained, aching, and seeking a way to tear through my shorts and push its blunt head into the beauty of my <<print $mom.rel>>'s softness. I nibbled her shoulder, and she hung her head as I bounced her on my lap, taking her for a gentle pony ride in the morning.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Oh, god, oh, god, oh, god," <<print $mom.call >> whimpered after some time had passed, the pitch of her voice rising and her fingers guiding mine over her clit, moving faster in a circular motion that gently ground her pearl against her pubic bone. "Oh, god, <<print $mc.name>>--oh, <<print $mc.name>>, oh!"
</p>
</div>
<p class="notation_text"> As she cried out my name, her entire body stiffened, and yet I could sense the energy that she was about to release through the cymbal-like vibrations running through her core. My balls tightened as her pussy walls clamped down on my fingers, and my knob swelled as the first stream of cum filled my shaft, bringing with it a river of pleasure.
</p>
<p class="notation_text"> <<print $mom.call >> came--hard! She shook and trembled, her body dancing with a serpent-like wave from her head down to her toes as she ground her ass and cum-dripping pussy over my cock. My body tensed, my thighs flexing, my cock swelling. I pressed my feet against the floor and pushed my hips forward, lifting my ass and driving my cloth-covered prick into the naked wetness between my <<print $mom.rel>>'s legs. We came together, drenching each other in cum, our juices soaking through my shorts and staining both of our bodies.
</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 whimpered as my cock continued to twitch.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>, oh, <<print $mc.name>>... <<print $mc.name>>," <<print $mom.call >> whined, her voice growing faint.
</p>
</div>
<p class="notation_text"> I tightened my grip on her pussy, and she tightened her hands over mine, holding me against her cunny as though she could brand my touch upon her sex.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/finish-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $mom.call >> spoke several minutes later as she got up to leave the room. "I'll see you again in a few hours," <<print $mom.call >> said. "I have to go to work. Remember your promises."
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Remember yours," I called back, turning to watch <<print $mom.call >>'s butt bounce up the stairway.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call >> stopped halfway up the staircase. I had a clear view of her ass, and with her left foot on the stair above her right foot, I could see the entire divide running the length of her pussy to the top of her ass. She turned her head toward me, looking down over her bare shoulder, and she asked, "Or else you're going to <<print $gf.name>>?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I said, but only because something in her voice drew that word from my lips.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I guess I have no choice," <<print $mom.call >> said, and she continued upstairs with a lighter spring in her step.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.rel>>fucker," I whispered after <<print $mom.call >> had disappeared. "Maybe I can stay away from <<print $gf.name>> for the next couple of years."
</p>
</div>
<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[5] = 1>>
<<set $bedroom.status[2] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Living Evening -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/9.jpg'">
<p class="notation_text"> The front door to <<print $gf.name>>'s house opened as I led the way up the stairs to her home. My girlfriend appeared at the threshold with a smile on her face. She had dressed in a white shirt and short black shorts, her long legs and thick thighs as golden as my <<print $mom.rel>>'s. I smiled, stepped to her, and hugged her before she could speak.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "It feels like forever," I whispered to her.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I know," she whispered, then stepped back to say, "Hello Mrs. and Mr. Hornsby. My parents are relaxing in the living room."
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Charles: </span> We entered the house and followed <<print $gf.name>> to her parents, where after our hellos, Charles said, "<<print $mc.name>>, I know you're an adult, but I'd like to talk to your parents in private for a few minutes."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Sure," I said, smiling.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/10.jpg'">
<p class="notation_text"> His eyes focused on my smile, and I could read the thoughts swimming behind them. I can't believe this shit is happening, they thought, along with some mumbled curses for his daughter and me.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Let's go to my room," <<print $gf.name>> said, smiling and grabbing my hand. Her eyes were bright and behind them tumbled thoughts that were nothing like her father's.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Mr. Mason: </span> "You two can wait out front," Mr. Mason said. "This shouldn't take long."
</p>
</div>
<p class="notation_text"> I nodded.
</p>
<div class="enter_button" data-passage="Event_13_1">
<p >Leave</p>
</div>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<!-- Living Afternoon -->
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/car-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text character">
<p><span span class = "character">Dad: </span> "All right, you two," Dad said as soon as we entered our house. "Whatever you do up there, I want you to keep it down during tonight. Don't feel like you have to go all the way--"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "--Dad--"
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Dad: </span> "--just because you can." Dad looked at <<print $mom.call>> "You know what; I'm going to take a pill and have a drink or two. Do you want a pill?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "You're still having sleeping problems, Mr. Hornsby?" <<print $gf.name>> asked.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Dad: </span> "Some nights more than others," Dad said. "Deb, do you want a pill?"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/2/mom45.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> sighed and said, "Sure." Her eyes slid toward me. "Why not?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I tried to will some reassurance into my <<print $mom.rel>>'s mind as I said, "Come on, <<print $gf.name>>, let's go upstairs."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Bye," <<print $gf.name>> said to my parents, waving for some reason.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Dad: </span> "Hey," Dad said, not quite looking at us. "Stick to <<print $mc.name>>'s side of the upstairs, and when either you leave your room, you do so fully clothed."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Let them go," <<print $mom.call>> said, sighing.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/19.png'">
<p class="notation_text"> I grabbed <<print $gf.name>>'s right hand and pulled her away. She wore a big smile the entire way to my room. She opened the door for us, and I tossed her backpack onto my bed, then I shut the door behind me and locked it.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Do you want to see a magic trick?" I asked.
</p>
</div>
<p class="notation_text"> <<print $gf.name>> giggled and slapped my chest.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'm going to make my dick double in size."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "You pervert." <<print $gf.name>> put her arms around my neck and pulled me down for a long meeting of our tongues. "Guess what?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "What?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "We don't have to use condoms."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I raised my eyebrows. "I love you, but I'm not ready to be a father."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/20.png'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "That's not what I mean," <<print $gf.name>> said, laughing. "<<print $mom.call>> took me to the doctors a few weeks ago, and we got a prescription for birth control. <<print $mom.call>>'s been my age too, and Dad wasn't her first. I've been on it for two weeks."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Why didn't you tell me?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I wanted it to be a surprise." <<print $gf.name>> smiled. "We're gonna tell my dad soon. I'm going to give the condoms to our friends."
</p>
</div>
<p class="notation_text"> I laughed.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "So you can fuck me bareback," <<print $gf.name>> said; her words were soft and coy. "I need to get ready for you. Give me ten minutes."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Get ready?" I kissed her again. "What are you going to do?"
</p>
</div>
<div class="enter_button" data-passage="Event_14_1">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/shower.webp'">
<p class="notation_text"> I took another shower, and went back downstairs. It was early, but I was no less horny. I spent the next two hours watching porn in the living room--I didn't bother turning down the sound. What would <<print $mom.call>> think of that? My cock loved it, and I did something that I never thought I'd be able to do--I didn't touch myself. Instead, I stripped down naked and sat in the living room, enjoying the crisp, air-conditioned breeze. My cock felt bigger and more sensitive, and a chill danced over my skin as I imagined <<print $mom.call>> coming downstairs and finding me naked.
</p>
<p class="notation_text"> Too far too soon?
</p>
<p class="notation_text"> I didn't know, but I had my shorts and shirt nearby, just in case. It didn't matter because sitting naked and watching porn in my <<print $mom.rel>>'s living made me tingle all over. I had some energy to burn, and by the time my phone buzzed with a text from <<print $mom.call>>, my body wanted to run through walls and jump over houses.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/4/msg.jpg'">
<p class="notation_text"> I grabbed my phone and checked the text. <<print $mom.call>> had sent, Can you bring an apple, a bottle of water, and a banana to my office. Thank you.
</p>
<p class="notation_text"> I stood, still naked, still hard, and I gr abbed my shorts and pulled them on, but I left my shirt off. A little at a time. I had so much left to do with my <<print $mom.rel>>; suck on her tits, a handjob, a blowjob, titty-fucking, everything I had seen in porn, and kissing. My heart swelled with that last thought. Kissing my <<print $mom.rel>> would be so... forbidden. Kissing was something I could do with my <<print $mom.rel>> in public, for everyone who didn't know us to see. Oh, fuck, my imagination was going to be the death of me. I jog-ran to the kitchen, collected <<print $mom.call>>’s stuff, then hurried upstairs and down the hallways to her office. I knocked on the door once before I pushed it open and stepped inside with everything--including my phone--in my hands.
</p>
<p class="notation_text"> The sight that greeted me forced a hungry moan from my throat. <<print $mom.call>> had her curtains open, and sunlight shined across her naked body. She sat in her leather swivel chair, with her left leg crossed under her right--the leg closest to me--and she was leaning backward, as naked as a woman can be. Her almost small breasts drew my eyes, capped by flavorful pink nipples that deserved to be the toppings on two scoops of peach sherbet. After clicking her mouse several times, she sat back and turned her chair toward me, giving me the full view of the hairs between her legs and the upper half of her pussy. Below, the rest of her cunny rested against her leather seat.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/sed-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Thank you for bringing me my lunch," <<print $mom.call>> said. Her eyes traveled over my upper body, lingering on my chest and abs, then dropping to my tented shorts, where she released a heavy sigh. "Did you come up here expecting more from me today?"
</p>
</div>
<p class="notation_text"> I walked forward.<<print $mom.call>> slid her small butt up her chair, far enough forward that her pussy hung over the edge, but not her asshole. <<print $mom.call>>’s tone sounded rushed. Her breathing had turned heavier, and I heard the tremor of excitement in her voice, like a nervous person trying to give a speech. Her pink nipples stood thick and hard atop her tits, puckered to what had to be soreness. I wanted to suck them so much.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yes," I said, flexing my cock.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>>’s eyes widened, then narrowed, and she said, "May I eat my lunch first?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yes." I stepped into her office to hand her her things. "I'll take pictures while I wait." As she took her food, I looked at her computer screen. She had none of her work windows open, but filling her monitor was the picture of an oiled-up, naked young man who looked around my age. He had a big, big cock--about as big as mine--and he was doing curls in a gym while a sweating MILF about <<print $mom.call>>’s age knelt in front of him. She held his balls in one hand and his rock-hard cock in the other. The caption at the bottom of the picture read <<print $mom.call>> & Son: Pumping Iron, and there was a paragraph-sized story in the corner of the picture, but I had no chance to read it.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/sed-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Holy shit.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Thank you,"<<print $mom.call>> said, swiveling her face to her computer again as I backed away. I didn't miss the smile on her face as she bit into her apple.
</p>
</div>
<p class="notation_text"> For the next five minutes, I watched my <<print $mom.rel>> eat her apple, listening to the crunch of her pearly whites against its porous body. She drank her water between bites, tilting her chin upward and arching her back, forcing her titties high as rays of light sparkled against her pink nubs. I took several pictures as I stood by the door, but mostly I watched her mouth open and close and her throat pulse with each swallow.
</p>
<p class="notation_text"> Sexy, I thought.
</p>
<p class="notation_text"> When she peeled her banana and slipped the long, white length past her lips, I thought, She'd have a tougher time with me. I took several pictures of her with the banana between her lips, a smile pulling at her mouth. Once, before the banana could reach her,<<print $mom.call>> slipped her tongue out and rested the banana atop it before pulling it into her mouth.
</p>
<p class="notation_text"> After she had finished her meal, the apple core and the banana peel went into her small, desk-side trashcan. She grabbed her water, drank some, and swished it around her mouth before swallowing. Then she drank some more before setting her water down next to a tin of mints.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/sed-6.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> <<print $mom.call>> looked at me as she asked in an almost flat voice, "So, what do I have to do to keep you from being sexual with <<print $gf.name>> today?"
</p>
</div>
<p class="notation_text"> Today? The smart ass in me wanted to remind my <<print $mom.rel>> about this morning, but then I looked at <<print $mom.call>>’s monitor, and the MILF on her knees made my dick pulse.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $gf.name>> promised me," I said, "that if I saw her today, she'd let me lick her titties."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Titties,"<<print $mom.call>> said, shaking her head. "The way you teenagers talk. Titties." She turned her head toward me. "Is that what you like? Titties?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I like <<print $gf.name>>'s titties," I said as a chill tickled my spine. "I like your titties. If I can't suck yours"--I shrugged as an anxious light entered <<print $mom.call>>’s eyes--"I'll have to suck <<print $gf.name>>'s."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "If I have no choice but to let you,"<<print $mom.call>> whispered, grabbing her mouse and opening one of her desktop folders.<<print $mom.call>> looked through her pictures, opening one of a young man sucking on a slender MILF's big tits. "Then, I have no choice."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You don't," I whispered.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/sed-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> She sat with her feet on the table and her knees spread. I followed the line of her thighs to her pussy, then up her flat stomach with its long muscles running up the center to her breasts. Her nipples looked harder than before.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> licked her lips and said, "Well, get on with it, <<print $mc.name>>. I still have to finish my work."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Okay," I said.
</p>
</div>
<p class="notation_text"> I knelt as I approached her, and she spread her knees wide, opening her cunny lips as well as her thighs. My fingertips tingled. They remembered the feel of her muffin.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/sed-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $mom.call>>’s office table was high, but even on my knees, I stood eye to eye with her. I pushed forward, my cloth-covered knob bumping into her pussy, and she inhaled sharply as her hips jerked back and her shoulders straightened. A loan sounded in the back of her throat, and she looked at me with closed lips as heavy breaths fell from her nostrils. The depth of my <<print $mom.rel>>'s gaze almost stopped my heart with its intensity. Where were those tears from last night? Today, all I saw was hunger.
</p>
<p class="notation_text"> I didn't try to kiss my <<print $mom.rel>> when I moved forward. She turned her head to the side, giving me room to lower my mouth to her right breast. There were several strands of hair covering her perky peach, and I brushed them aside with my left hand. My fingertips feathered her skin, and small goosebumps rose where they passed. I lowered my mouth to my <<print $mom.rel>>'s tit. She grabbed onto the arms of her chair, her knuckles turning white as I opened my mouth and fastened my lips around her thick nipple and perfectly round areola.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Ah,"<<print $mom.call>> moaned, pushing her chest forward.
</p>
</div>
<p class="notation_text"> I sucked, my cheeks caving in as <<print $mom.call>>’s nipples stretched beyond my lips. I pushed my tongue against its underside, forcing the nub to the roof of my mouth as I licked around its bottom. As I sucked, my hands came up, acting on instinct. I took my <<print $mom.rel>>'s left breast in my right hand, capturing the bottom of it in the curve between my thumb and forefinger. My left hand did the same to her right tit, and I squeezed them at the same time, forcing her nipples upward and swelling them under the pressure of my grip.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Oh, fuck," <<print $mom.call>> whisper-hissed, turning her head forward and speaking her words of pleasure into my ear.
</p>
</div>
<div class="enter_button" data-passage="Event_20">
<p >Continue</p>
</div>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/tit-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I sucked harder, licking her nipple, then pulling back and nipping at it. <<print $mom.call>>’s body jerked. She spread her knees wider, arching her back as much as she could and forcing more of her breast into my mouth. She started to move, her body undulating forward and back as her butt ground against the edge of the seat, like a woman in desperate need of a piss.
</p>
<p class="notation_text"> My <<print $mom.rel>>'s breast tasted of vanilla, and it was slick with my spit and smooth with her body lotion. I released her nipple, kissing my way to her other tit while squeezing her right breast again as I pinched her nubs between my thumbs and forefingers. <<print $mom.call>> moaned as I pulled and twisted her puckered flesh with my fingers, and when I closed my mouth over her left tit, swallowing half her breast as though I were some giant, she released a high-pitch whimper that coaxed a healthy dose of precum from my balls.
</p>
<p class="notation_text"> <<print $mom.call>>’s loud moans, coupled with her wiggling, drove me to greater speeds. I tightened my grip on her tits, forcing another whimper from her throat as I coned them outward for my mouth. I tasted one, then the other, then the other, then the other, licking and sucking, nipping and biting and pulling on her nipples without mercy. <<print $mom.call>>’s wiggled her ass harder, faster, and she let go of the chair's arms and placed her hands on my shirtless body.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/tit-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> She rubbed my ribs, my back, and my shoulders, digging her short nails into my skin and sending spasms through my flesh. As I sucked on her right tit, I dropped my right hand to her pussy, cupped her, squeezed her, collecting her pussy juices before I brought my hand back up, painting her breast with her silky cream. I switched breasts, tasting her pussy juices on my tongue, and I dropped my left hand to her cunny, taking her soft warmth into my palm.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Oh, oh, oh," <<print $mom.call>> whined, her voice rising in pitch as she rocked her pussy on my digits. I stiffened them as she pulled her ass back, and on her return grind, my finger pushed past her inner lips and filled her tiny fuck-hole to the last knuckles, forcing a surprised, throaty grunt from her lungs.
</p>
</div>
<p class="notation_text"> I continued to suck on <<print $mom.call>>’s tits while finger-fucking her twat, going as deep as I could while gathering her juices with my free hand and spreading her honey across her perky tits. When <<print $mom.call>>’s whimpers turned high and whiny, shooting out of her mouth at a rapid-fire pace, I thumbed her clit, finding her pretty little jewel on the first try and swishing her pearl with side-to-side motions. <<print $mom.call>> lost it, digging her fingers into my shoulders as her cunny muscles tightened around my digits, and she came, covering my fingers in a wash of hot, wet, creamy cum.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call>>," I whispered, petting her pussy lips from her clit to the bottom of her slit. "After I make <<print $gf.name>> come, she always makes me come." I pressed my thumb against her pleasure-nub and turned it in a shallow circle, making her shiver. "If you want to keep <<print $gf.name>> from making me come today, then you're going to have to take her place."
</p>
</div>
<p class="notation_text"> <<print $mom.call>> dropped her forehead to my right shoulder.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "No choice," I whispered.
</p>
</div>
<p class="notation_text"> <<print $mom.call>> opened her mouth, sliding her teeth over my skin, and then she bit my shoulder.
</p>
<p class="notation_text"> I trembled.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Stand up," <<print $mom.call>> whispered against my body. "Since you're giving me no choice."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/bj-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I stood, pushing myself up with my right foot. As I rose, <<print $mom.call>>’s fingers dug into my flesh, my upward momentum dragging my chest and abdominals against her touch. She wasn't gentle. The sensation of her nails bending my nipples tightened my balls, and I released a moan that made <<print $mom.call>> curl her fingers harder into me. After I stood,<<print $mom.call>> pressed her forehead against my stomach as she pushed her fingers into the waistband hugging the cut of my hips, and pulled my shorts down my thighs.
</p>
<p class="notation_text"> My cock, so hot and hard, tingled as the coolness of my <<print $mom.rel>>'s office touched its skin. My trimmed pubic hairs stood on end, and as my waistband slid down the length of my shaft, <<print $mom.call>> uttered a hungry, mmm sound from deep within her throat. My shorts cleared my knob and fell to the floor without further aid. She placed her hands on my hips and held me tight.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I knew you'd be big,"<<print $mom.call>> whispered, her breath falling around the base of my shaft. "You're a big boy, <<print $mc.name>>. My big son." She sounded proud. "Are you really going to make your <<print $mom.rel>> swallow this whole thing--"
</p>
</div>
<p class="notation_text"> I moaned.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "--because that's what <<print $gf.name>> does for you?"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/bj-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> had yet to suck me off. She had jerked me off. She had let me rub my cock on her yoga pants and the tip against her squishy muff until I came. She had dry humped me until I had filled my shorts with cum, but <<print $gf.name>> had yet to take my cock into her mouth. She had wanted to do that on the same night I took her virginity. So what I said to my <<print $mom.rel>> was....
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah, that's what she does for me."
</p>
</div>
<p class="notation_text"> A slight, amused hum washed over the base of my cock. I still couldn't figure out how my <<print $mom.rel>> knew when I was lying, but she did.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "She's a bad girl for an eighteen-year-old,"<<print $mom.call>> whispered, her head lowering and her breath getting hotter across my skin. "I didn't suck your father's cock until I was eighteen... and a half."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/bj-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> She sounded apologetic.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I was young once, baby."<<print $mom.call>> slid her right hand down my thigh and around my knee. I shivered. "But your father and I were better than you at not getting caught." Her fingers brushed my knee cap, and she turned her palm inward, raising her hand and sliding the backs of her fingers up my inner thigh. Goosebumps and a chill raced across the surface of my skin. "But we still could have gotten into trouble. We know that now."<<print $mom.call>> turned her hand again, and my balls constricted. "That's why I have to do this for you, isn't it?" She cupped my balls. "So, you don't get into trouble."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call>>," I moaned in a trembling voice, nearly coming as my <<print $mom.rel>> rolled my nuts in her hand, then stretched my taut sack before rolling my nuts again. My glans came to life as pleasure warmed my nerve endings. I was going to come--and so fucking soon.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Your cock really is virgin, isn't it?"<<print $mom.call>> asked, her next breath traveling the length of my shaft and glossing over my knob. "Does <<print $gf.name>> at least jerk this monster off, baby?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yes," I gasped, telling the truth. "She jerks me off."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "But she's never done this--umm."
</p>
</div>
<div class="enter_button" data-passage="Event_21">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/bj-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $mom.call>> closed her lips around my knob, resting the underside of my glans on her wet tongue. Warm, slippery saliva bathed my cockhead, causing my prick to flex and throb. My balls spewed out a hot rope of precum that<<print $mom.call>>gulped down with a loud mmm-mmm-mmm sound followed by a wet slurping sound as she pulled more of my meat into her mouth.
</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 moaned, placing my hands on her shoulders.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Umm, umm, umm," <<print $mom.call>> moaned around my cock, gulping me down with relish as I slid my prick into her ethereal beauty.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/bj-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $mom.call>> pulled gently on my sack again, stretching the tight flesh until I gasped. My asshole puckered shut as pleasure danced across my skin in sizzling bubbles of unseen bliss. I curled my toes into the carpet, and as <<print $mom.call>> pulled her mouth up my cock, I slid my hands into her long, sunny-blonde hair. Her lips moved back down, wetting my shaft with more of her saliva, lubing up my fuck stick. She made that slurping sound again--a sound so nasty and naughty that a small bolt of real cum escaped my balls.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Mmm,"
</p>
</div>
<p class="notation_text"><<print $mom.call>> moaned, taking my shaft into her mouth past the halfway point. She gagged when my knob hit the back of her throat, but as she did, she clamped her lips down around my thickness, sputtering spit from the sides of her lips as she palmed my balls. Her other hand dug into my hip, slipped back and downward, and grabbed my muscular ass. With her fingers in my crack and one tip against my asshole, she pulled me to her, taking more of my dick down her throat. <<print $mom.call>> gagged again, the sound so violent that I lost control, coming hard in her mouth.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Mmm," <<print $mom.call>> moaned.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/bj-6.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> My orgasm started in my thighs, with an airy tingling along my skin. The pleasure continued from my thighs to my balls, raising the trimmed hairs on my mound as my cock tensed, then swelled, then filled with cum. A light sheen of sweat beaded my skin as my blood turned hot--so hot that I felt the individual beads of sweat emerging from my pores. This was so much better than a fucking handjob!
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'm coming!" I groaned as an ecstasy-filled earthquake rocked my body.
</p>
</div>
<p class="notation_text"> <<print $mom.call>> slid her mouth up my shaft, clamping her lips below my corona, and she sucked my cock down. Her right hand continued playing with my balls while she grabbed my shaft with her left hand and jerked me off with fast strokes, creating slippery-wet music with the saliva coating my pole.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $mom.call>>, <<print $mom.call>>, fuck, <<print $mom.call>>!" I moaned, clenching my fingers in her hair hard enough to make<<print $mom.call>>tighten her neck. "Yeah, oh yeah, yeah!"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Umm, umm, umm,"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/4/bj-8.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"><<print $mom.call>> gulped, swallowing every thick spurt of jizz that I had to give her. When my balls had emptied, <<print $mom.call>> clamped her grip around the base of my shaft and pulled upward, driving every last drop of cum from my cock into her jizz-filled mouth.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Thank you, <<print $mom.call>>," I panted. "Thank you so fucking much."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> uttered a quiet laugh around my mushroom tip before she pulled her lips from my crown and said, "Only because you're making me do it."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I said, still breathing hard, "you have no choice."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Get going," <<print $mom.call>> said. "I have deadlines to meet."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I stepped out of my shorts and picked them up. At <<print $mom.call>>’s door, I said, "<<print $mom.call>>, whenever <<print $gf.name>> and I know we're alone, she walks around naked."
</p>
</div>
<p class="notation_text"> <<print $mom.call>> looked at me, the hint of a smile on her lips.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Or," I said in a rush, "she wears a small shirt that doesn't reach below her waist."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Okay,"<<print $mom.call>> said, turning to her monitor. "When we're alone. Since I have to."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You do," I said, then cleared my throat. "<<print $mom.call>>?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Yeah?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You can delete the pictures on my tablet," I said. "We made a deal."
</p>
</div>
<p class="notation_text"> <<print $mom.call>> smiled at me, and I smiled back, but then I turned around before my smile crumbled. I had those same pictures of <<print $gf.name>> on my phone and computer, but was that part of the deal?
</p>
<p class="notation_text"> I left <<print $mom.call>>’s office, refusing to answer that question.
</p>
<div class="enter_button" data-passage="Patreon">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/4/gf3.jpg'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Holy shit is right," <<print $gf.name>> said. "After we had finished talking last night, I changed into one of my cropped, pink, cotton tank camisoles--"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "What?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "God, <<print $mc.name>>," <<print $gf.name>> said. "You're eighteen." She laughed. "It's an undershirt held up by straps and made of cotton, nylon, or satin that women wear to sleep. Look it up."
</p>
</div>
<P class="notation_text"> I laughed.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I changed into a tight-fitting top with little shoulder straps, but it was so tight on me that it could have been a bandeau." I didn't even ask what that was. "I was super nipply. My girls were sticking up large and hard. You know how thick and tight they can get."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Mmm, I do," I sighed. "I miss them."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Whose fault is that?"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/mc7.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "My <<print $mom.call >>'s," I said.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Shut up," <<print $gf.name>> said, laughing. "So, I changed into one of those without a bra and some matching pink boyshorts. I rolled the waistline down so I could show off the cut of my hips because I know you love that."
</p>
</div>
<P class="notation_text"> I pictured <<print $gf.name>>'s hard stomach and long muscles covered by a single layer of feminine softness. My cock twitched, but I didn't touch it. Not this morning. Not before I saw my <<print $mom.rel>>.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "My shorts were loose, I couldn't show off my C-toe, but I'm saving that precious gem for another day." <<print $gf.name>> then said something to someone else, the sound of her voice faint through the speaker, as though she had pulled the phone away from her lips. "I got to go. It's probably for the best because I'm getting so fucking wet thinking about last night, and I don't want to sit in class with sloppy panties."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Bring another pair to school," I said.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I only bring an extra pair when we're together."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Sexy," I said. "Oh, wait! What happened with your dad?"
</p>
</div>
<div class="enter_button" data-passage="Intro_2">
<p >Continue</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/4/gf2.jpg'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Really quick," <<print $gf.name>> said. "I think I made my dad uncomfortable, but I felt his eyes on me before he left the living room to go upstairs. Dad never goes to bed earlier, but he did last night. I have to go. See you today?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I said. "I'll see you sometime in the evening after I reassure my <<print $mom.call >> that nothing will happen between us."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yeah, right," <<print $gf.name>> whispered, giggling. "Nothing but some coming. Bye. Love you."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Love you, too," I said, then added, "Oh, wait!"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "What, baby?" <<print $gf.name>> pouted. "I've got to go."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "If my <<print $mom.call >> brings up our naughty pictures, you have to tell her that you deleted them."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> <<print $gf.name>> made an annoyed, clicking sound, but she said, "Fine, but I don't like lying to your <<print $mom.rel>>. She's going to be my <<print $mom.rel>>-in-law one day."
</p>
</div>
<P class="notation_text"> Yikes.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/3/mc7.jpg'">
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Thanks, baby," I said. "Love you again. Bye."
</p>
</div>
<P class="notation_text"> I disconnected the call. thinking about my words for the next half hour. Love you. If I loved her, then why was I willing to fool around with my <<print $mom.rel>>?
</p>
<P class="notation_text">But <<print $mom.call>>'s the first woman you loved.
</p>
<P class="notation_text">Was that my mind, heart, or cock whispering those words of wisdom to me? Logic versus feelings versus horniness--along with a little bit of truth from each of them. <<print $gf.name>> had been my neighbour for my entire life. Our parents had babysat us, and <<print $gf.name>> had been just a little brat until the day she wasn't. Until then I noticed her tits. (That's a good reason to fall in love.) But, I did love <<print $gf.name>>, yet I had never dated anyone else, either.
</p>
<P class="notation_text">I picked up my phone and spoke to the voice command, asking, "Mr. Internet: Is it okay for a man to justify cheating on the woman he loves?" I didn't need a shitty AI telling me that I was a terrible person.
</p>
<P class="notation_text">The clock on my phone said it was ten minutes until eight, so I killed the search before it had a chance to answer me, and I left my room for a shower. I finished showering after eight and dressed in a pair of basketball shorts with my boxer briefs beneath and a tight shirt.
</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 $living.status[0] = 1>>
<</nobr>>
</div>
<<script>>
UIBar.show();
<</script>>
<div class="big_text">
<<nobr>>
<<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>
<p class="notation_text"><<print $taskDialogue>></p>
<<else>>
<img id='activityImage' class="scenes_image">
<</if>>
<div id="leave-button" onclick="forwardTime(1);" >
<p >Leave</p>
</div>
<</nobr>>
</div>
<<script>>
/* pure JavaScript code */
$(document).ready(function() {
startGame();
// $("#stop-button").on("click", stopGame);
$("#leave-button").on("click", function() {
console.log("Hello Pillow : bct-0" + variables().talkEvent.bedroom.count[0]);
console.log("Hello Pillow : bct-1" + variables().talkEvent.bedroom.count[1]);
console.log("Hello Pillow : bct-2" + variables().talkEvent.bedroom.count[2]);
// statsChange(10,variables().activityType);
stopTask(variables().activityType);
});
// $("#stop-button").on("click", function() {
// stopGame(variables().activityType);
// });
});
<</script>>
<div class="big_text">
<<nobr>>
<!-- Living Night -->
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> She did, sitting on my bed, wearing a pink peekaboo teddy made of lace and sheer silk that hugged her body like a leotard. She wore pink stockings with bright white welts stamped with pink roses. White garters connected her stockings to her V-cut bodice, and when she spun, she revealed an oval cutout on the back of her panties that showed off the crack of her bubbly, teen ass.
</p>
<p class="notation_text"> Jesus, I thought, kinda like <<print $mom.call>>'s lingerie. My cock went from semi-hard to full-blown steel, filling with excitement so fast that a small groan rumbled through my throat.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Your <<print $mom.call>> helped you pick that out?" I asked when <<print $gf.name>> had completed her spin. The teddy wasn't all, though; her makeup made her beauty glow, adding five years of maturity to her features and giving me a glimpse of the woman she'd become.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> She smiled, her red lipstick making her full lips even fuller. "Classy, yet sexy," <<print $gf.name>> whispered. "<<print $mom.call>> isn't like Dad. She knows what a girl wants." <<print $gf.name>> winked, adding in a sing-song voice: "What a girl needs."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Record us with your phone, too," <<print $gf.name>> said. "Over there."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I turned my head, where she had set up a camera mount to my left that I hadn't noticed because of her beauty. I walked to it, set my camera on it, and looked through the viewfinder until I had the frame centred on my bed, then I hit record. I looked at <<print $gf.name>> and said, "I feel underdressed."
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I think you're overdressed."
</p>
</div>
<p class="notation_text"> I smiled, my hands crossing and grabbing the hem of my shirt. I pulled upward, the movement causing my back to arch and my chest to expand, flexing my muscles in a way I knew <<print $gf.name>> loved. I tossed the shirt aside.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-3.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> "Mmm," <<print $gf.name>> moaned. "You look so fucking delicious when you're naked." She nibbled her lower lip for a second. "That big cock looks so yummy." She smiled with a shy pull to her lips and a forward head tilt. "Can I taste it?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Are you ready for that?" I asked, my cock twitching.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yeah," <<print $gf.name>> whispered. "I've been waiting to taste that dick for so long."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "How long?" I walked closer to her, my cock swinging as my hands rose and came to rest on her arms.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Since forever," <<print $gf.name>> whispered.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "That's not a bad thing," I said.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> <<print $gf.name>> shook her head. "No, it's not."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I lowered my head, and <<print $gf.name>> rose onto her toes, meeting my lips halfway. During our kiss, I turned our bodies sideways to the bed, sliding downward and taking her with me. My nakedness caused goosebumps to rise across my skin as my sack hung in the open air for a moment before coming to rest against my inner thighs as I sat. <<print $gf.name>> followed, climbing onto the bed with her knees, her hands finding my chest and pushing me onto the mattress.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I want your cock inside me." Her cheeks turned pinker beneath her makeup as the flickering of candlelight danced across her flesh. "Inside my pussy."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Okay." I licked my lips. "I'll take care of you."
</p>
</div>
<p class="notation_text"> I put my hands on <<print $gf.name>>'s waist. She rested her palms on my shoulders. We leaned into each other as our lips pressed together, then I fell back, taking <<print $gf.name>> with me and running my hands over her lace and silk teddy, the fabric sending goosebumps up my arms and tightening my balls. <<print $gf.name>> lay on the bed, I ran my hands down to her ass, my fingers resting beyond the oval cutout in her onesie's panties, their tips slipping into the crack of her ass. I squeezed her firm butt cheeks, pulled her buns apart, pushed them together, apart and together, my fingers dipping deeper into the heat nestled within her rear cleft.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Do you want to be on top?" I asked.
</p>
</div>
<div class="enter_button" data-passage="Event_16_2">
<p >Leave</p>
</div>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> shook her head and slid to the side, her body rubbing my cock and pulling it to the left. I followed her turn, moving above her and sliding legs between hers. and pushed my shorts down, freeing my cock in one smooth motion. The big guy bobbed upward, thick and ready for fucking, and already throbbing with the desire to feel the heat between <<print $gf.name>>'s virgin pussy lips. My prick hung above her mound, and I pushed my knees up as far as I could. <<print $gf.name>> had to drape the backs of her thighs over my thighs, which opened her pussy even more for me, her cunny pushing upward as though eager for a taste of my dick.
</p>
<p class="notation_text"> I ran my hands up <<print $gf.name>>'s body, cupping the underside of her breasts, squeezing them, then lowering my head to take her left nipple in my mouth. The lace rubbed against my tongue, and my saliva soaked the threads making up her bodice. <<print $gf.name>> moaned, and I moved to her other breast, licked and sucked, nibbled and chewed, then I pulled her shoulder straps down her arms, tugging until I freed her tits and trapped her elbows close to her body.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, baby," <<print $gf.name>> moaned as I took her nipple into my mouth again. "Mmm, Daddy."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-6.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> My cock jumped. I knew what <<print $gf.name>> meant when she said Daddy, and maybe one day, I could tell her what I pretended she meant when she called me Daddy.
</p>
<p class="notation_text"> I moved down her body, taking her teddy with me. My tongue traced the circle of her navel; dipped inside, making her stomach wave. I left her skin wet, kissed her sides, and slid my hands down to her ass after bunching her teddy around her waist. I kissed the edges of her mound, planting my lips against the cut of her muff-triangle outlined by her thighs. She tasted strawberry and vanilla, hints of herbs, and whatever else her expensive lotions had blended into her skin. Growling, I had to breathe deeply to keep myself from devouring her body the way I would my <<print $mom.rel>>'s.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "So fucking sexy," I whispered against her silk-covered mound. "Your pussy smells so fucking good, like sweet-scented flowers."
</p>
</div>
<p class="notation_text"> <<print $gf.name>> giggled--talking about her pussy's fragrance had a way of making her shy.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-7.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I looked down at her precious little virgin pussy, her pouty folds swollen between her thighs, looking so pure, and I took my cock in my hand and ran the tip through her bulging cleft. <<print $gf.name>> moaned. I tossed her onesie to the floor, letting go of her legs. <<print $gf.name>> dropped them again, her hamstrings landing on my thighs.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I'm just going to get your cock wet for my little pussy," <<print $gf.name>> whispered as she smiled at me. "I need it between my legs too fucking much to suck you off completely."
</p>
</div>
<p class="notation_text"> I groaned, lying back on my pillows so I could look across my nude body as my girlfriend polished my knob and gobbled down my shaft.
</p>
<p class="notation_text"> <<print $gf.name>> traced the lines of my muscles as she straddled my thighs, keeping her pussy away from my vertical shaft. She bent over, planting kisses on my chest, licking around my areolas, and flicking the tip of her tongue against my stiff nipples. Her firm tummy pressed into my dick, and then the bottom of her breasts caressed my cock as she continued to plant her lips along my body. She licked my abs and belly button, kissed my treasure trail, and feathered my waist with her tongue as her hands stroked my skin.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-8.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'm dripping with precum," I whispered.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yummy," <<print $gf.name>> said, moving her head to my right and resting her cheek against my thigh. She gazed at my cock, reaching up with her right hand and cupping my balls. Her left hand slid down to my ass cheek, grasping the curve of my backside.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Oh, that's nice," I sigh-moaned, drawing out the last word. "So fucking nice. You make me tingle all over.."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yeah?" <<print $gf.name>> said in a teasing voice. "What does this make you feel?"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-9.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Her tongue pressed against my sack, where it connected with my shaft, and she licked upward with a sideways raise of her head. I moaned. <<print $gf.name>> licked downward on my cock, bringing another moan from my lungs. She moved lower and over the tops of my thighs, her lace and silk-covered breasts touching my skin as her tongue swished along my sack.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Good," I whispered, trembling. "That feels really fucking good."
</p>
</div>
<p class="notation_text"> <<print $gf.name>> laughed. I could hear her smile. She took hold of my cock with her right hand, moving it out of her way as her mouth danced around the base of my dick, her tongue washing my hard flesh with some saliva that she brushed toward my knob. She licked the length of my cock, then the long, thick, dorsal vein running along the underside of my shaft, and finally running the flat of her tongue around the corona circling my crown.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah, oh, yeah," I moaned.
</p>
</div>
<div class="enter_button" data-passage="Event_16_3">
<p >Leave</p>
</div>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-10.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> licked upward, brushing her tongue across the spongy tip of my prick, the heat from her mouth dampening my crown as she licked me like a lollipop.. She jerked me off from the base of my cock to its neck, her tongue swirling around my glans and collecting the precum that her cock-stroking pumped from my nuts.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Suck it, baby," I whispered, tightening my ass and forcing my cock toward her mouth. "Give me that mouth."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Ha," <<print $gf.name>> laugh-breathed. "What mouth?" She licked her lips. "This mouth?" A full, wet, umm, sound followed as she opened her lips wide and swallowed my knob.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I breathed. "That naughty mouth."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Is it good?" <<print $gf.name>> asked in a quiet, mousy tone.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Worth the wait and then some," I whispered, looking down into her eyes. "You don't have to stop."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-11.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> smiled, then gave me a grin as she tilted her head in that sarcastic oh, really kind of way. But she went back to work, and my cock thanked her by spitting up a healthy glob of clear, cummy liquid that she was sure to taste.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Mmm," she moaned as she rolled her tongue around my shaft, swinging it left to right and around the sides of my prick, not letting her mouthful of dick keep her from swirling her tongue around my glans.
</p>
</div>
<p class="notation_text"> My thick knob bumped the roof of her mouth and slid against the velvety texture of her tongue. I poked her cheek as she turned her head. My knob followed her cheek back to her throat, hitting her uvula--she gagged, sputtering spit onto my cock--and my sexy little girl tried to take down more of my dick despite her gagging. She gagged again when my tip found her throat-hole just beyond the downward slope of her tongue.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-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> "Ah-umph," <<print $gf.name>> gagged, pulling off my cock, but jerking it quickly. She wiped her eyes, her mascara running, and a double handful of precum shot up from my cock slit.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You're going to make me come if you keep gagging," I said.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I like watching girls gag." <<print $gf.name>> sat. "It's sexy." She looked down at my cock. "Do you want me to try again, or are you ready for my pussy?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I lifted my right hand and brushed the side of her cheek. "What are you ready for?" I asked, sliding my thumb across her lips before pulling my hand away.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Do you think your pussy is ready for this dick?" I asked, stroking the full length of my cock, letting her see my swollen size. "Do you think it's gonna fit in your small hole?"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/sc-12.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> smiled and shook her head. She narrowed her eyes, giving me a sexy, dirty look.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Should we try?"
</p>
</div>
<p class="notation_text"> <<print $gf.name>> nodded her head.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Tell me," I whispered, my blood rising. "Tell Daddy what we should do."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Ooh, Daddy," <<print $gf.name>> pouted, "I think we should try to get your big, fat dick up my little teen pussyhole."
</p>
</div>
<div class="enter_button" data-passage="Event_16_4">
<p >Leave</p>
</div>
<</nobr>>
</div><div class="big_text">
<<nobr>>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I moaned. Still holding my cock, I leaned over <<print $gf.name>> and to the left, grabbing a thick pillow, and I slid it against her round ass. <<print $gf.name>> lifted her hips, and I pushed it under her bum. Her body looked like a launching pad, her shoulders low, but her torso angled upward, offering the slope of her mound and the pussy-lipped hole below for sacrifice. I ran the tip of my cock through her silky folds once more, her pussy lips melting softly to the sides while every touch coated my tingling knob in her luscious cream.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "So fucking hot," I whispered. "Your pussy is so fucking hot right now."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I know, Daddy," <<print $gf.name>> whined. "I'm hot. I'm hot all over." She ran her hands over her big tits, squeezed them, and then moved lower, stopping with her palms against her lower tummy. "And here." She uttered a soft pout. "And here, it's so hot." She ran both hands between her legs, resting them in the hollow between her thighs and cunny. "I need that cock, Daddy. I need it so much."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I ground the underside of my tip against <<print $gf.name>>'s hood, giving her clitty several teasing brushes. The way the upper portions of her pussy lips moved beneath my crown fascinated me. I placed my left hand on <<print $gf.name>>'s hairless mound, then moved upward until my palm rested between her breasts. The thudding of her heartbeat sent vibrations through my palm.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Nervous?" I asked.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> <<print $gf.name>> nodded, saying, "Excited. Horny. Ready."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Play with yourself for me," I whispered. "Play with your little pink pearl for me, baby."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I moved my cock out of the way as <<print $gf.name>> moved her right hand from her thigh to her mound, her fore and middle fingers pressing down on her swollen nub and moving the fat jewel in soft, side-to-side motions. I watched her face tremble as I ran my knob through the lower portions of her pussy lips, concentrating my movements over her pussyhole and pushing her folds apart.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, yeah, yeah, oh, yeah," <<print $gf.name>> moan-whispered, her face twitching in pleasure.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Baby," I said, licking my lips, "reach below your ass and rub your butthole too."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "God," <<print $gf.name>> gasped as my cock's head split her muff's folds.
</p>
</div>
<p class="notation_text"> Jesus, <<print $mom.call>>, what have you turned me into?
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/cg-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> didn't argue. She slid her left hand around the side of her cheek instead of going behind her back. Her middle finger found her pussy-juiced soaked pucker in an instant. "Fuck," she moaned as she massaged her tight crinkle. "Oh fuck, <<print $mc.name>>. Fuck, that feels so fucking good." She whimpered. "It feels so naughty and--mmm--nasty to be doing this for you."
</p>
<p class="notation_text"> I slid my left hand to her tits, cupping them in turn, squeezing them, and pulling on her nipples. <<print $gf.name>> continued to moan, her sounds getting louder and higher in pitch. I kept waving my cock through her slit with fast up and down strokes, making sweet, wet music as her cream dripped onto my knob and fingers. Every couple of seconds, I paused my pussy strokes and gave my dick a quick tug, polishing my shaft with <<print $gf.name>>'s slippery lube so I could fuck my big boy into her body as smoothly as possible.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "How's that pussy feel, baby?" I asked,
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/cg-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Now poking her hole and the remaining membrane of her hymen--that circle of pink flesh that made her hole look so small whenever we pulled her pussy lips to the sides. It wasn't intact, but some of it was still there bordering the entrance to her cunny channel, and as strange as it may have sounded, we had pictures of <<print $gf.name>>'s virgin opening with the thin membrane showing.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "It feels good," <<print $gf.name>> said, her voice trembling. "So fucking good, Daddy. Fucking great."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Tell me when you're about to come," I said,
</p>
</div>
<p class="notation_text">Still stroking her slit with the head of my cock while I massaged her body with my left hand, caressing her breasts and sides, her ribs and stomach, the insides of her thighs and the space between her pussy and her asshole.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/cg-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I pushed my knob into her, my piss slit kissing her hole while the last of her hymen kissed my glans. <<print $gf.name>>'s moans turned into whimpers, then whines. She nodded her head as fast as her fingers moved over her pretty cunny gem, then she cried out, "Daddy, I'm coming!"
</p>
<p class="notation_text"> I waited until I felt the first jet of warm, honey-like cream squirt from her pussy onto my cock, and then I tightened my ass and pushed my hips forward hard, sending my cock into the buttery softness of her virginity. <<print $gf.name>>'s mouth and eyes widened, her pleasure-filled whimpers turning into a single, rough, elongated moan before breaking apart into whimpers of ecstasy.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Jesus," I gasped, stopping my thrust as I filled <<print $gf.name>>'s cunny with the first five inches of my prick. "Keep coming, baby, keep coming for me."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/cg-4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>>'s body shook, her left hand flying to the side and grabbing onto my comforter. Her pussy squeezed me, pulling the precum from my balls as her insides sucked hard on my member.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, fuck," <<print $gf.name>> moaned as I gave her tender love-nub some side-to-side joy.
</p>
</div>
<p class="notation_text"> With her ass on the pillow, her legs spread, and her body still shaking, I watched as <<print $gf.name>> danced her pussy on my cock with rolling motions of her hips. Another, smaller orgasm ripped through her right on top of her first. <<print $gf.name>> grabbed my right hand with her left and tried to pull my cock into her. I gave her clitty several more swishes before allowing her to move my hand. Then I spread my knees and bent my back, lowering my upper body over hers until my pectorals lay pressed against her big, perky tits.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Ready for a fucking?" I asked, my lips against hers, then opening hers as my tongue slipped into her mouth
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Mm-hmm," <<print $gf.name>> moaned, lapping at my tongue as though we were in a Japanese porno.
</p>
</div>
<div class="enter_button" data-passage="Event_16_5">
<p>Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Myroom Afternoon -->
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/dg-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I pulled my cock from <<print $gf.name>> and pushed back in, feeding her dripping wet clam the same five inches as before. I used a slow fuck-stroke on my girlfriend, moaning into her ear as her tender softness baked my cock with her warmth. Silky and smooth, with rolling cunny walls that sucked at my shaft with wet pulses, that's what I felt when I buried my prick within <<print $gf.name>>'s twat.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck, that's a good pussy," I whispered in <<print $gf.name>>'s ear, licking her. "So fucking hot around my cock."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Mmm," <<print $gf.name>> moaned. "Oh, fuck, you're so fucking--uh--hard, <<print $mc.name>>."
</p>
</div>
<p class="notation_text"> I had wrapped my arms under <<print $gf.name>>'s shoulders, with one hand cradling the back of her head and the other resting atop it, in her hair, ready to hold her in place when I really started to rock her body with my dick. <<print $gf.name>> had lifted her feet from the bed, hooking her heels around my thighs and splaying her knees outward like a pair of wings, making it easier for my cock to slip into the pool of wetness between her legs. But she was so fucking tight, even as creamy as she was, the friction of her insides against my prick made every pass through her channel an ecstasy-filled journey.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, oh, oh fuck," <<print $gf.name>> moaned, then adding in a whimper, "Fuck, Daddy, that dick gets deep."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/dg-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I had about a third of my cock left to give her. I smiled against her cheek, the thought, That's what <<print $mom.call>> likes, sliding through my mind before I could push it away. "And I'm only going to go deeper," I said, slipping another half-inch of cock into her muff, spreading open the untouched cunny meat within her channel.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, god," <<print $gf.name>> whimpered. "I can take it, Daddy. I can."
</p>
</div>
<p class="notation_text"> I kissed <<print $gf.name>>'s cheek several times before bracing my weight on my knees and forearms and rocking my slick pole deeper into <<print $gf.name>>'s creamy folds. I could feel her pussy lips sinking inward with each thrust and chasing my cock outward as I withdrew. I fucked my little girl with slow strokes, picking up speed, then slowing down, listening to her whimpers and whines, her soft moans, and the deep grunts she uttered whenever I fed her teen twat new inches of my prick. Another inch and another, I slipped into her pink box until my balls came to rest against her asshole. Inside of her, I felt something soft rubbing against my glans, causing streams of precum to leave my body. Fuck, but that thread-like stream of jizz made me shiver.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, Jesus," <<print $gf.name>> groaned, "you're in my guts, Daddy."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck," I growled, pumping her little pussy faster.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-5.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> Tiny yelps left <<print $gf.name>>'s lips as I humped her pink pussy full of cock meat. I sped up, listening to her cries and adjusting my speed and depth to her moans. Her nipples rubbed my chest, her big titties shook, and sweet, wet, squelching noises sounded from her pussy every time I dipped into her juicy hole.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "That sounds so fucking sexy," I said into <<print $gf.name>>'s ear. "Hearing your pussy take my dick--it's talking to me, baby. Faster or slower? How does my little girl want it?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, oh, oh, fuck," <<print $gf.name>> moaned. "Faster, Daddy. Mmm, fuck, faster!"
</p>
</div>
<p class="notation_text"> I sped up, moving faster, not harder--<<print $gf.name>> wasn't ready for a hard fucking.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yeah, oh yeah," she whimpered. "Oh, god, baby. Oh, fuck, Daddy. I'm getting hot. So fucking hot. Mmm, mmm, fuck!"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-6.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $gf.name>> slid her feet up my thighs and over my ass, then crossed her ankles together at the small of my back. Her hands slid from my shoulders down my sides, her body folding as much as it could beneath me as she reached for my ass cheeks, found them, then pulled me into her. She circled her hips, grinding her pussy on my cock as I moved in and out of her tiny twat, never going all the way in, never coming all the way out, and always keeping her pussy half-full of my hard pole. As the signs of her orgasm neared--wetness, creaminess, her cunny walls tightening, and her whimpers growing louder--tingling streams of pleasure swirled my glans, flowing through my shaft and into my balls.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Fuck, I'm gonna come," <<print $gf.name>> whispered, panting hard in my ear. "Kiss me, <<print $mc.name>>. Kiss me--mmm--<<print $mc.name>>."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck, <<print $gf.name>>," I gasped, finding her lips with mine and pushing my tongue against hers.
</p>
</div>
<p class="notation_text"> <<print $gf.name>>'s whimpers continued, filling my mouth as her tongue darted, licked, and stroked mine. The pleasure in the tip of my cock forced my thighs to tremble as <<print $gf.name>>'s cunny walls rippled over my shaft. I pushed in deep, as deep as I could, and she uttered a whiny, "<<print $mc.name>>," right before she cried out and came.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "<<print $gf.name>>," I moaned as the muscles in my glans turned to liquid, and my balls released an extra thick torrent of creamy cum into my girlfriend's pink depths.
</p>
</div>
<div class="enter_button" data-passage="Event_16_6">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Myroom Afternoon -->
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> We shook and trembled, my hips pumping my dick into <<print $gf.name>>'s pussy with a mind of their own. I shot my cum while fucking my dick into <<print $gf.name>>'s hole, spraying her insides with jizz, my cum quickly mixing with her pussy juices, turning into a thick white cream that my cock pulled out with each withdrawal.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck, oh, fuck," we panted together, our voices merging as my cock softened within her cunny, eventually slipping out of her hole and dragging a thick glob of honey along with it.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Daddy," <<print $gf.name>> said some minutes later, still breathing hard. "Can we do that again?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Fuck yeah," I said as my cock lay on my sack, resting in its half-hard salami state. "I need some water. Do you want some water?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yeah." <<print $gf.name>> purred. "Go get it? I'm going to keep myself warm for you."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I got up from my bed and looked down at <<print $gf.name>>, then a light bulb went off above me, and I said, "Wait." I grabbed my phone from its tripod and held it in front of me as I walked to <<print $gf.name>>. "Let's get a close-up of your freshly fucked pussy."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Daddy, that's so nasty." <<print $gf.name>> grabbed her pillow, placing it beneath her butt and spreading her legs. She planted her feet on the bed and lifted her lower back, creating a downward sloping bridge to her shoulders. "For the best view."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I laughed and zoomed in on her smooth, golden muff. Aside from the deep pink color of her lips, my baby girl's pussy didn't look battered at all. I'm gonna fix that, I thought, then I wondered why it made me so hot when I thought of beating up <<print $gf.name>>'s pussy. After several minutes of videoing <<print $gf.name>> with my phone, I set it back on its tripod, grabbed her phone, and made another video of her slippery clam for her. Then I handed the phone to her as she sat up and recorded her snatch herself.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Your cum is dripping out of me," <<print $gf.name>> whispered. "Look."
</p>
</div>
<p class="notation_text"> I laughed and crawled onto the bed, peering between her wide-open thighs. Thick, white liquid dripped from her pussyhole, staying together like a string of honey.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Touch it," <<print $gf.name>> whispered.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/mis-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I slid my right hand between her legs, my fingers extended, and I touched her tender flesh. Wet stickiness greeted my fingers as our cum collected on their tips.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Feed it to me, Daddy," <<print $gf.name>> whispered. "I want to taste it."
</p>
</div>
<p class="notation_text"> I lifted my fingers to her lips. We met each other's eyes. Beneath my chest, my heartbeat soared as <<print $gf.name>> opened her lips, her expression innocent, shy, and curious. Her pink tongue came out as her cheeks reddened, and then I slid my cum-coated fingertips into her mouth.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> <<print $gf.name>> sucked, and from her throat came the purr, "Mmm," as she closed her eyes in ecstasy, her mouth sucking our juices from my fingertips.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/cum.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I was rock fucking hard by this time.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Get that water, baby," <<print $gf.name>> whispered after she had cleaned my fingers. "And then you can get this pussy again. Oh, and a Coke. I have a surprise for you."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Okay," I said, having to wait for my hard-on to soften. I wouldn't have, but <<print $gf.name>> mentioned that my parents didn't want to see how hard I was for her.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Hurry back," she said when it was safe to head downstairs.
</p>
</div>
<p class="notation_text"> I nodded, having to force myself to leave <<print $gf.name>>'s side. I pulled on a pair of shorts and walked downstairs with my semi-hard-on, thinking that my <<print $mom.rel>> had already gone to bed. Instead, the living room lights were on. I saw my <<print $mom.rel>> on the couch, in our spot with her butt near the cushion's edge and her boy-shorts sitting on the coffee table, next to a bottle of wine. The glass was on the end table to her right. An adult movie played on the TV. A blonde, flaxen-haired MILF took the cocks of two young men--one in her pussy, the other in her ass. <<print $mom.call>> had her right hand in her lap while her left hand caressed her breasts beneath her buttoned-up pajama shirt. She didn't notice me as I walked to the couch and stopped behind her.
</p>
<div class="enter_button" data-passage="Patreon">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Myroom evening -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/1.gif'">
<p class="notation_text"> <<print $gf.name>> did, though I caught her right nipple between my teeth. As she pulled away, her puckered flesh stretched and stretched, making her gasp when the nub escaped my grasp.
</p>
<p class="notation_text"> <<print $gf.name>> faced away from me, her back muscular from years of athletics: soccer, softball, and dance when she was younger, but still practiced, though not as much. I ran my soapy hands over her skin, tickling her sides and pushing on the middle of her back after I had cleaned it. <<print $gf.name>> bent forward at the waist, placing her hands on the wall and spreading her legs, giving me full access to her bubble butt and the sweet softness below her cheeks and between her thighs. This was not our first shower together.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "You gonna eat my asshole too, Daddy?" <<print $gf.name>> whispered, her excitement making her voice tremble.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Do you want me to, baby?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I feel nasty tonight." <<print $gf.name>> shook her ass, twerking her butt meat for me. Her cheeks opened and closed, her pussy bounced, and her butt rippled, making my head nod. "I want you to eat my ass, Daddy. Eat my dirty ass."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/lick-2.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> My eyes feasted on her pink asshole. I thought, That's as clean an ass as a woman can have.
</p>
<p class="notation_text"> I soaped <<print $gf.name>>'s legs, the front, and back, the insides of her thighs, moving as close to her outer pussy lips as I could without covering them in suds. Next, I did her ass cheeks, then her crack, the soap running down her pussy, and falling onto the tub. I saved her pussy for last, reaching around her body to wash her stomach and waist, her hairless mound, her tits once again, then cupping her pussy from behind and running my hands through her folds, being careful to not push into her slit. I waited until all traces of the soap had vanished from our skin before grabbing each of her ass cheeks, spreading them open, and pressing my tongue against her pink butthole.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Shit!" <<print $gf.name>> gasped as soon as my tongue tickled the rougher sides of her crinkled pucker. "Fuck!"
</p>
</div>
<p class="notation_text"> I licked around <<print $gf.name>>'s rosebud while massaging her legs with my hands, their outsides, and then insides, moving up to her pussy where I traced the line of her pink seam. <<print $gf.name>>'s knees trembled, her butt moving up and down, and I chased her asshole with my tongue. I licked through her crack and played with her perineum, but I stayed away from her pussy as I eased my right forefinger into the creamy center of her honeypot.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, baby," <<print $gf.name>> whispered..
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I've missed this," <<print $gf.name>> said, her voice throaty. She sounded like a young woman instead of a teen girl. She fucked her cunny back against me, trying to sit on my finger and forcing me to push back against her ass with my left hand as she reached back, grabbed my hair, and pulled my mouth hard against her asshole. "So good. Mmm, so fucking good. Yeah, oh yeah, yeah!"
</p>
</div>
<p class="notation_text"> I eased my middle finger next to my forefinger, pushing <<print $gf.name>>'s pussy lips open and finding her small hole, the membrane of her virginity made her opening smaller. There wasn't much of it left, but there was still some there--other than our fingers, <<print $gf.name>> hadn't spent much time slipping things into her pussy. I eased my finger into her, giving her two side by side, then turning them vertical, then turning them side by side again, corkscrewing my digits into her tiny twat tunnel. I found her G-spot and rubbed, pushing my thumb against her fat clit and forming a three-pronged pussy hook that worked her cunny's most sensitive parts at the same time.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, shit, oh-shit, oh-shit!" <<print $gf.name>> whimpered.
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/lick-3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I grabbed her left hip, doing my best to hold her bucking body still. She fucked her twat onto my fingers, and she tried to run away, whining when I pushed my tongue against her asshole again. When I worked her clit faster, she clenched her teeth together and uttered harsh whooshes of breath. Within minutes her insides went from warm to hot, and thick, honey-like nectar began dripping from her snatch. A few more minutes of this, and <<print $gf.name>> bent her knees, clenched her pussy tight, and came on my fingers as her legs shook. As her cum flowed, her cries filled the bathroom with the sounds of her pleasure.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, baby, <<print $mc.name>>, Daddy," <<print $gf.name>> panted as she slid to the shower floor to recover her breath. "It's never been that good before."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Like I said," I said, standing, "I've been doing my research. I'm gonna let you finish showering. Then I'm gonna let you get ready for me. When you are, text me; I'll be downstairs."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "What about your cock?" <<print $gf.name>> asked, looking at my swollen prick. "Don't you want me to help you with that big guy?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You're so cute." I smiled. "You'll help me later. I want to save my first big nut of the night for you."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "We're not going to use condoms, right?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I laughed and said, "No fucking way. See you in about half an hour?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> <<print $gf.name>> nodded her head, then said, "Maybe forty-five minutes. Maybe ten. I don't know. I'm going to hurry up."
</p>
</div>
<p class="notation_text"> I stepped out of the shower, thinking, Sure you will, as I grabbed a towel from the bathroom's closet and dried off before heading to my room.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/21.webp'">
<p class="notation_text"> Dad called me when I was trying to find what to wear tonight. I grabbed whatever t-shirt and shorts I found in the closet and went downstairs.
</p>
<div class="dialog_text character">
<p><span span class = "character">Dad: </span> "Are you planning anything special for tonight buddy?" Dad winked.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I guess not, nothing special. Why are you asking anyway?" I tried to look for <<print $mom.call>> around the room, she wasn’t there.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Dad: </span> "Your <<print $mom.call>> and I were planning to go out for dinner. Since Jenna is trying to be a new member in the family, we wanted to welcome her. Can you tell her so we all can go and have some fun?”
</p>
</div>
<p class="notation_text"> Is this some kind of trick <<print $mom.call>> is pulling to stop us from having sex tonight as well?-I thought to myself. "Alright, I'll let Jenna know about the surprise dinner."
</p>
<p class="notation_text"> My guess was right, <<print $mom.call>> knew that it would be late to have dinner and return home and both of us would be exhausted. We went to have dinner, came back home and I could tell Jenna wasn’t in the mode to have sex after all that hassle.
</p>
<p class="notation_text"> Let's see what happens tomorrow night.
</p>
<div class="enter_button" onclick="statsChange(-100,'Money');forwardTime(1)" data-passage="Home">
<p >Continue</p>
</div>
<<set $talkEventCount = 15>>
<<set $eventCount += 1>>
<<set $myroom.status[8] = 1>>
<<set $myroom.status[7] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Myroom evening -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/21.png'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Shower and change into something special my <<print $mom.rel>> helped me pick out for you."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Your <<print $mom.rel>>?" I asked, laughing. "She's helping you pick out your sex clothes?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "You're the one who told me to kiss my dad."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Tease your dad."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "You still told me too, Daddy." <<print $gf.name>>'s lips stretched into a sly smile beneath her red cheeks. "You're responsible for everything kinky that I've ever done. You don't get to judge me for what I do with my <<print $mom.rel>>."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You're right; I don't," I said. How would <<print $gf.name>> judge me for what I did with my <<print $mom.rel>>? "I'm positive she has great taste."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/22.png'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Give me ten minutes."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Wait." This was my chance to get <<print $mom.call>> alone. "You say ten minutes to get ready, but that means thirty. Take an hour and text me when you're ready for me."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Ooh, I'm ready for you now," <<print $gf.name>> whispered. She licked her lips. "How about you help me take a shower, and then I'll spend the next thirty minutes getting ready."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> My cock thickened, and I licked my lips, nodding, then said, "Let's get you clean, little girl."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "You're so nasty for an old man."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/shoe.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> We laughed. <<print $gf.name>> took off her socks and shoes before we stepped out of my room and into the hallway. She walked lightly, her steps soft and measured, and she even looked over her shoulder once, not at me, but behind me.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "We don't have to sneak around," I whispered.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I know," <<print $gf.name>> said, releasing her tension with a soft giggle. "Habit."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "We'll get used to it. It won't be as hard as you think."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, it better be," <<print $gf.name>> said, reaching back as she pushed open the bathroom door to press her palm against my cock. "And it's getting there."
</p>
</div>
<p class="notation_text"> I laughed. A week ago, I would have been rock solid by now and wearing out the threads holding the crotch of my jeans together. It was amazing how a little bit of <<print $mom.call>>'s pussy could calm down a man's habit of getting an instant erection at the thought of sex--though if I couldn't get hard as soon as <<print $gf.name>> undressed, I was going to think there was something wrong with me.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/23.png'">
<p class="notation_text"> <<print $gf.name>> flicked on the lights once she stepped into the restroom. I closed the door, locked it. And tried not to think about my <<print $mom.rel>> and slid my hands around her from behind, my fingers meeting beneath her breasts. My hands moved upward, cupping the fullness of her tits and pulling her to me. Her bra must have been thin because nothing dampened her tit's softness as I gave them a firm squeeze. Still holding her twin mounds, I turned us around until my back was to the shower, and her front faced the door.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'll get the shower started," I said, stepping away from her. "Then I'll undress you, then I'll bathe you, and then I'll make you come."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Then you're going to have to clean my pussy afterward," <<print $gf.name>> whispered. "With your tongue."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "You don't have to worry about that," I said as I turned the shower's water handles. "I've had a week to build up my appetite for you." Once I had the warm water pouring from the showerhead, I turned around and walked toward <<print $gf.name>>, who looked up at me with her lips pressed together and that ever-present smile on her face. "Ready?"
</p>
</div>
<p class="notation_text"> <<print $gf.name>> nodded her head.
</p>
<div class="enter_button" data-passage="Event_14_2">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Living Afternoon -->
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/shower.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I pulled her by the hands toward the toilet, where I sat down and looked up at her. I ran my fingers along the hem of her shirt, which hung an inch above her shorts and showed off a thin band of her golden skin. My touch feathered her, causing goosebumps to rise across her arms. <<print $gf.name>> nibbled her lower lip as I moved my fingers downward, finding the button to her shorts and twisting the metallic circle through its threaded slit. I kept my eyes locked with hers as I found her zipper and pulled it downward, stopping even with the slope of her mound as her shorts opened for me.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "They're tight," <<print $gf.name>> said, looking down at my hands. "You're going to have to tug them pretty hard to get them off me."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "We're going to do a lot of pretty hard things tonight," I said, my cock thickening against my jeans.
</p>
</div>
<p class="notation_text"> <<print $gf.name>>'s blush deepened.
</p>
<p class="notation_text"> <<print $gf.name>> was wearing cute panties. Innocent panties. A virgin's panties.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Like them?" <<print $gf.name>> asked.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Love them." They made my cock ache, and I could feel the stiffness pulsating outward from the center of my drumstick. "You should wear your little girl panties more often."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "But I like wearing my sexy panties for you, Daddy."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/wr-1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I smiled as I pushed her shorts down to her ankles. She stepped out of them, and I went for her panties. I stopped pulling them down around the middle of her thighs, saying, "Spread your legs." She did, turning her panties into a tight roll stretched between her thighs. The warmth of her skin flowed into my hands as I ran my palms over her legs and up to the bottom of her naked ass, pulling her closer to me as I lowered my head toward her bald pussy.
</p>
<p class="notation_text"> I was too tall to get my mouth on her twat, but I pressed my forehead to her waist and breathed in, the hot scent of her sex filling my nostrils with her sweet smell. My head swam, the world brightened, and <<print $gf.name>> laughed as I growled and kissed her as low on her mound as I could manage. Her panties fell around her ankles, and she stepped out of them.
</p>
<p class="notation_text"> Fuck, my cock hurts, I thought.
</p>
<p class="notation_text"> <<print $gf.name>>'s shirt came next, and I pulled her close to me with my knees open and my ass on the edge of the toilet's cover. As I pushed her shirt up her body, she helped, crossing her arms and grabbing the hem, using it to tug her shirt over her head as I laid my thumbs along the bottom swells of her big breasts. I wrapped my fingers around mounds and sucked her thick nipples into my mouth one at a time.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/wr-2.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> "Mmm," <<print $gf.name>> sighed, then continued speaking in a forceful, pouty whine. "It feels so good that we don't have to hide it anymore, baby."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Daddy," I whispered around her tit, wondering how fast <<print $mom.call>>'s heartbeat thumped whenever I called her <<print $mom.call>> "Call me 'Daddy' from now on."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Even in front of our parents?" <<print $gf.name>> teased.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I whispered. "Always, from now on."
</p>
</div>
<p class="notation_text"> I'm too into incest, I thought as I sucked harder on her right tit, squeezing her flesh and feeling it cave in and spring back to its original roundness the moment I eased the pressure of my grip. <<print $gf.name>> moaned and gasped, her body moving in a serpentine wave. She grabbed the back of my head, slipping her fingers through my hair and taking a firm grip.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/gf/5/wr-3.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> "Aw, Daddy," <<print $gf.name>> whimpered as I sucked on her nubs. "Fuck. You've gotten really good at this. When did you master this art?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I grabbed her cheeks with both hands, smiled, and kissed her again. "I'll let you know after you clean yourself up and get ready to fuck me."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Okay, daddy"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/17.jpg'">
<p class="notation_text"> I left Jenna in the bathroom and went downstairs to check up on <<print $mom.call>>. She wasn't happy with everything happening since the evening.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> " <<print $mom.call>>, nothing will change between us. You can trust me on that."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Is it? Then, can you spend the night with me and not Jenna." <<print $mom.call>> said without even looking me in the eye.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Will that make you happy?"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yes"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Alright"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/sleeping-pill.jpg'">
<p class="notation_text"> I took one of dad's sleeping pills, mixed it with a glass of strawberry milkshake and made Jenna drink that.
</p>
<p class="notation_text"> She fell asleep while we were making out in our bed. I checked again, went to <<print $mom.call>>'s room and without saying a word, I spread her legs on both sides, made room for my tongue to reach her pussy lips and kissed her.
</p>
<p class="notation_text"> I can't lose my <<print $mom.call>>. Probably, I'll fuck jenna tomorrow night.
</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 = 14>>
<<set $eventCount += 1>>
<<set $myroom.status[7] = 1>>
<<set $living.status[6] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Living Evening -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/15.jpg'">
<p class="notation_text"> Mrs. Mason smiled at <<print $gf.name>> and me, slipping us a not so silent wink of reassurance as Mr. Mason readied himself to repeat his rules for banging his teenage daughter.
</p>
<p class="notation_text"> I hadn't been there for the conversation that Mr. Mason had had with my parents when he had threatened to keep his daughter from seeing me. And it was Mr. Mason because <<print $gf.name>>'s <<print $mom.call>> loved me. When my parents had come home from the Mason house after Mr. Mason had laid down the law, I could tell there had been harsh words exchanged between him and my parents. I never asked what those words were, but by my <<print $mom.rel>>'s tone and my father's sharp jokes, I knew that Mr. Mason had probably been just as pissed off as they had been.
</p>
<div class="dialog_text character">
<p><span span class = "character">Mr. Mason: </span> "The rules are simple," Mr. Mason said, his voice as tight as his body and his eyes sliding toward my <<print $mom.rel>>, "that way, there will be no misunderstandings. I've even texted the rules to your parents, <<print $mc.name>>, with my authorization allowing you to have a sexual relationship with my daughter. I'll be leaving a voice mail on your phone later, so please don't answer my next call." Once again, his eyes slid toward my <<print $mom.rel>>. Their movements were twitchy, as if he were trying not to look at her. "There will be no doubt in anyone's mind that I haven't consented to your adult relationship with my daughter."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> Fuck me, but I wanted to shout, "We are adults!"
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Thank you, Daddy," <<print $gf.name>> said, pulling away from me and letting go of my hand when our arms couldn't stretch any further. She hugged her father, bounced against him, her big tits moving up and down like a paintbrush against his chest.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/16.jpg'">
<div class="dialog_text character">
<p><span span class = "character">Mr. Mason: </span> "Easy, <<print $gf.name>>," Mrs. Mason said. "Your father isn't giving you a pony."
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Dad: </span> "<<print $mc.name>> may not be a pony," Dad said with his casual indifference to good ol' fashion decency, "but he's still something she can ride."
</p>
</div>
<p class="notation_text"> For a moment, everyone remained quiet, then Mrs. Mason and <<print $mom.call>> laughed at the same time. The pitch of their humor matched each other's as if uttered by one person. I laughed. <<print $gf.name>>'s cheeks turned red, and Dad chuckled to himself. Mr. Mason breathed in and out. In and out. In... and out. But when he spoke again, the tightness had left his voice, and his body visibly relaxed, becoming smaller as his muscles lost their tension.
</p>
<div class="dialog_text character">
<p><span span class = "character">Dad: </span> "You and <<print $gf.name>> may sleep with each other on the weekends and only on the weekends," he said. "Starting at 6 p.m. on Friday and ending at the same time on Sunday. You can only sleep with each other at each other's homes. Those are the only two places: cars, hotels, the homes of your friends, or anywhere else, is off-limits. You will always use condoms. Your grades will remain at 'A' levels. There will be no pictures of <<print $gf.name>> on anyone's phone or digital devices, or anywhere else. Period. One slip, and it's over for you two. And you will always use condoms."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/17.jpg'">
<div class="dialog_text character">
<p><span span class = "character">Mr. Mason: </span> "You said that already," Mrs. Mason said.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Dad: </span> "Maybe he wants them to double wrap," Dad said.
</p>
</div>
<p class="notation_text"> Everyone laughed again, even Mr. Mason, though his laughter ended first.
</p>
<div class="dialog_text character">
<p><span span class = "character">Mr. Mason: </span> "If you become pregnant," Mr. Mason said, looking down at his daughter, "you will tell us as soon as you find out. This is not something you may hide from us, no matter how scared you may be. There will be no secrets between us, do you understand me?"
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Dad: </span> "That's right," Dad said. "We want to know what positions you use--"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Enough," <<print $mom.call>> said, but she was laughing.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/18.jpg'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Yes, Daddy," <<print $gf.name>> said after some of the laughter had died away.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "<<print $mc.name>>?" <<print $mom.call>> asked.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "No secrets," I said, nodding. "I promise."
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Mr. Mason: </span> "Homes, condoms, grades, pregnancy," Mr. Mason continued, "that's it. Those are our four rules. If you agree to our rules, you can sleep with each other, but if you break any of them, your sexual relationship is over until <<print $gf.name>> graduates from college and moves out of this home."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Dad!"
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Dad: </span> "We'll talk again in a couple of years."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Then we agree," <<print $gf.name>> and I said at the same time, which brought more laughter from our mothers.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Mrs. Mason: </span> Mrs. Mason leaned back on the couch, an odd smile on her face as she said, "Oh, wouldn't it be great to be that excited about sex again?"
</p>
</div>
<p class="notation_text"> <<print $mom.call>> burst out laughing, as did Dad.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/14.jpg'">
<div class="dialog_text character">
<p><span span class = "character">Mr. Mason: </span> "Thanks, Lorraine," Mr. Mason said. "Thanks a lot."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "That's not what I meant," she said, her eyes widening and her cheeks swimming with pink. She looked at <<print $mom.call>> "He's really very good in bed."
</p>
</div>
<p class="notation_text"> As everyone but Mr. Mason laughed, <<print $gf.name>> snuck off to pack her overnight bag. She was sleeping at my house tonight, in my bed, though we weren't planning on sleeping much. <<print $mom.call>>'s expression looked no different than anyone else's, but I knew the truth behind her eyes. I felt the heat of her emerald greens whenever she looked at me, and I saw her lips tighten, and her cheeks sag (as much as they could), but as I said, I was the only one who noticed.
</p>
<p class="notation_text"> It's okay, <<print $mom.call>>, I tried to tell her with my eyes. You're still my pussy, and I'm still your son. Nothing is going to change between us. But I needed to show her that nothing would change before I took <<print $gf.name>> into my bed. How was I going to do that? I didn't know, but now that I had her, nothing was going to take my <<print $mom.rel>> away from me--nothing.
</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 = 13>>
<<set $eventCount += 1>>
<<set $living.status[6] = 1>>
<<set $living.status[0] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Living Evening -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/11.jpg'">
<p class="notation_text"> <<print $gf.name>> rolled her eyes, and we stepped outside onto her porch. I took a seat on the wooden bench overlooking the waist-high, wooden fence. <<print $gf.name>> climbed into my lap, throwing her left arm around my shoulder and palming my left cheek with her right hand. I slipped my arms around her waist, interlocking my fingers along her right side. After a quick smile, she lowered her lips to mine, giving me a kiss that ended with our tongues sliding away from each other.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Do you know what he's going to say?" I asked after I licked the traces of her saliva from my lips.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "No." <<print $gf.name>> shook her head. "He didn't write a speech, but it's going to be about getting you between my legs."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> I laughed. "You know, you may talk dirty, but you look so cute when you do."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "I know," <<print $gf.name>> said, rolling her eyes again. "I love it, and I hate it. I'm too cute to pull off that slutty vibe."
</p>
</div>
<p class="notation_text"> I smiled, thinking, Good. No wonder why Dad puts <<print $mom.call>> on a pedestal. It's... nice.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/12.jpg'">
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "What are you thinking?" <<print $gf.name>> asked.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "That this is nice." I hugged her closer to me. "I'm holding you again. We're going to have sex." I cheated on you. "I've missed this."
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Me too, and it's only been a week."
</p>
</div>
<p class="notation_text"> Our lips met again, and they didn't part until the front door opened, and <<print $gf.name>>'s <<print $mom.call>> stepped onto the porch. She coughed since <<print $gf.name>> wouldn't pull away from me and said, "You're going to have a lot of time for that later tonight, so knock it off. We'd like to talk to you now."
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/gf/5/13.jpg'">
<p class="notation_text"> <<print $gf.name>> pulled away, her eyes only for me, then she took a deep breath and stood, keeping her left hand connected to my right as she did. "Okay, <<print $mom.call>>, we'll be right in."
</p>
<p class="notation_text"> Her mom didn't close the door when she disappeared back inside. I stood and slid my hands around <<print $gf.name>>'s back, then moved them down to her ass, my left stopping on the thick crescent of her teenage ass, but my right hand kept going, finding the center groove between her cheeks, moving lower to the cleft between her legs, and taking hold of her pussy from behind.
</p>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Ooh," <<print $gf.name>> said, her eyes and smile widening. "Daddy."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I guess this pussy belongs to me now," I said, though my voice didn't match the gritty, dominant tone I used with my <<print $mom.rel>>.
</p>
</div>
<div class="dialog_text gf_dialog_text">
<p><span span class = "gf"><<print $gf.name>>: </span> "Oh, it's always belonged to you, Daddy," <<print $gf.name>> whispered, her tone as amused as mine had been.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/kiss.gif'">
<p class="notation_text"> I pressed my lips to <<print $gf.name>>'s one more time before leading her inside....
</p>
<div class="dialog_text character">
<p><span span class = "character">Mr. Mason: </span> "Rules," Mr. Mason said as he stood in front of his TV. "These are the rules that you two must follow if you want to have a sexual relationship with our blessing."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "With your blessing," <<print $mom.call>> said. "I've never had a problem with our children's relationship."
</p>
</div>
<p class="notation_text"> Mr. Mason nodded his head, but I could tell he wanted to shake it.
</p>
<p class="notation_text"> Dad breathed in and out.
</p>
<p class="notation_text"> In and out.
</p>
<p class="notation_text"> In....
</p>
<p class="notation_text"> ... and out.
</p>
<div class="enter_button" data-passage="Event_13_2">
<p >Leave</p>
</div>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- myroom morning -->
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/d4.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $mom.call>> shivered.
</p>
<p class="notation_text"> I took more pictures.
</p>
<p class="notation_text"> <<print $mom.call>> continued posing for me, turning sideways and sticking out her butt, then straightening her legs and bending over, the curve of her ass tightening as she pretended to pick something up from the coffee table. She turned around and spread her legs, looking over her shoulder at me. She lowered herself to all fours and spread her legs in a frog-like squat. I snapped pictures of her exposed holes. Her slitted panties, which only covered the front half of her pussy, gave me free access to her twat, and I lowered my hand, pressing the tip of my middle finger against the lips protecting her creamy opening.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Mmm," <<print $mom.call>> sighed as I eased my finger into her slippery opening.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Uh," <<print $mom.call>> moaned.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"You know, <<print $mom.call>>, " I whispered, lowering my face toward her ass, my breath falling across her skin. "Your pussyhole is so tight; it makes me wonder how tight your asshole is."
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/l1.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> <<print $mom.call>> shivered.
</p>
<p class="notation_text"> I lowered my mouth to my <<print $mom.rel>>'s crack and pushed my tongue forward, pressing the tip against her pucker before sliding it downward and pressing the flat of my tongue between her cheeks. <<print $mom.call>> gasped and wiggled her ass, pushing her smooth backdoor against my taste buds.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "That's something--ooh, baby--your father would never do to me." <<print $mom.call>> groaned as I wiggled the tip against the centre of her asshole. "You're a nasty boy, <<print $mc.name>>. You must--ah, fuck, you're getting in there--take after me."
</p>
</div>
<p class="notation_text"> I was getting in there, pushing the tip of my tongue hard against the tightness of her pucker and managing to wiggle a piece of my wet flesh into her tiny hole. I didn't enter her butt, but I did lodge the tip of my tongue, the very tip, within the grip of her rubbery anal ring, and the pressure around my flesh made my cock bob up and down, flinging precum onto my <<print $mom.rel>>'s little feet.
</p>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/l2.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>"Has Dad ever used a finger on you?" I asked, pulling my tongue from my <<print $mom.rel>>'s butt.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "No," <<print $mom.call>> whispered.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"Have you?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Yes," <<print $mom.call>> said, panting, "but my fingers are so small."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"Mine aren't."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I know, baby," <<print $mom.call>> whispered. "Are you gonna make me take them?"
</p>
</div>
<video class="scenes_image" @src="setup.ImagePath+'scenes/video/mom/5/l3.mp4'" muted autoplay loop="loop" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' controls>
</video>
<p class="notation_text"> I smiled at the tremor in my <<print $mom.rel>>'s voice.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"One day," I said, "when we have more time. How's dad doing?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "He's alright. Doctor suggested that he exercise more to lose some fat. Otherwise he could get heart disease."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>" That's frightening. How're the results? "
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "We will receive them today. Now that you asked about your father, I remembered I need to go there to pick the reports."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"So, when can I finish the home video <<print $mom.call>>?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Tomorrow, before lunch. <<print $mom.call>> needs to finish a few drafts in the office before that so she'll be busy, is that alright honey?
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>" You have been a very bad girl <<print $mom.call>>"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I won't be tomorrow. "
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span>"Alright, you should go."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "I'll be back in an hour. Don't skip your meal",she left to get dressed and moved out half an hour later.
</p>
</div>
<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[4] = 1>>
<<set $myroom.status[5] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- myroom Midday-->
<img class="scenes_image" @src="setup.ImagePath+'scenes/misc/5/club.jpg'">
<p class="notation_text"> We walked down a dark hallway with red baseboard lighting. Bit Tits opened one of the doors within the wall for me, saying, "Have fun, young man," as she gestured for me to step inside the room. "There's an intercom in there if you want to order a stripper." I looked at <<print $mom.call>>, who motioned with an all-to motherly, get your butt moving, mister, sideways head-tilt. I gave my <<print $mom.rel>> one last look before stepping inside a large room that smelled of sweat, pussy, sex, and cum.
</p>
<p class="notation_text"> Within the room, six black cushioned chairs fanned outward in a half-circle in front of a glass wall set within a frame of white fluorescent tubing. Three older men sat in the chairs, the two in chairs five and six had a naked stripper on their lap, each with a shaved pussy and palm-sized tits. The blonde and brunette strippers look about eighteen or nineteen years old, and they had the hard, bendable bodies of life-long ballerinas. The last man sat in chair number one with his pants undone and his cock out, stroking it with a lazy motion, and I looked away the <<print $mom.call>>ent I realised what he was doing.
</p>
<p class="notation_text"> No one said a word to me. The men didn't look at me. The strippers did, and I could see in their faces that they'd rather dance for me than the other two guys-- who had their fucking dicks out! I hurried to chair number three, my cock softening, and I sat and tried to hide my head behind the short wings of the recliner. Even with that precaution, I could still see chair number six and the blonde stripper dancing for her customer under the soft glow of electric sex.
</p>
<p class="notation_text"> A seamless white door opened in the back wall of the room behind the glass. Big Tits stuck her head in, saying, "We got a showgirl who wants the stage." The words came through a speaker in the walls. The men around me perked up; the man in chair number one gave his old cock several harder strokes to straighten out his pecker. I didn't look, but it was impossible not to notice his motions from the peripherals of my vision, sitting at the centre of the crescent as I was.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/18.jpg'">
<p class="notation_text">The thick stripper left the room, and after a moment, <<print $mom.call>> walked into the room. She was wearing nothing. My cock pushed hard against my jeans, forgetting all about the bums on either side of me.
</p>
<p class="notation_text"> <<print $mom.call>>'s body shined beneath the room's lights as though she had lathered her golden skin in a thin layer of oil. Her tan stood out darkly against her sunlight hair. I heard a pair of groans to my left and the smacking of a hand jerking a cock to my right. <<print $mom.call>>'s pubes lay matted to her mound. Definitely oiled, I thought as <<print $mom.call>> turned her head from left to right, casting her eyes over our room.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Can she see us?" I asked the strippers to my left, leaning forward so that I could look at them.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character">Stranger: </span> "No," the guy to my right said. "The view is one way, and that's one hot slut. Look at that fucking body."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I wasn't asking you," I said.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/19.jpg'">
<p class="notation_text"> He flinched, but his words and their meaning--the effect my <<print $mom.rel>> had had on him and the two guys to my left, even the strippers--warmed my skin and sent a buzz of pride radiating outward from my chest that swelled my entire being. "That hot slut came here with me." A chill ran through me. "That hot slut is mine."
</p>
<p class="notation_text"> My mind blanked for a <<print $mom.call>>ent, and all I could hear was the echo of my statement, the words bringing an ache to my balls. That hot slut is mine. That hot slut was my <<print $mom.rel>>, and she was mine. Why had I said that aloud? Why wasn't I punching the guy who called my <<print $mom.rel>> a hot slut in the face? I groaned as I put my right hand on my cock, thinking, He wants what I have.
</p>
<div class="dialog_text character">
<p><span span class = "character">Stranger: </span> "Lucky you," the man to my right said, stroking himself harder as he focused on my <<print $mom.rel>> and the way she stood, with her legs slightly parted and the crease of her muff pressed together, glistening with oil.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/20.jpg'">
<p class="notation_text"> <<print $mom.call>> is insane, I thought, my inner voice distant with a tremor of laughter running beneath it. Note to self: If your wife wants to get freaky in the bedroom, let her! <<print $mom.call>> lifted her flesh-coloured dildo to her mouth and turned sideways to us. Her little ass curved outward, not as much as <<print $gf.name>>'s, but it wasn't flat, either. <<print $mom.call>> had a tight tennis <<print $mom.call>>'s butt, and for a <<print $mom.call>>ent, I wished that she had kept her skirt on until she brought her dildo to her mouth and pushed the mushroom tip between her lips, which forced every thought I was about to have from my mind.
</p>
<p class="notation_text"> My <<print $mom.rel>> didn't scarf the dick down like a slut; she dined on that fake cock like a queen. Her lips widened but stayed glued to the silicone as it disappeared into her mouth. She pushed it inward, and she pulled it outward, her new cock coming out wet and shiny, then going back in further than before, then coming out, then in--more of the cock disappearing, reaching the halfway point beyond her lips. Her cheeks puffed out, and she blew out a wad of air and spit, gagged, pulled out, and pushed back in, her tits shaking and her ass cheeks jiggling.
</p>
<div class="dialog_text character">
<p><span span class = "character">Stranger: </span> "Fuck me, this slut is beautiful," the man to my right said.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/32.jpg'">
<p class="notation_text"> I didn't look at him, but inside... inside, my heart swelled with pride. Where was my anger? The man is talking about my <<print $mom.call>> My mind couldn’t specify what it should feel. Anger, excitement, nervousness or get horny for the brand new form I am watching of my <<print $mom.rel>>.
</p>
<p class="notation_text"> I don't remember for how long I kept watching my <<print $mom.rel>> strip for the sex addict audiences. Other men, if possible, could break the glass to have a taste of her. However, they resisted, as they already had female bodies to quench the thirst of their hard on.
</p>
<p class="notation_text"> (I had some anger, but it wasn't pure anger.) Where was my need to punch all these guys right in the throat? (I wanted to fuck my <<print $mom.call>> while they watched--I wanted them to wish they were me.) His voice held longing and desire and a distant tremor that sounded like regret that he'd never get to touch my <<print $mom.rel>>, or any woman like her, in his life.
</p>
<p class="notation_text"> You like being envied, dickhead, my cock whispered to me. Your <<print $mom.call>> is yours. Take pride in her. Stroke your ego, then stroke me.
</p>
<p class="notation_text"> My dick was one-hundred-percent correct.Even though I couldn't make up my mind to sit there and watch my <<print $mom.call>> strip for those perverts.
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/3/mc9.jpg'">
<p class="notation_text"> I came out of the room and went straight to the counter. The big-tit milf was surprised to see me. I told her that I want my <<print $mom.call>> to come backstage. She saw some rage in my eyes and went back to bring my <<print $mom.call>> back to me.
</p>
<p class="notation_text"> I heard a bell ring, <<print $mom.call>> came out from the glass door room with a witty smile.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> No, I wasn't smiling back. "We need to talk. Let's go."
</p>
</div>
<p class="notation_text"> Was <<print $mom.call>> worried that I was upset? Or was she enjoying the fact that I was angry that I let other people, particularly those nasty bastards watch her strip?
</p>
<p class="notation_text"> It came out as she wasn't. She looked playful along the way home.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Are you ashamed of me now?" <<print $mom.call>> asked as soon as I closed the front door of our house.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "No, I guess. I am just angry because those guys were making nasty comments on you.”
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Tell me honestly, dear, those words only made you angry? Not horny or excited? I thought people watching you having sex is something that turns you on."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/3/mom33.jpg'">
<p class="notation_text"> <<print $mom.call>> saw right through me. She touched my face with her bare cold hands and my cheeks turned red instantly. Blood rushed through my shaft and I could feel in my stomach that in my heart I wanted to know how that show ends that I have hampered in the midway.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'm sorry that I dragged you here when you were enjoying yourself."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "It's alright baby. Do you want me to strip for you tomorrow in that showroom again? To be honest, I was wet when I realised you were right there behind the glass watching me with other guys. But you know what turned me on the most, only one lucky boy can get this pussy." she grabbed my hand and pushed against her pussy beneath the skirt.
</p>
</div>
<p class="notation_text"> I can't, no no, I won't say no to this fantasy. - I thought to myself.
</p>
<p class="notation_text"> I sighed, told my <<print $mom.call>> that I will take her out again the next day for lunch and a strip show.
</p>
<p class="notation_text"> I slept early that night to wake up and exercise the next morning.
</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 $myroom.status[2] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- Living middaY -->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/3.webp'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Have you touched that pretty little pussy she was showing off in my living room yesterday?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yes," I said, my voice shaky.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Have you fingered it?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yes."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Tasted it?" <<print $mom.call>> whispered. She sounded fucking hot.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yes," I said, lowering my voice as my cock pushed against my pants with a slow uncoiling of flesh.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/4.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Has she gone down on you yet?" <<print $mom.call>> asked, her voice turning throaty.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "She's waiting for our first time together, but she jerks me off."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Has she ever jerked you off while you were driving?" <<print $mom.call>>'s right hand slid along her shoulder strap, tugging it further outward with every pass.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Not yet," I said, and when <<print $mom.call>> sat there staring at me through her sunglasses, I added, "but you're going to. Right now."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Are you making me?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah." My cock thickened, making my jeans uncomfortable. "I'm making you, <<print $mom.call>>"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Tell me something, you have been with both of us, who do you think make you horny the most?"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/5.jpg'">
<p class="notation_text"> I looked at <<print $mom.call>>, she looked sad and jealous. Thinking about what could possibly be the best answer, obviously not to hurt <<print $mom.call>>, I parked the car at one side of the road.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I dont think this is a competition <<print $mom.call>> You are the most beautiful women I have ever been with."
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "But still you cant leave <<print $gf.name>>. She must be good to make you horny."
</p>
</div>
<p class="notation_text"> I loved <<print $gf.name>>. And somehow she could feel that i cant even lie to make my <<print $mom.call>> feel better.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Could you go back home? I dont feel like going anywhere."
</p>
</div>
<p class="notation_text"> I knew trying to convince her wont do me any good. A wrong word could finish off my chances of getting her into bed. I wanted to fuck my <<print $mom.call>>
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/2.jpg'">
<p class="notation_text"> So, I drove back home. She didnt utter a word after we reached and even <<print $dad.call>> called me for dinner.
</p>
<p class="notation_text"> I went downstairs to have dinner and couldn't find <<print $mom.call>> anywhere in the kitchen or living room. I asked <<print $dad.call>> and he replied," She's not feeling well buddy. Eat up and dont stay awake for too long."
</p>
<p class="notation_text"> Maybe I should leave her alone for today, I thought to myself and went back to my room to call <<print $gf.name>>.
</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 $myroom.status[0] = 1>>
<<set $living.status[0] = 0>>
<</nobr>>
</div>
<div class="big_text">
<<nobr>>
<!-- My room Morning-->
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/8.gif'">
<p class="notation_text"> <<print $mom.call>> purred, squeezing my balls and causing my cock to bend against my jean's threaded fibres. She tore my leather belt apart, unfastened the buckle, and then the button holding my pants together. I had to lift my hips as <<print $mom.call>> worked the zipper down and my pants opened, fishing out my bent pole until it straightened. She spat on my knob, then gave my warm meat a few rod-wetting strokes with her right hand before she took my thick cock in her left hand and faced forward again.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Do you want me to fist-pump this big dick, <<print $mc.name>>?" <<print $mom.call>> spread her legs and pulled her skirt up. "Is that what you want your $<<print $mom.call>> to do for you, baby?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Yeah," I said, stopping at a light and looking around the street. There were other SUVs around, but <<print $mom.call>> had tinted her windows as dark as the law allowed, maybe darker, but one look at <<print $mom.call>> had always been enough for a police officer to let her off with a warning (not that she got pulled over often, just maybe more than most people). "I want you to get your hand wet and jerk off your son's hard cock."
</p>
</div>
<p class="notation_text"> My heartbeat hammered beneath my chest.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "You're a bad fucking boy," <<print $mom.call>> purred, taking her hand from my cock and placing it between her legs. She rubbed the front of her panties, digging her fingers between her lips and forcing the dental floss up into her silky folds. After several soft sighs, <<print $mom.call>> lifted her hand to her mouth and spat in her palm. Smiling, she reached over with her left hand and gripped my cock's crown as she lowered her right hand between her legs and rubbed her pussy some more.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/9.webp'">
<p class="notation_text"> The lights stayed green for me as <<print $mom.call>> stroked my cock, varying the tightness of her grip and adjusting how much skin she pulled up around my knob. She jerked me fast, then slow, then she tugged my cock in her direction. She played with her pussy the entire time, using the same rhythm on her clit as she did on my prick. She laughed when I pulled into a residential street a block away from Biggie's Burgers, and she started a slow, teasing stroke that spread my precum into her palm.
</p>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Baby," <<print $mom.call>> pouted, "I'm hungry."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Okay," I said, turning back onto the street and driving to our destination--but looking back, I don't think Okay was what <<print $mom.call>> had wanted me to say, because....
</p>
</div>
<p class="notation_text"> <<print $mom.call>> spoke again once we pulled up to the drive-through speaker, saying, "Oh, I can't wait for a thick, juicy burger, <<print $mc.name>>, but that's okay because there's a big piece of meat right here, isn't there?" <<print $mom.call>> turned her upper body toward me, angling her knees in the same direction. She lowered her head to my lap, taking my glans into her open mouth with one quick swallow, followed by an mmm sound.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Oh, fuck," I moaned into the drive-through speaker.
</p>
</div>
<div class="dialog_text character">
<p><span span class = "character"><<print $mom.call>>: </span> "Hello," a young woman's voice said through the speaker. "Welcome to Biggie's Burgers, home of the biggest burgers in the world. How may I help you this afternoon?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Uh," I half-moaned, "that's a good question. <<print $mom.call>>, what do you want?"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/11.webp'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Mmm, umm, mmm, mwah," <<print $mom.call>> hummed around my cock, every sound she uttered came out thick and slobbery.
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Um," I said, my voice tightening, "I'll take two of your Jumbo Burgers with extra sauce and meat."
</p>
</div>
<p class="notation_text"> <<print $mom.call>> purred around my cock, her blowjob turning sloppy and wet and her hungry sounds growing louder. Spit slid down my shaft as <<print $mom.call>> opened her jaw wide, wiggling her head side-to-side as she fought to take down more of my hard salami.
</p>
<div class="dialog_text character">
<p><span span class = "character"><<print $mom.call>>: </span> "I'm sorry, sir, did you want an extra patty on those burgers?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "No," I said, gritting my teeth as my knob slipped into <<print $mom.call>>'s throat. She gagged, sputtered, and kept going. "Just--uh--extra bacon."
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/10.gif'">
<p class="notation_text"> My cock curved into <<print $mom.call>>'s throat, the new strain against my shaft tightened my balls. Her lips made contact with my short hairs, and <<print $mom.call>> gagged again, choking and coughing. She tried to come up, but my <<print $mom.rel>>'s strain had ignited a buzzing in my nuts that wasn't going away. As I settled our order, I put my right hand on <<print $mom.call>>'s head and held her down on my cock. <<print $mom.call>> fought to get up, coughing again, and I thanked the drive-through girl for our order and moved forward in line. <<print $mom.call>> sputtered, her throat grinding against my knob, and then she palmed my nuts, and I lost it. My shaft swelled with cum. A moment later, I made a sticky deposit into my <<print $mom.rel>>'s tummy.
</p>
<p class="notation_text"> <<print $mom.call>> was still gulping down my seed when we pulled up to the window. I was excited, panicked, and suddenly wondering the attendant will see me like this.
</p>
<p class="notation_text"> How should I react?
</p>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/12.jpg'">
<p class="notation_text"> Even though i was fully aware that there will be an attendant, for some reason,my mouth was shut and i didnt warn my <<print $mom.call>> about it. She kept on doing what she's best at and i didnt have the courage or willpower to stop her. again, showing off to another girl that im getting a blowjob, made my dick a bit more hard.
</p>
<p class="notation_text"> The drive-through attendant, a petite Latina teen--who I think I recognized from school--looked into <<print $mom.call>>'s SUV. Her hands went to her mouth, and her dark eyes grew wide. I smiled with as much of an I'm sorry expression on my face as I could manage, but she wasn't looking at my face, thank god. <<print $mom.call>> dragged her lips up my cock, stopping with my glans still in her mouth, and she pumped my cock several times, pulling out the last of my spunk.
</p>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I'm sorry," I mouthed to the attendant as I tried to put my cock away, which hadn't gone soft, not with this girl looking into the car, right at my dick. Her eyes never ventured to my face.
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mom/5/13.avif'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> <<print $mom.call>> wiped her mouth and grabbed her purse from the backseat, and then she asked, "I'm sorry, dear, how much was that again?"
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> Back on the street, <<print $mom.call>> asked, "That was fun." She looked at my lap. "You're still excited."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "It won't go down," I said.
</p>
</div>
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Your cock won't go down, baby," <<print $mom.call>> said. "Talk to me properly. So, did getting caught turn you on?"
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "Did it turn you on?"
</p>
</div>
<img class="scenes_image" @src="setup.ImagePath+'scenes/mc/5/8.jpg'">
<div class="dialog_text jc_dialog_text">
<p><span span class = "jc"><<print $mom.call>>: </span> "Yes," <<print $mom.call>> said, laughing. "These are the things your father would never let me do. We'd come so close to being nasty, but he could never follow through. I've been thinking about something lately...." <<print $mom.call>> looked out the window. "We need to make a quick stop. I need to buy something."
</p>
</div>
<div class="dialog_text mc_dialog_text">
<p><span span class = "mc"><<print $mc.name>>: </span> "I dont think I want to go anywhere right now <<print $mom.call>> I need to take you home, and suck that juicy pussy." and may be she would let me fuck her this time.
</p>
</div>
<p class="notation_text"> <<print $mom.call>> didnt resist and told me to take her to shop the next day. We went home went to my room and did everything I was imaging to her other than the fucking part.
</p>
<p class="notation_text"> When will she let me fuck her for God's sake - I kept asking myself the entire day.
</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 $myroom.status[1] = 1>>
<<set $myroom.status[0] = 0>>
<</nobr>>
</div>