JavaScript must be enabled to play.
Browser lacks capabilities required to play.
Upgrade or switch to another browser.
Loading…
<<addclass "#ui-bar" "stowed">> <<addclass "#right-ui-bar" "stowed">> <center> <h1 class="splash-title">In Their Own Hands</h1> <h2>A Story in the World of //In Her Own Hands//</h2> </center> <<timed 5s t8n>> <<goto "TitleScreen">> <</timed>>
<center><h1>In Their Own Hands</h1> A Story in the World of //In Her Own Hands// version 0.1.2α by <a href="http://www.patreon.com/surprisedelight" target="_blank">Surprise & Delight Media</a> </center> \ <<popover>>\ [img[images/nsfwbanner.png]] <center><h3>WARNING</h3></center> This game contains sexually oriented adult material intended for individuals 18 years of age or older. This includes explicit depictions of sexual activity between consenting adults. If you are not yet 18, if adult material offends you, or if you are accessing this site from any country or locale where adult material is prohibited by law, PLEASE LEAVE NOW! Clicking on the "PLAY" button constitutes a binding declaration that you meet the legal requirements in your place of residence for viewing pornographic material. <center><<button [[Play|IntroductionStart]]>> <<run Dialog.close()>> <</button>></center> <</popover>>\
You will be living $h.fn $h.ln's life. This may mean making decisions about everything from your daily routine to how you handle anything out of the ordinary that comes up. These decisions will have consequences, so think carefully about what you do. //Not everything is in your control.// Your wife, $w.fn $w.ln, has her own autonomy. She will, however, be influenced by your decisions. So, at least to a certain extent, your relationship is up to you. [img[images/intro1.jpg]] As with all marriages, there are several different possible outcomes over time. ''Happy Marriage:'' You know what they say, "Happy wife, happy life!" If you keep $w.fn satisfied with you--mentally, emotionally, and physically--then you probably have nothing to worry about. . . ''Open Relationship (Ethical Non-Monogamy):'' Of course, there's more than one way to keep your wife happy. Though you are in a monogamous relationship at the start of the story, maybe you or she would like to explore a bit more of what the world has to offer. . . with the full knowledge and consent of the other. This could be open to both of you, or maybe you just want her to be with other men. . . ''Swinging or Sharing (Hotwifing):'' Maybe you want to explore other partners together . . . wife-swapping, group sex, orgies, or maybe $w.fn finds one man just isn't enough? But whatever happens, it happens with your knowledge, consent, and physical presence! ''Unfaithful:'' Will you cheat on $w.fn? Will she cheat on you? If either of you is unhappy, this might be the result. What will happen if the cheater gets caught? (Warning: This path may contain unavoidable //netorare// content.) [img[images/intro2.jpg]] You may or may not receive a warning if one of your decisions changes which path you are on. Play your cards right, though, and you will be able to have exactly the life you want. ''Here's what you need to know:'' Each of you has a couple of main statistics that you should keep an eye on. These will appear in the sidebar on the left. Any of them might come into play at any time. Most of the events will happen regardless of any statistic, though available actions and reactions may be affected. *''Arousal:'' This tracks the current level of arousal of the couple. It may have a direct impact on available opportunities or reactions, and may have other effects in either your life or $w.fn's life. (Maximum: ???). *''Love:'' This tracks the emotional feelings of $w.fn toward $h.fn. (Maximum: 100). *''Respect:'' This tracks the mental feelings of $w.fn toward $h.fn—respect, trust, loyalty, etc. (Maximum: 100). *''Happiness:'' This is calculated from $w.fn's overall happiness in the marriage. (Maximum: 100). <center><<button [[Start Playing!|SkipPreface]]>><</button>></center>
//I knew it the moment I first laid eyes on her. Most of her body was hidden behind a desk in the university library, and her nose was buried in a book as she studied. Yet the elegant way that she brushed her long brown hair behind her ear at that moment captured my imagination. [img[images/preface1.jpg]] Needless to say, I did very little studying myself that day and ended up failing my Economics test the next day. Totally worth it. We started dating within a few weeks. The next two years were like a dream. We spent as much time as we could together when we weren't in our classes. Studying. Meals. Hanging out and drinking with friends. More than anything else, lots and lots of care-free sex! An ideal college romance! In about a year and a half, I graduated with my Bachelor's degree in Business and started working on my MBA. She was two years younger than I was, so she kept working on her English degree. She dreamt of writing the Great American Novel. We both graduated at the same time. It took me a little time but I found an entry-level position at a great financial institution with good potential for upward mobility. The starting pay was enough that I could support us living in the heart of the city and $w.fn could stay at home and just work on her writing. We got married a few months later. [img[images/preface2.jpg]] It was the happiest day of my life! Everything was perfect. . . // <<nobr>> <<if $w.pov>>[[Continue|WPreface1]] <<else>>[[Continue|Preface2]] <</if>> <</nobr>>
/* Date & Time Widget Setup */ <<set window.GameDays to [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ]; window.GameMonths to [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ]; /* Below we have to use the multi-parameter version of the Date constructor, rather than the date string version, because the date string version treats a missing timezone offset as UTC. While there are ways to determine players' timezone offsets, so they could be added to a date string, it's more convenient simply to use the multi-parameter constructor. The point of this is so that you can simply initialize the game world clock to whatever date and time you wish without having to worry about the players' timezone offsets, while still ensuring that they all see the same game world dates and times. */ /* params: year , month(0-based) , day , hour(24H) , minute [, second ] */ $gameDate to new Date(2023, 7, 6, 7, 0); /* e.g. Mar 17, 2015 03:24 */ >> /* Date & Time Advancement Widget Definitions */ /* Adds the specified number of minutes. */ <<widget "addminutes">> <<run $gameDate.setMinutes($gameDate.getMinutes() + $args[0])>> <</widget>> /* Adds the specified number of hours. */ <<widget "addhours">> <<run $gameDate.setHours($gameDate.getHours() + $args[0])>> <</widget>> /* Adds the specified number of days. */ <<widget "adddays">> <<run $gameDate.setHours($gameDate.getHours() + $args[0] * 24)>> <</widget>> /* Date & Time Printing Widget Definitions */ /* Prints the current date ("{weekday} {month} {day}, {year}"). */ <<widget "date">> <<print String.format("{0} {1} {2}, {3}", GameDays[$gameDate.getDay()], GameMonths[$gameDate.getMonth()], $gameDate.getDate(), $gameDate.getFullYear() )>> <</widget>> /* Prints the current time (12H). */ <<widget "time12hr">> <<if $gameDate.getHours() eq 0>> 12 <<elseif $gameDate.getHours() gt 12>> <<print $gameDate.getHours() - 12>> <<else>> <<print $gameDate.getHours()>> <</if>>: <<if $gameDate.getMinutes() lt 10>>0<</if>><<print $gameDate.getMinutes()>> <<if $gameDate.getHours() gte 12>>PM<<else>>AM<</if>> <</widget>> /* Prints the current time (24H). */ <<widget "time24hr">> <<if $gameDate.getHours() lt 10>>0<</if>><<print $gameDate.getHours()>>: <<if $gameDate.getMinutes() lt 10>>0<</if>><<print $gameDate.getMinutes()>> <</widget>> /* Prints the current date and time (12H). */ <<widget "datetime">><<date>> <<time12hr>> (<<time24hr>>)<</widget>>
!Set your alarm clock HINT: When you sleep in your bed, you will wake up at this time. Your Energy will be renewed in relation to what time you went to sleep. You might wake up earlier if your Energy is fully renewed. [img[images/alarmclock1.jpg]] Your alarm clock is currently set for \ <span id="alarm-str"><<if $alarm eq 0>>\ 12\ <<elseif $alarm gt 12>>\ <<print $alarm - 12>>\ <<else>>\ <<print $alarm>>\ <</if>>:00 \ <<if $alarm gte 12>>PM<<else>>AM<</if>>.</span> Click '-' to set your alarm to an earlier time or '+' to set it later. <<button "-">><<set $alarm -= 1>><<replace "#alarm-str">><<if $alarm eq 0>>\ 12\ <<elseif $alarm gt 12>>\ <<print $alarm - 12>>\ <<else>>\ <<print $alarm>>\ <</if>>:00 \ <<if $alarm gte 12>>PM<<else>>AM<</if>>.<</replace>><</button>>\ <<button "+">><<set $alarm += 1>><<replace "#alarm-str">><<if $alarm eq 0>>\ 12\ <<elseif $alarm gt 12>>\ <<print $alarm - 12>>\ <<else>>\ <<print $alarm>>\ <</if>>:00 \ <<if $alarm gte 12>>PM<<else>>AM<</if>>.<</replace>><</button>> [[Continue|MasterBedroomMain]]
<<if visited() lte 1>><<include [[BR_Intro]]>><</if>> <<set _scene to random(1,5)>> <<if ndef $swg>><<set $swg to {a1 : false, a2 : false}>><</if>> <<if $w.loc is 0 and $w.xr.br.evt.loc is 0>> <<include [[BR_WBWakeUp]]>> <<elseif $w.loc is 0 and ($gameDate.getHours() gte 22 or $gameDate.getHours() lt 5) and not $w.xr.h.t.n1>> <<include [[BR_Nite1Talk]]>> <<elseif (hasVisited("SwingPathStart_A2") or $swg.a2) and not $w.xr.h.t.swg1 and $gameDate.getHours() gte 21>> <<include [[BR_Swing1Talk]]>> <<elseif $w.loc is 0 and $w.xr.br.evt.d1 and not $w.xr.h.t.bd1 and ($gameDate.getHours() gte 22 or $gameDate.getHours() lt 5) and ($w.xr.br.cuk or $w.xr.br.shr)>> <<include [[BR_Day1WifeTalk]]>> <<elseif $w.loc is 0 and $w.xr.h.t.bd1 and ($w.xr.br.cuk or $w.xr.br.shr) and $gameDate.getHours() gte 22 and not $w.xr.br.evt.done and not $w.xr.br.evt.slp and not $w.xr.h.day.t.bch>> <<include [[BR_BNite_Choice]]>> <<elseif $w.loc is 0 and ($w.xr.h.rel.cuk or $w.xr.h.rel.opn) and $w.evt.fkr1.b and not $w.xr.h.t.fkr1 and ($gameDate.getHours() gte 22 or $gameDate.getHours() lt 5)>> <<include [[BR_Fkr1_Talk1]]>> <<elseif $w.loc is 0 and ($w.xr.h.rel.cuk or $w.xr.h.rel.opn) and $w.evt.fkr2.b and not $w.xr.h.t.fkr2 and ($gameDate.getHours() gte 22 or $gameDate.getHours() lt 5)>> <<include [[BR_Fkr2_Talk1]]>> <<elseif $w.loc is 0 and (not $w.xr.br.evt.on or $w.xr.br.evt.done or ($w.xr.br.evt.on and $gameDate.getHours() lt 22)) and $w.xr.h.day.tdy gte 15 and $w.rous gte 150>> <<include [[BR_WithWifeHot]]>> <<elseif $w.loc is 0>> <<include [[BR_WithWifeBase]]>> <<else>> <<include [[BR_AloneBase]]>> <</if>>
<<set _scene to random(1,5)>> <<if $w.xr.h.t.swg1 and not hasVisited("Swing1_Start") and $gameDate.getHours() gte 19 and GameDays[$gameDate.getDay()] is "Sat">> <<include [[SwingPathStart_A3]]>> <<elseif GameDays[$gameDate.getDay()] is "Sat" and $gameDate.getHours() gte 9 and $gameDate.getHours() lte 10 and not $h.evt.bch.go and ((not $w.xr.br.evt.on) or ($w.xr.br.evt.on and $w.xr.br.evt.last)) and not hasVisited("1stSatBeach8")>> <<set $w.loc to 5>> <<include [[1stSatBeach1]]>> <<elseif $w.xr.sh.evt1on and not $w.xr.sh.evt1off>> <<include [[WSh_FirstCheatStart]]>> <<elseif not tags(previous()).includes("LivingRoom") and not tags(previous()).includes("MenuPassage") and not tags(previous()).includes("HisPhone") and not tags(previous()).includes("Talk") and not tags(previous()).includes("EventPassage") and not tags(previous()).includes("SexPassage") and tags(previous()).includes("AtHome") and $w.xr.br.cm gt 0 and ($w.xr.br.shr or $w.xr.br.cuk) and $w.loc is 5 and $w.xr.br.evt.loc is 5 and _scene gte 3>> <<set $staypassage to previous()>> <<include [[WB_AloneLR1]]>> <<elseif $w.loc is 5 and $w.xr.br.evt.loc is 5>> <<include [[LR_WBBase]]>> <<elseif $w.loc is 5>> <<include [[LR_WithWifeBase]]>> <<elseif $w.xr.br.evt.done and not $w.xr.br.evt.last and $gameDate.getHours() gte 9>> <<include [[LR_E1BGoodbye]]>> <<else>> <<include [[LR_AloneBase]]>> <</if>>
<<if $w.loc is 2 and $w.xr.br.evt.loc is 2>> <<include [[K_WithWBMain]]>> <<elseif $w.loc is 2>> <<include [[K_WithWifeMain]]>> <<else>> <<include [[K_AloneBase]]>> <</if>>
<<if $w.xr.br.evt.loc is 3 and $w.loc isnot 3 and $gameDate.getHours() gte 5 and $gameDate.getHours() lte 9>> <<include [[GR_BMorning]]>> <<elseif $gameDate.getHours() gte 5 and $gameDate.getHours() lte 9 and $w.xr.br.evt.loc is 3 and $w.xr.br.evt.slp>> <<include [[GR_BWMorning]]>> <<elseif $w.loc is 3 and $w.xr.br.evt.loc is 3>> <<include [[GR_BWBase]]>> <<elseif $w.loc isnot 3 and $w.xr.br.evt.loc is 3>> <<include [[GR_BAloneBase]]>> <<elseif $w.loc is 3>> <<include [[GR_WithWifeBase]]>> <<else>> <<include [[GR_OfficeAloneBase]]>> <</if>>
In this game, you will be entering the lives of a married couple. You will primarily be playing as the husband. The husband is 27 years old. The wife is 25 years old. ''What is the husband's name?'' (default "Christian Cox") Given name: <<textbox "$h.fn" "Christian" autofocus>> Surname: <<textbox "$h.ln" "Cox">> ''What is the wife's name?'' (default "Jenny Cox") Given name: <<textbox "$w.fn" "Jenny">> Surname: <<textbox "$w.ln" "Cox">> Some scenes may play from the wife's perspective. Do you want to see these scenes from her perspective, or only see the husband's perspective? <label><<radiobutton "$w.pov" true checked>><code> </code>Both husband and wife<code> </code></label> <label><<radiobutton "$w.pov" false>><code> </code>Just the husband<code> </code></label> <center><<button [[Continue|InstructionsStart]]>> <<set $h.fn to $h.fn.toUpperFirst()>> <<set $h.ln to $h.ln.toUpperFirst()>> <<set $w.fn to $w.fn.toUpperFirst()>> <<set $w.ln to $w.ln.toUpperFirst()>> <</button>></center> This is a work of fiction. Names, characters, businesses, places, events, locales, and incidents are either the products of the author's imagination or used in a fictitious manner. Any resemblance to actual persons, living or dead, or actual events is purely coincidental.
<<if hasVisited("MasterBedroomMain")>>\ <<date>> <<time12hr>> Bank balance: $<span id="bankbalance"><<print Math.round($Bank)>></span><br>\ <span style="font-size: 0.85em;">Rent due: $<<print $Rent>> <span style="color:#234099;">''$h.fn $h.ln''</span> Arousal: <<= Math.round($h.rous)>> <<nobr>> <<if $h.tox.drk gt 0>><br> <span style="font-size: 0.9em;">🍸 Intoxication: <<if $h.tox.drk gt 0 and $h.tox.drk lte 2>>//Buzzed//<br> <<elseif $h.tox.drk gt 2 and $h.tox.drk lte 4>>//Tipsy//<br> <<elseif $h.tox.drk gt 4 and $h.tox.drk lte 6>>//Drunk//<br> <<elseif $h.tox.drk gt 6 and $h.tox.drk lte 7>><span class="drunk" style="font-size: 0.9em;">//Super drunk//</span><br> <<elseif $h.tox.drk gt 7 and $h.tox.drk lte 8>><span class="drunk" style="font-size: 0.9em;">//Wasted//</span><br> <<elseif $h.tox.drk gt 8>><span class="drunk" style="font-size: 0.9em;">//Black out drunk//</span><br> <</if>></span> <</if>> <<if $h.tox.wd gt 0>><br> <span style="font-size: 0.9em;">🌿 How High:</span> <span style="color:#137945;font-size: 0.9em;"><<if $h.tox.wd gt 0 and $h.tox.wd lte 2>>//Slightly stoned//<br><br> <<elseif $h.tox.wd gt 2 and $h.tox.wd lte 4>>//Half-baked//<br><br> <<elseif $h.tox.wd gt 4 and $h.tox.wd lte 6>>//<<= "3/4">> baked//<br><br> <<elseif $h.tox.wd gt 6 and $h.tox.wd lte 8>>//High as fuck//<br><br> <<elseif $h.tox.wd gt 8>>//Up to the sky!//<br><br> <</if>></span> <</if>> /* Phone alerts */ <<if not tags().includes("MenuPassage") and not tags().includes("HisPhone") and not tags().includes("HerPhone") and not tags().includes("PrefacePassage") and not tags().includes("SexPassage") and not tags().includes("EventPassage")>> <<if $incomingtext>><br> ''<<button [[You have a text!|TextMessageMain]]>><<set $phonepassage to passage()>><<set $incomingtext to false>><</button>>'' <<elseif $incomingcall>><br> ''<<button [[Your phone is ringing!|PhoneMain]]>><<set $phonepassage to passage()>><<set $incomingcall to false>><</button>>'' <<else>> <</if>><</if>><</nobr>> <<if $w.pov>><span style="color:#ff66ff;">''$w.fn $w.ln''</span> Love: <<= Math.round($w.luv)>>/100 Respect: <<= Math.round($w.rsp)>>/100 <<if $w.xr.h.t.n1>>Satisfaction: <<= Math.round($w.sat)>>/100<br><</if>>\ Happiness: <<= $w.hap>>/100 <<if $w.xr.h.t.n1>>Arousal: <<= Math.round($w.rous)>><br><</if>>\ \ <<nobr>> <<if $w.tox.drk gt 0>><br> <span style="font-size: 0.9em;">🍸 Intoxication: <<if $w.tox.drk gt 0 and $w.tox.drk lte 2>>//Buzzed//<br> <<elseif $w.tox.drk gt 2 and $w.tox.drk lte 4>>//Tipsy//<br> <<elseif $w.tox.drk gt 4 and $w.tox.drk lte 6>>//Drunk//<br> <<elseif $w.tox.drk gt 6 and $w.tox.drk lte 7>><span class="drunk" style="font-size: 0.9em;">//Super drunk//</span><br> <<elseif $w.tox.drk gt 7 and $w.tox.drk lte 8>><span class="drunk" style="font-size: 0.9em;">//Wasted//</span><br> <<elseif $w.tox.drk gt 8>><span class="drunk" style="font-size: 0.9em;">//Black out drunk//</span><br> <</if>></span> <</if>> <<if $w.tox.wd gt 0>><br> <span style="font-size: 0.9em;">🌿 How High:</span> <span style="color:#137945;font-size: 0.9em;"><<if $w.tox.wd gt 0 and $w.tox.wd lte 2>>//Slightly stoned//<br><br> <<elseif $w.tox.wd gt 2 and $w.tox.wd lte 4>>//Half-baked//<br><br> <<elseif $w.tox.wd gt 4 and $w.tox.wd lte 6>>//<<= "3/4">> baked//<br><br> <<elseif $w.tox.wd gt 6 and $w.tox.wd lte 8>>//High as fuck//<br><br> <<elseif $w.tox.wd gt 8>>//Up to the sky!//<br><br> <</if>></span> <</if>> <</nobr>><</if>> <</if>>
<h2>Text Messages</h2> <<include [[TextMsg Triggers]]>> <br><br> <span id="sendtexts"><center> <<button "Send a Text">> <<replace "#sendtexts">> <<include [[SendTexts]]>> <</replace>> <</button>><br><br><br><br> </center></span> <center><<button [[Home|PhoneMain]]>><</button>><<button "Off" $phonepassage>><<unset $phonepassage>><</button>></center>\
<<if $incomingcall>> <<include [[CallTriggers1]]>> <<else>> <img src="images/phone.png" usemap="#image_map"> <map name="image_map"> /* <area target="" alt="Contacts" title="Contacts" data-passage="ContactsMain" coords="124,386,184,468" shape="rect"> */ <area target="" alt="Photos" title="Photos" data-passage="PhotosMain" coords="201,385,260,465" shape="rect"> /* <area target="" alt="Phone" title="Phone" data-passage="CallMain" coords="42,491,100,567" shape="rect"> */ <area target="" alt="Messages" title="Messages" data-passage="TextMessageMain" coords="118,489,183,568" shape="rect"> /* <area target="" alt="Camera" title="Camera" data-passage="CameraMain" coords="194,489,258,569" shape="rect"> */ </map> <br> <br> <center><<button "Off" $phonepassage>><<unset $phonepassage>><</button>></center> <</if>>
<<if visited("MasterBedroomMain") gt 0>>\ <<if not tags().includes("MenuPassage") and not tags().includes("HisPhone") and not tags().includes("HerPhone") and not tags().includes("PrefacePassage") and not tags().includes("SexPassage") and not tags().includes("EventPassage")>>\ \ [[Phone|PhoneMain][$phonepassage to passage()]] [[Wait a bit|Waiting][$waitpassage to passage()]] [[Inventory][$startpassage to passage()]] [[Just the Tip|Tip_Base][$startingpassage to passage()]] <</if>><</if>>
//Waiting will forward time without losing any Energy.// !!!How long do you want to wait? <center><<button "15 minutes" $waitpassage>><<addminutes 15>><</button>> <<button "30 minutes" $waitpassage>><<addminutes 30>><</button>> <<button "1 hour" $waitpassage>><<addminutes 60>><</button>> <<button "2 hours" $waitpassage>><<addminutes 120>><</button>></center> <<link "Cancel" $waitpassage>><<unset $waitpassage>><</link>>
<h2>Inventory</h2> <center><<nobr>> <div class="row"> <<if $inv.cig gt 0>> <div class="column"> /* start entry here */ <div class="flip-box"> <div class="flip-box-inner"> <div class="flip-box-front"> <img src="images/cigarettes.jpg" style="width:250px;height:250px"> </div> <div class="flip-box-back"> <h3>Cigarettes</h3> <center> ''Quantity:'' $inv.cig<br><br> <<button "Smoke">> <<popover>> <<randompic 1 8 hsmoke>> <<set $inv.cig -= 1>> <<addminutes 5>> <<set $h.tox.cig += 1>> <</popover>> <</button>> </center> </div> </div> </div> </div> <</if>> <<if $inv.ros gt 0>> <div class="column"> /* start entry here */ <div class="flip-box"> <div class="flip-box-inner"> <div class="flip-box-front"> <<if $inv.ros is 1>> <img src="images/invrose.jpg" style="width:250px;height:250px"> <<elseif $inv.ros gt 1>> <img src="images/invroses.jpg" style="width:250px;height:250px"> <</if>> </div> <div class="flip-box-back"> <<if $inv.ros is 1>> <h3>Rose</h3> <<elseif $inv.ros gt 1>> <h3>Roses</h3> <</if>> <center> ''Quantity:'' $inv.ros<br><br> </center> <<if tags($startpassage).includes("AtHome") and $w.loc lte 5 and not $w.xr.h.day.ros>> <<set _text to "Give to " + $w.fn>> <<button _text>> <<popover>> <<include [[GiveRose]]>> <</popover>> <</button>> <</if>> </div> </div> </div> </div> <</if>> </div> <</nobr>></center> <span style="float: right;"><<button "Return" $startpassage>><</button>></span>\
<center><h1>Scene Guide</h1> <<button "Close" $startingpassage>><</button>></center> <<nobr>> <fieldset style="padding: 2em"> <legend><b style="font-size: 1.5em;">Just the Tip . . .</b></legend> <div id="achievement"> </div> </fieldset> <</nobr>> <center><h3>- -- Select a perspective -- -</h3></center> <<nobr>><center> <div class="row"> <div class="column"> <<link [img[images/hprofile1.jpg][HPOVTips]]>> <</link>> </div> <div class="column"> <<if $w.pov>> <<link [img[images/wprofile1.jpg][WPOVTips]]>> <</link>> <<else>> <span style="filter: grayscale(100%);"> <<link [img[images/wprofile1.jpg]]>> <<replace "#achievement">> //You cannot see $w.fn's perspective!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </span> <</if>> </div> </div> </center> <</nobr>>
/* StoryInit */ /* Husband Stats */ <<set $inv to { cig : 0, ros : 0, bbc : false }>> <<set $h to { fn : "Christian", ln : "Cox", rous : 30, pref : { cuk : 0, opn : 0, swg : 0, wex : 0 }, xr : { w : { lch : 0, shr : 0, swg : 0, lwtr : 0 }, bth : { rel : 0, x : 0, cuk : false }, crys : { rel : 0, cig : false, x : 0 }, jayto : { m : false, jx : 0, tx : 0, swp : 0, go : 0 } }, evt : { wk : { w : 0, vst : 0, bus : 0, rd : 0 }, db : { vis : 0 }, prn : { str : 0, les : 0, int : 0, grp : 0, cuk : 0 }, rsch : { swg : 0, opn : 0, cuk : 0 }, cht : false, bch : { go : false } }, tox : { drk : 0, wd : 0, cig : 0, cgaddict : false } }>> /* Wife Stats */ <<set $w to { fn : "Jenny", ln : "Cox", pov : true, rous : 50, luv : 92, rsp : 90, sat : 60, hap : 0, loc : 0, pref : { cht : false, anl : 0, bk : 0, bi : 0, ex : 0, sq : 0, swg : 0, l : false }, xr : { h : { t : { myd : 0, yrd : 0, bk : 0, n1 : false, bd1 : false, fkr1 : false, fkr2 : false, fkr3 : false }, day: { tdy : 0, ckdy : 0, cmdy : false, ros : false, msg : 0, bch : false, gmz : 0, t : { myd : false, yrd : false, bk : false, sxy : false, sdc : false } }, cm : 0, ed : 0, ros : 0, rom : 0, rel : { m : true, swg : false, opn : false, cuk : false } }, br : { x : 0, cm : 0, cht : false, shr : false, cuk : false, evt : { d1 : false, on: false, loc : 9, stay : 8, slp : false, done : false, last : false } }, sh : { m : false, rel : 0, x : 0, cm : 0, cht : false, shr : false }, rd : { vd : false, m : false, x : 0, cm : 0, a : 0, dp : 0 }, rk : { x : 0, cm : 0 }, cas : { m : false, x : 0, cm : 0 }, bc : { m : false, x : 0, cm : 0 }, ab : { m : false, x : 0, cm : 0 }, le : { x : 0, cm : 0, wcm : 0 } }, evt : { wrt : 0, prk : 0, sgr : 0, cht : 0, msg : 0, clo : 0, cof : 0, fkr1 : {a : false,b : false}, fkr2 : {a : false,b : false}, fkr3 : {a : false,b : false} }, tox : { drk : 0, wd : 0, cig : 0, cgaddict : false } }>> /* Home */ <<set $alarm to 7>> <<set $Bank to random(4000,5500)>> <<set $Rent to 1000>> /* SEX SYSTEM */ <<addclass "#right-ui-bar" "stowed">> <<set $Partner1Name to "">> <<set $Partner2Name to "">> <<set $Partner3Name to "">> /* meters */ <<newmeter 'POVCumBar' 0>> <<colors '#990000' '#6699CC'>> <<sizing '100%'>> <<label '$POVCumPoints / 100'>> <</newmeter>> <<newmeter 'NPCCumBar' 0>> <<colors '#990000' '#66CC66'>> <<sizing '100%'>> <<label '$NPCCumPoints / 100'>> <</newmeter>> <<newmeter 'NPC2CumBar' 0>> <<colors '#FF0000' '#FFFF00'>> <<sizing '100%'>> <<label '$NPC2CumPoints / 100'>> <</newmeter>> <<newmeter 'NPC3CumBar' 0>> <<colors '#FF0000' '#FFFF00'>> <<sizing '100%'>> <<label '$NPC3CumPoints / 100'>> <</newmeter>> /* calls / texts */ <<set $incalls to { }>> <<set $intexts to { br : { a : false /* bar invite */ }, rd : { a : false /* boss vids */ } }>> <<set $outcalls to { }>> <<set $outtexts to { w : { a : false /* brian bar */ } }>> /* save dates */ <<set $dtsv to { rel : 0 }>> /* fuckr */ <<set $fkr to { ch : 0, lk : "", dis : "", ff : "", n : "" }>>
<<if $w.loc is 1>> <<include [[Bath_WithWifeBase]]>> <<elseif $w.xr.br.evt.loc is 1>> <<include [[Bath_Brian]]>> <<else>> <<include [[Bath_AloneBase]]>> <</if>>
<<nobr>> <<if $w.xr.br.evt.loc is 5>> <<randompic 1 18 blr>> <<else>> [img[images/livingroom.jpg]] <</if>> <</nobr>> The Living Room is the centerpiece to every apartment. This is where we spend a lot of our time. Watching TV, playing video games, hanging out with friends, talking, napping, reading . . . whatever. \ <<if $w.xr.br.evt.loc is 5>><br>Brian is doing something here in the Living Room. It sure is cool having him around this week!<br><</if>>\ !!!What do you want to do? [[Relax on the couch for an hour|LR_Alone_CouchRelax]] [[Play video games|PlayGamesMain]] [[Watch TV|TV_AloneMain]] <<if hasVisited("1stSatBeach8") and GameDays[$gameDate.getDay()] is "Sat" and $gameDate.getHours() lte 11 and $gameDate.getHours() gte 9>>[['Invite ' + $w.fn + ' to the Beach'|StdBeachStart1A]]<br><</if>>\ !!!Where do you want to go? [[Master bedroom|MasterBedroomMain]]\ <<if $w.loc is 0>><<= ' <-- $w.fn'>><</if>>\ <<if $w.xr.br.evt.loc is 0>><<= ' <-- Brian'>><</if>> [[Bathroom|BathroomMain]]\ <<if $w.loc is 1>><<= ' <-- $w.fn'>><</if>>\ <<if $w.xr.br.evt.loc is 1>><<= ' <-- Brian'>><</if>> [[Kitchen|KitchenMain]]\ <<if $w.loc is 2>><<= ' <-- $w.fn'>><</if>>\ <<if $w.xr.br.evt.loc is 2>><<= ' <-- Brian'>><</if>> [[Guest Room|GuestRoomMain]]\ <<if $w.loc is 3>><<= ' <-- $w.fn'>><</if>>\ <<if $w.xr.br.evt.loc is 3>><<= ' <-- Brian'>><</if>> [[Balcony|BalconyMain]]\ <<if $w.loc is 4>><<= ' <-- $w.fn'>><</if>>\ <<if $w.xr.br.evt.loc is 4>><<= ' <-- Brian'>><</if>> ''[[Leave apartment|AptBuildingHallwayMain]]''\
<<randompic 1 19 wlr_basic>> The Living Room is the centerpiece of every apartment. This is where we spend a lot of our time. Watching TV, playing video games, hanging out with friends, talking, napping, reading . . . whatever. <<nobr>> <<if _img lte 10>> $w.fn is just relaxing right now. I love her so much! <<else>> $w.fn is sitting in the Living Room. It looks like she's working on her book. I hope she is making good progress! <</if>> <</nobr>> !!!What do you want to do? [[Relax on the couch for an hour|LR_Alone_CouchRelax]] [[Play video games|PlayGamesMain]] [[Watch TV|TV_WifeMain]] [['Talk to ' + $w.fn|LR_WifeTalkMain]] <<if hasVisited("1stSatBeach8") and GameDays[$gameDate.getDay()] is "Sat" and $gameDate.getHours() lte 11 and $gameDate.getHours() gte 9>>[['Invite ' + $w.fn + ' to the Beach'|StdBeachStart1]]<br><</if>>\ !!!Where do you want to go? [[Master bedroom|MasterBedroomMain]] [[Bathroom|BathroomMain]]\ <<if $w.xr.br.evt.loc is 1>><<= ' <-- Brian'>><</if>> [[Kitchen|KitchenMain]]\ <<if $w.xr.br.evt.loc is 2>><<= ' <-- Brian'>><</if>> [[Guest Room|GuestRoomMain]]\ <<if $w.xr.br.evt.loc is 3>><<= ' <-- Brian'>><</if>> [[Balcony|BalconyMain]]\ <<if $w.xr.br.evt.loc is 4>><<= ' <-- Brian'>><</if>> ''[[Leave apartment|AptBuildingHallwayMain]]''\
[img[images/bedroommain.jpg]] Our apartment is pretty modest, but $w.fn really put in the effort to make things as nice as she could. Our bedroom is as comfortable as it could possibly be. She even made the effort to decorate it in a gender-neutral way . . . not so feminine that I would feel out of place. (//God, she is the best!//) <<nobr>> <<if (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed" or GameDays[$gameDate.getDay()] is "Fri") and $gameDate.getHours() lt 8>>''I have to be at work by 8am!'' (I should catch the bus in front of the building by 7:30am. . . )<br><br> <<elseif (GameDays[$gameDate.getDay()] is "Tue" or GameDays[$gameDate.getDay()] is "Thu") and $gameDate.getHours() lt 8>>''I have to be at work on my computer by 8am!'' //Thank goodness I only have to telework today. . . //<br><br> <</if>> <</nobr>>\ !!!What do you want to do? [[Take a short nap (1 hour)|BRAlone_Nap]] [[Set your Alarm Clock|AlarmClockSet]] <<if $gameDate.getHours() gte 20 or $gameDate.getHours() lte 5>>[[Go to sleep for the night|BR_Sleep]]<br><</if>>\ !!!Where do you want to go? [[Living Room|LivingRoomMain]]\
<<nobr>> <<if $gameDate.getHours() is 23>> <<randompic 1 4 wbedreading>><br><br> //Looks like $w.fn is reading before she goes to sleep. It seems like a good way to wind down at the end of the day, I guess. I've never been much of a recreational reader, though.// <<elseif $gameDate.getHours() lt 9>> <<randompic 1 10 wasleep>><br><br> $w.fn is still sleeping. I should try not to wake her up . . . <<else>> <<include [[BR_WithWifeAwakeBase]]>> <</if>> <</nobr>> !!!What do you want to do? <<if $gameDate.getHours() gte 9 and $w.xr.h.day.msg lte 3>>[['Offer ' + $w.fn + ' a massage'|BR_MassageBase]]<br><</if>>\ [[Take a short nap (1 hour)|BRAlone_Nap]] [[Set your Alarm Clock|AlarmClockSet]] <<if $gameDate.getHours() gte 9>>[['Talk to ' + $w.fn|BR_TalkWifeStd]]<br><</if>>\ <<if $gameDate.getHours() gte 20 or $gameDate.getHours() lte 5>>[[Go to sleep for the night|BR_Sleep]]<br><</if>>\ !!!Where do you want to go? [[Living Room|LivingRoomMain]]
[img[images/bathroom1.jpg]] !!!What do you want to do? [[Take a quick shower|Bath_AloneShowerQuick]] [[Take a longer shower|Bath_AloneShowerLong]] !!!Where do you want to go? [[Back to the Living Room|LivingRoomMain]]\
<<nobr>> [img[images/doorclosed.jpg]] <<set _locked to random(1,2)>> <</nobr>> It sounds like the shower is running. $w.fn must be in the bathroom. //She takes a shower around the same time almost every night. I'm not really sure why I am surprised....// !!!What do you want to do? <<if $w.xr.br.evt.loc isnot 1>>[[Knock on the door|Bath_WithWife_Knock]]<br><</if>>\ <<nobr>> <<if $w.xr.br.evt.loc is 1 and _locked is 2>> [[Poke your head in and take a look|Bath_WB_Peek]] <<elseif $w.xr.br.evt.loc is 1 and _locked is 1>> [[Poke your head in and take a look|Bath_WB_Peek_Locked]] <<elseif _locked is 1>> [[Poke your head in and take a look|Bath_WithWife_Locked]] <<elseif _locked is 2>> [[Poke your head in and take a look|Bath_WithWife_Peek]] <</if>> <</nobr>> !!!Where do you want to go? [[Back to the Living Room|LivingRoomMain]]\
[img[images/kitchen1.jpg]] Both $w.fn and I love to cook, so having a decent kitchen was a must when we were looking at homes. This one may not be professional-grade, but it was perfect for us. !!!What do you want to do? [[Grab a cup of coffee|K_AloneCoffee]] [[Grab a quick snack|K_AloneSnack]] !!!Where do you want to go? [[Living Room|LivingRoomMain]]\
<<if $gameDate.getHours() is 9 and $gameDate.getMinutes() lte 30>> /* coffee */ <<include [[K_WithWifeCoffeeTime]]>> <<elseif $gameDate.getHours() gte 12 and $gameDate.getHours() lte 13>> /* eating lunch */ <<include [[K_WithWifeLunch]]>> <<elseif $gameDate.getHours() gte 17 and $gameDate.getHours() lt 18>> /* cooking dinner */ <<include [[K_WithWifeCooking]]>> <<elseif $gameDate.getHours() gte 18 and $gameDate.getHours() lt 19>> /* dinner */ <<include [[K_WithWifeDinner]]>> <<elseif $gameDate.getHours() gte 19 and $gameDate.getHours() lt 20>> /* dishes */ <<include [[K_WithWifeDishes]]>> <<else>> <<include [[K_WithWifeBase]]>> <</if>>
[img[images/grbase1.jpg]] !!!What do you want to do? [[Use your laptop|GR_LaptopBase]] [[Take a short nap|GR_AloneNap]] !!!Where do you want to go? [[Living room|LivingRoomMain]]
<<randomvideo 1 4 wgrclean>> !!!What do you want to do? [[Use your laptop|GR_LaptopBase]] [[Take a short nap|GR_AloneNap]] !!!Where do you want to go? [[Living room|LivingRoomMain]]\
[img[images/aptbuildinghall1.jpg]] Sometimes I felt like that little boy on //The Shining// when I walked through the hallways of our apartment building. I'm not quite sure how I did it, but I always managed to find myself at my front door (or outside if that's the direction I was heading). Occasionally I also took the time to visit the building's ''Gym'' or ''Roof deck'', a couple of the building's amenities. If $w.fn was pissed at me, I might even have to visit the ''Laundry room''. <h3>What do you want to do?</h3> //There is nothing to do here at the moment.//<br> <br> <h3>Where do you want to go?</h3> ''[[Enter your apartment|LivingRoomMain]]''<br> <<if not tags().includes("HusbandPOV")>>[[Laundry room|AptLaundryRmMain]]<br><<else>>Laundry room -- //coming soon//<br><</if>> <<if not tags().includes("HusbandPOV")>>[[Gym|AptGymMain]]<br><<else>>Gym -- //coming soon//<br><</if>> <<if not tags().includes("HusbandPOV")>>[[Roof deck|AptRoofDeckMain]]<br><<else>>Roof deck -- //coming soon//<br><</if>><br> <<link [[Go outside|HomeStreetMain]]>> <<addminutes 5>> <</link>><br>
<<nobr>> <<randompic 1 8 hcouchrelax>> <<addminutes 60>> <</nobr>> //Sometimes you just need to relax for a bit . . . .// [[Get up, ya lazy asshole!|LivingRoomMain]]\
<<nobr>> <<randompic 1 5 hlrtv>> <<addhours 1>> <</nobr>> //1000 channels and barely anything good on TV . . . Wait, am I still paying for cable? When's the last time I watched something on cable?// [[Do something else|LivingRoomMain]]\
<<if $w.loc is 4 and $w.xr.br.evt.loc is 4>> <<include [[Balcony_WifeBriBase]]>> <<elseif $w.loc isnot 4 and $w.xr.br.evt.loc is 4>> <<include [[Balcony_BrianBase]]>> <<elseif $w.loc is 4>> <<include [[Balcony_WithWifeBase]]>> <<else>> <<include [[Balcony_HAloneBase]]>> <</if>>
<<if $w.loc is 5 and $w.xr.br.evt.loc is 5>> <<set _scene to random(1,3)>> <<if _scene is 2>> <<randompic 1 3 wb_lrgaming>> <<set _playwith to "with Brian">> <<else>> <<randompic 1 4 hlrgaming>> <<set _playwith to "by myself">> <</if>> <<elseif $w.loc is 5>> <<set _scene to random(1,3)>> <<if _scene is 2>> <<if $w.hap gte 75>> <<randompic 1 3 wh_lrgaming>> <<set $w.xr.h.day.tdy += 1>> <<set _playwith to "with " + $w.fn>> <<else>> <<randompic 4 7 wh_lrgaming>> <<set $w.xr.h.day.tdy -= 1>> <<set _playwith to "with " + $w.fn>> <</if>> <<else>> <<randompic 1 4 hlrgaming>> <<set _playwith to "by myself">> <</if>> <<elseif $w.loc isnot 5 and $w.xr.br.evt.loc is 5>> <<set _scene to random(1,3)>> <<if _scene is 2>> <<randompic 1 6 hb_lrgaming>> <<set _playwith to "with Brian">> <<else>> <<randompic 1 4 hlrgaming>> <<set _playwith to "by myself">> <</if>> <<else>> <<randompic 1 4 hlrgaming>> <<set _playwith to "by myself">> <</if>> <<addminutes 60>> <br><br> I spent about an hour playing video games <<= _playwith>>. It was fun but I should probably go find something a bit more productive to do.<br><br> [[Continue|LivingRoomMain][$w.xr.h.day.gmz += 1]]\
<<include [[AptLaundryRmHAloneBase]]>>
<<include [[AptGymAloneBase]]>>
<<include [[AptRoofDeckAloneBase]]>>
<<if visited() lte 1>> <<include [[HomeStreet_Intro]]>> <<else>> <<include [[HomeStreetBase]]>> <</if>>
<<randompic 1 4 hbalcony>> From my perch here on the balcony of our apartment, I could see pretty far up and down the city streets. We were'nt quite high enough to say that the people below looked like ants, but they definitely looked like smaller people . . . . !!!What do you want to do? [[Hang out for a little (30 minutes)|Balcony_HAlone2]] <<if $cigarettes gt 0>>[[Smoke a cigarette|Balcony_HSmoke]]<br><</if>>\ !!!Where do you want to go? [[Living room|LivingRoomMain]]\
<<nobr>> <<set $w.pref.ex += 0.1>> <<addminutes 15>> [img[images/wbalcony1.jpg]] <</nobr>> Seeing my wife highlighted by the sunshine reminded me just how beautiful she truly was in my eyes. "What are you doing, baby?" I asked. "Nothing much," she responded. "Just getting some fresh air and thinking. The sounds of the city <<if $gameDate.getHours() lt 20>>in the daytime<<else>>at night<</if>> can really inspire me sometimes." "OK, well, I'll let you have some time alone to think, then . . . I love you." "Love you too . . . ." !!!What do you want to do? //Nothing// !!!Where do you want to go? [[Living Room|LivingRoomMain]]
<<randompic 1 6 whlrtalk>> <<include [[WTalkOptions]]>> [[Never mind|LivingRoomMain]]
<<randompic 1 19 wlr_basic>> "Hey, baby . . . you want to watch a movie?" "Sure, what kind?" <div id="watch"><<nobr>> <<link "Action?">> <<set $w.rous -= 10>> <<set $w.xr.h.day.tdy -= 2>> <<replace "#watch">> "Action?" I suggested.<br><br> "Sure, that's fine," she replied.<br><br> [['Watch the movie with ' + $w.fn|TV_WifeWatch]] <</replace>> <</link>><br> <<link "Comedy?">> <<set $w.xr.h.day.tdy += 1>> <<replace "#watch">> "Comedy?" I suggested.<br><br> "Sure, that's fine," she replied.<br><br> [['Watch the movie with ' + $w.fn|TV_WifeWatch]] <</replace>> <</link>><br> <<link "Horror?">> <<set $w.rous += 5>> <<set $w.xr.h.day.tdy += 1>> <<replace "#watch">> "Horror?" I suggested.<br><br> "Sure, that's fine," she replied.<br><br> [['Watch the movie with ' + $w.fn|TV_WifeWatch]] <</replace>> <</link>><br> <<link "Romance?">> <<set $w.rous += 10>> <<set $w.xr.h.day.tdy += 2>> <<replace "#watch">> "Romance?" I suggested.<br><br> "Sure, that's fine," she replied.<br><br> [['Watch the movie with ' + $w.fn|TV_WifeWatch]] <</replace>> <</link>> <</nobr>></div>\
<<randompic 1 6 wcoffee>> //Oh! Looks like $w.fn is also enjoying a cup of coffee. Do I have time to join her for a cup or should I just grab a cup and leave her alone?// !!!What do you want to do? [['Join ' + $w.fn + ' for a cup of coffee'|K_WifeJoinCoffee]] [[Grab a cup of coffee alone|K_AloneCoffee]] !!!Where do you want to go? [[Living Room|LivingRoomMain]]\
<<nobr>> <<set _scene to random(1,5)>> <<if _scene is 1>> <<randompic 1 6 wdishes>> <<elseif _scene gte 2 and _scene lte 4>> <<randompic 1 10 wkwriting>> <<set $w.evt.wrt += 1>> <<elseif _scene is 5>> <<randompic 1 13 wkeating>> <</if>> <</nobr>> !!!What do you want to do? [[Grab a bite to eat|K_WEatLunch]] <<if $gameDate.getHours() is 12>>[['Take ' + $w.fn + ' out to lunch'|WH_LunchDateStart]]<br><</if>>\ !!!Where do you want to go? [[Living Room|LivingRoomMain]]
<<nobr>> <<if $h.tox.drk gte 2>> <<goto [[K_WithWifeDrunk]]>> <<else>> <<set _img to random(1,5)>> <<if _img lte 3>> <<randompic 1 6 wcooking>> <<else>> <<showvideo wcooking7>> <</if>> <</if>> <</nobr>> $w.fn is making dinner . . . . //It smells delicious!// !!!What do you want to do? <<link [['Wait for ' + $w.fn + ' to finish'|KitchenMain]]>> <<run $gameDate.setHours(18)>> <<run $gameDate.setMinutes(0)>> <</link>> [['Give ' + $w.fn + ' a hand'|K_WithWifeCookingHelp]] <<if hasVisited("BR_Sleep") and not ($w.evt.fkr1.b and not ($w.xr.h.t.fkr1 or $w.pref.cht)) and not ($w.evt.fkr2.b and not ($w.xr.h.t.fkr2 or $w.pref.cht)) and not (hasVisited("SwingPathStart_A2") and not $w.xr.h.t.swg1) and not ($w.xr.h.t.swg1 and not hasVisited("Swing1_Start") and GameDays[$gameDate.getDay()] is "Sat")>>[['Take ' + $w.fn + ' out to dinner'|WH_DinnerDateStart]]<br><</if>>\ !!!Where do you want to go? [[Back to the Living Room|LivingRoomMain]]\
<<randompic 1 7 dinner>> $w.fn and I sat down at the table to eat. !!!What do you want to do? [[Eat in silence|K_WifeDinnerSilence]] [['Talk to ' + $w.fn|K_WifeDinnerTalkMain]]\
<<randompic 1 5 wdishes>> $w.fn is cleaning up after dinner . . . . !!!What do you want to do? <<link [['Wait for ' + $w.fn + ' to finish'|KitchenMain]]>> <<run $gameDate.setHours(20)>> <<run $gameDate.setMinutes(0)>> <<set $w.xr.h.day.tdy -= 1>> <</link>> [['Give ' + $w.fn + ' a hand'|K_WithWifeDishesHelp]] !!!Where do you want to go? [[Back to the Living Room|LivingRoomMain]]\
<<randompic 1 4 hcoffee>> //Mmmm . . . coffee . . . .// <<nobr>> <<addminutes 20>> [[Continue|KitchenMain]] <</nobr>>\
<<nobr>> <<randompic 1 5 hksnack>> <<addminutes 20>> <</nobr>> A little snack should give me that needed boost of energy to get through the next few hours . . . . [[Continue|KitchenMain]]\
<<nobr>> <<randompic 1 4 hshower>> <<addminutes 15>> <</nobr>> [[Leave|BathroomMain]]\
<<nobr>> <<randompic 1 4 hshower>> <<addminutes 30>> <</nobr>> I had a little bit of extra time, so I decided to take a slightly longer shower than usual. I let the hot water wash over me, losing all sense of time as I relaxed completely. \ <<nobr>> <<if $h.rous gte 80>><br>[[Jerk off|Bath_ShowerMasturbate]]<br><</if>> [[Leave|BathroomMain]] <</nobr>>\
<<showvideo hshowerm1>> <<link [[Get out|BathroomMain]]>> <<addminutes 10>> <<set $h.rous -= 20>> <</link>>\
/* ========================================================== */ /* variable adds */ <<if not $intexts.rd>><<set $intexts.rd to {a : false}>><</if>> <<if ndef $w.xr.h.day.msg>><<set $w.xr.h.day.msg to 0>><</if>> <<if ndef $h.evt.bch>><<set $h.evt.bch to {go : false, prog : 0}>><</if>> <<if ndef $phone>><<set $phone to {gallery : []}>><</if>> /* ========================================================== */ /* call triggers */ /* ========================================================== */ /* text triggers */ <<if GameDays[$gameDate.getDay()] is "Fri" and $gameDate.getHours() gte 16 and not $intexts.br.a and ($w.evt.fkr1.b or $w.evt.fkr2.b or $w.evt.fkr3.b or $w.sat lte 45)>> /* brian bar invite */ <<set $incomingtext to true>> <<elseif hasVisited("BossVidMore") and not $intexts.rd.a and $gameDate.getHours() gte 20 and tags().includes("LivingRoom") and ($w.xr.br.evt.last or not $w.xr.br.evt.on)>> <<set $incomingtext to true>> <<elseif $intexts.rd.a and not $intexts.rd.b and GameDays[$gameDate.getDay()] is "Mon" and $gameDate.getHours() gte 20 and $dtsv.rdatxt isnot $gameDate.getDate() and tags().includes("LivingRoom") and ($w.xr.br.evt.last or not $w.xr.br.evt.on)>> <<set $incomingtext to true>> <<elseif (not tags().includes("AtHome")) and (tags().includes("HusbandPOV")) and ($h.xr.w.slf lt 24 or ndef $h.xr.w.slf) and ($dtsv.wfin isnot $gameDate.getDate()) and hasVisited("MasterBedroomMain") and $gameDate.getHours() gte 10 and (not tags().includes("MenuPassage")) and (not tags().includes("HisPhone")) and (not tags().includes("EventPassage")) and (not tags().includes("AptHallway")) and (not tags().includes("HomeStreet"))>> <<set _waifu to random(1,80)>> <<if _waifu gte 69>> <<set $inwifetxt to true>> <<set $incomingtext to true>> <</if>> <</if>> /* ========================================================== */ /* pay day */ <<if GameDays[$gameDate.getDay()] is "Fri" and $gameDate.getHours() gte 17>> <<if $payday isnot $gameDate.getDate()>> <<set $Bank += 1200>> <<set $payday to $gameDate.getDate()>> <<set $h.evt.wk.w to 0>> <</if>> <</if>> /* ========================================================== */ /* pov name - keep this last */ <<if tags().includes("HusbandPOV")>><h2 style="color:#234099;">$h.fn $h.ln</h2><hr style="border: 1px solid #234099;"> <<elseif tags().includes("WifePOV")>><h2 style="color:#ff66ff;">$w.fn $w.ln</h2><hr style="border: 1px solid #ff66ff;"> <</if>>
/* ========================================================== */ /* Stats adjustment */ <<set $h.rous to Math.clamp($h.rous,0,1000)>> <<set $w.rous to Math.clamp($w.rous,0,1000)>> <<if $w.sat lt 60 and $w.hap lt 65>> <<set $w.pref.cht to true>> <</if>> <<if not tags().includes("EventPassage") and not tags().includes("SexPassage")>> <<if $w.xr.h.day.ckdy isnot $gameDate.getDate()>> <<if $w.xr.h.day.tdy lt 5 and not $w.xr.h.day.cmdy>> <<set $w.luv -= 1>> <<set $w.rsp -= 1>> <<if $w.rous gte 100>> <<set $w.sat to Math.round($w.sat - ($w.rous / 100))>> <</if>> <<elseif $w.xr.h.day.tdy gte 5 and not $w.xr.h.day.cmdy>> <<if $w.rous gte 150>> <<set $w.sat to Math.round($w.sat - ($w.rous / 150))>> <</if>> <<elseif $w.xr.h.day.cmdy and $w.xr.h.day.tdy lt 10>> <<if $w.rous lt 120>> <<set $w.sat += 1>> <</if>> <<elseif $w.xr.h.day.cmdy and $w.xr.h.day.tdy gte 10>> <<set $w.luv += 1>> <<if $w.rous lt 120>> <<set $w.sat += 2>> <</if>> <</if>> <<if $w.xr.h.day.gmz gt 5>><<set $w.rsp -= 1>><</if>> <<set $w.xr.h.day to {tdy : 0, cmdy : false, ros : false, bch : false, msg : 0, gmz : 0, t : {myd : false, yrd : false, bk : false, sxy : false, sdc : false}}>> <<set $w.xr.sh.daylch to false>> <<if $h.rous gte 120>><<set $h.rous to Math.round($h.rous * 0.85)>><</if>> <<if $w.rous gte 120>><<set $w.rous to Math.round($w.rous * 0.85)>><</if>> <<if $w.xr.br.evt.on and not $w.xr.br.evt.done and $w.xr.br.evt.stay gt 0>><<set $w.xr.br.evt.stay -= 1>> <<elseif $w.xr.br.evt.on and not $w.xr.br.evt.done>><<set $w.xr.br.evt.done to true>> <</if>> <<set $w.xr.h.day.ckdy to $gameDate.getDate()>> <</if>> <</if>> <<set $w.luv to Math.clamp($w.luv,0,100)>> <<set $w.rsp to Math.clamp($w.rsp,0,100)>> <<set $w.sat to Math.clamp($w.sat,0,100)>> <<set $w.hap to Math.round(($w.luv * 0.4) + ($w.rsp * 0.25) + ($w.sat * 0.35))>> /* ========================================================== */ /* Intoxication */ <<if $h.tox.drk gt 0>> <<if ndef $HDrinkTime>> <<set $HDrinkTime to $gameDate.getHours()>> <</if>> <<if $gameDate.getHours() isnot $HDrinkTime>> /* sober up from 1/2 drink per hour */ <<set $h.tox.drk -= 0.5>> <<set $HDrinkTime to $gameDate.getHours()>> <</if>> <<elseif $h.tox.drk is 0>> <<unset $HDrinkTime>> <</if>> <<if $h.tox.wd gt 0>> <<if ndef $HSmokeWeedTime>> <<set $HSmokeWeedTime to $gameDate.getHours()>> <</if>> <<if $gameDate.getHours() isnot $HSmokeWeedTime>> <<set $h.tox.wd -= 0.5>> <<set $HSmokeWeedTime to $gameDate.getHours()>> <</if>> <<elseif $h.tox.wd is 0>> <<unset $HSmokeWeedTime>> <</if>> <<if $w.tox.drk gt 0>> <<if ndef $WDrinkTime>> <<set $WDrinkTime to $gameDate.getHours()>> <</if>> <<if $gameDate.getHours() isnot $WDrinkTime>> <<set $w.tox.drk -= 0.5>> <<set $WDrinkTime to $gameDate.getHours()>> <</if>> <<elseif $w.tox.drk is 0>> <<unset $WDrinkTime>> <</if>> <<if $w.tox.wd gt 0>> <<if ndef $WSmokeWeedTime>> <<set $WSmokeWeedTime to $gameDate.getHours()>> <</if>> <<if $gameDate.getHours() isnot $WSmokeWeedTime>> <<set $w.tox.wd -= 0.5>> <<set $WSmokeWeedTime to $gameDate.getHours()>> <</if>> <<elseif $w.tox.wd is 0>> <<unset $WSmokeWeedTime>> <</if>> /* ========================================================== */
//And then the pandemic hit us. The whole city shut down. [img[images/preface3.jpg]] I was able to telework everyday, so--unlike a lot of less fortunate people--our financial situation remained stable. We even saved a little bit of money, since I didn't have to ride the bus to work and we ate every meal at home. Things were great those first few weeks. Spending all our time together. Newlyweds, happy, in love, starting off our new life together. . . I don't know. Maybe we were spending too much time together. Maybe the anxiety and uncertainty about the state of the world started getting to us. But the "honeymoon phase" of our marriage seemed to end a bit prematurely. [img[images/preface4.jpg]] It started slowly. We stopped spending all of our time together, instead finding ourselves in different rooms, relaxing alone instead of with each other. Occasionally, she would snap at me or I would snap at her over something little. Since the lock-downs ended, things have gotten a bit better. ''I take the bus to my Office on Mondays, Wednesdays, and Fridays, and telework on Tuesdays and Thursdays.'' I think just having that little bit of time away from each other has helped our relationship a lot, as funny as that sounds. // <<nobr>> <<if $w.pov>>[[Continue|WPreface2]] <<else>>[[Wake up|Preface3]] <</if>> <</nobr>>
<h3>What do you want to do?</h3> <<if (GameDays[$gameDate.getDay()] is "Tue" or GameDays[$gameDate.getDay()] is "Thu") and $gameDate.getHours() gte 8 and $gameDate.getHours() lt 12>> ''[[Telework until lunch|GR_TeleworkA]]'' (work from 8am to 5pm - lunch from 12pm to 1pm)<br> <<elseif (GameDays[$gameDate.getDay()] is "Tue" or GameDays[$gameDate.getDay()] is "Thu") and $gameDate.getHours() is 12>> //Lunch break!// (work from 8am to 5pm - lunch from 12pm to 1pm)<br> <<elseif (GameDays[$gameDate.getDay()] is "Tue" or GameDays[$gameDate.getDay()] is "Thu") and $gameDate.getHours() gte 13 and $gameDate.getHours() lt 17>> ''[[Telework the rest of the day|GR_TeleworkB]]'' (work from 8am to 5pm - lunch from 12pm to 1pm)<br> <</if>> [[Research something . . .|GR_LaptopResearchBase]]<br> [[Shop|GR_LaptopShopBase]]<br> [[Watch a video|GR_LaptopVideoA]]<br> ''[[Turn off the laptop|GuestRoomMain]]''
<<nobr>> <<randompic 1 3 hbrnap>> <<addhours 1>> <</nobr>> //Sometimes you just need a little nap . . .// [[Get up|GuestRoomMain]]
<<randompic 1 6 telework>> <<nobr>> <<run $gameDate.setHours(12)>> <<run $gameDate.setMinutes(0)>> <<if $w.pov>> [[Continue|Meanwhile_Selector][$nextpassage to "GuestRoomMain"]] <<else>> <<link [[Time to break for lunch!|GuestRoomMain]]>> <<wpovstats>> <</link>> <</if>> <</nobr>>\
!!!What do you want to research? <<if not hasVisited("GR_LaptopResearchSpice") and $w.xr.h.t.n1>>[['"How to Spice Up Your Sex Life"'|GR_LaptopResearchSpice]]\ <<elseif hasVisited("GR_LaptopResearchSpice")>>\ <<if visited("GR_LaptopResearchOpen") lte 7 and not hasVisited("WTalk_Relat1")>>[[Open marriages|GR_LaptopResearchOpen]]<br><</if>>\ <<if visited("GR_LaptopResearchCuck") lte 12 and not hasVisited("WTalk_Relat1")>>[[What's a cuckold?|GR_LaptopResearchCuck]]<br><</if>>\ <<if visited("GR_LaptopResearchComp") lte 5 and not hasVisited("WTalk_Relat1")>>[[What's compersion?|GR_LaptopResearchComp]]<br><</if>>\ <<if $w.evt.cht gt 0 and not hasVisited("GR_LaptopResearchWCheat")>>[[Signs your spouse is cheating|GR_LaptopResearchWCheat]]<br><</if>>\ <<if $h.evt.cht gt 0 and not hasVisited("GR_LaptopResearchHCheat")>>[[How to get away with cheating|GR_LaptopResearchHCheat]]<br><</if>>\ <<else>> //Nothing important comes to mind . . .// <</if>> ---- [[Do something else|GR_LaptopBase]]
!!!Where do you want to shop? //Coming soon// \ <<nobr>> /* <<if hasVisited("GR_LaptopResearchSpice")>>[[Alice and Steve Adult Toys|GR_LaptopShopToysMain]]<br><</if>>\ <<if $vacation>>[[Caribbean Travel Agency|GR_LaptopShopTravelMain]]<br><</if>>\ */ <</nobr>> [[Do something else|GR_LaptopBase]]
!!!What do you want to watch? [[Something stupidt|GRLaptopVideoB][$vidchoice to 0]] [[Something smart|GRLaptopVideoB][$vidchoice to 1]] [[Something sexy|GR_LaptopPorn]]
<<randompic 1 4 hcooking>> <<if previous() isnot "WH_DinnerDateStart">>"Let me give you a hand with that babe," I offered. "Well aren't you being sweet," she winked at me. "What, are you trying to get some tonight?"<br><</if>>\ $w.fn and I worked together to finish prepping and cooking our dinner. We started doing this during the lockdown, when we were home together every night. It was so nice that we still did it pretty often, though not nearly as much as we used to, if I must be honest. Finally, as she put the finishing touches on the food, I set the table with our silverware and drinks. \ <<nobr>> <<run $gameDate.setHours(18)>> <<run $gameDate.setMinutes(0)>> <<set $w.xr.h.day.tdy += 2>> <</nobr>>\ [[Finish cooking and serve dinner|KitchenMain]]\
<<nobr>> <<run $gameDate.setHours(19)>> <<randompic 1 3 talk_whk>> <</nobr>> <<include [[WTalkOptions]]>> [[Finish eating|KitchenMain]]\
<<nobr>> <<run $gameDate.setHours(19)>> <<set $w.xr.h.day.tdy -= 2>> <<set $w.luv -= 0.25>> <<randompic 1 7 dinner>> <</nobr>> For some reason, neither I nor $w.fn spoke a word during dinner. The silence hung awkward in the air, but I just continued to enjoy my food. //Sure, dinner might be the perfect time for us to maintain a good relationship just by spending time together and talking about our days//, I thought. //But I guess I'm not interested in doing that today . . . .// [[Finish eating|KitchenMain]]\
<<if $gameDate.getHours() lt 12>> <<include [[OfficeAM1]]>> <<elseif $gameDate.getHours() gt 13 and $gameDate.getHours() lt 17>> <<include [[OfficePM1]]>> <</if>>
//$h.fn came on so strong at first, but he was //so// sweet. I decided to give him a chance. He was safe, unlike the guys I usually hooked up with before I met him. He never really asked about my history. I guess he just kinda assumed that //SMART// = //CHASTE//. He asked how many boyfriends I had--and there were only two "capital-B" Boyfriends before him--so I was honest with him about that. I just never told him that I hooked up with a few guys that weren't my boyfriends. It's not like it should matter now. We spent all our time together when we weren't in class. He supported my writing, which was the most important thing for me. And we had a lot of fun together. [img[images/wpreface1.jpg]] The sex wasn't great, to be honest. But what he lacked in the size department, he made up for with his enthusiasm. After a while, I was almost able to convince myself that the fake orgasms were real. After all, I loved him. //Love// him. Still do. He was good enough for me. He was kind to me, never lied to me. He made me feel like a princess in a fantasy. But I didn't think about what would happen if the fantasy ever clashed with reality. He proposed to me right after graduation. It made sense. We had been together more than two years at that point, after all. He had his MBA and was getting his foot in the door at a great company. We would have a good life together. [img[images/preface2.jpg]] // [[Continue|Preface2]]
<<if $w.rous gte 100 and $w.hap gte 80>> <<set _scene to random(1,5)>> <<else>> <<set _scene to 0>> <</if>> <<if _scene is 3 and not ($w.evt.fkr1.a and not $w.evt.fkr1.b) and not ($w.evt.fkr2.a and not $w.evt.fkr2.b)>> <<include [[GR_TWVisitA1]]>> <<set $h.evt.wk.w += 1>> <<else>> <<randompic 1 6 telework>> <<set $h.evt.wk.w += 1>> <<run $gameDate.setHours(17)>> <<run $gameDate.setMinutes(0)>> <br><br>I worked for the rest of the day. <<if $w.pov>><br><br> [[Continue|Meanwhile_Selector][$nextpassage to "GuestRoomMain"]] <<else>><br><br> <<link [[Wrap it up for the day|GuestRoomMain]]>> <<wpovstats>> <</link>> <</if>> <</if>>
[img[images/hwaking1.jpg]] //My alarm clock woke me up with just enough time to get ready for work. It will take me about a half hour to get to my Office taking the bus in front of the building. So I should be sure to take a shower and get dressed by 7:30. I don't want to be late!// [[Get out of bed|MasterBedroomMain]]
<<if $gameDate.getHours() lt 6 or $gameDate.getHours() gt 19>>[img[images/aptbuilding_night1.jpg]]\ <<else>>[img[images/aptbuilding_day1.jpg]]<</if>> I'm standing outside our apartment building, so happy with my life here in the city. !!!What do you want to do? //There's nothing to do here at the moment. . . .// !!!Where do you want to go? <<nobr>> <<if (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed" or GameDays[$gameDate.getDay()] is "Fri") and $gameDate.getHours() gte 7 and $gameDate.getHours() lte 15>> ''[[Ride the bus to your office|BusRide2Work]]''<br> <</if>> <</nobr>>\ \ <<if $intexts.br.a and not hasVisited("E1DB2")>>''Enter your building''<<else>>[[Enter your building|AptBuildingHallwayMain]]<</if>> [[Convenience store|ConvenienceStoreMain]] <<if not tags().includes("HusbandPOV")>>[[Liquor store|LiquorStoreMain]]<<else>>Liquor store -- //coming soon//<br><</if>>\ [[Dirty Bones (Dive bar)|DiveBarMain]] <<if not tags().includes("HusbandPOV")>>[[Walk to park|ParkMain]]<<else>>Walk to park -- //coming soon//<br><</if>>\
<<if $intexts.br.a and not hasVisited("E1DB2")>> <<include [[E1DB1]]>> <<elseif ($gameDate.getHours() gte 12) or ($gameDate.getHours() gte 0 and $gameDate.getHours() lt 2)>> <<include [[DiveBarBase]]>> <<else>> <<include [[DiveBarClosed]]>> <</if>>
<<include [[ConvenienceBasic]]>>
<<include [[ParkBase]]>>
<<include [[LiquorSBase]]>>
//Being stuck at home during the pandemic started off great! We were newlyweds, and able to spend all of our time together. Those first few weeks, we had a LOT of sex! The passion and intimacy were so high so soon after our wedding that I even came for real sometimes! /* <center><video src="images/wpreface2.mp4" autoplay loop muted></video></center> */\ <<showvideo wpreface2>> It didn't last long though. Living with him was definitely not everything I had hoped. He almost never helped out with the cooking or cleaning. He didn't call them "women's work" outright, but he also just kinda assumed that I would take care of it all. No, when he finished working for the day, he would just plop down on the couch and watch some idiotic action movie or play video games. Sometimes he would be up so late that he just fell asleep on the couch and never even came to bed with me. And if he invited me to play with him, it wouldn't have even been so bad. I'm not really into games, but it would have at least shown me some desire to spend time with me . . . . [img[images/wpreface3.jpg]] Of course, it killed our sex lives. Even when he came to bed, I was rarely in the mood to sleep with him. Unsatisfied with him--emotionally or physically. Soon I found myself losing patience over little things. The tension grew thick. We started to argue. Something has to change for the better. Soon. // <<link [[Continue|Preface3]]>><<run UIBar.unstow();>><</link>>
<<nobr>> <<randompic 1 3 hbrnap>> <<addhours 1>> <</nobr>> //Sometimes you just need a little nap . . .// [[Get up|MasterBedroomMain]]
<<if not $w.xr.br.evt.slp>> <<if $w.hap gte 70>> <<set _img to random(1,13)>> <<= '[img[images/whsleepcc' + _img + '.jpg]]'>> <<elseif $w.hap gte 45 and $w.hap lt 70>> <<set _img to random(1,10)>> <<= '[img[images/whsleepbc' + _img + '.jpg]]'>> <<elseif $w.hap lt 45>> <<set _img to random(1,9)>> <<= '[img[images/whsleepac' + _img + '.jpg]]'>> <</if>> <<elseif $w.xr.br.evt.slp>> <<randompic 1 10 hsleepalone>> <</if>><br><br> <<timed 2s>> /* Special Events */ <<if $intexts.rd.b and not $w.xr.rd.vd>> <<if $w.pov>> <<timed 2.5s>> <<goto [[WSeeRDVid1]]>> <</timed>> <<else>> <<set $w.xr.rd.vd to true>> <<set $w.rous += 30>> <<include [[BR_SleepEnd]]>> <</if>> /* Standard End */ <<else>> <<include [[BR_SleepEnd]]>> <</if>> <</timed>>
[img[images/doorknock.jpg]] <<nobr>> <<set _scene to random(1,5)>> <<if $w.hap gte 70 and $w.rous gte 50 and _scene gte 4>> <<timed 2.5s>> "Hey, honey. . . you in the shower?" I asked even though the answer was obvious.<br><br> She responded with her typical dead-pan wit. "No, I'm just watching the team right now. I think Coach is gonna put me in for the last play!"<br><br> //Smart-ass. . . //<br><br> "Oh yeah? Looking to score?" I kept the joke going.<br><br> "//Maybe.// Wanna come in and pass me the ball?"<br><br> [[Accept the invitation|Shower_CP_Start]] <</timed>> <<else>> <<timed 2.5s>> <p>"Hey, honey. . . you in the shower?" I asked, even though the answer was obvious.</p> <p>"I'll be out in a second. . . Do you need something?" Her response sounded annoyed.</p> <p>"No, that's fine. It can wait."</p> <p>//It's probably best not to bother her right now.//</p> [[Never mind . . .|LivingRoomMain]] <</timed>> <</if>> <</nobr>>
<div id="door">[img[images/dooropen.jpg]]</div> <<nobr>> <<timed 2s>> <<replace "#pagetext">> //Hmmm. . . the door's locked. Guess she wants a little privacy . . . .//<br><br> <<link "Never mind . . .">> <<set _scene to random(1,5)>> <<if $w.rous gte 100 and $w.pov and _scene gte 3>> <<set $nextpassage to "LivingRoomMain">> <<goto [[MW_WShowerMast1]]>> <<elseif $w.rous gte 50 and not $w.pov and _scene gte 3>> <<set $w.rous -= 20>> <<goto [[LivingRoomMain]]>> <<else>> <<goto [[LivingRoomMain]]>> <</if>> <</link>> <</replace>> <</timed>> <</nobr>>\ <div id="pagetext"></div>\
<<nobr>> <<randompic 1 5 hwksnack>> <<addminutes 20>> <<set $w.xr.h.day.tdy += 1>> <</nobr>> $w.fn was already in the kitchen, so I hung out with her and chatted for a few minutes while I fixed myself a small snack. [[Continue|KitchenMain]]\
<<nobr>> <<randompic 1 6 hwkcoffee>> <<set $w.xr.h.day.tdy += 1>> <<addminutes 20>> <</nobr>> Sometimes $w.fn and I just needed a few minutes to relax and chat about dumb stuff over a cup of coffee. This was one of those times . . . . [[Continue|KitchenMain]]\
<<set _scene to random(1,4)>> <<set _scene to Math.round(_scene * ($w.hap / 100))>> <<if _scene gte 3>> <<randompic 1 9 wbedwrite>><<set $w.evt.wrt += 1>> <<else>> <<randompic 1 5 wbedreading>> <</if>>
<<set _scene to random(1,10)>> <<set _img to random(1,4)>> <<= '[img[images/hbusmorning' + _img + '.jpg]]'>> <<set $h.evt.wk.bus += 1>> <br><br> The morning commute was nothing special. A bunch of fellow cogs on our way to our respective machines . . . . <br><br> <<link [[Get to work|OfficeMain]]>><<addminutes 30>><</link>>
<<randompic 1 7 e1_lr_hang>> "Hey, why don't we play a different game?" I suggested. "What game?" $w.fn asked me. "I don't know . . ." I shrugged. "How about Strip Poker?" $w.fn started laughing. "I mean, sure, we can do that, if you //reaaally// wanna see each other's dicks." She continued, "But I think I have a better idea. I went shopping the other day and got a bunch of new clothes. How about if I do a little sexy fashion show, instead?" Brian looked at me for signs of approval for just a second. "Hell, yeah! No offense, my dude, but I am not all that anxious to see that little white-bread weiner you got there," he added with a chuckle. "Perfect! Go get another round of drinks, babe. I'll go get changed!" $w.fn ran back to the bedroom and I grabbed a few more drinks from the kitchen. <<timed 2s>>\ After a few minutes, $w.fn came back out to the living room in a T-shirt that showed off her sexy, flat tummy and some jeans, with what looked like bikini bottoms sticking out of the top . . . <<randomvideo 1 3 fs1_jeansA>> "What do you guys think?" she asked. "Very cute outfit, $w.fn," Brian responded. "But even sexier model." <<nobr>> <<set $h.rous += 5>> <<addminutes 10>> <</nobr>>\ //<<if $h.pref.wex gt 0 and $w.pref.ex gt 0>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FS1b]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ <<if $h.pref.wex gt 1 or $w.pref.ex gt 1>>[[Next outfit... something hotter!|Event1_FS2][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//\ <</timed>>
<<widget 'showvideo'>> <br><center><video @src="'images/' + _args[0] + '.mp4'" autoplay loop muted></video></center> <</widget>> <<widget 'randomvideo'>> <<set _vidtmp to random(_args[0],_args[1])>> <br><center> <video @src="'images/' + _args[2] + _vidtmp + '.mp4'" autoplay loop muted></video> </center> <</widget>> <<widget 'randompic'>> <<set _imgtmp to random(_args[0],_args[1])>> <<= '[img[images/' + _args[2] + _imgtmp + '.jpg]]'>> <</widget>> <<widget 'printwloc'>> <<if $w.loc is 0>><<= "Master Bedroom">> <<elseif $w.loc is 1>><<= "Bathroom">> <<elseif $w.loc is 2>><<= "Kitchen">> <<elseif $w.loc is 3>><<= "Guest Room">> <<elseif $w.loc is 4>><<= "Balcony">> <<elseif $w.loc is 5>><<= "Living Room">> <<elseif $w.loc is 6>><<= "Laundry Room">> <<elseif $w.loc is 7>><<= "Gym">> <<elseif $w.loc is 8>><<= "Shopping">> <<elseif $w.loc is 9>><<= "Park">> <</if>> <</widget>>
As $w.fn went back to the bedroom to change into another outfit, I headed to the kitchen to grab another round of drinks. I got back to the living room before she got back. "Damn, son, your wife is somethin' else," Brian remarked. $w.fn was back before I had a chance to think about responding. She quickly emptied the drink I had brought her and immediately started to display the clothes she was now wearing. <<randomvideo 1 4 fs2_jeansB>> This time, it was a pair of jeans and a long-sleeved white crop-top that once again showed off her curves and her flat stomach. "Just beautiful, baby," I commented. "Yeah, you like this?" she asked me. She then shifted her attention, "How about you, Brian? Am I keeping you entertained like a proper hostess?" "You know it," he responded. \ <<nobr>> <<set $h.rous += 5>> <<set $w.rous += 5>> <<addminutes 7>> <</nobr>>\ //<<if $h.pref.wex gt 1 and $w.pref.ex gt 1>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FS2b]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ <<if $h.pref.wex gt 2 or $w.pref.ex gt 2>>[[Next outfit... something hotter!|Event1_FS3][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
<<if $w.xr.h.rel.m or $w.pref.l or $w.xr.h.rel.swg>> [[Continue|Event1_FSEnd2]] <<else>> [[Continue|Event1_FSEnd3]] <</if>>
"Come on, give us a little show," I encouraged. "Let's see it from the back!" "Oh, I can definitely do that," she teased. <<showvideo fs1_jeansA4>> "You like that, $h.fn? How about you, Brian?" Brian looked very happy. "Definitely lookin' good, $w.fn!" <<nobr>> <<set $h.rous += 5>> <<set $w.rous += 5>> <<addminutes 3>> <</nobr>>\ //<<if $h.pref.wex gt 1 and $w.pref.ex gt 1>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FS1c]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ <<if $h.pref.wex gt 1 or $w.pref.ex gt 1>>[[Next outfit... something hotter!|Event1_FS2][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
I prodded $w.fn further. "What, that's all you got?" <<showvideo fs1_jeansA5>> "Oh, definitely not," she exclaimed as she started to unbuckle her belt. "Here, take a look at this . . . I also bought a new bikini for the next time we go to the beach." <<randomvideo 6 7 fs1_jeansA>> She slid her pants down her hips a little bit, revealing the front of a thin piece of white fabric, the bottoms of a teeny bikini. //Fuck, my wife is so hot!// "So what do you think of this?" $w.fn asked. "Wanna see it from the back, too?" <<showvideo fs1_jeansA8>> She turned around and wiggled the jeans even further, to show me and Brian her whole ass. I wasn't expecting such a cheeky bikini, but she definitely made it look good! <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 10>> <<addminutes 2>> <</nobr>>\ //<<if $h.pref.wex gt 1 or $w.pref.ex gt 1>>[[Next outfit... something hotter!|Event1_FS2][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
<<randomvideo 5 6 fs2_jeansB>> $w.fn must have interpreted my smile and the lust in my eyes as approval. I'll admit, she was very sexy and progressively turning me on, more and more. Before I even recognized what was happening, she had started to repeat her previous performance, unbuckling her belt and opening her jeans. <<nobr>> <<set $h.rous += 5>> <<set $w.rous += 5>> <<addminutes 3>> <</nobr>>\ //<<if $h.pref.wex gt 2 and $w.pref.ex gt 2>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FS2c]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ <<if $h.pref.wex gt 2 or $w.pref.ex gt 2>>[[Next outfit... something hotter!|Event1_FS3][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
With as much as we had been drinking <<if $h.tox.wd gt 0 or $w.tox.wd gt 0>>and smoking weed <</if>>that night, everything still seemed very normal at this point. We were having a great time, laughing, joking, playing games. $w.fn had never exactly been shy, so this was just a bit of fun showing off. When she returned in a new outfit, I immediately appreciated it. I had to admit just how amazing she looked. <<randomvideo 1 3 fs3_jeansC>> This time, $w.fn was wearing a plain white tee with open shoulders, rolled up so that her sexy stomach continued to show, and //veeerrrryy// short shorts. She danced around a little bit in a silly and cute way. "Hell yeah," Brian encouraged. "Turn around, let's see the back!" <<showvideo fs3_jeansC4>> Even though I hadn't made the request this time, $w.fn was happy to oblige. \ <<nobr>> <<set $h.rous += 5>> <<set $w.rous += 5>> <<addminutes 7>> <</nobr>>\ //<<if $h.pref.wex gt 2 and $w.pref.ex gt 2>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FS3b]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ <<if $h.pref.wex gt 3 or $w.pref.ex gt 3>>[[Next outfit... something hotter!|Event1_FS4][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
<<showvideo fs2_jeansB7>> $w.fn turned around and wriggled her jeans past her hips again. The now-familiar bikini bottoms hid almost none of her beautiful, round ass. Unlike last time, though, she didn't stop at just showing us her ass. This time, she kept going, and completely removed her jeans. <<showvideo fs2_jeansB8>> "Ready for more?" she asked. <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 5>> <<addminutes 2>> <</nobr>>\ //<<if $h.pref.wex gt 2 or $w.pref.ex gt 2>><<link [[Next outfit... something hotter!|Event1_FS3]]>><<set $w.pref.ex += 1>><</link>><br><</if>>\ [[That's enough|Event1_FSEnd]]//
Brian and I continued to laugh and drink a bit more while we waited for the next round of tonight's entertainment. $w.fn returned after a few minutes in a very revealing and extremely sexy outfit. <<randomvideo 1 4 fs4_skirtA>> "This is my 'good little school-girl' outfit," she exclaimed. <<randomvideo 5 7 fs4_skirtA>> "Where did you get that?" I asked. "I wore this for Halloween one year in college. //Before we met//, obviously . . . ." //What exactly was she getting into before we met? Guess I never really thought about it//, I thought. //Maybe I should ask her at some point.// \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 5>> <<addminutes 7>> <</nobr>>\ //<<if $h.pref.wex gt 3 and $w.pref.ex gt 3>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FS4b]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ <<if $h.pref.wex gt 4 or $w.pref.ex gt 4>>[[Next outfit... something hotter!|Event1_FS5][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
Once again, I encouraged $w.fn to continue. "C'mon, let us see that thong!" She drew closer to where Brian and I were sitting, admiring her little "fashion show." <<showvideo fs3_jeansC5>> As we had come to expect, she started with a little bit of teasing, unbuckling her belt and opening the front of her shorts. <<showvideo fs3_jeansC6>> She toyed with her zipper, quickly lowering it and raising it back up. //Did I see that right?// She clearly wasn't wearing the bikini bottoms from before. I could tell that from the beginning, as the straps that sat high on her hips weren't visible this time, but I figured she just had on something else. It happened so fast, so I wasn't sure . . . but it kinda looked like she wasn't wearing anything under her shorts! <<showvideo fs3_jeansC7>> While I thought about this, she adjusted her shorts a little bit before dancing around some more. It was all mostly pretty innocent. //Except for what I'm thinking about doing to her later//, I thought. //That is //definitely// not innocent.// <<showvideo fs3_jeansC8>> "How do you like //this// outfit, boys?" "I am definitely not complaining," Brian responded. //I guess she decided to tease a little bit more than usual, but at least she knows where to draw the line!// \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 10>> <<addminutes 3>> <</nobr>>\ //<<if $h.pref.wex gt 3 or $w.pref.ex gt 3>>[[Next outfit... something hotter!|Event1_FS4][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
"OK, well, maybe she isn't //too// good," $w.fn teased. "Do you like it?" "Hell yeah, baby . . . You need to wear this more often!" <<showvideo fs4_skirtA8>> She leaned forward as she played with the strings keeping her top closed. Well, that is, //would have// kept her top closed if she hadn't untied the knot. I anticipated seeing her perfect breasts bared to the room, but she was being a master tease, never letting us see too much. <<showvideo fs4_skirtA9>> "I'm gonna get rid of these stockings, if that's ok, boys?" Without waiting for a response, she turned away from us and removed her shoes and stockings. Her smooth legs seemed even more alluring after having been covered however briefly. $w.fn came back to us and shook her hips back and forth. <<showvideo fs4_skirtA10>> "I love the way this skirt floats around," she joked. The clips that once held her stockings spun wildly in the air, and, indeed, her skirt flipped a bit, dangerously close to revealing whatever she was--//or wasn't//--wearing under it. But it never did. <<showvideo fs4_skirtA11>> "$h.fn, are you sad that my skirt didn't flip up enough to see my tight little pussy, you perv?" She pulled the sides of her skirt up, strategically placing her legs so that we could see a little bit of thigh, but nothing scandalous. //Could she possibly be reading my mind//, I laughed in my head. "Of course not," I responded. \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 10>> <<addminutes 3>> <</nobr>>\ //<<if $h.pref.wex gt 4 or $w.pref.ex gt 4>>[[Next outfit... something hotter!|Event1_FS5][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
"And this here is my 'bad little school-girl' outfit!" <<randomvideo 1 4 fs5_skirtB>> //Wow!// I thought. "Let me guess," I commented. "Another Halloween from before we met?" "Maaaayyybe," she teased. //Yeah, it looks like she might have been a bit wilder than I thought before we met. I will definitely need to learn more.// \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 5>> <<addminutes 7>> <</nobr>>\ //<<if $h.pref.wex gt 4 and $w.pref.ex gt 4>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FS5b]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ <<if $h.pref.wex gt 5 or $w.pref.ex gt 5>>[[Next outfit... something hotter!|Event1_FS6][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
"Booo!" I jokingly heckled $w.fn. "This little schoolgirl doesn't seem any naughtier than the good one! Booo!" <<showvideo fs5_skirtB6>> $w.fn pulled the straps down off her shoulders, revealing her sexy collar-bones. //Like a statue, molded from heaven//, I thought, then laughed at my own drunken pretension. //That was too cringe even for your own brain, $h.fn . . . .// <<showvideo fs5_skirtB7>> She tried to pull off the same trick she did last time, playfully toying with her top. But this time, she fumbled a bit. I caught a glimpse of her nipple as she tried to keep her breasts covered. //Did Brian see that as well?// I looked over at him, but if he saw it, his face didn't betray him. <<showvideo fs5_skirtB8>> $w.fn decided to steer into the skid, I guess, because she just kept going, teasing us with her firm breasts. \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 10>> <<addminutes 3>> <</nobr>>\ //<<if $h.pref.wex gt 5 and $w.pref.ex gt 5>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FS5c]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ <<if $h.pref.wex gt 5 or $w.pref.ex gt 5>>[[Next outfit... something hotter!|Event1_FS6][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
<<randomvideo 1 3 fs6_skirtF>> This new outfit helped me relax a bit. Sure, it was a bikini top, but that's nothing worse than what she would be wearing at the pool or beach. The skirt, though, was probably twice as long as the last two put together. $w.fn danced around playfully. \ <<nobr>> <<set $h.rous += 5>> <<set $w.rous += 10>> <<addminutes 7>> <</nobr>>\ //<<if $h.pref.wex gt 5 and $w.pref.ex gt 5>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FS6b]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ <<if $h.pref.wex gt 6 or $w.pref.ex gt 6>>[[Next outfit... something hotter!|Event1_FS7][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
<<randomvideo 9 10 fs5_skirtB>> $w.fn shifted her focus onto her skirt. She wasn't nearly as careful in this "bad school-girl" persona as she had been in the good one. <<randomvideo 11 13 fs5_skirtB>> //I bet Brian is really enjoying the show, too//, I thought to myself. A few times, she came so very close to revealing too much of her ass or showing us both her pussy. "So Brian, are you liking the show so far?" she asked him. "Very, very much so," he responded. //Again, get out of my brain//, I thought. <<showvideo fs5_skirtB14>> "Good, I'm glad. Tonight's going to be your night," she flirted, as she turned her back to us and stripped off her stockings again. This time, though, almost her whole ass was peeking out from under her skirt. //"His night?" What does she mean by that?// I thought. //Is this show for both of us or just for him?// I pushed those thoughts out of my mind. //What am I thinking? I'm not the jealous type, and Brian is one of my oldest and closest friends.// <<showvideo fs5_skirtB15>> \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 10>> <<addminutes 2>> <</nobr>>\ //<<if $h.pref.wex gt 5 or $w.pref.ex gt 5>>[[Next outfit... something hotter!|Event1_FS6][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
"What are you gonna do in that outfit? Go to church?" I teased her a little bit. $w.fn pulled a little stool over and sat down on it. <<randomvideo 4 6 fs6_skirtF>> Even with such a conservative skirt--at least compared to the last couple she showed us--$w.fn knew exactly how to tease us. //Fuck . . . this is how she stole my heart!// I thought. <<showvideo fs6_skirtF7>> She alternated between sitting like a proper young lady and arranging her skirt in a way that we could plainly see that she was completely naked under it. Of course, she had strategically positioned herself so that we couldn't see anything truly private. But sometimes the imagination is more powerful than the eyes. <<showvideo fs6_skirtF8>> //This teasing is so much sexier than actually stripping would be . . . probably.// \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 10>> <<addminutes 3>> <</nobr>>\ //<<if $h.pref.wex gt 6 or $w.pref.ex gt 6>>[[Next outfit... something hotter!|Event1_FS7][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
$w.fn came out this time in a tiny little top, thigh-high black stockings, and a black thong. <<randomvideo 1 2 fs7_croptopA>> Though technically she was wearing clothes, this outfit left nothing to the imagination. She casually swung her hips and pranced around the Living Room. She was clearly enjoying herself--and Brian and I were also enjoying her show. Her sensuality was effortless. Her body just naturally sexy. //I don't think any of us expected the evening would have headed in this direction.// \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 10>> <<addminutes 7>> <</nobr>>\ //<<if $h.pref.wex gt 6 and $w.pref.ex gt 6>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FS7b]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ <<if $h.pref.wex gt 7 or $w.pref.ex gt 7>><<link [[Next outfit... something hotter!|Event1_FS8]]>><<set $w.pref.ex += 1>><</link>><br><</if>>\ [[That's enough|Event1_FSEnd]]//
"I think my tits might be a little too small," $w.fn suddenly exclaimed. The comment, together with the way she was moving, was clearly intended to draw our attention to her beautiful breasts. <<randomvideo 3 6 fs7_croptopA>> //Are you kidding me?// I thought. //They may not be huge, but they are perfect.// Before I had time to verbalize a thought, I heard a deep voice next to me. "Are you serious, $w.fn? They're perfect! Not too big, not too small . . . just perfect!" Shaun beat me to the compliment. //OK, this weird telepathy tonight is getting uncanny//, I thought, chuckling. //If either of you can hear me now, //stay out of my head! \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 10>> <<addminutes 3>> <</nobr>>\ //<<if $h.pref.wex gt 7 and $w.pref.ex gt 7>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FS7c]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ <<if $h.pref.wex gt 7 or $w.pref.ex gt 7>>[[Next outfit... something hotter!|Event1_FS8][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
<<randomvideo 1 2 fs8_tshirtB>> The next outfit was an oversized T-shirt and socks. It looked very comfortable. "And now we have our 'lounge around the house' collection," $w.fn explained in a //faux// emcee voice. She was really playing with the whole "fashion show" idea. "Yeah!" I applauded. "My favorite part!" There was something about a beautiful woman like $w.fn lounging around the house in comfortable clothes that I found infinitely more sexy than even the most elegant and stylish clothes and make-up. \ <<nobr>> <<set $h.rous += 5>> <<set $w.rous += 10>> <<addminutes 7>> <</nobr>>\ //<<if $h.pref.wex gt 7 and $w.pref.ex gt 7>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FS8b]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ <<if $h.pref.wex gt 10 or $w.pref.ex gt 10>>[[Next . . .|Event1_FSLvl2a][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
"You should move that sexy body some more, $w.fn!" <<showvideo fs7_croptopA7>> She kept dancing for a few more minutes, raising her arms above her head and shaking her hips. The smooth contours of her curves were emphasized by her ever-graceful movements. Even when she was being silly, no straight man could ever deny that she just exuded beauty and sexuality. <<showvideo fs7_croptopA8>> \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 10>> <<addminutes 2>> <</nobr>>\ //<<if $h.pref.wex gt 7 or $w.pref.ex gt 7>>[[Next outfit... something hotter!|Event1_FS8][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
<<showvideo fs8_tshirtB3>> She was definitely getting bolder as the show continued and we kept drinking. $w.fn turned her back to us and raised her arms, revealing her gorgeous backside. //Oh, she's not wearing anything except the T-shirt and socks!// I thought. //Nice!// "Yeah, finally we're getting a little bit of that strip tease you promised!" <<showvideo fs8_tshirtB4>> Taking her teasing even further, she bent forward. Her bare ass pushed out towards us----and showing us the briefest glimpse of her pussy. Already rock-hard, my dick moved in my pants. <<showvideo fs8_tshirtB5>> "You ever been to Boston, Brian?" I mean, he did occasionally travel for whatever it was he did for work, but it was interesting that she decided to engage in a conversation right now. "Sure have," he answered. "It's not too bad as far as New England goes, but I wouldn't say it's my favorite place in the world." <<showvideo fs8_tshirtB6>> "I've never been there," she responded. "Do they have any girls as sexy as me up there?" She was just barely covering her womanhood with her T-shirt and one hand, while she used the other hand to show off as much of her crotch as she could. "They don't have girls as sexy as you anywhere in the world," he fired back, not missing a beat. "At least not anywhere I've ever been." "Correct answer! There's no one as sexy as me anywhere in the universe!" She laughed, almost mocking Brian's smooth line. But it was clear that she appreciated it, by the way she was staring right in his eyes while she teased us. \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 10>> <<addminutes 3>> <</nobr>>\ //<<if $h.pref.wex gt 10 or $w.pref.ex gt 10>>[[Next . . .|Event1_FSLvl2a][$w.pref.ex += 1]]<br><</if>>\ [[That's enough|Event1_FSEnd]]//
She had turned the lights down and was sitting on the couch, I guess waiting for me? She was fully dressed again. Surprising, based on the last few outfits that $w.fn had displayed. I mean, she's always sexy, no matter what she's wearing . . . . <<showvideo fs_lvl4_1>> "What's with the mask?" I asked. "To hide my identity, obviously." "What do you mean?" "Well," she said, moving sexily. "For the rest of the show, I'm not your wife. I'm just some sexy stranger. . . . So I don't want you to see my face. That way it's easier to pretend." <<showvideo fs_lvl4_2>> $w.fn look in Brian's direction. "What do you think, Brian? You //up// to meet a sexy stranger?" Brian just sat there, stone-faced, but I could guess what was going through his mind . . . . <<nobr>> <<set $h.tox.drk += 1>> <<set $h.rous += 10>> <<set $w.rous += 15>> <<addminutes 10>> <<set $w.pref.ex += 0.5>> <</nobr>>\ //[[Let's see where this goes . . .|WStrTease1b]]// <</timed>>
$w.fn gathered her clothes and stepped out of the room. I looked at Brian. "Well, you heard the lady . . . ." //What just happened here?// I thought. "What just happened?" Brian laughed. //Get out of my head!!// I also started laughing. "Dude, I have no idea. . . . She's a wild one, though, isn't she?" "Beautiful, too. But a dangerous flirt," he replied. "You're gonna have to keep an eye on her! But seriously, I hope we didn't cross any lines tonight." "Nah, don't think too much about it. She might go up to the line and straddle it, but our relationship is strong enough to handle anything she might want to do." I continued, "Shit, honestly, as long as she's happy, I don't really care about anything she might do. In fact, I encouraged her to help you get your mind off things." "Well, I admit, I wasn't thinking about Shay or any other woman for a while there." I laughed again, "No, I guess you wouldn't be. . . . Here let me show you the Guest Room." We walked down the hall to the Guest Room. "The only thing is that on Tuesdays and Thursdays, I use this room as my home office to telework. Other than that, please consider this your bedroom. As long as you need." He reached his hand out for me to shake. "Really, I have to thank you, man. I can't tell you how much I appreciate this . . . . I know we haven't exactly been able to hang out or talk as much as we probably should have these last few years . . . ." His voice trailed off, betraying the sincerity behind his sentiment. "Come on, what are you talking about? We aren't the kind of friends that have to be constantly calling or whatever . . . we're family. We'll always be family." Brian continued, "Well, like I said, thank you. So, I'm gonna head over to my old place tomorrow to pick up a few things. Otherwise, I'll be looking for a new place or hanging out here most of the time. I put my business on auto-pilot or delegated for the time being. Hopefully, I'll be able to find somewhere decent relatively quickly. I don't want to spend more than a week here----I would just feel like I was being too much of a burden." "Alright, well, let me know if you need anything. But I'm gonna go to bed----I think I have a 'horny little slut' in there waiting for me." "Go get her, bro," Brian laughed. At that, he turned and went into the Guest Room. [[Go to your Room|Event1_CP_Start]]
<<showvideo fs_lvl4_3>> <<showvideo fs_lvl4_4>> <<showvideo fs_lvl4_5>> <<showvideo fs_lvl4_6>> <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 15>> <<set $w.rsp -= 1>> <<addminutes 2>> <</nobr>>\ //[[Keep watching . . .|WStrTease1c]]//
<<showvideo fs_lvl4_7>> <<showvideo fs_lvl4_8>> <<showvideo fs_lvl4_9>> <<showvideo fs_lvl4_10>> <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 15>> <<addminutes 2>> <</nobr>>\ //[[Keep watching . . .|WStrTease1d]]//
<<showvideo fs_lvl4_11>> <<showvideo fs_lvl4_12>> <<showvideo fs_lvl4_13>> <<showvideo fs_lvl4_14>> <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 15>> <<addminutes 2>> <</nobr>>\ //[[No stopping her now . . .|WStrTease1e]]//
<<showvideo fs_lvl4_15>> <<showvideo fs_lvl4_16>> <<showvideo fs_lvl4_17>> <<showvideo fs_lvl4_18>> <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 15>> <<addminutes 2>> <</nobr>>\ //[[Keep watching . . .|WStrTease1f]]//
<<showvideo fs_lvl4_19>> <<showvideo fs_lvl4_20>> <<showvideo fs_lvl4_21>> <<showvideo fs_lvl4_22>> <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 15>> <<addminutes 2>> <</nobr>>\ //[[She's not done yet . . .|WStrTease1g]]//
"OK, boys, show's over . . ." $w.fn broke the trance. <<showvideo fs_lvl4_34>> "So now," she continued. "There's just one question left . . . ." <<showvideo fs_lvl4_35>> "Because I might be more turned on than I have ever been in my entire life . . ." <<showvideo fs_lvl4_36>> <<nobr>> <<addminutes 2>> <</nobr>>\
[img[images/e1post1.jpg]] $w.fn was laying on the bed seductively. Apparently, while I was showing Brian to his room, she decided to put on some sexy black lingerie. //I love when she wears that.// "Oh my God! Baby, I am so fucking drunk and horny! You better get over here and fuck me until I pass out!" !!!What do you want to do? <<link [['Make love to ' + $w.fn|Event1_CP_FPStart]]>> <<set $SexScene to true>> <<set $root to "Event1_CP_">> <<set $Partner1Name to $w.fn>> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to Math.clamp($h.rous / 100,0,3)>> <<if $povmod lt 0.2>><<set $povmod += 0.2>><</if>> <<set $npcmod to Math.clamp(($w.rous / 100),0,2)>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<set _HCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _HCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>> <<nobr>> <<if $w.pref.cht or not $w.xr.h.rel.m>> <<if $w.pov>> <<link [[Go to sleep|Event1_WB_Start]]>> <<unset $SexScene>> <<set $Partner1Name to "">> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <</link>> <<else>> <<set _morning to random(1,2)>> <<if _morning is 1>> <<set _nextm to "E1_NextMWife1">> <<else>> <<set _nextm to "E1_NextMAlone1">> <</if>> <<link "Go to sleep" _nextm>> <<set _br to random(1,5)>> <<set $w.xr.br.x += _br>> <<set _brcum to random(8,20)>> <<set $w.xr.br.cm += _brcum>> <<set $w.pref.bk += (_brcum / 2)>> <<set $w.rous to random(100,200)>> <<set $w.evt.cht += 1>> <<set $w.xr.br.cht to true>> <<set $w.xr.br.shr to false>> <<set $w.xr.br.cuk to false>> <<unset $SexScene>> <<set $Partner1Name to "">> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <</link>> <</if>> <<elseif $w.xr.h.rel.m and not $w.pref.cht>> <<if $w.pov>> <<link [[Go to sleep|E1_MWPostCP1]]>> <<unset $SexScene>> <<set $Partner1Name to "">> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <</link>> <<else>> <<link [[Go to sleep|E1_NextMWife1]]>> <<set $w.pref.bk += 0.5>> <<set $w.rous to random(100,200) + 20>> <<set $w.xr.br.cht to false>> <<set $w.xr.br.shr to false>> <<set $w.xr.br.cuk to false>> <<unset $SexScene>> <<set $Partner1Name to "">> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <</link>> <</if>> <</if>> <</nobr>>\
[img[images/e1post2.jpg]] I climbed onto the bed and $w.fn swiftly climbed onto me. "Hang on, let's get out of these clothes . . . ." [img[images/e1post3.jpg]] Before I knew it, we were both completely naked, kissing each other, feeling the warmth of each other's bodies. I'll admit, we were probably just stumbling along drunkenly---- considering how drunk we actually were----but it didn't feel like that at that time. $w.fn was more aggressive and intense than she had been for a while. <div id='sexmenu'><<include [[Event1_CP_FPOptions]]>></div>\
<<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ !!!What do you want to do? [["Finger " + $w.fn + "'s pussy"|Event1_CP_FPA1]] [["Eat " + $w.fn + "'s pussy"|Event1_CP_FPB1]] [["Ask " + $w.fn + " to give you a handjob"|Event1_CP_FPC1]] [["Ask " + $w.fn + " to give you a blowjob"|Event1_CP_FPD1]] [[Sixty-nine|Event1_CP_FPE1]] ''[["Enough foreplay, fuck " + $w.fn + "!"|Event1_CP_SexStart]]'' <<elseif $NPCCumPoints gte 100>>\ <<include [[Event1_CP_WCum1]]>> <<elseif $POVCumPoints gte 100>>\ <<include [[Event1_CP_HCum1]]>> <</if>>\
<div id='sexmenu'><<include [[Event1_CP_SexOptions]]>></div>\
<<set _psg to passage()>>\ "Fuck! $w.fn! I'm going to cum!" She had turned me on so much tonight, and it showed. I could barely hold back any longer. <<nobr>> <<if _psg.substring(0,13) is "Event1_CP_Sex">> "Pull out, don't cum inside me!"<br><br> <<if passage() is "Event1_CP_SexC1">> <<showvideo e1cp_sc_hc1>><br><br> <<else>> <<showvideo e1cp_sac>><br><br> <</if>> I did as she asked and blew my load on her <<if passage() is "Event1_CP_SexC1">>sexy back<<else>>beautiful stomach<</if>>. Still very drunk, I felt my energy draining from me quickly. I got light-headed and took a deep breath to avoid fainting.<br><br> <<else>> "Cum in my mouth! I want to taste you . . . ."<br><br> I quickly stood up on the bed and $w.fn knelt before me.<br><br> <<showvideo e1cp_fpdhc1>><br><br> She stroked my cock until I blew my load directly into her waiting mouth. Still very drunk, I felt my energy draining from me quickly. I got light-headed and took a deep breath to avoid fainting.<br><br> <</if>> <</nobr>>\ "Oh God, baby. That felt so good," I sighed as I rolled over onto my back. "Mmmm-hmmm," she agreed. "I'll be right back, I need to clean up." $w.fn scooted out of bed and walked across the room. "OK, honey," I responded. "I love you . . ." I could barely hold my eyes open, but I watched her walk out the bedroom door. "I love you, too," I think she said, as I drifted off to sleep. <<nobr>> /* <<if not $w.xr.h.rel.m or $w.pref.cht>> <<if $w.pov>> <<link [[Go to sleep|Event1_WB_Start]]>> <<unset $SexScene>> <<set $Partner1Name to "">> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <<unset $root>> <</link>> <<else>> <<set _morning to random(1,2)>> <<if _morning is 1>> <<set _nextm to "E1_NextMWife1">> <<else>> <<set _nextm to "E1_NextMAlone1">> <</if>> <<link "Go to sleep" _nextm>> <<set _br to random(1,5)>> <<set $w.xr.br.x += _br>> <<set _brcum to random(8,20)>> <<set $w.xr.br.cm += _brcum>> <<set $w.pref.bk += (_brcum / 2)>> <<set $w.pref.sq += (_brcum / 2)>> <<set $w.rous to random(100,200)>> <<set $w.evt.cht += 1>> <<set $w.xr.br.cht to true>> <<set $w.xr.br.shr to false>> <<set $w.xr.br.cuk to false>> <<unset $SexScene>> <<set $Partner1Name to "">> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <<unset $root>> <</link>> <</if>> <<elseif $w.xr.h.rel.m and not $w.pref.cht>> */ <<if $w.pov>> <<link [[Go to sleep|E1_MWPostCP1]]>> <<unset $SexScene>> <<set $Partner1Name to "">> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <<unset $root>> <</link>> <<else>> <<link [[Go to sleep|E1_NextMWife1]]>> <<set $w.pref.bk += 0.5>> <<set $w.rous to random(100,200) + 20>> <<set $w.xr.br.cht to false>> <<set $w.xr.br.shr to false>> <<set $w.xr.br.cuk to false>> <<unset $SexScene>> <<set $Partner1Name to "">> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <<unset $root>> <</link>> <</if>> /* <</if>> */ <</nobr>>\
"Oh my God! Don't stop! I'm cumming!" $w.fn <<= either("screamed","moaned","breathed into my ear")>>. <<nobr>> <<timed 2.5s>><<shakescreen 2s>> <<set _psg to passage()>> <<set $NPCCumPoints to 0>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set $w.xr.h.cm += 1>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.h.day.cmdy to true>> <<set $npcmod to $npcmod * 1.1>> <<if passage() is "Event1_CP_FPE1">> <<showvideo e1cp_fpec>><br><br> <<elseif passage() isnot "Event1_CP_SexB1" and passage() isnot "Event1_CP_SexC1" and passage() isnot "Event1_CP_SexD1">> <<showvideo e1cp_fpbc>><br><br> <</if>> <div id='sexmenu'> <<if _psg.substring(0,12) is "Event1_CP_FP">> <<include [[Event1_CP_FPOptions]]>> <<elseif _psg.substring(0,13) is "Event1_CP_Sex">> <<include [[Event1_CP_SexOptions]]>> <</if>> </div> <</timed>> <</nobr>>\
<<randomvideo 1 8 e1cp_fpa>> \ <<nobr>> <<addminutes 3>> <<set _cpplus to (random(5,10))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += _cpplus>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_CP_FPOptions]]>></div>\
<<randomvideo 1 2 e1cp_fpc>> \ <<nobr>> <<addminutes 5>> <<set _cpplus to random(1,20)>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += _cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_CP_FPOptions]]>></div>\
<<showvideo e1cp_fpe1>> \ <<nobr>> <<addminutes 5>> <<set _hcpplus to Math.round(random(5,15))>> <<set _hcpplus to Math.round(_hcpplus * $povmod)>> <<set $POVCumPoints += _hcpplus>> <<set _HCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _HCum>> <<set _wcpplus to (random(5,15))>> <<set _wcpplus to Math.round(_wcpplus * $npcmod)>> <<set $NPCCumPoints += _wcpplus>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_CP_FPOptions]]>></div>\
<<randomvideo 1 3 e1cp_fpb>> \ <<nobr>> <<addminutes 3>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += _cpplus>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_CP_FPOptions]]>></div>\
<<randomvideo 1 6 e1cp_fpd>> \ <<nobr>> <<addminutes 5>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += _cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_CP_FPOptions]]>></div>\
<<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ !!!What do you want to do? [[Missionary|Event1_CP_SexA1]] [[Doggystyle|Event1_CP_SexB1]] [[Cowgirl|Event1_CP_SexC1]] [[Reverse cowgirl|Event1_CP_SexD1]] <<elseif $NPCCumPoints gte 100>>\ <<include [[Event1_CP_WCum1]]>> <<elseif $POVCumPoints gte 100>>\ <<include [[Event1_CP_HCum1]]>> <</if>>\
<div id="meanwhile"><h1>Meanwhile . . .</h1></div> <<timed 2.5s>><<replace "#meanwhile">><<nobr>> <<set _scene to random(1,4)>> <<if _scene is 1>> <<set _opt to random(1,2)>> <<if _opt is 1>> <<randomvideo 1 4 wshower_B>><br><br> <<showvideo wshower_B8>><br><br> <<else>> <<randomvideo 5 6 wshower_B>><br><br> <<showvideo wshower_B7>><br><br> <</if>> <<randomvideo 9 10 wshower_B>><br><br> <<showvideo wshower_B11>> <<elseif _scene is 2>> <<randomvideo 5 9 wshower_E>><br><br> <<randomvideo 10 13 wshower_E>><br><br> <<randomvideo 14 15 wshower_E>> <<elseif _scene is 3>> <<randomvideo 1 3 wshowermast>> <<elseif _scene is 4>> <<set _opt to random(1,5)>> <<if _opt lte 3>> <<randomvideo 1 3 wshowermast>> <<else>> <<randomvideo 1 2 wshowerd>> <</if>> <</if>> <<set $w.rous -= 20>> <</nobr>> <<link "Continue" $nextpassage>> <<unset $nextpassage>> <</link>>\ <</replace>><</timed>>
<<nobr>> <<addminutes 100>> <<set _rxn to random(1,10)>> <<set _rxn to Math.round(_rxn * ($w.hap / 100))>> <<if _rxn lt 3>> <<set _img to random(1,5)>> <<= '[img[images/wlrtvc' + _img + '.jpg]]'>> <<elseif _rxn gte 3 and _rxn lt 5>> <<set _img to random(1,5)>> <<= '[img[images/wlrtvb' + _img + '.jpg]]'>> <<elseif _rxn gte 5 and _rxn lt 8>> <<set _img to random(1,5)>> <<= '[img[images/wlrtva' + _img + '.jpg]]'>> <<else>> <<goto [[TV_CP1_Start]]>> <</if>> <</nobr>> <<if _rxn lt 3>>\ "Well, that was a waste of time.<<if $gameDate.getHours() gte 22>> I'm gonna go to bed.<</if>>" \ <<elseif _rxn gte 3 and _rxn lt 5>>\ "Meh. That was alright, but I probably won't watch it again.<<if $gameDate.getHours() gte 22>> I'm gonna go to bed.<</if>>" \ <<elseif _rxn gte 5 and _rxn lt 8>>\ "Oh my gosh! That was so good!" \ <<set $w.xr.h.day.tdy += 2>>\ <</if>> [[Continue|LivingRoomMain]]\
/* Missionary */\ <<if visited() lte 1>><<showvideo e1cp_sa0>><br><</if>>\ <<randomvideo 1 9 e1cp_sa>> \ <<nobr>> <<addminutes 5>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += _npcplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_CP_SexOptions]]>></div>\
/* Doggystyle */\ <<randomvideo 1 8 e1cp_sb>> \ <<nobr>> <<addminutes 5>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += _npcplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_CP_SexOptions]]>></div>\
/* Cowgirl */\ <<randomvideo 1 7 e1cp_sc>> \ <<nobr>> <<addminutes 5>> <<set _povplus to random(5,20)>> <<set _npcplus to random(5,20)>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += _npcplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_CP_SexOptions]]>></div>\
/* Reverse Cowgirl */\ <<showvideo e1cp_sd1>> \ <<nobr>> <<addminutes 5>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += _npcplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_CP_SexOptions]]>></div>\
/* Anal */\ \ <<nobr>> <<addminutes 5>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += _npcplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_CP_SexOptions]]>></div>\
<div id="meanwhile"><h1>Meanwhile . . .</h1></div> <<timed 2.5s>><<replace "#meanwhile">>\ Brian had already fucked me once in the Living Room. I came at least a half-dozen times and my pussy was literally aching for more. //He is so fucking amazing!// [img[images/w_nude1.jpg]] "Let me show you to the Guest Room. This is where you will be sleeping while you're here." He followed me down the hallway. We immediately began to feverishly make out as soon as we hit the bed. <<link [[Get started . . .|Event1_WB_FPStart]]>> <<set $SexScene to true>> <<set $Partner1Name to "Brian">> <<set $root to "Event1_WB_">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to $w.rous / 100>> <<set $npcmod to 0.6>> <<set _BCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _BCum>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>><</replace>><</timed>>
<div id='sexmenu'><<include [[Event1_WB_FPOptions]]>></div>\
<<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ !!!What do you want to do? <<if $POVCumPoints lt 50>>[[Let him eat your pussy|Event1_WB_FPA1]]<br><</if>>\ <<if $NPCCumPoints lt 50 and $POVCumPoints lt 50>>[[Give him a handjob|Event1_WB_FPB1]] [[Give him a blowjob|Event1_WB_FPC1]] [[Give him a rimjob|Event1_WB_FPD1]]<br><</if>>\ [["Enough foreplay, fuck " + $Partner1Name + "!"|Event1_WB_SexStart]] <<elseif $POVCumPoints gte 100>>\ <<include [[Event1_WB_1Cum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Event1_WB_2Cum]]>> <</if>>\
<<include [[Event2_WS_FPOptions]]>>
<<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ !!!What do you want to do? [[Let him finger your pussy|Event2_WS_FPA1]] [[Let him eat your pussy|Event2_WS_FPB1]] [[Give him a handjob|Event2_WS_FPC1]] [[Give him a blowjob|Event2_WS_FPD1]] [[Sixty-nine|Event2_WS_FPE1]] [["Enough foreplay, fuck " + $Partner1Name + "!"|Event2_WS_SexStart]] <<elseif $POVCumPoints gte 100>>\ <<include [[Event2_WS_1Cum1]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Event2_WS_2Cum1]]>> <</if>>\
<<link [[Event2_WS_FPStart]]>> <<set $SexScene to true>> <<set $Partner1Name to "Brian">> <<set $root to "Event2_WS_">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $cp1mod to $w.rous / 100>> <<set $cp2mod to $w.hap / 100>> <<set _SCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _SCum>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>>
<<if visited() lte 1>><<showvideo wbr_ss>><</if>> <div id='sexmenu'><<include [[Event1_WB_SexOptions]]>></div>\
\ <<nobr>> <<addminutes 2>> <<if $NPCCumPoints lte 45>> <<set _cpplus to (random(1,5))>> <<set _cpplus to Math.round(_cpplus * $cp2mod)>> <<set $NPCCumPoints += _cpplus>> <<set _SCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _SCum>> <</if>> <</nobr>>\ <<include [[Event2_WS_FPOptions]]>>
<<set _psg to passage()>>\ <<if _psg.substring(0,13) is "Event1_WB_Sex">>\ "Fuck! $w.fn! I'm going to cum!" Brian's roar reached my ears . . . I rolled onto my side, looked into his eyes, and started to scream: "Yes! Fuck me! Harder! Cum inside me! Cum inside me! Fill me up!" <<showvideo wbr_end1>> I felt Brian's massive cock tense up and explode. As he pumped his hips, I could feel the hot cum pumping into me. <<if $w.xr.br.cm gt 0>>Even though I had just had my own orgasm, t<<else>>T<</if>>he sensation almost made me cum<<if $w.xr.br.cm gt 0>> again<</if>> by itself! <<showvideo wbr_end2>> //Oh my God! Did I just do this?// I thought to myself. //You know what? I feel so good right now, I don't even care. What happens next is a problem for 'future me' . . . . <<showvideo wbr_end3>> <<else>>\ "Fuck! $firstname! I'm going to cum!" Shaun's roar reached my ears . . . <<showvideo wbr_end0>> <</if>> <<link [[Continue|Event1_After1]]>> <<unset $SexScene>> <<set $w.xr.br.x += 1>> <<set $Partner1Name to "">> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <</link>>\
<<randomvideo 1 3 wbr_fpa>> \ <<nobr>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_WB_FPOptions]]>></div>\
<<randomvideo 1 2 wbr_fpb>> \ <<nobr>> <<set $w.rous += 5>> <<set _cpplus to random(1,20)>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += _cpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_WB_FPOptions]]>></div>\
<<randomvideo 1 7 wbr_fpc>> \ <<nobr>> <<set $w.rous += 10>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += _cpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_WB_FPOptions]]>></div>\
<<randomvideo 1 2 wbr_fpd>> \ <<nobr>> <<set $w.rous += 10>> <<set _wcpplus to (random(5,10))>> <<set _wcpplus to Math.round(_wcpplus * $npcmod)>> <<set $NPCCumPoints += _wcpplus>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_WB_FPOptions]]>></div>\
<<include [[Event2_WS_SexOptions]]>>
\ <<nobr>> <<addminutes 5>> <<set _hcpplus to Math.round(random(5,15))>> <<set _hcpplus to Math.round(_hcpplus * $cp1mod)>> <<set $POVCumPoints += _hcpplus>> <<set _HCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _HCum>> <<set _wcpplus to (random(5,15))>> <<set _wcpplus to Math.round(_wcpplus * $cp2mod)>> <<set $NPCCumPoints += _wcpplus>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <<include [[Event2_WS_FPOptions]]>>
\ <<nobr>> <<addminutes 5>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $cp2mod)>> <<set $NPCCumPoints += _cpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <<include [[Event2_WS_FPOptions]]>>
\ <<nobr>> <<addminutes 5>> <<set _cpplus to random(1,20)>> <<set _cpplus to Math.round(_cpplus * $cp2mod)>> <<set $NPCCumPoints += _cpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <<include [[Event2_WS_FPOptions]]>>
\ <<nobr>> <<addminutes 5>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $cp2mod)>> <<set $POVCumPoints += _cpplus>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <</nobr>>\ <<include [[Event2_WS_FPOptions]]>>
<<unset $npcmod>> <<unset $povmod>> <<unset $root>>
<<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|Event2_WS_SexA1]] [[Doggystyle|Event2_WS_SexB1]] [[Cowgirl|Event2_WS_SexC1]] [[Reverse cowgirl|Event2_WS_SexD1]] <<elseif $POVCumPoints gte 100>>\ <<include [[Event2_WS_1Cum2]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Event2_WS_2Cum1]]>> <</if>>
<<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|Event1_WB_SexA1]] [[Doggystyle|Event1_WB_SexB1]] [[Cowgirl|Event1_WB_SexC1]] [[Reverse cowgirl|Event1_WB_SexD1]] <<elseif $POVCumPoints gte 100>>\ <<include [[Event1_WB_1Cum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Event1_WB_2Cum]]>> <</if>>\
/* Missionary */\ \ <<nobr>> <<addminutes 5>> <<set _1cpplus to random(5,20)>> <<set _2cpplus to random(5,20)>> <<set _1cpplus to Math.round(_1cpplus * $cp1mod)>> <<set _2cpplus to Math.round(_2cpplus * $cp2mod)>> <<set $POVCumPoints += _1cpplus>> <<set $NPCCumPoints += _2cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <<include [[Event2_WS_SexOptions]]>>
/* Doggystyle */\ \ <<nobr>> <<addminutes 5>> <<set _1cpplus to random(5,20)>> <<set _2cpplus to (random(5,20))>> <<set _1cpplus to Math.round(_1cpplus * $cp1mod)>> <<set _2cpplus to Math.round(_2cpplus * $cp2mod)>> <<set $POVCumPoints += _1cpplus>> <<set $NPCCumPoints += _2cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <<include [[Event2_WS_SexOptions]]>>
/* Cowgirl */\ \ <<nobr>> <<addminutes 5>> <<set _1cpplus to random(5,20)>> <<set _2cpplus to random(5,20)>> <<set _1cpplus to Math.round(_1cpplus * $cp1mod)>> <<set _2cpplus to Math.round(_2cpplus * $cp2mod)>> <<set $POVCumPoints += _1cpplus>> <<set $NPCCumPoints += _2cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <<include [[Event2_WS_SexOptions]]>>
/* Reverse Cowgirl */\ \ <<nobr>> <<addminutes 5>> <<set _1cpplus to random(5,20)>> <<set _2cpplus to (random(5,20))>> <<set _1cpplus to Math.round(_hcpplus * $cp1mod)>> <<set _2cpplus to Math.round(_wcpplus * $cp2mod)>> <<set $POVCumPoints += _1cpplus>> <<set $NPCCumPoints += _2cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <<include [[Event2_WS_SexOptions]]>>
/* Missionary */\ <<randomvideo 1 8 wbr_sa>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_WB_SexOptions]]>></div>\
/* Doggystyle */\ <<nobr>> <<if visited() lte 1>> <<showvideo wbr_sb0>><br><br> <</if>> <</nobr>>\ \ <<randomvideo 1 11 wbr_sb>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to (random(5,20))>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_WB_SexOptions]]>></div>\
/* Cowgirl */\ <<randomvideo 1 4 wbr_sc>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_WB_SexOptions]]>></div>\
/* Reverse Cowgirl */\ <<nobr>> <<if visited() lte 1>> <<showvideo wbr_sd0>><br><br> <</if>> <</nobr>>\ \ <<randomvideo 1 4 wbr_sd>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to (random(5,20))>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1_WB_SexOptions]]>></div>\
<<timed 2.5s>><<shakescreen 2s>> <<if passage() is "Event1_WB_SexA1">> <<randomvideo 0 1 wbr_sac>><br><br> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.br.cm += 1>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 0.5>> <<set $povmod to $povmod * 1.1>> <<elseif passage() is "Event1_WB_SexB1">> <<showvideo wbr_sbc>><br><br> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.br.cm += 1>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 0.5>> <<set $povmod to $povmod * 1.1>> <<elseif passage() is "Event1_WB_SexC1">> <<showvideo wbr_scc>><br><br> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.br.cm += 1>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 0.5>> <<set $povmod to $povmod * 1.1>> <<elseif passage() is "Event1_WB_SexD1">> <<showvideo wbr_sdc>><br><br> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.br.cm += 1>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 0.5>> <<set $povmod to $povmod * 1.1>> <<else>> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.br.cm += 1>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 0.5>> <<set $povmod to $povmod * 1.1>> <</if>> <div id='sexmenu'> <<if passage() is "Event1_WB_FPA1">> <<include [[Event1_WB_FPOptions]]>> <<else>> <<include [[Event1_WB_SexOptions]]>> <</if>> </div> <</timed>>
<<randompic 1 2 wb1full>> //I can feel the cum literally oozing out of my pussy . . . There is so much. Fuck! This is so sexy!// <<link [[Go back to your bedroom|Event1_After2]]>> <<unset $povmod>> <<unset $npcmod>> <<unset $sexmenu>> <<unset $root>> <</link>> <<link [[Go to sleep here|Event1_After3]]>> <<unset $povmod>> <<unset $npcmod>> <<unset $sexmenu>> <<unset $root>> <</link>>\ <<if $w.rous gte 100>><br><<link [['Ready for Round ' + ($w.xr.br.x + 1) + '?'|Event1_WB_FPStart]]>> <<set $SexScene to true>> <<set $Partner1Name to "Brian">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to $povmod * 1.1>> <<set _BCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _BCum>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>><br><</if>>\
<<if not $SexScene>>\ There's nothing to see here right now. . . <<elseif $SexScene>>\ <h1 id="story-title">S&D CumPoints©<br>Sex System</h1> <<nobr>> <<if not tags().includes("NoToggleSex")>> <<button "Toggle Menu Option">> <<if not tags().includes("ExtraMenu")>> <<if $sexmenu is 0>> <<set _linkopts to $root + "SexOptions">> <<replace "#sexmenu">> <<include _linkopts>> <</replace>> <<elseif $sexmenu is 1>> <<set _linkopts to $root + "FPOptions">> <<replace "#sexmenu">> <<include _linkopts>> <</replace>> <</if>> <<else>> <<if $sexmenu is 0>> <<set _linkopts to $root + "SexOptions">> <<replace "#sexmenu">> <<include _linkopts>> <</replace>> <<elseif $sexmenu is 1>> <<set _linkopts to $root + "AnalOptions">> <<replace "#sexmenu">> <<include _linkopts>> <</replace>> <<elseif $sexmenu is 2>> <<set _linkopts to $root + "FPOptions">> <<replace "#sexmenu">> <<include _linkopts>> <</replace>> <</if>> <</if>> <</button>><</if>><br> <<if tags().includes("HusbandPOV") or $POVName is $h.fn>>[img[images/hprofile1.jpg]]<br> <<print $h.fn>> <<elseif tags().includes("WifePOV")>>[img[images/wprofile1.jpg]]<br> <<print $w.fn>> <</if>><</nobr>> <<showmeter 'POVCumBar' '$POVCumPoints / 100'>> <<nobr>><span style="weight:200px;height:auto;"><<if $Partner1Name is $w.fn>>[img[images/wprofile1.jpg]] <<elseif $Partner1Name is "Brian">>[img[images/brianprofile.jpg]] <<elseif $Partner1Name is "Shaun">>[img[images/shaunprofile.jpg]] <<elseif $Partner1Name is "Ricky">>[img[images/rprofile1.jpg]] <<elseif $Partner1Name is "Richard">>[img[images/rdprofile1.jpg]] <<elseif $Partner1Name is "Leah">>[img[images/lprofile1.jpg]] <</if>></span><</nobr>> <<print $Partner1Name>> <<showmeter 'NPCCumBar' '$NPCCumPoints / 100'>> <<if $Partner2Name isnot "">><<nobr>> <<if $Partner2Name is "Jay">>[img[images/jayprofile.jpg]] <</if>><</nobr>> <<print $Partner2Name>> <<showmeter 'NPC2CumBar' '$NPC2CumPoints / 100'>> <</if>> <<if $Partner3Name isnot "">><<nobr>> <<if $Partner3Name is "Tonya">>[img[images/tonyaprofile.jpg]] <</if>><</nobr>> <<print $Partner3Name>> <<showmeter 'NPC3CumBar' '$NPC3CumPoints / 100'>> <</if>>\ \ <</if>>\
When I got back to the Living Room, I saw that Brian had already grabbed three beers from the Kitchen: one for himself, one for $w.fn, and one for me. "Everything good?" he asked. "Of course," I responded, taking a sip of my beer as I sat down. "I told her what happened and she's cool with you staying here. She's just getting dressed and will be out in a minute." $w.fn emerged from the Bedroom just a few minutes later and sat on the couch next to Brian. <<showvideo e1lrparty_start>> "Thank you for the hospitality, $w.fn," Brian said to her. "I'll try not to get in your way too much. And it really shouldn't take me more than a week to find something more permanent and get out of your hair. I just need to move some money around, but I have quite a bit saved." "Don't worry about it, Brian. You know you're like family to us, you will always be welcome here." We continued to talk as we worked on the first round of beers. <<include [[Event1_PartyOpts]]>>\
!!!What do you want to do? <<if not hasVisited("Event1_HomeDrinking1")>>[[Drink!|Event1_HomeDrinking1]]<<else>>[[Keep drinking|Event1_HomeDrinking1]]<</if>> [[Smoke some weed|Event1_SmokeWeed]] [[Hang out and play some games|Event1_PlayGames]] <<if $w.tox.drk + $w.tox.wd gte 5>>''[[Let's play Strip Poker!|Event1_FS1]]''<br><</if>>\
<<nobr>> <<set $h.tox.wd += 0.5>> <<set $w.tox.wd += 0.5>> <<addminutes 10>> <<randompic 1 3 e1_lr_weed>> <</nobr>> We didn't smoke weed a lot----not since college anyway----but we usually had a little stash laying around. $w.fn liked to smoke some every now and then when she was writing. Now seemed like a good time to break it out. And Brian happened to have his own little bit to add to our stash, so we had enough for all three of us to get high. <<include [[Event1_PartyOpts]]>>\
<<nobr>> <<addminutes 20>> <<randompic 1 7 e1_lr_hang>> <</nobr>> Of course we couldn't just drink together in silence. Instead we just did some random busy-body activities: playing some quick card games, playing video games, reminiscing about our college days (even though it had only been a couple of years), that sort of thing. To a certain extent, I think we all sorta felt like we were back in college while we were hanging out. //It has been so long since we did this//, I thought. We were having such a great time . . . . <<include [[Event1_PartyOpts]]>>\
<<set _scene to random(2,5)>>\ <<if _scene gt 3>><<nobr>> <<randompic 1 10 e1lrdrink>> <<if $h.tox.drk lt 6>><<set $h.tox.drk += 0.75>><</if>> <<if $w.tox.drk lt 6>><<set $w.tox.drk += 0.75>><</if>> <<addminutes 15>> <</nobr>> //Man, we're really going through the liquor cabinet tonight!// I usually keep a couple of six-packs of beer and a few different kinds of liquor here in the house----in case I want to have a drink after work----and we probably hit all of them as the night went on. Beers or shots, we were partying like we did five years earlier when the three of us hung out every night. Of course, we were older now, so we knew how to pace ourselves to get drunk without getting sick or passing out. <<include [[Event1_PartyOpts]]>> \ <<else>><<set _link to "Event1_HomeDrinking" + _scene>>\ <<include _link>> <</if>>\
"Time for a refill!" $w.fn announced. I needed one as well, so I got up to grab a few beers from the kitchen. "You need one too, Brian?" I asked. "Yeah, I could use another." [img[images/e1_kdrinkh.jpg]] Luckily, we had enough, because we were definitely drinking pretty steady tonight! I pulled three more beers from the refrigerator and used the bottle opener to pop the caps off. Out of the corner of my eye, I saw our stock of liquor bottles: vodka, rum, whiskey. //Hmmm . . . is it time for more shots yet? Maybe I should bring those out to the room too . . . .// //No, we'll grab them next round. My hands are too full right now.// As I turned back to the Living Room, I thought about how much fun we were having. It was a rocky start, but it was like we were back in college. After the pandemic shut everything down, a night like this was just what everyone needed. //It's just a shame it couldn't have been under better circumstances . . . .// <<nobr>> <<if $w.pov>> [[Continue|Event1_MW_Drinking2]] <<else>> <<set $w.rous += 20>> <<addminutes 10>> <<set $w.tox.drk += 0.5>> <<set $h.tox.drk += 1>> <<include [[Event1_PartyOpts]]>> <</if>> <</nobr>>\
<<randompic 1 10 e1lrdrink>> I tilted my head all the way back as I shook the last few drops of beer from the bottle into my mouth. "Gotta have those last few drops, huh, $h.fn?" $w.fn teased me. "I'm ready for another one, too . . . . Brian, would you help me get another round from the kitchen?" "Sure, no problem," he responded. I watched as my wife and my best friend headed into the kitchen to grab another round of drinks. //Oh, wait . . . .// I hollered after them, "I'm gonna go take a piss!" "<<= either("Thanks for sharing!","Don't fall in!")>>" $w.fn yelled back at me. <<nobr>> <<if $w.pov>> [[Continue|Event1_MW_Drinking3]] <<else>> <<set $w.rous += 10>> <<addminutes 10>> <<set $w.tox.drk += 0.75>> <<set $h.tox.drk += 1>> <<include [[Event1_PartyOpts]]>> <</if>> <</nobr>>\
<div id="meanwhile"><h1>Meanwhile . . .</h1></div> <<timed 2.5s>><<replace "#meanwhile">>\ <<nobr>> <<set $w.rous += 30>> <<addminutes 10>> <<set $w.tox.drk += 1>> <<set $h.tox.drk += 1>> <</nobr>>\ <<if visited() lte 1>><<showvideo e1wb_lrmw1>> $h.fn told me to flirt with Brian a little bit, to make him feel better. I took this suggestion to heart. I mean, it's not like I haven't known Brian for years! We've flirted with each other a thousand times before! While we were talking, I playfully lay my hand on his leg. Honestly, I didn't even think about it----it just kinda happened. //What the fuck? Is that his cock? . . . No way, he must have something in his pocket.// <<showvideo e1wb_lrmw2>> I leaned in a bit to double-check. //There's no way. . . . Oh my God, it's getting bigger and harder! If that's not a cock, I don't know what else it could possibly be.// <<showvideo e1wb_lrmw3>> I started to focus on //It// a bit more. As I rubbed it, I could feel it continuing to grow. //Fuck . . . // <<if $w.pref.l>>I may not be all that interested in dick at the moment, but even I can appreciate the insanity of this monster.<<else>>My pussy started to get wet thinking about this monster in my hand.<</if>> <<showvideo e1wb_lrmw4>> <<else>>\ <<randomvideo 5 6 e1wb_lrmw>> I couldn't wait for $h.fn to leave the room to get my hands back on Brian's massive member. <<showvideo e1wb_lrmw7>> I stroked it for a minute. I just couldn't help but want to keep it as hard as possible now that I had an idea of its size.<<if $w.pref.l>> Honestly, it was really just a bit of harmless teasing and morbid curiosity. I may be questioning my sexuality right now----and am not really interested in cock at all on a sexual level----but my intellectual side was still very interested in what might be a scientific anomaly.<</if>> <</if>>\ //$h.fn will be back in a second.// I looked at Brian and indicated that this should stay between us. [img[images/wshhh.jpg]] <<include [[Event1_PartyOpts]]>> <</replace>><</timed>>
<div id="meanwhile"><h1>Meanwhile . . .</h1></div>\ <<timed 2.5s>><<replace "#meanwhile">>\ <<nobr>> <<randomvideo 1 2 e1wflirting>> <<set $w.rous += 10>> <<addminutes 7>> <<set $w.tox.drk += 0.5>> <<set $h.tox.drk += 1>> <</nobr>> <<if hasVisited("Event1_MW_Drinking2") and not $w.xr.br.t>>\ "Hey, sorry about the couch," I said to Brian as soon as we were in the Kitchen. "I hope you don't feel violated." "Yeah, what the fuck, $w.fn? I mean, you're a beautiful woman, so obviously I wouldn't mind someone like you doing that, but you're also my brother's wife . . . ." <<if not $w.xr.h.rel.m>>\ "Look, we haven't had a chance to talk to you about it yet----honestly, I don't even know if he was planning on telling you at all----but me and $h.fn are trying out a //different// kind of relationship, if you know what I mean." Brian looked at me silently, with a confused expression. Clearly, he didn't know what I meant, so I continued. "Look, we were having some issues, you know, //in the bedroom//. And $h.fn suggested that maybe the solution could involve other people. In other words, basically, <<if $w.xr.h.rel.opn>>we have an open relationship.<<elseif $w.xr.h.rel.swg>>we're gonna try 'swinging.'<<elseif $w.xr.h.rel.cuk>>he wants me to fuck other guys.<</if>> Shit, I hope he doesn't mind me telling you yet. Maybe he wanted to tell you himself. Look just don't say anything to him, ok? I hope I didn't say too much . . . ." <<elseif $w.pref.l>>\ I laughed it off. "Oh, don't take it so seriously. $h.fn asked me to flirt with you a little bit tonight, you know, to try to get your mind off everything. We're just having a bit of fun----it's not like I'm gonna fuck you or anything. Just enjoy a sexy lady rubbing your dick a little bit. //With// your best friend's permission. Trust me, there is //no// chance of this going anywhere it shouldn't." <<else>>\ I laughed it off. "Oh, don't take it so seriously. $h.fn asked me to flirt with you a little bit tonight, you know, to try to get your mind off everything. We're just having a bit of fun----it's not like I'm gonna fuck you or anything. Just enjoy a sexy lady rubbing your dick a little bit. //With// your best friend's permission. I mean, honestly, this is fun for me, too. I never knew you were packing that //heat// down there, you fucking tripod." <</if>><<set $w.xr.br.t to {rel:true}>>\ <<else>>\ "Oh my God, Brian, it has been //so// long since we've hung out all together!!" I said as we entered the Kitchen. "I am having so much fun!" Brian just laughed and grabbed a few drinks out of the fridge. "Yeah, I missed you guys. We used to hang out all the time in college and when you guys first got married, but then the pandemic and the lock-downs kept us away from each other for nearly 3 fuckin' years." "Well, we are //definitely// going to have to spend more time together from now on!" <</if>>\ I grabbed my beer and a bottle of vodka and headed towards the Living Room. "Come on, big guy. Let's get back to $h.fn." <<include [[Event1_PartyOpts]]>>\ <</replace>><</timed>>
[img[images/hbhang1.jpg]] While $w.fn was back in our room changing into another outfit, Brian and I continued to sip our beers. "Wild night, huh?" he asked me. "I don't even think we ever got this wild in college." "Well, to be fair, by the time me and $w.fn got really serious, you and I were pretty busy in grad school." "True, true. We didn't always have as much time when we were all together to really party around that time. One of us was usually busy. Of course, I was with Shay at the time too . . ." His voice kind of trailed off as he was reminded of his recently ended relationship. I tried to quickly change the subject. "Don't think about that right now, though. Tonight we're making up for lost time, and $w.fn seems eager to be the entertainment for this portion of the evening." I gave him a wink and held my bottle out to his. We clinked our bottles together just as $w.fn returned to the Living Room. <<timed 3s t8n>><<randomvideo 1 2 fs_lvl2_>> This time she was wearing some obscenely short denim shorts, a tiny black halter top, and high heels. And that was it. That //should take Brian's mind off of Shay//, I thought as I stared at my wife, astonished at how much of her sexy body was already visible. <<showvideo fs_lvl2_3>> "OK, boys, I'm starting to get a little bit bored, so let's make this my last outfit." She shifted into her emcee voice again. "And now, ladies and gentlemen, the highlight of our 'horny little slut' collection . . . ." With those words she leaned forward, pulling at the waist of her shorts and showing us that she was not wearing anything underneath. //Well damn . . . .// \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 10>> <<addminutes 7>> <</nobr>>\ //<<if $h.pref.wex gt 10 and $w.pref.ex gt 10>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FSLvl2b]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ [[That's enough|Event1_FSEnd]]//\ <</timed>>
"Come on, baby, show us that booty!" I called out to her. "As you request," she replied, doing a little spin. <<showvideo fs_lvl2_4>> $w.fn bent forward ever-so-slightly and wiggled her ass toward Brian and I, still sitting on the couch enjoying our beers. "God damn, $w.fn," Brian exclaimed. "How on God's green earth did you get such a perfect ass? Or more importantly, how in the actual fuck did this dipshit trick you into marrying him?" <<if $w.xr.h.rel.m>>"Maybe I tricked //him// into marrying me . . . ever think of that?"<<else>>"Maybe if you're lucky, I'll show you some of //my// tricks,"<</if>> she responded, laughing. <<showvideo fs_lvl2_5>> She backed up, bringing her beautiful rear-end a little closer to us. Rubbing her hands across it suggestively, she asked, "So Brian, you think my ass is perfect, huh?" "Absolutely," he responded. He immediately took a long swig, finishing up his beer. "I bet you'd love to get your hands on it, huh?" she teased. "Abso-//fuckin'//-lutely! Girl, you don't even know." \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 10>> <<addminutes 3>> <</nobr>>\ //<<if $h.pref.wex gt 11 and $w.pref.ex gt 11>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FSLvl2c]]>><<set $h.pref.wex += 1>><<set $w.pref.ex += 1>><</link>><br><</if>>\ [[That's enough|Event1_FSEnd2]]//
I was definitely feeling the buzz as I also finished my beer. "Alright, less talking, more naked. You are a gorgeous woman, but this isn't nearly as interesting as strip poker would have been." "That is a very good point, $h.fn. I guess it's time to move on to the next part of the 'horny little slut' collection," she responded, without missing a single sultry beat. <<showvideo fs_lvl2_6>> $w.fn reached up to the strings holding her top together. Unlike when she teased us earlier, this time she just completely opened and removed her top, blessing us with the vision of her firm breasts. //They say 'be careful what you wish for.' I guess I should have expected this . . . .// "You said my tits were also perfect earlier, Brian. Now that you can see them clearly, do you still think so?" she flirted. "Even more perfect than I thought before," he responded. <<showvideo fs_lvl2_7>> She turned and walked away from us, sensually swaying her hips. In her usual snarky way, she said, "Something's either perfect or not, they can't be //more// perfect." "Well, I can't really argue with that logic," Brian chuckled. "Your breasts are just perfect, then. Nothing is better." //And I can't really argue with //that, I thought. \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 15>> <<addminutes 2>> <</nobr>>\ //<<if $h.pref.wex gt 12 and $w.pref.ex gt 12>><<link [['Encourage ' + $w.fn + ' to continue'|Event1FSLvl2d]]>><<set $h.pref.wex += 2>><<set $w.pref.ex += 2>><</link>><br><</if>>\ [[That's enough|Event1_FSEnd2]]//\
"Ding ding ding, that is the correct answer," $w.fn said, turning back towards us. "Do you want to guess what your reward is?" I remained silent, enjoying the show, but Brian was quick to respond. "A gold medal?" <<showvideo fs_lvl2_8>> "Bzzzzt! No, your reward now is infinitely more valuable than mere gold." She started playing with the front of her shorts. "In fact, it makes gold look like just a bunch of yellow rocks." She had opened the button on the front of her shorts. //Is she just going to tease us some more?// I thought. Based on how things have progressed since she had come out with this last outfit, I had my doubts. <<showvideo fs_lvl2_9>> It didn't take long for my doubts to be confirmed. $w.fn didn't hesitate for a split second as she wiggled the tight shorts over her hips. Brian was sharing in a sight that I believed was reserved for me and me alone for the rest of our lives. "Looks like I lost the poker game," she quipped. "Looks like it," said Brian. "What do you think, Brian? Is it everything you //desired//?" At this point, I almost felt like a third wheel----the two of them had been speaking directly to each other, exclusively, for the last few minutes. Even the way $w.fn emphasized that last word, it was almost like I wasn't even here. Brian answered her last question, kind of, "I don't even know what to say to that, $w.fn. You are //dangerous//, girl!" <<showvideo fs_lvl2_10>> She tossed the last of her clothes into the corner of the room. "Dangerous, huh? Little ol' me? Look, I'm the one completely defenseless and vulnerable here. You're still fully dressed, and who knows what kind of //heavy firepower// you might be hiding under your clothes?" //This flirting has definitely gone to the next level//, I thought. //She is completely nude and openly dropping innuendos about his cock.<<if $h.pref.cuk gt 1>> Though I have to admit, the thought of the two of them going at it holds a certain allure.<</if>>// $w.fn's voice interrupted my imagination. "But now, the fashion show's over . . . it's been so much fun, boys. I hope you have enjoyed yourselves." She leaned forward over the couch where Brian and I were sitting, boldly ignoring the fact that she was a naked as the day she was born, and blew us a big kiss. \ <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 15>> <<addminutes 3>> <</nobr>>\ She continued, "<<if $w.xr.h.rel.m>>Honestly, I probably ought to just call it a night before I embarass myself. $h.fn, let's go to bed. Would you mind showing Brian to the Guest Room?<<else>>And now, if you don't mind, I must slip into something a little warmer----though I am //very hot// right now. Brian, would you mind grabbing a couple more drinks from the kitchen? $h.fn, can I talk to you in the Bedroom for just a minute?<</if>>" <<nobr>> <<if $w.xr.h.rel.m>> [[Continue|Event1_FSEnd2]] <<else>> [[Continue|Event1_FSEnd3]] <</if>> <</nobr>>
<<showvideo fs_lvl4_23>> <<showvideo fs_lvl4_24>> <<showvideo fs_lvl4_25>> //God, I love how sexy $w.fn is! I mean, stripping completely naked isn't exactly what I had in mind, but I bet she's helping to cheer Brian up. . . .// I looked over toward my best friend. //Just as I thought . . . a huge smile on his face. . . .// I'm not sure why, but my eyes wandered lower. [img[images/e1_lrbjbc1.jpg]] //What the fuck?!? Is that his dick? That thing can't be real!// I felt a sharp pang of jealousy, looking at what had to be the largest cock I had ever seen. //Not that I have seen too many in my life . . . .// Immediately, the image of that massive cock piercing $w.fn's core invaded my imagination.<<if $h.pref.cuk gt 0.5>> //Fuck! That is so fucking hot! . . . Wait, whut?//<</if>> //Could she even take that cock if she wanted to?// <<showvideo fs_lvl4_26>> $w.fn was now completely naked. In front of my best friend. Who apparently has the biggest cock I have ever seen. //Oh shit! Can she see it from there? Does she want to fuck Brian? Does she want to fuck him more than me?// <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 15>> <<addminutes 2>> <</nobr>>\ //[[Keep watching . . .|WStrTease1h]]//
<<showvideo fs_lvl4_27>> <<showvideo fs_lvl4_28>> <<showvideo fs_lvl4_29>> <<showvideo fs_lvl4_30>> <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 15>> <<addminutes 2>> <</nobr>>\ //[[Keep watching . . .|WStrTease1i]]//
<<showvideo fs_lvl4_31>> <<showvideo fs_lvl4_32>> <<showvideo fs_lvl4_33>> <<nobr>> <<set $h.rous += 10>> <<set $w.rous += 15>> <<addminutes 2>> <</nobr>>\ //[[What's next?|WStrTease1End]]//
[img[images/w_nude2.jpg]] "OK, I think I need to tap out." I struggled to catch my breath or even form and hold on to a string of coherent thoughts. My swollen pussy was throbbing, keeping time with my heartbeat. With each pulse, more of Brian's seed spilled out of me. I had never felt so thoroughly //throttled//. So . . . I don't know . . . . I can't find the words. //Get up!// I told myself. //Go to bed!// "I should go to bed." I tried to stand. It took a minute. My head started spinning as I lifted myself up. //Focus, $w.fn, focus . . . .// I leaned back over and kissed Brian, losing my balance in the process. "Thank you." //That was awkward.// "Brian, that was the most amaaaaazing . . . . blahh!" I just couldn't force my mouth to adequately form the words. Brian just lay there, chuckling at me. "It's okay, baby. You don't have to say anything." "Good night, lover-boy . . . . I will see you in the morning if I don't go to the hospital." [[Go to bed|E1_NextMWife1]]
//Oh my God, I am absolutely and completely satisfied. Brian's cock is amazing! I don't know how I can live without this . . . feeling . . . .// Brian broke the silence. "I am spent. That was . . . //whew//." "Yeah," I muttered. A one-word response was all I could muster. "Do you want to . . . ?" I curled up in Brian's presence and closed my eyes. He relaxed, understanding my unspoken response to his almost-a-question. [img[images/wb_afterbed.jpg]] It only took a few moments, that lasted for an eternity, and we went to sleep in each other's arms. [[Continue|E1_NextMAlone1]]
[img[images/e1_bralone1.jpg]] //Well, that's that . . . my wife is hooking up with my best friend.// My feelings were conflicted, confused, and hard to hold on to due to my drunken state. //Brian is really upset over his break-up . . . This will definitely cheer him up!// //$w.fn and I have been having a tough time lately . . . Could this make things better?// //Is she cheating on me right now? Is it cheating if I give her my permission?// //Did I give her permission or did she manipulate me into allowing this?// //Does she even love me any more?// //Maybe they won't go through with it . . . maybe they won't go all the way . . . .// This last thought offered me some hope and comfort. //We were all drinking and having fun----a little bit of fooling around is cool, just this once. Tomorrow we will just pretend none of this ever happened. Chalk it up to a wild night of drinking, like we were back in college. We just needed to let loose a bit after such a long time with the pandemic and lock-down and everything else.// [[Try to go to sleep|Event1_EndSleep1]] <<link [[Peek on them|Event1_EndPeek1]]>> <<set $w.xr.br.cuk to true>> <<set $w.xr.br.cht to false>> <<set $w.xr.br.shr to false>> <</link>>\
[img[images/e1_endslp1.jpg]] I resolved to put all of this out of my head and just go to sleep. //This is no different than anyone else. $w.fn just needs to get it out of her system.// Apparently, so did I. Without realizing it, I had started jerking my impossibly hard prick. I came right on my T-shirt after no time at all. Rather than cleaning up, I just took my shirt off and tossed it into the corner of the bed. My consciousness faded relatively quickly after that. <<if $w.pov>>\ <<link [[Fall asleep|Event1_WB_Start]]>><<set $h.pref.cuk += 0.5>><</link>> <<else>><<nobr>> <<set _morning to random(1,2)>> <<if _morning is 1>><<link [[Fall asleep|E1_NextMWife1]]>> <<set _br to random(1,(Math.round($w.rous / 100)))>> <<set $w.xr.br.x += _br>> <<set _brcum to (_br * (random(3,9)))>> <<set $w.xr.br.cm += _brcum>> <<set $w.pref.bk += (_brcum / 2)>> <<set $w.rous to $w.rous - (_brcum * 20)>> <<set $h.pref.cuk += 0.5>> <<set $w.xr.br.cuk to true>> <</link>> <<else>><<link [[Fall asleep|E1_NextMAlone1]]>> <<set _br to random(1,(Math.round($w.rous / 100)))>> <<set $w.xr.br.x += _br>> <<set _brcum to (_br * (random(3,9)))>> <<set $w.xr.br.cm += _brcum>> <<set $w.pref.bk += (_brcum / 2)>> <<set $w.rous to $w.rous - (_brcum * 20)>> <<set $h.pref.cuk += 0.5>> <<set $w.xr.br.cuk to true>> <</link>> <</if>> <</nobr>>\ <</if>>\
I slowly approached the Living Room, being careful not to make any noise. I had to stifle my curiosity so that I could sleep in peace. <<showvideo e1_hpeek1>> I'm not sure what I expected to see, yet somehow I was surprised. Too drunk to process it completely, but not too drunk to register what I was seeing. <<showvideo e1_wblapd1>> $w.fn was still completely naked, straddling Brian. His hands roamed all over her perfect body while they passionately made out in the dark. <<showvideo e1_wblapd2>> I'm not sure how long I was standing there. I guess I kinda zoned out a bit, drunkenly staring at them. Looking at them without seeing them. Suddenly, something broke through the haze and caught my attention. <<showvideo e1_wblapd3>> "Hey, $h.fn! Fuck off!" $w.fn's voice finally reached my ears. She chuckled light-heartedly as she spoke, so I know she was just teasing me. "I see you there, you nasty little pervert! Go to bed! I'll be in later!" I snapped back into reality and turned toward the hallway. From behind me, I heard $w.fn call out, "Love you, baby!" //I //know// she was talking to me when she said that . . . . right?// [[Go back to the Bedroom|Event1_EndAlone2]]
"Hey, baby. What d'ya say we go out for lunch today?<<if GameDays[$gameDate.getDay()] is "Tue" or GameDays[$gameDate.getDay()] is "Thu">> We should be able to get back before I have to be back at work.<</if>>" <<nobr>> <<set _rxn to random(1,4)>> <<if _rxn lte 1>> <p>"I'm sorry, baby. I am kinda busy today. Maybe another day?" <<if $w.hap gte 60>>She looked genuinely remorseful as she turned down my offer.<<else>>Neither her voice nor her face seemed to betray any real disappointment. Maybe I should keep working on our relationship.<</if>></p> <p>"Sure, no problem. I'll just make myself something to eat here, then," I responded.</p> <p>She went back to doing what she had been doing as I walked away from her, thinking about what I wanted for lunch.</p> [[Continue|KitchenMain]] <<else>> "That would be really nice, honey! Let me just go get ready and we'll leave!" She hopped up and ran back to the Bedroom.<br> <<showvideo hallwayB1>><br> <<timed 1.25s>> <p>After a little while, she emerged, ready to go. . . . </p> [img[images/wready1.jpg]]<br><br> //<p>These are the moments I cherish about our relationship. Just a quiet lunch together. It reminds me of when we first met, grabbing a quick bite together in the campus dining hall.</p>// <p>I left the memories behind us as we stepped out into the street.</p><br> <<link [[Head to Lunch|WH_LunchDateA1]]>> <<addminutes 10>> <</link>> <</timed>> <</if>> <</nobr>>
<<randompic 1 6 wcooking>> It looked like $w.fn was already working on dinner. "Hey, beautiful! Instead of spending half the night cooking and cleaning, how about if you let me take you out to dinner?"\ <<nobr>> <<set _rxn to random(1,5)>> <<set _rxn to _rxn * ($w.hap / 100)>> <<if _rxn lt 2.5>> <p>"Sorry, babe, I've already started preparing the food, and if I don't use it now, it's gonna go bad. Maybe another night?" She didn't even look up at me as she shot down the idea.</p> <p>"Oh, alright," I replied. "I was just thinking that it would be a good change of pace, maybe it would be a good way to spend some quality time together."</p> <p>She must have heard the disappointment in my voice. "Look, how about you help me cook dinner tonight? We'll go get dinner together some other time."</p> <p>"That's cool . . . maybe later this week or next week."</p> [['Help ' + $w.fn + ' with dinner'|K_WithWifeCookingHelp]] <<else>> <p>$w.fn stopped what she was doing and looked at me. "Really?! Where do you want to go?"</p> <p>"Hmmm, I don't know exactly, but why don't we get dressed up and go somewhere fancy?" I hoped that I wasn't overpromising. I didn't make a reservation anywhere; hopefully we can just walk in.</p> <<showvideo hallwayB1>><br> <p>"That's awesome! OK, I'll go get ready!" she called back to me as she ran down the hallway. "Bathroom's mine!"</p> [[Continue|WH_DinnerDateA1]] <</if>> <</nobr>>\
<h1>Meanwhile . . .</h1> <<timed 2.25s>> /* Special Events */ <<if $w.xr.rd.forg and not $w.xr.rd.m>> <<goto [[MW_OfficeBossForgot1]]>> <<elseif ($w.xr.h.rel.cuk or $w.xr.h.rel.opn or $w.pref.cht) and $w.rous gt 150 and $fkr.ch is 0 and (not $w.xr.br.evt.on or ($w.xr.br.evt.on and $w.xr.br.evt.done)) and ($gameDate.getDate() - $dtsv.rel) gte 2>> <<goto [[MW_FuckRIntro1A]]>> <<elseif ($w.xr.h.rel.cuk or $w.xr.h.rel.opn or $w.pref.cht) and $w.rous gt 150 and $gameDate.getHours() lt 13 and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed") and (not $w.xr.br.evt.on or ($w.xr.br.evt.on and $w.xr.br.evt.done)) and (($fkr.ch is 1 and not $w.evt.fkr1.a) or ($fkr.ch is 2 and not $w.evt.fkr2.a) or ($fkr.ch is 3 and (not $w.evt.fkr1.a or not $w.evt.fkr2.a)))>> <<goto [[MW_FuckRIntro1A]]>> <<elseif $w.evt.fkr1.a and not $w.evt.fkr1.b and $gameDate.getHours() gte 12>> <<goto [[MW_FuckR1B]]>> <<elseif $w.evt.fkr2.a and not $w.evt.fkr2.b and $gameDate.getHours() gte 12>> <<goto [[MW_FuckR2B]]>> <<elseif $w.xr.h.rel.swg and not hasVisited("SwingPathStart_A1") and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Tue" or GameDays[$gameDate.getDay()] is "Wed") and ($gameDate.getDate() - $dtsv.rel) gte 2 and $gameDate.getHours() lte 12 and $w.rous gte 120>> <<goto [[SwingPathStart_A1]]>> <<elseif hasVisited("SwingPathStart_A1") and not hasVisited("SwingPathStart_A2") and $gameDate.getHours() gte 12>> <<goto [[SwingPathStart_A2]]>> <<elseif $w.xr.sh.rel gte 6 and not $w.xr.sh.gro1 and $dtsv.gym isnot $gameDate.getDate() and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed" or GameDays[$gameDate.getDay()] is "Fri")>> <<goto [[MW_ShopShaunA1]]>> <<elseif $w.xr.sh.asko1 and not $w.xr.sh.asko2>> <<goto [[MW_Gym_D2]]>> <<elseif GameDays[$gameDate.getDay()] is "Thu" and $gameDate.getHours() lte 12 and $w.xr.br.x is 0 and not hasVisited("MW_Bath_A2") and ($w.xr.br.evt.on and not $w.xr.br.evt.done)>> <<goto [[MW_Bath_A2]]>> <<elseif not hasVisited("WifeDanMem1") and $w.pref.sq gte 15 and $w.rous gte 100 and $w.hap lt 85>> <<goto [[WifeDanMem1]]>> <<elseif hasVisited("WifeDanMem1") and not hasVisited("MWTooBig")>> <<goto [[MWTooBig]]>> /* Standard */ <<else>> <<if ndef $mwile or $mwile.length lt 4>> <<set $mwile to [0,1,2,3,3,4,5,6,7,7,7,8,8,8,9]>> <<if $w.xr.br.evt.on and not $w.xr.br.evt.done>> <<run $mwile.push(1,1,2,2,3,3)>> <<run $mwile.shuffle()>> <</if>> <</if>> <<if $w.xr.sh.m and $w.xr.sh.rel lt 6 and $mwile.count(7) lt 3 and not $w.xr.sh.asko2 and $w.xr.sh.x is 0>> <<run $mwile.push(7,7)>> <<run $mwile.shuffle()>> <</if>> <<if $w.xr.sh.asko2 and $mwile.count(7) lte 3 and $w.xr.sh.x is 0>> <<run $mwile.push(7,7,7)>> <<run $mwile.shuffle()>> <</if>> <<run $mwile.shuffle()>> <<set $w.loc to $mwile.pluck()>> <<if $w.loc is 0>> <<goto [[MW_Bedroom]]>> <<elseif $w.loc is 1>> <<goto [[MW_BathroomBase]]>> <<elseif $w.loc is 2>> <<goto [[MW_Kitchen]]>> <<elseif $w.loc is 3>> <<goto [[MW_GuestRoom]]>> <<elseif $w.loc is 4>> <<goto [[MW_Balcony]]>> <<elseif $w.loc is 5>> <<goto [[MW_LivingRm]]>> <<elseif $w.loc is 6>> <<goto [[MW_Laundry]]>> <<elseif $w.loc is 7>> <<goto [[MW_Gym]]>> <<elseif $w.loc is 8>> <<goto [[MW_Shopping]]>> <<elseif $w.loc is 9>> <<goto [[MW_Park]]>> <</if>> <</if>> <</timed>>
<<set _scene to random(1,6)>> <<if $inv.bbc and $w.rous gte 150 and _scene is 3>> <<include [[MW_Bed_BBCdildo]]>> <<elseif $w.rous gte 150 and _scene is 1>> <<include [[MW_Bed_MastAlone]]>> <<else>> <<include [[MW_BedroomStd]]>> <</if>>
<<set _scene to random(1,6)>> <<if $w.xr.br.evt.on and not $w.xr.br.evt.done and $w.xr.br.x is 0 and _scene lte 2>> <<set _opt to random(1,3)>> <<if _opt lte 2>> <<include [[MW_Bath_A1]]>> <</if>> <<else>> <<if $w.rous gte 100>> <<if $w.xr.br.evt.on and not $w.xr.br.evt.done and $w.xr.br.x gt 0 and _scene gte 4>> <<if _scene is 4>> <<include [[MW_Bath_B1]]>> <<elseif _scene is 5>> <<include [[MW_Bath_B2]]>> <<elseif _scene is 6>> <<include [[MW_Bath_B3]]>> <</if>> <<set $w.xr.br.x += 1>> <<set $w.xr.br.cm += random(2,5)>> <<else>> <<if _scene is 1>> <<set _opt to random(1,2)>> <<if _opt is 1>> <<include [[MW_Bath_C1]]>> <<else>> <<include [[MW_Bath_C2]]>> <</if>> <<include [[MW_Bath_C3]]>> <<elseif _scene is 2>> <<set _opt to random(1,2)>> <<if _opt is 1>> <<include [[MW_Bath_D1]]>> <<else>> <<randomvideo 1 3 wshowermast>><br><br> <</if>> <<set $w.rous -= 20>> <<elseif _scene is 3>> <<set _opt to random(1,5)>> <<if _opt lte 3>> <<randomvideo 1 3 wshowermast>><br><br> <<else>> <<randomvideo 1 2 wshowerd>><br><br> <</if>> <<set $w.rous -= 20>> <<elseif _scene gte 4>> <<set _opt to random(1,3)>> <<include [[MW_Bath_D2]]>><br> <<if _opt is 3>> <<showvideo wshower_D7>><br><br> <<set $w.rous -= 20>> <<timed 3s>><<shakescreen 2s>><</timed>> <</if>> <</if>> <</if>> <<else>> <<set _opt to random(1,4)>> <<if _opt is 1>> <<randomvideo 10 12 wbath>><br><br> <<set $w.rous += 10>> <<elseif _opt is 2>> <<randompic 1 8 wbath>><br><br> <<set $w.rous += 10>> <<elseif _opt gte 3>> <<randomvideo 1 2 wbathclean>><br><br> <</if>> <</if>> <</if>> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>
<<set _scene to random(1,15)>> <<if $w.xr.br.cm gt 0 and (_scene gte 6 and _scene lte 9) and $w.xr.br.evt.stay gt 3>> <<include [[Kitchen1_WB_Start]]>> <<elseif $w.xr.br.cm gt 0 and (_scene gte 6 and _scene lte 9) and not $w.xr.br.evt.done>> <<include [[Kitchen2_WB_Start]]>> <<else>> <<if _scene lte 5 and $w.pref.ex gt 5>> <<randompic 1 9 wksexy>> <<elseif _scene lte 7>> <<randompic 1 6 wcoffee>> <<elseif _scene lte 9>> <<randompic 1 6 wcooking>> <<else>> <<set _scene to random(1,5)>> <<if _scene is 1>> <<randompic 1 6 wdishes>> <<elseif _scene gte 2 and _scene lte 4>> <<randompic 1 10 wkwriting>> <<set $w.evt.wrt += 1>> <<elseif _scene is 5>> <<randompic 1 13 wkeating>> <</if>> <</if>><br><br> <p><<link "Continue" $nextpassage>><<unset $nextpassage>><</link>></p> <</if>>
<<if ($h.evt.prn.str + $h.evt.prn.les + $h.evt.prn.int + $h.evt.prn.grp + $h.evt.prn.cuk) gte 5 and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed" or GameDays[$gameDate.getDay()] is "Fri")>> <<set _scene to random(1,10)>> <<else>> <<set _scene to random(1,5)>> <</if>> <<if _scene gte 6>> <<include [[MW_GR_BrowserH1]]>> <<else>> <<include [[MW_GR_Standard]]>> <</if>>
<<set _scene to random(1,4)>>\ <<if $w.xr.br.evt.on and not $w.xr.br.evt.done and $w.xr.br.x gt 0 and $w.pref.ex gte 15 and _scene gte 3>>\ <<showvideo bbbj1>> I was hanging out on the balcony enjoying the sun for a little while when Brian came out to join me. No shirt, muscles glistening in the sun. Guess he had the same idea. Some small talk and the next thing I knew, I was on my knees in front of him eagerly releasing his cock. //How did he do that? I don't even care who might see me. I need to taste this cock!// <<randomvideo 2 5 bbbj>> As my head bobbed up and down, jaw basically numb from having stretched out to its limits yet again, I thought about who might be looking. There were other buildings across the street, down the street. Any of the people who lived there could be out on their own balconies, minding their own businesses, when they caught a glimpse of that whore sucking that giant cock in broad daylight. Or maybe it was just somebody doing their dishes or watching TV, who just coincidentally happened to glance out the window. Or a pedestrian who looked up for no reason in particular. //God! So many possible eyes focused on me!// My pussy was literally dripping. I stood up and dropped my shorts to the floor. Looking out to the world I imagined was looking back, I presented my naked ass to Brian. <<randomvideo 1 5 bbbx>> "Fuck me, Brian!" And so he did . . . . I wonder how many people saw the way my face contorted in that rapture of pure pleasure mixed with the pain that only getting fucked with a cock this astonishingly large can inspire. How many people saw the look of total surrender in my eyes when I came the first time? Or how I lost more of myself and my composure with every wave of orgasm I rode on that balcony? Just thinking about //that// brings me to the edge even now. <<set $w.pref.ex += 3>> <<else>>\ <<set $w.pref.ex += 0.5>>\ <<randompic 1 4 wbalcony>> It's such a beautiful day out. I think I'll just sit out on the balcony for a bit and soak up some Vitamin D while I think about where to take my story next. <</if>>\ <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<set _scene to random(1,6)>> <<if _scene is 1 or _scene is 4>> <<include [[MW_LRwriting]]>> <<elseif _scene is 3>> <<include [[MW_LRWyoga1]]>> <<elseif _scene is 6 and $w.pref.ex gte 5>> <<include [[MW_LRexhib]]>> <<else>> <<include [[MW_LRmisc]]>> <</if>>
<<nobr>> <<if $w.pref.ex lte 5>> <<randompic 1 5 wlaundry>> <<else>> <<randompic 6 10 wlaundry>> <</if>> <</nobr>> Now that $h.fn is going into the office a few times a week again, he is showering and changing his clothes more than he did during the lockdown. //Thank God//, I thought. //How could anyone let themselves go the way he did?// Of course, this also meant that I had to do laundry no less than once a week. There was a community laundry room for the use of all tenants in the building. I'm not sure exactly when everyone else did laundry, though. I almost never saw anyone else use the facilities . . . . //Strange!// <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<if visited() is 6>> /* meet shaun */ <<include [[MW_Gym_B]]>> <<elseif $w.xr.sh.rel gte 7 and $w.xr.sh.gro1 and not $w.xr.sh.asko1 and $dtsv.gym isnot $gameDate.getDate() and $dtsv.shgro isnot $gameDate.getDate() and $gameDate.getHours() lte 13 and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed" or GameDays[$gameDate.getDay()] is "Fri") and ($w.pref.cht or (not $w.xr.h.rel.m and not $w.xr.h.rel.swg)) and (not $w.xr.br.evt.on or ($w.xr.br.evt.on and $w.xr.br.evt.last))>> /* shaun ask out on date */ <<include [[MW_Gym_D1]]>> <<elseif $w.xr.sh.m and $dtsv.gym isnot $gameDate.getDate() and ((not $w.xr.sh.gro1 and $w.xr.sh.rel lt 7) or ($w.xr.sh.gro1 and not $w.xr.sh.asko1))>> /* work out w/ shaun */ <<include [[MW_Gym_C]]>> <<elseif $w.xr.sh.l gte 3 and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed" or GameDays[$gameDate.getDay()] is "Fri") and not $w.xr.sh.daylch and $gameDate.getHours() gt 12 and (not $w.xr.br.evt.on or ($w.xr.br.evt.on and $w.xr.br.evt.last))>> <<include [[MW_Gym_F1]]>> <<elseif $w.xr.sh.asko2 and ($w.xr.sh.x is 0 or ($w.xr.sh.x gt 0 and $w.xr.sh.xtk))>> <<include [[MW_Gym_E]]>> <<else>> <<include [[MW_Gym_A]]>> <</if>>
<<nobr>> <<if $w.pref.ex gte 10>> <<set _img to random(1,15)>> <<else>> <<set _img to random(1,11)>> <</if>> <<if _img lte 5>> <<randompic 1 6 wwalking>> <<elseif _img gt 5 and _img lte 10>> <<randomvideo 7 11 wwalking>> <<elseif _img gt 10 and _img lte 14>> <<randomvideo 12 15 wwalking>> <</if>> <</nobr>> //I need to get out of the house for a bit . . . and go somewhere with people!// <<nobr>> <<if ndef $mwsh or $mwsh.length lte 1>> <<set $mwsh to [0,0,1,1,2,2]>> <</if>> <<if $w.pref.ex gt 1 and $mwsh.count(3) lt 2>><<run $mwsh.push(3,3)>><</if>> <<if $w.rous gte 100 and $w.sat lt 80 and $mwsh.count(4) lte 1>><<run $mwsh.push(4,4)>><</if>> <<if not $mwsh.includes(2)>><<run $mwsh.push(2)>><</if>> <<run $mwsh.shuffle()>> <<set _shop to $mwsh.pluck()>> <<if _shop is 0>> <<include [[MW_ShoppingB1]]>> <<elseif _shop is 1>> <<include [[MW_ShoppingD1]]>> <<elseif _shop is 2>> <<include [[MW_ShoppingE1]]>> <<elseif _shop is 3>> <<include [[MW_ShoppingA1]]>> <<elseif _shop is 4>> <<include [[MW_ShoppingC1]]>> <</if>> <</nobr>>\
<<randomvideo 1 2 wb_lrstart>> "Oh, God, you are so fucking sexy, Brian," $w.fn said as she kissed his bare chest and abs, stroking his cock through his pants. "I should have had //you// give //me// a striptease. I mean, Jesus Christ, if your other business ever falls apart, you could make a lot of money showing women these abs. I'm only minutes away from giving you $h.fn's credit card." Brian looked at me as she said this and we both chuckled awkwardly. She ignored us and kept talking, "I can't wait any more, I have to see this dick for myself." I have to admit, from what I had seen so far this evening, and thinking back to all our college memories, I was a bit curious myself. Somehow, though we roomed together for four years, I had never seen it. I had heard a lot of comments about it, but I never paid them much mind. Now that his cock was on the verge of entering my wife, the information suddenly seemed more relevant. <<showvideo wb_lrstart3>> $w.fn reached into his pants and wrapped her hand around what lay within. It took a little more effort and both hands, but she finally freed the monster from its cage. //Holy shit!// I thought. "Holy shit!" she exclaimed. "I have literally never seen anything this big, not even in porn!" She wasn't wrong. Brian was apparently blessed in a colossal way. <<showvideo wb_lrstart4>> Leave it to a writer to come up with what $w.fn said next, "Good lord, Brian, I always knew you had Big Dick Energy, but this is Big Dick Nuclear Holocaust!" She finally acknowledged my presence. "$h.fn, I love you very much. I have no idea what I am going to do with this thing, but if you don't want to find out, I would recommend going to bed immediately." She said all this without looking at me or even pausing in her playing with my best friend's cock. And there was no question in my mind that she was dead-ass serious about every word she said. Unless I wanted to watch the two of them together, I needed to go to bed. \ <<nobr>> <<set $w.rous += 30>> <<addminutes 5>> <</nobr>>\ [[Go to bed|Event1_EndAlone1]] <<nobr>> <<if $h.pref.cuk gt 0>> <<link [[Hesitate . . .|Event1_EndLRStart2]]>> <<set $w.xr.br.cuk to true>> <<set $w.xr.br.cht to false>> <<set $w.xr.br.shr to false>> <<set $h.pref.cuk += 0.5>> <</link>><br> <</if>> <</nobr>>\
<<showvideo wb_lrstart5>> I didn't budge from my spot in the Living Room. I don't know if I was trying to call her bluff or if I wanted to see what would happen next. But I stayed and watched. My presence did not slow her down even slightly. In fact, I'm not sure whether she even realized that I hadn't left. $w.fn was entranced with what she held in her hands. She stared at it intensely, clearly intending to put it into her mouth, though she seemed like something was holding her back. She playfully licked at the head, but hadn't gone all the way. <<showvideo wb_lrstart6>> The mystery revealed itself to me pretty quickly. She looked up at Brian, "I don't know if your cock will even fit in my mouth!" //She has a solid point//, I thought. //I don't know if I've ever seen $w.fn put anything that big in her mouth. Not without taking a bite, anyway.// <<showvideo wb_lrstart7>> //Well so much for that.// It seemed that $w.fn decided to go for it. She had opened her mouth as wide as she could, being careful that her teeth weren't anywhere near the skin, and was now slowly forcing Brian's cock into her throat as far as she could get. She hadn't quite mastered the technique yet, but she was determined to do so. <<showvideo wb_lrstart8>> She seemed to be adapting rather quickly, adjusting her technique to the huge size difference between Brian's cock and my own. She was already able to keep his dick in her mouth as she bobbed her head up and down the shaft. She used both hands to stroke the base of his cock at the same time----one hand wasn't enough to wrap around the whole thing. My dick was hard watching this sexy scene playing out in front of me. I almost had to consciously think about remembering that this was my wife and not some porn star that I was watching. After a few minutes, seeing how focused $w.fn was on her task, I decided that I was no longer needed here. I lifted myself off the couch and ambled like a zombie back into the Master Bedroom to get ready for bed. <<nobr>> <<set $w.rous += 30>> <<addminutes 5>> [[Go to bed|Event1_EndAlone1]] <</nobr>>\
[[Try to go to sleep|Event1_EndSleep1]] <<link [[Peek on them|Event1_EndPeek2]]>> <<set $w.xr.br.cuk to true>> <<set $w.xr.br.cht to false>> <<set $w.xr.br.shr to false>> <</link>>\
<<nobr>> <<set $w.xr.br.x += 1>> <<set $w.xr.br.cm += random(1,5)>> <</nobr>>\ <<showvideo e1_hpeek1>> I could hear them before I could see them. They had turned out most of the lights, but I could almost see in the glow from the city lights outside coming in through the window. My eyes took a minute to adjust to the low level of light. "Slowly, slowly! Fuck! You're so god-damn big!" $w.fn wasn't even trying to keep her voice down. "You are so wet and tight. Your pussy is sucking me in and pushing me out at the same time," Brian's deep voice resonated, though he seemed be putting a bit more effort into being quiet. <<showvideo e1_hpeekS1>> As my eyes finally focused on the scene in front of me, I could see Brian behind $w.fn, who was on all fours on the couch. Though they were both facing directly toward me, I don't think they could see me in the shadows. I wanted to watch what was happening, so I was careful not to make a sound. "OK, hold on, hold on," $w.fn said, sounding out of breath. "Don't move for a second. I need to get used to your size." He must have been doing as she said, because she soon followed up. "OK, that's good, a little more, give me a little more. Ahhh! Ahhh! Give me all of it! Just give me all of it!" "Oh yeah, girl! God-damn, you're so wet!" Brian replied to her. I guess he pushed his cock all the way, because the next thing I heard wasn't words. It wasn't even $w.fn's voice, though I knew it had come out of her mouth. It was a guttural, animalistic moan. "Oh my God, Brian. I just came! Oh my God, oh my god, omygod, omygod!" $w.fn had started to mumble incoherently yet somehow erotically. //Wait, did she say she came? Already? Did she cum just from him putting his dick inside of her?// <<randomvideo 2 4 e1_hpeekS>> I noticed that they hadn't stopped. Both $w.fn and Brian had started to move their hips, which were now slapping into each other. "Oh, fuck me," $w.fn weakly whimpered. "Oh, god. Don't stop." Brian didn't say a word, but I could occasionally hear his breathing or a short grunt, in between the sounds of his body slapping into my wife's or the lewd wet sounds of him plunging into her. "Harder, fuck me harder," she pled, and the non-vocal sound effects increased in tempo and volume. Her moans again got louder too: "Oh, fuck! Oh fuck! I'm gonna cum again! Oh my fucking God! I'm cumming again!" //Again? Wait . . . how long was that? It couldn't have been more than a minute or two//, I observed. <<randomvideo 5 7 e1_hpeekS>> I started to disassociate at some point. I don't know how long I was standing there, watching them fuck. The scene I had just witnessed repeated a few more times. Three? Four? Thirty? Forty? I have no idea. I only know that I eventually wandered back to my Bedroom. A voice broke through my haze only briefly, though I have no idea what the words meant: "Come inside me, Brian. Fill my pussy up!" [[Go to bed|Event1_EndSleep2]]
I don't remember how I got to my room, but I found myself laying in bed. I was exhausted, mentally, physically, emotionally. I tried desperately to get to sleep. I could hear $w.fn's moans--occasionally outright screams--echoing through the apartment. [img[images/e1_endslp2.jpg]] //They need to keep it down. The neighbors are going to complain//, I thought . . . and then realized my own thoughts. //The neighbors. The neighbors can hear them. Will they think the noise is because of me? They've never heard $w.fn make those noises before. Not as long as we have lived here. Will they notice Brian's sudden arrival? Notice him coming in and out of the apartment? Will they realize that I just let some other man fuck my wife so hard that she screamed like an animal? God, I'll be humiliated!// I don't know if it was the thoughts racing through my head or the sounds of pure unadulterated //fucking// filling the silence of the night that did it, but as I finally drifted away into sleep I absentmindedly noticed that my cock was so hard that it hurt. . . . <<if $w.pov>>\ <<link [[Fall asleep|Event1_WB_Start]]>><<set $h.pref.cuk += 0.5>><</link>> <<else>><<nobr>> <<set _morning to random(1,2)>> <<if _morning is 1>><<link [[Fall asleep|E1_NextMWife1]]>> <<set _br to random(1,(Math.round($w.rous / 100)))>> <<set $w.xr.br.x += _br>> <<set _brcum to (_br * (random(3,9)))>> <<set $w.xr.br.cm += _brcum>> <<set $w.pref.bk += (_brcum / 2)>> <<set $w.rous to $w.rous - (_brcum * 20)>> <<set $h.pref.cuk += 0.5>> <<set $w.xr.br.cuk to true>> <</link>> <<else>><<link [[Fall asleep|E1_NextMAlone1]]>> <<set _br to random(1,(Math.round($w.rous / 100)))>> <<set $w.xr.br.x += _br>> <<set _brcum to (_br * (random(3,9)))>> <<set $w.xr.br.cm += _brcum>> <<set $w.pref.bk += (_brcum / 2)>> <<set $w.rous to $w.rous - (_brcum * 20)>> <<set $h.pref.cuk += 0.5>> <<set $w.xr.br.cuk to true>> <</link>> <</if>> <</nobr>>\ <</if>>\
[img[images/soon.jpg]] <br><br> <center><<button "Off" $phonepassage>><<unset $phonepassage>><</button>></center>
[img[images/soon.jpg]] <center><<button [[Home|PhoneMain]]>><</button>><<button "Off" $phonepassage>><<unset $phonepassage>><</button>></center>\
[img[images/soon.jpg]] <center><<button [[Home|PhoneMain]]>><</button>><<button "Off" $phonepassage>><<unset $phonepassage>><</button>></center>\
<<nobr>> <<if $gameDate.getHours() lt 10>> <<set _addtime to 10 - $gameDate.getHours()>> <<else>> <<set _addtime to ((23 - $gameDate.getHours()) + 10)>> <</if>> <<addhours _addtime>> <<if $gameDate.getHours() isnot 10>><<run $gameDate.setHours(10)>><</if>> <<run $gameDate.setMinutes(0)>> <<set $h.tox.drk to 0>> <<set $h.tox.wd to 0>> <<set $w.tox.drk to 0>> <<set $w.tox.wd to 0>> <<if $h.rous gt 150>><<set $h.rous to 150>><</if>> <<if $w.rous gt 150>><<set $w.rous to 150>><</if>> <<set $w.loc to 3>> <</nobr>>\ [img[images/e1nm_a1.jpg]] I woke up alone. My head was pounding. //Aaarrggghhh. I drank far too much last night.// I brought my arm down to felt the empty space next to me on the bed. It was cold. //Did $w.fn come to bed at all last night?// "Unnnhhhh," I moaned audibly as another piercing ray of sunlight cut into my skull. //Drinking isn't the only way last night got out of hand.// <<if hasVisited("Event1_EndPeek2")>>The image<<else>>The thought<</if>> of <<if hasVisited("Event1_EndPeek2")>>$w.fn's face as she was mercilessly<<else>>$w.fn being mercilessly<</if>> railed by my best friend. It still didn't feel quite real. This wasn't the same as her just hooking up with some random stranger she met on a dating app. Brian lived together for years! Including when $w.fn first met! Not to mention, he was going to be staying with us here in our home for a little while! //This just hit different!// I lay there in a bit of mental, physical, and emotional anguish for a few more minutes, then resolved to get out of bed. //I think the best thing for me right now is some coffee and a nice long shower.// [[Get up and throw on some clothes|E1_NextMAlone2]]\
<<nobr>> <<if $gameDate.getHours() lt 10>> <<set _addtime to 10 - $gameDate.getHours()>> <<else>> <<set _addtime to ((23 - $gameDate.getHours()) + 10)>> <</if>> <<addhours _addtime>> <<if $gameDate.getHours() isnot 10>><<run $gameDate.setHours(10)>><</if>> <<run $gameDate.setMinutes(0)>> <<set $h.tox.drk to 0>> <<set $h.tox.wd to 0>> <<set $w.tox.drk to 0>> <<set $w.tox.wd to 0>> <<if $h.rous gt 150>><<set $h.rous to 150>><</if>> <<if $w.rous gt 150>><<set $w.rous to 150>><</if>> <<set $w.loc to 0>> <</nobr>> [img[images/e1nm_w1.jpg]] My eyes slowly got used to the light permeating the room . . . . //Oh good, $w.fn is here . . . .// I'm not sure why I thought that. //Of course she's here. She's my wife. No matter what <<if $w.xr.br.x gt 0>>happened last night<<else>>happens<</if>>, she's my wife.// I laid there for a few minutes or a few hours, lost in my thoughts. Thinking about anything and everything //except// last night. The next thing I knew, I could feel $w.fn cuddling up to me. [img[images/e1nm_w2.jpg]] "Good morning, baby," she chimed. //So cheerful//, I thought. "Good morning, honey. You sure seem wide awake. Aren't you even a little bit hung over?" "Nope. I feel //great//. I think I slept better last night than I have in years!" \ <<if $w.xr.br.x gt 0>><br>//Huh. That's weird. We were drinking pretty heavily last night. I have a massive hangover. I mean, Brian and I did get started drinking a few hours before she did, but still . . . . I mean, she got pretty drunk. After all, she ended up . . . .// I let my thoughts trail off.<br><</if>>\ I lay there in a bit of mental, physical, and emotional anguish for a few more minutes, then resolved to get out of bed. //I think the best thing for me right now is some coffee and a nice long shower.// "Anyway, I'm gonna go make some coffee. Do you want any breakfast?" Just the thought of putting food into my stomach made me nauseous. "//Coffee//, yes, my beautiful wife . . . . //Food//, hell no, and fuck you for suggesting it, you evil succubus. Actually, I think I'm gonna jump in the shower to see if that might help get rid of this hangover." I leaned over to give her a kiss, and my hangover hated me for it. $w.fn jumped out of bed. "Sounds good! See you in a few minutes!" I didn't even have time to respond before she skittered down the hallway and out of earshot. [[Get up and throw on some clothes|E1_NextMWife2][$w.loc to 2]]\
<<randomvideo 1 2 wlrtvd>> <<randomvideo 1 3 tv_cp1_start>> <<link [[Continue|TV_CP1_FPStart]]>> <<set $SexScene to true>> <<set $root to "TV_CP1_">> <<set $Partner1Name to $w.fn>> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to Math.clamp($h.rous / 100,0,3)>> <<if $povmod lt 0.2>><<set $povmod += 0.2>><</if>> <<set $npcmod to Math.clamp(($w.rous / 100),0,2)>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<set _HCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _HCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>>
<<showvideo tv_cp1_fp0>> <div id='sexmenu'><<include [[TV_CP1_FPOptions]]>></div>\
<<if not $w.xr.h.t.n1>><<set $NPCCumPoints to Math.clamp($NPCCumPoints,0,99)>><</if>>\ <<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ !!!What do you want to do? [["Eat " + $w.fn + "'s pussy"|TV_CP1_FPB1]] [["Ask " + $w.fn + " to give you a blowjob"|TV_CP1_FPD1]] [["Enough foreplay, fuck " + $w.fn + "!"|TV_CP1_SexStart]] <<elseif $NPCCumPoints gte 100>>\ <<include [[TV_CP1_WCum1]]>> <<elseif $POVCumPoints gte 100>>\ <<include [[TV_CP1_HCum1]]>> <</if>>\
<<randomvideo 1 3 tv_cp1_fpb>> \ <<nobr>> <<set $h.rous += 5>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[TV_CP1_FPOptions]]>></div>\
<<randomvideo 1 4 tv_cp1_fpd>> \ <<nobr>> <<set $w.rous += 5>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += _cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <</nobr>>\ <div id='sexmenu'><<include [[TV_CP1_FPOptions]]>></div>\
<div id='sexmenu'><<include [[TV_CP1_SexOptions]]>></div>\
<<showvideo tv_cp1_hc1>> <<showvideo tv_cp1_hc2>> <<link [[Continue|LivingRoomMain]]>> <<unset $SexScene>> <<set $Partner1Name to "">> <<set $h.rous -= 50>> <<set $w.rous += ($NPCCumPoints * 0.2)>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<addhours 1>> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <<unset $root>> <</link>>
<<nobr>> <<timed 2s>><<shakescreen 2s>> <<randomvideo 1 2 tv_cp1_fpbc>><br><br> <<set $NPCCumPoints to 0>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set $npcmod to $npcmod * 1.1>> <<set $w.xr.h.cm += 1>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.h.day.cmdy to true>> <div id='sexmenu'><<include [[TV_CP1_FPOptions]]>></div> <</timed>> <</nobr>>\
<<if not $w.xr.h.t.n1>><<set $NPCCumPoints to Math.clamp($NPCCumPoints,0,99)>><</if>>\ <<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|TV_CP1_SexA1]] [[Doggystyle|TV_CP1_SexB1]] [[Cowgirl|TV_CP1_SexC1]] [[Reverse cowgirl|TV_CP1_SexD1]] <<elseif $NPCCumPoints gte 100>>\ <<include [[TV_CP1_WCum2]]>> <<elseif $POVCumPoints gte 100>>\ <<include [[TV_CP1_HCum1]]>> <</if>>\
<<randomvideo 1 6 tv_cp1_sa>> <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _WCum>> <div id='sexmenu'><<include [[TV_CP1_SexOptions]]>></div> <</nobr>>\
<<if visited() lte 1>><<showvideo tv_cp1_sb0>><br><br><</if>>\ <<randomvideo 1 3 tv_cp1_sb>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[TV_CP1_SexOptions]]>></div>\
<<randomvideo 1 8 tv_cp1_sc>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to random(5,20)>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[TV_CP1_SexOptions]]>></div>\
<<randomvideo 1 4 tv_cp1_sd>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[TV_CP1_SexOptions]]>></div>\
<<nobr>> <<timed 2s>><<shakescreen 2s>> <<set $NPCCumPoints to 0>> <<set $npcmod to $npcmod * 1.1>> <<set $w.xr.h.cm += 1>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.h.day.cmdy to true>> <div id='sexmenu'><<include [[TV_CP1_SexOptions]]>></div> <</timed>><</nobr>>\
<<randompic 1 6 telework>> //This spreadsheet is convoluted. . . . I don't even know what the sales department was trying to record here.// <<showvideo tw_visita1>> My work was interrupted in the best possible way. I felt her presence even before I looked up from my computer. $w.fn had changed into some sexy lingerie and sensually sauntered toward me. "You really busy right now?" she asked me as she pressed her nearly naked body closer to me. <<randomvideo 2 4 tw_visita>> "Not really, I think I could probably take a little break for a few . . . ." She cut me off bringing her mouth to mine. Though it had been a nice surprise, I didn't hesitate to return her kisses with my own, equally full of passion. <<randomvideo 5 6 tw_visita>> She broke off the kiss after only a minute. "I know you don't have that long," she said. "So let's get you out of these clothes immediately." "Yes, ma'am," I agreed. //If I hurry up and don't get caught, I will basically be getting paid to fuck my wife. That's a pretty sexy idea.// [[Continue|GR_TWVisitA2]]
<<showvideo tw_visita7>> $w.fn quickly moved on to my pants. Before I knew it, she had pulled them down to my ankles and was kneeling in front of me. She looked up, into my eyes. //So beautiful!// I was still infatuated with my wife. <<randomvideo 8 9 tw_visita>> $w.fn wrapped her lips around my cock and proceeded to please me with her mouth. //This is definitely better than that spreadsheet//, I thought. <<showvideo tw_visita10>> "OK, your turn!" she said, standing up and turning around. I sat motionless and speechless as she shimmied out of her panties, baring her ass to me. Her absolutely perfect ass. <<showvideo tw_visita11>> $w.fn leaned forward onto my desk, giving me a phenomenal view. //This is so much better than that spreadsheet//, I thought. //Though I wouldn't mind spreading those cheeks.// In hindsight, the pun was pretty corny. [[Continue|GR_TWVisitA3]]
<<showvideo tw_visita16>> Still seated behind her, I had free access to her womanhood and elected to return the favor orally. "Mmmm, yeah, baby, eat my pussy," she purred. With time still being a factor, however, we soon moved on to the main event. <<randomvideo 12 15 tw_visita>> I leaned back. $w.fn grabbed my cock and slid it inside her wet pussy. //Reverse cowgirl is one of my favorite positions//, I observed. //It gives me a perfect view of her gorgeous backside while giving me a good angle to reach around and either play with her tits or her clit.// She bounced up and down at a steady tempo, sinking all the way down to my lap, taking my full length into her core. //From this angle, if my office was to video-call me right now, they would see her entire naked body being fucked//, the thought dawned on me. <<randomvideo 17 22 tw_visita>> I immediately jumped out of my seat and pushed her onto the desk. Conscious of the angle of the webcam attached to my work computer, I started fucking her hard. "Yeah, baby, give it to me," $w.fn moaned. She didn't have to tell me. I was so turned on thinking about the possibility of someone from work seeing my wife in this lewd position, I couldn't help but fuck her as hard as I could. And the harder I fucked her, the more compromised her appearance, the more I thought about her being seen, and the harder I fucked her. The cycle continued until . . . "Fuck! I'm cumming!" I'm groaned. "Pull out!" she replied, but it was too late. <<showvideo tw_visita23>> As I pulled my cock out of her, my cum spilled out with it. $w.fn was on the pill to prevent emergencies, but we agreed that it was better not to risk it and to pull out anyways. We really didn't want to get pregnant while she was trying to get her book finished. "Shit," she panicked. "You weren't supposed to cum in me! Let me go clean up!" She quickly kissed me on my lips and ran out the door. //Well, that ended a bit abruptly. I guess I got a little carried away. Still, it was definitely a great way to take a break from work . . . . But now, back to that sales spreadsheet.// <<nobr>> <<set $w.rous -= 30>> <<set $h.rous -= 30>> <<set $w.xr.h.cm += 1>> <<set $w.xr.h.cmdy to true>> <<set $w.xr.h.day.tdy += 5>> <<run $gameDate.setHours(17)>> <<run $gameDate.setMinutes(0)>> <</nobr>>\ I worked for the rest of the day. [[Wrap it up for the day|GuestRoomMain]]\
<div id="porn"> <h3>What kind of porn do you want to watch?</h3> <<link "Straight">> <<set $watch to 0>> <<replace "#porn">> <<randomvideo 1 15 pornstr>> <<include [[GR_LaptopPornWWife]]>> <</replace>> <<set $h.evt.prn.str += 1>> <</link>><br> <<link "Lesbian">> <<set $watch to 1>> <<replace "#porn">> <<randomvideo 1 30 pornles>> <<include [[GR_LaptopPornWWife]]>> <</replace>> <<set $h.evt.prn.les += 1>> <<set $h.pref.opn += 0.5>> <</link>><br> <<link "Interracial">> <<set $watch to 2>> <<replace "#porn">> <<randomvideo 1 35 pornint>> <<include [[GR_LaptopPornWWife]]>> <</replace>> <<set $h.evt.prn.int += 1>> <<set $h.pref.opn += 0.5>> <</link>><br> <<link "Group">> <<set $watch to 3>> <<replace "#porn">> <<randomvideo 1 26 porngp>> <<include [[GR_LaptopPornWWife]]>> <</replace>> <<set $h.evt.prn.grp += 1>> <<set $h.pref.swg += 0.5>> <</link>><br> <<if $h.evt.rsch.cuk gt 0>> <<link "Cuckold">> <<set $watch to 4>> <<replace "#porn">> <<randomvideo 1 36 porncuk>> <<include [[GR_LaptopPornWWife]]>> <</replace>> <<set $h.evt.prn.cuk += 1>> <<set $h.pref.cuk += 1>> <</link>> <br> <</if>> </div>
<<if $vidchoice is 0>> <<randomvideo 1 5 stupidt>> <<elseif $vidchoice is 1>> <</if>><br><br> <<addminutes 20>> <<unset $vidchoice>> [[Do something else|GR_LaptopBase]]
<<showvideo tw_pornmast1>><br><br> <<showvideo tw_pornmast2>><br><br> <<addminutes 10>> <<set $h.rous -= 30>> [[Do something else|GR_LaptopBase]]
<<nobr>> <<set _img to random(1,25)>> <<if _img lte 17>> <<randompic 1 17 mwgyma>> <<else>> <<randomvideo 18 25 mwgyma>> <</if>> <</nobr>> I went down to the gym in the building and worked out for about an hour. It feels so much better to do something active instead of just sitting in front of a computer writing all day. <<nobr>> <<if visited() gt 3>> <<set _img to random(1,6)>> <<if _img gte 5>> <<randompic 5 6 mwgyms>> <<else>> <<randomvideo 1 4 mwgyms>> <</if>> <<set $w.pref.bk += 0.5>> <p><<if not $w.xr.sh.m>>That guy<<else>>Shaun<</if>> was working out<<if visited() gt 4>> again<</if>>. I never thought I was really that into "muscle" guys, but //god-damn//, this guy was so fucking sexy. . . .</p> <</if>> <</nobr>>\ <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
[img[images/mwgymb1.jpg]] I had been at it for a little while and decided to just relax with a light dumbbell for a bit. "Takin' a little break?" I looked up when I realized that deep voice was directed at me. Standing in front of me was that sexy mother-fuc---- . . . I mean //man// . . . that I had been watching the last few times I had worked out. "Yeah, not quite ready to quit, but ready to cool down a bit," I said back to him, trying my hardest to sound cool. [img[images/mwgymb2.jpg]] "You don't look like you have any water. I brought a few extra bottles if you want one." He held out a bottle. It had already been opened and he had clearly had a few sips. I didn't even hesitate in taking it from him and putting it to my lips. //Is the rim still a little warm from his lips?// The thought honestly had me a little distracted, and a bit of water dribbled from the side of my mouth down to my chest. Embarrassed, I quickly grabbed my towel from the bench next to me and dried off my chest. [img[images/mwgymb3.jpg]] "Thank you for the water. I forgot mine in my apartment." "No problem at all," he said. "I'm Shaun. I'm up on the 3rd floor with my roommates." I was still holding my towel with both hands, so he reached out and put his hand on my shoulder as a greeting. It was a little weird to feel such direct human contact after so long with pandemic restrictions. "$w.fn. Fourth floor." //Fuck, the pandemic//, I thought. //I completely forgot about that when I drank directly out of his open bottle. I have //got// to get my hormones under control.// "Nice to meet you, $w.fn. I've noticed you here a few times. You are really fit." His smile was infectious and I found myself smiling back. //OK, never mind. The hormones are warranted.// "Yeah, I work from home, so it's really important to get out and get physical exercise on a regular basis." "I completely agree. Well, I'm fixin' to head out. Maybe we can work out together next time I see you." "I would like that," I responded. "I'd like that very much." "Keep the water. I'll see you soon." With that, he smiled at me again and walked toward the locker rooms. //Fucking hell//, I thought. //This guy is going to get me in trouble.// <<nobr>> <<set $w.xr.sh.rel += 1>> <<set $w.xr.sh.m to true>> <<set $w.pref.bk += 0.5>> <<set $w.rous += Math.clamp(Math.round(10 + ($w.pref.bk * 5)),10,50)>> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>> <</nobr>>
<<nobr>> <<set _img to random(1,9)>> <<if _img gte 6>> <<= '[img[images/mwgymc' + _img + '.jpg]]'>> <<else>> <<randomvideo 1 5 mwgymc>> <</if>> <<set $w.evt.gym += 1>> <<set $w.pref.bk += 0.25>> <<set $w.xr.sh.rel += 1>> <<set $w.rous += 20>> <<set $dtsv.gym to $gameDate.getDate()>> <</nobr>> Shaun and I had settled into a bit of a routine, working out together. It's a lot of fun, having someone else there to help keep you motivated. Plus, Shaun's hard body and our "innocent" flirtations provided major bonus points and delicious eye candy. <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<nobr>> <<set _img to random(1,9)>> <<if _img gte 6>> <<randompic 6 9 mwgymc>> <<else>> <<randomvideo 1 5 mwgymc>> <</if>> <<set $w.xr.sh.asko1 to true>> <</nobr>> Shaun and I had settled into a bit of a routine, working out together. It's a lot of fun, having someone else there to help keep you motivated. Plus, Shaun's hard body and our "innocent" flirtations provided major bonus points and delicious eye candy. <<showvideo mwgymd1>> "Woo! Lookin' good out there today! Let's go!" Shaun exuberantly encouraged me as we took a few moments to rest on the floor. I laughed at him. "You're so stupid!" "Whatever, you know you love the energy!" "Maaaaybe . . .." I admitted, kinda, flirting. <<showvideo mwgymd2>> Somehow Shaun sensed something, as I shifted and turned away from him. He rubbed my head, playfully tousling my hair. //Yeah, yeah, you can tell I'm struggling here, can't you, you sexy man?// "Hey, let's get cleaned up and go grab a quick bite to eat. What you think?" "Yeah, sure! That sounds like fun!" "OK, cool. Meet you in front of the building in a half-hour?" "Umm . . . let's make it an hour," I suggested. "Perfect! An hour it is! But I expect you to get extra beautiful for me, since you have all that extra time!" Shaun laughed at his own joke. "Yeah, ditto, buddy!" //Wait, we're flirting again, aren't we? Fuck.// Shaun and I each grabbed our things out of the lockers and went our separate ways to our individual homes. //OK, I'm actually really looking forward to getting to know him outside of the gym. I really don't have a lot of opportunities to hang out with anyone nowadays. I'm allowed to have friends, aren't I? It's not like I'm planning no doing anything, it's just lunch! The sun is still out, for crying out loud!// In hindsight, maybe it wasn't the wisest choice to be physically attracted to the only friend I talked to on a regular basis. Also, I probably shouldn't have ignored all the bells and alarms warning me about this, and for that matter, repressing all conscious aknowledgment of that physical attraction probably just made the whole situation worse. Like pouring water on a gas-fire. <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<set _scn to random(3)>> <<if _scn gte 2 and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed" or GameDays[$gameDate.getDay()] is "Fri") and not $w.xr.sh.daylch and $w.xr.sh.l isnot 5>> <<include [[MW_GymE2]]>> <<else>> <<include [[MW_GymE1]]>> <</if>> <br><br> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>
<<if GameDays[$gameDate.getDay()] is "Fri" and $gameDate.getHours() gte 16 and not $intexts.br.a and ($w.evt.fkr1.b or $w.evt.fkr2.b or $w.evt.fkr3.b or $w.sat lt 45)>> ''<<link "You have a text from Brian">> <<unset $incomingtext>> <<set $intexts.br.a to true>> <<popover>> [img[images/txtinbrian1.jpg]] <</popover>> <<goto "TextMessageMain">> <</link>>''<br><br> <<elseif hasVisited("BossVidMore") and not $intexts.rd.a and $gameDate.getHours() gte 20 and ($w.xr.br.evt.last or not $w.xr.br.evt.on)>> ''<<link "You have a text from Mr. Day">> <<unset $incomingtext>> <<set $intexts.rd.a to true>> <<set $dtsv.rdatxt to $gameDate.getDate()>> <<popover>> [img[images/txtinrd1.jpg]]<br><br> <center><<link "Click to view media">> <<popover>> <<set _img to 7>> <span id="hbossvid"><<print '<video src="images/hbossvid' + _img + '.mp4" style="width:600px;" autoplay loop muted></video>'>></span><br><br> <<link "Next video">> <<if _img lt 12>> <<set _img += 1>> <<replace "#hbossvid">> <<print '<video src="images/hbossvid' + _img + '.mp4" style="width:600px;" autoplay loop muted></video>'>> <</replace>> <<elseif _img is 12>> <<if $w.pov>> <<goto [[WSeePhone]]>> <<run Dialog.close()>> <<addminutes 5>> <<else>> <<goto $phonepassage>> <<run Dialog.close()>> <<addminutes 5>> <<unset $phonepassage>> <</if>> <</if>> <</link>><br> <<link "Close">> <<if $w.pov>> <<goto [[WSeePhone]]>> <<run Dialog.close()>> <<addminutes 5>> <<else>> <<goto $phonepassage>> <<run Dialog.close()>> <<addminutes 5>> <<unset $phonepassage>> <</if>> <</link>> <</popover>> <</link>></center> <</popover>> <<goto "TextMessageMain">> <</link>>''<br><br> <<elseif $intexts.rd.a and not $intexts.rd.b and GameDays[$gameDate.getDay()] is "Mon" and $gameDate.getHours() gte 20 and $dtsv.rdatxt isnot $gameDate.getDate()>> ''<<link "You have a text from Mr. Day">> <<unset $incomingtext>> <<set $intexts.rd.b to true>> <<set $dtsv.rdbtxt to $gameDate.getDate()>> <<popover>> [img[images/txtinrd1.jpg]]<br><br> <center><<link "Click to view media">> <<popover>> <<set _img to 13>> <span id="hbossvid"><<print '<video src="images/hbossvid' + _img + '.mp4" style="width:600px;" autoplay loop muted></video>'>></span><br><br> <<link "Next video">> <<if _img lt 16>> <<set _img += 1>> <<replace "#hbossvid">> <<print '<video src="images/hbossvid' + _img + '.mp4" style="width:600px;" autoplay loop muted></video>'>> <</replace>> <<elseif _img is 16>> <<if $w.pov>> <<goto [[WSeePhone2]]>> <<run Dialog.close()>> <<addminutes 5>> <<else>> <<goto $phonepassage>> <<run Dialog.close()>> <<addminutes 5>> <<unset $phonepassage>> <</if>> <</if>> <</link>><br> <<link "Close">> <<if $w.pov>> <<goto [[WSeePhone]]>> <<run Dialog.close()>> <<addminutes 5>> <<else>> <<goto $phonepassage>> <<run Dialog.close()>> <<addminutes 5>> <<unset $phonepassage>> <</if>> <</link>> <</popover>> <</link>></center> <</popover>> <<goto "TextMessageMain">> <</link>>''<br><br> <<elseif $inwifetxt>> ''<<link "You have a text from $w.fn">> <<unset $incomingtext>> <<unset $inwifetxt>> <<if ndef $h.xr.w.slf>><<set $h.xr.w.slf to 0>><</if>> <<set $h.xr.w.slf += 1>> <<popover>> <<include [[WifeInText]]>> <</popover>> <<goto "TextMessageMain">> <</link>>'' <</if>>
<<nobr>> <<addminutes 10>> <<set $w.xr.h.day.tdy += 3>> <<set $h.xr.w.lch += 1>> [img[images/hwlchrm1.jpg]] <</nobr>> We were able to grab an available RideMe car almost immediately and were downtown in just 10 minutes. $w.fn and I decided on a coffee shop for a quick lunch. [img[images/coffeeshop2.jpg]] I liked this coffee shop. It reminded a little bit of this little cafe right off campus. At lunch time you would always see a couple of students with their books spread out on the table in front of them, trying to boost their studying with extra caffeination. I have to admit, there were a few times--especially in grad school--when I joined their ranks. Of course, there was a major difference. Being downtown instead of near a college campus, the clientele was not so much college students as it was local hipsters and wine moms taking a break from shopping. <<include [[WH_LunchDateB1]]>> \ /* <<nobr>> <<if $h.xr.w.lwtr lte 3 or $w.xr.h.rel.m>> <<include [[WH_LunchDateB1]]>> <<else>> <<include [[WH_LunchDateC1]]>> <</if>> <</nobr>> */\
/* Clothing */\ <<nobr>> <<if $w.evt.clo lte 5 or $w.pref.ex lte 10>> <<include [[MW_ShoppingA2]]>> <<elseif ($w.pref.cht or (not $w.xr.h.rel.m and not $w.xr.h.rel.swg)) and $w.pref.ex gt 10>> <<set _scene to random(1,3)>> <<if _scene lte 2>> <<include [[MW_ShoppingA2]]>> <<elseif _scene is 3>> <<include [[MW_ShoppingA3]]>> <<elseif _scene is 4>> <<include [[MW_ShoppingA4]]>> <</if>> <<else>> <<set _scene to random(1,3)>> <<if _scene lte 2>> <<include [[MW_ShoppingA2]]>> <<elseif _scene is 3>> <<include [[MW_ShoppingA3]]>> <</if>> <</if>> <</nobr>> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
/* Massage */ <<set $w.pref.ex += 1>>\ I decided to get a massage to help me relax a bit. Entering the small lobby, I paid for an hour and waited for my turn. Before too long, a young male masseuse came to lead me into the back. <<if visited("MW_ShoppingE5") lt 1>>\ As we entered the private massage room, I could see the massage table in the center of the room. The aroma of scented candles----jasmine?----hung in the air. "You can get undressed in there," he said, pointing to a small changing area in the corner of the room. <<showvideo mw_msgE1>> //Hmmm . . . how much should I remove? Obviously, I should at least strip down to my underwear . . . .// <<showvideo mw_msgE2>> <<showvideo mw_msgE3>> //You know what? I don't want to get oils on my underwear . . . I think I should take these off as well . . . .// <<showvideo mw_msgE4>> //OK, I think I'm ready now . . . don't think about too much about it, $w.fn . . . you don't have anything he hasn't seen before . . . .// <<showvideo mw_msgE5>> I wrapped myself in a towel and left the changing room. "Go ahead and lay face-down on the table," he instructed. I let go of my towel and did as he asked. //Well, I'm a bit exposed here, but I just need to forget about that and relax . . . .// [[Continue|MW_ShoppingE2]]\ <<else>><<set $scene to random(1,3)>>\ <<= '<<showvideo mw_msgE' + $scene + '-1>>'>> <<= '<<showvideo mw_msgE' + $scene + '-2>>'>> <<= '<<showvideo mw_msgE' + $scene + '-3>>'>> <<= '<<showvideo mw_msgE' + $scene + '-4>>'>> [[Continue|MW_ShoppingE2B]]\ <</if>>\
[img[images/coffeeshop1.jpg]] I thought that a change of scenery might help my creative process a bit. Caffeine wouldn't hurt either. I caught a quick ride to the coffee shop downtown. [img[images/coffeeshop2.jpg]] After ordering a hot spicy chai tea, I set my laptop up and puddled around with my book for a few hours. While occasionally the customers could be distracting when I was trying to concentrate, being able to observe and describe how people naturally act was definitely a worthwhile trade-off. By the time I was ready to leave, I had been able to write a couple of scenes that I might be able to incorporate into the novel at some point. <<nobr>> <<set $w.evt.cof += 1>> <<if $w.evt.cof lte 3>> <<link "Go home" $nextpassage>><<unset $nextpassage>><</link>> <<else>> <<include [[MW_ShoppingD2]]>> <</if>> <</nobr>>\
/* Sugar */\ [img[images/sugar1.jpg]] <<nobr>> <<set _sugar to random(1,5)>> <<if $w.pref.bk gte 2 and not $inv.bbc>> <<include [[MW_ShoppingC3]]>> <<elseif $w.pref.ex gte 3 and _sugar is 3>> <<include [[MW_ShoppingC4]]>> <<else>> <<include [[MW_ShoppingC2]]>> <</if>> <<set $w.evt.sgr += 1>> <</nobr>>
/* Grocery */\ <<nobr>> <<if $w.pref.ex gt 5>> <<set _scene to random(1,3)>> <<else>> <<set _scene to random(1,2)>> <</if>> <<if _scene lte 2>> <<randompic 1 9 mwgrocery>><br><br> //$h.fn might work a 9-to-5 job, but that doesn't mean I don't work," I thought, as I casually browsed the aisles of the grocery store. //Between doing all the housework and working on my novel--which is supposed to be "my job"--I barely have time to get some exercise a few times a week, relax, and just do "normal life" things . . . .// <<else>> <<include [[MW_ShoppingB2]]>> <</if>> <<set $Bank -= 50>> <</nobr>> I finished up at the grocery store and went home. [img[images/mwgrocery10.jpg]] While putting the food away, I thought, //I sure hope $h.fn steps up to help around the house a little bit more. I would definitely appreciate a little more "down-time."// <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<nobr>> <<randompic 1 3 hwcs_lunch>> <<addminutes 20>> <</nobr>>\ The place wasn't too busy today, even though it was lunchtime. It didn't take long for the waitress to take our orders. There menu isn't too extensive, and we have our "favorite" sandwiches. <<nobr>> <<if visited() lte 1>>//Hmmm . . . this must be a new waitress. I've never seen her before.// <<else>>//Here's that new waitress again . . . .// <</if>> <</nobr>> [[Check her out|WH_LunchDateB2]] ''[[Don't do it!|WH_LunchDateB3]]''
<<set _scene to random($h.evt.rsch.cuk,($h.evt.rsch.cuk + 5))>> <<if _scene lte 5>> <<include [[GR_LaptopRsrchCuck1]]>> <<else>><div class="research"> <<randomvideo 1 6 rschcuk>></div> //<p>I really need to stop using the RedditChan to research things. It's rotting my brain!</p>// <<set $h.rous += 10>> <<set $h.pref.cuk += 0.5>> <</if>> <<addminutes 20>> [[Do something else|GR_LaptopResearchBase]]
<<set _scene to random($h.evt.rsch.opn,($h.evt.rsch.opn + 3))>> <<if _scene lte 4>> <<include [[GR_LaptopRsrchOpen1]]>> <<else>><div class="research"> <<randomvideo 1 5 rschshr>></div> //<p>I really need to stop using the RedditChan to research things. It's rotting my brain!</p>// <<set $h.rous += 10>> <<set $h.pref.opn += 0.5>> <</if>> <<addminutes 20>> [[Do something else|GR_LaptopResearchBase]]
<div class="research">''How to Get Away With Cheating'' Cheating on your spouse is one of the most common reasons for divorce. If possible, try not to do it. On the other hand, sometimes it just can't be helped. Why should anyone ever have to pay the consequences for their bad decisions? If you ever wake up next to someone other than your significant other, what can you do to get away with it? Cheating in today's world is so much more difficult than just a few years ago. Our constant use of electronic devices means that we are all always under constant surveillance by the government, corporations, and each other! That means your wife, buster! So the first step to getting away with cheating is to block all the ways in which she might be spying on you. ''1. Buy a second phone.'' Cheap pre-paid phones can be found at almost any //''<span style="color:red;">convenience store</span>''//. Keeping all your contact on this "unknown" phone keeps your "known" line clean. No weird calls or texts, nothing showing up on your phone bill or online history. Just be careful to hide it well. It's almost impossible to come up with a good reason to have a second phone. ''2. Clear your browser history.'' If you ever use your computer to access social media, dating apps, emails, or any other way you might contact your "other person," clear your browser history. It's not a bad idea to just do this from time to time anyway. ''3. Use cash.'' Cash isn't trackable. Credit is trackable. It's as easy as that. You don't want someone going through your credit card bill and seeing meals, gifts, hotels, or anything else that you might want to spend. Just use cash. ''4. Use protection.'' And I'm not talking about seat belts. Wear a condom. How can you explain an accidental pregnancy? Or worse, what if you accidentally pass an STD to your wife? Unless she is also cheating, there's only one possible explanation. No getting out of that one! ''5. Play dumb.'' I mean //DUMB//. If she ever asks anything about anything remotely connected to your infidelity, just pretend you know nothing at all. Don't try to lie, don't try to come up with "a story." Never, and I mean, //never// admit anything. Deny, deny, deny. Literally have her questioning her own sanity with just how dumb you are. If you are careful enough not to leave any physical evidence, then she will only have suspicions. If you never do anything to confirm those suspicions, you will be in the clear. /</div> ---- //This site looks pretty damn sketchy, but a lot of the information makes sense. I think.// [[Do something else|GR_LaptopBase]]\
<<set _scene to random(1,5)>> <<if _scene is 1>> <<randompic 1 11 march>><br><br> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>> <<else>> <<include [[MW_Park_Jogging1]]>> <</if>>
<<showvideo mw_msgE6>> The towel barely covered my ass. Not that it mattered. His strong hands were rubbing every inch of my body. I had never been to this massage parlor before. It was closer than the one I usually went to. <<showvideo mw_msgE7>> From my back, he moved on to my arms. This especially felt amazing due to the amount of time I spent typing and using my mouse. You wouldn't think that was a major cause of muscle stress, but I guess you would be mistaken. Next, the masseuse applied more oil to his hands and moved to my lower body. <<showvideo mw_msgE9>> "Ooohhhh . . . ." I moaned as his hands glided firmly up and down my legs. I could feel the tension in my calves and thighs melting away second by second. //Mmmm . . . . control yourself, $w.fn. Don't audibly moan. Don't embarass yourself.// <<showvideo mw_msgE10>> "Unnnhhh . . . ." //God damn it!// As he kneaded my upper thighs, another moan escaped my mouth. //Fuck, I think this is actually turning me on. I hope he can't see that my pussy is wet from that angle. Maybe the massage oil will mask it? Oh God, please! . . .// The towel had slid up my body. It was now sitting on the small of my back, leaving my ass bare //Wait, did he just spread my ass? He definitely saw me.// <<showvideo mw_msgE11>> The awkward silence----previously only broken by my awkward moaning----was broken this time by a deep, unfamiliar voice. Obviously, it was the only other person in the room. //Did his voice sound this sexy when we first came into the room? How long ago was that even?// "Would you like me to massage your other side?" "Oh, um, yes, please," I answered. His chuckle made me realize I hadn't moved. "Roll over, please." "Yes, sir," I responded and did as I was told. [[Roll over|MW_ShoppingE3][$w.rous += 15]]\
<<showvideo mw_msgE12>> <<showvideo mw_msgE13>> <<showvideo mw_msgE14>> <<showvideo mw_msgE15>> <<nobr>> <<set $w.rous += 15>> <<if ($w.evt.msg gte 5 or $w.xr.h.rel.cuk or $w.xr.h.rel.opn or ($w.pref.cht and $w.xr.sh.x gt 0)) and $w.rous gte 100>>[[Get a deeper massage|MW_ShoppingE4]]<br><</if>> [[That's enough|MW_ShoppingE_End1]] <</nobr>>\
<<nobr>> <<set $Bank -= 100>> <</nobr>>\ <<link "Get dressed and go home" $nextpassage>> <<unset $nextpassage>> <</link>>\
<<showvideo mw_msgE16>> <<showvideo mw_msgE17>> <<showvideo mw_msgE18>> <<showvideo mw_msgE19>> <<showvideo mw_msgE20>> <<nobr>> <<set $w.rous += 15>> <<if ($w.evt.msg gte 7 or $w.xr.h.rel.cuk or $w.xr.h.rel.opn or ($w.pref.cht and $w.xr.sh.x gt 0)) and $w.rous gte 100>>[[Get a really deep massage|MW_ShoppingE5]]<br><</if>> [[That's enough|MW_ShoppingE_End1]] <</nobr>>\
I laid down on the table for another massage <<if $scene is 1>>\ <<randomvideo 5 9 mw_msgE1->> <<showvideo mw_msgE1-10>> <<randomvideo 11 12 mw_msgE1->> <<elseif $scene is 2>>\ <<randomvideo 5 9 mw_msgE2->> <<randomvideo 10 11 mw_msgE2->> <<showvideo mw_msgE2-12>> <<randomvideo 13 14 mw_msgE2->> <<elseif $scene is 3>>\ <<randomvideo 5 7 mw_msgE3->> <<randomvideo 8 10 mw_msgE3->> <<showvideo mw_msgE3-11>> <<randomvideo 12 13 mw_msgE3->> <</if>> \ <<nobr>> <<set $w.rous += 15>> <</nobr>>\ [[Let him keep going|MW_ShoppingE3B]] [[That's enough|MW_ShoppingE_End1]]
<<showvideo mw_msgE21>> <<showvideo mw_msgE22>> <<showvideo mw_msgE23>> <<showvideo mw_msgE24>> [[Oh! Fuck!|MW_ShoppingE6]]
<<showvideo mw_msgE25>> <<showvideo mw_msgE26>> <<showvideo mw_msgE27>> <<showvideo mw_msgE28>> [[Yes! Fuck me!|MW_ShoppingE7]]
<<showvideo mw_msgE29>> <<showvideo mw_msgE30>> <<showvideo mw_msgE31>> <<showvideo mw_msgE32>> [[Oh! Fuck!|MW_ShoppingE8]]
<<showvideo mw_msgE33>> <<showvideo mw_msgE34>> <<nobr>> <<timed 2s>><<shakescreen 2s>> <<showvideo mw_msgE35>><br><br> <<set $w.rous -= 30>> [[Make him cum|MW_ShoppingE9]] <</timed>><</nobr>>\
<<showvideo mw_msgE36>> <<showvideo mw_msgE37>> <<showvideo mw_msgE38>> <<showvideo mw_msgE39>> <<showvideo mw_msgE40>> [[Relax for a minute . . .|MW_ShoppingEEndB]]
<div id="meanwhile"><h1>Meanwhile . . .</h1></div> <<timed 2.5s>><<replace "#meanwhile">>\ <<if hasVisited("Event1_After2")>>\ <<showvideo e1b_start1>> As soon as $h.fn got into the shower, I decided to go wake Brian up. <<showvideo e1b_start2>> <<showvideo e1b_start3>> <<showvideo e1b_start4>> <<showvideo e1b_start5>> <<elseif hasVisited("Event1_After3")>>\ <</if>>\ <<link [[Wake Brian up|Event1B_WB_FPStart]]>> <<if $w.rous lt 100>><<set $w.rous += 100>><</if>> <<set $SexScene to true>> <<set $Partner1Name to "Brian">> <<set $root to "Event1B_WB_">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to (($w.xr.br.x * ($w.rous + $w.xr.br.cm))/100)>> <<set $npcmod to 0.6>> <<set _BCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _BCum>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>><</replace>><</timed>>
<<showvideo e1b_fpstart1>> <<showvideo e1b_fpstart2>> <<showvideo e1b_fpstart3>> <<showvideo e1b_fpstart4>> <<showvideo e1b_fpstart5>> <<set $w.rous += 20>>\ <div id='sexmenu'><<include [[Event1B_WB_FPOptions]]>></div>\
<<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ !!!What do you want to do? <<if $NPCCumPoints lt 25>>\ [[Suck that beautiful big cock|Event1B_WB_FPA1]]<br><</if>>\ ''[["Enough foreplay, fuck " + $Partner1Name + "!"|Event1B_WB_SexStart]]'' <<elseif $NPCCumPoints gte 100>>\ <<include [[Event1B_WB_2Cum]]>> <</if>>\
<<if visited() lte 1>><<showvideo e1b_fpa0>> "God, I can't stop thinking about fucking you," I told Brian, as I teased his cock with my mouth. "Your cock is just so big!"<br><br><</if>>\ <<randomvideo 1 7 e1b_fpa>> \ <<nobr>> <<addminutes 5>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += _cpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set $w.rous += 25>> <</nobr>>\ <div id='sexmenu'><<include [[Event1B_WB_FPOptions]]>></div>\
Brian was more than ready. //MUCH// more. I laid down on my stomach and looked up at him from the bed, begging him to fuck my face. <<showvideo e1b_sstart1>> Brian took the hint and slid his cock into my mouth. He moved his hips slowly, pushing up against the back of my throat. <<showvideo e1b_sstart2>> "OK, that's enough! Fuck me now!" <div id='sexmenu'><<include [[Event1B_WB_SexOptions]]>></div>\
<<showvideo e1b_bc>> "OK, hurry up! We need to get out of here before $h.fn gets out of the shower!" <<link "Continue" $nextpassage>> <<unset $SexScene>> <<set $w.xr.br.x += 1>> <<set $Partner1Name to "">> <<set $w.rous += $POVCumPoints>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <<unset $root>> <</link>>\
<<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|Event1B_WB_SexA1]] [[Doggystyle|Event1B_WB_SexB1]] [[Cowgirl|Event1B_WB_SexC1]] [[Reverse cowgirl|Event1B_WB_SexD1]] [[Prone|Event1B_WB_SexE1]] <<elseif $POVCumPoints gte 100>>\ <<include [[Event1B_WB_1Cum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Event1B_WB_2Cum]]>> <</if>>\
/* Missionary */\ <<nobr>> <<if visited() lte 1>> <<showvideo e1b_sa0>><br><br> <</if>> <</nobr>>\ \ <<randomvideo 1 3 e1b_sa>> \ <<nobr>> <<addminutes 2>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1B_WB_SexOptions]]>></div>\
/* Doggystyle */\ <<nobr>> <<if visited() lte 1>> <<showvideo e1b_sb0>><br><br> <</if>> <</nobr>>\ \ <<randomvideo 1 3 e1b_sb>> \ <<nobr>> <<addminutes 2>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to (random(5,20))>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1B_WB_SexOptions]]>></div>\
/* Cowgirl */\ <<randomvideo 1 5 e1b_sc>> \ <<nobr>> <<addminutes 2>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1B_WB_SexOptions]]>></div>\
/* Reverse Cowgirl */\ <<randomvideo 1 2 e1b_sd>> \ <<nobr>> <<addminutes 2>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to (random(5,20))>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1B_WB_SexOptions]]>></div>\
//Oh fuck! He's making me cum //again//!! Almost there . . . almost there . . .// "FUCK!!!" <<nobr>> <<timed 2.5s>><<shakescreen 2s>> <<if passage() is "Event1B_WB_SexA1">> <<showvideo e1b_sac>> <<elseif passage() is "Event1B_WB_SexB1">> <<showvideo e1b_sbc>> <<elseif passage() is "Event1B_WB_SexC1">> <<showvideo e1b_scc>> <<elseif passage() is "Event1B_WB_SexD1">> <<showvideo e1b_sdc>> <<elseif passage() is "Event1B_WB_SexE1">> <<showvideo e1b_sec>> <</if>><br><br> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.br.cm += 1>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 0.5>> <<set $povmod to $povmod * 1.1>> <div id='sexmenu'><<include [[Event1B_WB_SexOptions]]>></div> <</timed>><</nobr>>\
/* Prone */\ <<randomvideo 1 5 e1b_se>> \ <<nobr>> <<addminutes 5>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to (random(5,20))>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Event1B_WB_SexOptions]]>></div>\
Wandering about Downtown, I ended up at //Sugar//, the local "adult paraphernalia" store. //Hmmm . . . maybe I could take a peek, see if there's something that would help our little Bedroom "problem."// [img[images/mwsc3_dildo1.jpg]] Dick-shaped "realistic" dildos were just up my alley. If it's not gonna be a real dick, it //has// to be the next best thing. As I walked past the showcase, I saw about a dozen or more cocks just standing on end. All colors, sizes, shapes. <<showvideo mwsc3_dildo2a>> The shelves held even more. Peg after peg (no pun intended!) of cocks wrapped in plastic. Even more sizes, even more shapes. Some were named after the famous porn stars that served as models for the plastic molds. Some had special features, obviously vibrating was a big one, but the ones that squirt fake "cum" (lube) also looked pretty cool. Maybe next time. Then there were the more----//ahem//----"unique" ones. Big ones shaped like horse cocks or fists (with the attached arms), ones shaped like dragon tails or dog dicks. //Not gonna kink-shame anyone, but //damn//!// [img[images/mwsc3_dildo2.jpg]] And then I found it: the one, the Grail, the cock-in-a-box that was going to be the next cock in //my// box. It was clearly a premium model----even its presentation and packaging gave the impression that this cock was special. It sat in a black box, on a bed of violet fabric. No plastic packaging, you couldn't hang this one on a hook! It was long, thick. It would stretch me out and fill me up in //exactly// the way I need to be stretched out and filled up. I picked it up; it had a little bit of weight to it. Hefty, girthy. //Fuck!// My pussy was getting so fucking wet. //I am definitely taking this home with me.// I took the box up to the register. The clerk looked me directly in my eyes and smiled as he rang me up. I took the discrete shopping bag with the box in it and left, anxious to get home and get this bad boy inside of me. <<nobr>> <<set $w.pref.bk += 1>> <<set $w.pref.sq += 2>> <<set $w.rous += 10>> <<set $inv.bbc to true>> <<set $Bank -= 150>> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>> <</nobr>>\
<<nobr>> <<if visited() lte 1>> [img[images/sugar2.jpg]]<br><br> [img[images/sugar3.jpg]]<br><br> [img[images/sugar4.jpg]]<br><br> [img[images/sugar5.jpg]]<br><br> <<else>> <<set _img to random(2,5)>> <<= '[img[images/sugar' + _img + '.jpg]]'>> <</if>> <</nobr>> <<showvideo mwsc2_shop>> <<nobr>> <<set $w.rous += 10>> <</nobr>> \ <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
//Oh, these toys are giving me so many ideas! I'm getting so wet!// As I walked through the aisles, the idea struck me to show off a little bit. There weren't many customers, and they were focused on their own shit. //Mostly trying to hide the fact that they were there in the first place//, I thought. //Sex- and kink-shame are way too powerful in this country. But I bet I can take advantage of the fact that no one is paying attention to anyone else. Most importantly, no one is paying attention to me.// <<randomvideo 1 10 mwc4_exhibA>> //This is definitely NOT turning me off. I am getting so wet. . . . I wonder if I can take this even further. . . .// <<randomvideo 1 3 mwc4_exhibB>> After a few minutes, I couldn't take it anymore. //If I don't leave soon, I'm definitely going to do something I regret!// I didn't even buy anything that day. I left as quickly as possible and went home. <<nobr>> <<set $w.pref.ex += 1>> <<set $w.rous += 30>> <<set $w.evt.sgrex to true>> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>> <</nobr>>\
<<nobr>> <<set _scene to random(1,3)>> <<set $w.pref.ex += 1>> <<set $w.rous += 10>> <</nobr>>\ <<if _scene lte 2>><<showvideo mwgrocery11>><br><</if>> I needed to pick up a few additional household items so I decided to do my grocery shopping at a larger retailer this time. I had a little secret though . . . I was in a "cheeky" mood, so I decided to wear a short skirt without panties. I felt like I was challenging people to see me in a vulnerable state and challenging myself to let them. //Exploring this exhibitionist side has been thrilling! I mean, why not show off my body while I have it to show off?// <<if _scene lte 2>><<showvideo mwgrocery13>><<else>><<randomvideo 23 24 mwgrocery>><</if>> The store was crowded today. My anxiety level pushed my adrenaline through the roof, and it was turning me on unbelievably. This was going to be //so// thrilling. As I walked through the aisles, no one seemed to blink an eye at me, other than the occasional general acknowledgment that a young woman with slightly-better-than-average looks was in the vicinity. I decided to ramp it up a notch. I needed more risk. <<if _scene lte 2>><<randomvideo 14 16 mwgrocery>><<else>><<randomvideo 25 29 mwgrocery>><</if>> //Bending over to look at the stuff on the bottom shelf should give people a bit more opportunity to see something they shouldn't see.// I am sure that at least a couple of people got an eyeful. How much lust was I inspiring in the strangers looking at my ass? Could they see my pussy? Were they thinking about fucking me? <<if _scene lte 2>><<randomvideo 17 18 mwgrocery>><<else>><<randomvideo 30 31 mwgrocery>><</if>> //This feeling is amazing!// I decided to take it one step further. Looking around, I made sure there was no one nearby, looking in my direction. Then I lifted my skirt, deliberately showing my bare body. I still knew I was safe, but the subconscious sense of danger had all of my senses heightened. \ <<if _scene lte 2 and $w.rous gte 100 and ($w.pref.cht or $w.xr.h.rel.cuk or $w.xr.h.rel.opn)>><br> [img[images/mwgrocery19.jpg]] Just then, a relatively handsome man caught my eye, and my game had clearly caught his. He was looking right at me with a grin from ear to ear and pointing in my direction. I decided to tease him to see what he would do. <<showvideo mwgrocery20>> I held our eye contact and lifted my skirt, just enough that he could clearly see my pussy. He began walking toward me. Daring myself to go further, I didn't run from the situation. He seemed harmless enough. Instead, I turned around and leaned on the closest product table. [img[images/mwgrocery21.jpg]] I could no longer see him, but I felt his presence close behind me. Barely above a whisper, I breathed to him, "Touch me . . . ." <<showvideo mwgrocery22>> He did exactly that. I felt his hand on my bare skin, my bare ass, squeezing it gently, spreading my cheeks so that my holes were on full display to him. And then he was gone . . . .\ <<nobr>> <<if $w.xr.h.rel.m>><<set $w.evt.cht += 0.5>><</if>> <<set $w.rous += 50>> <</nobr>> <</if>>\ //Okay, enough fun and games . . . I'm going to explode if I don't get out of here!// I gathered together everything I needed, paid, and left the store.
<<widget "wpovstats">> <<silently>> <<if ndef $swg>><<set $swg to {a1 : false, a2 : false}>><</if>> <<if $w.xr.rd.forg and not $w.xr.rd.m>> <<set $w.xr.rd.m to true>> <<elseif ($w.xr.h.rel.cuk or $w.xr.h.rel.opn or $w.pref.cht) and $w.rous gt 150 and $fkr.ch is 0 and (not $w.xr.br.evt.on or ($w.xr.br.evt.on and $w.xr.br.evt.done)) and ($gameDate.getDate() - $dtsv.rel) gte 2>> <<if $fkr.ch is 0>> <<set $fkr.n to $w.fn>> <<set $fkr.ch to random(1,3)>> <<elseif $fkr.ch is 1 and not $w.evt.fkr1.a>> <<set $w.rous += 100>> <<set $w.evt.fkr1.a to true>> <<elseif $fkr.ch is 2 and not $w.evt.fkr2.a>> <<set $w.rous += 100>> <<set $w.evt.fkr2.a to true>> <<elseif $fkr.ch is 3>> <<set _scn to random(1,2)>> <<if _scn is 1 and not $w.evt.fkr1.a>> <<set $w.rous += 100>> <<set $w.evt.fkr1.a to true>> <<elseif _scn is 2 and not $w.evt.fkr2.a>> <<set $w.rous += 100>> <<set $w.evt.fkr2.a to true>> <<elseif not $w.evt.fkr1.a>> <<set $w.rous += 100>> <<set $w.evt.fkr1.a to true>> <<else>> <<set $w.rous += 100>> <<set $w.evt.fkr2.a to true>> <</if>> <</if>> <<elseif ($w.xr.h.rel.cuk or $w.xr.h.rel.opn or $w.pref.cht) and $w.rous gt 150 and $gameDate.getHours() lt 13 and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed") and (not $w.xr.br.evt.on or ($w.xr.br.evt.on and $w.xr.br.evt.done)) and (($fkr.ch is 1 and not $w.evt.fkr1.a) or ($fkr.ch is 2 and not $w.evt.fkr2.a) or ($fkr.ch is 3 and (not $w.evt.fkr1.a or not $w.evt.fkr2.a)))>> <<if $fkr.ch is 0>> <<set $fkr.n to $w.fn>> <<set $fkr.ch to random(1,3)>> <<elseif $fkr.ch is 1 and not $w.evt.fkr1.a>> <<set $w.rous += 100>> <<set $w.evt.fkr1.a to true>> <<elseif $fkr.ch is 2 and not $w.evt.fkr2.a>> <<set $w.rous += 100>> <<set $w.evt.fkr2.a to true>> <<elseif $fkr.ch is 3>> <<set _scn to random(1,2)>> <<if _scn is 1 and not $w.evt.fkr1.a>> <<set $w.rous += 100>> <<set $w.evt.fkr1.a to true>> <<elseif _scn is 2 and not $w.evt.fkr2.a>> <<set $w.rous += 100>> <<set $w.evt.fkr2.a to true>> <<elseif not $w.evt.fkr1.a>> <<set $w.rous += 100>> <<set $w.evt.fkr1.a to true>> <<else>> <<set $w.rous += 100>> <<set $w.evt.fkr2.a to true>> <</if>> <</if>> <<elseif $w.evt.fkr1.a and not $w.evt.fkr1.b and $gameDate.getHours() gte 12>> <<if $w.rous lte 350>><<set $w.rous to 350>><</if>> <<set _wcum to random(1,10)>> <<set $w.rous to Math.clamp(($w.rous - (20 * _wcum)),0,1000)>> <<set $w.pref.bk += _wcum / 2>> <<set $w.pref.sq += _wcum / 2>> <<set $w.xr.rk.cm += _wcum>> <<set $w.evt.fkr1.b to true>> <<set $w.xr.rk.x += 1>> <<if $w.xr.h.rel.m and $w.pref.cht>><<set $w.evt.cht += 1>><</if>> <<elseif $w.evt.fkr2.a and not $w.evt.fkr2.b and $gameDate.getHours() gte 12>> <<if $w.rous lte 350>><<set $w.rous to 350>><</if>> <<set _wcm to random(2,9)>> <<set _lcm to random(2,9)>> <<set $w.rous to Math.clamp(($w.rous - (20 * _wcm)),0,1000)>> <<set $w.pref.bi += (_wcm * 0.5)>> <<set $w.xr.le.x += 1>> <<set $w.xr.le.cm += _wcm>> <<set $w.xr.le.wcm += _lcm>> <<set $w.evt.fkr2.b to true>> <<if $w.xr.h.rel.m and $w.pref.cht>><<set $w.evt.cht += 1>><</if>> <<elseif $w.xr.h.rel.swg and not $swg.a1 and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Tue" or GameDays[$gameDate.getDay()] is "Wed") and ($gameDate.getDate() - $dtsv.rel) gte 2 and $gameDate.getHours() lte 12 and $w.rous gte 120>> <<set $swg.a1 to true>> <<elseif $swg.a1 and not $swg.a2 and $gameDate.getHours() gte 12>> <<set $w.rous += 50>> <<set $swg.a2 to true>> <<elseif $w.xr.sh.rel gte 6 and not $w.xr.sh.gro1 and $dtsv.gym isnot $gameDate.getDate() and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed" or GameDays[$gameDate.getDay()] is "Fri")>> <<set $Bank -= 50>> <<set $w.xr.sh.gro1 to true>> <<set $w.xr.sh.rel += 1>> <<set $w.rous += 20>> <<set $dtsv.shgro to $gameDate.getDate()>> <<elseif $w.xr.sh.asko1 and not $w.xr.sh.asko2>> <<set $w.xr.sh.asko2 to true>> <<elseif GameDays[$gameDate.getDay()] is "Tue" and $gameDate.getHours() lte 12 and $w.xr.br.x is 0 and not hasVisited("MW_Bath_A2") and ($w.xr.br.evt.on and not $w.xr.br.evt.done)>> <<set $w.rous += 30>> <<elseif not hasVisited("WifeDanMem1") and $w.pref.sq gte 15 and $w.rous gte 100 and $w.hap lt 85>> <<set $w.evt.dan to true>> <<else>> <<if ndef $mwile or $mwile.length lt 4>> <<set $mwile to [0,1,2,3,3,4,5,6,7,7,7,8,8,8,9]>> <<if $w.xr.br.evt.on and not $w.xr.br.evt.done>> <<run $mwile.push(1,1,2,2,3,3)>> <<run $mwile.shuffle()>> <</if>> <</if>> <<if $w.xr.sh.m and $w.xr.sh.rel lt 6 and $mwile.count(7) lt 3 and not $w.xr.sh.asko2 and $w.xr.sh.x is 0>> <<run $mwile.push(7,7)>> <<run $mwile.shuffle()>> <</if>> <<if $w.xr.sh.asko2 and $mwile.count(7) lte 3 and $w.xr.sh.x is 0>> <<run $mwile.push(7,7,7)>> <<run $mwile.shuffle()>> <</if>> <<run $mwile.shuffle()>> <<set $w.loc to $mwile.pluck()>> <<if $w.loc is 0>> /* Bedroom */ <<set _scene to random(1,6)>> <<if $inv.bbc and $w.rous gte 150 and _scene is 3>> <<set $w.rous -= 20>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 1>> <<set $w.evt.bbcd to true>> <<elseif $w.rous gte 150 and _scene is 1>> <<set $w.rous -= 20>> <<else>> <<set _scene to random(1,4)>> <<set _scene to Math.round(_scene * ($w.hap / 100))>> <<if _scene gte 3>><<set $w.evt.wrt += 1>><</if>> <</if>> <<elseif $w.loc is 1>> /* Bathroom */ <<set _scene to random(1,6)>> <<if $w.xr.br.evt.on and not $w.xr.br.evt.done and $w.xr.br.x is 0 and _scene lte 2>> <<set $w.rous += 30>> <<else>> <<if $w.rous gte 100>> <<if $w.xr.br.evt.on and not $w.xr.br.evt.done and $w.xr.br.x gt 0 and _scene gte 4>> <<set $w.xr.br.x += 1>> <<set $w.xr.br.cm += random(2,5)>> <<else>> <<if _scene lte 3>> <<set $w.rous -= 20>> <<elseif _scene gte 4>> <<set _opt to random(1,3)>> <<set $w.rous += 30>> <<if _opt is 3>><<set $w.rous -= 20>><</if>> <</if>> <</if>> <<else>> <<set _opt to random(1,4)>> <<if _opt lte 2>><<set $w.rous += 10>><</if>> <</if>> <</if>> <<elseif $w.loc is 2>> /* Kitchen */ <<set _scene to random(1,9)>> <<if $w.xr.br.cm gt 0 and (_scene gt 6 and _scene lte 9) and $w.xr.br.evt.stay gt 3>> <<set _wcum to random(1,10)>> <<set _wcum to Math.clamp(Math.round(_wcum * ($w.pref.bk / 10)),1,10)>> <<set $w.rous to Math.clamp(($w.rous - (20 * _wcum)),0,$w.rous)>> <<set $w.xr.br.cm += _wcum>> <<set $w.pref.bk += _wcum / 2>> <<set $w.pref.sq += _wcum>> <<set $w.xr.br.x += 1>> <<if $w.xr.h.rel.m and $w.pref.cht>><<set $w.evt.cht += 1>><</if>> <<elseif $w.xr.br.cm gt 0 and (_scene gt 6 and _scene lte 9) and not $w.xr.br.evt.done>> <<set _wcum to random(1,10)>> <<set _wcum to Math.clamp(Math.round(_wcum * ($w.pref.bk / 10)),1,10)>> <<set $w.rous to Math.clamp(($w.rous - (20 * _wcum)),0,$w.rous)>> <<set $w.xr.br.cm += _wcum>> <<set $w.pref.bk += _wcum / 2>> <<set $w.pref.anl += _wcum / 2>> <<set $w.pref.sq += _wcum>> <<set $w.xr.br.x += 1>> <<if $w.xr.h.rel.m and $w.pref.cht>><<set $w.evt.cht += 1>><</if>> <<else>> <<if _scene lte 5>> <<set _scene to random(1,5)>> <<if _scene gte 2 and _scene lte 4>> <<set $w.evt.wrt += 1>> <</if>> <</if>> <</if>> <<elseif $w.loc is 3>> /* Guest Room */ <<if ($h.evt.prn.str + $h.evt.prn.les + $h.evt.prn.int + $h.evt.prn.grp + $h.evt.prn.cuk) gte 5 and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed" or GameDays[$gameDate.getDay()] is "Fri")>><<set _scene to random(1,10)>><</if>> <<if _scene gte 7>> <<if $h.evt.prn.les gte $h.evt.prn.str and $h.evt.prn.les gte $h.evt.prn.int and $h.evt.prn.les gte $h.evt.prn.grp and $h.evt.prn.les gte $h.evt.prn.cuk>> <<set $w.pref.bi += ($h.evt.prn.les * 0.5)>> <<elseif $h.evt.prn.int gte $h.evt.prn.str and $h.evt.prn.int gte $h.evt.prn.les and $h.evt.prn.int gte $h.evt.prn.grp and $h.evt.prn.int gte $h.evt.prn.cuk>> <<set $w.pref.bk += ($h.evt.prn.int * 0.5)>> <<set $w.pref.sq += ($h.evt.prn.int * 0.5)>> <<elseif $h.evt.prn.cuk gte $h.evt.prn.str and $h.evt.prn.cuk gte $h.evt.prn.int and $h.evt.prn.cuk gte $h.evt.prn.grp and $h.evt.prn.cuk gte $h.evt.prn.les>> <<set $h.pref.cuk += ($h.evt.prn.cuk * 0.5)>> <</if>> <<set $w.rous += 20>> <</if>> <<elseif $w.loc is 4>> /* Balcony */ <<set _scene to random(1,4)>> <<if $w.xr.br.evt.on and not $w.xr.br.evt.done and $w.xr.br.x gt 0 and $w.pref.ex gte 15 and _scene gte 3>> <<set $w.pref.ex += 3>> <<else>> <<set $w.pref.ex += 0.5>> <</if>> <<elseif $w.loc is 5>> /* Living Room */ <<set _scene to random(1,6)>> <<if _scene is 1 or _scene is 4>> <<set $w.evt.wrt += 0.5>> <<elseif _scene is 3>> <<set _scene to random(1,3)>> <<if $w.rous gte 150 and _scene is 3 and $w.pref.ex gte 15>> <<set $w.rous -= 20>> <</if>> <<elseif _scene is 6 and $w.pref.ex gte 5>> <<set $w.pref.ex += 0.25>> <<set _scene to random(1,6)>> <<if $w.rous gte 150 and _scene gt 3>> <<set $w.rous -= 20>> <<set $w.pref.ex += 0.25>> <</if>> <</if>> <<elseif $w.loc is 6>> /* "MW_Laundry" */ <<elseif $w.loc is 7>> /* Gym */ <<if ndef $gym>><<set $gym to 0>><</if>> <<set $gym += 1>> <<if $gym is 6>> /* meet shaun */ <<set $w.xr.sh.rel += 1>> <<set $w.xr.sh.m to true>> <<set $w.pref.bk += 0.5>> <<set $w.rous += Math.clamp(Math.round(10 + ($w.pref.bk * 5)),10,50)>> <<elseif $w.xr.sh.rel gte 7 and $w.xr.sh.gro1 and not $w.xr.sh.asko1 and $dtsv.gym isnot $gameDate.getDate() and $dtsv.shgro isnot $gameDate.getDate() and $gameDate.getHours() lte 13 and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed" or GameDays[$gameDate.getDay()] is "Fri") and $w.pref.cht>> <<set $w.xr.sh.asko1 to true>> <<elseif $w.xr.sh.m and $dtsv.gym isnot $gameDate.getDate() and ((not $w.xr.sh.gro1 and $w.xr.sh.rel lt 7) or ($w.xr.sh.gro1 and not $w.xr.sh.asko1))>> <<set $w.evt.gym += 1>> <<set $w.pref.bk += 0.25>> <<set $w.xr.sh.rel += 1>> <<set $w.rous += 20>> <<set $dtsv.gym to $gameDate.getDate()>> <<elseif $w.xr.sh.l is 5 and (GameDays[$gameDate.getDay()] is "Mon" or GameDays[$gameDate.getDay()] is "Wed" or GameDays[$gameDate.getDay()] is "Fri") and not $w.xr.sh.daylch and $gameDate.getHours() gt 12>> /* <<include [[MW_Gym_F1]]>> */ <<set $w.rous += 170>> <<set _shc to random(1,5)>> <<set $w.rous -= (_shc * 20)>> <<set $w.xr.sh.cm += _shc>> <<set $w.xr.sh.x += 1>> <<set $w.pref.bk += _shc / 2>> <<set $w.pref.sq += _shc>> <<set $w.xr.sh.evt1on to true>> <<set $w.xr.sh.evt1off to false>> <<if $w.xr.h.rel.m>> <<set $w.xr.sh.cht to true>><</if>> <<run $mwile.delete(7)>> <<elseif $w.xr.sh.asko2>> <<set _scn to random(3)>> <<if _scn lt 3>> <<set _im to random(1,3)>> <<if _im gte 2>><<set $w.rous += 10>><</if>> <<else>> <<if ndef $w.xr.sh.l>><<set $w.xr.sh.l to 0>><</if>> <<set $w.xr.sh.l += 1>> <</if>> <<else>> <<if $gym gt 3>><<set $w.pref.bk += 0.5>><</if>> <</if>> <<elseif $w.loc is 8>> /* Shopping */ <<if ndef $mwsh or $mwsh.length lte 1>><<set $mwsh to [0,0,1,1,2,2]>><</if>> <<if $w.pref.ex gt 0 and $mwsh.count(3) lte 2>><<run $mwsh.push(3,3)>><</if>> <<if $w.rous gte 100 and $w.sat lt 80 and $mwsh.count(4) lte 1>><<run $mwsh.push(4,4)>><</if>> <<if not $mwsh.includes(2)>><<run $mwsh.push(2)>><</if>> <<run $mwsh.shuffle()>> <<set _shop to $mwsh.pluck()>> <<if _shop is 0>> <<if $w.pref.ex gt 5>><<set _scene to random(1,3)>> <<else>><<set _scene to random(1,2)>> <</if>> <<if _scene is 3>> <<set _scn to random(1,3)>> <<set $w.pref.ex += 1>> <<set $w.rous += 10>> <<if _scn lte 2 and $w.rous gte 100 and ($w.pref.cht or $w.xr.h.rel.cuk or $w.xr.h.rel.opn)>> <<if $w.xr.h.rel.m>><<set $w.evt.cht += 0.5>><</if>> <<set $w.rous += 50>> <</if>> <</if>> <<set $Bank -= 50>> <<elseif _shop is 1>> <<set $w.evt.cof += 1>> <<elseif _shop is 2>> <<set $w.pref.ex += 1>> <<set $Bank -= 100>> <<if not $w.evt.msgnxt>> <<set $w.rous += 30>> <<if ($w.evt.msg gte 5 or $w.xr.h.rel.cuk or $w.xr.h.rel.opn or $w.pref.cht) and $w.rous gte 100>> <<set $w.rous += 15>> <<if ($w.evt.msg gte 7 or $w.xr.h.rel.cuk or $w.xr.h.rel.opn or $w.pref.cht) and $w.rous gte 100>> <<set $w.evt.msgnxt to true>> <<set $w.rous -= 30>> <<set $w.evt.msg += 1>> <<if $w.xr.h.rel.m and $w.pref.cht>> <<set $w.evt.cht += 1>> <</if>> <</if>> <</if>> <<else>> <<set $w.rous += 15>> <<set _scn to random(1,3)>> <<if _scn is 1>><<set $w.pref.anl += 1>><</if>> <<set $w.evt.msg += 1>> <<if $w.xr.h.rel.m and $w.pref.cht>><<set $w.evt.cht += 1>><</if>> <</if>> <<elseif _shop is 3>> <<set _cost to random(50,500)>> <<set $Bank -= _cost>> <<if _cost gte 300>><<set $w.rsp += 1>><</if>> <<if $w.evt.clo lte 5 or $w.pref.ex lte 10>> <<set $w.rous += 5>> <<set $w.pref.ex += 0.25>> <<set $w.evt.clo += 1>> <<elseif ($w.pref.cht or (not $w.xr.h.rel.m and not $w.xr.h.rel.swg)) and $w.pref.ex gt 10>> <<set _scene to random(1,3)>> <<if _scene lte 2>> <<set $w.rous += 5>> <<set $w.pref.ex += 0.25>> <<set $w.evt.clo += 1>> <<elseif _scene is 3>> <<set _scene to random(1,2)>> <<if _scene is 1>> <<set $w.rous += 15>> <<set $w.pref.ex += 1>> <<set $w.evt.clo += 1>> <<if $w.rous gte 120>> <<set $w.rous -= 20>><<set $w.pref.ex += 3>> <</if>> <<else>> <<set $w.rous += 15>> <<set $w.pref.ex += 1>> <<set $w.evt.clo += 1>> <</if>> /* <<elseif _scene is 4>> <<include [[MW_ShoppingA4]]>> */ <</if>> <<else>> <<set _scene to random(1,3)>> <<if _scene lte 2>> <<set $w.rous += 5>> <<set $w.pref.ex += 0.25>> <<set $w.evt.clo += 1>> <<elseif _scene is 3>> <<set _scene to random(1,2)>> <<if _scene is 1>> <<set $w.rous += 15>> <<set $w.pref.ex += 1>> <<set $w.evt.clo += 1>> <<if $w.rous gte 120>> <<set $w.rous -= 20>><<set $w.pref.ex += 3>> <</if>> <<else>> <<set $w.rous += 15>> <<set $w.pref.ex += 1>> <<set $w.evt.clo += 1>> <<set _cost to random(50,500)>> <<set $Bank -= _cost>> <<if _cost gte 300>><<set $w.rsp += 1>><</if>> <</if>> <</if>> <</if>> <<elseif _shop is 4>> <<set _sugar to random(1,5)>> <<if $w.pref.bk gte 2 and not $inv.bbc>> <<set $w.pref.bk += 1>> <<set $w.pref.sq += 2>> <<set $w.rous += 10>> <<set $inv.bbc to true>> <<set $Bank -= 150>> <<elseif $w.pref.ex gte 3 and _sugar is 3>> <<set $w.pref.ex += 1>> <<set $w.rous += 30>> <<else>> <<set $w.rous += 10>> <</if>> <<set $w.evt.sgr += 1>> <</if>> <<elseif $w.loc is 9>> /* "MW_Park" */ <</if>> <</if>> <</silently>> <</widget>>
//Now //this// is going to help me relax!// <<if $scene is 1>>\ <<randomvideo 13 15 mw_msgE1->> <<randomvideo 16 17 mw_msgE1->> <<showvideo mw_msgE1-18>> <<showvideo mw_msgE1-19>> <<elseif $scene is 2>>\ <<showvideo mw_msgE2-15>> <<randomvideo 16 17 mw_msgE2->> <<showvideo mw_msgE2-18>>> <<showvideo mw_msgE2-19>> <<elseif $scene is 3>>\ <<randomvideo 14 15 mw_msgE3->> <<showvideo mw_msgE3-16>> <<randomvideo 17 18 mw_msgE3->> <<randomvideo 19 20 mw_msgE3->> <<showvideo mw_msgE3-21>> <</if>> \ <<set $w.rous += 15>>\ [[Fuck him!|MW_ShoppingE4B]] [[That's enough|MW_ShoppingE_End1]]
[img[images/wafter_ShE.jpg]] The masseuse got up, quickly arranged his clothes, and left the room. I laid there for a few minutes--relaxed, satisfied, feeling the slightest bit guilty . . . . //I seem to be making a habit of this . . . .// I finally mustered the strength to get dressed. I pulled a few bucks out of my wallet and dropped them on the table for a tip. //Wait . . . did I just pay someone to fuck me? Over a hundred dollars?!?!// [img[images/mindfulness.jpg]] I laughed to myself as the bell above the door dinged and I walked out into the city streets. <<nobr>> <<set $Bank -= 100>> <<set $w.evt.msg += 1>> <<if $w.xr.h.rel.m and $w.pref.cht>><<set $w.evt.cht += 1>><</if>> <</nobr>>\ <<link "Get dressed and go home" $nextpassage>> <<unset $nextpassage>> <</link>>
<<if $scene is 1>>\ <<randomvideo 20 21 mw_msgE1->> <<randomvideo 22 23 mw_msgE1->> <<randomvideo 24 25 mw_msgE1->> "Can I put it in your ass?" he took me off-guard. //[['"God, yes, fuck me in the ass!"'|MW_ShoppingE5B][$w.pref.anl += 1]]//\ <<elseif $scene is 2>>\ <<showvideo mw_msgE2-20>> <<showvideo mw_msgE2-21>> <<randomvideo 22 24 mw_msgE2->> <<showvideo mw_msgE2-25>> <<randomvideo 26 30 mw_msgE2->> <<showvideo mw_msgE2-30>> [[Keep going . . .|MW_ShoppingE5B]]\ \ <<elseif $scene is 3>>\ <<showvideo mw_msgE3-22>> <<randomvideo 23 25 mw_msgE3->> <<randomvideo 26 29 mw_msgE3->> <<showvideo mw_msgE3-30>> <<showvideo mw_msgE3-31>> [[Keep going . . .|MW_ShoppingE5B]]\ <</if>>\
<<nobr>> <<set _scene to random(1,4)>> <<set _scene to Math.round(_scene * ($w.hap / 100))>> <<if _scene gte 3>> <<set _img to random(1,9)>> <<= '[img[images/wbedwrite' + _img + '.jpg]]'>> <<elseif _scene is 2>> <<set _img to random(1,5)>> <<= '[img[images/wbedreading' + _img + '.jpg]]'>> <<elseif _scene is 1>> <<set _img to either(2,3,5,6,10)>> <<= '[img[images/wasleep' + _img + '.jpg]]'>> <</if>> <</nobr>> <<if _scene gte 3>>\ //Ugh . . . I just do not want to be awake today . . . .// Of course, if I want to get this book written, I just gotta write it. So I decided to split the difference and bring my laptop into bed with me. //That'll show 'em//, I thought. I have no idea who or what I thought it would show, exactly, but whatever . . . I might not be moving fast, but at least I'm still moving forward . . . . \ <<set $w.evt.wrt += 1>>\ <<elseif _scene is 2>>\ //They say that the best writers are great readers. I'm not sure if that's true, but that's what I'm going with right now.// I laid down in bed and read for a while. I decided to go with an old classic, one I'd read several times and always enjoyed. I'd had this copy since high school and it was still in pretty decent shape, though the pages were beginning to yellow and it was starting to have the slightest hint of that wonderfully musty "old book smell." <<elseif _scene is 1>>\ //Fuck it . . . I'm taking a nap . . . .// <</if>>\ <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>
<<showvideo wbbcdildo_A1>> <<if not $w.evt.bbcd>>I was anxious to try out my new double-X L dildo.<<else>>I was so aroused. I decided it was time once again for the "Big Guy."<</if>> I got undressed and pulled up a porn site. As the beginning of the video began to play, giving me that //oh-so-crucial// back story, I rubbed the dildo's head on my pussy. With each pass, I got wetter and wetter. On the video, more men appeared. //Oh, fuck, a gangbang! You know what, these guys are talking too much . . . I'm not waiting for them any longer.// <<showvideo wbbcdildo_A2>> <<if not $w.evt.bbcd>>I decided to push my new toy into my opening, slowly, slowly stretching it. <<else>><</if>>As my body gave way to allow entrance, my fast-growing arousal made this easier. There was pain----no, not quite pain, it was better described as //intensity//----the feeling was so //intense// that my brain couldn't quite process it as either pain or pleasure. It was beyond those words. <<if not $w.evt.bbcd>>I had never had a cock (or anything else for that matter) this size inside of me. <<else>><</if>>As I continued to fuck myself, the intense feelings grew. It was not lost on me that I was gradually increasing the tempo as I got wetter. Everything in my mind and body was encouraging me to take this big cock harder, deeper, faster. I struggled to keep up with where my desire wanted to be. <<randomvideo 3 5 wbbcdildo_A>> The porn progressed. The girl onscreen was now being pounded by a group of large black men. I imagined myself in her place, the cock in my hands being the cock that was pounding me. //Fuck me//, I thought. //Fuck me! Fuck me with that big fucking cock!// I wanted more. Rubbing my clit to increase my pleasure, I edged closer and closer to my promised land. <<showvideo wbbcdildo_A6>> I spread my legs as wide as I could. I wanted to take this cock into my very core. "Yes, more, right there!" My voice finally broke the silence of the empty apartment. "Oh my fucking God!" I screamed. I was now rapidly driving my dildo desperately into my pussy, as deep as I could go with each push. There was no longer any resistance, the glistening wetness of my pussy entirely coating the toy with a thick layer of lubrication. Everything continued to grow. I started to pace myself, strategically withdrawing. The sexual tension and intensity heightened to a point of hypersensitivity that threatened to overcome my ability to think clearly. I held on until . . . //right . . . //now// . . .// <<timed 4s>><<shakescreen 2s>>\ <<randomvideo 7 8 wbbcdildo_A>> As soon as I let go, the orgasm hit me like an intense wave. I can't even put it all into words, so I won't bother to try. Eventually my heart beat slowed down, my vision and hearing returned. I rubbed my messy pussy, literally dripping with juices. It was still throbbing and gaped open a little bit, as if waiting for the cock to return to it for more. //Fuck, I think this was the best money I ever spent in my entire life.// <<nobr>> <<set $w.rous -= 20>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 1>> <<set $w.evt.bbcd to true>> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>> <</nobr>><</timed>>\
<<randompic 1 9 wbedwrite>> //Ugh! I am so horny, I can't concentrate on writing. . . .// I decided to take care of it <<nobr>> <<randomvideo 1 4 wmastaloneA>><br><br> <<timed 2.5s>> <<shakescreen 2s>> <<set $w.rous -= 20>> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>> <</timed>> <</nobr>>\
I strolled into work <<if $gameDate.getHours() is 7>>a little early<<elseif $gameDate.getHours is 8 and $gameDate.getMinutes() lt 10>>right on time<<elseif $gameDate.getHours() is 8 and $gameDate.getMinutes() gte 10 and $gameDate.getMinutes() lte 30>>a little late<<else>>late, hoping no one would notice,<</if>> and found my way to my cubicle. [img[images/beth1.jpg]] Beth was already hard at work. <<if visited() lte 1>>We started in the company as interns about the same time and frequently worked on the same teams and projects. As such, we often found ourselves talking a lot and working together. She was probably my best friend at work. You might call her my "work wife," though there had never been anything romantic between us. Of course, since the pandemic shut-down and the new telework schedules, we didn't see each other nearly as often as we did when we first started five years ago.<</if>> "Good morning, Beth." "You finally made it! Keep it up . . . you're only making me look even better than I already do," she said, chuckling. A little good-natured ribbing. I laughed in response. <<randompic 1 5 hworkp>> I sat at my desk and logged into my computer to get started on the day. //And the countdown to my lunch break begins . . . .// <<nobr>> <<set _scene to random(8)>> <<if $h.xr.bth.rel gte 3 and _scene lt 3>> [[Continue|OfficeBethMain]] <<elseif _scene lte 6>> [[Continue|OfficeBossMain]] <<else>> <<include [[OfficeAMLinks]]>> <</if>> <</nobr>>\
<<randompic 1 18 hworkp>> <<include [[OfficePMLinks]]>>\
<<include [[OfficeLunch_Std]]>> [[Get back to work|OfficePM1]]
<<set _scene to random(1,2)>>\ <<if _scene is 1>>\ <<randompic 1 15 halunch>> I was very busy at work today, so I didn't have time to have a long lunch. Instead, I just ran out and grabbed a quick bite to eat by myself. \ <<else>>\ [img[images/beth1.jpg]] "Hey, Beth . . . I'm heading to lunch . . . Care to join me for a bite?" "Sure, just give me a second to save my file. . . . OK, done! So what do you wanna get today?" <<randompic 1 15 hblunch>> Beth and I got lunch at a place nearby and chatted for our entire break. //We've always gotten along great.<<if $h.xr.bth.rel gte 7>> What if there was more?<</if>>// <<set $h.xr.bth.rel += 1>><</if>>\
<<set _scene to random(1,3)>> <<if GameDays[$gameDate.getDay()] is "Fri" and $h.evt.wk.w lt 5 and $h.evt.wk.w gt 0>> <<include [[WorkMissed]]>> <<elseif _scene lt 3 and $h.xr.bth.lt and not ($w.xr.sh.evt1on and not $w.xr.sh.evt1off)>> <<include [[OfficeCOB_Late]]>> <<else>> <<include [[OfficeCOB_Std]]>> <</if>> <<set $h.evt.wk.vst += 1>>
<<set _scene to random(1,10)>> <<set _img to random(1,4)>> <<= '[img[images/hbusnight' + _img + '.jpg]]'>> <br><br> After a long day at work, I had trouble keeping my eyes open on the commute home.<br><br> //At least I can look forward to seeing $w.fn and a nice, hot meal when I get home//.<br><br> <<link [[Ride the bus|HomeStreetMain]]>><<addminutes 30>><</link>>
<<nobr>> [img[images/fiveoclock.jpg]] <<set $h.evt.wk.w += 1>> <</nobr>> Five o'clock!!! Time to go home!! [[Catch the bus home|BusRide2Home]]\
<<nobr>> <<randompic 1 3 hdishes>> <<set $w.xr.h.day.tdy += 1>> <<run $gameDate.setHours(20)>> <<run $gameDate.setMinutes(0)>> <</nobr>> <<nobr>> //I hate doing the dishes . . . but I doubt it's high on $w.fn's list of favorite ways to spend an evening. The least I can do is help out every once in a while!// <<if $w.xr.sh.gro1 and $dtsv.shgro is $gameDate.getDate()>> <br><br>//Hmmm . . . why are there two water glasses in the sink? Did $w.fn get a clean glass even though she was already using a glass? Did she have company?//<</if>> <</nobr>> [[Finish the dishes|KitchenMain]]\
<<randompic 1 6 dive>> <<if not tags(previous()).includes("DiveBar")>>\ //Dirty Bones// was just your average, run-of-the-mill city neighborhood dive bar. We didn't really visit much during the pandemic, but we used to go all the time when we first moved in and have been a few times since the end of the shutdowns. It had pretty steady business now. On any given night, about half of the patrons were regulars, the other half tourists. For that reason, the climate of the bar could vary from night to night. Sometimes it was full of drinkers playing pool and darts. Sometimes it was full of college students looking to get laid. Sometimes there'd be a live band playing mostly cover songs with a couple of originals thrown into the mix. Sometimes there'd be a dj trying desperately to get more than just a handful of girls dancing with each other. <</if>>\ The crowd was pretty mid-sized tonight. Enough people that there was a constant hum of conversation, but not so many that you'll spill your drink. <<nobr>> <<if $h.evt.db.smkon and not $h.evt.db.smkgot>> <<set $Bank += 20>> <h3>Where do you want to go?</h3> [[Leave, go get cigarettes for Crystal|HomeStreetMain]] <<elseif $h.evt.db.smkgot and not $h.evt.db.smkfin>> <h3>What do you want to do?</h3> [[Give Crystal her cigarettes|DB_Talk2]] <<else>> <<include [[DiveBarOptions]]>> <</if>> <</nobr>>\
[img[images/barclosed.jpg]] <center>Hours of Operation: 12 noon to 2 AM</center> [[Back to the street|HomeStreetMain]]\
<<if $h.xr.crys.rel gte 3 and $h.evt.db.vis is 3 and not $h.evt.db.smkon and $gameDate.getHours() lte 23>><<showvideo crystal1>> "You don't happen to smoke, do you?" I looked up to see Crystal pouring a couple shots of tequila on the bar in front of me. <<if $h.tox.cig gt 0 or $h.tox.cgaddict or $inv.cig gt 0>>"Sure do<<if $inv.cig is 0>>, but I don't have any on me right now<<else>>. Do you need to bum one?"<<set _cigs to true>><</if>><<else>>"No, sorry, I don't smoke."<</if>> <<if _cigs>>"Yes, god, yes, please!" she said. "I have been //dying// for a smoke----I didn't realize I only had one left until after I had already clocked in!" I handed her a cigarette out of my pack. "Thank you soooo much, dude!" she offered.<<set $inv.cig -= 1>> A few minutes later, she returned. "Hey, look, I don't want to bum any more smokes from you. You're here all the time, and you don't seem nearly as bad as the rest of these degenerate alcoholics," she gestured around the room. "I didn't realize I only had one smoke left until after I had already clocked in! I will literally pay you $10 on top of the cost, if you will run over to the Convenience Store and pick me up a pack of smokes!" [['"Absolutely!"'|DiveBarMain][$h.evt.db.smkon to true]] [['"Sorry, I can't . . ."'|DiveBarMain]]\ <<else>>"Look, you're here all the time, and you don't seem nearly as bad as the rest of these degenerate alcoholics," she gestured around the room. "I didn't realize I only had one smoke left until after I had already clocked in! I will literally pay you $10 on top of the cost, if you will run over to the Convenience Store and pick me up a pack of smokes!" [['"Absolutely!"'|DiveBarMain][$h.evt.db.smkon to true]] [['"Sorry, I can't"'|DiveBarMain]]\ <</if>>\ <<else>>\ <<if $h.xr.crys.rel gte 5 and $h.evt.db.vis gte 5 and $h.xr.crys.x is 0 and $h.evt.db.smkfin>>\ <<include [[DB_Event_Crys1A]]>>\ \ <<else>>\ <<if $h.xr.crys.rel gte 1>><<showvideo crystal1>>\ "How are you doin' tonight?" I asked Crystal during a rare lull in the demands of customers in ever-increasing stages of intoxication. "<<= either("Could be a whole lot worse than this!","Not too bad . . .","I could complain but who'd give a fuck?","Another day, another dream of my own demise!","Could be worse, could have a bullet in my head!","Thinking about whether it's still suicide if it's a slow death through years of bad dietary habits.")>> How 'bout you?" She had a very intense way of looking at you, like she was looking //into// you. "<<= either("Eh, pretty much the same.","Meh, nothing worth mentioning.","About that well.")>> Same bullshit, different day. Am I right?" I was always slightly awkward in my small talk. Not so much as to make people uncomfortable, but just enough that they noticed. //Fuck you, Self-Awareness!// She chuckled mildly and left me to go mix a drink for a customer at the other end of the bar.\ <<else>> <<randomvideo 1 4 hctalk>> "Busy night, huh?" I asked the bartender, as she buzzed around behind the bar grabbing drinks. She barely acknowledged my presence. //Well, that makes sense, she //is// just trying to make a living, not make friends.// I went back to my drink, sitting quietly at the end of the bar. <</if>> \ <<nobr>> <<addminutes 30>> <<set $h.tox.drk += 1>> <<set $h.xr.crys.rel += 1>> <</nobr>>\ <<include [[DiveBarOptions]]>>\ <</if>><</if>>\
<<randomvideo 1 4 hcdrink>><br><br> <p><<if $h.xr.crys.rel gt 0>>Crystal<<else>>The cute-sexy bartender<</if>> started fixing me a drink.</p> <p>While I waited, I decided to . . .</p> <<include [[DBDrinkingOptions]]>>\
<<nobr>> <<set _img to random(1,6)>> <<if _img lte 3>> <<randomvideo 1 3 wjogging>> <<else>> <<randompic 4 6 wjogging>> <</if>> <</nobr>> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<if $scene is 1>>\ <<showvideo mw_msgE1-26>> <<showvideo mw_msgE1-27>> <<showvideo mw_msgE1-28>> <<showvideo mw_msgE1-29>> <<showvideo mw_msgE1-30>> <<nobr>> <<timed 2s>><<shakescreen 2s>> <<showvideo mw_msgE1-31>><br><br> <<timed 5s>><<shakescreen 2s>> <<showvideo mw_msgE1-32>><br><br> [[Continue|MW_ShoppingEEndB]] <</timed>> <</timed>> <</nobr>>\ <<elseif $scene is 2>>\ <<randomvideo 31 32 mw_msgE2->> <<randomvideo 33 34 mw_msgE2->> <<showvideo mw_msgE2-35>> <<nobr>> <<timed 2s>><<shakescreen 2s>> <<showvideo mw_msgE2-36>><br><br> [[Continue|MW_ShoppingEEndB]] <</timed>> <</nobr>>\ <<elseif $scene is 3>>\ <<showvideo mw_msgE3-32>> <<randomvideo 33 34 mw_msgE3->> <<randomvideo 35 36 mw_msgE3->> <<nobr>> <<timed 2s>><<shakescreen 2s>> <<showvideo mw_msgE3-37>><br><br> [[Continue|MW_ShoppingEEndB]] <</timed>><</nobr>>\ <</if>><<set $w.rous -= 20>>\
[img[images/bgr_alone1.jpg]] As I moved through the apartment, I peeked into the Guest Room. Brian was still sleeping soundly. //I'll just let him sleep. He's had a tough few days. I'm sure he could use a nice quiet morning in.// [img[images/e1nm_kmess.jpg]] I looked into the Kitchen, where our empty bottles, dirty dishes, and open leftover snacks had piled up. I could hear $w.fn banging around in the kitchen. I had no idea how she could be so chipper when I felt so horrible. //Fuck! Shit got crazy last night . . . . We are definitely going to have to spend some time cleaning up this mess.// [[Get in the shower|E1_NextM_Shower]]
As I sloooowly moved down the hall past the Guest Room, my curiosity got the better of me. I deftly turned the door knob and nudged the door just open enough to see into the room. The door creaked a little bit, but I didn't think either of them had heard it. [img[images/e1nm_wbbed.jpg]] //Well, don't they look comfortable? Almost like they belong together . . . . //Wait! What are you thinking? Stop it!// I forced the <<if hasVisited("Event1_EndPeek2")>>image<<else>>thought<</if>> of their naked bodies crashing together out of my mind. Well, I tried to anyway. I had to move away from the door. The pain of my hangover made it difficult to maintain any thoughts for too long, so soon enough, it was "out of sight, out of mind." //Fuck! Shit got crazy last night . . . .// [img[images/e1nm_kmess.jpg]] I looked into the Kitchen, where our empty bottles, dirty dishes, and open leftover snacks had piled up. I know we were going pretty hard, but I don't remember being so . . . //sloppy// about it. //Nope, I'm not dealing with any of that just yet. I'll make coffee after my shower.// [[Get in the shower|E1_NextM_Shower]]
<<nobr>> <<randompic 1 4 hshower>> <<addminutes 30>> <</nobr>> I let the hot water wash over me from head to toe, trying to shake my hang-over. It felt amazing, even though I felt less-than-amazing. After about a half-hour, I honestly started to feel a bit better. My head stopped pounding and I decided it was time to get out and get more coffee. \ <<if $w.xr.br.x gt 0>> //Last night got crazy//, I thought. //Fucking crazy//. Thoughts of Brian and $w.fn kept invading my mind. Thinking about her sexy naked body was usually enough to turn me on, but this was different. I could <<if hasVisited("Event1_EndLRStart1")>>envision<<else>>imagine<</if>> how big Brian's cock <<if not hasVisited("Event1_EndLRStart1")>>probably <</if>>was. My beautiful, beloved wife was penetrated by that monster. Stretched to its limit around something much bigger than I could offer. <<showvideo hshowerm1>> I didn't even realize that I had started jerking off at first. The more $w.fn's moans echoed through my memories, the harder my cock got and the more furiously I played with myself. I imagined her having climax after climax, unable to control herself as she was mercilessly pummeled in every position. And then, finally, Brian would have come. //Where did he do it? Did he cum on her body, painting her breasts and stomach? Did he cum on her face or in her mouth----the same mouth I kiss good night every night? Or did he just cum inside of her, pumping every drop deep into her stretched out pussy?// This last thought made me cum harder than I have ever came in my life. <<showvideo hshowerm1c>> //What the fuck is wrong with me? Do I //actually// want them to do it again?//\ <</if>>\ <<nobr>> <<if $w.xr.br.shr or $w.xr.br.cuk>> <<if $w.pov>> [[Continue|Event1B_WB_Start][$nextpassage to "E1_NextM_OutShower"]] <<else>> <<link [[Continue|E1_NextM_OutShower]]>> <<set $w.xr.br.x += 1>> <<set _brcum to random(2,5)>> <<set $w.xr.br.cm += _brcum>> <<set $w.pref.bk += (_brcum/2)>> <<set $w.pref.sq += (_brcum/2)>> <<set $w.rous -= Math.clamp((_brcum * 30),0,$w.rous)>> <</link>> <</if>> <<else>> [[Continue|E1_NextM_OutShower]] <</if>> <</nobr>>\
[img[images/houtshower.jpg]] Dry and wrapped in a towel, I needed to go back to my Bedroom to get dressed. As I opened the door and entered the Living Room, however, I was confronted by my wife and my best friend hanging out on the couch. [img[images/e1nm_wblr1.jpg]] //They sure are comfortable with each other.// "Hey, what are you guys up to?" I asked. "Not much, baby. We were just gonna watch some TV. Get dressed and come join us!" $w.fn was so casual with her response. <<if ($w.xr.br.shr or $w.xr.br.cuk) and $w.xr.br.x gt 0>>\ //It's almost like she's //his// wife//, I thought. //And //I'm// the house-guest.// My cock twitched. I didn't know what to say, so I just mumbled a response. "Yup." And I went to my Bedroom to get dressed.<</if>> <<nobr>> <<addminutes 5>> <<set $w.rous += 10>> [[Go to the Master Bedroom|E1_NextM_Dressed]] <</nobr>>\
[img[images/hdressing1.jpg]] I was definitely moving a bit sluggish this morning. I took a moment to just lie on the bed for five or twenty minutes. Who was really counting? I finally got up and got dressed. //I should go out and join $w.fn and Brian.// <<nobr>> <<addminutes 20>> <<if $w.pov and $w.xr.br.x gt 0>> [[Continue|MW_E1NextM_LR]] <<elseif $w.xr.br.x gt 0 and not $w.pov>> <<link [[Go to the Living Room|E1NextMKTalk1]]>> <<set $w.loc to 2>> <<set $w.xr.br.evt.loc to 2>> <<set $w.xr.br.evt.d1 to true>> <</link>> <<else>> <<link [[Go to the Living Room|LivingRoomMain]]>> <<set $w.loc to 5>> <<set $w.xr.br.evt.loc to 5>> <<set $w.xr.br.evt.d1 to true>> <</link>> <</if>> <</nobr>>\
<div id="meanwhile"><h1>Meanwhile . . .</h1></div> <<timed 2.5s>><<replace "#meanwhile">>\ [img[images/e1nm_wblr2.jpg]] $h.fn had gotten out of the shower and headed into the Bedroom to get dressed. He looked like he was feeling a little awkward. "The three of us are going to have to have a serious conversation," I told Brian. "Yeah, that seems pretty important," he agreed. [img[images/e1nm_wblr3.jpg]] "First things first," I started. "$h.fn wanted us to spice up our relationship by bringing other people into the mix. Well, he's going to have to realize what that means. . . . And what it means is that, now that I have had that magical dick inside of me, I want it as often as possible. You are //definitely// in the mix, as long as you are here." Brian brought me close. "As long as he agrees to it, I can't wait. You are so fucking sexy." <<link [[Continue|E1NextMKTalk1]]>> <<set $w.loc to 2>> <<set $w.xr.br.evt.loc to 2>> <<set $w.xr.br.evt.d1 to true>> <</link>><</replace>><</timed>>\
//Hmmm. . . $h.fn left his laptop on.// I was feeling a bit mischievous. //I know I shouldn't do this, but . . . well . . . fuck it. I'm gonna check his browser history. Not to throw it in his face or anything . . . just curiosity.// <<randompic 1 3 wchkpc>> I easily pulled up his browser history and of course he hadn't cleared it. //Let's see . . . yup, there's the porn! So what kinda thing is he into?// <<nobr>> <<if $h.evt.prn.str gte $h.evt.prn.les and $h.evt.prn.str gte $h.evt.prn.int and $h.evt.prn.str gte $h.evt.prn.grp and $h.evt.prn.str gte $h.evt.prn.cuk>> <<randomvideo 1 15 pornstr>> <p>//Yup, that's about what I expect out of $h.fn . . . just some typical vanilla fucking. Not that it doesn't have a time and place, but I really need more than this all the time!//</p> <<elseif $h.evt.prn.les gte $h.evt.prn.str and $h.evt.prn.les gte $h.evt.prn.int and $h.evt.prn.les gte $h.evt.prn.grp and $h.evt.prn.les gte $h.evt.prn.cuk>> <<randomvideo 1 30 pornles>> <<set $w.pref.bi += ($h.evt.prn.les * 0.5)>> <p>//I never really thought about it before . . . but I think I might be attracted to girls! Watching these two together is really making my pussy wet!//</p> <<elseif $h.evt.prn.int gte $h.evt.prn.str and $h.evt.prn.int gte $h.evt.prn.les and $h.evt.prn.int gte $h.evt.prn.grp and $h.evt.prn.int gte $h.evt.prn.cuk>> <<randomvideo 1 35 pornint>> <<set $w.pref.bk += ($h.evt.prn.int * 0.5)>> <<set $w.pref.sq += ($h.evt.prn.int * 0.5)>> <p>//Mmmm . . . Look at the way that massive cock is stretching her pussy out . . . I bet that feels fucking great!//</p> <<elseif $h.evt.prn.grp gte $h.evt.prn.str and $h.evt.prn.grp gte $h.evt.prn.int and $h.evt.prn.grp gte $h.evt.prn.les and $h.evt.prn.grp gte $h.evt.prn.cuk>> <<randomvideo 1 12 porngp>> <p>//Oh fuck! They are so sexy all together like that! It //is// hot, though . . . . maybe quantity and quality //are// the same . . . .//</p> <<elseif $h.evt.prn.cuk gte $h.evt.prn.str and $h.evt.prn.cuk gte $h.evt.prn.int and $h.evt.prn.cuk gte $h.evt.prn.grp and $h.evt.prn.cuk gte $h.evt.prn.les>> <<randomvideo 1 36 porncuk>> <<set $h.pref.cuk += ($h.evt.prn.cuk * 0.5)>> <p>//Hmmm . . . Does $h.fn want to watch me fuck someone else? Oh, God! That sounds hot as fuck! . . . And it might solve some of this dissatisfaction I feel . . . if $h.fn won't fuck me right, maybe someone else will!//</p> <</if>> <<set $w.rous += 20>> <</nobr>> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<randomvideo 1 4 wgrclean>> //I really wish $h.fn would pick up after himself in here a little more. He may have been using this as a home office since the pandemic forced him to telework every day, but it's still the guest room and needs to be available if we have a guest.// <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>
<<randompic 1 5 talk_whbr>> <<include [[WTalkOptions]]>> [[Continue|MasterBedroomMain]]
[img[images/d1talk1.jpg]] $w.fn was sitting on the bed waiting for me. She looked gorgeous. I started to undress for bed. [img[images/d1talk2.jpg]] "We need to talk about something," she said. She was smiling, but I've known her long enough to know that there was something mischievous behind that smile. "Is everything okay?" I asked suspiciously. "Yeah, nothing's wrong. I think everything will be fine . . . better than fine, it should be great . . . But you might want to get comfortable," came her reply. [img[images/d1talk3.jpg]] I sat down on the bed, reaching toward her affectionately. "You know how much I love you, right?" I wasn't sure where her question was leading, so I just responded honestly. "Of course, baby. I love you too!" "And you trust me, right?" she asked. Again, I'm not sure where this was headed, but I decided to play along. "Of course, with all my heart." [img[images/d1talk4.jpg]] "And I trust you too. Nothing will ever come between us. But . . ." she paused for a heartbeat that seemed to stretch for an eternity. " [img[images/d1talk5.jpg]] [img[images/d1talk6.jpg]] "OK, honey. Well, I'll see you in the morning . . . ." She looked back at me over her shoulder and, with that, left the room. <<nobr>> <<set $w.xr.h.t.bd1 to true>> <<if $w.xr.br.cuk>> <<set _nextlink to "Peek on them">> <<set _nextgo to "WBNitePeek_Day1">> <<set $w.loc to 3>> <<set $w.xr.br.evt.slp to true>> <<else>> <<set _nextlink to "Go to sleep">> <<set _nextgo to "WBNiteSleep1">> <<set $w.loc to 3>> <<set $w.xr.br.evt.slp to true>> <</if>> <</nobr>>\ <<link _nextlink _nextgo>> <<if _nextgo is "WBNiteSleep1" and $w.pov>> <<else>> <</if>> <</link>>
<h3>Who do you want to text?</h3> <div class="row"> <div class="column"> /* start entry here */ <div class="flip-box"> <div class="flip-box-inner"> <div class="flip-box-front"> <img src="images/wprofile1.jpg" style="width:250px;height:250px"> </div> <div class="flip-box-back"> <h3>$w.fn</h3> <center> <<link [img[images/text_icon.png]]>> <<popover 'noclick'>> <<if $intexts.br.a and not $outtexts.w.a and $gameDate.getHours() gte 16 and $gameDate.getHours() lte 18>> [img[images/txtoutwife1.jpg]] <<set $outtexts.w.a to true>> <<else>> <<include [[WifeOutText]]>> <</if>> <</popover>> <</link>> </center> </div> </div> </div> </div> <<if $intexts.br.a>> <div class="column"> /* start entry here */ <div class="flip-box"> <div class="flip-box-inner"> <div class="flip-box-front"> <img src="images/brianprofile.jpg" style="width:250px;height:250px"> </div> <div class="flip-box-back"> <h3>Brian</h3> <center> <<link [img[images/text_icon.png]]>> <<popover 'noclick'>> <<include [[BrianOutText]]>> <</popover>> <</link>> </center> </div> </div> </div> </div> <</if>> <<if $intexts.rd.a>> <div class="column"> /* start entry here */ <div class="flip-box"> <div class="flip-box-inner"> <div class="flip-box-front"> <img src="images/rdprofile1.jpg" style="width:250px;height:250px"> </div> <div class="flip-box-back"> <h3>Richard Day</h3> <center> [img[images/text_icon.png]] </center> </div> </div> </div> </div> <</if>>
<<popover>> <<randompic 1 3 txtoutwx>> <</popover>>
<<popover>>\ <h2>[ Welcome to //In Their Own Hands// ]</h2> This game is about people. You will be playing the role of ''$h.fn $h.ln''. You are married to ''$w.fn $w.ln''. Each of you will meet other people throughout the game. All of the characters in the game, except ''$h.fn'', will make their own decisions. The goal of the game is to navigate the marriage of ''$h.fn'' and ''$w.fn''. Different choices may have different long-term and short-term outcomes. <<if $w.pov>>\ Because you have selected to show $w.fn's perspective, you will sometimes see the world through her eyes. When you do so, you will be able to make a few choices for her, but most of the time, you will have no control over her actions. On the other hand, if you had chosen not to show her point of view, she would still be making various choices on her own. This includes scenes that you will learn about later, as well as some scenes that you won't. If you want to make a different choice, just click the ''Restart'' menu item in the left side panel and choose to view the "Husband Only" perspective.<br><</if>>\ [img[images/ntrbutton.jpg]] This is the last chance to avoid any possible //netorare// (NTR) content. If you don't want to see it, either play the game better or exit now. By clicking "Continue" below, you are acknowledging that there are no more guarantees. <center><<button "Continue">><<run Dialog.close()>><</button>></center> <</popover>>\ <<goto [[MasterBedroomMain]]>>\
<<popover>>\ <h2>[Home -- Street]</h2> You have made it outside! /* From here, you can go anywhere you want in the city, whenever you want. */Near your home, you will see a ''Convenience Store'', where you can buy a lot of common goods, and a ''Liquor Store'', where you can buy "adult" beverages. The local dive bar, ''Dirty Bones'', is also here. It's not a bad place to grab a few drinks when you are in the mood. A little bit down the road, there is the large ''City Park'' where you can get some fresh air. /* You can also go ''Downtown'' or ''Uptown'' from here. There are several different businesses in both places. * If you choose to walk, it will take some time and //Energy//. * You can ride a //scooter//, which takes less time and //Energy// than walking. * Or you can call a //RideMe// car on your Phone, which takes the least amount of time and //Energy//. */On Mondays, Wednesdays, and Fridays, you can also ride the Bus from here to get to your ''Office''. It will take you about 20-30 minutes to arrive, so plan your time accordingly. You need to be at work by 8:00am or shortly thereafter. (As a reminder, you Telework on Tuesdays and Thursdays, so on those days, you don't have to ride the Bus. Just //use your laptop// in the ''Guest Room''.) <center><<button "Close">><<run Dialog.close()>><</button>></center> <</popover>>\ <<goto [[HomeStreetMain]]>>\
[img[images/e1db1.jpg]] As I entered //Dirty Bones//, I immediately saw Brian sitting at the bar with a drink, waiting for me. "Hey, how's it going man," I called to Brian as I approached him. "Been waiting long?" "What's up, brother? Naw, I just got here a few minutes ago. What are you drinking? First rounds on me." He motioned for the bartender. "I'll take a beer. So how are things goin'? Been a while since we been able to hang out . . ." <<showvideo dbcrystal1>> "Two more beers!" Brian ordered, then turned back to me. "I know, right? This pandemic was crazy." Our beers appeared on the bar in front of us, and I raised my glass to him. "Cheers!" [img[images/e1db2.jpg]] "Cheers. So, anyway, I wish we were able to hang out under better circumstances, but I really just needed a good friend to talk to . . . ." "Oh shit," I responded. "That's sounds serious. Is everything ok?" [[Continue|E1DB2]]
<<nobr>> [img[images/e1db1.jpg]] <<set $h.tox.drk += 1>> <</nobr>> "Well, I do have a bit of money stashed away. Joint account, of course, but it's not all tied up in business. Enough that I'm going to give Shay a few thousand to keep her going til she figures out her own finances. I'm going to start looking for a new place to stay first thing tomorrow, and just stay in a hotel until I find a place." "Fuck that," I said. "Come stay with us. We have a Guest Room you can crash in until you find a place. Right now I'm using it as my home office when I telework, but I can move to the Kitchen or something." "Thank you, brother. I really appreciate it. You don't have to move your office, though. You know I get up early anyway, so I can be out of the way before you start working." "That's settled, then. . . . Let's grab some food, I'm starving." We motioned to the bartender again. "Fuck yeah, this will be just like old times--the two of us, partners in crime." We both laughed at my turn of phrase, thinking about all the years of fun we had had in college. [img[images/e1db5.jpg]] The drinks kept coming, slow but steady, so that we didn't get too drunk. And we caught up on other things. I told him about how $w.fn and I were doing, we talked about current events, politics, sports. Just generally caught up on how our lives had been going since the world went crazy. After a few hours, we decided to head out. <<if not $outtexts.w.a>>\ //Shit//, I thought as we walked out the door. //Maybe I should have told $w.fn that I wasn't coming straight home after work.// <<else>>\ I shot $w.fn a quick text to let her know that I was on my way home. <</if>>\ <<link [[Head home|Event1_Home1]]>> <<run $gameDate.setHours(21)>> <<run $gameDate.setMinutes(20)>> <</link>>
<<if not $outtexts.w.a>>\ <<set $w.pref.ex += 0.5>>\ <<set $w.rous += 10>>\ As I opened the door and entered the apartment, I caught a glimpse of $w.fn coming out of the bathroom. Completely nude. [img[images/waftershower1.jpg]] I didn't even have time to react before two things happened. Brian followed me into the apartment. And $w.fn noticed us. "Fuck! Holy shit, $h.fn! You fucking scared the shit out of me! My heart is beating out of my chest." "I'm sorry, baby! I figured you would hear me coming in!" She suddenly seemed to realize what she was wearing and held the towel in front of her, covering up. [img[images/waftershower2.jpg]] "Hey, Brian! Please excuse my current wardrobe, I didn't expect company." Her gaze returned to me, accusingly. "I'm going to go get dressed. Would you mind joining me in the Bedroom, $h.fn?" She turned and walked out of sight. I looked at Brian. "Shit, I probably should have texted her earlier. Make yourself at home. We have some beers in the fridge. We'll be right back." <<else>>\ <<set $w.pref.ex += 0.25>>\ [img[images/w_lrsexy1.jpg]] As Brian and I entered the apartment, we noticed $w.fn just relaxing on the couch watching tv. Barely wearing anything, looking so fucking sexy. "Hey, baby! Whatcha watchin'?" I asked. She responded without looking in my direction. "Not much, really. Just trying to find something good. Failing miserably so far." It took her a couple of seconds to realize I wasn't alone. As soon as she did so, $w.fn quickly jumped up from the couch. "Hey, Brian! Please excuse my current wardrobe, I didn't expect company." Her gaze returned to me, accusingly. "I'm going to go get dressed. Would you mind joining me in the Bedroom, $h.fn?" She turned and walked out of sight. I looked at Brian. "Shit, I probably should have mentioned you were coming home with me when I texted her as we were leaving. Make yourself at home. We have some beers in the fridge. We'll be right back." <</if>>\ [['Follow ' + $w.fn + ' into the Bedroom'|Event1_Home2]]
<<nobr>> [img[images/e1db3.jpg]] <<set $h.tox.drk += 1>> <</nobr>> "Well, Shay kicked me out. I think this was it, the end." Brian and Shay had been together since we were all in college. There were a lot of nights with me and $w.fn, Brian and Shay, hanging out together. "Sorry, that sounded worse than I meant it to sound. I'm moving out. It was her idea, but I agree with it." Brian was my roommate freshman year and we clicked on day one. The next two years, we requested to room together in the dorms, and got an off-campus apartment senior year. We kept living together all through grad school, though he spent probably half of his time at Shay's place. She graduated the same time as us, but didn't go to grad school. After college, he started his own business. //Entrepeneur// is kind of a joke job when a lot of people say it, but not Brian. He took it seriously, worked hard, and was immediately successful. Though I'm still not sure //exactly// what he does, I know he does it well enough to make some decent money. "What happened?" I asked. "You guys have been together forever." [img[images/e1db4.jpg]] "Yeah, I don't know. I think it was a combination of things. We've been drifting apart for a while. I had to work extra hard during the pandemic to keep everything afloat, so I wasn't at home much. Didn't really spend much time with her." "Do you think there's someone else?" "I don't know. I don't think she cheated on me--not yet anyway--but she might be interested in someone else." We finished our drinks and I motioned to the bartender for two more. Brian continued, "Look, we haven't been happy for a while. Fighting nearly every time we were together. I understand how she feels, so I'm ok with this. A little down, of course, but I get it, and I'll get over it." "Fuck, man. That really sucks. What's the plan?" [[Continue|E1DB3]]
<<nobr>> <<randompic 11 19 wlr_basic>> <<set _scene to random(1,3)>> <<set $w.evt.wrt += 0.5>> <</nobr>> <<if _scene is 1>>\ //Maybe if I try to use this mind-mapping software to help me lay out a bit more of the plot and think of related ideas or themes . . . . maybe that would help me get past this little hump.// I worked on my book for several hours today. Even though I didn't get a lot of actual writing done, I think I managed to wrap my mind around some of the high-level decisions that needed to be made. At least I felt like I made //some// progress, even if it was more lateral than forward progress. <<elseif _scene gte 2>>\ //Well this seems like a total bust//, I thought. //I've just been staring at a blinking cursor for it-seems-like hours. Days. Months. Years. Ugh.// No, I couldn't let myself get discouraged. //Maybe I just need to take a little break and try again later.// <</if>>\ <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<randompic 1 10 wlr_basic>> <p><<link "Continue" $nextpassage>><<unset $nextpassage>><</link>></p>\
<<set _scene to random(1,3)>> <<if $w.rous gte 150 and _scene is 3 and $w.pref.ex gte 15>> <<randomvideo 1 14 wlryogax>><br><br> <<randomvideo 15 22 wlryogax>><br><br> <<randomvideo 23 24 wlryogax>><br><br> <<timed 3s>><<shakescreen 2s>><<set $w.rous -= 20>><br><br> <<randomvideo 25 31 wlryogax>><br><br> <p><<link "Continue" $nextpassage>><<unset $nextpassage>><</link>></p> <</timed>> <<else>> <<set _img to random(1,10)>> <<if _img lte 6>> <<randompic 1 6 wlryoga>> <<else>> <<randomvideo 7 10 wlryoga>> <</if>> <p><<link "Continue" $nextpassage>><<unset $nextpassage>><</link>></p> <</if>>
[img[images/conveniencestore1.jpg]] The little convenience store just down the street from our apartment was the perfect place to pick up a few things. The shelves were packed with products you might need in a pinch, everything from last-minute necessities to late-night snacks. Some of the food products were even stocked this century! <<= either("The owner gave me a friendly wave as the bell dinged to announce my arrival.","The teenaged clerk didn't even look up from his phone as I walked past him.","The guy behind the counter barely acknowledged my presence as I entered the store.")>> !!!What do you want to buy? <<if $Bank gte 10 or ($h.evt.db.smkon and not $h.evt.db.smkgot)>><<button [[Buy|ConvenienceBasic]]>><<if $h.evt.db.smkon and not $h.evt.db.smkgot>><<set $h.evt.db.smkgot to true>><<set $Bank -= 10>><<else>><<set $inv.cig += 20>><<set $Bank -= 10>><</if>><</button>><<= " A pack of cigarettes ($10)">><br><</if>>\ <<if $Bank gte 5>><<button [[Buy|ConvenienceBasic]]>><<set $inv.ros += 1>><<set $Bank -= 5>><</button>><<= " Roses (single) ($5)">><br><</if>>\ <<if $Bank gte 15>><<button [[Buy|ConvenienceBasic]]>><<set $inv.ros += 12>><<set $Bank -= 15>><</button>><<= " Roses (dozen) ($15)">><br><</if>>\ <<if hasVisited("GR_LaptopResearchHCheat") and not $inv.newcell>><<button [[Buy|ConvenienceBasic]]>><<set $inv.newcell to true>><<set $Bank -= 50>><</button>><<= ' Disposable pre-paid "burner" cell phone ($50)'>><br><</if>>\ !!!Where do you want to go? <<link [[Back outside|HomeStreetMain]]>><<addminutes 15>><</link>>
<<nobr>> <<set _img to random(1,14)>> <<if _img lte 6>> <<randompic 1 6 wlrnud>> <<else>> <<randomvideo 7 14 wlrnud>> <</if>> <<set $w.pref.ex += 0.25>> <</nobr>> //Why does it take so much for a woman in this country to just feel comfortable being naked in her own home?// //Whatever//, I thought. //I'm turning over a new leaf. Feeling powerful enough to do this here is the first step to manifesting this power in the outside world!// <<nobr>> <<set _scene to random(1,6)>> <<if $w.rous lt 150 and _scene lte 3>> <p><<link "Continue" $nextpassage>><<unset $nextpassage>><</link>></p> <<else>> <<set _img2 to random(1,16)>> <<set $w.rous -= 20>> <<set $w.pref.ex += 0.25>> <p>//Fuck! This is making me hot!//</p> <p>I decided to push myself a little further, and take care of my desires out here in the open.</p> <<if _img2 lte 4>> <<randompic 1 4 wlrmas>> <<else>> <<randomvideo 5 16 wlrmas>> <</if>> <<timed 2.5s>><<shakescreen 2s>> <p>"Yes! Yes!" Alone in the apartment, I let myself go and screamed out loud.</p> <p>//Holy shit, that was amazing! Is this how orgasms become feminist symbols of empowerment?// I chuckled and decided to pass out for a little bit.</p> <p><<link "Continue" $nextpassage>><<unset $nextpassage>><</link>></p><</timed>> <</if>> <</nobr>>
<<showvideo hcrysf5>> "Hey, $h.fn! Hey! Hi!" Crystal was acting a little silly, like something was a little bit off. "Can you keep a secret?" she asked me, whispering loudly. "Of course." I mean, why would I respond anything else? <<showvideo hcrysf6>> She reached out and took my hand. //Very// sexily. Again, in the loudest whisper: "I took some Molly and now I am //very// horny. And I was thinking, I still owe you for that time you brought me some cigarettes. Plus, you are very sweet and never hit on me." <<showvideo hcrysf7>> "Sooo . . ." she continued. "How would you feel about coming somewhere with me?" "Where?" <<showvideo hcrysf8>> "Hmm . . ." she looked around the bar. "How about the restroom?" She looked at me, anticipating my answer, with those gorgeous, big brown eyes. "Oh, and before you start overthinking it, I am a little bit fucked up, but I am in total control of my actions. I am just very horny. You are probably my best option. But you wouldn't be taking advantage of me. If anything, I think I might be kinda taking advantage of you." //After all that, I may not know //exactly// what she is proposing, but I think I can posit a pretty solid theory.// Crystal was an absolutely gorgeous woman. Unique and interesting in her beauty, not conventional. The only question I had was to decide whether or not I wanted to go with her to the restroom. //[[What am I waiting for?|DB_Event_Crys1B]]// [[No, maybe I shouldn't|DB_Event_Crys1C]]\
<<if not $outtexts.w.a>>\ <<set $w.luv -= 2>>\ <<showvideo whbr_talk3>> As soon as I stepped foot into the Bedroom, $w.fn was on the attack. "What the fuck, $h.fn?!? Why didn't you text me to let me know you weren't gonna be home until late? I made dinner and sat there like a fucking loser waiting for you to come home. I had to reheat it in the microwave because it had gotten cold. You know how that ruins the fucking taste! And you were, what, out drinking with your friends?" She was right, of course. I should have let her know. "You're right, hon.' I should have texted or called you. I'm sorry." "I mean, Brian just saw me completely naked! I had no idea he was going to be standing there as I got out of the shower!" "I know, I know, you're right." She seemed to calm down a little bit as she yelled at me. I guess now is as good a time as any to talk to her about Brian staying here.<br><br><</if>>\ \ $w.fn quickly threw on some clothes as I thought about how to address the situation. "So I kinda need to talk to you about something . . . ." I started. <<showvideo whbr_talk1>> "What's going on?" she asked, showing a bit of concern. "Sooo . . . Shay and Brian broke up. She kicked him out." "Oh my God! Is he okay? They've been together forever!" $w.fn had always gotten along really well with both Brian and Shay, though she didn't really stay in touch after college. I wouldn't say that they were close now, but we all spent a lot of time together before she and I got married. Of course, Brian was my best man, and Shay was one of $w.fn's bridesmaids. "Well, he was going to stay in a hotel until he found somewhere more permanent, but . . . I talked him out of it. Told him he could stay here 'til then." <<showvideo whbr_talk2>> "Yeah, of course that's not a problem." I knew she would understand. "He's pretty down. So we went to //Dirty Bones// and had a few drinks. He texted me right before I walked out the door to come home from work.<<if not $outtexts.w.a>> That's why I forgot to let you know.<</if>>" "I'm still trying to cheer him up. Why don't we make a night of it? Hang out, drink some beers, maybe you can flirt with him a bit," I winked at her and smiled. Her charm was irresistible--it was hard to be in a bad mood around $w.fn. "You know, just generally get his mind off of shit?" She smiled at the suggestion. "Well, it's really not that late yet . . . sure, why not? That could be a lot of fun!" "Awesome! We'll get started while you finish getting ready!" Feeling much better about how things were going now, I left her behind and returned to Brian. <<link [[Return to the Living Room|Event1_Party_Start]]>> <<addminutes 10>> <<set $w.xr.br.evt.on to true>> <</link>>
<h3>What do you want to talk about?</h3> <<if not $w.xr.h.day.t.myd and $gameDate.getHours() gte 15>>[[Tell her about your day|WTalk_MyDay1][$rtn to previous()]]<br><</if>> <<if not $w.xr.h.day.t.yrd and $gameDate.getHours() gte 15>>[[Ask about her day|WTalk_HerDay1][$rtn to previous()]]<br><</if>> <<if not $w.xr.h.day.t.bk>>[[Ask about her book|WTalk_Book1][$rtn to previous()]]<br><</if>> <<if hasVisited("GR_LaptopResearchSpice") and not $w.xr.h.day.t.sxy>><<link "Tell $w.fn that she's sexy">><<set $rtn to previous()>> <<if $h.pref.wex lte 2>> <<goto [[WTalk_Sexy1]]>> <<elseif $h.pref.wex gt 2 and $h.pref.wex lte 4>> <<goto [[WTalk_Sexy2]]>> <<else>> <<goto [[WTalk_Sexy3]]>> <</if>><</link>><br><</if>> <<if tags().includes("Bedroom") and $h.rous gte 30 and not $w.xr.h.day.t.sdc and $gameDate.getHours() gte 22>>[['Try to seduce ' + $w.fn|WTalk_Seduce1][$rtn to previous()]]<br><</if>> <<if hasVisited("GR_LaptopResearchSpice") and ($h.pref.cuk + $h.pref.opn + $h.pref.swg) gte 5 and not hasVisited("WTalk_Relat1") and tags().includes("Bedroom") and $gameDate.getHours() gte 22>>''[[Talk about our relationship|WTalk_Relat1][$rtn to previous()]]''<br><</if>>
<<randompic 1 8 mwshoppinga>> I decided to go shopping for some new clothes. This always made me happy. Even if I was just window-shopping. But with the kind of money that $h.fn made, I could afford to splurge a little bit on myself every now and then.<<if $h.pref.wex gt 1>> //He even seems to enjoy seeing me in sexy clothes, so //technically// I'm really doing this for //his// benefit . . . .// I chuckled at my clever rationalization.<</if>> The Boutique had a wide selection of clothes. As I browsed the racks, I picked out a few to try on. I don't know if I'll buy any of them yet, but I definitely want to see how they look on me. <<randomvideo 1 29 mwshopa2>> I tried on several different outfits. I was kinda in a randy mood, so most of them were very sexy. Lingerie, bikinis, short dresses. All of them looked great on me, if I do say so myself. //Guess all that time in the gym and running in the park is helping me keep my figure. I am definitely not going to let myself go like a stereotypical housewife.// <<randomvideo 1 29 mwshopa2>> After a while I picked the ones I like the best and headed for the register. \ <<nobr>> <<set $w.rous += 5>> <<set $w.pref.ex += 0.25>> <<set $w.evt.clo += 1>> <<set _cost to random(50,500)>> <<set $Bank -= _cost>> <<if _cost gte 300>><<set $w.rsp += 1>><</if>> <</nobr>>\ I paid $<<= _cost>> total. Shouldn't be a problem. \ <<if $Bank lt 1500>><br>//I guess if my shopping habit keeps on like this, I can always sell some short stories or something for a little more cash.//<br><</if>>\
<<randompic 1 8 mwshoppinga>> I decided to go shopping for some new clothes. This always made me happy. Even if I was just window-shopping. But with the kind of money that $h.fn made, I could afford to splurge a little bit on myself every now and then. The Boutique had a wide selection of clothes. As I browsed the racks, I picked out a few to try on. I don't know if I'll buy any of them yet, but I definitely want to see how they look on me. <<randomvideo 1 29 mwshopa2>> I couldn't help myself. As I was undressing, the thought of someone seeing me popped into my head. //You know what? Fuck it!// I pushed the curtain open just a couple of inches. Enough for plausible deniability, but if anyone wanted to look, they would see it all. <<set _scene to random(1,2)>>\ <<if _scene is 1>>\ <<include [[MW_ShoppingA3a]]>> <<else>>\ <<include [[MW_ShoppingA3b]]>> <</if>>\
<<nobr>> <<set $w.rous += 15>> <<set $w.pref.ex += 1>> <<set $w.evt.clo += 1>> <<set _cost to random(50,500)>> <<set $Bank -= _cost>> <<if _cost gte 300>><<set $w.rsp += 1>><</if>> <</nobr>>\ <<showvideo mwshopa3a1>> <<showvideo mwshopa3a2>> <<showvideo mwshopa3a3>> <<showvideo mwshopa3a4>> <<showvideo mwshopa3a5>> <<if $w.rous gte 120>><<include [[MW_ShoppingA3a2]]>><</if>>\ <<showvideo mwshopa3a15>> I paid $<<= _cost>> total. Shouldn't be a problem. //I guess if my shopping habit keeps on like this, I can always sell some short stories or something for a little more cash.//
I was thinking about someone walking by and stopping to look at me as I was completely naked. Suddenly I realized that my pussy was soaking wet. <<showvideo mwshopa3a6>> I ran my hands across my tits and down my body to my womanhood. Sure enough, I was dripping. <<randomvideo 7 9 mwshopa3a>> I started slowly, rubbing my breasts and my pussy, watching myself in the mirror. I imagined someone right outside, peeking through the gap in the curtain. They could see me, some nameless sexy woman shamelessly baring her body in a public place, masturbating. They would see the same vision staring back at me from the mirror. The other thought, that I was wearing clothes that didn't belong to me, added a whole other element to my fantasies. //Imagine putting this back on the rack and someone else taking it home, wearing it, never knowing that I had played with myself until I came while wearing it.// <<randomvideo 10 11 mwshopa3a>> I surrendered myself to the sensations, my mind completely emptying itself of all other thoughts. My initial hesitation melted away. I rubbed my clit with "wild abandon," as they say. The feeling was so intense I had to lean on the mirror for stability. //Oh God! I'm so close . . . // I stifled a moan as my orgasm swiftly approached. <<showvideo mwshopa3a12>><<timed 4s>><<shakescreen 2s>> //Fuck! I'm cumming!// The release hit me hard, like strong waves in a hurricane. The urge to scream was overpowering, but I held on with the little bit of self-control I still maintained. My inability to completely let go in this environment seemed to make the orgasm even more powerful. <<showvideo mwshopa3a13>> After what seemed like an eternity, I was able to regain my senses. I was still breathing heavy but slowly I was able to gather myself together. <<nobr>> <<showvideo mwshopa3a14>> <<set $w.rous -= 20>><<set $w.pref.ex += 3>> <</nobr>><</timed>>\
<<nobr>> /* second example */ <<set $w.rous += 15>> <<set $w.pref.ex += 1>> <<set $w.evt.clo += 1>> <<set _cost to random(50,500)>> <<set $Bank -= _cost>> <<if _cost gte 300>><<set $w.rsp += 1>><</if>> <</nobr>>\
<<showvideo kwb_start2>> I took a break from writing and went to the Kitchen for a drink. "Thirsty?" Brian asked nonchalantly as he wandered in as well. He was dressed very nice. In fact, he looked //damn good// in an all-black vest combo. <<showvideo kwb_start6>> "You have //no idea// how thirsty I am," I flirted. To accentuate the point, I pushed up close to him and rubbed my hand down his chest. The muscles in his chest and abs were rock-hard. <<showvideo kwb_start7>> I moved my hand even further down. This was rock-hard already as well. "Mmmmm. Will you please give me this cock again? Will you let me suck it? Will you fuck me with it?" <<showvideo kwb_start9>> He said nothing. Just kissed me. And that was exactly enough. All I needed and wanted at that moment. <<link [[Turn up the heat . . .|Kitchen1_WB_FPStart]]>> <<set $SexScene to true>> <<set $Partner1Name to "Brian">> <<set $root to "Kitchen1_WB_">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to (($w.xr.br.cm + $w.rous) / 100)>> <<set $npcmod to 0.6>> <<set _BCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _BCum>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>>\
<<randomvideo 1 2 kwb_fpstart>> <<randomvideo 3 5 kwb_fpstart>> <<showvideo kwb_fpstart6>> <<randomvideo 7 8 kwb_fpstart>> <<showvideo kwb_fpstart9>> <<set $w.rous += 20>>\ <div id='sexmenu'><<include [[Kitchen1_WB_FPOptions]]>></div>\
<<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ !!!What do you want to do? <<if $POVCumPoints lt 50>>[[Let him rub your pussy|Kitchen1_WB_FPA1]] [[Let him eat your pussy|Kitchen1_WB_FPB1]]<br><</if>>\ <<if $NPCCumPoints lt 50 and $POVCumPoints lt 50>>[[Give him a handjob|Kitchen1_WB_FPC1]] [[Give him a blowjob|Kitchen1_WB_FPD1]]<br><</if>>\ ''[["Enough foreplay, strip and fuck " + $Partner1Name + "!"|Kitchen1_WB_SexStart]]'' <<elseif $POVCumPoints gte 100>>\ <<include [[Kitchen1_WB_1Cum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Kitchen1_WB_2Cum]]>> <</if>>\
<<randomvideo 1 3 kwb_fpa>> \ <<nobr>> <<set _cpplus to (random(5,10))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen1_WB_FPOptions]]>></div>\
<<showvideo kwb_sstart1>> <<showvideo kwb_sstart2>> <div id='sexmenu'><<include [[Kitchen1_WB_SexOptions]]>></div>\
<<timed 2.5s>><<shakescreen 2s>> <br><br> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,$w.rous)>> <<set $w.xr.br.cm += 1>> <<set $povmod to $povmod * 1.1>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 1>> <div id='sexmenu'><<include [[Kitchen1_WB_SexOptions]]>></div> <</timed>>
<<showvideo kwb_bc1>> <<showvideo kwb_bc2>> <<link "Continue" $nextpassage>> <<unset $SexScene>> <<set $w.xr.br.x += 1>> <<set $Partner1Name to "">> <<set $w.rous += $POVCumPoints>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<unset $npcmod>> <<unset $povmod>> <<addclass "#right-ui-bar" "stowed">> <<unset $sexmenu>> <<unset $root>> <</link>>\
<<nobr>> <<if visited() lte 1>> <<showvideo kwb_fpb0>> <br> <</if>> <</nobr>> \ <<randomvideo 1 2 kwb_fpb>> \ <<nobr>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen1_WB_FPOptions]]>></div>\
<<nobr>> <<if previous() isnot "Kitchen_WB_FPD1">> <<showvideo kwb_fpd0>> <br> <</if>> <</nobr>> \ <<randomvideo 1 5 kwb_fpd>> \ <<nobr>> <<set $w.rous += 10>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += _cpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen1_WB_FPOptions]]>></div>\
<<nobr>> <<if visited() lte 1>> <<showvideo kwb_fpc0>> <br> <</if>> <</nobr>> \ <<showvideo kwb_fpc1>> \ <<nobr>> <<set $w.rous += 5>> <<set _cpplus to random(1,20)>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += _cpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen1_WB_FPOptions]]>></div>\
<<randomvideo 1 5 kwb_sc>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to (random(5,20))>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen1_WB_SexOptions]]>></div>\
<<nobr>> <<if previous() isnot "Kitchen1_WB_SexB1">> <<set _img to either("a","b","c")>> <<= '<<showvideo kwb_sb0' + _img + '>>'>> <br> <</if>> <</nobr>> \ <<randomvideo 1 8 kwb_sb>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to (random(5,20))>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen1_WB_SexOptions]]>></div>\
<<nobr>> <<if previous() isnot "Kitchen1_WB_SexA1">> <<showvideo kwb_sa0>> <br> <</if>> <</nobr>> \ <<randomvideo 1 6 kwb_sa>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen1_WB_SexOptions]]>></div>\
<<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|Kitchen1_WB_SexA1]] [[Standing Doggystyle|Kitchen1_WB_SexB1]] [[Side fuck|Kitchen1_WB_SexC1]] <<elseif $POVCumPoints gte 100>>\ <<include [[Kitchen1_WB_1Cum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Kitchen1_WB_2Cum]]>> <</if>>\
<<set $h.evt.rsch.cuk += 1>> <<set $h.pref.cuk += 0.5>> //<<if $h.evt.rsch.cuk is 1>> <div class="research"><p>I (M) am 36 years old and my wife is 29 years old. We have been together for 9 years and we have been married for 1 year. We understand and love each other very much and we are quite open. She had 2 men before me. For several months now, I have been thinking and getting excited by the thought of my wife having sex with someone else. I don't know why I have this thought, I even masturbated thinking that it was just a thought and it would pass, but it didn't. I say we have a normal sex life. I always told her that I would like to try a MFF, but she told me to try a MMF first, jokingly. Time passed and a few days ago we were on a lon road trip. We talked in the car and at one point we got to talking about swinging. I told her that I would try a foursome but only at a swing club and surprisingly she said that she would try something like that too. Then she looked online and found some swing clubs in a nearby city. We will go there in the summer. And then she asked me if she could fuck someone alone in the room. And selfishly I told her no, that I would like to be there too. During this whole discussion I was very surprised, I couldn't believe that my wife was saying that she would like to fuck someone else. This thought excites me terribly. My dream is to see her with a 19-20 year old boy who fucks her like a bull. I'm sure she would want that. A few days ago, she was joking with some of her friends and said that she hoped that on our anniversary she could fuck someone else besides me. And now I don't know what to do. Should I tell her that I don't actually want a threesome and I just want her to have sex with someone else? I'm a little afraid of how she will react. When I look at her angelic figure and I don't know if she hides a slut under that figure. I'm also afraid of ruining our relationship and our trust. But at the same time I am sure that this is what would make her happy. But I'm also afraid that she will like it too much and then she won't want to stop. This is my biggest fear. But at the same time I want her to be a slut. When we go out, and she dresses sexy, there are always guys checking her out. She could easily find a lot of guys who would fuck her. She is small in stature, has small breasts and a round ass. And I would really like to see how someone would fuck her, to see her moaning on someone else's dick.</p></div> <<elseif $h.evt.rsch.cuk is 2>> <div class="research"><p>My wife has very recently started hooking up with a guy after 3 years of us talking and role-playing it. It was my fantasy. She's shown me photos and videos of the deeds. They fuck for hours and hours. She's openly admitted she wants to fuck him more than me.</p> <p>It's hit me like a freight train. I'm an emotional wreck. A total wreck, like Chernobyl sized wreck. I replay the images in my mind and cry, a lot.</p> <p>I'm hoping it will get better. She'll stop if I ask. I don't have the heart to ask because she enjoys him so much.</p></div> <<elseif $h.evt.rsch.cuk is 3>> <div class="research"><p>My wife and I are in our 30s and recently started to get into the lifestyle. I can't get into the humiliation/bi stuff so I think we're more in line with hotwife/stag rather than a cuck situation.</p> <p>One of the positive side effects I'm finding is that I have a new found infatuation with her. I'm sure part of it is the juvenile "someone else is playing with a toy so I want it more" response but I think there's more to it. It's brought us a lot closer and made us way more passionate even when we're solo.</p> <p>My only disappointment is that we didn't dip our toes in sooner.</p></div> <<elseif $h.evt.rsch.cuk is 4>> <div class="research"><p>My girlfriend is 27 I’m 29. She’s in the army and has a male best friend who’s also in the army with her. They text and call each other almost every day. I’ve read their text’s on her MacBook and they don’t talk sexual at all. However she’s told me several times that’s she’s going out with friends but in reality she’s meet up with him. I love watching my girl fuck other men and she knows about this fantasy. Should I text the guy and let him know to make a move or do y’all think he’s already fucking her?</p></div> <<elseif $h.evt.rsch.cuk is 5>> <div class="research">[img[images/oldcuck1.jpg]]</div> <p>//I had no idea this was such an old kink . . . Looks like it's been documented for centuries!//</p> <<elseif $h.evt.rsch.cuk is 6>> <div class="research">[img[images/oldcuck2.jpg]]</div> <p>//I had no idea this was such an old kink . . . Looks like it's been documented for centuries!//</p> <<elseif $h.evt.rsch.cuk is 7>> <div class="research">[img[images/oldcuck3.jpg]]</div> <p>//I had no idea this was such an old kink . . . Looks like it's been documented for centuries!//</p> <</if>>//
<<set $h.evt.rsch.opn += 1>> <<set $h.pref.opn += 0.5>> //<<if $h.evt.rsch.opn is 1>> <div class="research"><p>I (47m) and my wife (42f) had been ENM only theoretically for a long time, but last year she took the plunge and started hooking up. For her it is strictly NSA sex and not a poly relationship. I have very little or no interest in any of that. But it has really enhanced our relationship and opened up a lot of fun new doors in the bedroom (and other places). And we have found that the more "excited" she is about a pending hook-up, the more "excited" she is at home too. I’m curious to know if others have had the same experience.</p></div> <<elseif $h.evt.rsch.opn is 2>> <div class="research"><p>This is a journey my wife (27 F) and myself, (30 M).</p> <p>She has come out as bisexual, and she has said she would like to explore that side of her. We have spoken at length about it all. And I have given my blessing for her to go out and explore. Within reason that is.</p> <p>I think the key is to talk and talk and talk some more. She is on an app at the moment talking to a few women. I have said I don't really want to know much. But will ask questions about it.</p> <p>She hasn't acted on anything yet, but we agreed that when and if she does, she should not come home that night all hot and smelling of sex. It would be better if she came home the next day and we can sit down in the evening with a glass of wine, to talk about the experience (maybe even get some tips for myself). But if I can't handle it and ask her to shut it down she has said she will, as our relationship is more important to her.</p> <p>Since she has come out, our relationship and intimacy (which in recent months had become stale. I put this down to her confused with her own feelings), has become so much better. We are having better sex, talking more than ever, and just general love has increased.</p></div> <<elseif $h.evt.rsch.opn is 3>> <div class="research"><p>I know every relationship is different, and the dynamics of non-monogamy are different for everyone. I have been lurking in this sub for the better part of a year, my wife (34F) and I (35F) are considering opening our marriage of 8 years (been together 10 though, I know there are folks who can relate) which has been the strongest and best relationship I have had in my life. Neither of us has had an open relationship before, and we are used to communicating constantly, openly, and sharing our feelings while trying to constantly listen. Of course, I know there is no putting the genie back in the bottle if we decide to pursue this curiosity, while we could always close again it could change the dynamic. I see a lot of wisdom and maturity (patience, growth, mutual respect and unconditional love) in this sub, but I also see a lot of behavior that honestly frightens me (lying, witholding info, breaking rules, manipulating others, etc) at times.</p> <p>If you have an open long-term committed relationship that has opened, successfully or unsuccessfuly, what do you wish you knew in the beginning? What is something you think is pretty much universally true advice for this type of experience?</p> <blockquote>//Feelings are going to happen. Sometimes they are unexpected and challenging. Even if you've done the work - even if you embrace non-monogamy - even if you logically know everything is okay - sometimes they happen and hit you like a freight train. (People who have been doing this a long time still have to process emotions like envy, jealousy, fear, anxiety, etc.) Feelings are just that. . . feelings. They aren't right or wrong. They just exist. Learning how to process those feelings and choosing how you react to those feelings is way more important than whether or not you experience those emotions.//</blockquote></div> <<elseif $h.evt.rsch.opn is 4>> <div class="research"><p>Hello, I (21M) am brand new to the open relationship scene. My (21F) girlfriend of almost 3 years started texting this guy as a joke, but it soon turned into flirting and soon sexting. She has asked me on several different occasions if it is okay and I have said yes. She has been texting this guy constantly, even when we are together. It drives me wild and I learned I’m into this sort of thing. Over the past few days though, I’ve been anxious that she will lose interest in me. I haven't had an appetite, I haven’t been sleeping. I want her to be happy, and when we talk about it, I like the idea, but I’m not sure if it is healthy for me. I love my girlfriend and she and I have both said we are wanting to be together long term, and that we are young and we should be able to experiment, which I agree with. I’m just not sure if it is worth these effects that I’m feeling. She said it was okay for me to do the same, but I don’t know anyone and I feel left out. If some of you could offer me advice on what I could do, I’d really appreciate it.</p></div> <</if>>//
"Oh my God! You will not believe my day! This morning . . . ." I began <<= either("a relatively long story","ranting","complaining")>> about <<= either("my monthly sales reports","the afternoon staff meeting","the latest hirings and firings","the volatile movement of the company stocks today")>>. <<nobr>> <<set _rxn to random(14)>> <<set _rxn to Math.round(_rxn * ($w.hap / 100))>> <<if _rxn gte 5>> <<set $w.xr.h.day.tdy += 1>> <p>"That's <<= either("crazy!","really interesting!","so weird!","fascinating!")>>" $w.fn responded after I had finished my story. "Everything else went fine at work today?"</p> <p>"Yeah, that was basically it today. Nothing else exciting . . . ."</p> <<elseif _rxn lt 3>> <<set $w.xr.h.day.tdy -= 1>> <p>$w.fn stared at me blankly for the first few minutes of my story. I'm not sure how much was listening and how much was waiting for me to stop talking. At some point, I'm pretty sure that she had definitely stopped listening altogether . . . </p> <p>//Hmmm . . . I guess maybe she's not so interested in what I did today.//</p> <<else>> <p>$w.fn listened as I went on about my day. Every so often she nodded or otherwise acknowledged what I was saying. She just didn't have a very strong reaction--almost like she was being polite but wasn't too interested in any of it.</p> <p>//Maybe I should try to talk to her about something that involves her . . .//</p> <</if>> <<set $w.xr.h.t.myd += 1>> <<set $w.xr.h.day.t.myd to true>> <</nobr>>\ <<link "Continue" $rtn>><<unset $rtn>><<addminutes 20>><</link>>\
<<randompic 1 4 wbedreading>> $w.fn was here, reading on the bed, as she does every night before going to sleep. I probably mentioned it before, but I really find her intelligence very sexy. "Hey, baby," I said as I pulled off my clothes and climbed into bed. "So . . . You were looking very sexy today. . . ." I hoped that my suggestive tone was making my intentions clear. I wasn't sure if asking directly would be a successful tactic at this point. Maybe a little romance and charm would be enough. <<nobr>> <<if ($w.rous * ($w.sat / 100)) gte 100 and not $w.xr.h.day.cmdy>> $w.fn glanced up at me over the top of her book. "You want to fuck me?"<br><br> Her bluntness caught me off-guard so it took me a second to respond. I blurted out, "Yes!"<br><br> "OK, but let's just make it a quickie . . . I was ready for bed. Lay back!"<br><br> I did as she asked, of course. I lay down on the bed as she knelt down on the floor in front of me.<br><br> <<showvideo wbrhotbj1>> <<randomvideo 2 7 wbrhotbj>> I quickly got very erect as she played with my cock, first with her hands and then with her mouth.<br><br> "Mmmmm," she purred. "I think I can work with this." She climbed on top of me with her round ass pointing toward my face. Sliding her panties to the side, she pushed my cock into her.<br><br> <<showvideo wbrhot1>> "Oh fuck," I moaned. "You feel so good!"<br><br> <<randomvideo 2 9 wbrhot>> <<set _wifecum to random(1,12)>> <<set _wifecum to _wifecum * ($w.sat / 100)>> <<if _wifecum gte 7>> After a few minutes, I could feel her movements and her breathing get more deliberate, faster.<br><br> "I'm gonna cum, baby," she whispered, increasing the pace of her hips. "Oooohhh!" She suddenly stopped moving, and I could tell she was having an orgasm. After just a few seconds, she started moving again. "Your turn, now, baby."<br><br> <<set $w.xr.h.day.cmdy to true>><<set $w.rous -= 20>> <<else>> <<set $w.rous += 10>> <</if>> The way she moved her hips, the sight of her beautiful body, and the sexy moans escaping her mouth were all too much. It only took me a few minutes, and I had reached my limit.<br><br> "I'm about cum!"<br><br> $w.fn jumped off of me and dropped back to her knees in front of me. "Go ahead, baby, let it out. Cum on my face!"<br><br> <<showvideo wbrhot10>> Her words were enough to send me over the edge. As I came, she didn't even flinch when it shot onto her face. I never imagined my wife could be so nasty--it was so incredibly sexy!<br><br> With a smile she jumped up. "I'm going to go wash my face, and then it is bedtime. . . . //For real//, this time."<br><br> <<link "Continue" $rtn>><<addminutes 15>><<unset $rtn>><</link>> <<elseif $w.hap gte 80 and $w.xr.h.day.tdy gte 10>> $w.fn glanced up at me over the top of her book. "Hmmm . . . You know what, you were such a good boy today, I think you deserve a special prize. Come here, lay down. . . ."<br><br> Of course, I did exactly as she asked.<br><br> <<showvideo wbrhotbj1>> <<randomvideo 2 7 wbrhotbj>> <<showvideo wbrhot10>> <<link "Continue" $rtn>><<addminutes 10>><<unset $rtn>><</link>> <<else>> "Sorry, hon'. I'm just not really in the mood today. I just want to keep reading my book for a little longer and go to sleep, if that's alright."<br><br> "Oh, that's ok . . . Maybe tomorrow?" I was a bit dissapointed. Maybe I should try harder to get her in the mood.<br><br> <<link "Continue" $rtn>><<addminutes 5>><<unset $rtn>><<set $h.rous -= 30>><</link>> <</if>> <<set $w.xr.h.day.t.sdc to true>> <</nobr>>\
"So how's your book coming along?" I asked $w.fn. "I know you've been working hard on it . . . ." <<nobr>> <<set _scene to random(1,($w.xr.h.t.bk + 3))>> <<if _scene gte (($w.xr.h.t.bk / 2) + 1)>> <<include [[WTalk_Book2]]>> <<else>> "Not so great," she responded. "I've been having a bit of trouble <<= either( "concentrating lately. I just need to take a break for a few days and clear my mind. Then I should be able to get rid of this writer's block.", "getting the dialogue just right. It just doesn't feel as natural as I think it should. Trying to capture the way that people speak is fucking hard. Especially when so many people.", "figuring out exactly where to go with the main character. I'm trying to keep different paths open so that I can work through which one will have the most impact. And I don't want to box her into a corner. But at the same time, I have to balance her personality as I develop it with possible plot points so that she always does only things that she would naturally do. It's pretty tough . . . .", "connecting some of the plot points that I want to hit. I have a lot of great ideas for the story as it unfolds, but how do I get from one to the next so that the flow is right? I don't know, I'm gonna keep working on it.", "figuring out some of the backstory. I need to do some research on how certain types of trauma tend to affect peoples' personalities over time, to make sure that it makes sense.", "with one of the side characters. At first they were supposed to serve as a foil to set up a critical point of the plot, but as they developed they kinda turned into something else. So now I have to decide if I keep them as is and shift that purpose onto a different character or go back and re-write the whole thing." )>> <</if>> <<set $w.xr.h.day.tdy += 1>> <<set $w.xr.h.day.t.bk to true>> <</nobr>> I listened attentively to $w.fn as she talked about her writing. She was so fucking smart; this is exactly the side of her that I fell in love with back in college. <<link "Continue" $rtn>><<unset $rtn>><<addminutes 20>><</link>>
"How was your day, baby?" I asked $w.fn. "Do anything interesting?" <<nobr>> <<if $w.evt.wrt gte ($w.xr.h.t.bk + 5)>> "Well, I have been working on my book quite a bit lately. Do you want to hear about it?"<br><br> "Of course, of course. I'm always interested in how that's coming along."<br><br> <<include [[WTalk_Book2]]>> <<else>> "Not too much, really. Just <<= either("hung around the house most of the day","cleaned up a bit around here and then just relaxed for the rest of the day","watched a couple of old movies I hadn't seen in a while","worked out a little bit and then relaxed for the rest of the day","finished up this book I was reading","ran to the store to pick up some things we needed around here","did a little bit of editing on some of the early chapters of my book, to make sure I was keeping things consistent")>>. The day really seemed to <<= either("drag on forever","fly by before I knew it")>>."<br><br> She spent the next few minutes telling me about the banalities of her day, with the flair and charisma of a natural storyteller. I hung on every word, reveling in the voice of the love of my life. <</if>> <<set $w.xr.h.day.t.yrd to true>><<set $w.xr.h.t.yrd += 1>> <</nobr>> <<link "Continue" $rtn>><<unset $rtn>><<addminutes 20>><</link>>\
<<if $w.xr.h.t.bk is 0>> "It's actually kinda crazy. I've decided to scrap my first idea completely, because I started to really think about what I wanted to say with this book. I mean, I'm not going to completely trash what I've written so far. There's definitely some good stuff in there that I can probably use somewhere. But I am exploring an interesting thought right now. I will definitely let you know what I come up with . . . ."<<set $w.xr.h.t.bk += 1>> <<elseif $w.xr.h.t.bk is 1>> "OK, so I think this new idea might actually have some wings. I'm still working out some parts of it, conceptually, but I think this might be exactly the inspiration I have been waiting for. I'll tell you this much, though, it is definitely going to be a bit darker than I originally planned."<<set $w.xr.h.t.bk += 1>> <<elseif $w.xr.h.t.bk is 2>> "I finally figured out what this story is going to be. I don't know, I think maybe the pandemic and the protests and everything that has happened these past----I don't know, however many years it's been. Anyway, it's going to be like a 'personal post-apocalyptic' story. I don't mean zombies or nuclear holocaust or anything like that. Our world, this one, as it is. But it's the character who has psychologically and emotionally gone through the apocalypse. And she has come out the other side with a post-apocalyptic sense of morality. It's going to be like an existentialist coming-of-age story. Think //Catcher in the Rye// meets //L'etranger// by Albert Camus and //No Longer Human// by Osamu Dazai. Except it's a young woman. Maybe some shades of //Taxi Driver// just for fun, but I haven't quite decided about that . . . ."<<set $w.xr.h.t.bk += 1>> <<elseif $w.xr.h.t.bk is 3>> "Alright, so I've been working out some things. I told you about the general tone of the story. But really the most important thing is how the main character interacts with her environment. And since the whole story is being told from her perspective, it's going to really take a lot of work to make sure that the world is familiar but also //not normal//. It has to be subtle but not too subtle. This is how it ends up giving the 'post-apocalyptic' mentality that I want. And she has to have this feeling of detachment or apathy from the consequences of her actions. Almost like not having a conscience . . . ."<<set $w.xr.h.t.bk += 1>> <<elseif $w.xr.h.t.bk is 4>> "I did a quick outline of the general plot points. A lot of the story is going to take place internally, through her thoughts and perspective. But there needs to be some external events to create the contrast between the main character's view of things and reality. . . . Oh! And I also came up with a title! Tentative, at least. //Hollow Girl//! It will represent that she is missing something inside of her, that she has an empty space that needs to be filled. . . ."<<set $w.xr.h.t.bk += 1>> <<elseif $w.xr.h.t.bk is 5>> "So I worked on a couple of little vignettes to get used to describing the world throught the protag's eyes. It's a lot tougher than it sounds. But I think I have a good handle on it. Now I'm working on putting the character into a couple of different scenes. I think I am going to use the scenes that I already wrote and just try to re-work them into the new style. Then I can start building the new plot around the ones that work the best."<<set $w.xr.h.t.bk += 1>> <<elseif $w.xr.h.t.bk gte 6>> "Things are going ok. Some days are better than others, obviously, but overall, I think it's coming along. I am really starting to get into the mindset of the main character . . . like I can almost feel how she would handle certain situations, how they would play out through her eyes." <</if>> <<set $w.xr.h.day.tdy += 1>>
<<showvideo whfail1>> <<showvideo whfail2>> <<showvideo whfail3>> <<showvideo whfail4>> //"[[Let's see what I can do|WH_LRFail2]]"//
<<showvideo whfail5>> <<showvideo whfail6>> <<showvideo whfail7>> <<showvideo whfail8>> <<showvideo whfail9>> //"[[Can you eat my pussy?|WH_LRFail3]]"//
<<showvideo whfail10>> <<showvideo whfail11>> //"[[Let me try again|WH_LRFail4]]"//
<<showvideo whfail12>> <<showvideo whfail13>> <<showvideo whfail14>> [[Get dressed . . .|LivingRoomMain][$w.sat -= 2]]\
<<if visited() lte 1>>$w.fn's words still echoed in my ears. Yet <</if>>I laid in bed for some time, and my thoughts couldn't help but return to what was happening in the ''Guest Room'' right now. //I wonder if she locked the door?// I don't know why the thought turned me on. My curiosity was driving me crazy. My cock almost felt like it was going to explode. //I have to go see.// As I moved down the hall toward the Guest Room, I could hear $w.fn moaning. Louder, the closer I got. <<showvideo day1peek1>> //The door is open a crack!// My heart was beating so hard I could feel it pounding in my ears. I didn't dare push the door open or I might get caught. The crack will have to be enough. I angled around, trying to see what I knew was happening just on the other side of the door. //Not quite . . . . Keep trying . . . ,// I told myself. I got a little closer. <<showvideo day1peek2>> I could see Brian's looming figure in the low light. He was upright, thrusting into what had to be $w.fn. I couldn't quite make her out. She must have been laying down, closer to the bed, hiding in the shadows and bed linens. <<showvideo day1peek3>> My eyes finally adjusted to the dark, allowing me to see the light softly bouncing off of her pale skin. I couldn't make out the shapes of her breasts, so I must be looking at her back. Which means she was laying face-down. My mind started to slowly stitch the spare images together----of the bed, of Brian above, of $w.fn below----and the scene became a reality. //$w.fn has her ass in the air, once again taking Brian's cock deep inside, doggy-style.// <<showvideo day1peek4>> At that moment, she moved her head, turning it in the general direction of the door. I hadn't even realized that she wasn't facing me. Yet I suddenly saw my wife's face on this woman being fucked hard. There was no sign of recognition. //I don't think she can see me. She doesn't know I'm here.// This whole time, she kept moaning, Brian kept grunting aggressively. The sounds of sex, flesh clashing with flesh, rose to a crescendo with the sound of my own heart beating heavy behind my ears. The entire chorus peaked with the next words I heard coming out of $w.fn's mouth: "Oh, fuck, Brian! I'm cumming, I'm cumming, I'm cumming! Jesus Christ, your cock is so fucking big! Take my pussy, make it yours!" <<showvideo hwatching_jo1>> I don't know when I started, but I became hyper-aware of the fact that I was stroking my cock. I was ready to cum almost immediately. //Yeah, make her cum, buddy. Fuck her hard and make her cum.// Brian has always had my back, ever since college. <<link "Go back to bed">> <<if $w.pov>> <<goto [[Day1_WBNiteStart]]>> <<else>> <<goto [[WBNiteSleep2]]>> <</if>> <</link>>
<<nobr>> <<randompic 1 10 hsleepalone>> <<if $gameDate.getHours() gte 12>> <<set _addtime to ((23 - $gameDate.getHours()) + $alarm) >> <<else>> <<set _addtime to $alarm - $gameDate.getHours()>> <</if>> <<addhours _addtime>> <<run $gameDate.setHours($alarm)>> <<run $gameDate.setMinutes(0)>> <<set $h.tox.drk to 0>> <<set $h.tox.wd to 0>> <<set $w.tox.drk to 0>> <<set $w.tox.wd to 0>> <<if $w.rous gt 100>> <<set $w.sat -= 1>> <</if>> <</nobr>> My alarm clock woke me up. //Yawn! Another day, another dollar. . . // [[Get out of bed|MasterBedroomMain]]\
<<nobr>> <<set _scene to random(1,5)>> <<if _scene is 5 and $w.xr.br.cuk and $gameDate.getHours() gt 19>> <<goto [[TV_WBCuck1]]>> <<else>> [img[images/wb_lrpm1.jpg]] <<addhours 2>> <</if>> <</nobr>> The three of us watched a movie together. It was <<= either("hilarious!","pretty scary!","kinda sexy in a few places.","not very interesting.","pretty mid, to be honest.")>> Afterwards, we all headed to our rooms. [[Continue|LivingRoomMain]]\
<<showvideo wbpk_bath1>> $w.fn and Brian are in the shower together again. //Let's just see if the door might be unlocked. . . . It is!// I very carefully opened the door a little bit, trying desperately not to draw their attention. <<showvideo wbpk_bath2>> I slowly pushed the door slightly more open, until I could see what was happening. //There she is . . . .// I could see my wife's naked body, leaning slightly forward. Her body jerked as she was being pounded vigorously from behind. The sound of wet flesh slapping against wet flesh was barely audible over the deep, sexy moans escaping both of their mouths. //Looks like she's getting dirty, not clean//, I chuckled to myself. //OK, that was possibly one of the cheapest puns I've ever come up with. . . . I really need to work on my material a bit better!// <<nobr>> <<set $h.rous += 20>> <<addminutes 10>> <<set $w.xr.br.x += 1>> <<set _bcum to random(2,5)>> <<set $w.xr.br.cm += _bcum>> <<set $w.rous -= (_bcum * 10)>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 0.5>> [[Back to the Living Room|LivingRoomMain]] <</nobr>>\
<<link [[Get started|Day1_WBNite_FPStart]]>> <<if $w.rous lte 200>><<set $w.rous to 200>><</if>> <<set $SexScene to true>> <<set $w.xr.br.x += 1>> <<set $Partner1Name to "Brian">> <<set $root to "Day1_WBNite_">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to (($w.xr.br.cm + $w.rous) / 100)>> <<set $npcmod to 0.6>> <<set _BCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _BCum>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>>
<<showvideo day1_fpstart>> <<set $w.rous += 20>>\ <div id='sexmenu'><<include [[Day1_WBNite_FPOptions]]>></div>\
<<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ <h3>What do you want to do?</h3> <<if $POVCumPoints lt 50>>\ [[Let him eat your pussy|Day1_WBNite_FPA1]]<br><</if>>\ <<if $NPCCumPoints lt 50 and $POVCumPoints lt 50>>\ [[Give him a blowjob|Day1_WBNite_FPB1]]<br><</if>>\ ''[["Enough foreplay, strip and fuck " + $Partner1Name + "!"|Day1_WBNite_SexStart]]'' <<elseif $POVCumPoints gte 100>>\ <<include [[Day1_WBNite_1Cum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Day1_WBNite_2Cum]]>> <</if>>\
<<randomvideo 1 2 day1_fpa>> \ <<nobr>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Day1_WBNite_FPOptions]]>></div>\
<<randomvideo 1 10 day1_fpb>> \ <<nobr>> <<set $w.rous += 20>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += _cpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Day1_WBNite_FPOptions]]>></div>\
<div id='sexmenu'><<include [[Day1_WBNite_SexOptions]]>></div>\
<<timed 2.5s>><<shakescreen 2s>> <<if passage() is "Day1_WBNite_FPA1">> <<showvideo day1_fpac>> <<elseif passage() is "Day1_WBNite_SexA1">> <<randomvideo 1 2 day1_sac>> <<elseif passage() is "Day1_WBNite_SexB1">> <<randomvideo 1 3 day1_sbc>> <<elseif passage() is "Day1_WBNite_SexC1">> <<randomvideo 1 2 day1_scc>> <</if>> <br><br> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.br.cm += 1>> <<set $povmod to $povmod * 1.1>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 1>> <div id='sexmenu'><<include [[Day1_WBNite_SexOptions]]>></div> <</timed>>
<<showvideo day1_bc1>> <<showvideo day1_bc2>> <<showvideo day1_bc3>> <<showvideo day1_bc4>> <<showvideo day1_bc5>> <<link [[Continue|WBNiteSleep2]]>> <<unset $SexScene>> <<set $Partner1Name to "">> <<set $w.rous += $POVCumPoints>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <<unset $root>> <</link>>\
<<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|Day1_WBNite_SexA1]] [[Doggystyle|Day1_WBNite_SexB1]] [[Cowgirl|Day1_WBNite_SexC1]] <<elseif $POVCumPoints gte 100>>\ <<include [[Day1_WBNite_1Cum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Day1_WBNite_2Cum]]>> <</if>>\
<<nobr>> <<if previous() isnot "Day1_WBNite_SexA1">> <<randomvideo 1 2 day1_sa0>> <br> <</if>> <</nobr>> \ <<randomvideo 1 11 day1_sa>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Day1_WBNite_SexOptions]]>></div>\
<<nobr>> <<if previous() isnot "Day1_WBNite_SexB1">> <<randomvideo 1 3 day1_sb0>> <br> <</if>> <</nobr>> \ <<randomvideo 1 9 day1_sb>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Day1_WBNite_SexOptions]]>></div>\
<<nobr>> <<if previous() isnot "Day1_WBNite_SexC1">> <<showvideo day1_sc0>> <br> <</if>> <</nobr>> \ <<randomvideo 1 4 day1_sc>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Day1_WBNite_SexOptions]]>></div>\
As I approached the Living Room, I could see that $w.fn was taking advantage of my absence to flirt with Brian a bit. //"Flirt" might be a bit of an understatement . . . .// <<randomvideo 1 2 wbalonelr>> $w.fn was clearly very aroused. She sat cross-legged on the floor, slowly touching her pussy under Brian's watchful eye. She squirmed and quietly moaned as her actions apparently sent a jolt of excitement and electricity through her body. //No shame whatsoever . . . .// <<randomvideo 3 4 wbalonelr>> Though I couldn't hear them speaking, it seemed as if they were saying something to each other. Whatever it was, Brian must have heard something he liked. He leaned forward and gently put his hand on hers, guiding it as she explored her body. The extra attention Brian was giving her made scene even more erotic than it had been. She ceded control over her self-pleasure to him. She allowed him to lead, she was willing to follow. <<showvideo wbalonelr5>> And then . . . he pulled her fingers out of her . . . and brought them to his lips . . . and tasted them . . . . //Fuck! OK, even I have to admit that that was fucking hot!// With that relatively simple gesture, I found myself in the awkward position of my cock being rock-hard while watching my wife enjoy the touch of another man. I secretly hoped that they would go further. I longed to pull my cock out and stroke it while they did whatever they wanted right there on the Living Room floor. <<randomvideo 6 7 wbalonelr>> From here, I kinda lost track of what was happening. I know that Brian took over and started to play with $w.fn's pussy himself. I know that they were kissing passionately. I'm not entirely sure how long they were going at it. I'm not entirely sure how long I watched them. I do know that at some point I decided to just leave them alone and stayed in the other room for a little while, until I could compose myself. <<nobr>> <<set $w.rous += 20>> <<set $w.pref.ex += 0.25>> <<set $w.xr.br.x += 0.25>> <<set $w.xr.br.cm += random(1,3)>> <<link "Continue" $staypassage>> <<unset $staypassage>> <<addminutes 10>> <</link>> <</nobr>>\
<<nobr>> <<randompic 1 10 hsleepalone>> <<if $gameDate.getHours() gte 12>> <<set _addtime to ((23 - $gameDate.getHours()) + $alarm) >> <<else>> <<set _addtime to $alarm - $gameDate.getHours()>> <</if>> <<addhours _addtime>> <<run $gameDate.setHours($alarm)>> <<run $gameDate.setMinutes(0)>> <<set $h.tox.drk to 0>> <<set $h.tox.wd to 0>> <<set $w.tox.drk to 0>> <<set $w.tox.wd to 0>> <<if $w.rous gt 100>> <<set $w.sat -= 1>> <</if>> <</nobr>> My alarm clock woke me up. //Yawn! Another day, another dollar . . . .// [[Get out of bed|MasterBedroomMain]]
<<set _hsleep to Math.clamp(($w.rous * ($w.sat / 100)),0,250)>> <<set _bsleep to Math.clamp(($w.rous * ($w.xr.br.cm / 100)),0,250)>> <<set _hsleep to _hsleep * (random(0,100)/100)>> <<set _bsleep to _bsleep * (random($w.pref.bk,100)/100)>> <<if _bsleep gte _hsleep>> <<set $w.xr.br.evt.slp to true>> <<set $w.loc to 3>> <<randompic 1 7 wbnitech>><br><br> "Hey, honey," $w.fn said. She was wearing a very sexy little number.<br><br> "Hey . . . something on your mind?" I asked her. //You can't call //me// imperceptive.//<br><br> "Yeah, so I was thinking that I am going to sleep in the Guest Room with Brian again tonight . . . ."<br><br> "Oh really? I thought it might be nice for us to spend some 'alone-time' together tonight . . . ."<br><br> "Well, you know, he's still kinda hurt over what happened with Shay. It just seems nice to help him feel better for the next couple of days. We'll have plenty of 'alone-time' next week and for the rest of our lives!"<br><br> I sighed in resignation. "I guess I can't really argue with that. He's really not doing great with this break-up. It //is// really kind of you to go out of your way to help him. . . . Ok, that's fine, baby! Give me a kiss and I'll see you in the morning."<br><br> [img[images/bwnitechk.jpg]]<br><br> She did as I asked. Her kiss was still passionate----//I know she still loves me!//----but then she turned and walked out of the room.<br><br> //Well, this is what I asked for . . . . I can't blame her for taking advantage of my offer. I just hope that this will all turn out ok//, I thought. //At least Brian will only be here for a few more nights, and then we can get back to normal. Well, at least as far as our home life is concerned anyway.//<br><br> [[Continue|MasterBedroomMain]]\ <<else>> <<set $w.xr.br.evt.slp to false>> <<set $w.loc to 1>> <<set $w.xr.h.day.t.bch to true>> <<goto [[MasterBedroomMain]]>> <</if>>\
<div class="research">''Top 7 Signs Your Woman is Cheating'' How do you know if your wife or girlfriend is cheating? Usually, if you’re asking this question, you already suspect that she might be hiding something, or at the very least that something is wrong with your relationship. Though every relationship is different, there are some common signs that you can look for. ''1. Unexplained expenses.'' Any money missing from your account that is un-//account//-ed for? Receipts for lunches you didn't eat or hotels you didn't stay in? These may be things she is doing with some new interest. ''2. Secretive phone or computer use.'' There are lots of ways for people to connect in this day and age. Computers and phones are the two most important means of communication. Whether texting, using social media, email, or anything else, your partner will use either a computer or a phone. If she looks like she's hiding something, she probably is. This includes things like locked phones, secret email addresses, etc. ''3. Periods where your significant other is unreachable.'' She probably has her phone with her at all times, so why wouldn't she answer if you call or text? Every once in a while, sure, but it could be a sign of cheating if this suddenly becomes a common occurrence. ''4. Improving her appearance.'' You know your partner. You know the style of her clothes and makeup, her hair. Women don't usually make major changes without a reason. If she changes her appearance suddenly, it could be that she is trying to catch someone else's eye----or maybe she already has! ''6. Significantly less, or more, or different sex in your relationship.'' Your sex life of course has its ebbs and flows over time. Stress, complacency, or other issues in your lives can cause slwo, gradual changes to the frequency of your love life. You won't notice them until one day you wake up and realize that things aren't how they used to be. On the other hand, a major change one day----quickly, not gradually----could indicate that something else is changing in her sex life, something that might be a sign she has someone else. ''7. When you ask about cheating, your partner deflects and avoids.'' This is the biggest sign. If you ask her directly, there is no reason for her to lie unless she is cheating. To avoid lying, she may try to avoid answering the question. This can be a sign in and of itself. </div> //Hmmm . . . I don't know whether some of this sounds right. But I should probably keep an eye out for any of these signs, just to be on the safe side.// [[Do something else|GR_LaptopBase]]
<<link "Go home" $nextpassage>><<unset $nextpassage>><</link>>
<div id='sexmenu'><<include [[Std1_WHBR_CP_FPOptions]]>></div>\
<<if not $w.xr.h.t.n1>><<set $NPCCumPoints to Math.clamp($NPCCumPoints,0,99)>><</if>>\ <<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ !!!What do you want to do? [["Eat " + $w.fn + "'s pussy"|Std1_WHBR_CP_FPB1]] <<if $POVCumPoints lte 60>>[["Ask " + $w.fn + " to give you a blowjob"|Std1_WHBR_CP_FPD1]]<br><</if>>\ <<nobr>> <<set _fuck to random(1,3)>> <<if $NPCCumPoints lte 75 and (_fuck lte 2 or not $w.xr.h.day.cmdy)>> [['Enough foreplay, fuck ' + $w.fn + '!'|Std1_WHBR_CP_MoreFP]] <<else>> [['Enough foreplay, fuck ' + $w.fn + '!'|Std1_WHBR_CP_SexStart]] <</if>> <</nobr>> <<elseif $NPCCumPoints gte 100>> <<include [[Std1_WHBR_CP_WCum1]]>> <<elseif $POVCumPoints gte 100>> <<include [[Std1_WHBR_CP_HCum1]]>> <</if>>\
/* eating */\ <<randomvideo 1 6 std1fpb>> \ <<nobr>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Std1_WHBR_CP_FPOptions]]>></div>\
/* blowjob */\ <<randomvideo 1 4 std1fpd>> \ <<nobr>> <<set $w.rous += 10>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += _cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <</nobr>>\ <div id='sexmenu'><<include [[Std1_WHBR_CP_FPOptions]]>></div>\
<div id='sexmenu'><<include [[Std1_WHBR_CP_SexOptions]]>></div>\
<<nobr>> <<set _psg to passage()>> <<if $gameDate.getHours() gte 22 or $gameDate.getHours() lte 5>> <<set _ltxt to "Go to sleep">> <<set _llnk to "BR_Sleep">> <<else>> <<set _ltxt to "Get cleaned up">> <<set _llnk to "BathroomMain">> <</if>> <</nobr>>\ <<if _psg.substring(0,16) is "Std1_WHBR_CP_Sex">>\ "I can't hold on any more, baby! I'm gonna cum!" "Pull out! Don't come inside me!" $w.fn insisted. I did as she asked, with hardly any time to spare. <<randomvideo 1 2 std1hc>> I pulled out and came right on $w.fn's pussy. <<showvideo std1hc3>> //Damn! That's so fucking sexy!// I already worshipped her pussy, but somehow seeing it so sloppy and nasty, covered in cum, just made it even prettier. "Well, look at what you went and did, Mr. $h.ln. This pretty little pussy is just so dirty now, isn't she?" It would seem that $w.fn was thinking the same thing that I was. <<nobr>> <<if $w.xr.h.day.cmdy or $w.sat gte 70>> "I'm gonna go get cleaned up," she continued.<<if $gameDate.getHours() gte 22>> "And then we can get a good night's sleep."<</if>><br><br> She got up and walked out of the Bedroom ---- I guess, going to the Bathroom to wash my cum off<<if $gameDate.getHours() gte 22>> ---- as my eyes started to close into my post-orgasmic slumber<</if>>.<br><br> <<link _ltxt _llnk>> <<unset $SexScene>> <<set $Partner1Name to "">> <<set $h.rous -= 30>> <<set $w.rous += ($NPCCumPoints * 0.2)>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<addhours 1>> <</link>> <<else>> <<include [[Std1_WHBR_CP_WNoCum]]>> <</if>> <</nobr>> <<else>>\ "I can't hold on any more, baby! I'm gonna cum!" <<showvideo wfacial3>> $w.fn pulled my cock out of her mouth, but didn't move out of the way before I started cumming. Almost as if it were instinctual, she opened her mouth and stuck out her tongue. My cream shot out all over her face and into her waiting mouth. <<if $w.xr.h.day.cmdy or $w.sat gte 70>>\ "Mmmm . . . yeah, feed me that cum, baby! I love the feeling of it on my skin, makes me feel so naughty and beautiful." //Damn, I really love when she plays the "dirty wife" role. She is so sexy!// "Oh my God, baby, thank you," I said. "That felt so good!" "It was my pleasure. I love sucking your cock . . ." //I love this woman.// <<link _ltxt _llnk>> <<unset $SexScene>> <<set $Partner1Name to "">> <<set $h.rous -= 30>> <<set $w.rous += ($NPCCumPoints * 0.2)>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<addhours 1>> <</link>> <<else>>\ Finally, once I had finished emptying onto her, $w.fn broke the silence. "What the fuck, asshole?! You just cum on my face, without even asking, without even attempting to satisfy //me//?!?" //I guess that was kind of a dick move//, I thought. "I'm sorry, baby. I guess I wasn't thinking clearly." "What the fuck ever. I'm gonna go wash my face.<<if $gameDate.getHours() gte 22>> Go to sleep.<</if>>" <<link _ltxt _llnk>> <<set $w.rsp -= 0.5>> <<unset $SexScene>> <<set $Partner1Name to "">> <<set $h.rous -= 30>> <<set $w.rous += ($NPCCumPoints * 0.2)>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<addhours 1>> <</link>> <</if>>\ <</if>>\ <<nobr>> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <<unset $root>> <</nobr>>\
<<nobr>> <<timed 2s>><<shakescreen 2s>> <<set $NPCCumPoints to 0>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $npcmod to $npcmod * 1.25>> <<set $w.xr.h.cm += 1>> <<set $w.xr.h.day.cmdy to true>> "Oh, God, $h.fn! I'm cumming, I'm cumming! I love so much baby, thank you!"<br><br> <div id='sexmenu'><<include [[Std1_WHBR_CP_FPOptions]]>></div> <</timed>><</nobr>>\
I silently watched for a few minutes while $w.fn and Brian worked in the kitchen, preparing dinner and shamelessly flirting. They were so engrossed in what they were doing, I am sure they didn't notice my presence. Locked within my own thoughts, I didn't notice that time continued to pass. I suddenly realized that they had lost some of their clothing and $w.fn was on her knees in front of Brian. <<nobr>> <<set _scene to random(1,6)>> <<if _scene is 6>> <<set _scene to random(7,8)>> <<if _scene is 7>> <<showvideo wbkbja1>> <<elseif _scene is 8>> <<randomvideo 1 2 wbkbjb>> <</if>> <<else>> <<randomvideo 1 9 wbkbj>> <</if>> <<set $w.rous += 20>> <</nobr>> //I guess $w.fn couldn't wait to eat//, the joke popped into my head before I could stop it. //Jesus! What am I thinking? Why has it been so easy to get so casual about this?// <<nobr>> <<if _scene is 7 or _scene is 8>> <<if _scene is 7>> <<randomvideo 1 2 wbkfa>> <<elseif _scene is 8>> <<randomvideo 1 3 wbkfb>> <</if>><br><br> Again, looking without //seeing//, time continued to pass quickly and yet stand still. Things progressed further, and soon Brian and $w.fn were fucking . . . //hard// . . . right in the kitchen. //MY// kitchen . . . . My cock had swollen uncontrollably at the sight, the sounds, the //smell//. I resisted the strong urge to pull it out and jerk off right then and there.<br><br> In between loud, animalistic moans, $w.fn noticed me and said in my direction, "Dinner's gonna be a few more minutes. Would you mind waiting in the Living Room?"<br><br> <<set $w.xr.br.cm += random(1,5)>> <<set $w.rous -= (random(1,3) * 20)>> <<if $w.rous lte 0>><<set $w.rous to random(0,50)>><</if>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 0.5>> <</if>> <<link [[Wait in the Living Room|LivingRoomMain]]>> <<run $gameDate.setHours(18)>> <<run $gameDate.setMinutes(0)>> <<set $w.xr.br.x += 1>> <<set $h.pref.cuk += 1>> <</link>> <</nobr>>\
<div id="door">[img[images/dooropen.jpg]]</div> <<nobr>> <<timed 2s>> <<set _img to random(1,6)>> <<replace "#door">> <<if _img lte 2>> <<randompic 1 2 wshower>> <<else>> <<randomvideo 3 6 wshower>> <</if>> <</replace>> <<replace "#pagetext">> //Fuck! She is so sexy!//<br><br> <<link [[Back to the Living Room|LivingRoomMain]]>> <<set $h.rous += 10>> <<addminutes 5>> <</link>> <</replace>> <</timed>> <</nobr>>\ <div id="pagetext"></div>\
<<if $h.tox.drk lte 8>> <h3>What do you want to do?</h3> <<if $Bank gte 10>> [[Have a drink|DBDrinkingBase]] <br> <<else>> //I don't have enough money to drink right now.// <br> <</if>> <<else>> [img[images/hbtoodrunk.jpg]]<br> <p>//Ooohhh . . . I think I drank a bit too much . . . I should probably pay my tab and go home . . .//</p> <p>I motioned to <<if $h.xr.crys.rel is 0>>the bartender<<else>>Crystal<</if>> for my check. Leaving what I think was a decent tip----though I can't be sure because I was in no shape for math----I paid for my drinks and got up to leave.</p> <</if>> <h3>Where do you want to go?</h3> [[Leave|HomeStreetMain][$h.evt.db.vis += 1]]
<<nobr>> <<randomvideo 1 4 hcrysf>> <<addminutes 30>> <<set $h.tox.drk += 1>> <<set $h.xr.crys.rel += 1.5>> <</nobr>>\ "Beautiful night tonight, isn't it?" I asked Crystal as she poured me a drink and started two others. She smiled at me and winked, even though she was pretty busy. "Maybe it just looks beautiful from where I'm sitting," I added flirtatiously. "You'ah some kind o' smooth talkah, huh?" Crystal responded in a faux New Jersey accent, sending me another wink and smile. "Not really that smooth, just telling the truth," I said as she placed my glass on a cardboard coaster in front of me. //Cringe! I hate hearing myself talk!// <<include [[DiveBarOptions]]>>\
<<nobr>> <<randompic 1 4 hwklunch>> <<set $w.xr.h.day.tdy += 1>> <</nobr>> <<link [[Continue|KitchenMain]]>> <<if $gameDate.getHours() is 12>> <<run $gameDate.setHours(13)>> <<run $gameDate.setMinutes(0)>> <</if>> <<addminutes 20>> <</link>>
<<set _scene to random(1,4)>>\ <<if _scene is 3>>\ <<randompic 1 7 wbrhot>> "Hey, sexy," $w.fn called to me as I entered the room. //Oh! Looks like someone is feeling frisky tonight!// "Sooo," she continued. "Do you want to fool around?" <<link [[Follow her lead|Std1_WHBR_CP_FPStart]]>> <<set $w.rous += 30>> <<set $SexScene to true>> <<set $Partner1Name to $w.fn>> <<set $root to "Std1_WHBR_CP_">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to Math.clamp($h.rous / 100,0,3)>> <<if $povmod is 0>><<set $povmod += 0.2>><</if>> <<set $npcmod to (($w.hap / 100) * ($w.rous / 100) * ($w.sat / 100))>> <<if $npcmod is 0>><<set $npcmod += 0.2>><</if>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<set _HCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _HCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>> [[Just go to sleep|BR_Sleep]] \ <<else>>\ <<include [[BR_WithWifeBase]]>> <</if>>\
<<randomvideo 5 7 e1wb_lrmw>> Out of the corner of my eye, I could see $w.fn rubbing Brian's cock through the front of his pants. //She really can't seem to get enough of it!// I mused. <<showvideo tvwbcuk1>> I couldn't quite make out what they were saying, but I could hear them whispering while I tried to pay attention to the movie. Next thing I knew, $w.fn leaned over to me and grabbed my hand. "I'm gonna fool around with Brian, ok?" she informed me. I looked over and realized that his dick had been uncovered, no doubt by my wife. <<randomvideo 2 3 tvwbcuk>> With one hand she held mine, lovingly. With the other, she stroked Brian's cock, lustily. //She is such a beautiful, sexy woman//, I thought. <<showvideo tvwbcuk4>> She soon began to shed clothing, finding herself topless before I even realized what happened. And yet she still seemed to want to include me, placing my hand on her thigh as she turned toward Brian. This plan was soon abandoned, however. I think she forgot about my presence around the time that she took Brian into her mouth. <<randomvideo 5 7 tvwbcuk>> I completely forgot about the movie playing in the background----as did, I am sure, Brian and $w.fn. Instead, I watched with growing arousal how my wife sloppily drooled all over my best friend's hard cock as her head bobbed up and down in an attempt to please him. [[Continue|TV_WBCuck2][$h.rous += 20]]\
[[Wait for my drink|DB_Drink]] [[Look around the bar|DB_LookAround]] <<if $h.xr.crys.rel lt 1>>[[Chat with the bartender|DB_Talk]]<<else>>[[Chat with Crystal|DB_Talk]]<</if>> <<if $h.xr.crys.rel gt 3 and $h.evt.db.vis gt 3>>[[Flirt with Crystal|DB_Flirt]]<br><</if>>\
<<nobr>> <<randompic 1 8 hbardrink>> <<addminutes 30>> <<set $h.tox.drk += 1>> <</nobr>> <<include [[DiveBarOptions]]>>
<<addminutes 30>> <<set $h.tox.drk += 1>> <<set _scene to random(4)>> <<if _scene lte 2>> <<randompic 1 4 dbgp>><br><br> //Lots of people having fun tonight!// <<elseif _scene is 3>> <<randompic 1 3 hbarw>><br><br> //Oh! She is //gorgeous//! Just a little more liquid courage . . . that's all I need!// <<else>> <<randompic 1 4 hbarwa>><br><br> //Wow! Why are such beautiful women wandering into this piece of shit hole in the wall dive? Well, I will not miss my opportunity to admire them before they realize they should probably leave and never return!// <</if>><br><br> <<include [[DiveBarOptions]]>>
<<nobr>> [img[images/hw_kfight1.jpg]] <<set $w.rsp -= 1>> <</nobr>> "Hey, sexy lady!" The words slurred out of my mouth. $w.fn did not look amused. "What the fuck, $h.fn!! Are you seriously coming to dinner drunk? You don't think I would have liked to have a couple of drinks?! I didn't get to have a couple of drinks, though, because I <<if $gameDate.getHours() is 17>>have<<else>>had<</if>> to be in here cooking dinner for your disrespectful ass!" <<nobr>> <<if $gameDate.getHours() is 17>> "You know what? Go wait in the Living Room for me to finish. I don't want to see you until we're ready to eat."<br><br> "OK . . . I'm sorry, baby . . . ." I weakly apologized.<br><br> //Ouch! Maybe I should have had fewer drinks . . . .//<br><br> <<link [[Wait in the Living Room|LivingRoomMain]]>> <<run $gameDate.setHours(18)>> <<run $gameDate.setMinutes(0)>> <</link>> <<elseif $gameDate.getHours() is 18>> "You know what? Fix yourself a plate and sit down. Just don't fucking talk to me. I'm not in the mood for your shit now."<br><br> "OK . . . I'm sorry, baby . . . ." I weakly apologized.<br><br> //Ouch! Maybe I should have had fewer drinks . . . .//<br><br> <<randompic 1 7 dinner>><br><br> I did as she asked and we ate dinner in silence. The tension hung heavy in the air the entire time.<br><br> Finally, just before we finished eating, $w.fn broke the silence. "You know, the reason that I got so angry isn't because you had a couple of drinks . . . . It's that you went somewhere and got a little tipsy by yourself and didn't think to invite me. This lack of engagement is a big reason why we are having some of the issues we're having."<br><br> Without waiting for me to respond, she stood up and walked away from the table.<br><br> <<link [[Finish eating|KitchenMain]]>> <<run $gameDate.setHours(19)>> <<run $gameDate.setMinutes(0)>> <</link>> <<elseif $gameDate.getHours() is 19>> "You know what? You can do these fucking dishes. I'm gonna go take a shower. I don't care what you eat. There's leftovers here, or you can eat a big bag of dicks as far as I'm concerned. Fuck right off."<br><br> "OK . . . I'm sorry, baby . . . ." I weakly apologized as she left the room.<br><br> //Ouch! Maybe I should have had fewer drinks . . . .//<br><br> <<randompic 1 3 hdishes>><br><br> Not wanting to press my luck, I did as $w.fn asked and finished cleaning up the kitchen.<br><br> <<link [[Finish the dishes|KitchenMain]]>> <<run $gameDate.setHours(20)>> <<run $gameDate.setMinutes(0)>> <</link>> <</if>> <</nobr>>\
Figure out a way to trigger path: - Faithful (both) - H Faithful / W Cheating - H Cheating / W Faithful ---> Caught ---> H Any / W Cheating - HW Open ---> H fails / W Slut & Humiliates - HW Swinger ---> slower build to sharing/sex - H Faithful Cuck -------------- Figure out different ways to trigger "Meanwhile" - Perhaps event-specific -------------- Event Strings 1. Brian - First Night - CHANGE INITIAL TIMING/TEXT TRIGGER - invite / bar - done - talk to wife - done - drinking / games - INSERT MINI-GAME(S) ?? - fashion show / strip-tease - done - options - h fucks w - W HAPPY/SATISFIED - w chooses b - h wants w to fuck b - NOT DONE - IF FS NOT FINISHED: - IF AGREE TO OPEN RELATIONSHIP BEFORE FIRST NIGHT - "Day 1" - CONVERSATION W/ BRIAN - OPTIONS: - ONE TIME ONLY - AS MUCH AS YOU WANT - - IF NO SEX FIRST NIGHT: - W WALK IN ON BRIAN? - THROUGH THE WEEK - W CHOOSES WHERE TO SLEEP EACH NIGHT - HOUSE HUNTING - 2. Work - Beth - HUSBAND PATH (CHEATING) - MAY BRANCH INTO HUSBAND CUCK PATH W/ BLACK COWORKER - OFFICE PARTY ---> WILL HAPPEN ON A SATURDAY - ** WIFE CHEATING PATH ** - INVITE WEDS (IN PERSON) OR THURS (EMAIL)? - USE CHRISTIAN CLAY AS BOSS - BOSS WILL LEAVE WORK EARLY TO FUCK WIFE - SEND TEXT W/O FACE TO HUSBAND - ESTABLISH THAT BOSS IS WIDOWER / "PLAYER" 3. WIFE EVENTS - FINISH LUNCH DATE (COFFEE SHOP)
- Q: Should we track Energy at all? - write "ask about your day" texts - check time passing at DB when drinking>chat - fix error with w visit during telework - is "watching tv" cp hw stats correct if both cum at same time? - first night wb - fix round #s - fix brian paths so that only one cheat/cuck/share can be true - remove "Meanwhile" from video games (or figure out how to do it better) - style "incoming" call/text button in left side bar MEANWHILE SCENES (STANDARD) - Bedroom - missing? - Kitchen - missing? - Balcony - Create a series for ++ $w.pref.ex - Outside - Set <<if>> conditionals for location options - Laundry room - Do something with this? Meet someone in the building? (Bobby?) - Park - Yoga scene - Progression - Living room - missing? - LAPTOP - RESEARCH - SHOP - VACATION PACKAGE - VIDEOS - STUPIDT - SMART - PORN - STRAIGHT - GROUP
<<nobr>> <<set $h.xr.w.lwtr += 1>> <<randompic 1 4 lwtra>> <<addminutes 20>> <<if $w.xr.h.rel.m>><<set $w.xr.h.day.tdy -= 2>><</if>> <</nobr>> //Mmmm . . . nice ass. Wouldn't mind seeing more of her . . . .// <<randompic 4 7 hwcs_lunch>> <<if not $w.xr.h.rel.opn>>\ <<if $h.xr.w.lwtr lte 1>>\ $w.fn and I ate our lunch relatively quickly. She didn't say much, appearing to be deep in thought or maybe annoyed about something. //I hope nothing is wrong!//\ <<elseif $h.xr.w.lwtr is 2>>\ "Enjoying the view?" $w.fn asked me. "Huh? What do you mean?" I feigned ignorance. //Shit! Busted! I should be more careful!// $w.fn and I finished our lunch relatively quickly. She didn't say much, appearing to be deep in thought or maybe annoyed about something.\ <<else>>\ "Just can't help yourself, can you?" $w.fn asked me. "Huh? What do you mean?" I feigned ignorance. //Shit! Busted! I should be more careful!// $w.fn and I finished our lunch relatively quickly. She didn't say much, appearing to be deep in thought or maybe annoyed about something.\ <</if>>\ <<else>>\ <<if $h.xr.w.lwtr lte 2>>\ "Enjoying the view?" $w.fn asked me. "Huh? What do you mean?" I feigned ignorance. //Shit! Busted! I should be more careful!// "It's OK. You're allowed to look. So what do you think? She's got kind of a tight ass, doesn't she?" "Umm . . . I guess . . . ." I wasn't sure how to respond to her. This was all so new, such a new version of $w.fn. <</if>>\ <</if>> <<include [[WH_LunchDateBEnd]]>>\
<<nobr>> <<randompic 4 7 hwcs_lunch>> <<addminutes 30>> <</nobr>> $w.fn and I took our time eating our lunch. While we ate, we talked about <<= either("some mindless celebrity gossip","a political issue that has been in the news lately","a new movie we both wanted to see","this 'n that","the progress of her novel","how great it was to get back to normal now that the pandemic had ended")>>. It felt good to just spend time with each other without worrying about our relationship. //This was fun! We should try to do this more often . . . .// <<include [[WH_LunchDateBEnd]]>>\
<div class="research">''How to Spice Up Your Sex Life'' So, your wife isn't satisfied with your sex life? Has she been faking orgasms for years? Or maybe she stopped faking and just openly expresses her dissatisfaction with you? Here are a few things you can do to spice things up and better satisfy her! ''1. Turn up the Romance.'' Do little things for your significant other. Buy her flowers, help with dinner (cooking and clean-up), talk to her about how //her// day went, and spend some quality time with her. Romance sets the foundation for all other sexual activities. ''2. Remind her that she's sexy.'' You are attracted to your wife, and you want to please her. Otherwise, you wouldn't be reading this article. Tell her how sexy she is, as often as possible. Buy her sexy new clothes. Let her dress more revealing. But most importantly, you have to really believe it. If you're insincere, she won't believe you. ''3. Show her off.'' Take her out in her sexiest clothes. Remind her that every guy wants her, and how proud you are that she is yours. You can even take this a bit further: engage in a bit of healthy PDA (public displays of affection). If you're feeling especially frisky, find somewhere with a closing door or even just a dark corner, and take it all the way! The risk of getting caught can heighten the excitement exponentially! ''4. Try adding accessories to play-time.'' If you can't do it by yourself, use tools built for the job. Buy your wife some sex toys that are designed for her pleasure. And don't be ashamed! If we could dig our own holes, we wouldn't need shovels . . . The same applies to any task that we just may not be physically adept at completing. Including satisfying our wives. ''5. Add some extra ingredients.'' Make your wife cum with a little help from your friends! Or strangers, for that matter. As long as your relationship is strong enough outside of the bedroom, it won't suffer from adding another partner or two. This could be as simple as the occasional threesome or as freeing as a full-blown open relationship. You can let her play around by herself as a "hotwife" or play together swinging or swapping with another couple. Maybe you learn a little bit more about what you like—have you ever gotten turned on thinking about watching your wife getting fucked by her ex? Maybe you're a cuckold! No matter what you decide, make sure that both of you are on board with the decision. Women are sexual creatures. It's your responsibility as a man to make them happy and keep them satisfied, just as it's their responsibility to do the same for you. These tips will ensure that your sexual shortcomings don't stand in the way of a fulfilling, loving relationship with your wife!</div> //Hmmm . . . there's a few things to think about here . . . Maybe I should do some more research . . .// <<nobr>> <<addminutes 20>> [[Do something else|GR_LaptopBase]] <</nobr>>
<<set $h.rous += 20>> <<addminutes 20>> <br><br> <<if $w.loc is 3>> <<if $w.hap gte 70>> I guess I hadn't noticed that $w.fn was cleaning behind me. At least I didn't notice it until I felt her breath on the back of my neck and her hand reach toward my crotch. She gingerly revealed my hard dick and began to slowly stroke it.<br><br> "So you like to watch <<if $watch is 0>> that couple fucking like that, huh? Will you fuck //me// like that later?" <<unset $watch>> <<elseif $watch is 1>> two girls getting each other off, huh? You think that's hot? Maybe a girl could make me cum?" <<set $w.pref.bi += 1>> <<unset $watch>> <<elseif $watch is 2>> that guy fuck that little girl with his giant cock, huh? Look at how much she seems to desire him. Do you think she could even feel an average-sized dick like yours after he stretches her pussy out?" <<set $w.pref.bk += 1>> <<set $w.pref.sq += 1>> <<unset $watch>> <<elseif $watch is 3>> all those people having fun together, huh? Looks like a hell of a party to me! Maybe we should see if we can do something like that?" <<set $h.pref.swg += 1>> <<set $w.pref.swg += 1>> <<unset $watch>> <<elseif $watch is 4>> someone's wife getting fucked by someone else, huh? Do you want to see //me// get fucked by someone else?" <<set $h.pref.cuk += 1>> <<unset $watch>> <</if>> she asked me.<br><br> <<randomvideo 1 2 wguestjo>><br><br> Her words were like a shot of nitro to my cock. That and the fast pace with which she stroked it pushed me to a level of arousal I didn't expect when I sat down at my desk.<br><br> //I probably should have looked behind me before turning on the porn . . . but who would complain about //this// outcome?// I smiled internally.<br><br> I focused my attention on the video playing on my computer while $w.fn held her face close to my ear, moaning at just the right moments. Her soft, feminine hand felt amazing on my cock. She controlled my climax with the skill that only someone who loves you could ever accomplish.<br><br> <<showvideo wguestjo3>><br> "Come now," she whispered.<br><br> I don't know how she did it, but that was all it took. I immediately came all over my desk. The orgasm was one of the most intense in recent memory.<br><br> "OK, now get out of here. I was cleaning." I quickly closed my browser and put my now-flacid dick back in my pants. She smiled and winked as she added, "Don't worry . . . I'll take care of the mess you made on the desk, too."<br><br> <<set $w.rous += 20>> <<set $h.rous -= 20>> [[Head out|LivingRoomMain]] <<else>> "You have //got// to be kidding me!?"<br><br> <<randompic 1 2 wguestnop>><br><br> //Fuck! I didn't notice $w.fn cleaning up behind me!//<br><br> "Maybe if you didn't come in here to jerk off when you thought I wasn't around, you could fuck me properly!"<br><br> //Ouch! That hurt . . .//<br><br> "Sorry, honey." I quickly left the room with my tail between my legs. //I might want to make it up to her later, if I can.//<br><br> <<set $w.xr.h.day.tdy -= 1>> <<set $w.rsp -= 0.5>> [[Head out|LivingRoomMain]] <</if>> <<else>> <<if $h.rous gte 100>>[[Jerk off|GRLaptopHJO]]<br><</if>> [[Do something else|GR_LaptopBase]]<br> <</if>>
<div id="door">[img[images/dooropen.jpg]]</div> <<nobr>> <<timed 2s>> <<replace "#pagetext">> //Hmmm. . . the door's locked. Guess she wants a little privacy . . . .//<br><br> <<link "Never mind. . . ">> <<if $w.pov>> <<set $nextpassage to "LivingRoomMain">> <<goto [[MW_BathWB_Locked]]>> <<else>> <<set _bcum to random(2,5)>> <<set $w.xr.br.cm += _bcum>> <<set $w.pref.bk += _bcum>> <<set $w.xr.br.x += 1>> <<set $h.pref.cuk += 1>> <<set $w.rous -= (_bcum * 15)>> <<set $w.rous to Math.clamp($w.rous,0,1000)>> <<addminutes 10>> <<goto [[LivingRoomMain]]>> <</if>> <</link>> <</replace>> <</timed>> <</nobr>>\ <div id="pagetext"></div>\
<h1>Meanwhile . . .</h1> <<timed 2.25s>> <<set _scene to random(1,3)>> <<if _scene is 1>> <<randomvideo 1 3 wbsha>><br><br> <<randomvideo 4 9 wbsha>><br><br> <<elseif _scene is 2>> <<randomvideo 1 4 wbshb>><br><br> <<randomvideo 5 15 wbshb>><br><br> <<elseif _scene is 3>> <<randomvideo 1 6 wbshc>><br><br> <<randomvideo 7 10 wbshc>><br><br> <<showvideo wbshc11>><br><br> <</if>> <<set $w.xr.br.x += 1>> <<set _bcum to random(2,5)>> <<set $w.xr.br.cm += _bcum>> <<set $w.rous -= (_bcum * 10)>> <<addminutes 10>> [[Continue|LivingRoomMain]] <</timed>>\
"Uh-uh, baby. Slow down. Eat my pussy just a little bit longer." I admit, I was trying to rush cock-first into her pussy. Perhaps I wasn't thinking about her pleasure as much as I was thinking about my own. "OK, hon. Sorry, I'm happy to keep doing it." I turned my attention back to her erogenous zones for a little while longer, and tried my best to get make her happy. <div id='sexmenu'><<include [[Std1_WHBR_CP_FPOptions]]>></div>\
<<if not $w.xr.h.t.n1>><<set $NPCCumPoints to Math.clamp($NPCCumPoints,0,99)>><</if>>\ <<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|Std1_WHBR_CP_SexA1]] [[Doggystyle|Std1_WHBR_CP_SexB1]] [[Side fuck|Std1_WHBR_CP_SexC1]] [[Reverse cowgirl|Std1_WHBR_CP_SexD1]] <<elseif $NPCCumPoints gte 100>>\ <<include [[Std1_WHBR_CP_WCum2]]>> <<elseif $POVCumPoints gte 100>>\ <<include [[Std1_WHBR_CP_HCum1]]>> <</if>>\
/* Missionary */\ <<randomvideo 1 11 std1sa>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Std1_WHBR_CP_SexOptions]]>></div>\
/* Doggystyle */\ <<randomvideo 1 8 std1sb>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Std1_WHBR_CP_SexOptions]]>></div>\
/* Side fuck */\ <<randomvideo 1 5 std1sc>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to random(5,20)>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Std1_WHBR_CP_SexOptions]]>></div>\
/* Reverse cowgirl */\ <<randomvideo 1 6 std1sd>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Std1_WHBR_CP_SexOptions]]>></div>\
<<nobr>> <<timed 2s>><<shakescreen 2s>> <<set $NPCCumPoints to 0>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $npcmod to $npcmod * 1.1>> <<set $w.xr.h.day.cmdy to true>> <<set $w.xr.h.cm += 1>> <div id='sexmenu'><<include [[Std1_WHBR_CP_SexOptions]]>></div> <</timed>><</nobr>>\
<<nobr>> <<randompic 3 4 datecar>> <<set _scn to random(9)>> <</nobr>> We had had such a great time at dinner. Now we couldn't wait to get home. The whole ride home, we were all over each other. <<randompic 1 2 ddate1home>> "Come here, handsome," $w.fn said as soon as we walked in the door. She threw her arms around my neck and pulled me close. "Oh yeah, babe. You've been driving me crazy all night," I told her. We didn't waste a single second. Immediately, we jumped at each other. Making out and tearing each other out of our clothing. It wasn't long before $w.fn was down to just her lingerie. [img[images/ddate1home3.jpg]] "Thank you for tonight," she breathed. "No matter how different things may be, it's really wonderful knowing how much we still love each other." "I love you so much," I agreed. <<if $w.rous lte 60 or $h.rous lte 60 or _scn lte 3>>\ <<link [[Continue|MasterBedroomMain]]>> <<set $w.xr.h.day.tdy += 10>> <<set $w.rous += 30>> <<set $h.rous += 30>> <<set $w.rsp += 0.5>> <</link>> <<else>>\ "Let's go to the bedroom." <<randomvideo 4 7 ddate1home>> I watched as $w.fn strode over to the hallway, teasing me. //Good lord, she is beautiful//, I thought. "You waiting for something?" Her words snapped me out of it. <<showvideo ddate1home8>> //So fucking beautiful . . . how did I get so lucky?// I didn't hesitate longer than I had to. As her sexy ass shook down the hallway toward the bedroom, I quipped to myself, //Hate to see you go, but I love to watch you walk away!// I only wished I had come up with that clever line. <<link [[Follow her . . .|Date1_WHBR_CP_FPStart]]>> <<if $h.rous lte 100 or $w.rous lte 100 or _scn gte 7>> <<set $h.rous += 50>> <<set $w.rous += 50>> <</if>> <<set $SexScene to true>> <<set $Partner1Name to $w.fn>> <<set $root to "Date1_WHBR_CP_">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to Math.clamp($h.rous / 100,0,3)>> <<if $povmod lt 0.2>><<set $povmod += 0.2>><</if>> <<set $npcmod to (($w.hap / 100) * ($w.rous / 100) * ($w.sat / 100))>> <<if $npcmod lt 0.2>><<set $npcmod += 0.2>><</if>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<set _HCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _HCum>> <<removeclass "#right-ui-bar" "stowed">> <<set $bjstart to true>> <</link>>\ <</if>>
<<randomvideo 1 2 ddate1fp0>> <<showvideo ddate1fp03>> <div id='sexmenu'><<include [[Date1_WHBR_CP_FPOptions]]>></div>\
<<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ !!!What do you want to do? <<link [["Finger " + $w.fn + "'s pussy"|Date1_WHBR_CP_FPA1]]>><<unset $bjstart>><</link>> <<link [["Eat " + $w.fn + "'s pussy"|Date1_WHBR_CP_FPB1]]>><<unset $bjstart>><</link>> <<if $POVCumPoints lte 45>><<set _dlink to "Ask " + $w.fn + " to give you a blowjob">><<link _dlink>> <<if $bjstart>><<goto [[Date1_WHBR_CP_FPD1]]>> <<else>><<goto [[Date1_WHBR_CP_FPD2]]>> <</if>> <</link>><br><</if>>\ <<set _slink to "Enough foreplay, fuck " + $w.fn + "!">>''<<link _slink>> <<set _fuck to random(1,3)>> <<unset $bjstart>> <<if $NPCCumPoints lte 50 and _fuck lte 2>> <<goto [[Date1_WHBR_CP_MoreFP]]>> <<else>> <<goto [[Date1d_WHBR_CP_SexStart]]>> <</if>> <</link>>'' <<elseif $POVCumPoints gte 100>> <<include [[Date1_WHBR_CP_HCum1]]>> <<elseif $NPCCumPoints gte 100>> <<include [[Date1_WHBR_CP_WCum1]]>> <</if>>
<<randomvideo 1 9 ddate1fpa>> \ <<nobr>> <<addminutes 2>> <<if $NPCCumPoints lte 45>> <<set _cpplus to (random(1,5))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += Math.clamp(_cpplus,1,120)>> <<set _SCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _SCum>> <</if>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_FPOptions]]>></div>\
<<randomvideo 1 7 ddate1fpb>> \ <<nobr>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_FPOptions]]>></div>\
<<randomvideo 1 5 ddate1fpda>> \ <<nobr>> <<set $w.rous += 10>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += _cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_FPOptions]]>></div>\
"Uh-uh, baby. Slow down. Eat my pussy just a little bit longer." I admit, I was trying to rush cock-first into her pussy. Perhaps I wasn't thinking about her pleasure as much as I was thinking about my own. "OK, hon. Sorry, I'm happy to keep doing it." I turned my attention back to her erogenous zones for a little while longer, and tried my best to get make her happy. <div id='sexmenu'><<include [[Date1_WHBR_CP_FPOptions]]>></div>\
<div id='sexmenu'><<include [[Date1_WHBR_CP_SexOptions]]>></div>\
<<nobr>> <<timed 2s>><<shakescreen 2s>> <<set $NPCCumPoints to 0>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $npcmod to $npcmod * 1.1>> <<set $w.xr.h.day.cmdy to true>> <<set $w.xr.h.cm += 1>> <div id='sexmenu'><<include [[Date1_WHBR_CP_FPOptions]]>></div> <</timed>> <</nobr>>\
<<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|Date1_WHBR_CP_SexA1]] [[Doggystyle|Date1_WHBR_CP_SexB1]] [[Cowgirl|Date1_WHBR_CP_SexC1]] [[Reverse cowgirl|Date1_WHBR_CP_SexD1]] [[Side fuck|Date1_WHBR_CP_SexE1]] [[Piledriver|Date1_WHBR_CP_SexF1]] [[Standing|Date1_WHBR_CP_SexG1]] [[Prone|Date1_WHBR_CP_SexH1]] <<elseif $POVCumPoints gte 100>>\ <<include [[Date1_WHBR_CP_HCum1]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Date1_WHBR_CP_WCum2]]>> <</if>>\
<<randomvideo 1 16 ddate1sa>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_SexOptions]]>></div>\
<<randomvideo 1 7 ddate1sb>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_SexOptions]]>></div>\
<<randomvideo 1 10 ddate1sc>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to random(5,20)>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_SexOptions]]>></div>\
<<randomvideo 1 7 ddate1sd>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_SexOptions]]>></div>\
"Oh fuck! Baby, I can't hold it anymore! I'm gonna cum!" As usual, $w.fn responded, "Pull out! Don't cum inside me!" I did as she asked and $w.fn dropped down to her knees in front of me. We had decided to put off kids for a little while, at least until $w.fn finished her first book. I guess whenever she is ready, we'll have another conversation about it, but until then I have to pull out. <<timed 2s>><<shakescreen 2s>>\ <<showvideo ddate1hcum>> I jerked my cock to get myself the rest of the way there. As I climaxed, $w.fn's open mouth hungrily received nearly every drop of my semen. She certainly seemed to enjoy the taste of it . . . or something. //Whatever//, I thought. //I know she's on the pill but accidents still can happen. Better not to risk getting pregnant.// <<nobr>> <<set $h.rous -= 50>> <<link [[Go to sleep|BR_Sleep]]>> <<set $w.rous += ($NPCCumPoints * 0.2)>> <<unset $SexScene>> <<unset $root>> <<set $Partner1Name to "">> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <</link>> <</nobr>><</timed>>\
<<timed 2.5s>><<shakescreen 2s>>\ <<nobr>> <<set $NPCCumPoints to 0>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $npcmod to $npcmod * 1.1>> <<set $w.xr.h.day.cmdy to true>> <<set $w.xr.h.cm += 1>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_SexOptions]]>></div><</timed>>\
<<nobr>> <<randompic 1 4 giverose>> <<addminutes 5>> <<set $inv.ros -= 1>> <<set $w.xr.h.ros += 1>> <<set $w.xr.h.day.ros to true>> <<set _scene to random(10)>> <<set _scene to Math.round(_scene * ($w.hap/100))>> <</nobr>>\ <<if $w.xr.h.ros lte 6 or _scene gte 7>>\ <<nobr>> <<set $w.xr.h.day.tdy += 3>> <<set $w.luv += 1>> <</nobr>>\ I found $w.fn in the <<printwloc>>. With the rose hidden behind my back, I approached her with romantic intentions. "Hey, baby!" Though I broke the silence as sweetly as I could, she barely registered any interest as she looked up at me. //Oh, making this a little harder, huh? Don't worry, I have something that will surprise you//, I impishly thought. And it did. I waited until her eyes started to move away from me before I started speaking. (It didn't take too long----I wasn't standing there awkwardly staring at her.) I spoke up again. "Sorry, it's just . . . well, I was thinking about you today." I pulled the rose out from behind my back and presented it to her. //BLAM!!// $w.fn's face lit up. She loved flowers. They made her feel special. It might seem like a meaningless or cliched gesture to some people, but I always want to give my baby what she wants. [img[images/hwkiss1.jpg]] "I love you," she said as she leaned toward me and gave me a nice kiss. "I love you, too." //Mission accomplished.// <<else>>\ /* Placeholder for negative reaction to rose */\ <</if>> <center><<button "Continue">> <<goto $startpassage>> <<run Dialog.close()>> <</button>></center>
[img[images/n1talk1.jpg]] Usually, $w.fn would read a book before she went to sleep. Tonight, however, she seemed to be waiting for me, deep in thought. She looked up at me as I entered the room. I could see some sign of concern in her eyes. "Hey, baby. What's up?" I asked. She hesitated. The momentary seconds of silence hung heavy in the air. They felt like an eternity. Then, seemingly mustering her courage, she spoke. "We need to talk about something." //That sounds ominous//, I thought. //I don't think I've ever talked about anything good if the conversation started with 'We need to talk.'// "Sure, what's going on?" I responded. "Why don't you sit down first . . ." //Gulp. That sounds even worse . . .// I did as she suggested, sitting with her in a way to get more comfortable. [img[images/n1talk2.jpg]] "I don't know how to say this delicately, so I guess I'll just start . . . . You know, I really love you very much, not just emotionally, with all my heart, but also for everything you do to keep us financially comfortable, so I can work on fulfilling my dream of becoming an author . . . ." She paused for a moment. "But things have been going downhill since the beginning. I'm not blaming you entirely . . . I mean, everybody seems to have suffered a bit of depression and anxiety during the pandemic . . . but now that the outside world is getting back to normal, I was hoping that things in our home would get back to normal also." //Normal?// I thought. //What does she mean by that?// She continued. "Basically, I'm not happy with our sex life. I know that we're not necessarily going to fuck like newlywed rabbits three years in, but . . . well, we don't have sex often enough, and when we do, I'm very rarely satisfied." //Ouch. I don't know how to react to that. That hurts.// "I'm sorry . . . ," I weakly mumbled. "I didn't realize that you felt that way." "It's OK. The only reason that I am even bringing this up is that I don't want things to get worse. Things are definitely //not// so bad at this point that anything drastic will happen." <<showvideo wundressing1>> We continued to talk as we got ready to go to bed. "How do I keep things from getting worse? I don't want to lose you," I responded. She looked away for a second while she thought about her answer. "Honestly, I don't know. We really need to ''spice up our sex life'' though. Maybe ''look for some advice online'' or something. But I really want things to turn around and start moving in a different direction before it reaches the point of no return." [img[images/n1talk3.jpg]] As we climbed into bed, an idea popped into my head. Even before I opened my mouth, she spoke. "We'll start tomorrow, though. Not tonight. I'm not in the mood after having to talk about all of this." //Well, there went that idea//, I thought. //Am I that predictable, or does she just know me that well? Based on this evening's conversation, maybe I am simply that predictable.// We turned off the lights and silently held each other in our arms until we went to sleep. //I guess I should do what she suggested and ''do some research online'' tomorrow after work.// [[Go to sleep|BR_Sleep][$w.xr.h.t.n1 to true]]
$w.fn pulled up some music on her phone and connected to our BlueTooth speaker. Sound quality was pretty good. She started by swaying her hips in time with the tunes and soon also started lip-syncing to parts of the song. But she was entirely focused on Brian, rarely breaking eye-contact with him. <<showvideo wblrlap1>> //It's a bit strange to see my wife so focused on another man//, I thought. //Though I guess it's better that it's my best friend, practically my brother, rather than some complete stranger.// Her dancing was very sensual. She would frequently run her hands across her bare skin, even her breasts. I knew how sensitive her nipples were, so every time she did that, I knew that she was getting more and more turned on. Or she would play with the waistband of her panties suggestively. When she did that, I knew that she was already so very turned on. <<showvideo wblrlap2>> //And all I can do is sit here on the couch, right next to Brian, and watch as she gives //him// all her attention. Attention meant for me, her husband.// She had started slow, but now she was apparently getting more into it. She almost looked like a real stripper, dancing quickly along with the music. Her movements began to be more overtly sexual than sensual. <<randomvideo 3 4 wblrlap>> She spun around presenting her ass to Brian. //God, her ass is amazing!// Even now, all I could think about was how perfect her body was, how much I loved her. What was she thinking about? She hadn't even so much as glanced in my direction for several minutes----we were on our third song since she started. It was clear that I wasn't on her mind, no matter what thoughts she had at that moment. //Is she thinking about anything other than getting fucked?// <<showvideo wblrlap5>> By this point, she had backed up to Brian's lap. She placed her hands on his knees to support herself as she rocked her barely covered ass just inches from his crotch. //Just a little bit of fabric the two of them are still wearing is the only thing preventing her from being fully penetrated at this point//, I observed. I can't say the thought wasn't somewhat intimidating, somewhat humiliating, and somewhat intriguing. //Do I actually want to see that happen? I don't think I can stop it from happening. Do I even want to stop it?// [[Continue|Event1_LRLapD2]]
<<nobr>> <<set _scene to random(1,5)>> <<if _scene is 1>> <<randompic 1 6 wdishes>> <<elseif _scene gte 2 and _scene lte 4>> <<randompic 1 10 wkwriting>> <<set $w.evt.wrt += 1>> <<elseif _scene is 5>> <<randompic 1 13 wkeating>> <</if>> <</nobr>> !!!What do you want to do? [[Grab a cup of coffee|K_AloneCoffee]] [[Grab a quick snack|K_AloneSnack]] <<nobr>><<if $gameDate.getHours() gte 15 and $gameDate.getHours() lt 17 and hasVisited("BR_Sleep") and not ($w.evt.fkr1.b and not ($w.xr.h.t.fkr1 or $w.pref.cht)) and not ($w.evt.fkr2.b and not ($w.xr.h.t.fkr2 or $w.pref.cht)) and not ($w.xr.br.evt.d1 and not $w.xr.h.t.bd1) and not (hasVisited("SwingPathStart_A2") and not $w.xr.h.t.swg1)>> [['Take ' + $w.fn + ' out to dinner'|WH_DinnerDateStart]]<br> <</if>><</nobr>>\ !!!Where do you want to go? [[Living Room|LivingRoomMain]]
"Did I tell you today how beautiful and sexy you are?" $w.fn looked up at me and smiled. She feigned being deep in thought, like trying to pull a childhood memory out of the recesses of her mind. "Hmmm . . . let me think. . . . No, I don't think that you have." "Well, you really are the most beautiful woman in the world." "Thank you, I will take that under advisement." She winked at me, then went back to what she was doing. <<nobr>> <<set $h.pref.wex += 0.5>> <<set $w.pref.ex += 0.5>> <<set $w.xr.h.day.t.sxy to true>> <<set $w.xr.h.day.tdy += 2>> <<set $w.rous += 5>> <<link "Continue" $rtn>><<addminutes 10>><<unset $rtn>><</link>> <</nobr>>\
"Hey, sexy!" $w.fn looked up at me as I broke the silence. "You know, I was thinking about your effortless sense of style . . . the way you dress turns me on so much." "Umm, ok. Thank you, I think?" She looked a bit confused. //Maybe I came on too strong and out of nowhere.// "Well, I was just thinking . . . you know, we're doing pretty well, financially . . . and, um, I was just thinking that if you wanted to buy more sexy clothes . . . well, you can." //Phew, I think I pulled it off.// "You're so weird," she said. "But sweet. Thank you, hun." She leaned in and gave me a kiss. "Maybe I'll go shopping tomorrow. You want me to buy something sexy, right?" "Definitely. The sexier, the better." //Nailed it!// "Sounds like fun," she said, as she went back to what she had been doing. "If you're lucky, maybe I'll wear whatever I buy for you next time we go out." "I'm looking forward to it . . . world look out!" <<nobr>> <<set $h.pref.wex += 0.75>> <<set $w.pref.ex += 0.75>> <<set $w.xr.h.day.t.sxy to true>> <<set $w.xr.h.day.tdy += 2>> <<link "Continue" $rtn>><<addminutes 10>><<unset $rtn>><</link>> <</nobr>>\
"You know, you just might be the sexiest woman I've ever known," I decided to say to $w.fn. "I'm not the only one to think so, either. I swear that every time we leave the house, I can see almost every man that sees you undressing you with their eyes." She looked up at me with a smirk across her lips. "What, are you jealous?" "Definitely not! In fact, it turns me on to know that all these other men want to fuck you! My beautiful, amazing, smart, funny, sexy wife----the object of desire for everyone that sees you!" She smiled subtly as she looked away. "I doubt //everyone// wants to fuck me . . . ." I had to disagree. "I mean, probably not the gay dudes, but they're probably balanced out by the number of women who would fuck you if they had the chance." "Whatever . . . you're so stupid . . . ." "I might be stupid, but you're sexy, and everyone wants to fuck you . . . ." //I think I won that exchange . . . .// <<nobr>> <<set $h.pref.wex += 1>> <<set $w.pref.ex += 1>> <<set $w.xr.h.day.t.sxy to true>> <<set $w.xr.h.day.tdy += 3>> <<link "Continue" $rtn>><<addminutes 10>><<unset $rtn>><</link>> <</nobr>>\
<<nobr>> <<if visited() lte 1>> <<popover>> <center><h3>CAUTION</h3></center> This is a very important decision. What you tell her now will determine the path you want to move forward on.<br><br> You will be able to revisit this conversation at certain points later if you change your mind, but be careful: if things have already progressed too far, it's possible that $w.fn will not completely respect the change to your relationship at that point. <</popover>> <</if>> <</nobr>>\ \ [img[images/d1talk2.jpg]] "Hey, $w.fn . . . do you have a few minutes to talk?" She lifted her eyes to look at me curiously. "Of course . . . what's on your mind?" "I've been thinking about what you said the other night, and doing some online research, looking for some advice that could make things better," I paused to let my words sink in. "OK," she responded. "So, what are you thinking?" "Well, first, I just want to tell you how much I love you. You are the love of my life, you are my world, my everything. And no matter what, I don't want to lose you." "I love you, too, $h.fn," she interjected. "So, I was thinking: [[Let's try to make this work|WTalk_Relat2]] <<if $h.pref.swg gt 0>>[[Do you want to try swinging?|WTalk_Relat3]]<br><</if>>\ <<if $h.pref.opn gt 0>>[[Do you want to try having an open marriage?|WTalk_Relat4]]<br><</if>>\ <<if $h.pref.cuk gt 0>>[[Do you want to fuck other people?|WTalk_Relat5]]<br><</if>>\
[img[images/d1talk3.jpg]] "I heard what you said the other night. To be honest, it kinda hurt," I started. "But since then, I have been thinking about it a lot. I did some online research and looked into some different things that we might be able to do to improve our relationship." I paused for a beat, considering how to express myself most effectively. "I decided that I really want to try hard to overcome the problems in our relationship. You are the love of my life and I will do anything not to lose you. I want you to know that you are my top priority. I love you so much, baby." //OK, so that devolved into a bit of a rambling mess, but I think I got my point across.// [img[images/n2talk2.jpg]] $w.fn leaned in and hugged me and gave me a passionate kiss. "Oh baby, I love you, too! I am so glad to hear you say that!" She continued, "I was really worried about saying anything to you at all the other night, but I just really didn't want to let our relationship get any worse because of your . . . um . . . //short//comings." //Ouch, did she have to emphasize that?// "So, you said you found some information online that might help. Like what, for example?" she asked me. [img[images/n2talk1.jpg]] "Well, there are a few things I want to try, but I think it's better if I just surprise you with most of them. One thing I can tell you is that I want to try to dedicate one night a week to spend some real quality time together. We can go out or stay home----that doesn't matter----but we just need to be together." "That sounds wonderful! $h.fn, I love you so much! I can't wait to see what you have in store!" <<link "Continue" $rtn>><<unset $rtn>><<addminutes 20>><<if $gameDate.getDate() gte 29>><<set $dtsv.rel to 1>><<else>><<set $dtsv.rel to $gameDate.getDate()>><</if>><</link>>\
[img[images/d1talk3.jpg]] "I heard what you said the other night. To be honest, it kinda hurt," I started. "But since then, I have been thinking about it a lot. I did some online research and looked into some different things that we might be able to do to improve our relationship." //OK, here it goes, time to swing for the fences! . . . Ugh, I can't believe I even thought a pun that bad. . . . I'm so ashamed of myself.// "So I think I have a solution for the biggest problem. Basically, it would be something that the two of us would do together, so I think it should help make our relationship stronger. But it would also involve other people, probably like another couple." [img[images/n2talk4.jpg]] "Wait," she interrupted. "Are you talking about swinging, like wife-swapping?" "I mean, yeah, I guess." "What, are you trying to get rid of me?" she asked. I couldn't tell if she was being sarcastic or serious. "Of course not, sweetheart. I just thought that maybe the excitement of something----or someone----new could bring a little bit extra to our relationship. Plus, maybe you would have a little bit better luck with another man, you know, //satisfying// you." That last part was probably the hardest part to say. "But most importantly," I continued, "I think it's important that we do this //together//, every step of the way. Like, we both agree on who, when, where, and how far we go. This can be something that we share in our relationship, just something new we add into it. I don't think that this will solve all our issues, but maybe this will help in the one area that seems to have the most problems right now. And I'll step up and try harder when we're alone to keep you happy in all other parts of our marriage." [img[images/n2talk2.jpg]] "Well, this is an interesting idea." She seemed to take a moment to consider it. "You know what, fuck it! I'm down to give it a try!" $w.fn leaned in and hugged me and gave me a passionate kiss. "If you really think that this will help us get back to the way we used to be, then let's try it!" //I hope that this was the right decision.// <<link "Continue" $rtn>><<unset $rtn>><<addminutes 20>><<set $w.xr.h.rel.swg to true>><<set $w.xr.h.rel.m to false>><<if $gameDate.getDate() gte 29>><<set $dtsv.rel to 1>><<else>><<set $dtsv.rel to $gameDate.getDate()>><</if>><</link>>\
[img[images/d1talk3.jpg]] "I heard what you said the other night. To be honest, it kinda hurt," I started. "But since then, I have been thinking about it a lot. I did some online research and looked into some different things that we might be able to do to improve our relationship." I hesitated before making my suggestion. "How would you feel about having an open marriage?" [img[images/n2talk4.jpg]] $w.fn stared right through me before speaking. "Are you fucking cheating on me?!" "What?! Of course not! Why would you think that?" I responded defensively. "Usually, when a guy suggests an open relationship, he already has his eyes on someone else. So . . . who is she?" "No, baby! I promise you it's nothing like that! I just . . . well, you said you weren't satisfied . . . and I just thought, well, maybe you could find some of the things I can't give you outside of our marriage." [img[images/n2talk3.jpg]] She continued to look at me in silence. "OK, wait . . . so you are suggesting that we have an open marriage so that some other man or men can satisfy me, because you can't? Is that right?" "I mean, basically, yes." I decided to explain further now that she seems to have calmed down. "I was thinking it is sort of like having a hobby. No matter how much you like your job, if all you ever do is work, your productivity decreases. But if you spend some time relaxing with a hobby, having that extra outlet outside of work, your productivity in your job increases. So right now, our relationship is suffering, but if we can spend a little bit of time with someone else as an outlet, I think our relationship will grow stronger." More silence and staring. //I hope she is thinking about what I am saying, and not just how much she hates me//, I thought. [img[images/n2talk5.jpg]] She finally broke the silence. "OK, I'm in. So, Mr. Smarty-Pants, how does this work?" "Well, we definitely should have some rules. First is that our relationship comes first. No matter what other plans we might have with anyone else, we have to be there for each other. Second, the only reason to even try this is to //strengthen// our marriage, so if either one of us starts feeling like this new arrangement is hurting that purpose, we call the whole thing off. No questions asked." "I think those makes sense," she replied. "Do you have any other thoughts or ground rules about the situation," I asked her. [img[images/n2talk6.jpg]] "Nothing I can think of right now, but I will let you know if I think of anything." She leaned in and hugged me and gave me a passionate kiss. But I didn't try to push it further than that. The mood just wasn't right. This decision weighed a bit heavy in the air. //I hope that this was the right decision.// <<link "Continue" $rtn>><<unset $rtn>><<addminutes 20>><<set $w.xr.h.rel.opn to true>><<set $w.xr.h.rel.m to false>><<if $gameDate.getDate() gte 29>><<set $dtsv.rel to 1>><<else>><<set $dtsv.rel to $gameDate.getDate()>><</if>><</link>>\
[img[images/d1talk3.jpg]] "I heard what you said the other night. To be honest, it kinda hurt," I started. "But since then, I have been thinking about it a lot. I did some online research and looked into some different things that we might be able to do to improve our relationship." I paused for a few seconds that seemed to stretch into an eternity. //Am I really about to suggest this?// I thought. //What if $w.fn loses interest in me, or falls in love with someone else?// "Sorry," I continued. "I just need a second." //No, I can't think like that. I am doing this precisely so that she doesn't lose interest in me or fall in love with someone else. She loves me, and I love her. This is just because I know I can't satisfy her. But if I let her have her cake and eat it too, that is how I save our relationship. If I let her do this, then she will never cheat on me. I know that our love is strong enough to handle this----I'm just afraid that our love might not be enough to handle years of being sexually frustrated.// I spoke back up, "I know that I can't satisfy you sexually, and I appreciate that you decided to talk to me about it rather than letting resentment grow into something that would eventually kill our marriage. I'm glad that you decided to just be honest with me instead of doing something like cheating on me." My voice cracked a little bit, but instead of letting my resolve waver, I clear my throat and spoke with more confidence. "If you want, um, well, I'll just put it bluntly. If you want to have sex with someone else who can satisfy you in that way, well, I would be ok with that. I love you very much and I don't think it would be fair of me to insist that you don't get to be sexually satisfied." [img[images/n2talk4.jpg]] I realized that I hadn't been looking at her, so as I finished speaking, I lifted my eyes to gauge her reaction. She was peering right at me, mouth open as if in shock. We sat like that for who-knows-how-long and then she spoke. "You're saying that you want me to fuck other people?" "I don't want to lose you, and I want you to be happy. So if fucking other people is the only way to do that, then yes, I want you to do it." //This might be the most difficult thing I've ever said in my life.// "Do you think I'm some kind of slut or something?" //I guess that reaction is understandable. I need to reassure her a bit.// "Of course not, baby. This would just be an arrangement for your benefit. Do it or don't do it, it's completely up to you." I continued, "There would have to be a few rules, of course. So that we are on the same page and working together to maintain our relationship, even with this new part of our relationship." [img[images/n2talk1.jpg]] "So who makes the rules . . . you?" "Not by myself, $w.fn. I have a couple of things in mind, but I want this to be something that we both agree to." "OK, so what kind of rules are you thinking?" she asked. "I'm //not// yet saying that I will agree to this, but I just want to know what you are proposing." "Well, one of the main things is that we should be honest with each other. About everything. I mean, I might not necessarily want to hear all of the gritty details, but I do want you to answer any questions that I might ask. Don't lie about anything. And I do want to know if you go out to meet someone." "That's understandable. I don't want to lie to you about anything. Anything else?" "Well, I think that if we do this, that we have to make sure that we maintain and strengthen our own relationship. I think this is probably vital to prevent this from backfiring on us. So, I was thinking that maybe one night a week could be dedicated to just us spending some romantic time together. Whether we go out or stay in, we should have a date night set aside for just us." "I would love that either way," she responded. "Let's just go ahead and put that one on the board regardless of our other decisions." "Do you have any rules or conditions if we move forward with this?" I asked her. [img[images/d1talk4.jpg]] "Well, just because you seem to be ok with this, I don't know if I am willing to do the same. So even if I have sex with someone else, that doesn't give you a blank check to cheat on me." She repeated her point, "In other words, since you are proposing this arrangement for my benefit, then that means that I can fuck other people, but you can't. I'm not going to be manipulated into just letting you run around town with any hoochie that catches your eye." "I can agree to that. I only have eyes for you, my love. The thought of being with someone else never entered my mind," I reassured her. [img[images/n2talk6.jpg]] "Well, I don't think I have any other rules right now, but if something comes to mind, I'll let you know. . . . You know what? Let's give it a try! I'm not entirely sold on the idea, but let's tentatively agree to it." She leaned in and hugged me and gave me a passionate kiss. But I didn't try to push it further than that. The mood just wasn't right. This decision weighed a bit heavy in the air. //I hope that this was the right decision.// <<link "Continue" $rtn>><<unset $rtn>><<addminutes 20>><<set $w.xr.h.rel.cuk to true>><<set $w.xr.h.rel.m to false>><<if $gameDate.getDate() gte 29>><<set $dtsv.rel to 1>><<else>><<set $dtsv.rel to $gameDate.getDate()>><</if>><</link>>\
/* ========================================================== */ /* location */ /* 0 = Master bedroom */ /* 1 = Bathroom */ /* 2 = Kitchen */ /* 3 = Guest Room */ /* 4 = Balcony */ /* 5 = Living Room */ /* 6 = Laundry Room */ /* 7 = Gym */ /* 8 = Shopping */ /* 9 = Park */ <<if not tags().includes("EventPassage") and not tags().includes("SexPassage") and not tags().includes("PrefacePassage") and not tags().includes("MenuPassage") and not tags().includes("HisPhone") and not tags().includes("HerPhone")>> <<if $w.xr.br.evt.on and not $w.xr.br.evt.done>> <<if $gameDate.getHours() gt 10 and $gameDate.getHours() lt 20 and ($w.xr.br.evt.slp or $w.xr.h.day.t.bch)>><<set $w.xr.br.evt.slp to false>><<set $w.xr.h.day.t.bch to false>><</if>> <<if ndef $btm>><<set $btm to $gameDate.getHours()>><</if>> <<if $gameDate.getHours() gte 17 and $gameDate.getHours() lt 19>> /* dinner */ <<set $w.xr.br.evt.loc to 2>> <<set $btm to $gameDate.getHours()>> <<elseif ($gameDate.getHours() lt 8 or $gameDate.getHours() gte 22) and $gameDate.getHours() isnot $btm>> /* sleeping */ <<set $w.xr.br.evt.loc to 3>> <<set $btm to $gameDate.getHours()>> <<elseif $gameDate.getHours() isnot $btm>> <<if (GameDays[$gameDate.getDay()] is "Tue" or GameDays[$gameDate.getDay()] is "Thu") and $gameDate.getHours() gte 7>> <<set $w.xr.br.evt.loc to either(1,2,4,5,9)>> <<else>> <<set $w.xr.br.evt.loc to either(1,2,3,4,5,9)>> <</if>> <<set $btm to $gameDate.getHours()>> <</if>> <<elseif $w.xr.br.evt.on and $w.xr.br.evt.done and $w.xr.br.evt.last>> <<set $w.xr.br.evt.loc to 10>> <<set $w.xr.br.evt.slp to false>> <<set $w.xr.h.day.t.bch to false>> <</if>> <<if ndef $wtm>><<set $wtm to $gameDate.getHours()>><</if>> <<if $w.xr.br.evt.slp and ($gameDate.getHours() lt 8 or $gameDate.getHours() gte 22)>> <<set $w.loc to 3>> <<elseif ($gameDate.getHours() lt 9 or $gameDate.getHours() gte 22) and not $w.xr.br.evt.slp>> <<set $w.loc to 0>> <<elseif $gameDate.getHours() gte 12 and $gameDate.getHours() lt 13>> /* lunch */ <<set $w.loc to 2>> <<elseif $gameDate.getHours() gte 17 and $gameDate.getHours() lt 20>> /* dinner */ <<set $w.loc to 2>> <<elseif $gameDate.getHours() is 9 and $gameDate.getMinutes() lte 20>> /* breakfast */ <<set $w.loc to 2>> <<elseif $gameDate.getHours() is 20 and $gameDate.getMinutes() lt 30>> /* shower */ <<set $w.loc to 1>> <<elseif ($gameDate.getHours() is 20 and $gameDate.getMinutes() gte 30) or ($gameDate.getHours() is 21 and $gameDate.getMinutes() lt 30)>> /* after shower */ <<set $w.loc to 5>> <<elseif $gameDate.getHours() isnot $wtm>> <<if $gameDate.getHours() is 21 and $w.xr.br.evt.loc isnot 3>> <<set $w.loc to either(0,2,4,5)>> <<set $wtm to $gameDate.getHours()>> <<elseif $gameDate.getHours() is 21 and $w.xr.br.evt.loc is 3>> <<set $w.loc to either(3,4,5)>> <<set $wtm to $gameDate.getHours()>> <<elseif $gameDate.getHours() isnot $wtm>> /* random pic - no B */ <<set $w.loc to random(0,7)>> <<set $wtm to $gameDate.getHours()>> <</if>> <</if>> <</if>> <<if $w.xr.br.evt.loc is 3 and $w.loc is 3 and not ($w.xr.br.shr or $w.xr.br.cuk)>> <<set $w.loc to either(0,1,2,4,5)>> <</if>> <<if $w.xr.br.evt.loc is 1 and $w.loc is 1 and not ($w.xr.br.shr or $w.xr.br.cuk)>> <<set $w.xr.br.evt.loc to either(2,3,4,5)>> <</if>> /* ========================================================== */
<<timed 1.5s>><<speech "rk" "Ricky">>Hey, looks like we match, beautiful!<</speech>> <<next>><<speech "wf" $w.fn>>Hey there, it's my first time doing this . . . how are you?<</speech>> <<next>><<speech "rk" "Ricky">>My day just got so much better now that I'm talking to you. How are you doing?<</speech>> <<next>><<speech "wf" $w.fn>>So you're a charmer, huh? 😊<</speech>> <<next>><<speech "wf" $w.fn>>I'm doing great . . . pretty horny, really . . .<</speech>> <<next>><<speech "rk" "Ricky">>Oh wow! You get right to the point, huh?<</speech>> <</timed>>\ <<nobr>> <<if not $w.xr.h.rel.m>><<timed 10.5s>><<speech "wf" $w.fn>>Soooo . . . I should probably let you know that I am married . . . but I'm allowed to fuck other people . . . <</speech>><br><br> <<next 1.5s>><<speech "rk" "Ricky">>Oh cool! Like an open marriage?<</speech>><br><br> <<next 1.5s>><<speech "wf" $w.fn>>Something like that . . . anyway, looking for my first "free" hook-up . . . and you are definitely in the running 😉<</speech>><br><br> <<next 1.5s>><<speech "rk" "Ricky">>I'm honored 😍<</speech>><br><br> <<next 1.5s>><<speech "wf" $w.fn>>You should be . . . I'm amazing 😉<</speech>><br><br><</timed>><</if>> <</nobr>>\ <<timed 17s>><<speech "rk" "Ricky">>So, how do we seal the deal?<</speech>> <<next 1.5s>><<speech "wf" $w.fn>>Well, I do kinda want to see what I might be working with, if you know what I mean . . . maybe send some more pics, other than what's in your profile?<</speech>> <<next>><<speech "rk" "Ricky">>Something like this?<</speech>> <<next>><<speech "rk" "Ricky">>[img[images/fuckrpic1.jpg]]<</speech>> <<next>><<speech "wf" $w.fn>>Think a little sexier, great pic tho<</speech>> <<next>><<speech "rk" "Ricky">>Oh, you mean more like this?<</speech>> <<next>><<speech "rk" "Ricky">>[img[images/fuckrpic2.jpg]]<</speech>> <<next>><<speech "wf" $w.fn>>You're getting warmer -- very hot btw -- but maybe try aiming<br>the camera a little lower<</speech>> <<next>><<speech "rk" "Ricky">>🤣 🤣 🤣 I know, I know, I'm just fucking with you!<</speech>> <<next>><<speech "rk" "Ricky">>[img[images/fuckrpic3.jpg]]<</speech>> <<next>><<speech "rk" "Ricky">>[img[images/fuckrpic4.jpg]]<</speech>> <<next>><<speech "wf" $w.fn>>Oh wow! OK, color me impressed!<</speech>> <<next>><<speech "rk" "Ricky">>Now it's your turn! 🙏<</speech>> <<next>><<speech "wf" $w.fn>>Hmm . . . I'll think about it!<</speech>> <<next>><<speech "rk" "Ricky">>No pressure, but I would really love to see a pic or two!<</speech>> <<next>><<speech "wf" $w.fn>>Well, since you asked so nicely<</speech>> <<next>><<speech "wf" $w.fn>>Hold on . . .<</speech>> <<next 4s>><<speech "wf" $w.fn>>[img[images/fuckrpic5.jpg]]<</speech>> <<next 1.5s>><<speech "rk" "Ricky">>You are really beautiful!<</speech>> <<next>><<speech "wf" $w.fn>>Thank you! 😊<</speech>> <<next 3s>><<speech "wf" $w.fn>>[img[images/fuckrpic6.jpg]]<</speech>> <<next 1.5s>><<speech "rk" "Ricky">>God damn! You are a perfect 10!<</speech>> <<next>><<speech "wf" $w.fn>>[img[images/fuckrpic7.jpg]]<</speech>> <<next>><<speech "rk" "Ricky">>I'm speechless, thank you for blessing me<</speech>> <<next>><<speech "wf" $w.fn>>OK, last one . . .<</speech>> <<next 4s>><<speech "wf" $w.fn>>[img[images/fuckrpic8.jpg]]<</speech>> <<next 1.5s>><<speech "wf" $w.fn>>So, now what?<</speech>> <<next>><<speech "rk" "Ricky">>Well, what do you want to do?<</speech>> <<next>><<speech "wf" $w.fn>>I want you to take that huge cock and fuck me until I can't feel my legs and forget how to speak English<</speech>> <<next>><<speech "rk" "Ricky">>Well, fuck, I think I can manage that . . .<</speech>> <<next>><<speech "wf" $w.fn>>I'm not kidding, I've got about 4 hours this afternoon and I expect a cock inside me for a good portion of that time<</speech>> <<next>><<speech "rk" "Ricky">>I can definitely make that happen!<</speech>> <<next>><<speech "rk" "Ricky">>You sure you can handle this?<</speech>> <<next>><<speech "wf" $w.fn>>I'm aching for it<</speech>> <<next>><<speech "rk" "Ricky">>So do you want me to come to you?<</speech>> <<next>><<speech "wf" $w.fn>>No, not here. Do you have a place?<</speech>> <<next>><<speech "rk" "Ricky">>Absolutely, I'll send you the address<</speech>> <<next>><<speech "rk" "Ricky">>Excited to meet you in person, gorgeous!<</speech>> <<next>><<speech "rk" "Ricky">>You got me dancin'<br><br><<showvideo fuckrvid1>><</speech>> <<next 3s>><<speech "wf" $w.fn>>Me too, getting myself ready<</speech>> <<next>><<speech "wf" $w.fn>><<showvideo fuckrvid2>><</speech>> <<next 4s>><<speech "rk" "Ricky">>I am already rock hard and ready for you<</speech>> <<next 5s>><<speech "wf" $w.fn>>Thinking about that big dick . . . my pussy is so wet<</speech>> <<next 3s>><<speech "wf" $w.fn>><<showvideo fuckrvid3>><</speech>> <<next 1.5s>><<speech "wf" $w.fn>>I'll be in the next RideMe as soon as I finish . . .<</speech>> <<link "Continue" $nextpassage>><<set $w.rous += 100>><<set $w.evt.fkr1.a to true>><<unset $nextpassage>><</link>>\ <</timed>>\
I hired a RideMe car and was at the address Ricky gave me within 20 minutes. It was on the other side of town, in one of the less savory neighborhoods. The crime rate here was a bit higher than where we lived, but it was the middle of the day, so I was sure I'd be fine. [img[images/rkdoor1.jpg]] His apartment building was not as nice as ours, but it was secure. I buzzed up to his apartment and he quickly responded over the intercom, "That you, $w.fn?" "Sure is," I replied. "Come on up," he instructed as the buzzer signaled that the entrance was now unlocked. I quickly made my way into the building and up to his apartment. <<showvideo fkr1bst1>> As soon as he opened the door, Ricky led me to his bedroom and we immediately started to make out. I think we said all we needed to say before I even got here. There was only one thing on my mind and he knew it. Why bother with any pretense of a conversation? <<showvideo fkr1bst2>> //He is such a passionate kisser . . . Fuck, this may have been the best decision I made in a while!// <<link [[Continue|FuckR1B_FPStart]]>> <<set $SexScene to true>> <<if $w.rous lte 350>><<set $w.rous to 350>><</if>> <<set $Partner1Name to "Ricky">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<if $w.pref.bk gt 10>><<set $povmod to (($w.pref.bk / 10) * ($w.rous / 100))>> <<else>><<set $povmod to ($w.rous / 100)>> <</if>> <<set $root to "FuckR1B_">> <<set $povmod to Math.clamp($povmod,1,10)>> <<set $npcmod to 0.6>> <<set _BCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _BCum>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>>
<<showvideo fkr1bst3>> <<showvideo fkr1bst4>> <<showvideo fkr1bst5>> <<showvideo fkr1bst6>> <div id='sexmenu'><<include [[FuckR1B_FPOptions]]>></div>\
<<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ <h3>What do you want to do?</h3> <<if $POVCumPoints lt 50 and not hasVisited("FuckR1B_FPB1")>>\ [[Let him eat your pussy|FuckR1B_FPA1]]<br><</if>>\ <<if $NPCCumPoints lt 50 and $POVCumPoints lt 50>>\ [[Give him a blowjob|FuckR1B_FPB1]]<br><</if>>\ ''[["Enough foreplay, let " + $Partner1Name + " fuck you!"|FuckR1B_SexStart]]'' <<elseif $POVCumPoints gte 100>>\ <<include [[FuckR1B_1Cum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[FuckR1B_2Cum]]>> <</if>>\
<<randomvideo 1 5 fkr1bfpa>> \ <<nobr>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[FuckR1B_FPOptions]]>></div>\
<<nobr>><<if visited("FuckR1B_FPB1") lte 1>> <<showvideo fkrb1nx1>><br> <<showvideo fkrb1nx2>><br> <<showvideo fkrb1nx3>><br> <<showvideo fkrb1nx4>><br> <<showvideo fkrb1nx5>><br> <</if>><</nobr>>\ \ <<randomvideo 1 8 fkr1bfpb>> \ <<nobr>> <<set $w.rous += 20>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += _cpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[FuckR1B_FPOptions]]>></div>\
<<timed 2.5s>><<shakescreen 2s>> <<if passage() is "FuckR1B_SexA1">> <<randomvideo 1 2 fkr1bsac>> <<elseif passage() is "FuckR1B_SexB1">> <<randomvideo 1 2 fkr1bsbc>> <<elseif passage() is "FuckR1B_SexC1">> <<showvideo fkr1bscc1>> <<elseif passage() is "FuckR1B_SexD1">> <<showvideo fkr1bsdc1>> <</if>><br><br> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $povmod to $povmod * 1.5>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 0.5>> <<set $w.xr.rk.cm += 1>> <div id='sexmenu'><<include [[FuckR1B_SexOptions]]>></div>\ <</timed>>
<<showvideo fkr1bend1>> <<showvideo fkr1bend2>> <<showvideo fkr1bend3>> <<showvideo fkr1bend4>> [[Continue|FuckR1B_End]]\
<div id='sexmenu'><<include [[FuckR1B_SexOptions]]>></div>\
<<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|FuckR1B_SexA1]] [[Doggystyle|FuckR1B_SexB1]] [[Cowgirl|FuckR1B_SexC1]] [[Prone|FuckR1B_SexD1]] <<elseif $POVCumPoints gte 100>>\ <<include [[FuckR1B_1Cum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[FuckR1B_2Cum]]>> <</if>>\
<<randomvideo 1 11 fkr1bsa>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[FuckR1B_SexOptions]]>></div>\
<<nobr>> <<if previous() isnot "FuckR1B_SexB1">> <<showvideo fkr1bsb0>> <br> <</if>> <</nobr>> \ <<randomvideo 1 11 fkr1bsb>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[FuckR1B_SexOptions]]>></div>\
<<nobr>> <<if previous() isnot "FuckR1B_SexC1">> <<randomvideo 1 2 fkr1bsc0>> <br> <</if>> <</nobr>> \ <<randomvideo 1 9 fkr1bsc>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[FuckR1B_SexOptions]]>></div>\
<<randomvideo 1 8 fkr1bsd>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[FuckR1B_SexOptions]]>></div>\
<<showvideo fkr1bend5>> <<showvideo fkr1bend6>> <<link "Continue" $nextpassage>> <<unset $nextpassage>> <<set $w.evt.fkr1.b to true>> <<unset $SexScene>> <<unset $root>> <<set $w.xr.rk.x += 1>> <<set $Partner1Name to "">> <<set $w.rous += Math.round($POVCumPoints / 20)>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<if $w.xr.h.rel.m and $w.pref.cht>><<set $w.evt.cht += 1>><</if>> <<unset $sexmenu>> <</link>>\
As soon as I walked into the room, $w.fn started talking. "Baby, I need to ask you a favor . . . ." she said in her sweetest //I-need-a-favor// voice. To top it off, she fluttered her puppy-dog eyes and pushed out her sexy lips in the slightest pout. //She knows exactly how to manipulate me//, I thought affectionately. //It's impossible for me to resist giving her everything she wants when she really wants it.// "Sure thing, baby. You know I want you to have everything." Still naked, she put her arms around me, and gave me a sensual kiss right on the lips. [img[images/e1fschoice.jpg]] "Honey, I am really horny . . . I mean, //really// horny . . . ." //Nice! I hope Brian doesn't get too lonely out there!// I anticipated, my cock already standing at attention. $w.fn continued, "I want Brian to fuck me." //I'm gonna fuck her so ---- wait, what did she just say?// "What did you just say?" I asked her. I must have misheard her. "I mean, not necessarily right away . . . we can keep hanging out for a little while. But tonight, I //have// to cum. And you know I love you with all my heart, but you don't exactly have the best track record when it comes to satisfying me." //Ouch, that hurt . . . .// "So I was thinking----since you asked me to accept this new relationship, 'for my satisfaction,' you said----I was thinking that this was the perfect time to ask you for this." It was so weird to hear the things she was saying while giving me the same face and voice that she uses to ask me for some new clothes. "But Brian is my best friend," I argued. "Would you prefer I go out and find some stranger to fuck me, at <<time12hr>>, while I'm drunk? We live in a big city, I'm sure it would be pretty easy. Or I could just have someone we both trust help me out." I guess she decided to switch tactics, to guilt me into saying //yes//. //When she gets like this, she's relentless. She won't stop until I agree.// "OK, baby, if that's what you want," I sighed with resignation. She gave me another big kiss, this time with a huge smile. "OK, you can go out first. Don't say anything about this. I'll initiate when I'm ready. Or maybe I won't. But probably I will. Just, when I do, if I do, just let him know that it's ok, ok?" I nodded, "Sure, baby." [[Head back into the Living Room|Event1_LRNext1]]
"Everything good?" Brian asked as I returned to the Living Room. "Oh yeah, everything's good . . . don't worry about it," I told him, grabbing the beer he had brought for me and downing about half of it in one long swig. "You sure about that?" he asked again. "Yeah, I was just thirsty. Let's keep drinking! The party isn't over, it's just begun!" [img[images/e1lrnxtw1.jpg]] Almost as if punctuating my words, $w.fn appeared at that very moment. I thought she was planning on getting dressed, and I guess she kinda did. I mean, she put on panties. Nothing else, just panties. //She is very sexy like that//, I thought. //But tonight, it's not for me.// It was a difficult concept to come to terms with, even though it was my suggestion. I was beginning to understand the conflicted feelings that some of the online people were talking about. There was what seemed like endless silence as $w.fn sat down next to Brian and picked up her drink. "No need to get all dressed up for me," Brian quipped, breaking the silence. [img[images/e1lrnxtw2.jpg]] "Hey, these panties are my Sunday best!" she responded. "I thought you were cold," he asked her. "I changed my mind. You got a problem with what I'm wearing?" "Absolutely not, very stylish." Brian gave her a crooked smile and a wink. [img[images/e1lrnxtw3.jpg]] We kept hanging out and drinking for a bit longer. $w.fn and Brian were openly flirting, but she hadn't made a real move yet. "I feel like dancing," $w.fn finally said. //Was this her move? Maybe I thought too soon.// She looked at Brian. "Want a lap dance?" "I wouldn't say no to that," he replied. [[Continue|Event1_LRLapD1]]
<<showvideo wblrlap6>> $w.fn stood up----still uncomfortably close and still gyrating lewdly. She hooked her thumbs under the sides of her panties and pulled them about halfway down her hips. Just for a moment, and she pulled them back up. Though the thong didn't cover much anyway, the act of pulling them off caused my already-very-hard cock to somehow get even harder. I would imagine the effect was even more profound for Brian, who was getting the direct view. She turned around to face Brian and did what she had only been teasing up to that point. <<showvideo wblrlap7>> Nearly nude, she placed her knees on the couch between his legs and leaned all the way forward, holding herself up with her hands on his chest and shoulders. Her breasts were mere inches from his face. "Touch me," she said, just above a whisper. Brian's hands moved up to her ass automatically. As if unsure, he quickly slid them down the backs of her thighs before returning them to his own lap. <<showvideo wblrlap8>> "It's OK," she said. Then she took it up another notch. Still dancing, she grabbed both of his hands and directed them up to her breasts and held them wandering across her skin. She continued, "I want you to touch me, touch my body." <<showvideo wblrlap9>> $w.fn leaned forward again, pushing her face even closer to his. From where I was sitting, I could see the sexy arch in her back, ass turned toward the ceiling. I didn't hear her say anything though. Was she whispering to him or kissing him? She lingered only long enough for me to realize that she had lingered, and stood back up. "Looks like you're ready," she said as she danced in front of us. I looked over toward my best friend. //Just as I thought . . . a huge smile on his face. . . .// I'm not sure why, but my eyes wandered lower. [img[images/e1_lrbjbc1.jpg]] //What the fuck?!? Is that his dick? That thing can't be real!// I felt the sharp pang of jealousy, looking at what had to be the largest cock I had ever seen with my own two eyes. I thought back to her how her lapdance had proceeded and realized that she had definitely seen it. She had touched it with some part of her body. Probably //parts//, plural. Her hands, probably. Her leg, almost certainly. Her ass, yes. Her pussy . . . ? Immediately, the image of that massive cock piercing $w.fn's core invaded my imagination. //Fuck! Can she even take that cock if she wants to?// It then dawned on me that that was precisely her plan. //Is that what she meant by saying he was ready?// <<showvideo wblrlap10>> Once again tonight, as if reading my mind, she answered my question. "Looks like you're ready for this pussy." Her actions complemented her words. Still swaying her hips to the music, she pulled her panties down to show us----to show //Brian//----her naked pussy. //If she thinks he's ready for her pussy, does that mean she's ready for his cock?// I thought. I probably wouldn't have to wait long to learn the answer to that question. [[Continue|Event1_LRLapD3]]
<<showvideo wblrlap11>> $w.fn showed us exactly what she meant. Turning her back to Brian----just barely out of his reach----she slowly bent forward, sliding her panties down her legs, until her upper body was parallel with the floor. From this angle, I could see her firm tits hanging naked. Brian's angle was a bit better, as all he could see was her perfectly round ass and her pussy. Presented to him, doubtlessly glistening wet and aching to be touched. //Aching to be touched// by him, I thought. //Not by //me. <<showvideo wblrlap12>> She was still dancing to the music, in the loosest sense of the words. She moved her hips and ass, now completely uncovered. She was presenting her "assets" to her chosen partner for the evening. She even spun around to face him a few times, allowing Brian to see her every inch of her gorgeous naked body. I was incredibly <<if $h.pref.cuk gte 5>>turned on<<else>>conflicted<</if>> by the way in which this evening had started to go. //I did <<if $w.xr.h.rel.cuk>>tell $w.fn she could have sex with other people<<else>>ask $w.fn for an open relationship<</if>> since I hadn't been satisfying her. I didn't think she would want to sleep with Brian, but that's the gamble I took when I suggested this "arrangement," I guess.// <<randomvideo 13 14 wblrlap>> I had lost track of how long she had been dancing or how many songs had played. It could have been three or four, or it could have been thirty or forty. I deduced that it wasn't that many, because it was still dark outside. But that was about all I knew. "Do you like my dancing?" she asked Brian as Song Number Whatever faded out. "Very much. You are so fucking sexy!" <<showvideo wblrlap15>> "You like how I move?" she asked him, only slightly varying the question. "God, yes," he replied. "Well, you're really going to like the way I'm going to be moving soon," and with a big smile on her face, she walked toward him. [[Continue|Event1_LRLapD4]]\
<<showvideo wblrlap16>> $w.fn leaned all the way over Brian's lap. "Does my dancing turn you on?" she asked him again. "Oh, never mind, you don't have to answer that. I can feel just how turned on you are." Brian stayed silent. $w.fn did not, however. "Do you want to fuck me, Brian?" //Well, that escalated quickly . . . .// Brian looked at me questioningly. I did as I had promised $w.fn, and just nodded at him. A slow smile crept across his face. "Maybe . . . do //you want// me to fuck you, $w.fn?" <<showvideo wblrlap17>> She climbed onto his lap and started riding him suggestively. I didn't even recognize the song that echoed through the apartment. Watching my wife move her naked body, it almost felt like the music was following //her// rhythm, rather than the other way around. She was mesmerizing, hypnotizing, magnetic in her raw sensuality. "Yes, God yes," she replied in a low voice. Both Brian and I were powerless to resist giving her exactly what she wanted. <<showvideo wblrlap18>> Brian instinctively reached up and put his hands on $w.fn's hips as they continued to dance back and forth, thrusting toward him. Her naked body reacted immediately to his touch. <<showvideo wblrlap19>> "Oh fuck, Brian . . . please just touch me," she moaned. "Grab my tits, //please//!" Without waiting for him to act on his own, $w.fn grabbed his large hands and placed them on her breasts. He lingered there for just a moment, then allowed his hands to continue wandering gently across her smooth skin again. [[Continue|Event1_LRLapD5]]\
<<showvideo wblrlap20>> $w.fn turned around, once again presenting herself to Brian. This time was a bit different, though. She was completely nude, so close to him that she was practically in his lap, and she bent all the way over. In this position her pussy would have been fully on display to him, though I couldn't see it at all from my angle. Brian put his hands up on her hips. while she was in this position. And her hands were . . . She had reached between her legs, back toward Brian. //Did she just grab his cock? Fuck! I can't see anything from this angle.// She kept moving her hips as she stood back up, and Brian allowed his hands to slide down the sides of her legs. <<showvideo wblrlap21>> $w.fn changed up her motion a bit. Leaning forward with her hands on her knees and jutting her ass backwards, she aggressively bounced up and down directly over his lap. Taking her lead, Brian had firmly gripped her hips. The air was thick with sexual tension now. This was getting ready to happen, there was not longer even the slightest bit of doubt. My wife was minutes away from fooling around with my best friend. <<showvideo wblrlap22>> At that moment $w.fn must have resolved to finally take the last step as well. She stood up and faced Brian, casting not even a brief glance in my direction. Sensually moving her beautiful body in front of him, she said, "Take your shirt off, Brian. I'm getting tired of dancing." She shimmied one last time down to the floor and crawled over to the couch where Brian was waiting for her. [[Continue|Event1_EndLRStart1]]\
<<if $gameDate.getHours() is 9 and $gameDate.getMinutes() lte 30>> /* coffee */ <<include [[K_WBCoffeeTime]]>> <<elseif $gameDate.getHours() gte 12 and $gameDate.getHours() lte 13>> /* eating lunch */ <<include [[K_WBLunch]]>> <<elseif $gameDate.getHours() gte 17 and $gameDate.getHours() lt 18>> /* cooking dinner */ <<include [[K_WBCooking]]>> <<elseif $gameDate.getHours() gte 18 and $gameDate.getHours() lt 19>> /* dinner */ <<include [[K_WBDinner]]>> <<elseif $gameDate.getHours() gte 19 and $gameDate.getHours() lt 20>> /* dishes */ <<include [[K_WBDishes]]>> <</if>>
<<nobr>> <<addminutes 10>> <<set _scene to random(1,4)>> <<if $w.xr.br.evt.on and not $w.xr.br.evt.done and $w.xr.br.x gt 0 and $w.pref.ex gte 15 and _scene gte 3 and not $w.xr.br.cht>> <<set $h.rous += 20>> <<set _vid to random(1,3)>> <<if _vid lte 2>> <<randomvideo 2 5 bbbj>> <<set $w.rous += 30>> <<else>> <<randomvideo 1 5 bbbx>> <<set _cum to random(1,5)>> <<set $w.xr.br.x += 1>> <<set $w.pref.bk += (_cum / 2)>> <<set $w.pref.sq += (_cum / 2)>> <<set $w.xr.br.cm += _cum>> <<set $w.rous -= (_cum * 20)>> <<set $w.rous to Math.clamp($w.rous,0,10000)>> <</if>> <<else>> <<randompic 1 4 wbbalcony>> <<set $w.rous += 20>> <</if>> <</nobr>> As I peered out onto the apartment Balcony, I noticed that Brian and $w.fn were out here spending a little alone-time together. //I guess I should be happy that they get along so well . . . .// !!!What do you want to do? //Nothing at the moment . . .// !!!Where do you want to go? [[Living Room|LivingRoomMain]]\
<<nobr>> <<addminutes 10>> <<randompic 1 4 bbalcony>> <</nobr>> As I stepped out onto the balcony, Brian came into view. He seemed to be deep in thought. "What's going on, brother?" I asked him. "Just thinkin'," he responded. "A lot going on these past few days. Still trying to wrap my mind around everything, figure out my next steps." "Yeah, it's a lot. I just wanted to let you know that I'm here for you, if you need to talk about anything." He barely glanced in my direction. "I know, man. I appreciate it, I really do." "Alright," I said. "I'll give you some time to think. Just know that we're here for you. Me and $w.fn both." "Thanks . . . ." !!!What do you want to do? //Nothing at the moment . . .// !!!Where do you want to go? [[Living Room|LivingRoomMain]]
<<nobr>> <<randompic 1 10 wb_lr>> <<set $w.rous += Math.clamp(Math.round((($w.xr.br.x * 5) + 25) / 5),10,50)>> <</nobr>> $w.fn and Brian are hanging out in the Living Room together. They get along so well. It's almost like back when we were in college and Brian and I were roommates. They used to hang out a lot then, too. !!!What do you want to do? [[Relax on the couch for an hour|LR_Alone_CouchRelax]] [[Play video games|PlayGamesMain]] [[Watch TV|TV_WBMain]] !!!Where do you want to go? [[Master bedroom|MasterBedroomMain]] [[Bathroom|BathroomMain]] [[Kitchen|KitchenMain]] [[Guest Room|GuestRoomMain]] [[Balcony|BalconyMain]] ''[[Leave apartment|AptBuildingHallwayMain]]''\
<<nobr>> <<if $w.xr.br.shr or $w.xr.br.cuk>> <<set _scn to random(1,4)>> <<else>> <<set _scn to random(1,3)>> <</if>> <<if _scn lte 3>> <<randompic 1 10 bgr>> <<else>> <<randompic 1 4 bgrn>> <</if>> <<set $w.xr.br.evt.loc to either(1,2,4,5,9)>> <<set $btm to $gameDate.getHours()>> <</nobr>> I absent-mindedly opened the door to the Guest Room, thinking about hopping on my laptop. //Oh shit!// I thought as I soon as I saw Brian<<if _scn is 4>>'s giant naked cock<</if>>. //I forgot he was here!// "Sorry! I totally forgot you were in here! Maybe I'll go grab another cup of coffee first!" I quickly backed out and shut the door behind me. \ <<if _scn is 4>><br>Even though we were roommates for a couple of years in college and grad school, I could still count on one hand the number of times I had seen Brian naked. Somehow we managed to avoid it for the most part . . . that is, until this week, apparently. <<if $w.xr.br.cuk>>The thought of that monster aggressively spreading the petals of my wife's delicate flower, so to speak, caused a hard lump to form in my throat. And an even harder lump to form in my shorts.<</if>><br><</if>>\ <<randompic 1 4 hcoffee>> I took my time going to the kitchen and pouring myself a cup of coffee. By the time I got back to the Guest Room, Brian was no longer there. <<link [[Continue|GuestRoomMain]]>> <<addminutes 15>> <</link>>
<<set _scn to random(1,5)>> <<if _scn is 2>> <<randomvideo 1 15 wbgrbj>> <<set $h.rous += Math.clamp((5 * $h.pref.cuk),10,20)>> <<elseif _scn is 4>> <<randomvideo 1 17 wbgrfuck>> <<set $h.rous += Math.clamp((10 * $h.pref.cuk),10,20)>> <<else>> <<randompic 1 8 wbsleep>> <</if>> <br><br> <<if _scn is 2 or _scn is 4>> //Oh my god! They are at it again! I never knew $w.fn was so insatiable----no wonder I couldn't satisfy her by myself! And so early in the morning! Did they sleep at all last night?//<br><br> This last thought lingered at the edge of my mind a little too long.<br><br> //Did they literally stay up fooling around all night long?// <div id="options"><h3>What do you want to do?</h3> <<if $h.rous gte 50>><<link "Watch them and jerk off">> <<replace "#options">><<showvideo hwatching_jo1>><<set $h.rous -= 20>><br><br><</replace>> <</link>><br><</if>></div> <<link [[Wait in the Living Room|LivingRoomMain]]>><<addminutes 10>><</link>> <<else>> //They haven't noticed me yet. I love that they get along so well . . . I just hope that I don't have anything to worry about.//<br><br> <h3>What do you want to do?</h3> [[Let them sleep|LivingRoomMain]]<br> [[Wake them up|GR_BWWake]] <</if>>
<<set _scn to random(1,7)>> <<if _scn is 2 or _scn is 1>> <<randomvideo 1 15 wbgrbj>> <<set $h.rous += Math.clamp((5 * $h.pref.cuk),10,30)>> <<set $w.rous += 10>> <<elseif _scn is 4 or _scn is 3>> <<randomvideo 1 17 wbgrfuck>> <<set $h.rous += Math.clamp((10 * $h.pref.cuk),10,30)>> <<set _wr to random(10,50)>> <<set $w.rous -= _wr>> <<set $w.xr.br.x += 1>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 0.5>> <<set $w.xr.br.cm += Math.round(_wr / 10)>> <<else>> <<if $gameDate.getHours() lt 22 and $gameDate.getHours() gte 9>> <<randompic 1 8 wbgrbed>> <<else>> <<randompic 1 8 wbsleep>> <</if>> <</if>> <br> <<if _scn lte 4>> //Oh my god! They are at it again! I never knew $w.fn was so insatiable----no wonder I couldn't satisfy her by myself! How the fuck does Brian keep up with her?!//<br><br> <div id="options"><h3>What do you want to do?</h3> <<if $h.rous gte 50>><<link "Watch them and jerk off">> <<replace "#options">><<showvideo hwatching_jo1>><<set $h.rous -= 30>><br><br><</replace>> <</link>><br><</if>></div> <<link [[Wait in the Living Room|LivingRoomMain]]>><<addminutes 10>><</link>> <<else>> //They haven't noticed me yet. I love that they get along so well . . . I just hope that I don't have anything to worry about.//<br><br> <h3>What do you want to do?</h3> [[Leave them alone|LivingRoomMain]] <</if>>
<<nobr>> <<if $w.xr.br.shr or $w.xr.br.cuk>> <<set _scn to random(1,4)>> <<else>> <<set _scn to random(1,3)>> <</if>> <<if _scn lte 3>> <<randompic 1 10 bgr>> <<else>> <<randompic 1 4 bgrn>> <</if>> <</nobr>> The door to the Guest Room was open. "Knock, knock," I said, announcing my presence to Brian. <<= either("He seems preoccupied with something on his phone.","He looks like he's deep in thought.","He has been dealing with a lot lately, but he seems to be hanging in there.")>> "Hey, what's going on, brother?" !!!What do you want to do? //Not much to do right now . . .// !!!Where do you want to go? [[Living Room|LivingRoomMain]]
<<nobr>> <<randompic 1 8 wbsleep>> <<set $w.loc to 0>> <<set $w.xr.br.evt.loc to 0>> <<set $btm to $gameDate.getHours()>> <<set $wtm to $gameDate.getHours()>> <<set $w.xr.br.evt.slp to false>> <</nobr>> "Hey, guys?" I weakly broke the silence, my voice barely escaping. Not surprisingly, no one moved a muscle. I cleared my throat and tried again. "Hey, guys?" //A little more bass in my voice, a little louder . . . good job!// $w.fn slowly opened her eyes and looked in my direction. "What's up, baby?" she asked groggily. "Can you guys get up? I need to use the computer." "Oh, yeah, of course," she replied, drawing her body closer to Brian's. "Give me a minute to get Brian up." "OK . . . Um, I guess I'll wait in the Living Room?" I closed the door behind me and sat on the couch to wait for them. <<timed 3.5s>>\ [img[images/wbwkwk1.jpg]] After a couple of minutes, $w.fn and Brian emerged, naked, from the Guest Room. They walked in each other's arms straight to the Master Bedroom without even stopping to say a word. At least to me. I could kind of make out $w.fn saying, under her breath, something about "getting fucked in the morning . . . better than a cup of coffee." //Well, I can't argue with that, but does my wife //have// to get it from someone else? I really need to figure out a way to satisfy her myself.// [[Continue|GuestRoomMain]]<</timed>>\
<<randompic 1 3 wbcoffeek>> //Oh! Looks like $w.fn and Brian are having some coffee. Do I have time to join them for a cup or should I just grab one by myself and leave them alone?// !!!What do you want to do? [[Join them for a cup of coffee|K_WBJoinCoffee]] [[Grab a cup of coffee alone|K_AloneCoffee]] !!!Where do you want to go? [[Living Room|LivingRoomMain]]\
<<randompic 1 6 wbklunch>> $w.fn and Brian are hanging out here in the kitchen. Looks like they might be making something to eat. !!!What do you want to do? [[Grab a cup of coffee|K_AloneCoffee]] [[Grab a quick snack|K_AloneSnack]] !!!Where do you want to go? [[Living Room|LivingRoomMain]]
<<nobr>> <<set _img to random(1,7)>> <<if _img lte 3>> <<randompic 1 3 wbcooking>> <<elseif _img gte 4>> <<randomvideo 4 7 wbcooking>> <</if>> <</nobr>> Brian is helping $w.fn cook dinner. I guess I'll leave them to it! !!!What do you want to do? <<link "Wait for $w.fn and Brian to finish">> <<set _scene to random(1,2)>> <<if ($w.xr.br.cuk or $w.xr.br.shr) and _scene is 1>> <<goto [[K_WBKitchen_Cuck]]>> <<else>> <<run $gameDate.setHours(18)>> <<run $gameDate.setMinutes(0)>> <<goto [[KitchenMain]]>> <</if>> <</link>> !!!Where do you want to go? [[Back to the Living Room|LivingRoomMain]]\
<<nobr>> <<set _img to random(1,14)>> <<if _img lte 12>> <<randompic 1 12 wbdinner>> <<else>> <<randomvideo 1 2 wbdinnerv>> <</if>> <</nobr>> $w.fn set the table for all three of us, since Brian was able to join us for dinner tonight. //It's pretty awesome being able to hang out with both my best friend and the love of my life this week! Too bad it's not the best circumstances that led to Brian staying here, but it's still pretty cool . . . .// <<link [[Finish eating|KitchenMain]]>> <<run $gameDate.setHours(19)>> <<run $gameDate.setMinutes(0)>> <</link>>\
<<randompic 1 3 bdishes>> //Looks like Brian is helping $w.fn clean up tonight.// !!!What do you want to do? //Nothing to do right now.// !!!Where do you want to go? [[Living Room|LivingRoomMain]]\
<<nobr>> <<set _scn to random(1,25)>> <<if _scn lte 6>> <<randompic 1 6 hwkcoffee>> <<elseif _scn gte 7 and _scn lte 11>> <<randompic 1 5 wbcoffeek>> <<elseif _scn gte 12 and _scn lte 19>> <<randompic 1 8 bcoffee>> <<else>> <<randompic 1 6 wcoffee>> <</if>> <<addminutes 20>> <</nobr>> <<nobr>> I poured myself a cup of coffee and joined $w.fn and Brian.<br><br> "Got anything big planned today?" Brian asked me.<br><br> <<if $w.xr.br.x gt 0>> //Though this was my apartment ---- and she was my wife ---- why did I feel like the third wheel when I was around Brian and $w.fn?// <<set $h.pref.cuk += 0.2>> <br><br> <</if>> We talked for a little while as we sipped on our drinks, building up enough energy to face the rest of the day. <</nobr>> [[Continue|KitchenMain]]
<center><<button [[Home|PhoneMain]]>><</button>><<button "Off" $phonepassage>><<unset $phonepassage>><</button>></center> <<nobr>> <div class="row"> <<if $h.xr.w.slf gt 0>> <<for _a to 1; _a lte $h.xr.w.slf; _a += 1>> <<if _a lte 3>> <div class="column" style="width:19%;height:auto;"> <img @src="'images/wself' + _a + '.jpg'"> </div> <<elseif _a gte 4 and _a lte 12>> <div class="column" style="width:19%;height:auto;"> <video @src="'images/wself' + _a + '.mp4'" autoplay loop muted></video> </div> <<elseif _a gte 13 and _a lte 17>> <div class="column" style="width:19%;height:auto;"> <img @src="'images/wself' + _a + '.jpg'"> </div> <<elseif _a gte 18 and _a lte 24>> <div class="column" style="width:19%;height:auto;"> <video @src="'images/wself' + _a + '.mp4'" autoplay loop muted></video> </div> <</if>> <</for>> <</if>> </div><</nobr>> <br><br><center><<button [[Home|PhoneMain]]>><</button>><<button "Off" $phonepassage>><<unset $phonepassage>><</button>></center><br> <<nobr>> <<if $intexts.rd.b>> <<set _vid2 to 16>> <<elseif $intexts.rd.a>> <<set _vid2 to 12>> <<else>> <<set _vid2 to 0>> <</if>> <center><<for _b to 7; _b lte _vid2; _b += 1>> <video @src="'images/hbossvid' + _b + '.mp4'" style="width:40%;" autoplay loop muted></video> <</for>></center> <</nobr>> <center><<button [[Home|PhoneMain]]>><</button>><<button "Off" $phonepassage>><<unset $phonepassage>><</button>></center>\
[img[images/soon.jpg]] <center><<button [[Home|PhoneMain]]>><</button>><<button "Off" $phonepassage>><<unset $phonepassage>><</button>></center>\
[img[images/f1t1.jpg]] $w.fn was already dressed for bed as I entered the room. Looking gorgeous as always. "Hey, babe," she said. "Hurry up and get ready. I want to talk to you about something before we go to sleep." //Hmmm . . . . I wonder what it could be this time. The last <<if $w.xr.h.t.bd1>>few times<<else>>time<</if>> she wanted to talk to me at bedtime <<if $w.xr.h.t.bd1>>weren't<<else>>wasn't<</if>> the best conversation<<if $w.xr.h.t.bd1>>s<</if>>.// [img[images/f1t2.jpg]] I was the tiniest bit self-conscious thinking about this as she lay in bed watching me change for bed. It's weird that I suddenly, after all the years since we met----ever since that night----I don't always feel comfortable around $w.fn. //That's ok. We're working to improve our relationship now. I wasn't the best husband I could be, and she gave me the chance to make this all better. We still love each other. She's still my wife//, I reminded myself as I climbed into bed. [img[images/f1t3.jpg]] She just looked at me for what seemed like an eternity (though I'm sure it was less than a minute). Looked //into// me, as if she were trying to discover my deepest thoughts and feelings, my most hidden secrets. Finally, she laid down with me and got comfortable. I guess she found what she was looking for. $w.fn leaned up on her elbow, hovering over me, rubbing my chest. [img[images/f1t4.jpg]] "Soooo . . . ," she finally broke the silence. "Obviously, you know, <<if $w.xr.br.x gt 0 and not $w.xr.br.cht>>while Brian was here, we kinda used him to<<else>>we talked about using someone else to<</if>> . . . um . . . //satisfy// my urges . . . ." Her voice trailed off at the end. A look of uncertainty flashed in her eyes for just a moment before she seemed to regain her confidence. "So, I hooked up with someone today. I found someone on //FuckR// and . . . I met up with them." She paused for a moment before continuing. "How do you feel about that?" I responded immediately. Didn't want to her words to linger too long in the air. I hoped that breaking the silence would help to diminish the impact of what she said, of what she //did//. "It's fine . . . it's what we agreed on," I said. "No, babe. //Really//. How do you //feel//?" she repeated. "Really. It's ok.<<if $h.pref.cuk gt 5>> In fact, one might say it's //more// than just ok.<</if>>" She looked at me again, trying to gauge the sincerity of my answer, probably. "Cool, cool, cool," she finally replied. "Well then . . . do you want to hear the details?" <<nobr>> <span id="opts"><h3>Do you want to hear the details?</h3> <<link "Yes, please tell me more">> <<replace "#opts">> <<include [[BR_Fkr1_Talk2]]>> <</replace>> <</link>><br> <<link "No, I don't want to know">> <<replace "#opts">> <<include [[BR_Fkr1_Talk3]]>> <</replace>> <</link>></span> <<set $w.xr.h.t.fkr1 to true>> <</nobr>>
[img[images/bwgdbye1.jpg]] As I entered the Living Room, I could see that Brian and $w.fn were already here, saying something I couldn't hear to each other, softly. //What's going on? Why so serious?// "Good morning, guys . . . . What's up? Something going on?" I asked. Brian spoke up. "Hey bro! No, nothing bad! In fact, I'd say it's pretty damn good!" He turned towards me with a smile on his face. "So I was working on trying to liquidate some assets and move some money around pretty quickly . . . you know, to try to get myself a new place and all that. And it turns out, I had an investment property that my manager had been getting ready to put back up on the market after the last tenants moved out a couple months ago. And, they literally just finished all the work last week! So basically, I own a newly renovated, fully furnished single-family home, all paid for, ready for me to move in. Today. I'm actually heading out right now to go pick up the keys from the property manager and then I'll be out of your hair!" "Woah! Talk about good luck!" "Nah, I mean, the timing was pretty uncanny, but you know what they say: 'Fortune favors the prepared.' I never planned on being in the position to move into this house myself, but I have a couple of them for investment purposes. Rent pays the mortgage and property manager's fees----I basically get a free house. The whole system is set up to be unfair." //Of course I already know all that. We literally lived together while we went to school for our business degrees!// I thought, as Brian explained real estate to me. I had to chuckle. Sometimes I think he forgets he's talking to a person and just goes into auto-pilot. //Is it still mansplaining if //I'm// a man?// [img[images/bhgdbye1.jpg]] "Dude, check out the house, though!" He brought a photo up on his phone and turned it around to show me. "Here. This is the real estate listing. I haven't had a chance to take it down yet." I have to admit, the house was nice. Very nice. I can't imagine how expensive a house like that would be in the city. "So, you're out in the suburbs, huh? Which side, north or south?" "Nah, man, this is in the City. I mean, not down here in Center City. It's out there by your office." //Holy Shit! If //this// house is out in that part of the city . . . I mean, I don't know exactly, but that has to be worth at least 2 to 3 million dollars!// "That's a really expensive part of town! How much is the house worth, if you don't mind me asking?" "The last tax assessment put it at about 2.7 mill," Brian reported. I whistled in amazement. "It's a beautiful house. I'll have to come visit. Do you need any help with anything today?" "Nah. But I appreciate the offer. I have a lot of running around to do, and I guess later on I'm gonna have to meet up with Shay. We definitely have some stuff to talk about now that we've had a week or so to cool off." "Yeah, well let me know if you need anything. Even if you just need to talk. I know this is all gonna be a lot." [img[images/bhgdbye2.jpg]] "Thanks, man. I appreciate it. I appreciate //everything//. You've always been there for me. I'll definitely have some kind of housewarming party once I get everything settled." Brian shook my hand as a show of our bond. <<if $w.xr.br.x gt 0>>\ Brian looked at me and gestured with his head toward $w.fn. I nodded in subtle agreement. "OK, well. I guess our week of fun is over. I gotta say, I have never had any friend go so far to help me get over a failed relationship before. Hell, I think when my last girlfriend and I broke up, $h.fn bought a couple of shots!" We all chuckled, not really wanting to acknowledge the elephant in the room. "What you did for me . . . well, I didn't wake up with a hang-over this morning, so I'd say it's a couple of steps up!" He always did tend to use humor to defuse tense situations. It was one of his more charismatic characteristics. [img[images/wb_close.jpg]] He leaned in close to $w.fn and lowered his voice. "But seriously, thank you. All I can say is . . . //damn//. This is a week I will never forget." In response, $w.fn just averted her eyes and turned her body into his embrace. Their body language was really very sexy, even in the way they were saying goodbye to each other. //I'm going to choose not to read too much into any of this. These are the two people I trust most in the world and I don't believe that they would ever want to hurt me. On the other hand, it might not be a bad idea to keep them away from each other for a little while, let things cool down.// \<</if>> Picking up his bags from our entryway, Brian sighed. "Well, I guess that's it for now. My //RideMe// just got here. Again, guys, thank you. As soon as I get everything settled, we'll get back together." With that, Brian walked out into the hallway and disappeared into the elevator.<<if $w.xr.br.x gt 0>> $w.fn and I stood at the open door watching for what seemed like a long time after he was gone. This had definitely been one hell of a week----I think we could safely say that nothing in our relationship will ever be the same again.<</if>> [[Continue|LivingRoomMain][$w.xr.br.evt.last to true]]\
<<nobr>> <<randomvideo 1 4 bshwr>> <<set $h.pref.cuk += 0.1>> <</nobr>> I thoughtlessly opened the Bathroom door, not realizing my mistake until it was too late. //Oh shit! Brian's in the shower!// I immediately closed the door behind me, but not before the sight of his giant cock was burned into my memory. <<nobr>> <<if $w.xr.br.cuk or $w.xr.br.shr>><br>//How in the hell does that thing fit inside $w.fn? It looks like it would permanently re-shape her body!//<br><br> <<set $h.pref.cuk += 0.15>> <</if>> <<link [[Back to the Living Room|LivingRoomMain]]>> <<addminutes 10>> <</link>> <</nobr>>\
<<if previous() isnot "Event1_CP_Start">>\ $h.fn passed out almost immediately after he came. //Well, then, I guess that's that.// I chuckled as I quickly wiped the cum off my body and covered myself somewhat so I could go to the bathroom and wash more properly. [img[images/wnd1.jpg]] I tried to move swiftly past the Guest Room where Brian should be sleeping. //Oh God, I hope he didn't hear us fucking!// <<else>>\ <</if>>\ His door was slightly ajar and there was a little bit of blue light coming out, like a computer or phone was on. //I should make sure he's ok and doesn't need anything//, I thought. [img[images/wnd2.jpg]] As I looked through the small crack in the door, I saw something that I knew I shouldn't be seeing. But it was impossible for me to look away. <<showvideo bjo1>> //Maybe he //did// hear us!// At first I was terrified. Then the thought of him hearing----even intentionally //listening//----connected with what I was seeing in front of me. //Wait, is he doing that thinking about //me//? That is //so// fucking hot!// <<showvideo bjo2>> Time had slowed to a stop, the silence impenetrable . . . until it was //penetrated// by a sudden deep moan. "$w.fn . . . ." I heard my name escape his lips at the same time as I saw Brian tense up and climax. My surroundings came rushing back into focus and I quickly scampered down the hallway into the bathroom. <<showvideo wshowermast3>> I couldn't help myself. Even though $h.fn and I had just slept together, the sight of Brian stroking his big, hard cock----//Sooo hard//, I thought----was enough to push me right up to the edge. I hadn't been planning on taking a full shower, really just using a washcloth to wipe off the remnants of $h.fn's cum. I changed my mind. I just had to cum again. It didn't take me too long to finish myself off in the shower, and then I went right to bed next to my husband. <<nobr>> <<set $w.rous += 20>> [[Continue|E1_NextMWife1]] <</nobr>>\
<<nobr>> <<randompic 1 4 hbalcony>> <<addminutes 30>> <</nobr>> [[Continue|BalconyMain]]\
<<nobr>> <<randompic 1 8 hsmoke>> <<set $inv.cig -= 1>> <<addminutes 15>> <<set $h.tox.cig += 1>> <</nobr>> [[Continue|BalconyMain]]\
<<if ($h.pref.wex gt 3 or $w.pref.ex gt 3) and (GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun")>> As we stepped out into the street, I could feel the sun shining from its mid-day perch. <br><br> "You know what baby? Why don't we walk home? I'm having such a nice time, I kinda don't want it to end just yet."<br><br> $w.fn looked at me and smiled. "Sure, baby! That sounds like fun!"<br><br> //Hopefully, this will help improve our relationship a little bit . . . .//<br><br> <<link [[Walk home|WH_LunchWalkHomeMain]]>> <<addminutes 10>> <</link>> <<else>> <<if passage() is "WH_LunchDateB2">> [img[images/hwlchrm1.jpg]]<br><br> <<elseif passage() is "WH_LunchDateB3">> <<randompic 2 3 hwlchrm>><br><br> <</if>> After lunch, we hopped in another RideMe car and headed home.<br><br> <<link [[Ride home|LivingRoomMain]]>> <<addminutes 10>> <</link>> <</if>>
<<set $w.xr.h.day.tdy += 2>> <<set _walk to random(1,10)>> <<if visited() lte 10 and _walk is 10>> [img[images/hwlchwkb1.jpg]]<br><br> We walked through the city streets----the weather was perfect, as usual, not too hot, not too cold.<br><br> <<set $w.xr.h.day.tdy += 1>> After about a half hour, we arrived at home. $w.fn went to the <<printwloc>> and I decided to just hang out for a bit.<br><br> <<link [[Walk home|LivingRoomMain]]>> <<addminutes 30>> <</link>> <<elseif not $w.xr.h.rel.m and _walk gte 9>> [img[images/hwlchwkd1.jpg]]<br><br> We walked through the city streets----the weather was perfect, as usual, not too hot, not too cold.<br><br> <<link [[Walk home|LivingRoomMain]]>> <<addminutes 30>> <</link>> <<elseif $w.pref.ex gte 10 and _walk lte 2>> <<include [[WH_LchExhibMain]]>> <<else>> <<if $w.pref.ex gt 4>> <<set _img to random(1,2)>> <<if _img is 1>> <<randompic 1 8 hwlchwka>> <<else>> <<randompic 1 2 hwlchwkc>> <</if>> <<else>> <<randompic 1 8 hwlchwka>> <</if>> <br><br> We walked through the city streets----the weather was perfect, as usual, not too hot, not too cold.<br><br> //This is nice . . . . Hopefully, our relationship is growing stronger . . . .//<br><br> After about a half hour, we arrived at home. $w.fn went to the <<printwloc>> and I decided to just hang out for a bit.<br><br> <<link [[Walk home|LivingRoomMain]]>> <<addminutes 30>> <</link>> <</if>>
<<set _scene to random(5)>> <<if not $h.xr.bth.tm>> <<include [[OfficeBethTeam]]>> <<elseif $h.xr.bth.tmwk is 7 and not $h.xr.bth.lt>> <<include [[OfficeBethLate]]>> <<elseif $h.xr.bth.rel gte 15 and _scene gt 6>> /* Hold for Next Scene */ <<include [[OfficeBethNext]]>> <<else>> <<include [[OfficeBethStd]]>> <</if>>
<<set _scene to random(3)>> <<if $h.evt.wk.rd is 0>> <<include [[OfficeBossFirst]]>> <<elseif GameDays[$gameDate.getDay()] is "Mon" and $h.evt.wk.rd is 1>> <<include [[OfficeBossNext]]>> <<elseif $w.xr.rd.vd and not $w.xr.rd.cw and $h.xr.w.slf gte 17 and $h.xr.w.slf lte 23>> <<include [[OfficeBossShowNTell1]]>> <<elseif $w.xr.rd.cw and not $w.xr.rd.m and _scene is 3 and $h.xr.bth.lt>> <<include [[OfficeBossForgot1]]>> <<else>> <<randompic 1 6 rdworkmisc>><br><br> //I was so lucky to get this job right out of college! Mr. Day is an amazing man----a personal hero of mine! He built this business from the ground up. And I can see just how he managed to accomplish this. He is such a hard worker! No matter when I walk past his office, he is always so busy and focused.<br><br> I can learn a lot from him!//<br><br> <<include [[OfficeAMLinks]]>> <</if>>
<<link "Work until lunch">> <<run $gameDate.setHours(12)>> <<run $gameDate.setMinutes(0)>> <<if $w.pov>> <<set $nextpassage to "OfficeLunchMain">> <<goto "Meanwhile_Selector">> <<else>> <<wpovstats>> <<goto "OfficeLunchMain">> <</if>> <</link>>
I took a few minutes to get myself settled. Even though I was <<if $gameDate.getHours() is 7>>a little early<<elseif $gameDate.getHours is 8 and $gameDate.getMinutes() lt 10>>right on time<<elseif $gameDate.getHours() is 8 and $gameDate.getMinutes() gte 10 and $gameDate.getMinutes() lte 30>>a little late<<else>>late<</if>>, I was in no rush to jump right into work. "Hey, $h.fn! How was your weekend?" [img[images/rd1.jpg]] I lifted my head up to see my boss hovering over my cubicle. Richard Day was a bit of a professional hero and mentor of mine. He had started this firm by himself just out of grad school about twenty years ago, building it—and himself—into the success of today. "Not too bad, Richard. Just spent some time at home with the wife," I thoughtlessly responded. As soon as I heard the words escape my mouth, I remembered that his wife had passed away last year. "Oh my God, I'm sorry," I quickly tried to cover up my insensitivity. "No, don't worry. It's fine," he replied. "If Julie's passing taught me anything, it's that we should enjoy the time we have left." Richard looked around the office, then leaned in closer to me and lowered his voice. "Besides," he added. "I've been doing pretty well in that area myself lately. Turns out, being a successful, wealthy, relatively attractive widower is a winning cocktail when it comes to a certain type of woman. I barely even have to try at the clubs downtown, they are practically fighting each other to go home with me." He lowered his voice and leaned in just a little bit more. "Between you and me, I haven't woken up alone on a Saturday or Sunday morning in the past two months." "Really?! That's pretty awesome," I said. "So, you've been going out a lot, huh?" [img[images/rdoffice1.jpg]] "Yeah, I mean, the condo is pretty quiet by myself. It was rough during the lock-down. I really missed Julie. Now that things are getting back to normal, I decided to get out more." He paused for just a beat. "You know, you ought to come out with me one of these nights. You can bring your wife too. Women love to dance, in my experience." "I think my clubbing days are pretty much behind me, but I'll see what $w.fn thinks about it." //Don't want to just completely turn down the boss, but this should get him off my back for now. I can blame it on $wifefirst if I decide not to go.// "Great, looking forward to it." He changed the subject, "You're going to get those reports to me before COB, right? I might want to bring you in on this new account later in the week, so I want your other tasks cleared ASAP. Thanks!" He didn't wait for me to respond before he turned and walked away. //Hmmm . . . Hanging out with Richard and building a more personal relationship might not be a bad career move. Maybe I should give the club a little more consideration.// <<set $h.evt.wk.rd to 1>><<include [[OfficeAMLinks]]>>
It was Monday morning—definitely not my favorite time of the week—and I was dragging a little bit. I turned on my computer and walked away as it ran through its normal startup routine. //I need some coffee immediately//, I thought, as I headed down the hall into the break room. [img[images/hworkcoffee1.jpg]] I definitely appreciated that Mr. Day had invested in some decent coffee machines here. I made my selection and waited for the cup to brew. "Need a little pick-me-up already, huh?" I heard the voice of my boss come from behind me. "Me too. . . . How are you doing, $husbandfirst?" "Not too bad, Richard," I responded. "Just trying to wake up a bit more. Ha ha ha." "Have you given joining me at the club any more thought?" "I completely forgot to bring it up to $w.fn . . . I'll do that tonight." I really had forgotten. //Hmmm . . . Maybe going out dancing would be a good way to work on these problems we've been having lately. I think maybe I will ask her.// "Well, if it helps to see how much fun I've been having, take a look at these." Richard pulled his phone out of his pocket and started scrolling through some pictures. He finally found one that he liked and leaned over to show me the pics. <span id="bosspic">[img[images/hbossvid1.jpg]]<<set _vid to 1>></span> \ <<set $h.evt.wk.rd to 2>>\ <span id="nextpic"><<link "Next picture">> <<set _vid += 1>> <<if _vid lte 5>> <<replace "#bosspic">><<= '[img[images/hbossvid' + _vid + '.jpg]]'>><</replace>> <<else>> <<set $h.rous += 20>> <<replace "#bosspic">><<showvideo hbossvid6>><</replace>> <<replace "#nextlink">>[['"Woah!"'|BossVidWoah]]<</replace>> <<replace "#nextpic">><</replace>> <</if>> <</link>><br></span>\ <span id="nextlink">[['"OK, I'm convinced"'|BossVidSkip]]</span>
[img[images/rdoffice2.jpg]] "Woah!" Richard quickly pulled his phone away, hiding its view. "Sorry, you weren't supposed to see that," he said. [['"Who is that?"'|BossVidMore]] [['"I saw nothing . . ."'|BossVidNM]]
[img[images/rdoffice2.jpg]] "You're right, that does look like a lot of fun." At that point, I just wanted to end this awkward conversation. I'm not even sure if I was just humoring him or being sincere. //I mean, we haven't been out to a club since before the pandemic . . . hell, probably since college. Maybe it //could// be fun.// "No need to pretend for my sake," Richard said resignedly. "I know that the last thing a young couple like you would want to do on your day off is hang out with your boss." He sighed. "But, well, we've worked so closely together for these last few years, that you guys here in the office are really my closest friends. I never imagined that I would lose Julie so young and didn't really maintain any of the friendships from before we were married." His voice trailed off a bit. I couldn't imagine being in his place. I suddenly felt a bit of shame for my previous impatience. I wouldn't necessarily say that I was great at reading people's emotions, but I didn't feel like he was being manipulative by bringing up his wife. He wasn't trying to guilt me into hanging out with him; he just sincerely didn't have too many other people he could connect with at this point in his life. //That's pretty sad//, I thought. "I will definitely talk to $w.fn about it," I responded. "We haven't had a good dance night since before the virus. I think she'll be up for it." <<include [[OfficeAMLinks]]>>\
"Who is that?" I asked him. From the quick glance, it looked like a beautiful young blonde girl. And it looked like Richard was making out with her. //I need to get a better look . . .// "Look, this could be a Human Resources nightmare. Please just forget you saw that." "Don't worry about it, Richard. We're friends aren't we? I don't mind seeing pictures like that . . . In fact, I wouldn't mind seeing more like that." I tried to convince him to show me the picture again. Richard looked at me silently for a few seconds, like he was considering something. "Well, we //are// friends, right?" He paused again. "Alright, well, if you send me a text after hours, outside of the office, asking me to send you some videos . . . then I should be able to send them to a friend." Another beat or two and he continued, "Maybe you will consider coming out to the club? Of course, you could bring $w.fn, as I already told you." "I will definitely talk to $w.fn about it. I'm not sure if she'll want to come, but I think you can count on me! I will just need to figure out when I can make it." <<include [[OfficeAMLinks]]>>
"I saw nothing," I feigned innocence. "It certainly looks like you have been having a lot of fun at the club." "I told you . . . Maybe you will consider coming out with me? Of course, you could bring $wifefirst, as I already told you." He paused for a second. "And thanks. That could have been a Human Resources nightmare." <<include [[OfficeAMLinks]]>>
<<link "Work the rest of the day">> <<if $w.pov>> <<set $nextpassage to "OfficeCOB">> <<goto "Meanwhile_Selector">> <<else>> <<wpovstats>> <<goto "OfficeCOB">> <</if>> <<run $gameDate.setHours(17)>> <<run $gameDate.setMinutes(0)>> <</link>>
/* insert scene here */ <<set $h.evt.wk.w to 0>> <<include [[OfficeCOB]]>>
<<randomvideo 1 2 shcpstart>> <<showvideo shcpstart3>> !!!What do you want to do? <<link [['Get in the shower with ' + $w.fn|Shower_CP_FPStart]]>> <<set $SexScene to true>> <<set $Partner1Name to $w.fn>> <<set $root to "Shower_CP_">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to Math.clamp($h.rous / 100,0,3)>> <<if $povmod is 0>><<set $povmod += 0.2>><</if>> <<set $npcmod to Math.clamp((($w.rous / 100) * ($w.sat / 100)),0,2)>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<set _HCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _HCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>> [[Leave|LivingRoomMain]]\
<<showvideo shcpstart4>> <<randomvideo 5 13 shcpstart>> <div id='sexmenu'><<include [[Shower_CP_FPOptions]]>></div>\
<<if not $w.xr.h.t.n1>><<set $NPCCumPoints to Math.clamp($NPCCumPoints,0,99)>><</if>>\ <<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ !!!What do you want to do? [["Finger " + $w.fn + "'s pussy"|Shower_CP_FPA1]] [["Eat " + $w.fn + "'s pussy"|Shower_CP_FPB1]] [["Ask " + $w.fn + " to give you a handjob"|Shower_CP_FPC1]] [["Ask " + $w.fn + " to give you a blowjob"|Shower_CP_FPD1]] ''[["Enough foreplay, fuck " + $w.fn + "!"|Shower_CP_SexStart]]'' <<elseif $NPCCumPoints gte 100>>\ <<include [[Shower_CP_WCum1]]>> <<elseif $POVCumPoints gte 100>>\ <<include [[Shower_CP_HCum1]]>> <</if>>\
<<randomvideo 1 6 shcp_fpa>> \ <<nobr>> <<set _cpplus to (random(5,10))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Shower_CP_FPOptions]]>></div>\
<<randomvideo 1 7 shcp_fpb>> \ <<nobr>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Shower_CP_FPOptions]]>></div>\
<<randomvideo 1 3 shcp_fpc>> \ <<nobr>> <<set _cpplus to random(1,20)>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += _cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <</nobr>>\ <div id='sexmenu'><<include [[Shower_CP_FPOptions]]>></div>\
<<randomvideo 1 7 shcp_fpd>> \ <<nobr>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += _cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <</nobr>>\ <div id='sexmenu'><<include [[Shower_CP_FPOptions]]>></div>\
<<randomvideo 5 13 shcpstart>> <div id='sexmenu'><<include [[Shower_CP_SexOptions]]>></div>\
<<nobr>> <<timed 2s>><<shakescreen 2s>> "Oh, baby! I love you! I'm cumming!" $w.fn moaned sensually.<br><br> //I love shower sex!//<br><br> <<set _psg to passage()>> <<set $NPCCumPoints to 0>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set $w.xr.h.cm += 1>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.h.day.cmdy to true>> <<set $npcmod to $npcmod * 1.1>> <<if passage() is "Shower_CP_SexC1">> <<showvideo shcp_scwc1>><br><br> <</if>> <div id='sexmenu'> <<if _psg.substring(0,12) is "Shower_CP_FP">> <<include [[Shower_CP_FPOptions]]>> <<elseif _psg.substring(0,13) is "Shower_CP_Sex">> <<include [[Shower_CP_SexOptions]]>> <</if>> </div> <</timed>> <</nobr>>\
I pulled out of $w.fn and she dropped down in front of me. This woman could be so sexy sometimes----like now, on her knees, mouth open, tongue out, waiting for me to cum on her face. One of the greatest benefits of shower sex is the ability to just cum anywhere, as the water will ultimately wash all the mess away. <<timed 2s>><<shakescreen 2s>><<showvideo shcp_hc>> "Oh shit! Here it comes, baby!" I blurted out just before reaching my orgasm and shooting my seed onto my wife's beautiful face. "Oh! I love you, $w.fn! I love you!" "Mmmmm . . ." she moaned in satisfaction. "I love you too, baby! Now get out of here so I can clean up." I wrapped myself in a towel as I stepped out of the shower, quickly drying off and throwing my clothes back on. <<link [['Wait for ' + $w.fn + ' in the other room . . .'|LivingRoomMain]]>> <<unset $SexScene>> <<set $Partner1Name to "">> <<set $w.rous += Math.round($NPCCumPoints / 5)>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<addminutes 30>> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <<unset $root>> <</link>><</timed>>\
<<if not $w.xr.h.t.n1>><<set $NPCCumPoints to Math.clamp($NPCCumPoints,0,99)>><</if>>\ <<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ !!!What do you want to do? [[Doggystyle|Shower_CP_SexA1]] [[Side fuck|Shower_CP_SexB1]] [[Cowgirl|Shower_CP_SexC1]] [[Reverse cowgirl|Shower_CP_SexD1]] <<elseif $NPCCumPoints gte 100>>\ <<include [[Shower_CP_WCum1]]>> <<elseif $POVCumPoints gte 100>>\ <<include [[Shower_CP_HCum1]]>> <</if>>\
/* Doggystyle */\ <<if previous() isnot passage()>><<randomvideo 1 2 shcp_sa0>><br><</if>>\ <<randomvideo 1 8 shcp_sa>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Shower_CP_SexOptions]]>></div>\
/* Side */\ <<randomvideo 1 8 shcp_sb>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Shower_CP_SexOptions]]>></div>\
/* Cowgirl */\ <<if previous() isnot passage()>><<showvideo shcp_sc0>><br><</if>>\ <<randomvideo 1 6 shcp_sc>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to random(5,20)>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Shower_CP_SexOptions]]>></div>\
/* Reverse Cowgirl */\ <<if previous() isnot passage()>><<showvideo shcp_sd0>><br><</if>>\ <<randomvideo 1 10 shcp_sd>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Shower_CP_SexOptions]]>></div>\
<<nobr>> <<randomvideo 1 4 bshwr>> <<set $w.rous += 30>> <</nobr>> I was absent-mindedly cleaning the apartment. I guess I didn't hear the shower running. So I accidentally walked into the Bathroom when Brian was in there. //Holy fucking God-damned monster cock mother fucker!// The sight never fails to shock me. <<randomvideo 1 2 wbshpk>> //I simply //cannot// get over how big Brian's dick is. I literally have never seen anything like that in real life. I think that thing might even rival the biggest dicks I've ever seen in porn.// Incredibly turned on at the mere sight, I started to touch myself. //No!! You can't get carried away, $w.fn. Close the door and get out of here before he notices you. . . .<<if $inv.bbc>> Just walk calmly to your Bedroom, shove that giant black dildo into your pussy, and pretend it's Brian. Problem solved!<</if>>//<br><br>
<<nobr>> <<showvideo bshwr5a>> <<set $w.rous += 30>> <</nobr>> Horny and sneaky probably aren't a good mix. I heard Brian get in the shower and decided to get a good look. //No. More than just //one// good look this time . . . .// I thought up a mischievous plan. <<showvideo wbshpk1>> The Bathroom door is in a funny position that amazingly allows someone to have a full view of the shower while not being able to be seen themselves. It's a kinda weird aspect of these apartments. Very convenient for voyeurs. I was not disappointed. <<showvideo bshwr5b>> Brian's body was amazing, not the least of which was his giant cock. //OK, I can't just stand here and gawk forever. I'm on a mission.// <<showvideo wbshpk2>> <<showvideo wbshpk3>> I salivated heavily while staring at Brian's body. //I wonder if this is why they call it "thirsty." Because I am downright parched at the moment!// I remembered why I was there, and pulled out my phone, aiming it at Brian. //Fuck, I don't even know who's wetter right now: him or me?// <<showvideo wbshpk4>> //Snap. Snap. Snap.// Of course, my phone wasn't actually making old-school camera noises. Especially not while I was taking a video. But in my mind I imagined the noises. I don't know, it felt more "private eye"-like. Because I was basically like a detective, investigating the Mysterious Case of the Hidden Weapon of Mass Seduction. //Yup, just doing my part to solve the case.// <<showvideo wbshpk5>> With my mission accomplished----and my phone full of something I can use later for some private time----I skittered and skipped on down the hall. <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<randomvideo 1 3 wbsha>> <<randomvideo 4 9 wbsha>>
<<randomvideo 1 4 wbshb>> <<randomvideo 5 15 wbshb>>
<<randomvideo 1 6 wbshc>> <<randomvideo 7 10 wbshc>> <<showvideo wbshc11>>
<<randomvideo 1 4 wshower_B>> <<showvideo wshower_B8>>
<<randomvideo 5 6 wshower_B>> <<showvideo wshower_B7>>
<<randomvideo 9 10 wshower_B>> <<showvideo wshower_B11>> <<set $w.rous -= 20>>
<<randomvideo 5 9 wshower_E>> <<randomvideo 10 13 wshower_E>> <<randomvideo 14 15 wshower_E>>
<<randomvideo 1 3 wshower_D>> I was feeling extra frisky, so I brought one of my rubber dicks into the shower with me. I used the suction cup to stick it to the shower wall while I washed my body. The whole shower I could see it out of the corner of my eye, but forced myself not to touch it right away. The fantasy of that beautiful, hefty cock attached to a tall, dark, and handsome stranger had me so turned on. I couldn't wait to feel him. I imagined him wrapping me in his strong arms, controlling me, kissing my neck, my ears, his warm breath feeling cool on my wet skin. <<randomvideo 4 6 wshower_D>> I got myself so worked up thinking about my fantasy man that I finally just knelt in front of him. Eyes closed, I opened my mouth and sucked that big cock with all my might. I imagined him moaning, his hand on the back of my head forcing his cock deeper into my throat. The feeling of simultaneously being controlled and controlling my fantasy pushed me to the edge of orgasm even before I touched myself. <<set $w.rous += 30>>
"Yes, baby, yes! Please tell me more about it . . . ." [img[images/f1t5.jpg]] $w.fn leaned in to whisper in my ear. "I'll start by saying: it has been //years// since I have cum like that!" Hearing those words secape the lips of //my wife// was surreal. //Her lips.// The lips I kissed on our wedding day. The lips I had kissed so many times. Telling me how another man had made her feel better than I had, better than I could. But I couldn't explain what happened next. $w.fn slowly walked her fingers down the front of my body, finding their way to my cock. My impossibly hard cock. "Oh, fuck!" she exclaimed, sincerely shocked. "I have //never// felt your cock this hard." She uncovered me and started to slowly run her hands up and down my shaft, while she continued to talk. "So you //really// want to hear what happened?" she asked. "Yes, very much so." I couldn't lie. Not with this level of arousal so obvious. "Ask nicely," she demanded, playfully. "//Very// nicely. To tell you about my day." "Please, //Please// tell me about your day." <<showvideo f1t7>> I lay back and just listened to $w.fn. I had to struggle to hold in my orgasm. I desperately needed to hear the whole story, and I feared that she would stop talking if I came. I //had// to know what happened. "Well, it was pretty simple to start," she said. "I created an account on FuckR and started scrolling through some guys. This one guy stuck out to me. He was //very// attractive. Light-skinned black guy----I think he might have been biracial----with the //prettiest// green eyes. Just stunningly attractive. And very fit. Not large muscles, but toned. So I swiped right. Long story short, just a few minutes later, he matched me and messaged me." She paused as if she was going to stop. "Please," I asked, edging closer and more desperate with every slow stroke of my cock. "Please, don't give me the long story short version. What happened next?" "I asked him to send me a picture and he did." She was still teasing me. "What kind of picture?" "I wanted to see his cock," she admitted. "So he sent me a naked picture." She paused again. I involuntarily held my breath. She continued, barely above a whisper, "His cock was very big. //Much// bigger than yours." That almost did it. I struggled to hold it back. "So we made arrangements. I took a RideMe over to his apartment. He was //such// a good kisser.<<if hasVisited("Kitchen2_WB_FPB1")>> He was also //so// good at eating my pussy.<</if>><<if hasVisited("Kitchen2_WB_FPD1")>> I sucked his big cock. It tasted so good, but I could barely fit it into my mouth.<</if>> When he finally got on top of me, my pussy was so wet that he slid right in with no resistance. It kinda hurt because he was so thick but that just intensified everything that I was feeling. The pain caused my body to release endorphins and adrenaline, I guess. I don't know, but whatever it was, I came for the first time in less than five minutes." "For the //first// time?" She looked at me when I asked that. The hint of a sly smile emerged. She began to increase the tempo that she had been using to rub my cock. "Oh, yeah, that. I <<if $w.xr.rk.cm is 3>>had three orgasms<<elseif $w.xr.rk.cm is 2>>came twice<<else>>lost count as to how many orgasms I had<</if>>. And they were mind-blowing!" Still jerking, almost imperceptibly speeding up with each stroke, she knew exactly how to end the story. She leaned in a little closer, looked deep into my eyes, and said, "It was the best sex I ever had. Better than it could ever be with you." I came hard. My hot seed splashed all over my stomach and chest. A little bit landed on my face near my mouth, which $w.fn immediately licked up when she rose to kiss me. "This is certainly an interesting development," she observed, mindlessly playing with the cum on my body. "Let me grab you a towel." [img[images/f1t8.jpg]] After wiping me off, we cuddled as $w.fn spoke. "You know, I kinda had my doubts when you suggested we introduce other people into our relationship in this way. I can see I was wrong. It seems like this might be a win-win-win scenario. I win, because I get to stay with you, the love of my life, but can get better lovers to fuck me. And you win, because you get to stay with me, the love of your life, and have this kind of reaction to me getting fucked. You clearly really like this." "Who's the last 'win?'" "What?" she asked. "You said 'win-win-win.' Then you talked about why you win and why I win. Who's the last win?" Her chuckle was interrupted by a yawn. "Obviously whatever big dick gets to fuck your intelligent, creative, gorgeous wife." We both soon fell asleep, in each other's arms, with huge, satisfied smiles on our faces. <<nobr>> <<set $h.rous -= 30>> <<set $w.rous += 30>> <<set $h.pref.cuk += 3>> [[Continue|BR_Sleep]] <</nobr>>\
[img[images/f1t9.jpg]] "No, that's ok," I audibly sighed as I sat on the edge of the bed. "Look, I know what I said. I love you dearly, $w.fn, and I want you to be happy. For that reason, I have accepted that there just might be things that you need that you can't get from me. Do what you want, as far as that's concerned, but I don't want to know the details." She looked at me again. "Are you sure we're ok?" "Yes, we are ok. How can I put this?" I thought for a moment. "Your happiness //makes me// happy. Does that make sense? Like, if you go out and find something physical or romantic with someone else but come home to me happier than when you left, //that// makes me happy. Our relationship will be stronger if we are both happy, I think." //Is that a smirk or a smile?// "Ok, baby. . . . I love you," she said, turning out the light and rolling over to go to sleep. [img[images/f1t10.jpg]] A little while later, and I still couldn't sleep. She had long ago fallen into her slumber. //I really hope that I didn't make a mistake//, I thought as I watched her body rise and fall with her slow rhythmic breaths. //Can I really handle what she might desire? Is she going to come home to me every night, smelling of a different man? Is it //really// enough for me, for her to be happy?// These and other thoughts raced through my mind until they finally faded away into the night. [[Continue|BR_Sleep]]\
<<nobr>> <<randomvideo 1 17 wbgrfuck>> <<set $h.rous += Math.clamp((10 * $h.pref.cuk),10,30)>> <<addminutes 20>> <</nobr>> //Well, I asked them to wake up and let me get in the Guest Room . . . . I guess I can't complain about this.// $w.fn and Brian were going at it hard, right in the bed she and I have shared since the day we got married. //I sure hope she washes the sheets. I don't want to go to sleep in a puddle of his sweat and cum.// [[Go back to the Living Room|LivingRoomMain]]
<<include [[WH_LchExhibA1]]>>
<<showvideo hwwhexa1>> As we walked across the bridge connecting the City Center (where we lived) to Downtown, $w.fn suddenly stopped and looked out at the city. "Just look at that view, baby," she marveled. "Sometimes I have to pinch myself. It is so amazing to think that we live in this city!" "The view is gorgeous from where I'm standing." My eyes never left my wife. "Whatever, you're just saying that," $w.fn objected. I knew she didn't believe that, but she wanted to play this humble game. //Alright//, I thought. //Let's see how much you really want to play.// <<showvideo hwwhexa2>> "You know how beautiful you are, baby. In fact, I think you should show off for me a little bit. There's no one else around." Remarkably, this was true. Somehow, in the middle of the day, we were the only people on the bridge. $w.fn feigned shock. "What do you mean?" "Pull your pants down, let me see that body," I said. "You //are// wearing panties, right? They're no different from bikini bottoms, and you wear those in public." "You are absolutely insane," she teased. "Seriously, come on. I bet it would be thrilling. Imagine the adrenaline rush, thinking about getting caught! If you hurry up, though, the risk is actually pretty low." <<showvideo hwwhexa3>> Without looking around, she pulled her pants down just a little bit, revealing her beautiful ass. She has such as sexy body, and the danger of showing off in public made the whole scenario even sexier. "Your ass is unbelievable, baby." She knew how much I loved it. And this coy act was just that . . . an act. An act for //my// benefit, playing up the "cute, innocent girl" routine. \ <<nobr>> <<set $h.rous += 15>> <<set $h.pref.wex += 5>> <<set $w.rous += 15>> <<set $w.pref.ex += 5>> <<set $w.xr.h.day.tdy += 2>> <<set _scn to random(5)>> <</nobr>>\ <<if $w.pref.ex gte 30>>\ <<nobr>> <<set $h.rous += 15>> <<set $h.pref.wex += 5>> <<set $w.rous += 15>> <<set $w.pref.ex += 5>> <</nobr>>\ $w.fn surprised me with her response, "Just my ass? Don't you love my legs too?" And with that, she dropped her pants all the way down to her feet, revealing her long, beautiful legs. She was pushing the boundaries a little bit further, and I loved it!! <<showvideo hwwhexa4>> //Fuck!// Both of us were so distracted, neither of us noticed a jogger quickly approach us from the opposite end of the bridge. "I think you just made that guy's day," I told her, trying to make light of the situation. "In fact, I bet he's gonna go home and think about //you// when he fucks his wife. He'll be able to skip the little blue pill tonight!" $w.fn literally laughed out loud. <<showvideo hwwhexa5>> She didn't even bother pulling up her pants as we watched that first jogger disappear from our view. I think the thrill and adrenaline had taken over both of us. More and more pedestrians seemed to appear out of nowhere. Not only was she seemingly comfortable showing off so much skin, she even spun around, flaunting her beautiful body. "Not so shy anymore, huh, beautiful?" She smiled at me. "You are making me feel so sexy! This whole situation is driving me crazy!" <</if>>\ <<if $w.pref.ex gte 40>>\ <<nobr>> <<set $h.rous += 25>> <<set $h.pref.wex += 5>> <<set $w.rous += 25>> <<set $w.pref.ex += 5>> <<showvideo hwwhexa6>> <</nobr>> Pants still around her ankles, $w.fn upped the ante once again. When she lifted her shirt, I could see that she wasn't wearing //anything// underneath //it//. Her hard nipples betrayed how turned on she was by this whole scenario. And now she was all but naked in public. "What about my tits?" she asked. "Do you like them, too?" "Of course, you know I love every inch of your breathtaking body." <<showvideo hwwhexa7>> "Oh my God, do you really think these guys are gonna think about me later?" "You better believe it! Hell, if I didn't know that I was going to be fucking you later, I don't know what I would do. But that's not an option for any of these guys, is it?" "Hmmm . . . you think I could get any of these guys if I wanted?" she asked. "Of course, any of them," I replied. "Well, then you better treat me right," she laughed. "Or I might start looking around." <</if>>\ <<showvideo hwwhexa8>> "Alright, let's get out of here before we push our luck too far!" $w.fn giggled, jogging toward the other side of the bridge. But not without dropping her pants to tease me one last time. //God, I love this woman!// <<if $w.pref.ex gte 35 and _scn gt 3>> [[Continue|WH_LchExhibA2]] <<else>> <<link [[Walk home|LivingRoomMain]]>> <<addminutes 20>> <</link>> <</if>>\
As we continued down the street toward home, $w.fn suddenly darted down into an open apartment building. I lost sight of her briefly as she bounded down the stairwell into the basement. I found her pants laying on the ground a split second before I found her. <<showvideo hwwhexa9>> "There you are, $h.fn! Hurry up before some other guy gets here first!" The basement was fairly well-lit. There were cages here, probably storage units attached to each of the apartments, for residents to lock up excess property. $w.fn had found a back corner, hidden from the main basement area but still open to anyone who might come downstairs. <<showvideo hwwhexa10>> "Come on! I can't wait until we get home! I am so turned on!" //Well, I guess I must have pushed her to the point of no return earlier on the bridge. . . . Not that I mind, of course.// <<showvideo hwwhexa11>> She dropped to her knees in front of me. "I want to suck your dick. //Now//." I immediately unhooked my belt, unfastened my pants, and presented my cock to her. I didn't hesitate for even a second. <<randomvideo 12 15 hwwhexa>> And neither did she. Before I knew it, my cock was in her mouth, wet with her saliva. I watched her head bob back and forth on me, conscious of the fact that anyone could stumble upon us any minute. The thought was exhilarating. Suddenly, $w.fn stopped. "I felt your dick twitch. I know what that means. Uh-uh, babe. Not like that. You're gonna fuck me first." <<showvideo hwwhexa16>> She stood up and turned around, leaning on the dirty basement wall and baring her ass to me. //How do I argue with that?// I thought. //Easy, I don't.// I moved behind her and entered her. "Oh, God, yes!" she moaned. <<randomvideo 17 18 hwwhexa>> I knew we didn't have long, and it didn't matter to either of us. "This has to be a quickie, darling," $w.fn stated the obvious. "Someone could come down here at any time." "Yeah, I know." "Don't worry, I'm really fucking close," she told me. "Me too." <<timed 3s>><<shakescreen 2s>>\ "I'm right there. Oh! Just hang on for one second. Oh, God! Right there. Oh, fuck, I'm cumming!" As soon as she started to cum, I could feel her body clench, and it was enough to drive me over the edge as well. I pulled out, barely making it before I started to cum. "Oh shit!" $w.fn watched with a smile from ear to ear as I shot my seed all over the floor and wall of the basement. <<showvideo hwwhexa19>> "OK, give me my pants," she said. "Let's get out of here before someone notices we're here." We both covered up and quickly ran back up the stairs and out onto the street. //That was definitely one of the hottest fucking things we've ever done!// <<nobr>> <<set $w.rous -= 20>> <<set $h.rous -= 25>> <<if visited() lte 1>> <<set $h.pref.wex += 10>> <<set $w.pref.ex += 10>> <</if>> <<link [[Walk home|LivingRoomMain]]>> <<addminutes 20>> <<set $w.xr.h.day.cmdy to true>> <<set $w.xr.h.cm += 1>> <</link>> <</nobr>><</timed>>
<<link [[Start cooking . . .|Kitchen2_WB_FPStart]]>> <<set $SexScene to true>> <<set $Partner1Name to "Brian">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to (($w.xr.br.cm + $w.rous) / 100)>> <<set $npcmod to 0.6>> <<set _BCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _BCum>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<removeclass "#right-ui-bar" "stowed">> <<set $root to "Kitchen2_WB_">> <</link>>\
<<showvideo tvwbcuk8>> "Jesus Christ, I need you inside of me now," $w.fn nearly shouted. She stood and allowed Brian to help her out of her shorts. //I love her so much, she is so beautiful//, I thought as I admired her naked body. <<showvideo tvwbcuk9>> "I love you, baby," $w.fn said to me as she crawled onto the couch. She didn't stop until she was literally leaning on my lap. I'm sure she could feel the hardness of my cock. She smiled when she touched it. "I love you so much. Thank you for giving me this." <<showvideo tvwbcuk10>> "I love you too," I responded. "You are the most beautiful woman in the world. And I want nothing more than for you to be happy." "Are you sure you're ok? This isn't too much, is it?" "No, it's ok." <<randomvideo 11 13 tvwbcuk>> "Oh fuck!" The tone of her voice switched suddenly from the sweet whispers of a wife telling her husband she loved him to the sultry moans of a sexy slut whose pussy was being stretched out by the biggest cock she had ever seen. <<randomvideo 14 15 tvwbcuk>> [[Continue|TV_WBCuck3]]\
<<randomvideo 16 18 tvwbcuk>> As $w.fn and Brian's fucking became even more vigorous, I disassociated. Silently, I watched without really seeing. Heard the sounds of her moans without really listening. They were going at it for a while, changing positions several times, but to me it just seemed to both last forever and end in an instant. <<randomvideo 20 23 tvwbcuk>> <<randomvideo 24 26 tvwbcuk>> <<randomvideo 27 28 tvwbcuk>> Eventually, $w.fn dropped down to her knees in front of Brian. Something seemed different about this sudden movement, enough to wake me from my semi-conscious state. "Fuck yes! Feed me that cum! Fuck I love your cock!" I had never heard $w.fn speak like that before. It was so dirty, as if she was an actual sex worker putting on a show for her paying customer. //Except she's not a whore, she's my wife. My wife is talking like that about another man.// <<showvideo tvwbcuk29>> "Yeah, I'm cumming!" The deep baritone of my friend's voice growled as he stroked his cock, squeezing the cum right into $w.fn's waiting open mouth. It was like watching a porn movie happening live in front of me. His cum splashed all over $w.fn's flush face and tits. <<showvideo tvwbcuk30>> Brian turned and left the room, likely post-nut clarity offering him a modicum of shame. $w.fn, on the other hand, approached me, still nude and covered in another man's cum. "Oh my God, I have the best husband on the fucking planet!" She was talking about me. "Thank you so much baby. You have really blessed me with these orgasms. I love you so much." And then she did something I wasn't expecting. She reached over and put her arms around me. Drenched in sweat, cum, salive, but showing no sign of humility, she embraced me. She lowered her voice, signalling that she was saying something profound, something that should be listened to and taken seriously. "Really, baby. Thank you. I know this can't be the easiest thing in the world, but it really makes me understand just how much and how deeply you must love me to be willing to share me with another man, to put yourself through this, all just for my personal satisfaction." //And it's all true. I really do love you this much, and so much more. I don't even know the depths of humiliation I might be willing to subject myself to, if it would please you. But we definitely have not yet hit my limit.// I thought all these thoughts, but didn't dare say them out loud. The words stuck deep in my heart, my lungs. Instead, I mustered barely enough strength to utter, "Of course, baby, anything for you." $w.fn also left the room to clean herself up. But I found myself still frozen in place, struggling to regain my bearings. <<link [[Continue|LivingRoomMain]]>> <<addhours 2>> <<set $w.xr.br.x += 1>> <<set $w.xr.br.cm += random(2,5)>> <</link>>\
"Well you made a bit of a mess, didn't you?" $w.fn said, kinda sternly, just a bit. "And you didn't even let me cum." "I'm sorry, babe. I tried, I really did. I just couldn't hold on any longer. I have been so horny lately." <<if $h.pref.cuk gte 5 or $w.rsp lte 70>>\ "Come on, baby, I am so close. Don't you want to satisfy me?" she pled. "I don't know what to say. Maybe I can get it up again in a few minutes?" "NO," she responded emphatically. "That will be too late. Just eat my pussy, now!" I looked down at her cum-covered pussy and hesitated. "$h.fn! Just do it! I //really// want to cum. I literally eat your cum all the time, you can suffer through it one time! PLEASE!" She was so insistent, almost desperate. I quickly used to my hand to wipe as much as I could away and then went down on her. <<randomvideo 1 6 std1fpb>> I definitely didn't get it all. I could taste my own semen, mixed with the sweet nectar of her flower. I decided to just ignore it and make my beautiful wife cum. //I mean, she's not lying. I do cum all over her face and in her mouth all the time.// After a few minutes, I had completely forgotten about the condition of her pussy before I started to give her oral. I focused exclusively on the task at hand and used my mouth to give my wife an orgasm. Both now satisfied, we relaxed for a few minutes before getting up and cleaning ourselves up. <<set $w.rsp -= 0.5>><<set $h.pref.cuk += 0.5>>\ <<else>>\ "It's ok, baby," she said. "Just make sure you do better next time." She winked at me cutely. I'm not sure if she was joking or being serious.\ <</if>> <<link _ltxt _llnk>> <<unset $SexScene>> <<set $Partner1Name to "">> <<set $h.rous -= 30>> <<set $w.rous += ($NPCCumPoints * 0.2)>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<addhours 1>> <<unset $npcmod>> <<unset $povmod>> <<unset $root>> <<unset $sexmenu>> <</link>>
<<showvideo k2wbfp0>> <div id='sexmenu'><<include [[Kitchen2_WB_FPOptions]]>></div>\
<<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ !!!What do you want to do? <<if $POVCumPoints lt 50>>[[Let him eat your pussy|Kitchen2_WB_FPB1]]<br><</if>>\ <<if $NPCCumPoints lt 50 and $POVCumPoints lt 50>>[[Give him a handjob|Kitchen2_WB_FPC1]] [[Give him a blowjob|Kitchen2_WB_FPD1]]<br><</if>>\ ''[["Enough foreplay, strip and fuck " + $Partner1Name + "!"|Kitchen2_WB_SexStart]]'' <<elseif $POVCumPoints gte 100>>\ <<include [[Kitchen2_WB_1Cum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Kitchen2_WB_2Cum]]>> <</if>>\
<<randomvideo 1 4 k2wbfpb>> \ <<nobr>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen2_WB_FPOptions]]>></div>\
<<randomvideo 1 5 k2wbfpc>> \ <<nobr>> <<set $w.rous += 5>> <<set _cpplus to random(1,20)>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += _cpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen2_WB_FPOptions]]>></div>\
<<randomvideo 1 12 k2wbfpd>> \ <<nobr>> <<set $w.rous += 10>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $npcmod)>> <<set $NPCCumPoints += _cpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen2_WB_FPOptions]]>></div>\
<div id='sexmenu'><<include [[Kitchen2_WB_SexOptions]]>></div>\
<<timed 2.5s>><<shakescreen 2s>> <<if passage() is "Kitchen2_WB_SexA1">> <<showvideo k2wbsac>> <<elseif passage() is "Kitchen2_WB_SexB1">> <<showvideo k2wbsbc>> <<elseif passage() is "Kitchen2_WB_AnalE1">> <<showvideo k2wbaec>> <</if>> <br><br> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.br.cm += 1>> <<set $povmod to $povmod * 1.1>> <<set $w.pref.bk += 0.5>> <<set _psg to passage()>> <div id='sexmenu'> <<if _psg.substring(0,13) is "Kitchen2_WB_F">> <<include [[Kitchen2_WB_FPOptions]]>> <<elseif _psg.substring(0,13) is "Kitchen2_WB_S">> <<include [[Kitchen2_WB_SexOptions]]>> <<elseif _psg.substring(0,13) is "Kitchen2_WB_A">> <<include [[Kitchen2_WB_AnalOptions]]>> <</if>> </div> <</timed>>
<<link "Continue" $nextpassage>> <<unset $SexScene>> <<set $w.xr.br.x += 1>> <<set $Partner1Name to "">> <<set $w.rous += $POVCumPoints>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<unset $npcmod>> <<unset $povmod>> <<unset $sexmenu>> <<unset $root>> <<addclass "#right-ui-bar" "stowed">> <<if $w.xr.h.rel.m and $w.pref.cht>><<set $w.evt.cht += 1>><</if>> <</link>>\
<<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|Kitchen2_WB_SexA1]] [[Doggystyle (chair)|Kitchen2_WB_SexB1]] [[Standing side/doggy|Kitchen2_WB_SexC1]] [[Side fuck (counter)|Kitchen2_WB_SexD1]] ''[[Anal|Kitchen2_WB_AnalStart]]'' <<elseif $POVCumPoints gte 100>>\ <<include [[Kitchen2_WB_1Cum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Kitchen2_WB_2Cum]]>> <</if>>\
<<showvideo k2wbsa0>> <<randomvideo 1 7 k2wbsa>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set _bcpplus to random(5,20)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $NPCCumPoints += _bcpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen2_WB_SexOptions]]>></div>\
<<showvideo k2wbsb0>> <<randomvideo 1 8 k2wbsb>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen2_WB_SexOptions]]>></div>\
<<showvideo k2wbsc0>> <<randomvideo 1 4 k2wbsc>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen2_WB_SexOptions]]>></div>\
<<showvideo k2wbsd0>> <<randomvideo 1 6 k2wbsd>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen2_WB_SexOptions]]>></div>\
<div id='sexmenu'><<include [[Kitchen2_WB_AnalOptions]]>></div>\
<<showvideo k2wbaa0>> <<randomvideo 1 9 k2wbaa>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen2_WB_AnalOptions]]>></div>\
<<showvideo k2wbab0>> <<randomvideo 1 8 k2wbab>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <div id='sexmenu'><<include [[Kitchen2_WB_AnalOptions]]>></div><</nobr>>\
<<randomvideo 1 7 k2wbac>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen2_WB_AnalOptions]]>></div>\
<<showvideo k2wbad0>> <<randomvideo 1 6 k2wbad>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen2_WB_AnalOptions]]>></div>\
<<randomvideo 1 2 k2wbae0>> <<randomvideo 1 6 k2wbae>> \ <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Kitchen2_WB_AnalOptions]]>></div>\
<<set $sexmenu to 2>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|Kitchen2_WB_AnalA1]] [[Doggystyle (chair)|Kitchen2_WB_AnalB1]] [[Standing side/doggy|Kitchen2_WB_AnalC1]] [[Reverse cowgirl (counter)|Kitchen2_WB_AnalE1]] [[Side fuck (counter)|Kitchen2_WB_AnalD1]] <<elseif $POVCumPoints gte 100>>\ <<include [[Kitchen2_WB_1Cum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Kitchen2_WB_2Cum]]>> <</if>>\
!!!What do you want to buy? <<nobr>> <<button "Info">> <<popover <<button "Buy Now">> <</button>> <</popover>> <</button>> <br> <</nobr>>
[img[images/hsuit1.jpg]] It took me about 10 minutes to change into a nice suit. $w.fn took much longer to get ready, but when she finally emerged from the Bathroom, the breath escaped my lungs. //How did I ever get so lucky?// [img[images/wdress1.jpg]] $w.fn was absolutely gorgeous in her little black dress. "How do I look?" she asked me. Of course, my response was, "Absolutely gorgeous." We used the app to call for a RideMe car and picked a restaurant uptown that we really liked. It was rush-hour, but if we got lucky, we wouldn't hit too much traffic. <<randompic 1 2 datecar>> The ride wasn't as bad as it could have been. It only took about 10 minutes for the car to pick us up, and about 30 or 40 minutes to get Uptown. <<link [[Enter the restaurant|WH_DinnerDateA2]]>><<run $gameDate.setHours(18)>><<run $gameDate.setMinutes(30)>><</link>>
We didn't have reservations, so we had to wait for the better part of an hour to be seated. The restaurant was pretty busy. But we weren't in any particular hurry, so we just waited patiently, and knew that the entire meal was likely to take time. <<randompic 1 5 datewhd>> But nonetheless, our food was amazing. There is a reason that nice restaurants cost what they do. The quality of the food is just so consistently high. Not to say that you can't get good food in a smaller or less "fancy" restaurant. Of course you can, especially in the city. But this was simply sublime. <<randompic 1 4 datemeal>> In the meantime, while we waited for our food, we did what we really intended. After all, tonight's date was never really about just eating. We could do that at home or somewhere cheaper. No, that night, our goal was to do something special, to put in a bit of work on our relationship. We were sharing a meal, of course, but we were really sharing our time. So the longer dinner took, the better, from a certain point of view. We eventually made it through dinner, paid the check, and tipped the waiter. We hopped in one of the taxis that was parked on the street in front of the restaurant and went home. <<link [[Go home|Date1_WHBR_CPStart]]>><<run $gameDate.setHours(21)>><<run $gameDate.setMinutes(20)>><<set $Bank -= 250>><<set $w.xr.h.day.tdy += 5>><</link>>
<<randomvideo 1 9 ddate1fpdb>> \ <<nobr>> <<set $w.rous += 10>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += _cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_FPOptions]]>></div>\
<<randomvideo 1 6 ddate1se>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_SexOptions]]>></div>\
<<randomvideo 1 6 ddate1sf>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_SexOptions]]>></div>\
<<randomvideo 1 4 ddate1sg>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_SexOptions]]>></div>\
<<randomvideo 1 5 ddate1sh>> \ <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += _povplus>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>>\ <div id='sexmenu'><<include [[Date1_WHBR_CP_SexOptions]]>></div>\
<<timed 0s t8n>> <center> [img[images/fuckr-splashscreen.jpg]] </center> <<next 3s>> <<if $fkr.ch is 0>> <<goto [[FuckRProfile]]>> <<elseif $fkr.ch is 1 and not $w.evt.fkr1.a>> <<goto [[MW_FuckR1A]]>> <<elseif $fkr.ch is 2 and not $w.evt.fkr2.a>> <<goto [[MW_FuckR2A]]>> <<elseif $fkr.ch is 3>> <<set _scn to random(1,2)>> <<if _scn is 1 and not $w.evt.fkr1.a>> <<goto [[MW_FuckR1A]]>> <<elseif _scn is 2 and not $w.evt.fkr2.a>> <<goto [[MW_FuckR2A]]>> <<elseif not $w.evt.fkr1.a>> <<goto [[MW_FuckR1A]]>> <<else>> <<goto [[MW_FuckR2A]]>> <</if>> <</if>> <</timed>>
<h1>Meanwhile . . .</h1> <<timed 2.25s>> [img[images/wseephone1.jpg]]<br><br> //What the hell is that? Did someone just text him porn? Weird . . . I'll have to take a look at his phone later.//<br><br> <<link "Continue" $phonepassage>><</link>> <</timed>>
<<timed 1.5s>><<speech "le" "Leah">>Hey, looks like we match, beautiful! Nice pics btw<</speech>> <<next>><<speech "wf" $w.fn>>Hey there . . . how are you?<</speech>> <<next>><<speech "le" "Leah">>My day has suddenly brightened remarkably . . . hbu?<</speech>> <<next>><<speech "wf" $w.fn>>You are a very attractive woman . . . very attractive<</speech>> <<next>><<speech "wf" $w.fn>>I guess I should let you know up front that I've never been with a woman before<</speech>> <<next>><<speech "wf" $w.fn>>Let's just say that I have recently decided to explore some lingering curiosities<</speech>> <<next>><<speech "wf" $w.fn>>Are you ok with that?<</speech>> <<next>><<speech "le" "Leah">>Absolutely, girl! I'm bi myself . . . I love women, but sometimes I just need some dick, you know?<</speech>> <<next>><<speech "le" "Leah">>You've never been with a woman at all? Not even a drunken kiss in college?<</speech>> <<next>><<speech "wf" $w.fn>>Nope, not even that!<</speech>> <<next>><<speech "le" "Leah">>Oooo, so I get to be your first? This has suddenly gotten MUCH better than I originally thought<</speech>> <<next>><<speech "wf" $w.fn>>I should probably also let you know that I am married . . .<<if not $w.xr.h.rel.m>> but we're "exploring"<br>an open relationship . . .<<else>> but what he<br>doesn't know can't hurt him . . .<</if>><</speech>> <<next>><<speech "wf" $w.fn>>Is that ok?<</speech>> <<next>><<speech "le" "Leah">>Well, you're just a regular world explorer, huh?<</speech>> <<next>><<speech "le" "Leah">>So let me get this straight . . . I just happened to match with a gorgeous, married virgin that wants to fuck, no holds barred, no strings attached, no questions asked?<</speech>> <<next>><<speech "wf" $w.fn>>That sounds about right . . .<</speech>> <<next>><<speech "le" "Leah">>No, more than just "right," it sounds perfect lol! Like the moon is in the seventh house and Jupiter aligned with Mars lol<</speech>> <<next>><<speech "wf" $w.fn>>OMFG LOL Stawwwpp! 💀 🤣 🤣<</speech>> <<next>><<speech "wf" $w.fn>>You are INSANE!!<</speech>> <<next>><<speech "wf" $w.fn>>So . . . do you want to come over?<</speech>> <<next>><<speech "le" "Leah">>Umm yah<</speech>> <<next>><<speech "le" "Leah">>I have a couple of errands to run this morning but I'll head over this afternoon. Txt me yr address<</speech>> <<next>><<speech "wf" $w.fn>>K. I can't believe I'm doing this! I am so nervous and turned on! 😳<</speech>> <<link "Continue" $nextpassage>><<set $w.rous += 100>><<set $w.evt.fkr2.a to true>><<unset $nextpassage>><</link>>\ <</timed>>\
<<showvideo jtswg1>> We stepped off of the elevator on the 14th floor, orienting ourselves to our location. Tonya had told $w.fn that they were in apartment 1428. //Ah, OK . . . Here's 1402 . . .// "Are you nervous?" I asked $w.fn. "I don't know if //nervous// is the right word . . . maybe 'anxious'? Like there's nervousness but there's also a feeling of anticipation. Like nervous, but generally looking forward to it. //Blah.// I don't know, I can't really come up with the right word, but I don't think it's //nervous//." //She //must// be nervous. My wife was //never// at a loss for words.// "Here it is," she said, knocking on the door. The door opened to reveal Tonya. She matched her picture----though even more beautiful if that was possible. Except she was wearing a Santa hat? <<showvideo jtswg2>> "Come in, come in. $w.fn and $h.fn, it's wonderful to meet you in person. Welcome to our humble //casa//. Jay is just finishing getting ready, he'll be here in just a minute." She took our coats and led us to the Living Room. "Have a seat . . . can I pour you a glass of champagne?" "Absolutely," $w.fn spoke up. "A little booze would help take the edge off. I gotta admit, I'm still a little nervous." "If I can be honest, even though we've been in the lifestyle a little longer, I still get nervous every time," Tonya noted. "You just never know if you're meeting someone interesting or fun or even //just good//, or if you're meeting an awful, ugly-on-the-inside, dull, or plain //stupid// person. And trust me, no matter how attractive they might be, it's just never worth it to hook up with that second kind of person." <<showvideo jtswg3>> At that moment, a man I recognized from their online photos entered the room where we were sitting. "Ah, babe. This is $h.fn and $w.fn. They just got here a minute ago. $h.fn and $w.fn, this is my partner Jay. We've been together for 10 years----since high school!----but been in the lifestyle for just the last 6." Jay's deep voice greeted us, "$h.fn, $w.fn, it is so nice to meet you." I stood to shake his outstretched hand. //Nice, firm handshake.// Jay then greeted $w.fn with a peck on each cheek. <<showvideo jtswg4>> We continued with the small talk for a little longer and kept the champagne flowing. The more time and alcohol passed, the more relaxed we got. "OK, OK, I can't hold it in anymore," I finally blurted out. "What's with the Santa hats?" Jay and Tonya both looked at each other and burst into raucous laughter. Tonya explained, "It's a little inside joke for us, but also kind of a test. We just love the Christmas season. It's happy, full of joy, you know? So when we meet someone new, we sometimes wear the hats just to gauge their reactions. If they are weird or awkward about it, we might not go any further with them. But if they're cool with it, just roll with it, or laugh about it, then it's kind of like a sign that maybe we are compatible." "So, did we pass the test?" $w.fn asked. Jay looked at Tonya before looking back toward $w.fn. "Yeah, you guys pass." We kept hanging out, laughing, joking, talking about all kinds of different things----just generally getting to know each other better----for, I don't know, probably about another hour or so. "Can I kiss you?" Tonya asked $w.fn abruptly. "You are very sexy and I kinda want to kiss you." <<link [['"Definitely!" she responded'|Swing1_GirlsStartW]]>> <<set $SexScene to true>> <<set $POVName to $h.fn>> <<set $Partner1Name to $w.fn>> <<set $Partner2Name to "Jay">> <<set $Partner3Name to "Tonya">> <<set $root to "Swing1_">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $NPC2CumPoints to 0>> <<set $NPC3CumPoints to 0>> <<set $cp1mod to 1>> <<set $cp2hmod to $w.hap / 100>> <<if $w.pref.bk gte 10>><<set $cp2jmod to $w.pref.bk / 10>><<else>><<set $cp2jmod to 1>><</if>> <<if $w.pref.bi gte 10>><<set $cp2tmod to $w.pref.bi / 10>><<else>><<set $cp2tmod to 1>><</if>> <<set $cp3mod to 0.7>> <<set $cp4mod to 0.8>> <<set _HCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _HCum>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<set _MCum to $NPC2CumPoints / 100>> <<updatemeter 'NPC2CumBar' _MCum>> <<set _FCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _FCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>>\
<<showvideo jtswg5>> <<showvideo jtswg6>> <<showvideo jtswg7>> <<showvideo jtswg8>> <<include [[Swing1_GirlsOptionsW]]>>\
<<if $POVCumPoints lt 100 and $NPCCumPoints lt 100 and $NPC2CumPoints lt 100 and $NPC3CumPoints lt 100>>\ !!!($w.fn) What do you want to do? <<if not $breasts and not $nude and $NPCCumPoints lt 15 and $NPC3CumPoints lt 15>>[[Make out with Tonya|Swing1_GirlsA1H]]<br><</if>>\ <<if not $nude and $NPCCumPoints lt 30 and $NPC3CumPoints lt 30>>[[Play with each others' breasts|Swing1_GirlsB1H]]<br><</if>>\ [[Let Tonya finger my pussy|Swing1_GirlsC1H]] [[Let Tonya eat my pussy|Swing1_GirlsD1H]] ''[[Join the guys|Swing1_GuysStartH]]'' <<elseif $POVCumPoints gte 100>>\ <<include [[Swing1_HCumH]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Swing1_WCumH]]>> <<elseif $NPC2CumPoints gte 100>>\ <<include [[Swing1_JCumH]]>> <<elseif $NPC3CumPoints gte 100>>\ <<include [[Swing1_TCumH]]>> <</if>>\
<<showvideo jtswg20>> <<showvideo jtswg21>> <<showvideo jtswg22>> <<include [[Swing1_GuysFPOptionsH]]>>
<<randomvideo 9 10 jtswg>> <<nobr>> <<if $NPCCumPoints lt 35 and $NPC3CumPoints lt 35>> <<set _cpplus to (random(1,5))>> <<set _cpplus to Math.round(_cpplus * $cp2tmod)>> <<set $NPCCumPoints += Math.clamp(_cpplus,1,(35 - $NPCCumPoints))>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<set _cp3plus to (random(1,5))>> <<set _cp3plus to Math.round(_cp3plus * $cp4mod)>> <<set $NPC3CumPoints += _cp3plus>> <<set _TCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _TCum>> <</if>> <<include [[Swing1_GirlsOptionsW]]>> <</nobr>>\
<<nobr>> <<if not $breasts>> <<showvideo jtswg11>><br><br> <<showvideo jtswg12>><br><br> <<set $breasts to true>> <</if>> <</nobr>>\ <<randomvideo 13 14 jtswg>> <<nobr>> <<if $NPCCumPoints lt 50 and $NPC3CumPoints lt 50>> <<set _cpplus to (random(1,5))>> <<set _cpplus to Math.round(_cpplus * $cp2tmod)>> <<set $NPCCumPoints += Math.clamp(_cpplus,1,(50 - $NPCCumPoints))>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<set _cp3plus to (random(1,5))>> <<set _cp3plus to Math.round(_cp3plus * $cp4mod)>> <<set $NPC3CumPoints += _cp3plus>> <<set _TCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _TCum>> <</if>> <<include [[Swing1_GirlsOptionsW]]>> <</nobr>>\
<<nobr>> <<if not $nude>> <<showvideo jtswgud1>><br><br> <<showvideo jtswgud2>><br><br> <<set $nude to true>> <</if>> <</nobr>>\ <<showvideo jtswg15>> <<nobr>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $cp2tmod)>> <<set $NPCCumPoints += _cpplus>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<include [[Swing1_GirlsOptionsW]]>> <</nobr>>\
<<nobr>> <<if not $nude>> <<showvideo jtswgud1>><br><br> <<showvideo jtswgud2>><br><br> <<set $nude to true>> <</if>> <</nobr>>\ <<randomvideo 16 19 jtswg>> <<nobr>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $cp2tmod)>> <<set $NPCCumPoints += _cpplus>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<include [[Swing1_GirlsOptionsW]]>> <</nobr>>\
<<if $POVCumPoints lt 100 and $NPCCumPoints lt 100 and $NPC2CumPoints lt 100 and $NPC3CumPoints lt 100>>\ !!!What do you want to do? [[Eat Tonya's pussy|Swing1_GuysFPB1H]] <<if $POVCumPoints lt 50 and $NPC2CumPoints lt 50>>[[Let Tonya suck my dick|Swing1_GuysFPA1H]]<br><</if>>\ ''[[Penetrate Tonya|Swing1_SexStartH]]'' <<elseif $NPC3CumPoints gte 100>>\ <<include [[Swing1_TCumH]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Swing1_WCumH]]>> <<elseif $POVCumPoints gte 100>>\ <<include [[Swing1_HCumH]]>> <<elseif $NPC2CumPoints gte 100>>\ <<include [[Swing1_JCumH]]>> <</if>>\
<<include [[Swing1_GuysDone]]>>\
<<timed 2.5s>><<shakescreen 2s>> <<set _psg to passage()>> <<set $NPCCumPoints to 0>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<if _psg.substring(0,12) is "Swing1_Girls">> <<set $cp2tmod to Math.clamp(($cp2tmod * 1.2),1,20)>> <<elseif _psg.substring(0,13) is "Swing1_GuysFP">> <<set $cp2jmod to Math.clamp(($cp2jmod * 1.2),1,20)>> <<elseif $ptnr is 0 and _psg.substring(0,10) is "Swing1_Sex">> <<set $cp2hmod to Math.clamp(($cp2hmod * 1.2),1,20)>> <<elseif $ptnr is 1 and _psg.substring(0,10) is "Swing1_Sex">> <<set $cp2jmod to Math.clamp(($cp2jmod * 1.2),1,20)>> <</if>> <<if passage() is "Swing1_SexB1H">> <<randomvideo 52 53 jtswg>><br><br> <</if>> <<if _psg.substring(0,12) is "Swing1_Girls">> //Tonya's touch on my skin sent waves of chills down my spine. My orgasm came suddenly but expectedly.//<br><br> "Oh, God! I'm cumming!" I screamed out, relishing the peak my pleasure had reached. <<elseif $ptnr is 0 and _psg.substring(0,10) is "Swing1_Sex">> <<elseif $ptnr is 1 and _psg.substring(0,10) is "Swing1_Sex">> <</if>> <br><br> <<if _psg.substring(0,12) is "Swing1_Girls">> <<include [[Swing1_GirlsOptionsW]]>> <<elseif _psg.substring(0,13) is "Swing1_GuysFP">> <<include [[Swing1_GuysFPOptionsH]]>> <<else>> <<include [[Swing1_SexOptionsH]]>> <</if>> <</timed>>
<center><h1>Scene Guide</h1> <<button [[Back|Tip_Base]]>><</button>>\ <<button "Close" $startingpassage>><</button>></center> <<nobr>> <fieldset style="padding: 2em"> <legend><b style="font-size: 1.5em;">Just the Tip . . .</b></legend> <div id="achievement"> </div> </fieldset> <</nobr>> <center><h3>- -- Scenes -- -</h3></center> <<nobr>><center> <div class="row"> <fieldset style="padding: 1.5em"> <legend><b style="font-size: 1.5em;">$w.fn</b></legend> /* Talk (Night 1) */ <<if $w.xr.h.t.n1>> /*done*/ <div class="column"> <<link [img[images/hprogress1.jpg]]>> <<replace "#achievement">> //$w.fn just told me that she is not satisfied in our marriage. I have to figure out how to turn this around before I lose her forever!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Research */ <<if hasVisited("GR_LaptopResearchSpice")>> /*done*/ <div class="column"> <<link [img[images/hprogress2.jpg]]>> <<replace "#achievement">> //I found an article online that gave me some great ideas about how to "spice up" my marriage. Hopefully some of these ideas will work!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.h.t.n1 and not hasVisited("GR_LaptopResearchSpice")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should research ways to improve my marriage online.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip will unlock soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Relationship Talk */ <<if hasVisited("WTalk_Relat1")>> /*done*/ <div class="column"> <<link [img[images/hprogress3.jpg]]>> <<replace "#achievement">> //I talked to $w.fn about our relationship. She agreed to my suggestion that we <<if $w.xr.h.rel.m>>will try to work it out <<elseif $w.xr.h.rel.swg>>would try "swinging" with other couples <<elseif $w.xr.h.rel.opn>>would give an "open marriage" a try <<elseif $w.xr.h.rel.cuk>>see if other guys might satisfy her better <</if>>. I guess we'll see if I made the right choice.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif hasVisited("GR_LaptopResearchSpice") and not hasVisited("WTalk_Relat1")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I need to talk to $w.fn about trying to repair our marriage.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip will unlock after another event has occurred. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Shower */ <<if hasVisited("Shower_CP_FPStart")>> /*done*/ <div class="column"> <<link [img[images/hprogress4.jpg]]>> <<replace "#achievement">> //I love shower sex! $w.fn's wet skin is so radiant! (Repeatable)// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should try to visit $w.fn in the Bathroom when she takes a shower after dinner.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Movie Night */ <<if hasVisited("TV_CP1_FPStart")>> /*done*/ <div class="column"> <<link [img[images/hprogress5.jpg]]>> <<replace "#achievement">> //Seems my beautiful $w.fn is not above the occasional 'Nutfux and chill'! (Repeatable)// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should try to watch TV or a movie with $w.fn at night when she gets out of the shower after dinner.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Lunch Date */ <<if hasVisited("WH_LunchDateA1")>> /*done*/ <div class="column"> <<link [img[images/hprogress6.jpg]]>> <<replace "#achievement">> //I love our lunch dates ---- it's a great break in my workday when I work from home! (Repeatable)// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should take Jenny out to lunch when we are home together at lunchtime.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Dinner Date */ <<if hasVisited("WH_DinnerDateA1")>> /*done*/ <div class="column"> <<link [img[images/hprogress7.jpg]]>> <<replace "#achievement">> //Thank God the pandemic has ended and we can take advantage of the very nice restaurants this city has to offer! (Repeatable)// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //$w.fn might like to go out to dinner at a nice restaurant every so often.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Telework Visit */ <<if hasVisited("GR_TWVisitA2")>> /*done*/ <div class="column"> <<link [img[images/hprogress27.jpg]]>> <<replace "#achievement">> //I gotta admit: Getting paid to fuck my wife while I'm "on the clock" teleworking is pretty awesome! I just hope I never get caught . . . . (Repeatable)// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I have to telework from my laptop in the Guest Room every Tuesday and Thursday.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Good Day */ <<if hasVisited("Std1_WHBR_CP_FPStart")>> /*done*/ <div class="column"> <<link [img[images/hprogress8.jpg]]>> <<replace "#achievement">> //Apparently, $w.fn gets frisky at night if I treat her very well during the day. (Repeatable)// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should do everything I can to make $w.fn happy, to save my marriage!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Beach */ <<if hasVisited("1stSatBeach2")>> /*done*/ <div class="column"> <<link [img[images/hprogress33.jpg]]>> <<replace "#achievement">> //$w.fn and I went out to the Beach. (Repeatable)// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Swinger - Jay & Tonya */ <<if hasVisited("Swing1_GirlsStartW")>> /*done*/ <div class="column"> <<link [img[images/hprogress26.jpg]]>> <<replace "#achievement">> //I guess we are offically "swingers" now. $w.fn and I hooked up with another couple and had sex with each other's spouses!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.h.rel.swg and not hasVisited("Swing1_GirlsStartW")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene is not available on the current path. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> </fieldset> <fieldset style="padding: 1.5em"> <legend><b style="font-size: 1.5em;">Work</b></legend> /* Boss - Talk 1 */ <<if $h.evt.wk.rd gte 1>> /*done*/ <div class="column"> <<link [img[images/hprogress9.jpg]]>> <<replace "#achievement">> //My boss, Richard, invited $w.fn and I to go to the club with him. I'll think about it, but I'm not really anxious to hang out with my boss after hours.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Boss - Talk 2 */ <<if $h.evt.wk.rd gte 2>> /*done*/ <div class="column"> <<link [img[images/hprogress10.jpg]]>> <<replace "#achievement">> //Looks like Richard has quite a lot of fun with the ladies when he goes to the club! Maybe it wouldn't be so bad. I'll ask $w.fn what she thinks!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Boss - Text */ <<if $intexts.rd.a>> /*done*/ <div class="column"> <<link [img[images/hprogress11.jpg]]>> <<replace "#achievement">> //Richard texted me some wild videos of him with some girl he met at the club. Very hot! I think I will ask $w.fn if she wants to go out one of these upcoming weeks.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Boss - Text 2 */ <<if $intexts.rd.b>> /*done*/ <div class="column"> <<link [img[images/hprogress30.jpg]]>> <<replace "#achievement">> //Richard texted me another set of videos of him with a woman. Very hot!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Work Late */ <<if $h.xr.bth.lt>> /*done*/ <div class="column"> <<link [img[images/hprogress31.jpg]]>> <<replace "#achievement">> //Richard assigned Beth and I to a new account that may be the most lucrative in the company's history. To get it done quickly, we are going to have to start working late some nights.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Show texts */ <<if $w.xr.rd.cw>> /*done*/ <div class="column"> <<link [img[images/hprogress32.jpg]]>> <<replace "#achievement">> //$w.fn texted me a nude video when I was sitting at work with Richard, and he saw it. That's fine, I don't mind showing off my gorgeous wife. I'm sure she doesn't mind that // <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> </fieldset> <<if $intexts.br.a>> <fieldset style="padding: 1.5em"> <legend><b style="font-size: 1.5em;">Brian</b></legend> /* Meet at Bar */ <<if hasVisited("E1DB2")>> /*done*/ <div class="column"> <<link [img[images/hprogress12.jpg]]>> <<replace "#achievement">> //Brian and Shay broke up. That's rough. I'm going to let him stay with us until he can get everything in order and find more permenent accommodations. It will be kinda like it was back when we were college roommates!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $intexts.br.a and not hasVisited("E1DB2")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I need to meet Brian at the neighborhood dive bar "Dirty Bones." I hope everything's ok!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Party */ <<if hasVisited("Event1_Party_Start")>> /*done*/ <div class="column"> <<link [img[images/hprogress13.jpg]]>> <<replace "#achievement">> //$w.fn, Brian, and I partied like we were back in college! I got drunker than I had been in years!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Fashion Show to Nude */ <<if hasVisited("Event1FSLvl2d")>> /*done*/ <div class="column"> <<link [img[images/hprogress14.jpg]]>> <<replace "#achievement">> //Welp, $w.fn lived up to her promise of stripping . . . though I guess my encouragement had a lot to do with it! I gotta admit it, it was pretty hot letting her show off for Brian like that!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif hasVisited("Event1_FS1") and not hasVisited("Event1FSLvl2d")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //$w.fn did a sexy fashion show that neared risqué. Good thing I stopped it before it went too far!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Striptease or Sex w/ Wife */ <<if hasVisited("Event1_LRLapD1")>> /*done*/ <div class="column"> <<link [img[images/hprogress15a.jpg]]>> <<replace "#achievement">> //$w.fn wanted to take advantage of the nature of our relationship and hook up with Brian. After the sexy fashion show, she moved on to a full-contact striptease and lapdance. There's no straight man on the planet that could have resisted her naked body!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif hasVisited("Event1_CP_Start")>> /* tip */ <div class="column"> <<link [img[images/hprogress15b.jpg]]>> <<replace "#achievement">> //I should work out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Couch */ <<if hasVisited("Event1_EndLRStart2")>> /*done*/ <div class="column"> <<link [img[images/hprogress16.jpg]]>> <<replace "#achievement">> //After her very sexy lapdance, $w.fn pulled the largest cock I've ever seen in my life out of Brian's pants! I've gotta give the girl credit ---- I have no idea how she managed to get that thing into her mouth!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif hasVisited("Event1_EndLRStart1") and not hasVisited("Event1_EndLRStart2")>> /*done*/ <div class="column"> <<link [img[images/hprogress16.jpg]]>> <<replace "#achievement">> //After her very sexy lapdance, $w.fn pulled the largest cock I've ever seen in my life out of Brian's pants! I didn't stick around to see what happened next.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.h.rel.m or $w.xr.h.rel.swg>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene is unavailable on the current path. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Peek 1 */ <<if hasVisited("Event1_EndPeek1")>> /*done*/ <div class="column"> <<link [img[images/hprogress17.jpg]]>> <<replace "#achievement">> //I got caught trying to sneak back into the Living Room after leaving $w.fn and Brian to go to bed. $w.fn was still naked, in his lap, but I don't think they were fucking . . . yet.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.br.evt.d1 and not hasVisited("Event1_EndPeek1")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene is no longer available due to your choices in earlier scenes. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.h.rel.m or $w.xr.h.rel.swg>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene is unavailable on the current path. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Peek 2 */ <<if hasVisited("Event1_EndPeek2")>> /*done*/ <div class="column"> <<link [img[images/hprogress18.jpg]]>> <<replace "#achievement">> //I tried my luck a second time, to check on $w.fn and Brian in the Living Room after I went to bed. This time, I don't think they cared whether I was there or not ---- $w.fn was on all fours on the couch getting fucked hard!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.br.evt.d1 and not hasVisited("Event1_EndPeek2")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene is no longer available due to your choices in earlier scenes. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.h.rel.m or $w.xr.h.rel.swg>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene is unavailable on the current path. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* The Talk */ <<if hasVisited("E1NextMKTalk1")>> /*done*/ <div class="column"> <<link [img[images/hprogress19.jpg]]>> <<replace "#achievement">> //I agreed to allow $w.fn and Brian to continue to spend time together----//physically//----during his stay. I did ask for this relationship, and it makes more sense for her to spend time with someone we trust rather than a stranger. I just hope that this was the right decision!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.h.rel.m or $w.xr.h.rel.swg>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene is unavailable on the current path. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Day 1 Cuck Peek */ <<if hasVisited("WBNitePeek_Day1")>> /*done*/ <div class="column"> <<link [img[images/hprogress20.jpg]]>> <<replace "#achievement">> //$w.fn was kind enough to leave the door open a crack when she went to the Guest Room to spend the night with Brian. I didn't dare open the door more than that crack, but at just the right angle, I could barely make out the two of them fucking!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.h.rel.m or $w.xr.h.rel.swg>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene is unavailable on the current path. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Bathroom Peek */ <<if hasVisited("Bath_WB_Peek")>> /*done*/ <div class="column"> <<link [img[images/hprogress21.jpg]]>> <<replace "#achievement">> //Apparently I'm not the only who $w.fn will let fuck her in the shower!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.h.rel.m or $w.xr.h.rel.swg>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene is unavailable on the current path. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* TV Cuck */ <<if hasVisited("TV_WBCuck1")>> /*done*/ <div class="column"> <<link [img[images/hprogress29.jpg]]>> <<replace "#achievement">> //Is it bad that I let $w.fn and Brian strip down and fuck right on the couch where I was sitting during a movie the other night? Is it worse that it turned me on and I later jerked off thinking about it?// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.br.cuk and not hasVisited("TV_WBCuck1")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene may unlock soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene is unavailable on the current path. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Goodbye */ <<if $w.xr.br.evt.last>> /*done*/ <div class="column"> <<link [img[images/hprogress23.jpg]]>> <<replace "#achievement">> //Brian left us to move into his new place. I think we're both gonna miss having him around ---- it was really cool having him here this past week!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically soon. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> </fieldset> <</if>> <<if hasVisited("DiveBarMain")>><fieldset style="padding: 1.5em"> <legend><b style="font-size: 1.5em;">Dirty Bones</b></legend> /* Meet Crystal */ <<if $h.xr.crys.rel gt 0>> /*done*/ <div class="column"> <<link [img[images/hprogress24.jpg]]>> <<replace "#achievement">> //So, this very cute bartender's name is Crystal. That seems kinda perfect, somehow.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I ought to chat with this hot bartender when I get a drink.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* SmokeQuest */ <<if $h.evt.db.smkfin>> /*done*/ <div class="column"> <<link [img[images/hprogress28.jpg]]>> <<replace "#achievement">> //I managed to make it all the way to the Convenience Store to buy cigarettes for Crystal and even go back to Dirty Bones to give them to her. Quite the feat, truly!! She also called me 'sweet' . . . not that it will likely lead anywhere with such a hot young woman.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $h.evt.db.smkgot and not $h.evt.db.smkfin>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I bought cigarettes for Crystal. Now I should head back to the bar and give them to her.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $h.evt.db.smkon and not $h.evt.db.smkgot>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //Crystal asked me to go to the Convenience Store and pick her up a pack of cigarettes.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $h.xr.crys.rel gt 0 and not $h.evt.db.smkon>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should continue to get to know Crystal better.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This hint is locked until another task has been completed. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* BJ in Bathroom */ <<if $h.xr.crys.bj gt 0>> /*done*/ <div class="column"> <<link [img[images/hprogress25.jpg]]>> <<replace "#achievement">> //Crystal blew me in the restroom of //Dirty Bones//!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif hasVisited("DB_Event_Crys1C")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This event is no longer available due to one of your previous choices. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $h.xr.crys.rel gt 0 and $h.xr.crys.bj is 0>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should continue to get to know Crystal better.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This hint is locked until another task has been completed. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> </fieldset><</if>> </div> </center> <</nobr>>\
<center><h1>Scene Guide</h1> <<button [[Back|Tip_Base]]>><</button>>\ <<button "Close" $startingpassage>><</button>></center> <<nobr>> <fieldset style="padding: 2em"> <legend><b style="font-size: 1.5em;">Just the Tip . . .</b></legend> <div id="achievement"> </div> </fieldset> <</nobr>> <center><h3>- -- Scenes -- -</h3></center> <<nobr>><center> <div class="row"> <fieldset style="padding: 1.5em"> <<if $fkr.ch gt 0>><legend><b style="font-size: 1.5em;">FuckR</b></legend><<else>><legend><b style="font-size: 1.5em;">? ? ?</b></legend><</if>> /* FuckR - profile */ <<if $fkr.ch gt 0>> /* done */ <div class="column"> <<link [img[images/wprogress9.jpg]]>> <<replace "#achievement">> //I created a profile on a hook-up app. The first step to casual sex!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.h.rel.m>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip is locked due to certain choices----//at least for now//. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //Maybe I should consider opening an account on that hook-up app. What's it called again? FuckR?// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* FuckR - Ricky */ <<if $w.xr.rk.x gt 0>> /* done */ <div class="column"> <<link [img[images/wprogress10.jpg]]>> <<replace "#achievement">> //Welp! I hooked up with a guy on FuckR named Ricky. I just wanted something quick and dirty to get the whole extramarital sex thing out of the way.<<if $w.xr.rk.cm gt 2>> On the other hand, he fucked the hell out of me, and I came so many times, I might not lose his number.<</if>>// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.evt.fkr1.a and not $w.evt.fkr1.b>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I matched with a guy and I am going to go fuck him this afternoon!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif ($fkr.ch is 1 or $fkr.ch is 3) and not $w.evt.fkr1.a>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I have set up my FuckR profile but don't have any matches yet. I hope I get someone cool. With a big dick who knows how to use it.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip is locked until another task has been achieved. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* FuckR - Leah */ <<if $w.xr.le.x gt 0>> /* done */ <div class="column"> <<link [img[images/wprogress11.jpg]]>> <<replace "#achievement">> //Leah and I had sex for//ever// on the Living Room couch// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.evt.fkr2.a and not $w.evt.fkr2.b>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I chatted with a really sexy girl named Leah this morning. She'll be here right after lunch!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $fkr.ch gte 2 and not $w.evt.fkr2.a>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I have set up my FuckR profile but don't have any matches yet. I am really curious about hooking up with a girl.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip is locked until another task has been achieved. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> </fieldset> <fieldset style="padding: 1.5em"> <<if visited("MW_Gym") gt 3>><legend><b style="font-size: 1.5em;">Shaun</b></legend><<else>><legend><b style="font-size: 1.5em;">? ? ?</b></legend><</if>> /* Gym - work out */ <<if not hasVisited("MW_Gym")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should work out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /*done*/ <div class="column"> <<link [img[images/wprogress1.jpg]]>> <<replace "#achievement">> //I am way too young and hot to let myself go like some old housewife. Even though I have other stuff to do, I will make sure I get to the gym as much as I can!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Gym - see Shaun */ <<if visited("MW_Gym") gt 3>> /*done*/ <div class="column"> <<link [img[images/wprogress2.jpg]]>> <<replace "#achievement">> //Lately, I have started seeing some new guy working out in the building Gym. He is //very// attractive!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif not hasVisited("MW_Gym")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should work out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif visited("MW_Gym") lte 3>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should keep working out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Gym - meet Shaun */ <<if $w.xr.sh.m>> /*done*/ <div class="column"> <<link [img[images/wprogress3.jpg]]>> <<replace "#achievement">> //That hot guy at the gym----//Shaun//----finally came and introduced himself to me! This could be trouble . . . .// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif hasVisited("MW_Gym")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should keep working out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should work out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Gym - Shaun groceries */ <<if $w.xr.sh.gro1>> /*done*/ <div class="column"> <<link [img[images/wprogress18.jpg]]>> <<replace "#achievement">> //I saw Shaun outside when I was coming home with groceries and he helped carry them upstairs for me. Such a gentleman!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif hasVisited("MW_Gym")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should keep working out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should work out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Gym - Shaun ask out (1) */ <<if $w.xr.sh.asko1>> /*done*/ <div class="column"> <<link [img[images/wprogress19.jpg]]>> <<replace "#achievement">> //After our workout today, Shaun asked me to go get some lunch. I don't see the harm in this. Could be fun!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif hasVisited("MW_Gym")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should keep working out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should work out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Gym - Shaun first date */ <<if $w.xr.sh.asko2>> /*done*/ <div class="column"> <<link [img[images/wprogress20.jpg]]>> <<replace "#achievement">> //Shaun and I went out to lunch. I had a lot of fun getting to know him, but I think I might be playing a very dangerous game here.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif hasVisited("MW_Gym")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should keep working out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should work out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Gym - Shaun first fuck */ <<if $w.xr.sh.x gt 0>> /*done*/ <div class="column"> <<link [img[images/wprogress21.jpg]]>> <<replace "#achievement">> //I got a leg cramp while working out with Shaun. So he fucked it out of me. My leg feels better.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.xr.sh.x is 0 and $w.xr.sh.evt1off>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //This event is no longer available as a result of your choices.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif hasVisited("MW_Gym")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should keep working out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should work out in the Gym.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Shaun - work late 1 */ <<if hasVisited("ShaunLate1_Start")>> /* done */ <div class="column"> <<link [img[images/wprogress25.jpg]]>> <<replace "#achievement">> //$h.fn was working late, so I invited Shaun to come fuck me.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This scene will unlock automatically. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> </fieldset> <fieldset style="padding: 1.5em"> <<if $w.xr.br.evt.on>><legend><b style="font-size: 1.5em;">Brian</b></legend><<else>><legend><b style="font-size: 1.5em;">? ? ?</b></legend><</if>> /* Brian */ <<if $w.xr.br.evt.on and not $w.xr.h.rel.m and not $w.xr.h.rel.swg>> <<if hasVisited("Event1_WB_FPStart")>> /* done */ <div class="column"> <<link [img[images/wprogress12.jpg]]>> <<replace "#achievement">> //Brian came over for the first time in a long time. The three of us got drunk and Brian stretched me out with that monster he was hiding in his pants.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip will unlock on its own. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Brian - 2nd */ <<if hasVisited("Event1B_WB_FPStart")>> /* done */ <div class="column"> <<link [img[images/wprogress13.jpg]]>> <<replace "#achievement">> //I woke Brian up that first morning after the party. With his giant dick in my mouth and pussy.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip will unlock on its own. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Brian - 1st night */ <<if hasVisited("Day1_WBNite_FPStart")>> /* done */ <div class="column"> <<link [img[images/wprogress14.jpg]]>> <<replace "#achievement">> //I woke Brian up that first morning after the party. With his giant dick in my mouth and pussy.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip will unlock on its own. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> <<else>> /* Brian - party night */ <<if hasVisited("E1_MWPostCP1")>> /* done */ <div class="column"> <<link [img[images/wprogress15.jpg]]>> <<replace "#achievement">> //I wish I hadn't seen what I saw . . . Now I can't get it out of my mind.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip will unlock on its own. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* shower pic */ <<if hasVisited("MW_Bath_A2")>> /* done */ <div class="column"> <<link [img[images/wprogress16.jpg]]>> <<replace "#achievement">> //Well, now I have irrefutable evidence. Definitely the biggest I've ever seen!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip will unlock on its own. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> <</if>> /* Brian end */ </fieldset> <fieldset style="padding: 1.5em"> <legend><b style="font-size: 1.5em;"><<if $intexts.rd.b>>Mr. Richard Day<<else>>? ? ?<</if>></b></legend> /* text 1 */ <<if $intexts.rd.a>> /* done */ <div class="column"> <<link [img[images/wprogress24.jpg]]>> <<replace "#achievement">> //Somebody is texting $h.fn porn . . .// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip will unlock on its own. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* text 2 */ <<if $intexts.rd.b>> /* done */ <div class="column"> <<link [img[images/wprogress22.jpg]]>> <<replace "#achievement">> //Well, I solved the mystery of who sent $h.fn porn . . . it was his boss, Mr. Day! And holy bejeezus, he was destroying some poor girl with his monster dick!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip will unlock on its own. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* lunch */ <<if $w.xr.rd.m>> /* done */ <div class="column"> <<link [img[images/wprogress23.jpg]]>> <<replace "#achievement">> //$h.fn asked me to bring his back-up hard drive to his office and then went to lunch with Beth before I got there! So I went to lunch with that charmer Richard!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip will unlock on its own. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> </fieldset> <fieldset style="padding: 1.5em"> <legend><b style="font-size: 1.5em;">Miscellaneous</b></legend> /* Sugar - Buy dildo */ <<if $inv.bbc>> /*done*/ <div class="column"> <<link [img[images/wprogress4.jpg]]>> <<replace "#achievement">> //Yup, I think this toy looks about right!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $w.evt.sgr gte 1 and not $inv.bbc>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I could use a new toy from //Sugar//. Maybe something a little bit . . . bigger . . . .// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should get out sometime and explore more of the city now that the lockdown is over.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Bedroom - BBC porn/masturbate */ <<if $w.evt.bbcd>> /* done */ <div class="column"> <<link [img[images/wprogress5.jpg]]>> <<replace "#achievement">> //Oh! My! Fucking! God! I have definitely discovered that I like 'em big. And I mean //B - I - G//!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif $inv.bbc and not $w.evt.bbcd>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I literally //cannot// wait to play with my new toy!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip is locked until another task has been achieved. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Sugar - flash */ <<if $w.evt.sgrex>> /* done */ <div class="column"> <<link [img[images/wprogress6.jpg]]>> <<replace "#achievement">> //This new exhibitionist side of me "reared" its gorgeous head in the middle of Sugar!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should get out sometime and explore more of the city now that the lockdown is over.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Massage - no sex massage */ <<if hasVisited("MW_ShoppingE2")>> /* done */ <div class="column"> <<link [img[images/wprogress7.jpg]]>> <<replace "#achievement">> //I absolutely //love// the way a good massage makes my body feel.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I should get out sometime and explore more of the city now that the lockdown is over.// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> /* Massage - sex */ <<if hasVisited("MW_ShoppingE5")>> /* done */ <div class="column"> <<link [img[images/wprogress8.jpg]]>> <<replace "#achievement">> //I have recently learned that //internal// "massages" are //very// "relaxing."// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<elseif hasVisited("MW_ShoppingE2") and not hasVisited("MW_ShoppingE5")>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> //I absolutely //love// the way a good massage makes my body feel . . . it makes me //soooo// horny!// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This tip is locked until another task has been achieved. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> <<if hasVisited("WifeDanMem1")>> /* done */ <div class="column"> <<link [img[images/wprogress17.jpg]]>> <<replace "#achievement">> //I hadn't thought about Daniel in a while . . . a part of me really misses him! Guess which part?// <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <<else>> /* tip */ <div class="column"> <<link [img[images/mystery.jpg]]>> <<replace "#achievement">> This event will occur automatically. <</replace>> <<set document.documentElement.scrollTop = 0>> <</link>> </div> <</if>> </fieldset> </div> </center> <</nobr>>\
!Create a new profile <div id="photo"><<link "Click to upload a profile photo">> <<replace "#photo">>[img[images/wprofile1.jpg]]<</replace>> <</link>></div> ''Name:'' <<textbox "$fkr.n" $w.fn>> ''Age:'' 25 ''I'm interested in:'' <label><<radiobutton "$fkr.ch" 1 autocheck>> Men</label> <label><<radiobutton "$fkr.ch" 2 autocheck>> Women</label> <label><<radiobutton "$fkr.ch" 3 autocheck>> All of the above</label> ''Likes:'' <label><<radiobutton "$fkr.lk" "Adventure" autocheck>> Adventure</label> <label><<radiobutton "$fkr.lk" "Attraction" autocheck>> Attraction</label> <label><<radiobutton "$fkr.lk" "Creativity" autocheck>> Creativity</label> <label><<radiobutton "$fkr.lk" "Intellect" autocheck>> Intellect</label> <label><<radiobutton "$fkr.lk" "Spontaneity" autocheck>> Spontaneity</label> <label><<radiobutton "$fkr.lk" "Sweetness" autocheck>> Sweetness</label> <label><<radiobutton "$fkr.lk" "Work ethic" autocheck>> Work ethic</label> ''Dislikes:'' <label><<radiobutton "$fkr.dis" "Aggressive behavior" autocheck>> Aggressive behavior</label> <label><<radiobutton "$fkr.dis" "Attitude" autocheck>> Attitude</label> <label><<radiobutton "$fkr.dis" "Bad Habits" autocheck>> Bad Habits</label> <label><<radiobutton "$fkr.dis" "Cheesiness" autocheck>> Cheesiness</label> <label><<radiobutton "$fkr.dis" "Jealousy" autocheck>> Jealousy</label> <label><<radiobutton "$fkr.dis" "Laziness" autocheck>> Laziness</label> <label><<radiobutton "$fkr.dis" "Negativity" autocheck>> Negativity</label> ''Fun Fact:'' <<textarea "$fkr.ff" "">> \ <div id="error_msg"></div>\ <<button "Create my account">> <<if $fkr.ch gt 0 and $fkr.lk isnot "" and $fkr.dis isnot "">> <<goto $nextpassage>> <<else>> <<replace "#error_msg">> ''<<= "Please answer all questions to create your profile!">>'' <</replace>> <</if>> <</button>>\
[img[images/fkr2prep1.jpg]] //My first time with a woman. This has to be perfect.// Knowing how important scent can be to a woman, I decided to go all out. I started with a nice, warm perfumed bath. I paid special attention to all those little details that men never notice, because I knew she would. [img[images/fkr2prep2.jpg]] After my bath, I meticulously applied lotion to every inch of my skin and made sure my make-up was pristine. [img[images/fkr2prep3.jpg]] //Now the only thing left to do is wait . . . .// My anxiety was palpable. Though I rarely smoked, I decided to light up a cigarette while I waited by the open window. I could think of nothing else but what I was going to do. At least the slight nicotine buzz took some of the edge off. One smoke turned into another and I soon discovered that I had been nervously chain-smoking. //Fuck!// I ran to the Bathroom and brushed my teeth to replace the taste of tar with the freshness of spearmint. //Can't make a bad first impression!// I took a deep breath, centered myself mentally, and . . . [[There was a knock at the door|FuckR2B_Start1]]\
I opened the door to let in the woman I recognized from //FuckR//. <<showvideo fkr2bst1>> Leah practically leapt into my arms. "Sorry, I'm a hugger!" With that simple move, though, she decreased my tension immeasurably. I felt almost instantly at ease. Which is important, considering what I hoped we were about to do. <<showvideo fkr2bst2>> "Come in, come in," I invited her to the couch. "Do you want anything to drink? Did you eat?" (I definitely think I was going a little bit overboard, not sure how far the hospitality is supposed to extend in this particular, peculiar scenario.) "No, I'm good, gorgeous. I grabbed a light bite on my way over here. But I did bring you something." <<showvideo fkr2bst3>> She pulled a pink flower from behind her back and handed it to me. //Wait, did she have that the whole time? How did I not notice it?// On the one hand, I thought that this was just perfect. The soft, feminine nature of a flower----not a red rose suggesting stronger emotions, but not white or blue implying a more platonic relationship----pink, reminiscent of sex and sensuality, of vaginas themselves. I noticed all of this in the hands of this woman, a small gesture in the hands of a master. And I was a virgin, laying myself bare at her mercy. On the other hand, //pretty flower smell good//. Sometimes it was as simple as that. <<showvideo fkr2bst4>> She kissed me. The slightest bit of strength behind the softness. I liked it. <<showvideo fkr2bst5>> After just one kiss, I desperately needed to catch my breath, but desperately didn't want to. My suspicions were //definitely// confirmed . . . I wanted her, to feel her kisses, feel her touch, to taste her. I was so desperately turned on by her sensuality . . . . <<link [[Kiss her . . .|FuckR2B_SexStart2]]>> <<set $SexScene to true>> <<if $w.rous lte 350>><<set $w.rous to 350>><</if>> <<set $Partner1Name to "Leah">> <<set $root to "FuckR2B_">> <<if $w.pref.bi gt 10>><<set $povmod to (($w.pref.bi / 10) * ($w.rous / 100))>> <<else>><<set $povmod to ($w.rous / 100)>> <</if>> <<set $povmod to Math.clamp($povmod,1,10)>> <<set $npcmod to 1>> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<set _LCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _LCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>>\
<<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>>\ <h3>What do you want to do?</h3> [[Make out with Leah|FuckR2B_SexA1]] [[Let Leah finger you|FuckR2B_SexC1]] [[Let Leah eat you out|FuckR2B_SexB1]] <<if $w.evt.fkr2.wnkd and $w.evt.fkr2.lnkd>>\ [[Suck Leah's tits|FuckR2B_SexD1]] [[Finger Leah's pussy|FuckR2B_SexE1]] [[Eat Leah's pussy|FuckR2B_SexF1]] [[Sixty-nine|FuckR2B_SexG1]] <</if>>\ \ ''<<if $w.xr.le.cm gt 0>><<link [[Collapse on the couch (End scene)|FuckR2B_End1]]>> <<unset $SexScene>> <<addclass "#right-ui-bar" "stowed">> <</link>><</if>>'' <<elseif $POVCumPoints gte 100>>\ <<include [[FuckR2B_WCum1]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[FuckR2B_LCum1]]>> <</if>>
<<nobr>> <<randomvideo 1 3 fkr2d>> <<if $NPCCumPoints lt 30>> <<set $NPCCumPoints += random(5,10)>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</if>> <</nobr>> <div id='sexmenu'><<include [[FuckR2B_Options]]>></div>\
<<nobr>> <<if visited() is 1>><<showvideo fkr2f0>><</if>> <<randomvideo 1 5 fkr2f>> <<set _bcpplus to random(5,20)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $NPCCumPoints += _bcpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>> <div id='sexmenu'><<include [[FuckR2B_Options]]>></div>\
<<nobr>> <<randomvideo 1 13 fkr2e>> <<set _bcpplus to random(5,20)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $NPCCumPoints += _bcpplus>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>> <div id='sexmenu'><<include [[FuckR2B_Options]]>></div>\
<<nobr>> <<randomvideo 1 12 fkr2g>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <</nobr>> <div id='sexmenu'><<include [[FuckR2B_Options]]>></div>\
<<randomvideo 1 2 fkr2end>> <<showvideo fkr2end3>> <<showvideo fkr2end4>> <<showvideo fkr2end5>> [img[images/fkr2end6.jpg]] <<link "Continue" $nextpassage>> <<unset $nextpassage>> <<set $w.evt.fkr2.b to true>> <<unset $SexScene>> <<unset $root>> <<set $w.xr.le.x += 1>> <<set $Partner1Name to "">> <<set $w.rous += Math.round($POVCumPoints * 0.2)>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<if $w.xr.h.rel.m and $w.pref.cht>><<set $w.evt.cht += 1>><</if>> <<unset $sexmenu>> <</link>>\
<<timed 2.5s>><<shakescreen 2s>> <<if passage() is "FuckR2B_SexB1">> <<showvideo fkr2bwcm1>> <<elseif passage() is "FuckR2B_SexC1">> <<showvideo fkr2bwcm2>> <</if>> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $povmod to $povmod * 1.2>> <<set $w.pref.bi += 0.5>> <<set $w.xr.le.cm += 1>> <br><br> <div id='sexmenu'><<include [[FuckR2B_Options]]>></div> <</timed>>
<<timed 0.75s>> <<if passage() is "FuckR2B_SexE1">> <<randomvideo 1 2 fkr2blcm>> <<elseif passage() is "FuckR2B_SexG1">> <<randomvideo 3 4 fkr2blcm>> <</if>> <<set $NPCCumPoints to 0>> <<set _LCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _LCum>> <<set $npcmod to $npcmod * 1.2>> <<set $w.xr.le.wcm += 1>> <br><br> <div id='sexmenu'><<include [[FuckR2B_Options]]>></div><</timed>>
<<nobr>> <<if not $w.evt.fkr2.lnkd and not $w.evt.fkr2.wnkd>> <<showvideo fkr2a1>> <<elseif $w.evt.fkr2.wnkd and not $w.evt.fkr2.lnkd>> <<randomvideo 2 6 fkr2a>> <<else>> <<randomvideo 7 9 fkr2a>> <</if>> <<if $POVCumPoints lt 20>> <<set $POVCumPoints += 5>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <</if>> <<if $NPCCumPoints lt 20>> <<set $NPCCumPoints += 5>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <</if>> <</nobr>> <div id='sexmenu'><<include [[FuckR2B_Options]]>></div>\
<<nobr>> <<if not $w.evt.fkr2.wnkd>> <<include [[FuckR2B_UndressW]]>> <br><br> <</if>> <<if $w.evt.fkr2.wnkd and not $w.evt.fkr2.lnkd>> <<showvideo fkr2b1>><br><br> <<randomvideo 2 8 fkr2b>><br><br> <<if $POVCumPoints gte 20>> <<include [[FuckR2B_UndressL]]>> <br><br> <</if>> <<else>> <<randomvideo 9 12 fkr2b>> <</if>> <<set _cpplus to (random(5,20))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <</nobr>> <div id='sexmenu'><<include [[FuckR2B_Options]]>></div>\
<<nobr>> <<if not $w.evt.fkr2.wnkd>> <<include [[FuckR2B_UndressW]]>> <br><br> <</if>> <<if $w.evt.fkr2.wnkd and not $w.evt.fkr2.lnkd>> <<randomvideo 1 4 fkr2c>><br><br> <<if $POVCumPoints gte 20>> <<include [[FuckR2B_UndressL]]>> <br><br> <</if>> <<else>> <<randomvideo 5 20 fkr2c>> <</if>> <<set _cpplus to (random(5,15))>> <<set _cpplus to Math.round(_cpplus * $povmod)>> <<set $POVCumPoints += Math.clamp(_cpplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <</nobr>> <div id='sexmenu'><<include [[FuckR2B_Options]]>></div>\
<<showvideo fkr2bst6>> As I kissed her back, clearly now an eager participant, Leah's lips on mine grew more intense. My willingness was not missed. She could tell that I was fully on board, and she didn't hold back. <<showvideo fkr2bst7>> Gently she pushed and laid me back on to the couch. I could feel my heart trying to escape my chest as she smoothly settled in on top of me. A smile stretching across my face signaled my consent. It clearly registered immediately for she didn't even pause before moving to undress me. <<showvideo fkr2bst8>> In hindsight, wearing just the T-shirt probably would have been better than a button-down flannel. But at least I had simply tied it closed in front rather than buttoning each button. As it was, the knot offered only the least resistance to her deft fingers and she soon had me out of it. <<showvideo fkr2bst9>> We continued to kiss. //Oh my God//, I thought. //This is so fucking hot!// I wrapped my legs around the petite woman who was steering my first ride. I timidly started to return the favor, tugging slightly at the bottom of her sweater. <<showvideo fkr2bst10>> "Let me get this out of the way," Leah purred. Taking my hint, she removed her sweater to reveal a bikini-style black bra and a lot of golden skin. Her lithe body seemed to glow. "You're trembling," she whispered. "Sssshhhhhh. Just calm down and let go." I turned off my mind. I wanted to let go and just feel the experience I found myself in. I didn't need to spend any more time letting my thoughts take me out of it. <<showvideo fkr2bst11>> With my help, Leah quickly got me out of my shirt, making my bare breasts now available to her. Only my panties stood in the way of my being entirely naked. As my guide on this journey, I knew Leah would not let them stand in her way for long. <div id='sexmenu'><<include [[FuckR2B_Options]]>></div>\
<<nobr>> <<showvideo fkr2lnkd1>> <<set $w.evt.fkr2.lnkd to true>> <</nobr>> <<showvideo fkr2lnkd2>>
<<nobr>> <<showvideo fkr2wnkd1>> <<set $w.evt.fkr2.wnkd to true>> <</nobr>> <<showvideo fkr2wnkd2>>
[img[images/f1t2.jpg]] $w.fn was still awake, waiting for me in bed. "Hey, hon'. I need to talk to you about something . . . ." //Hmmm . . . this doesn't usually go super well.// "Yeah, baby? What's up?" "Sooo . . . I went on FuckR and met someone today . . . ." //Well, I guess I have to get used to this happening . . . .// "Do you want to tell me about him?" [img[images/f2t1.jpg]] "//Her//," she said. "Huh?" "//Her//, not //him//. I met a girl today." //Well, this is different.// "Oh! OK! So . . . um . . . ." //I don't really know what to say to this.// "It's OK, $h.fn. You don't have to try to think about what to say. Just listen, I'll talk." She paused to gather her thoughts. "So, well, I have always been kinda curious about women, but I never acted on that impulse. . . . But with this new 'arrangement' that we are trying with our relationship, I decided now might be a good time to explore this further. Maybe, I don't know, maybe none of the issues we're having are about you. Maybe I just would never be able to be truly content with //any// man. It's not that this is necessarily what I was thinking, but I thought it might worth figuring it out. I had to try or I would never know." //Oh! I never even considered that! Should I say something? What should I say?// We just sat there for what seemed like an eternity. Probably just a few seconds. I reached out for her hand. //What am I doing? This is $w.fn. This is the love of my life. Why am I acting like she's a stranger?// "So, what are you thinking?" I asked her. "I mean, did you figure it out? Do you think this means something more important?" <<nobr>> <span id="opts"><h3>Do you think this means something more important?</h3> <<if $fkr.ch is 1>><<link "($w.fn) Yes, I think I might be gay">> <<replace "#opts">> <<include [[BR_Fkr2_Talk2]]>> <</replace>> <</link>><br><</if>> <<link "($w.fn) No, I think I just had a lot of fun">> <<replace "#opts">> <<include [[BR_Fkr2_Talk3]]>> <</replace>> <</link>></span> <<set $w.xr.h.t.fkr2 to true>> <</nobr>>\
As I returned to the Living Room, I was surprised that $w.fn and Brian weren't still on the couch where I had left them. I decided to try the Kitchen. And there they were. They seemed to have decided to grab some more coffee and start the daunting cleaning process. //Not a bad idea, I must admit . . . .// <<showvideo w_thetalk1>> "Hey, baby," $w.fn energetically called to me as soon as I entered the room. "You look much better after your shower!" //How the fuck is she doing this? I still feel like a full bag of dead assholes!// "So," she continued. "I think the three of us need to have a little chat." I agreed. "Yeah, that's probably not a bad idea." "Last night got a bit crazy, didn't it?" She paused, but not really waiting for a response. "OK, let's start with a recap. We talked about our little issue we were having and you suggested that I should sleep with other people. Last night, I asked if I could hook up with Brian and you said it was cool. I then proceeded to have my mind blown completely out of my fucking skull last night and again this morning. So, I just have to come out and say it: Brian will be staying here for a little bit----do we know how long yet?----and, well, I think we should keep this going while he's here. But only, and I mean //only//, if you're ok with it." "Let me think about this for a second," I requested. //Well, honestly, aside from the awkwardness of trying to get used to it, this situation could be a lot worse//, I thought. [img[images/bcoffee6.jpg]] Brian's voice interrupted my thoughts for a second. "I don't know exactly how long, but I want to try to be out of your hair by next weekend. I'm a grown-ass man, I don't feel like I should be relying on anyone----not family, not friends, not //anyone//----for more than that." //A week, huh? I mean, if $w.fn is going to be out there fucking somebody anyway, is it better to go hook up with strangers like that FuckR guy or is it better to hook up with someone we trust like Brian?// My silence must have been deafening to them. $w.fn spoke up again. "Look, it's really the best option for us. Honestly, I'd rather not go out at night to meet with strangers. You don't know the anxiety that always causes in women. We never know if that 'nice guy' we're going to meet is really a nice guy or if he might be a rapist or a serial killer or a religious zealot. It's fucking scary!" //That's a good point, too. Alright, are we really doing this?// "OK, well, this is all happening kinda suddenly," I started. "But, you're right, I //am// the one who suggested this new arrangement. And, you're right, I really don't //love// the idea of you going out at night to meet some guy you don't know. And, you're right, Brian is my closest friend, basically family. The person I trust most on this planet that I'm not literally connected to by genetics." //Whew, I'm just going to say it. Take a deep breath.// "So, for as long as Brian stays, the two of you can . . . continue . . . what you did last night. I am cool with it." [img[images/w_thetalk2.jpg]] $w.fn made no attempt to contain her excitement. She jumped into my arms and gave me a huge kiss. "Oh baby, thank you so much! And remember, I am //still// your wife. This is just a temporary arrangement. Just for fun. If anything, it will make //us// stronger!" Brian just looked at me, sipping his coffee. I could only imagine what was going through his head. But I knew that he would never do anything to hurt me. We have gone through too much together. [img[images/bcoffee5.jpg]] <<nobr>> <<link [[Continue|LivingRoomMain]]>> <<addhours 1>> <<set _tm to random(10,40)>> <<addminutes _tm>> <</link>> <</nobr>>
"Well, honestly, maybe. I think I might be gay." I was shocked. As much as I loved her, I wanted most to support her, no matter what. I wanted her to be able to be free to be happy, to be able to embrace who she felt she was. //But what does that mean for us?// She continued, "Don't worry, baby. There's no one else, specifically, that I want to be in a relationship with. You are my husband and I married you because I love you. I don't want to lose that, just like I said when we had 'the Big Talk.'" "But what does that mean for the future, though? Are you going to want to stay with me if you are not attracted to me?" [img[images/f2t2.jpg]] "Look, I don't know what the future holds. And I don't want to give you the impression that I understand more about what is happening right now than I really do. But when I was with Leah, there were some feelings that I have never felt before. It wasn't just sexual, and it obviously wasn't love since I literally just met her. I don't know what those feelings were, but I //need// to figure that out. And you are the person I love more than anyone else in this world. I want you by my side on this journey. I don't know if I can do it myself, and I don't want to." She pulled closer to me, snuggling into the nook of my arm the way she always does. "I need your support, baby," she said one last time. I held her in my arms, understanding that this was one of those times a person proves their love. This was what I meant when I said, "I do." That I would always be there for her. And this was one of those times when doing so would be hard. But this was also one of those times when doing so was the most important thing I could do. "Of course you have my support, baby. I love you with all my heart, and no matter what happens, I'll be there for you as long as you need me. In every way that you need me." As we turned off the light and closed our eyes to go to sleep, she added, "Thanks so much, hon'. And don't worry, we can still sleep together . . . I know you need that sometimes." <<nobr>> <<set $w.pref.l to true>> [[Continue|BR_Sleep]] <</nobr>>\
[img[images/f2t3.jpg]] "Oh no, I'm not reading too much into this, at least not now. I just mean, I think I am a little more open-minded about who I let make me cum from now on. Let me tell you something, babe----and please don't take this the wrong way----you are pretty good at oral, but the way this girl ate my pussy took me to a different dimension. I am literally rethinking my atheism, because I may have actually seen God when I came." "Somehow, I don't feel offended by that at all," I laughed. "I mean, I could learn to speak Spanish, but I'll never be from Ecuador." $w.fn guffawed. "What?! What the fuck does that even mean?" "I don't know, it sounded better in my head!" We both sat there laughing for a few minutes. The tension completely disappeared. [img[images/f2t4.jpg]] Finally, $w.fn spoke back up again. "I'm happy that you are so cool with my exploring things right now. I love you so much and it means everything to me that you are here by my side no matter what happens, no matter what we decide to do. It means the world that you love me so much that you are willing to expand your limits in order to let me try to find my bliss." She leaned over and kissed me. "I love you, $h.fn. Every day a little bit more." //I probably should feel a little jealousy. I mean, there's no real difference between $w.fn hooking up with a girl and her hooking up with a dude. For some reason, though, the jealousy just doesn't feel the same. Maybe I don't see a girl as a threat to my manhood. Or maybe I'm just getting more used to the idea of $w.fn being with other people.// //Either way, this conversation was probably one of the least awkward conversations we've had lately.// <<nobr>> <<set $w.pref.bi += 5>> [[Go to sleep|BR_Sleep]] <</nobr>>\
As I was working on crunching some numbers, an email popped up in my Inbox. //It's from Richard.// <div class="research">//$h.fn, would you mind stepping into the conference room real quick?//</div> I did what I was told and walked down the hall to the big conference room on the corner of the floor. [img[images/bethtmrd1.jpg]] Beth and Richard were sitting at the conference table looking at something when I walked in. I knocked lightly on the doorframe to get Richard's attention. Richard looked up from the computer to note my arrival. [img[images/bethtmrd2.jpg]] "Ah, great, there you are, $h.fn. Come in, come in!" I moved closer to the table as Richard started to explain what was going on. "So, we just got a massive lead on a new client. A big one, and I mean BIG. Bigger than any of the others. But they are going to require a lot of preliminary planning. Beth here has been doing a first run at the numbers and it looks really good. Pardon my French, but really //fucking// good." [img[images/bethtmrd3.jpg]] Beth looked at me and smiled as Richard continued. "Basically, I need my two best people on this prep. I'm taking you two off all of your other projects for the time being. Over the next few days, just give the others in your Department the 'heads up' on everything, but I want this to be your main focus. You'll be working close together for this, and it could mean some long nights and weekends from time to time----not too often, I hope. But if we get this right, we are all going to make a metric fuck-ton of money, if you know what I mean. How does that sound to the two of you?" I quipped, "I like the sound of a metric fuck-ton of money." "Beth?" Richard looked in her direction. "Abso-fuckin'-lutely! Let's get that money!" She again burned a hole in me with her eyes as she said this. //This could be really good if we are successful//, I thought. <<nobr>> <<set $h.xr.bth.tm to true>> <<include [[OfficeAMLinks]]>> <</nobr>>\
<<nobr>> <<randompic 1 7 bethteam>> <<if ndef $h.xr.bth.tmwk>><<set $h.xr.bth.tmwk to 0>><</if>> <<set $h.xr.bth.tmwk += 1>> <</nobr>> Beth and I spent our time working closely together on the planning for this big new client. We were both great with numbers, but we also wanted to be sure to take a holistic approach and introduce entropy or something something. <<include [[OfficeAMLinks]]>>\
<<include [[Swing1_GuysDone]]>>\
<<timed 1s>> <<set _psg to passage()>> <<set $NPC3CumPoints to 0>> <<set _NPCCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _NPCCum>> <<set $cp4mod to Math.clamp(($cp4mod * 1.2),1,20)>> <br><br> <<if _psg.substring(0,12) is "Swing1_Girls">> <<include [[Swing1_GirlsOptionsW]]>> <<elseif _psg.substring(0,13) is "Swing1_GuysFP">> <<include [[Swing1_GuysFPOptionsH]]>> <<else>> <<include [[Swing1_SexOptionsH]]>> <</if>> <</timed>>
<<nobr>><<link [[Call it a night|MasterBedroomMain]]>> <<set $w.pref.bi to Math.round($w.pref.bi * $cp2tmod)>> <<set $w.pref.bk to Math.round($w.pref.bk * $cp2jmod)>> <<if ndef $h.evt.swg>><<set $h.evt.swg to 0>><</if>> <<set $h.evt.swg += 1>> <<unset $SexScene>> <<unset $POVName>> <<set $Partner1Name to "">> <<set $Partner2Name to "">> <<set $Partner3Name to "">> <<set $w.rous += $NPCCumPoints * 0.2>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<unset $NPC2CumPoints>> <<unset $NPC3CumPoints>> <<unset $cp1mod>> <<unset $cp2hmod>> <<unset $cp2jmod>> <<unset $cp2tmod>> <<unset $cp3mod>> <<unset $cp4mod>> <<unset $sexmenu>> <<unset $root>> <<unset $breasts>> <<unset $nude>> <<unset $suck>> <<unset $ptnr>> <<unset $sixty>> <<unset $wj>> <<addclass "#right-ui-bar" "stowed">> <<addhours 4>> <</link>><</nobr>>\
<<if not $suck>> <<if not $wj>><<showvideo jtswg32>><<set $wj to true>><</if>> <<set _scene to random(2)>> <<if _scene lte 1>> <<randomvideo 33 36 jtswg>> <br><br> <<else>> <<randomvideo 37 40 jtswg>> <br><br> //Oh my God! $w.fn looks so sexy sucking Jay's big dick! I can't help but focus on her, even though I'm eating Tonya out!//<br><br> <</if>> <<set _tplus to (random(5,15))>> <<set _tplus to Math.round(_tplus * $cp4mod)>> <<set $NPC3CumPoints += Math.clamp(_tplus,1,120)>> <<set _TCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _TCum>> <<if $NPC2CumPoints lte 65>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $cp3mod)>> <<set $NPC2CumPoints += _cpplus>> <<set _NPCCum to $NPC2CumPoints / 100>> <<updatemeter 'NPC2CumBar' _NPCCum>> <</if>> <<else>> <<showvideo jtswg41>> <<set _wcpplus to random(5,15)>> <<set _wcpplus to Math.round(_wcpplus * $cp2jmod)>> <<set $NPCCumPoints += Math.clamp(_wcpplus,1,60)>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<set _tplus to (random(5,15))>> <<set _tplus to Math.round(_tplus * $cp4mod)>> <<set $NPC3CumPoints += Math.clamp(_tplus,1,120)>> <<set _TCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _TCum>> <</if>> <br><br> <<include [[Swing1_GuysFPOptionsH]]>>
<<if not $suck>><<showvideo jtswg23>><br><br><<set $suck to true>><</if>> <<set _scene to random(2)>> <<set _cpplus to Math.round(random(5,20))>> <<set _cpplus to Math.round(_cpplus * $cp1mod)>> <<set $POVCumPoints += _cpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<if _scene is 0>> <<randomvideo 24 25 jtswg>> <<elseif _scene is 1>> <<randomvideo 26 28 jtswg>> <<set _wcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $cp2jmod)>> <<set $NPCCumPoints += Math.clamp(_wcpplus,1,60)>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<set _bcpplus to random(5,20)>> <<set _bcpplus to Math.round(_bcpplus * $cp3mod)>> <<set $NPC2CumPoints += _bcpplus>> <<set _MCum to $NPC2CumPoints / 100>> <<updatemeter 'NPC2CumBar' _MCum>> <<elseif _scene is 2>> <<randomvideo 29 31 jtswg>> <<set _wcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $cp2jmod)>> <<set $NPCCumPoints += Math.clamp(_wcpplus,1,60)>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<set _bcpplus to random(5,20)>> <<set _bcpplus to Math.round(_bcpplus * $cp3mod)>> <<set $NPC2CumPoints += _bcpplus>> <<set _MCum to $NPC2CumPoints / 100>> <<updatemeter 'NPC2CumBar' _MCum>> <<set _tplus to (random(5,15))>> <<set _tplus to Math.round(_tplus * $cp4mod)>> <<set $NPC3CumPoints += Math.clamp(_tplus,1,120)>> <<set _TCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _TCum>> <</if>> <br><br> <<include [[Swing1_GuysFPOptionsH]]>>
<<set $ptnr to 1>>\ <<include [[Swing1_SexOptionsH]]>>
<<if $POVCumPoints lt 100 and $NPCCumPoints lt 100 and $NPC2CumPoints lt 100 and $NPC3CumPoints lt 100>>\ <h3>What do you want to do?</h3> <div id="swing1sex"><<nobr>> <<if $ptnr is 0>> [['Doggystyle (' + $w.fn + ')'|Swing1_SexF1H]]<br>[['Cowgirl (' + $w.fn + ')'|Swing1_SexG1H]]<br>[['Reverse cowgirl (' + $w.fn + ')'|Swing1_SexH1H]] <<else>> [[Missionary (Tonya)|Swing1_SexA1H]]<br>[[Doggystyle (Tonya)|Swing1_SexB1H]]<br>[[Cowgirl (Tonya)|Swing1_SexC1H]]<br>[[Reverse cowgirl (Tonya)|Swing1_SexD1H]] <</if>> <</nobr>></div> [[Sixty-nine|Swing1_SexE1H]] ''<<link "Swap partners">> <<if $ptnr is 1>><<set $ptnr to 0>><<else>><<set $ptnr to 1>><</if>> <<replace "#swing1sex">><<nobr>> <<if $ptnr is 0>> [['Doggystyle (' + $w.fn + ')'|Swing1_SexF1H]]<br>[['Cowgirl (' + $w.fn + ')'|Swing1_SexG1H]]<br>[['Reverse cowgirl (' + $w.fn + ')'|Swing1_SexH1H]] <<else>> [[Missionary (Tonya)|Swing1_SexA1H]]<br>[[Doggystyle (Tonya)|Swing1_SexB1H]]<br>[[Cowgirl (Tonya)|Swing1_SexC1H]]<br>[[Reverse cowgirl (Tonya)|Swing1_SexD1H]] <</if>> <</nobr>><</replace>> <</link>>'' <<elseif $NPC3CumPoints gte 100>>\ <<include [[Swing1_TCumH]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[Swing1_WCumH]]>> <<elseif $POVCumPoints gte 100>>\ <<include [[Swing1_HCumH]]>> <<elseif $NPC2CumPoints gte 100>>\ <<include [[Swing1_JCumH]]>> <</if>>\
<<randomvideo 54 55 jtswg>> \ <<nobr>> <<set _hcpplus to random(5,20)>> <<set _hcpplus to Math.round(_hcpplus * $cp1mod)>> <<set $POVCumPoints += _hcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set _wcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $cp2jmod)>> <<set $NPCCumPoints += Math.clamp(_wcpplus,1,60)>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set _jcpplus to random(5,20)>> <<set _jcpplus to Math.round(_jcpplus * $cp3mod)>> <<set $NPC2CumPoints += _jcpplus>> <<set _MCum to $NPC2CumPoints / 100>> <<updatemeter 'NPC2CumBar' _MCum>> <<set _tcpplus to random(5,20)>> <<set _tcpplus to Math.round(_tcpplus * $cp4mod)>> <<set $NPC3CumPoints += _tcpplus>> <<set _FCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _FCum>> <<include [[Swing1_SexOptionsH]]>> <</nobr>>\
<<showvideo jtswg42>> \ <<nobr>> <<set _hcpplus to random(5,20)>> <<set _hcpplus to Math.round(_hcpplus * $cp1mod)>> <<set $POVCumPoints += _hcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set _wcpplus to random(5,15)>> <<set _wcpplus to Math.round(_wcpplus * $cp2jmod)>> <<set $NPCCumPoints += Math.clamp(_wcpplus,1,60)>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set _tcpplus to random(5,20)>> <<set _tcpplus to Math.round(_tcpplus * $cp4mod)>> <<set $NPC3CumPoints += _tcpplus>> <<set _FCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _FCum>> <<include [[Swing1_SexOptionsH]]>> <</nobr>>\
<<randomvideo 43 51 jtswg>> \ <<nobr>> <<set _hcpplus to random(5,20)>> <<set _hcpplus to Math.round(_hcpplus * $cp1mod)>> <<set $POVCumPoints += _hcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set _wcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $cp2jmod)>> <<set $NPCCumPoints += Math.clamp(_wcpplus,1,60)>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set _jcpplus to random(5,20)>> <<set _jcpplus to Math.round(_jcpplus * $cp3mod)>> <<set $NPC2CumPoints += _jcpplus>> <<set _MCum to $NPC2CumPoints / 100>> <<updatemeter 'NPC2CumBar' _MCum>> <<set _tcpplus to random(5,20)>> <<set _tcpplus to Math.round(_tcpplus * $cp4mod)>> <<set $NPC3CumPoints += _tcpplus>> <<set _FCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _FCum>> <<include [[Swing1_SexOptionsH]]>> <</nobr>>\
<<randomvideo 56 60 jtswg>> \ <<nobr>> <<set _hcpplus to random(5,20)>> <<set _hcpplus to Math.round(_hcpplus * $cp1mod)>> <<set $POVCumPoints += _hcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set _wcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $cp2jmod)>> <<set $NPCCumPoints += Math.clamp(_wcpplus,1,60)>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set _jcpplus to random(5,20)>> <<set _jcpplus to Math.round(_jcpplus * $cp3mod)>> <<set $NPC2CumPoints += _jcpplus>> <<set _MCum to $NPC2CumPoints / 100>> <<updatemeter 'NPC2CumBar' _MCum>> <<set _tcpplus to random(5,20)>> <<set _tcpplus to Math.round(_tcpplus * $cp4mod)>> <<set $NPC3CumPoints += _tcpplus>> <<set _FCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _FCum>> <<include [[Swing1_SexOptionsH]]>> <</nobr>>\
<<if not $sixty>><<showvideo jtswg61>><br><br><<showvideo jtswg62>><br><br><<set $sixty to true>><</if>>\ <<randomvideo 63 69 jtswg>> \ <<nobr>> <<set _hcpplus to random(5,20)>> <<set _hcpplus to Math.round(_hcpplus * $cp1mod)>> <<set $POVCumPoints += _hcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set _wcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $cp2jmod)>> <<set $NPCCumPoints += Math.clamp(_wcpplus,1,30)>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set _jcpplus to random(5,20)>> <<set _jcpplus to Math.round(_jcpplus * $cp3mod)>> <<set $NPC2CumPoints += _jcpplus>> <<set _MCum to $NPC2CumPoints / 100>> <<updatemeter 'NPC2CumBar' _MCum>> <<set _tcpplus to random(5,20)>> <<set _tcpplus to Math.round(_tcpplus * $cp4mod)>> <<set $NPC3CumPoints += _tcpplus>> <<set _FCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _FCum>> <<include [[Swing1_SexOptionsH]]>> <</nobr>>\
<<randomvideo 79 80 jtswg>> \ <<nobr>> <<set _hcpplus to random(5,20)>> <<set _hcpplus to Math.round(_hcpplus * $cp1mod)>> <<set $POVCumPoints += _hcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set _wcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $cp2hmod)>> <<set $NPCCumPoints += Math.clamp(_wcpplus,1,30)>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set _jcpplus to random(5,20)>> <<set _jcpplus to Math.round(_jcpplus * $cp3mod)>> <<set $NPC2CumPoints += _jcpplus>> <<set _MCum to $NPC2CumPoints / 100>> <<updatemeter 'NPC2CumBar' _MCum>> <<set _tcpplus to random(5,20)>> <<set _tcpplus to Math.round(_tcpplus * $cp4mod)>> <<set $NPC3CumPoints += _tcpplus>> <<set _FCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _FCum>> <<include [[Swing1_SexOptionsH]]>> <</nobr>>\
<<randomvideo 76 78 jtswg>> \ <<nobr>> <<set _hcpplus to random(5,20)>> <<set _hcpplus to Math.round(_hcpplus * $cp1mod)>> <<set $POVCumPoints += _hcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set _wcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $cp2hmod)>> <<set $NPCCumPoints += Math.clamp(_wcpplus,1,30)>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set _jcpplus to random(5,20)>> <<set _jcpplus to Math.round(_jcpplus * $cp3mod)>> <<set $NPC2CumPoints += _jcpplus>> <<set _MCum to $NPC2CumPoints / 100>> <<updatemeter 'NPC2CumBar' _MCum>> <<set _tcpplus to random(5,20)>> <<set _tcpplus to Math.round(_tcpplus * $cp4mod)>> <<set $NPC3CumPoints += _tcpplus>> <<set _FCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _FCum>> <<include [[Swing1_SexOptionsH]]>> <</nobr>>\
<<randomvideo 70 75 jtswg>> \ <<nobr>> <<set _hcpplus to random(5,20)>> <<set _hcpplus to Math.round(_hcpplus * $cp1mod)>> <<set $POVCumPoints += _hcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set _wcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $cp2hmod)>> <<set $NPCCumPoints += Math.clamp(_wcpplus,1,30)>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set _jcpplus to random(5,20)>> <<set _jcpplus to Math.round(_jcpplus * $cp3mod)>> <<set $NPC2CumPoints += _jcpplus>> <<set _MCum to $NPC2CumPoints / 100>> <<updatemeter 'NPC2CumBar' _MCum>> <<set _tcpplus to random(5,20)>> <<set _tcpplus to Math.round(_tcpplus * $cp4mod)>> <<set $NPC3CumPoints += _tcpplus>> <<set _FCum to $NPC3CumPoints / 100>> <<updatemeter 'NPC3CumBar' _FCum>> <<include [[Swing1_SexOptionsH]]>> <</nobr>>\
<<showvideo jtswg81>> <<showvideo jtswg82>> <<showvideo jtswg83>> <<showvideo jtswg84>> <<include [[Swing1_End]]>>\
<<showvideo hctalk2>> As I approached the bar, it didn't take long before Crystal's well-trained eyes settled on mine. I nodded and she acknowledged my presence when I sat down on a stool. "Here you go," I muttered as I slid the pack of cigarettes across the bar to her. She quickly grabbed them and tossed them onto a small table behind the bar. "You are a fucking lifesaver! Not me, but someone owes you their life. 'Cause if I didn't have a smoke soon, I was //definitely// having homicidal ideations." [img[images/hbardrink2.jpg]] She walked away to serve another customer and then disappeared into the back. I turned back to my drink, thinking about heading home, and started to fumble with a game on my phone. "Here you go! This one's on me!" I lifted my eyes to see a freshly poured mug of beer on the bar in front of me. Crystal was almost smiling----to the degree that she was prone to do so----and seemed infinitely happier and less tense than she had just minutes earlier. "Thanks so much for going and getting the smokes for me. I owe you one." As she moved away toward another customer, she called out over her shoulder, "You're a sweet guy, $h.fn!" //Well, coming from a tough nut like her, that's practically gushing!// I thought. //It feels kinda weird, almost special.// I was embarrassed at my taking such an innocuous statement so seriously. So instead, I just chugged my beer and decided to go home. <<link [[Leave|HomeStreetMain]]>> <<addhours 1>> <<set $h.evt.db.smkfin to true>> <<set $h.evt.db.vis += 1>> <<set $h.xr.crys.rel += 3>> <<set $h.tox.drk += 2>> <</link>>\
As soon as we got into the bathroom, Crystal dropped to her knees on the floor. //I guess it's too late to warn her about whatever she just kneeled down in. Maybe it's not that bad?// <<nobr>> <<showvideo hcrysbj1>> <<set $h.rous += 25>> <</nobr>> Crystal wasted no time in undoing the front of my pants and pulling out my dick. She looked at it curiously before engulfing it with her mouth. I was already nearly hard before she started, and her soft lips got me the rest of the way there. <<showvideo hcrysbj2>> Her enthusiasm took me off-guard. She was going full speed as soon as she started. She stared up at me with those big, fierce eyes, only rarely breaking contact. The entire scene was overwhelming, the best blow job I had ever received in my life! <<randomvideo 3 4 hcrysbj>> She skillfully used her lips, tongue, and throat, varying the speed, pressure, and suction. Sometimes she didn't even need her hands on my dick, literally taking the head my cock all the way to the entrance of her throat. Her hands rested on the back of my thighs, where she used them for leverage to pull me into her mouth. At other times, her tiny hands gripped my cock by the base, slowly pulling me into her mouth while she continued to sensually suck. //There is no way I am going to be able last very long! Fuck! This is intense!// <<showvideo hcrysbj5>> And yet somehow she managed to do more! With almost no noticeable interruption, she wriggled out of her shirt. She was petite, even thinner than I had thought, but this only increased the relative size and fire of her eyes. Her skin was tanned with no visible lines, meaning she either lay in the sun nude or went to a salon. She had small tits, the kind I preferred, which she had now bared to me. She was wearing something----not really a bra, it looked almost like some kind of harness or something. It was very sexy but raised other questions in my mind. //Who //is// this girl?// <<randomvideo 6 8 hcrysbj>> For several more minutes, she sucked me off in silence, maintaining the intense eye contact. <<showvideo hcrysbj9>> <<showvideo hcrysbj10>> <<showvideo hcrysbj11>> "Oh fuck! I can't hold it any longer!" I finally groaned, breaking the silence. She pulled my cock out of her mouth and started jerking it until I couldn't take it any longer. <<nobr>> <<timed 3s>><<shakescreen 2s>> <<set $h.rous -= 25>> <<showvideo hcrysbj12>><br><br> I moaned inarticulately as I released my seed all over her bare chest.<br><br> I couldn't think of anything else to say. "Thank you! That was amazing!"<br><br> Once again, Crystal laughed, clearly amused at me. "You are such a dork."<br><br> She turned away to clean up in the sink, and I decided it was probably time for me to go.<br><br> "OK, well, I'll see you."<br><br> "Enjoy the rest of your night, $h.fn! Say hi to your wife for me."<br><br> //<<if $w.xr.h.rel.m>>That sounded ominous. This girl might end up being a lot of trouble.<<else>>Will do!<</if>>// <br><br> <<link [[Continue|HomeStreetMain]]>> <<if ndef $h.xr.crys.bj>><<set $h.xr.crys.bj to 0>><</if>> <<if $w.xr.h.rel.m>><<set $h.evt.cht += 1>><</if>> <<set $h.xr.crys.rel += 1>> <<set $h.xr.crys.bj += 1>> <<addminutes 20>> <<set $h.evt.db.vis += 1>> <</link>> <</timed>> <</nobr>>\
<<showvideo hctalk2>> "I'm sorry, Crystal. That sounds amazing, but I think I'm gonna have to take a rain check." "Well, boo. That's ok. You're still sweet. Maybe you're just not the 'blowjob in the bathroom' type," she said. "The funny thing about being a horny girl is, you wait long enough, a dick will literally fall out of the sky." I laughed nervously. //I'm not really sure if that is funny or not, but I think she meant it as a joke. Damn her dry humor!// "Alright, well, I definitely appreciate the offer. I think I'm gonna call it a night. Good luck with your goals!" Once again, she chuckled at my awkwardness. "OK, stud-muffin. I'll see you next time." [[Continue|HomeStreetMain][$h.evt.db.vis += 1]]\
[img[images/wlr_basic16.jpg]] //Hmmm . . . $h.fn suggested that we should try to find another couple to "play with" . . . where would I even look for someone like that?// <<timed 1.5s>>\ //OK, well here's something . . . alright, so it's like a dating site for people with fetishes . . . I guess I'll just create an account and start looking around . . . .// <<next>>\ //Oh! They are hot! He is definitely my type and I am sure $h.fn will //not// be complaining about her. Very sexy! I'll just send them a message and see what happens next . . .// <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>><</timed>>\
<<timed 1.5s>><<speech "tn" "Tonya">>Hey there! Thanks for the message you sent earlier. You are pretty hot yourself!<</speech>> <<next 1.25s>><<speech "wf" $w.fn>>Thanks! I wasn't really sure what to say. This is my first time trying to set something like this up.<</speech>> <<next>><<speech "tn" "Tonya">>Ah, I see. New to the lifestyle?<</speech>> <<next>><<speech "wf" $w.fn>>Kinda. Yeah. My husband and I talked about trying this out.<</speech>> <<next>><<speech "tn" "Tonya">>His idea?<</speech>> <<next>><<speech "wf" $w.fn>>Yeah, but "for my benefit."<</speech>> <<next>><<speech "tn" "Tonya">>You're ok with this?<</speech>> <<next>><<speech "wf" $w.fn>>Honestly, I'm looking forward to it. He really hasn't been doing it for me lately, but I think shaking things up a little bit might renew that competitive spark in him again. Bonus if someone else can do better than he has been doing recently.<</speech>> <<next>><<speech "wf" $w.fn>>TBH I was more curious than eager to try something like this, but I decided to "shop around" and when I saw you guys, I kinda got excited about it.<</speech>> <<next>><<speech "tn" "Tonya">>Awww, that's so sweet! How about we set up a meeting to see if we're a match?<</speech>> <<next>><<speech "wf" $w.fn>>How's Saturday night?<</speech>> <<next>><<speech "tn" "Tonya">>This Saturday?<</speech>> <<next>><<speech "tn" "Tonya">>Yeah, we're free<</speech>> <<next>><<speech "wf" $w.fn>>Perfect!<</speech>> <<next>><<speech "wf" $w.fn>>I just got a huge grin across my face, not gonna lie! This is exciting!<</speech>> <<next>><<speech "tn" "Tonya">>Well, don't get too worked up. This is just to see how we do with each other. I mean, if we are feeling it, maybe something happens on Saturday, but if not, there's no obligations or expectations. Some people just don't click. 🤷♀️<</speech>> <<next>><<speech "wf" $w.fn>>Yeah, I guess that's a real possibility, especially with so many different personalities involved.<</speech>> <<next>><<speech "tn" "Tonya">>You already know! LOL<</speech>> <<next>><<speech "tn" "Tonya">>If all goes well on Saturday, maybe one day I'll tell you some horror stories!<</speech>> <<next>><<speech "wf" $w.fn>>I can only imagine! LOL<</speech>> <<next>><<speech "tn" "Tonya">>OK, I'll send you our address, Saturday at 8?<</speech>> <<next>><<speech "wf" $w.fn>>Perfect! Can we bring anything?<</speech>> <<next>><<speech "tn" "Tonya">>Just yourselves and an open mind and a friendly demeanor<</speech>> <<next>><<speech "wf" $w.fn>>Got it! See you on Saturday!<</speech>> <<next>><<speech "tn" "Tonya">>Looking forward to it!<</speech>> <<next>><<speech "wf" $w.fn>>Me too!<</speech>> <<link "Continue" $nextpassage>><<set $w.rous += 50>><<unset $nextpassage>><</link>>\ <</timed>>\
[img[images/hpikfit1.jpg]] After dinner, $w.fn and I both went about to get ourselves ready. "Hey, honey! Which shirt do you think is better?" She called from the Bathroom, "Don't overthink it , babe! Just pretend we're going to hang out with friends!" //Well, except these are people I don't know, but I might end up fucking one of them . . . and the other one might fuck my wife.// [img[images/hwswg1go.jpg]] Finally, we were ready. I put my arm around $w.fn and took a deep breath. "Alright . . . let's go!" <<link [[Take a car to Jay and Tonya's|Swing1_Start]]>><<addminutes 45>><</link>>\
"Hey, sexy! Want a massage?" This was one of $w.fn's acknowledged weak spots. She //loved// a good massage. <<nobr>> <<set _chn to random(10)>> <<if _chn gte 4>> <<set _choi to random(5)>> <<if _choi lte 3>> <<randompic 1 5 hwmasg>><br><br> "Oh, hell yeah! My shoulders are killing me!" $w.fn quickly stripped down and laid on the bed, ready for me to rub her down. I reached for the lotion on her bedside table and generously rubbed it into her beautiful skin.<br><br> <<else>> <<randomvideo 1 5 hwmasgv>><br><br> "Oh, hell yeah! My shoulders are killing me!" $w.fn quickly stripped down and laid on the bed, ready for me to rub her down.<br><br> I decided to lean in on the sensuality of the massage and grabbed a bottle of baby oil off of $w.fn's dresser. She saw what I was doing and stripped down to nothing. "Mmmm . . . even better!"<br><br> Slowly I rubbed the oil into her bare skin. She moaned lightly when I took some liberties and rubbed oil along the outside of her well-groomed pussy. I may have accidentally run my fingers along the edges of her clit.<br><br> <<if _choi is 5 and $w.rous gte 150 and $h.rous gte 100>> "Quit dicking around and fuck me already," $w.fn finally insisted.<br><br> <<randomvideo 1 3 hwmasgf>><br><br> //Well, who am I to argue with the queen?// I thought as I pushed myself inside of her wetness.<br><br> Neither of us intended to go for too long. We really only had time for a quickie. So neither of us was disappointed when I pulled out after just a few minutes and came on her back.<br><br> <<showvideo hwmasgx1>><br><br> "Mmmm . . . that was fun!" she remarked.<br><br> <<set $w.rous += 20>> <<set $w.xr.h.day.tdy += 2>> <<set $h.rous -= 20>> <</if>> "I love you, baby," I expressed to her.<br><br> "I love you too. Thank you for taking time to make me feel good. It really goes a long way to let me know that you appreciate me." <</if>> <<set $w.rous += 35>> <<set $w.xr.h.day.tdy += 3>> <<set $w.xr.h.day.msg += 1>> <<addminutes 30>> <<else>> "Not right now, baby. Can I get a rain check? My shoulders are killing me but I don't want to stop what I'm doing."<br><br> "Of course, any time," I replied. <</if>> <</nobr>> [[Continue|MasterBedroomMain]]\
!!!Do you want to read the Preface? (Recommended if this is your first time playing) <center> [[Yes, read the Preface|Preface1]] <<link [[No, skip the Preface|BR_Intro]]>><<run UIBar.unstow();>><</link>></center>\
<<nobr>> [img[images/talk_whbr4.jpg]] <<set $w.xr.h.t.swg1 to true>> <<addminutes 20>> <</nobr>> Once again, $w.fn was waiting in bed for me and looked like she had something to talk about. "Heeyyyy, baaay-byyy," she started. "We have plans on Saturday!" "We do?" "Yup! I decided to take the initiative on your idea. I found a website----like a dating website, kinda----for people who are into different fetishes. And I found a really sexy couple. So we're gonna go over to their place on Saturday and see how we get along." "I don't know . . . ." "OK, here, this might help." She took her laptop off of her nightstand and propped it on my lap. "Here's some pictures of them! This is Tonya . . . and this is her partner Jay." [img[images/swg1talk1.jpg]] "Hmmm . . . OK, yeah, she's pretty sexy. So, what's the plan, exactly?" "So, I was chatting with her----Here! You can see our conversation!----and basically, we're just gonna go over there and chat, hang out, feel each other out, see how we get along. Then, maayyybe we might hook up on Saturday. Or maybe we just set something else up for another day." "Alright, I'm down! Ya know, I'm not really sure what I expected," I confessed. "I read up a little bit about this lifestyle and kinda //hypothetically// suggested that //maybe// we could look more into it. I am just so scared of losing you, baby, I'm ready to try anything that might work. If you are jumping into this with such enthusiasm, I am right there by your side. I love you, $w.fn." "Awww, I love you too, baby. I wasn't sure about this at first either, but honestly at this point, I am really looking forward to Saturday! And I am so glad that you suggested that we do this together. I really think that our relationship will be stronger in the long run!" [[Continue|MasterBedroomMain]]
//Daniel . . . He lived next door to me since we were born, just five weeks apart. Our parents were best friends, which meant we were best friends. Kids are so simple. But isn't that still how we do things as adults, just with a lot more bullshit attached? [img[images/dyng1.jpg]] He was such a sweet kid. We played every day when we were young. We were connected at the hip all through elementary school. Whether running around our backyards playing freeze tag or playing video games or riding our bikes around the block, we were rambunctious kids. But our favorite time of year was summertime. We both loved to swim! It started with an inflatable pool in the backyard, but before too long my dad earned the money to install an inground pool. This was when we //really// got into it. Swimming became our //thing//! [img[images/dyng2.jpg]] Things started to change in middle school, though. Puberty was far kinder to me than it was to him. My dark hair framed my soft features, while my joy for swimming helped me maintain an athletic figure. As the other boys also hit puberty, I started getting a lot more attention. [img[images/dyng3.jpg]] Unfortunately, Daniel grew more awkward in his appearance. He struggled pretty bad with acne. His teeth grew in crooked, so he had to get braces. He started growing taller without gaining any weight, so he looked tall and lanky. His clothes never really fit right: they were either just-too-small after another unexpected growth spurt or just-too-big, anticipating the //next// unexpected growth spurt. [img[images/dyng4.jpg]] His feelings about his looks negatively impacted his self-confidence. This in turn impacted his ability to talk to other people----especially those of the opposite gender----which of course hurt his confidence even more. Not that any of it mattered to me. As we started high school, we were just as close as we always had been. Every day after school, we were hanging out: watching movies, gaming, talking about whatever. And of course, weather permitting, we would go swimming in the backyard. He was never awkward with me. At least, not at first. This soon started to change. I joined the swim team and started to spend more time at school with other athletes. Daniel didn't follow my lead, though. His low self-confidence got in the way of him joining the team with me. Practice meant we didn't have much time after school anymore. We started to drift apart. I still loved him and he was always there for me when I needed him. But we went from hanging together every day to a couple of times a week to once or twice a month. By the time we were 17 years old, we barely saw each other at all. I was a star on the swim team and had an active social life. Daniel had a part-time job after school. Even our summers had been taken from us. Because of his job he couldn't join me in the pool. And our relationship had taken a big hit. We had grown apart over the previous few years.// [[Continue|WifeDanMem2]]\
[img[images/dyng5.jpg]] //Senior year started shortly after Daniel and I turned 18 years old . . . . We still had classes together, even though we barely talked at all any more. He was always just outside of my peripheral vision. [img[images/wmemjb1.jpg]] I started dating Jeremy that winter. We initially took it slow, physically. I just wasn't ready to lose my virginity. That changed after we were together for 3 or 4 months. We decided to go with a big group of friends to the beach for Spring Break. [img[images/sprgbrk1.jpg]] It was so much fun! We had total freedom all day and all night! And I took advantage of the opportunity to swim in the ocean! The smell of the salt, the sound of the waves crashing on the shore and the birds cawing overhead . . . . The feeling of the cool wind blowing through my hair, while the rays of the sun warmed my wet skin . . . . [img[images/sprgbrk2.jpg]] Everything was beautiful! I even learned how to surf! Not great, but you know . . . I didn't drown, so that's a win! That week I decided to take that last step and slept with Jeremy. <<showvideo wmemj1>> Our last night at the beach, we were lying on the bed making out, hot and heavy. I could feel his dick getting hard as we were kissing. I "accidentally" brushed up against it more than once, intentionally teasing him to message my consent to take the next step. It took some time for both of us to get undressed, piece by piece. The way virgins do. (Though, if rumors and innuendos were to be believed, he was far from a virgin at that point.) <<showvideo wmemj2>> I took him into my mouth, gently. It was not my first blowjob on Jeremy, but this one felt different. This was the beginning of what we were going to do, not the ending. And so I was tenuous in my resolve, suddenly insecure in my skills and unconfident in my actions. <<showvideo wmemj3>> Jeremy quickly directed me away from the head and strongly asserted his desire to have sex. Every warning society ever aimed in my direction about pregnancy and sexually transmitted diseases entered my already nervous mind. So I reached for the condoms I had surreptitiously purchased earlier in the day and hid in the bedside drawer under the Gideon Bible. I had never done this before and I fumbled a little bit but eventually it was on. <<showvideo wmemj4>> I lay on my back to let him in. It probably didn't hurt as much as it would have in an earlier era. But in these days of Internet porn and sex-positive feminism, I had been fingering myself for years. Even had my own vibrator. His moves were almost artificial, like he had practiced humping in the mirror. The connection wasn't where I thought it would be for our first time. As I stared at the ceiling while he fucked me, I considered whether this is all there was. I had no idea what sex was supposed to feel like. I knew that it wasn't as good as when I masturbated and made myself cum. But I figured it was just different with another person who couldn't know what I was and wasn't feeling. Someone who didn't have a vagina of their own. Someone selfishly pursuing their own pleasure, the way teenage boys do. I mean, it was fine. It felt good. It just didn't feel //great//. <<showvideo wmemj5>> And it was over so quickly! It seemed like he had barely even gotten into some kind of good rhythm, where maybe I could have also reached my peak. He quickly pulled out, ripped the condom off, and shot his steaming hot load right onto me. I went to the bathroom and cleaned up, returning to find him already asleep in the bed, still naked, with his sad-looking, flaccid dick lying gingerly on his hip. The next morning we piled into my friend's car and went home. Spring break was over and my virginity had been left behind. ''And then, almost as soon as we got home from our vacation, Jeremy dumped me.''// [[Continue|WifeDanMem3]]\
[img[images/wysad1.jpg]] //I was heart-broken and mildly depressed, in a teen-age angst-y way. I thought I loved him . . . or did I? I //definitely// felt taken advantage of. Even if I was ready to lose my virginity----even if it would have been someone else if it hadn't been Jeremy----doesn't mean I wanted to be on the receiving end of a "pump 'n' dump." ''But these are the times when you know who your real friends are.'' <<showvideo dyng6>> Daniel noticed how upset I was and that night he came over to visit, for the first time in months. He was a shoulder to cry on, a true friend. //My only true friend//. I stopped hanging out with most of those popular idiots that I thought were my friends, the circle of friends that Jeremy and I shared who seemed unconcerned with his treatment of me. I stayed friends with a couple of the girls from the swim team, but that was about it. Slowly over the last two months of the school year, though, the connection that Daniel and I had lost over the previous couple of years started to come back. Not all at once, but he started to spend more time at my place, like when we were kids. I think I knew Daniel had a crush on me but by then we were just in two completely different places in our lives. [img[images/wygrad1.jpg]] Then came graduation! I would be going away to college in the fall. This was my last summer! And I was going to spend every moment I could relaxing in the pool! Somehow, swimming had marked nearly every transition in my young life. At the risk of being a bit too poetic and pretentious, here I was, on the verge of my last transition, the end of my childhood and start of the rest of my life. I wondered whether or not I would be able to swim any more at all. [img[images/wypool1.jpg]] So I vowed to swim as much as I could while I still could. One day, just a few weeks after we graduated, I was hanging out in the pool with my friend Gabby from the swim team. [img[images/wypool2.jpg]] We weren't doing anything in particular. We weren't even really //swimming//, really just lounging in the pool, enjoying a beautiful day in the sun and water. I heard Daniel get home from work and I called out to him. "Hey, go get your trunks on and come hang out with us." His head popped up over the fence between our yards. He saw Gabby and me and hollered back, "Yeah, sure! Give me a few minutes to change." Because Gabby and I stayed kinda close after graduation, she had also come to know Daniel better and learn how nice a guy he was. The three of us had hung out before and would do so again. After a few minutes, Daniel popped back into view, this time in his swim trunks. <<showvideo dypool1>> "What are you guys doin'?" he asked as he started to slide into the water. "Oh, just plotting the complete overthrow of the known universe," I shot back. "Oh fuck!" Daniel suddenly screamed. And what I saw at that moment may have changed the rest of my life. [[Here's the thing I didn't know . . .|WifeDanMem4]]//\
//Remember when I said "Puberty was far kinder to me than it was to him"? [img[images/dyng7.jpg]] Well, let's just say that puberty may not have blessed Daniel in many ways, but it certainly made up for it in one //very specific// way. I never would have imagined what I was about to learn about Daniel. Hell, I never would have imagined that it was possible . . . //for anyone// . . . much less my oldest friend, my next-door neighbor, my confidant. <<showvideo dypool2>> As he jumped into the pool, he did so in a way that caused his shorts to jenk around, revealing his cock to the world. Honestly, I don't think he could have done it on purpose if he had tried. But the wind was blowing, the stars aligned, the angels interjected, a butterfly flapped its wings in Japan . . . whatever weird confluence of events caused the laws of probability and physics to temporarily short-circuit . . . and there was this //massive thing//! [img[images/wypool3.jpg]] I was dumbfounded. I caught myself staring and didn't care in the slightest. Despite literally being submerged in my pool I still felt my pussy moisten and my mouth start to salivate. "Oh fuck!" Daniel shouted and jumped out of the pool. <<showvideo dypool3>> He struggled to fit himself back into his trunks. He disappeared from sight as he hid in my house in embarrassment. Gabby broke our silence. "Oh . . . my . . . fucking . . . God! Did that just happen? Was that real? Like really real?" [img[images/wypool4.jpg]] I could barely respond, only managing to mutter incoherently under my breath, "Um. Er. Um. . . . holy shit!" And then I remembered, //Wait, girl! Get your head off his dick! His big . . . beautiful . . . thick . . . cock . . . No! Stop it! This is Daniel! He's been there for you your whole life and he just ran away feeling humiliated. It's your turn to be there for him!// I jumped out of the pool and quickly ran into the house after him, looking to comfort him after what just happened. Behind me, I heard Gabby laugh. "Go get that big dick, slut!"// [[Continue|WifeDanMem5]]\
//I could hear Daniel shuffling around in my Bedroom. As I entered the room, I saw his tall figure hunched over on my bed facing the back wall. Without turning around, he said to me, "I am so fucking embarrassed." "Daniel, you have no reason to be embarrassed. //Trust me, no reason//." I approached him, intending to comfort him. My skin wet from the pool, fingers slightly wrinkled, I laid a hand on his broad shoulder. The image from the pool flashed in my mind. I looked down into his lap and could see him growing at my touch. I felt a brief burst of electricity between my legs. And then suddenly the dam burst! An entire lifetime of love, emotion, and sexual tension came flooding out of me! <<showvideo wdmem1>> And even though this was Daniel, something came over me. It was like I suddenly lost control. I was kissing him. I pulled his shorts down and let them fall to the floor. We were on my bed. I was touching him. <<showvideo wdmem2>> I took the head of his giant cock into my mouth. I couldn't fit much more than the head, but I stretched myself to my limits, to better pleasure him. I stifled my gagging, my throat instinctively rejecting this large invader. Instead, I used my hands to stroke his cock while I simply sucked on the tip without much movement. This seemed to do the trick as Daniel grew even stiffer. He tried to keep his moans down but could barely resist the temptation. <<showvideo wdmem3>> And neither could I. Not any longer. I stripped out of my swimsuit, ready to take this to the next level. "Daniel, you are my best friend. Always have been. And you've always been there for me. I love you. I want to do this for you." //And for me!// I thought. "We're going to different colleges in just over a month. I'm sure we'll see each other again, but we can never be sure when or how often. But right now, we're both here, we both want this. Let's just live in the moment." <<showvideo wdmem4>> Now naked, I took him back in my mouth. He finally spoke up. "No! I don't want you to make me cum like that!" //Way to assert yourself, Big D//, I thought. //Heh-heh, "Big D!" There's never been a more appropriate nickname!// I lay on my back and Daniel lined the head up with the entrance to my core. As he started pushing forward, I realized that the water from the pool combined with my own natural lubrication and the relaxation I felt with someone I trusted so completely. There was no resistance and he was able to slide in with very little difficulty. <<showvideo wdmem5>> That's not to say there was no pain. I felt like I was being torn in half. But . . . in a good way . . . if that makes sense. Every single nerve in my body was on fire, overstimulated. My mind was so thoroughly flooded with stimuli, I honestly think something deep inside my consciousness was completely rewired that day. The first time I came, I literally wept with joy. I had never felt anything like that! The tenth time I came or twentieth . . . well, I don't know what to say. By that point, what I once thought of as an orgasm was just a constant buzz, the steady, intense backdrop on top of which these unfathomable explosions landed. Each explosion temporarily knocked out my sight and hearing. It felt like I passed out briefly each time. <<showvideo wdmem6>> I have no idea how long we were at it that afternoon. At some point I remember hearing Gabby holler out in the background, "I'm going home! Bye!" Maybe it was the lifetime of swimming that had given Daniel so much stamina. We definitely were fucking for more than an hour. By the end, my body had completely yielded to his. All twelve inches of his cock pounded inside of me. If he'd had more, I would have taken it! <<showvideo wdmem7>> We cycled through every position either of us could think of. Each one felt amazing in a different way. His cock stimulated a different part of me in each one. I don't know whether to bless or curse whoever invented Internet porn and gave us so many different ideas at such a young age. Bless. Definitely bless. <<showvideo wdmem8>> He hit my G-spot, my A-spot, my LMNOP-spot, my Z-spot. I think he probably took out my spleen, maybe one of my kidneys. <<showvideo wdmem9>> And it went on and on and on . . . with seemingly no end. <<showvideo wdmem10>> When he finally pulled out of me----groaning, "Oh God! Aarrgghhh!"----the articulate bastard!----I felt such a strong sense of pride that my body had finally pleased this magnificent cock . . . I mean //man//, in front of me. The hot juice he shot onto my skin burned me wonderfully. I forgot all about Jeremy, but for some reason, the opening scene of the movie //Reservoir Dogs// and something about that '80s singer Madonna flashed through my mind. [[The rest of the summer was hot . . .|WifeDanMem6]]\
//We had just a month before we would be leaving for our respective colleges. And we took full advantage of it. Every single spare moment, we were fucking. Living next door to each other and being friends our whole lives made everything easier, too. During the day, when he wasn't at work, he was at my place. Our parents never even thought twice about him being in my room at all hours of the night. [img[images/wdtablehj.jpg]] We got so brazen, I even once gave him a handjob at the dinner table right in front of all four of our parents! I was completely obsessed! <<nobr>> <<set _imgno to 0>> <span id="fuckpic"><<= '[img[images/wdfuckpic' + _imgno + '.jpg]]'>></span> <<repeat 1.25s>> <<if _imgno lt 12>> <<set _imgno += 1>> <<else>> <<set _imgno to 0>> <</if>> <<replace "#fuckpic">><<= '[img[images/wdfuckpic' + _imgno + '.jpg]]'>><</replace>> <</repeat>> <</nobr>> Every room in my house, any time of day or night, every position. I needed his cock, in my mouth, in my pussy. <<showvideo wddt1>> I trained myself to force more his massive member into my throat without gagging. I even learned to ignore the days of pain and difficulty talking afterwards. <<showvideo wda1>> I even decided to go all the way and let him fuck me in the ass. Needless to say, that was painful. I couldn't walk straight for almost a week after that. <<showvideo wda2>> Then I did it again. And again. The intense feelings of bliss I felt every time his cock was inside of me were magnified ten-fold when he was in my ass. It was almost //too much//. So we couldn't do it every time. But I didn't care, just as long as he was inside of me. ''I had turned into a shameless, desperate size queen.''// [[And just like that . . . the summer ended|WifeDanMem7]]\
<div class="research"> <<if visited() is 1>>''compersion'' /kəmˈpɝʒən/<br><br>Vicarious joy associated with seeing one's partner have a joyful romantic or sexual relation with another.<br><br> <<elseif visited() is 2>>[img[images/rschcomp1.jpg]]<br><br> <<elseif visited() is 3>>[img[images/rschcomp2.jpg]]<br><br> <<elseif visited() is 4>>[img[images/rschcomp3.jpg]]<br><br> <<elseif visited() is 5>>[img[images/rschcomp4.jpg]]<br><br> <<else>>[img[images/rschcomp5.jpg]]<br><br> <</if>> </div><br><br> <<set $h.pref.cuk += 0.5>> <<addminutes 10>> [[Do something else|GR_LaptopBase]]
//Only a month after our physical relationship started, it ended. Daniel went to a top school for engineering. I went to my liberal arts school for writing. We didn't really talk after that. It was easy to lose contact with people on the opposite side of the country. When I saw his parents when I was home for the holidays, it seemed I had always "just missed him." Our schools were on slightly different schedules, plus he was deeply entrenched in his work. He had always been a great student----college seemed to encourage his devotion. He spent nearly every break with an internship or helping a professor with some special project. He was going to be a huge success. I had always known it! My freshman year went a bit different. Writing came easy to me, so----though it was a lot of work----it wasn't too intense. I tried my hand at dating. A few weeks after moving into the dorms, I started seeing a frat guy. He was horrible in bed. Under-endowed but overconfident. Never a great combo. And besides that, he was just too "chad-bro" for me. I don't know if he ever asked me about myself, my dreams, my desires, my likes, my dislikes, even just my fucking favorite color. That was enough for me. I didn't date anyone else for the rest of the school year. I went home for summer break but Daniel wasn't there. [img[images/preface1.jpg]] Soon after the next semester began, I met $h.fn. He was a kind man, if not always very aware of the people around him. He was smart and attractive, and there was an endearing humility or insecurity about him. That last part reminded me of Daniel. I never consciously compared the two, of course. In fact, by this time I rarely thought about Daniel. I felt nostalgic for our childhood together, but it seemed solidly in the past. When I swam now, I swam alone. I never told $h.fn about Daniel. I mean, how could I? What would I say?// \ >Honey, one of my oldest and closest friends, who lived next door to me my whole life, had a thick, foot-long cock that he used to just destroy every hole in my body. It's his fault that neither you nor any other normal man will ever truly satisfy me. \ //No, that wouldn't make any sense at all. I decided it was best to just let sleeping dogs lie.// <<link "Continue" $nextpassage>><<set $w.rous += 50>><<unset $nextpassage>><</link>>\
<<nobr>> <<randompic 1 9 mwgrocery>> <<set $Bank -= 50>> <<set $w.xr.sh.gro1 to true>> <<set $w.xr.sh.rel += 1>> <<set $w.rous += 20>> <<set $dtsv.shgro to $gameDate.getDate()>> <</nobr>> //$h.fn might work a 9-to-5 job, but that doesn't mean I don't work//, I thought, as I casually browsed the aisles of the grocery store. //Between doing all the housework and working on my novel--which is supposed to be "my job"--I barely have time to get some exercise a few times a week, relax, and just do "normal life" things . . . .// I finished up at the grocery store and went home. [img[images/mwgrosh1.jpg]] As I approached the front of the building I noticed Shaun jogging up the street in the opposite direction. He looked like he had just gone for a run in the city park across the street. [img[images/mwgrosh2.jpg]] "Hey, $w.fn!" he called to me. "Wait up!" Of course I did. I liked Shaun. Not only was he a really nice guy, as far as I could tell, but he was fine as //fuuuuck//. "What's up, big guy?" I playfully asked as he ran up to me. Shaun took a second to catch his breath. //See//, I chuckled. //Leave 'em breathless!// "So, just getting home from the grocery store?" he asked. I glanced down at the large bag of groceries in my hand. "No, what makes you think that? I was just walking my dog Goliath here." "Oh, a wise guy, eh?" We both laughed at our inane banter. "Let me help with you those," Shaun said. He didn't even wait for me to object. He just took my bag of groceries right out of my hand and walked into the building. I quickly caught up to him. "You said you were on the fourth floor, right? Which number?" [img[images/mwgrosh3.jpg]] Before I knew it, somehow Shaun and I were standing in my Kitchen. "Would you like something to drink?" //My mama taught me good manners!// "A glass of water would be nice, thank you." His deep baritone felt somehow both out of place in my home and yet perfectly at home. "Coming right up!" I poured two glasses of water and handed one of them to Shaun. [img[images/mwgrosh4.jpg]] He was obviously thirsty after his run. At least that's what it looked like the way he gulped down every drop of the water in his glass. Though I'm sure he had some water while he was out there. He was an experienced fitness enthusiast, so he was always prepared with something as basic as having water. Clearly this was a ploy to stall a little bit, to get me comfortable with the idea of his being in my home. Not that this was necessary. We had been working out together for weeks now. That said, his ploy worked. He drank the water so quickly that a little bit dribbled out the side of his glass, down the corner of his lips. It was subtle but very sexy. "Alright, well, I need to get a shower. Thank you so much for the water," he said. I walked him to the door and returned to my own lonely glass of water in the Kitchen. [img[images/mwgrosh5.jpg]] //Shaun is such a nice guy. And so sexy.// I thought about my neighbor as I sipped on my water. //$w.fn, you learned your lesson about jocks in high school and college, didn't you? Ugh, but there's just something about him. A charisma, maybe . . . .// //Big Dick Energy//. I struggled but failed to prevent the thought from crossing my mind. //Shit.// <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<nobr>> <<set _im to random(1,3)>> <<if _im is 1>> <<randompic 1 3 wgym>> <<elseif _im is 2>> <<randompic 1 3 wshgym>> <<set $w.rous += 10>> <<elseif _im is 3>> <<randompic 1 5 sgym>> <<set $w.rous += 10>> <</if>> <</nobr>> I was starting to work out even more often than usual. Sometimes I only went to the Gym with the hopes that Shaun was there. He wasn't always here, but when he was, my day got just a little bit brighter.
<<nobr>> <<randompic 1 4 wshlunch>> <<if ndef $w.xr.sh.l>><<set $w.xr.sh.l to 0>><</if>> <<set $w.xr.sh.l += 1>> <<set $w.xr.sh.daylch to true>> <</nobr>> Shaun and I met up for lunch again. This was becoming a very nice way to break up the routine. It got quite a bit lonely with $h.fn being the only other person I ever really hung out with. And day after day alone in the apartment when he would go to work was driving me stir-crazy. \ <<nobr>> <<if $w.xr.sh.l gte 5>> <br><br> <<randompic 1 2 wshk>> <<set $w.rous += 20>> <br><br> //Something just feels right when I kiss him . . . but I'm just playing games. I won't take it any further than this. No, an innocent kiss every so often is ok, right? As long as it doesn't go any further?//<br> <</if>> <</nobr>>\
<<nobr>> [img[images/aptbuilding_day1.jpg]] <<set $w.xr.sh.asko2 to true>> <</nobr>> As I stepped out into the street, refreshed from the great workout and cold shower, I immediately saw Shaun hanging around a few yards away from the front door, looking at his phone. As hot as he was in his workout clothes, in street clothes Shaun was just as stylish. He looked even sexier, somehow I approached him. "Hey you! So, where are you takin' me?" <<showvideo wshang1>> I followed alongside Shaun as we started walking down the street. "There's this nice little shop we can grab a light lunch a couple blocks away." While we walked, we talked. We joked, we laughed. These weeks of hanging out with Shaun in the gym had cut away a lot of the awkwardness of a first date. //A first date . . . .// <<randompic 1 3 wshlunch>> Lunch was pleasant. The food was pretty good, one of the hundreds of hidden gem little bistros and cafes that litter the streets of every big city. The company was even better. Shaun was witty. He had a broad base of knowledge that allowed for our conversation to touch on a lot of different topics intelligently, even if only briefly. And looking across the table at him for an hour or so was definitely //not// the worst afternoon I'd ever had. <<showvideo wshang2>> After lunch (Shaun paid, of course!) we started to walk back home. Honestly, I kinda wished it would last a little longer. It seems Shaun had the same idea. "You know, I'm free the rest of the afternoon. I was thinking, why don't we walk over to the park and enjoy a little bit more of the sunshine? Are you in a hurry to get back?" "Yeah, that sounds great! I just need to be back early enough to start dinner around 5. $h.fn gets home about 5:30 usually." <<showvideo wshang3>> We walked to the park and just kinda hung out, really getting to know each other better. We talked for a while and then the next thing I knew, it was nearly 4 o'clock! "Oh my God! How is it so late already?" We left the Park and crossed the street toward our building. [img[images/wshang4.jpg]] "Well, I guess this is it for now. I have had so much fun! We definitely should do this again!" Shaun agreed and put his hands on my waist drawing me close to him for a hug. //Mmm . . . he smells so good.// The warmth of his body pressed up against mine stops everything for just a moment. The city goes silent. For just a moment, I am not on this planet, I am not in this city, I am not a wife, I am not $w.fn. I am just bathing in //him//, in his presence. I realized that I had been holding my breath. I let it out, and the whole world came snapping back into place. "OK, I need to get upstairs. . . . See you in the gym?" "I can't wait," he intoned. //Trouble.// <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<nobr>> <<set _im to random(1,2)>> <<if _im is 1>> <<randompic 1 3 wgym>> <<elseif _im is 2>> <<randompic 1 3 wshgym>> <<set $w.rous += 10>> <</if>> <<set $w.rous += 30>> <</nobr>> I was starting to work out even more often than usual. Sometimes I only went to the Gym with the hopes that Shaun was there. This time, he was there. //So sexy . . . .// I daydreamed, staring at Shaun's hard body while I was working out. <<timed 1.5s>>"Ow!" I screamed. "Fuck! Muscle cramp!" Shaun quickly ran to my side. "You ok?" "Yeah, yeah. I probably need to eat more potassium or something. I just got a cramp in my thigh." "Ooo, that sucks. . . . You know, I am pretty well known for my massages, if you're interested?" //Did he say //massage//? That's the magic word!// "Um, yeah? I am //always// interested in a massage!" I started to exaggerate my cramp. "Ow! It hurts sooo bad! I don't think I'll be able to walk!" I stretched out my arms, indicating that he should help me up. "Alright," he said. "I guess I'll have to carry you to my apartment." //Touché, sir. Well-played.// [img[images/mwgymf1.jpg]] Shaun leaned down and I climbed onto his back. We stopped by the lockers so we could grab our things----all without putting me down!----and then he carried me all the way to his apartment. He paused briefly to unlock the front door, [[and then we entered Shaun's apartment|MW_Gym_F2]]<</timed>>\
When we got to Shaun's room, he carefully placed me down on his bed. "How's that cramp?" he asked me. "Definitely still needs to be rubbed out." [img[images/mwgymf2.jpg]] I started undressing even before he closed the door. At this point, we both knew why we were there. But just in case, I decided to signal my consent and clear up any possibility of misunderstanding. "You know, to be on the safe side, you ought to undress too. I wouldn't want your clothes to get messy while you're giving me a massage." //That should be subtle enough.// <<showvideo mwshmsg1>> I laid face-down on Shaun's bed while he took off his clothes. Kinda nervous, I closed my eyes until I felt his touch on my bare skin. The first thing I felt was the massage oil. It startled me when I felt the first few drops. <<showvideo mwshmsg2>> "Sorry, it might be a little cold," he warned too late. "It's ok . . . . Just make sure I never forget this massage." "I think I can guarantee that." <<showvideo mwshmsg3>> Shaun's hands presented contradictions: strong but gentle, hard but smooth. These were the hands of a man that worked hard but took care of his skin. He could handle both heavy machinery and the most feminine of women. //Probably gives quite a few "massages," if I had to guess. All that lotion keeps his hands soft.// Somehow, these thoughts caused the slightest hint of jealousy to cross my consciousness. But it didn't turn me off at all. If anything, the idea that he might "know what he's doing" kind of turned me on. <<showvideo mwshmsg4>> Slowly, firmly, he rubbed the massage oil into the bare skin of my naked body, from my shoulders down my back, over my ass, to my thighs and calves. "Where is that cramp?" he asked. "Mmmmm . . . right there, in my thigh . . . mmmmm." He applied just a little bit more pressure to my tender muscle, working out the cramp with the precision of a surgeon. "Oh yeah, right there," I moaned almost-orgasmically as the cramp literally melted away under his touch. "Oh my God, that is so much better!" <<showvideo mwshmsg5>> Shaun did not stop rubbing even once I indicated that his massage was no longer needed. //Good//, I thought. //Please don't stop.// As he shifted his body to focus on my shoulders, I felt a separate pressure on my lower body. The weight of his cock had settled onto my ass. //Shit. There it is.// His cock was very nice. Not the biggest I've ever felt, though as it grew harder it certainly grew larger. Its length was more impressive than its girth, comparatively, but it was no slouch in either direction. I wanted to feel more of it, so I moved my hips to caress this dick with my ass. It responded by stiffening a little bit more. I moaned again as he worked on the tension in my neck and shoulders. //[[Relaaaax . . . .|MW_Gym_F3][$w.rous += 50]]//\
<<showvideo mwshmsg6>> Shaun's hands continued to wander sensually around my body. I wanted to signal to him that I was ready to escalate, but I didn't want to just come right out and say it. The next time he moved to my lower body, I shifted under his touch, spreading my legs wide enough to both invite him in and welcome his arrival. <<showvideo mwshmsg7>> He got the hint. He ran his hands back up my thighs, applying pressure to his massage. But this time he slid to the inside. And he didn't stop when he reached the top of my thighs.. I shuddered as he finally touched my pussy. This was no accident, and he ensured that no one could mistake it as such. Using both hands, he spread my ass cheeks, in a way that both parted the lips of my pussy and exposed my asshole. //Fucking touch me!// <<showvideo mwshmsg8>> My pussy betrayed my arousal. She opened too easily. Shaun went further, sliding two fingers about inside me, about halfway. "Fuck, yes!" I grunted. <<showvideo mwshmsg9>> When he entered me again, he pushed his fingers all the way. I gasped involuntarily at the depths inside me that he reached. "You like that?" he asked. "You want me to make you cum?" "Oh, please, Shaun, please make me cum!" He shifted his focus to the outside of my pussy. As I rolled over onto my back, he pet my kitty vigorously, spreading my juices around and sending shockwaves every time he brushed against my clit. <<timed 2s>><<shakescreen 2s>>\ <<showvideo mwshmsg10>> That first orgasm surprised me. "God damn!" I shouted, my fingers digging into the sheets of his bed as I grabbed ahold of anything I could reach. //It's been years since I came just from touch, without any real penetration . . .// But he didn't stop just because I had gotten off . . . . <<next 4s>><<shakescreen 2s>>\ <<showvideo mwshmsg11>> "Oh fuck! What the fuck?!" The second orgasm completely caught me off guard. I came twice in like three minutes! Instinctively, I reached out and grabbed his rock-hard cock with both hands. //[["Don't just lay there, " + $w.fn + "!"|MW_Gym_F4][$w.rous += 30]]//\ <</timed>>\
<<showvideo mwshmsga1>> "OK, that's enough! Lay on your back, it's your turn for a massage!" I ordered Shaun. He did as he was told. I used the strength of my whole body to rub him up and down. To be honest, what I was doing barely qualified as a massage as opposed to just naked woman rubbing on naked man. <<showvideo mwshmsga2>> I did my best to tease him, resisting as much as possible the temptation to touch his cock. It definitely wasn't easy: his cock was standing at big, strong attention right in front of my face. From time to time, I failed completely, brushing against it with one or both hands. //Yup, still hard as a rock!// <<showvideo mwshmsgb1>> //OK, you know what?// I asked myself. //I'm not sure who this is hurting more. I'm the one with the delicious cock in my face.// <<showvideo mwshmsgc1>> I slowly ran the length of my body up the full length of his, coming to rest on top of him. My fingertips rose and fell with the mountains and valleys of his sculpted musculature. //I mean, I know I met him in a gym but this guy is made of granite! Good lord!// <<showvideo mwshmsgc2>> When I reached his face, I kissed him deeply on the lips. His arms stretched around to hold me closer. We continued to make out as I rolled off of his body to lie next to him, in his arms. <<showvideo mwshmsgc3>> Our caresses intensified. While his hands returned to wandering around every sensitive part of my body, again my arousal rose. I reached down and grasped his cock once again. It was definitely a handful. I stroked him while we kissed. It was all so much. <<showvideo mwshmsgd1>> I broke off the kiss and sat upright. Pulling his dick straight up with me, I slowly stroked him. I was amazed at how it stood like a great monument. <<showvideo mwshmsgd2>> !!!What do you want to do? [[Make Shaun cum|MW_Gym_F5b]] <<link [['"I want you to fuck me!"'|MW_Gym_F6]]>> <<set $w.rous += 40>> <<set $SexScene to true>> <<set $Partner1Name to "Shaun">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<if $w.rous gte 100>><<set $povmod to ($w.rous / 100)>><<else>><<set $povmod to 1>><</if>> <<set $npcmod to 0.5>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<set _ShCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _ShCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>> //<<link "Time to go home" $nextpassage>><<unset $nextpassage>><<set $w.xr.sh.evt1on to true>><<set $w.xr.sh.evt1off to false>><</link>>//\
<<showvideo mwshfa1>> Shaun put a condom on and leaned over me. Legs spread wide, I grabbed him with both hands. I rubbed his cock up and down the outer edge of my pussy lips. I could see the latex glistening with the fluids my body was producing. //Fuck, I'm so god damn wet! I am //so// ready!// <<showvideo mwshfa2>> I guided Shaun's cock inside me, slowly. "Oh fuck, oh fuck, oh fuck!" I will //never// get over the slight pain of getting stretched by a good-sized cock, feeling every inch the first time it enters my body. <<include [[MW_GymF_SexOptions]]>>\
<<showvideo mwshmsg12>> "You are so sexy, Shaun. I can't believe you made me cum twice already!" I looked up at him in admiration as I enjoyed touching his body, one hand gently on his balls, the other hand roaming up his concrete abs and chest. "I feel like maybe I should do something for you," I continued. "You know, in exchange for this free massage. My cramp is gone!" <<showvideo mwshmsg13>> He was still rubbing my pussy, though he had switched to a slow, light touch. It was building the next orgasm, not yet edging but intending to get there. And it was doing the trick, with flawless technique, taking into consideration my post-orgasmic sensitivity while not quite letting me cool off. <<showvideo mwshmsg14>> //Two can play this game!// I started stroking his dick, slowly, steadily. If I was going to approach another orgasm, then so would he! <<showvideo mwshmsg15>> Once again, though, my arousal betrayed me. With his cock so close to my face, and me with two climaxes already under my belt and a third threatening to sneak up on me, I decided to up the ante. The deep musk had invaded my consciousness. I needed to taste it. I leaned forward and carefully placed his dick on my open mouth. [img[images/mwshmsg15b.jpg]] I ran my tongue softly up and down the length of his shaft, savoring the boldness of its flavor. But I still only wanted to tease him, so I stopped myself from taking his whole cock into my mouth. I stopped myself from sucking it, stroking it, making him cum, and swallowing every drop he gave me. I stopped myself from doing what I //really// wanted to do. //Fuck! I am so fucking horny!// <<showvideo mwshmsg16>> Shaun clearly did not have the same limitations as those I had imposed on myself. Nothing held him back from fully committing to eating me out. He didn't have to play the innocent games I was playing, holding myself back from my true desires. I couldn't help my smile the second I felt his lips and tongue on my sweet spot. My smile faded into something else when that slow burn jumped directly to raging inferno. <<timed 2.5s>><<shakescreen 2s>>\ <<showvideo mwshmsg17>> This orgasm was more intense than the two previous ones, probably due to the longer build-up of direct stimulation bringing me to the edge and holding me there. But this was also the last straw. I wanted to please him. I was //going to// make him cum. The only thing left for me to do is decide whether to cross that finish line or simply return the favor without going all the way. !!!What do you want to do? [['"OK, lay down. Your turn for a massage!"'|MW_Gym_F5]] <<link [['"I want you to fuck me!"'|MW_Gym_F6]]>> <<set $w.rous += 40>> <<set $SexScene to true>> <<set $Partner1Name to "Shaun">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<if $w.rous gte 100>><<set $povmod to ($w.rous / 100)>><<else>><<set $povmod to 1>><</if>> <<set $npcmod to 0.5>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<set _ShCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _ShCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>><</timed>>\
[img[images/livingroom.jpg]] The Living Room is the centerpiece to every apartment. This is where we spend a lot of our time. Watching TV, playing video games, hanging out with friends, talking, napping, reading . . . whatever. //$w.fn isn't here. Where is she?// !!!What do you want to do? [[Relax on the couch for an hour|WSh_FirstCheatHome1][$temploc to 0]] [[Play video games|WSh_FirstCheatHome1][$temploc to 1]] [[Watch TV|WSh_FirstCheatHome1][$temploc to 2]] !!!Where do you want to go? [[Master bedroom|WSh_FirstCheatBR]] [[Bathroom|WSh_FirstCheatBath]] [[Kitchen|WSh_FirstCheatK]] [[Guest Room|WSh_FirstCheatGR]] [[Balcony|WSh_FirstCheatBalc]]\
[img[images/bedroommain.jpg]] Our apartment is pretty modest, but $w.fn really put in the effort to make things as nice as she could. Our bedroom is as comfortable as it could possibly be. She even made the effort to decorate it in a gender-neutral way . . . not so feminine that I would feel out of place. (//God, she is the best!//) //$w.fn isn't here. Where is she?// !!!What do you want to do? [[Take a short nap (1 hour)|WSh_FirstCheatHome1][$temploc to 3]] !!!Where do you want to go? [[Living Room|WSh_FirstCheatStart]]\
[img[images/bathroom1.jpg]] //$w.fn isn't here. Where is she?// !!!What do you want to do? [[Take a quick shower|WSh_FirstCheatHome1][$temploc to 4]] !!!Where do you want to go? [[Back to the Living Room|WSh_FirstCheatStart]]\
[img[images/kitchen1.jpg]] Both $w.fn and I love to cook, so having a decent kitchen was a must when we were looking at homes. This one may not be professional-grade, but it was perfect for us. //$w.fn isn't here. Where is she?// !!!What do you want to do? [[Grab a cup of coffee|WSh_FirstCheatHome1][$temploc to 5]] [[Grab a quick snack|WSh_FirstCheatHome1][$temploc to 6]] !!!Where do you want to go? [[Living Room|WSh_FirstCheatStart]]\
[img[images/grbase1.jpg]] //$w.fn isn't here. Where is she?// !!!What do you want to do? [[Use your laptop|WSh_FirstCheatHome1][$temploc to 7]] [[Take a short nap|WSh_FirstCheatHome1][$temploc to 3]] !!!Where do you want to go? [[Living room|WSh_FirstCheatStart]]
<<randompic 1 4 hbalcony>> From my perch here on the balcony of our apartment, I could see pretty far up and down the city streets. We were'nt quite high enough to say that the people below looked like ants, but they definitely looked like smaller people . . . . //$w.fn isn't here. Where is she?// !!!What do you want to do? [[Hang out for a little (30 minutes)|WSh_FirstCheatHome1][$temploc to 8]] !!!Where do you want to go? [[Living room|WSh_FirstCheatStart]]\
<<nobr>> <<addhours 1>> <<if $temploc is 0>> <<randompic 1 8 hcouchrelax>><br><br>//Sometimes you just need to relax for a bit . . . .// <<elseif $temploc is 1>> <<randompic 1 4 hlrgaming>><br><br>I spent about an hour playing video games by myself. It was fun but I should probably go find something a bit more productive to do. <<elseif $temploc is 2>> <<randompic 1 5 hlrtv>><br><br>//1000 channels and barely anything good on TV . . . Wait, am I still paying for cable? When's the last time I watched something on cable?// <<elseif $temploc is 3>> <<randompic 1 3 hbrnap>><br><br>//Sometimes you just need a little nap . . .// <<elseif $temploc is 4>> <<randompic 1 4 hshower>> <<elseif $temploc is 5>> <<randompic 1 4 hcoffee>><br><br>//Mmmm . . . coffee . . . .// <<elseif $temploc is 6>> <<randompic 1 5 hksnack>><br><br>A little snack should give me that needed boost of energy to get through the next few hours . . . . <<elseif $temploc is 7>> <<randompic 5 6 telework>> <<elseif $temploc is 8>> <<randompic 1 4 hbalcony>> <</if>> <</nobr>> <<timed 1s>>. <<next>>. <<next>>. <<next 2s>> <<if $temploc lte 2>>\ Sitting on the couch, thinking about what I should do for dinner, and wondering where $w.fn was, I suddenly heard the key enter the lock in the front door. I sat up and watched my wife rush in. <<else>>\ I was thinking about what I should do for dinner and wondering where $w.fn was. Suddenly I heard the front door slam. I hurried out to the Living Room to see my wife rush in. <</if>> "Sorry, $h.fn! I was working out in the Gym downstairs and got into a zone, just thinking about my book, and I wasn't watching the clock! I am so sorry! Can you just order some pizza for dinner while I hose myself off?" The Bathroom door closed behind her before I even had a chance to respond. //Guess I'm ordering a pizza?// <<nobr>> <<unset $temploc>> <<set $w.xr.sh.evt1off to true>> [[Continue|WSh_FirstCheatHome2]] <</nobr>><</timed>>\
The pizza arrived about 40 minutes after I ordered it. $w.fn had gotten out of the shower and was back in our Bedroom getting dressed. No sooner did I close the door than I finally heard my wife emerge from the back. <<nobr>> <<run $gameDate.setHours(20)>> <<run $gameDate.setMinutes(0)>> [img[images/wshpizza1.jpg]] <</nobr>> "Oh thank God, I am //starving//! I really worked up a hell of an appetite today!" "Mmm . . . this smells so good!" I remarked. We had two pizzas, cooked from scratch at this place that used a traditional stone oven. My favorite had a mix of meats and peppers and the other was a smaller cheese pizza where you could really just taste the sweet and savory sauce with no interference. We had discovered this place just down the street during the pandemic. It was one of the few places that would deliver locally----probably broke some ordinances during the lockdown. But the food was amazing and we would always order it when we wanted a treat. It had come to symbolize something special for us. //Was there something special about tonight?// <<link [[Enjoy the pizza!|WSh_FirstCheatHome3]]>><<addminutes 30>><</link>>\
[img[images/wlrtva5.jpg]] After we finished dinner, we curled up on the couch for a movie. $w.fn cuddled up in my arms and fell asleep only about a half-hour in. It's been a while since she's done that. Not gonna lie, it felt really nice. //She is really tired. She really must have been working out hard today.// Before too long, feeling her warmth up against me and the quiet, soothing cuteness of her light snoring, I also fell asleep. By the time I woke up, the movie had ended. Both $w.fn and I had slept through most of it. //Guess we'll have to try to watch that one again some other time.// I moved ever-so-slightly, but it was enough to awaken $w.fn. She groggily looked at the TV. "Aww, did I miss the movie?" "Yeah, baby. We'll try again another night." "OK, baby," she said as she stood up and stretched. "I'm gonna go to bed. Love you!" She leaned over and kissed me on the forehead, then retreated to the Bedroom. <<link [[Continue|LivingRoomMain]]>> <<set $w.loc to 0>> <<addhours 3>> <<addminutes 50>> <<set $w.xr.h.day.tdy to 0>> <</link>>
<<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|MW_GymF_SexA1]] [[Doggystyle|MW_GymF_SexB1]] [[Cowgirl|MW_GymF_SexC1]] <<elseif $POVCumPoints gte 100>>\ <<include [[MW_GymF_WCum]]>> <<elseif $NPCCumPoints gte 85>>\ <<include [[MW_GymF_SCum]]>> <</if>>\
<<nobr>> <<randomvideo 1 6 mwshfsa>> <br><br> <<set _wcpplus to random(5,20)>> <<set _scpplus to (random(5,20))>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _scpplus to Math.round(_scpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += Math.clamp(_scpplus,1,85)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <<include [[MW_GymF_SexOptions]]>> <</nobr>>\
<<nobr>> <<if previous() is not "MW_GymF_SexB1">><<showvideo mwshfb0>><br><br><</if>> <<randomvideo 1 7 mwshfb>> <br><br> <<set _wcpplus to random(5,20)>> <<set _scpplus to (random(5,20))>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _scpplus to Math.round(_scpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += Math.clamp(_scpplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <<include [[MW_GymF_SexOptions]]>> <</nobr>>\
<<timed 2.5s>><<shakescreen 2s>> <<if passage() is "MW_GymF_SexB1">> <<showvideo mwshfsbc1>> <</if>> <br><br> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,$w.rous)>> <<set $w.xr.sh.cm += 1>> <<set $povmod to $povmod * 1.2>> <<set $w.pref.bk += 0.5>> <<set $w.pref.sq += 1>> <<include [[MW_GymF_SexOptions]]>> <</timed>>
I could tell from Shaun's jerky movements, he was about to cum. //No, I can't let this go to waste in a plastic bag!// I pulled his cock out of me and stripped the condom off of it. <<showvideo mwshcum1>> I had to resist the urge to push his unprotected unit back into me. This was not easy. I very much wanted him to fuck me hard and fill me with his sauce. The feeling of his bare skin on mine was driving me crazy. <<showvideo mwshcum2>> "Let me make you cum, baby," I purred. To this effect, I started to stroke him, rubbing him on the outside of my creamy lips. <<showvideo mwshcum3>> "Aaahhh!" Shaun loudly moaned. His cum shot onto my body, landing hot on the skin of my stomach and chest. <<showvideo mwshfend>> I laid there in bed with Shaun, snuggled up in post-coital peace and post-nut clarity. //I definitely crossed a line here that I can't uncross . . . And I'm not sure that I regret it at all . . . .// //<<link "Time to go home" $nextpassage>> <<unset $SexScene>> <<set $w.xr.sh.evt1on to true>> <<set $w.xr.sh.evt1off to false>> <<set $w.xr.sh.x += 1>> <<if $w.xr.h.rel.m>> <<set $w.xr.sh.cht to true>><<set $w.evt.cht += 1>><</if>> <<set $Partner1Name to "">> <<set $w.rous += $POVCumPoints / 4>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<unset $npcmod>> <<unset $povmod>> <<addclass "#right-ui-bar" "stowed">> <<unset $nextpassage>> <<run $mwile.delete(7)>> <</link>>//\
<<nobr>> <<randomvideo 1 7 mwshfsc>> <br><br> <<set _wcpplus to random(5,20)>> <<set _scpplus to (random(5,20))>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _scpplus to Math.round(_scpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += Math.clamp(_scpplus,1,120)>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <<include [[MW_GymF_SexOptions]]>> <</nobr>>\
<<showvideo mwshmsge1>> I had to end this torture. I moved down to my previous position near Shaun's cock and grabbed it with both hands. I gave it a little kiss on its head and felt it twitch under my lips. <<showvideo mwshmsge2>> //Got him!// I repeated the motion, this time focusing even more attention onto his cock as I swirled my wet lips around the head. My saliva mixed with a little bit of pre-cum to leave a slight glisten on the tip. I definitely wanted to taste more. //Maybe not today, but someday . . . .// <<showvideo mwshmsge3>> I gripped both hands tightly around his cock and aggressively pumped it, determined to bring Shaun to climax. <<showvideo mwshmsge4>> Finally, after a few minutes of this, Shaun finally let go. He grunted as he came. "Oh, //yeah//, baby girl! Fuck!" The deep tenor echoed out. //Wow! That is soo much cum! So thick and creamy!// I admired it as it shot outwards, landing on his chiseled abs. I immediately regretted not taking that cum inside me . . . . //<<link "Time to go home" $nextpassage>><<unset $nextpassage>><<set $w.xr.sh.evt1on to true>><<set $w.xr.sh.evt1off to false>><</link>>//\
<<nobr>> <<set $h.xr.bth.lt to true>> [img[images/bethteam5.jpg]] <</nobr>> Beth and I were busy combing through the past few years of gross receipts, looking for avenues for expanded revenue. This was a key part of this new business arrangement. We needed to be able to sell our firm to the shareholders of this new client. "Knock, knock!" Richard chimed from the doorway of the conference room where we had set up camp. [img[images/rd1.jpg]] "How are things going here?" he asked, peeking towards the nearest computer screen. "Not too bad, making progress," Beth answered. "Oh, good, so then you won't mind that the timeline has been accelerated, right?" he didn't really ask. "Wait, what?" Richard continued, "Yeah, looks like we are going to need these numbers ahead of the original schedule. I'm gonna need the two of you to put in some late nights over the next few weeks. The nights you come in here to the office should be enough to cover it. I don't think you will need to come in on your scheduled telework days. Use those to keep up on your other duties as you have been doing." "Shit, well, at least this is only temporary. $w.fn's not gonna love it, but I'm sure it'll work out," I said. "That's the spirit! You two are my aces!" Richard left <<include [[OfficeAMLinks]]>>\
<<nobr>> [img[images/fiveoclock.jpg]] <<set $h.evt.wk.w += 1>> <</nobr>> //Five o'clock! Ugh, looks like I'm in for another late night . . . <<if $h.xr.bth.rel gte 10>>At least I have Beth here to keep me company!<</if>>// <<link "Continue">> <<if $w.pov>> <<set $nextpassage to "OfficeLateDone">> <<goto [[Meanwhile_LateSelector]]>> <<else>> <<include [[MWLateStats]]>> <<goto [[OfficeLateDone]]>> <</if>> <<set _end to random(19,23)>> <<run $gameDate.setHours(_end)>> <<run $gameDate.setMinutes(0)>> <</link>>\
<<randompic 1 3 hworklate>> //Finally! Time to go home!!// [[Get out of there . . .|BusRide2Home]]\
<h1>Meanwhile . . .</h1> <<timed 2.25s>> /* Special Events */ <<if not hasVisited("OfficeMain")>> /* change condition */ <<else>> /* Standard */ <<if ndef $mwlate or $mwlate.length lt 4 or $mwlate.length gte 15>> <<set $mwlate to [0,1,2,3,4,5,6,7]>> <</if>> <<if (not $w.xr.sh.m or not $w.xr.sh.gro1 or $w.xr.sh.rel lt 7) and $mwlate.count(6) lt 3>> <<run $mwlate.push(6,6)>> <</if>> <<if not $w.xr.h.rel.m and not $w.xr.h.rel.swg and $mwlate.count(7) lte 1>> <<run $mwlate.push(7,7,7)>> <</if>> <<run $mwlate.shuffle()>> <<set _wlate to $mwlate.pluck()>> <<if _wlate is 0>> <<goto [[MWLate_Bedroom]]>> <<elseif _wlate is 1>> <<goto [[MWLate_Bathroom]]>> <<elseif _wlate is 2>> <<goto [[MWLate_Kitchen]]>> <<elseif _wlate is 3>> <<goto [[MW_GuestRoom]]>> <<elseif _wlate is 4>> <<goto [[MWLate_Balcony]]>> <<elseif _wlate is 5>> <<goto [[MWLate_LivingRm]]>> <<elseif _wlate is 6>> <<goto [[MWLate_Gym]]>> <<elseif _wlate is 7>> <<goto [[MWLate_Street]]>> <</if>> <</if>> <</timed>>
/* Special Events */ <<if not hasVisited("OfficeMain")>> /* change condition */ <<else>> /* Standard */ <<if ndef $mwlate or $mwlate.length lt 4 or $mwlate.length gte 15>> <<set $mwlate to [0,1,2,3,4,5,6,7]>> <</if>> <<if (not $w.xr.sh.m or not $w.xr.sh.gro1 or $w.xr.sh.rel lt 7) and $mwlate.count(6) lt 3>> <<run $mwlate.push(6,6)>> <</if>> <<if not $w.xr.h.rel.m and not $w.xr.h.rel.swg and $mwlate.count(7) lte 1>> <<run $mwlate.push(7,7,7)>> <</if>> <<run $mwlate.shuffle()>> <<set _wlate to $mwlate.pluck()>> <<if _wlate is 0>> /* -------Bedroom------------------ */ <<set _scene to random(1,5)>> <<set _scene to _scene * ($w.rous / 100)>> <<if _scene gte 5>> <<set $w.rous -= 20>> <</if>> /* ------------------------------------- */ <<elseif _wlate is 1>> /* --------Bathroom---------------- */ <<set _scene to random(1,4)>> <<if _scene is 2>> <<set $w.rous += 10>> <<elseif _scene is 3 and $w.rous gt 150>> <<set $w.rous -= 20>> <<elseif _scene is 4 and $w.rous gt 150>> <<set $w.rous -= 20>> <<else>> <<set $w.rous += 10>> <</if>> /* ------------------------------------- */ <<elseif _wlate is 2>> /* ---------Kitchen--------------- */ /* ------------------------------------- */ <<elseif _wlate is 3>> /* ---------GuestRoom-------------- */ <<if ($h.evt.prn.str + $h.evt.prn.les + $h.evt.prn.int + $h.evt.prn.grp + $h.evt.prn.cuk) gte 5>> <<set _scene to random(1,10)>> <<else>> <<set _scene to random(1,5)>> <</if>> <<if _scene gte 6>> <<if $h.evt.prn.les gte $h.evt.prn.str and $h.evt.prn.les gte $h.evt.prn.int and $h.evt.prn.les gte $h.evt.prn.grp and $h.evt.prn.les gte $h.evt.prn.cuk>> <<set $w.pref.bi += ($h.evt.prn.les * 0.5)>> <<elseif $h.evt.prn.int gte $h.evt.prn.str and $h.evt.prn.int gte $h.evt.prn.les and $h.evt.prn.int gte $h.evt.prn.grp and $h.evt.prn.int gte $h.evt.prn.cuk>> <<set $w.pref.bk += ($h.evt.prn.int * 0.5)>> <<set $w.pref.sq += ($h.evt.prn.int * 0.5)>> <<elseif $h.evt.prn.cuk gte $h.evt.prn.str and $h.evt.prn.cuk gte $h.evt.prn.int and $h.evt.prn.cuk gte $h.evt.prn.grp and $h.evt.prn.cuk gte $h.evt.prn.les>> <<set $h.pref.cuk += ($h.evt.prn.cuk * 0.5)>> <</if>> <<set $w.rous += 20>> <</if>> /* ------------------------------------- */ <<elseif _wlate is 4>> /* ----------Balcony------------- */ /* -------------------------------- */ <<elseif _wlate is 5>> /* -------------LivingRm-------------- */ /* ------------------------------------- */ <<elseif _wlate is 6>> /* -------------Gym--------------------- */ <<if ndef $gym>><<set $gym to 0>><</if>> <<set $gym += 1>> <<if $gym is 6>> /* meet shaun */ <<set $w.xr.sh.rel += 1>> <<set $w.xr.sh.m to true>> <<set $w.pref.bk += 0.5>> <<set $w.rous += Math.clamp(Math.round(10 + ($w.pref.bk * 5)),10,50)>> <<elseif $w.xr.sh.m and $dtsv.gym isnot $gameDate.getDate() and ((not $w.xr.sh.gro1 and $w.xr.sh.rel lt 7) or ($w.xr.sh.gro1 and not $w.xr.sh.asko1))>> /* work out w/ shaun */ <<set $w.evt.gym += 1>> <<set $w.pref.bk += 0.25>> <<set $w.xr.sh.rel += 1>> <<set $w.rous += 20>> <<set $dtsv.gym to $gameDate.getDate()>> <<elseif $w.xr.sh.asko2 and ($w.xr.sh.x is 0 or ($w.xr.sh.x gt 0 and $w.xr.sh.xtk))>> <<set _scn to random(3)>> <<if _scn gte 2 and not $w.xr.sh.daylch and $w.xr.sh.l isnot 5>> <<if ndef $w.xr.sh.l>><<set $w.xr.sh.l to 0>><</if>> <<set $w.xr.sh.l += 1>> <<set $w.xr.sh.daylch to true>> <<if $w.xr.sh.l gte 5>><<set $w.rous += 20>><</if>> <<else>> <<set _im to random(1,3)>> <<if _im is 2 or _im is 3>><<set $w.rous += 10>><</if>> <</if>> <<elseif $w.xr.sh.x gt 0 and $w.rous gte 100>> <<set _wcum to random(3,10)>> <<set _povmod to Math.clamp(($w.rous / 100) * $w.pref.bk,0,3)>> <<set _wcum to Math.round(_wcum * _povmod)>> <<set $w.rous to Math.clamp(($w.rous - (20 * _wcum)),0,1000)>> <<set $w.xr.sh.x += 1>> <<set $w.xr.sh.cm += Math.round(_wcum)>> <<else>> <<if $gym gt 3>><<set $w.pref.bk += 0.5>><</if>> <</if>> /* ------------------------------------- */ <<elseif _wlate is 7>> /* -----------MWLate_Street--------- */ /* ------------------------------------- */ <</if>> <</if>>
<<set _scene to random(1,5)>> <<set _scene to _scene * ($w.rous / 100)>> <<if _scene gt 2 and _scene lt 5>> <<randompic 1 10 wasleep>><br><br> //No reason to stay up and wait for him . . . I guess I'll just see $h.fn tomorrow . . . .// <<elseif _scene lte 2>> <<randompic 1 5 wbedreading>><br><br> //At least I have my books to keep me company . . . .// <<elseif _scene gte 5>> <<if $inv.bbc>> <<randomvideo 1 6 wbbcdildo_A>><br><br> <<else>> <<randomvideo 1 4 wmastaloneA>><br><br> <</if>> <<timed 1.5s>><<shakescreen 2s>><<set $w.rous -= 20>><br><br> //I'm so fucking horny! Well at least this guy //always// satisfies me . . . .// <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>><</timed>> <</if>> <<if _scene lt 5>><br><br> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>> <</if>>
<<randompic 1 6 wklate>> //I guess I'm eating alone<<if visited() gt 1>> again<</if>> tonight . . . .// <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<set _img to random(6)>> <<if _img lt 6>> <<randompic 1 6 wbalclate>> <<else>> <<showvideo wsmoking1>> <</if>><br><br> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>
<<randompic 1 4 wlrlate>> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<set _scene to random(1,3)>> <<if _scene is 1 and $w.pref.ex gt 10>> <<include [[MWLateStreetA1]]>> <<elseif _scene is 2>> <<include [[MWLateStreetB1]]>> <<elseif _scene is 3>> <<include [[MWLateStreetC1]]>> <<else>> <<include [[MWLateStreetC1]]>> <</if>>
<<if (visited("MWLate_Gym") + visited("MW_Gym")) is 6>> /* meet shaun */ <<include [[MW_Gym_B]]>> <<elseif $w.xr.sh.m and $dtsv.gym isnot $gameDate.getDate() and ((not $w.xr.sh.gro1 and $w.xr.sh.rel lt 7) or ($w.xr.sh.gro1 and not $w.xr.sh.asko1))>> /* work out w/ shaun */ <<include [[MW_Gym_C]]>> <<elseif $w.xr.sh.asko2 and $w.xr.sh.x is 0>> <<include [[MW_Gym_E]]>> <<elseif $w.xr.sh.x gt 0 and $w.rous gte 100>> <<include [[MW_GymShaunLate1]]>> <<else>> <<include [[MW_Gym_A]]>> <</if>>
<<set _scene to random(1,4)>> <<if _scene is 1>> <<randomvideo 3 6 wshower>> <<elseif _scene is 2>> <<randompic 1 8 wbath>> <<set $w.rous += 10>> <<elseif _scene is 3 and $w.rous gt 150>> <<randomvideo 5 15 wshower_E>> <<shakescreen 2s>> <<set $w.rous -= 20>> <<elseif _scene is 4 and $w.rous gt 150>> <<randomvideo 1 3 wshowermast>> <<shakescreen 2s>> <<set $w.rous -= 20>> <<else>> <<randompic 1 8 wbath>> <<set $w.rous += 10>> <</if>><br><br> <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>
<<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<showvideo wcabride>> Since $h.fn wasn't going to be home until later, I decided to treat myself to a nice "dinner for one." I got dressed up and called a //RideMe// to pick me up. [img[images/wltdinner1.jpg]] When I arrived at the restaurant I was seated immediately, even without a reservation. It would seem they can always squeeze a single woman in somewhere. I ordered myself a nice "surf 'n' turf" dish: filet mignon and lobster. Paired with a house wine, nothing too expensive, but not too cheap. After I finished my meal, I relaxed just long enough to finish another glass of wine and let my food settle. Then I called a car, paid my bill (with a //generous// tip), and rode home. //If $h.fn is going to work all this overtime, at least //one// of us ought to enjoy the fruits of his labor. Hopefully we can have a nice night out together pretty soon!// <<link "Continue" $nextpassage>><<unset $nextpassage>><<set $Bank -= 100>><<set $w.tox.drk += 2>><</link>>\
<h1>Meanwhile . . .</h1> <<timed 2.25s>> [img[images/wseephone1.jpg]]<br><br> //OK, that's the second time. I'm going to check this out!//<br><br> <<link "Continue" $phonepassage>><</link>> <</timed>>
<<if $gameDate.getHours() gte 12>> <<set _addtime to ((23 - $gameDate.getHours()) + $alarm) >> <<else>> <<set _addtime to $alarm - $gameDate.getHours()>> <</if>> <<addhours _addtime>> <<run $gameDate.setHours($alarm)>> <<run $gameDate.setMinutes(0)>> <<set $h.tox.drk to 0>> <<set $h.tox.wd to 0>> <<set $w.tox.drk to 0>> <<set $w.tox.wd to 0>> <p>My alarm clock woke me up. //Yawn! Another day, another dollar . . .//</p> [[Get out of bed|MasterBedroomMain]]
[img[images/wseerd1.jpg]] My curiosity was eating away at me. As soon as I began to hear the low rumblings of $h.fn's snores, I made my move! Grabbing his phone off his bedside table, I tiptoed out into the Living Room and pulled up his messages. //Hmmm . . . there's nothing here except a couple of messages from his boss!?! //That// couldn't be what he was looking at, right?// I looked at the time stamp on the message from Mr. Day. //Eight o'clock . . . yeah, I think that's about what time I got in the shower tonight. Could this really be what he was looking at?// <<nobr>> <<link "Read the message">> <<popover>> [img[images/txtinrd1.jpg]]<br><br> <<link "Click to view media">> <<popover>> <<set _img to 7>> <span id="hbossvid"><<print '<video src="images/hbossvid' + _img + '.mp4" style="width:600px;" autoplay loop muted></video>'>></span><br><br> <<link "Next video">> <<if _img lt 12>> <<set _img += 1>> <<replace "#hbossvid">> <<print '<video src="images/hbossvid' + _img + '.mp4" style="width:600px;" autoplay loop muted></video>'>> <</replace>> <<elseif _img is 12>> <<set _img to 7>> <<replace "#hbossvid">> <<print '<video src="images/hbossvid' + _img + '.mp4" style="width:600px;" autoplay loop muted></video>'>> <</replace>> <<replace "#nextvid">> <<link "Read the other message">> <<popover>> [img[images/txtinrd1.jpg]]<br><br> <<link "Click to view media">> <<popover>> <<set _img to 13>> <span id="hbossvid"> <<print '<video src="images/hbossvid' + _img + '.mp4" style="width:600px;" autoplay loop muted></video>'>> </span><br><br> <<link "Next video">> <<if _img lt 16>> <<set _img += 1>> <<replace "#hbossvid">> <<print '<video src="images/hbossvid' + _img + '.mp4" style="width:600px;" autoplay loop muted></video>'>> <</replace>> <<elseif _img is 16>> <<set _img to 13>> <<replace "#hbossvid">> <<print '<video src="images/hbossvid' + _img + '.mp4" style="width:600px;" autoplay loop muted></video>'>> <</replace>> <<replace "#nextvid">><br> <<link [[That's enough|WSeeRDVid2]]>> <<run Dialog.close()>> <</link>> <</replace>> <</if>> <</link>> <span id="nextvid"><br></span> <</popover>> <</link>> <</popover>> <</link>> <</replace>> <</if>> <</link>><br> <span id="nextvid"></span> <</popover>> <</link>> <</popover>> <</link>><br><br> <</nobr>>\
[img[images/wmorning1.jpg]] "Good morning, my handsome husband!" $w.fn was sitting in the Living Room, highlighted by the morning sun coming in through the windows. "I've been pretty bored lately. Let's do something today." "Sure, baby. What do you want to do?" "Let's go to the beach!" //I should have guessed. $w.fn always did love to swim. I think she might have been on the swim team in high school or something.// The closest beach was about an hour's bus ride away from here. As long as we left home in the morning, it wasn't too crowded, either. It would get quite busy in the afternoon, though, so it wasn't even worth going that late----we wouldn't even be able to find an empty plot of sand to sit on. When the pandemic lockdowns started to lift a little bit, the beach was one of the first places deemed "safe," because it was outside. So people started to flock there, even more than they did before the pandemic. This popularity has continued ever since. "Sounds good! Let's hurry up and get out the door as soon as possible, though, so we can get there before it gets too crazy . . . ." <<showvideo hallwayB1>> "Yes!" $w.fn jumped up and ran down the hallway, clearly very excited now. <<link [[Follow her to the Bedroom|1stSatBeach2]]>> <<addminutes 15>> <</link>>\
<<showvideo bchpick01>> As I entered the Bedroom, $w.fn was standing in front of her closet. "Hey babe, do you want to help me pick out a bikini?" "Do you really need my help?" I asked. I was mentally running through a checklist of things we needed to take with us to the beach. <<showvideo bchpick02>> "Umm, no, not really . . . I was just thinking you might //want// to watch me try on a couple of bathing suits," she said. "Don't you think it could be kinda sexy?" I wanted to jump off the roof at that moment. How could I completely miss this opportunity to tell $w.fn how sexy she was?!? I mentally kicked myself in the face. "Oh my God! That sounds awesome, baby! I'm sorry, I was just distracted and what you said didn't register in my mind! I would absolutely //love// to help you pick out a bikini!" <<showvideo bchpick03>> "Nice save, my dude," $w.fn chuckled, grabbing a bikini out of her closet and stepping out of the room. <<timed 2s>>\ <<showvideo bchpick112>> She came back just a moment later, in a tiny yellow bikini that showed off so much of her beautiful body. "OK, this is the first one," she said. "I really like these frills on the bottoms. Don't you think they're cute?" "My dah-ling, you ah just gorgeous! Beautiful!" I mimed a chef's kiss. "Shut up, you frickin' dork!" $w.fn giggled as she left the room, bouncing back in front of me a few minutes later, in a different bikini altogether. <<showvideo bchpick125>> "I really like this one! Feel the material! It is sooo soft and comfy!" "Hmmm, yes. I see." This time I pretended to be a fashion critic. But really I was just trying to keep myself calm. The boy-shorts style bottom of this bikini just made my wife's tight plump ass pop! //Such a turn-on!// "OK, one more!" She blew me a kiss, before skipping out of sight to change once again. <<showvideo bchpick132>> There was just no way for this woman to look bad in a bikini. The shape of her slim but healthy body, the curve of her hips and breasts, begged to be released from the fabric that just barely covered it. "This one is a little more normal. Maybe this is the one I should wear?" She barely even posed, just standing in front of me "You look beautiful in anything you have on, and even better in what you don't have on. How did I trick you into marrying me?" "Awww. The same way I tricked you! I love you, babe." She looked deep into my eyes in the way that she has so many times before. "We're gonna get through this, babe. //Together//. I really //do// love you." //I love you too.// <<showvideo bchpick133>> "OK, that was fun! Now get out so I can really get ready!" $w.fn grinned and gave me the double peace signs, returning to the playful excitement she'd had all morning. I grabbed what little I needed from the room and tossed them into my bag before I headed out to the Living Room to wait for her. <<timed 3.5s>>\ "Alright, I'm ready! Let's go!" $w.fn came running out of the Bedroom with her beach bag in her hand and ran straight out the front door! //And there she goes!// I thought, chuckling. //She sure is anxious to get there! Well, I guess there's no time to waste!// I locked the door behind me as I headed into the hallway and followed her down to the street. The beach was not within walking distance----not the good beach anyways----so we would have to take the bus, about an hour away to the coast. "I hope we get there early enough, before it gets too crowded," she said, as we waited at the bus stop with our gear. <<link [[Get on the bus|1stSatBeach3]]>> <<addminutes 20>> <<set $w.xr.h.day.tdy += 3>> <</link>><</timed>><</timed>>\
[img[images/hbusmorning4.jpg]] The long ride to the shore was pretty uneventful. As soon as we left the downtown area, the bus filled up with other people going to the beach. //I sure hope it's not too busy.// <<link [[Continue|1stSatBeach4]]>><<set _tm to 70 + random(1,15)>><<addminutes _tm>><</link>>\
"You know what the Beach means?" $w.fn asked me. "Bikini! And //you// get to help me pick it out!" She grabbed a bikini and went to change into it. <<nobr>> <<if $w.pref.ex gte 5>> <<set _model to random(1,3)>> <<else>> <<set _model to random(1,2)>> <</if>> <<if _model is 1>> <<set _suit to random(1,3)>> <<if _suit is 2>> <<set _pic to random(1,5)>> <<else>> <<set _pic to random(1,3)>> <</if>> <<elseif _model is 2>> <<set _suit to random(1,3)>> <<set _pic to random(1,3)>> <<elseif _model is 3>> <<set _suit to random(1,2)>> <<if _suit is 2>> <<set _pic to random(1,4)>> <<else>> <<set _pic to random(1,3)>> <</if>> <</if>> <<set _vid to "bchpick" + _model + _suit + _pic>> <<showvideo _vid>> <</nobr>> "What do you think about this one?" she said, posing seductively. "It's not too revealing, is it? I wouldn't want to show off too much skin . . . . //Ha!// Just kidding!" I thought about the "clothing optional" part of the Beach where we ended up last time. //Will we go back to that part of the Beach again today? Will $w.fn's bikini be "optional"?// The thought was enticing. Before I knew it, $w.fn raced past me. "Meet you outside!" she hollered over her shoulder, just a split second before I heard the front door slam shut behind her. I hurried up and grabbed my stuff and followed her down to the street. [[Continue|StdBeachStart3]]\
/* bar standard */\ <<showvideo wwalknt3>> Once I realized $h.fn was going to be working late, I decided to go out and grab a beer or two. I didn't feel the need to get all dolled up or anything, just threw on some jeans and hit the street. I just really wanted to get out of the house for a little bit. I was going a little stir-crazy being there by myself all day. <<randompic 1 5 wbarlta>> The dive bar near our apartment building was relatively quiet tonight. I sat alone and had a couple of drinks. Enough to get a little buzz, but not too drunk. Throughout the evening I definitely caught a couple of guys with wandering eyes, checking me out. One guy in particular looked like he wanted to approach me, but I made it clear with my body language that I was not interested. Tonight was just about having a relaxing evening to myself . . . with other people around, of course. <<link "Continue" $nextpassage>><<unset $nextpassage>><<set $w.tox.drk += 2>><</link>>\
<<nobr>> <<set $w.xr.rd.vd to true>> <<set $w.rous += 30>> [img[images/wseerd2.jpg]] <</nobr>> I'll admit, I definitely did not anticipate what I would see when I opened the text message and clicked on the media file. //Holy shit! Is that $h.fn's boss, Richard? Why did he send $h.fn these videos of him fucking random girls?// //Why is his dick so big and hard? Why is he so //manly//?// <<showvideo wseerdms1>> I flipped through the videos a couple of times. Watching him dominate those women, fucking them with such strength. Watching their bodies give way, hearing their moans, as he penetrated them without mercy. I didn't realize it at first, but I had subconsciously started to rub my pussy on the outside of my pants. <<showvideo wseerdms2>> <<showvideo wseerdms3>> <<showvideo wseerdms4>> <<showvideo wseerdms5>> <<nobr>> <<timed 3s>><<shakescreen 2s>> <<showvideo wseerdms6>><br><br> [[Go back to bed|BR_Sleep]] <</timed>> <</nobr>>\
<<randompic 1 4 txtinwslf>><br><br> <center><<link "Click to view media">> <<set $dtsv.wfin to $gameDate.getDate()>> <<popover>> <span id='wifevid'> <<if $h.xr.w.slf lte 3>> <img @src="'images/wself' + $h.xr.w.slf + '.jpg'" style="width:338px;"> <<elseif $h.xr.w.slf gte 4 and $h.xr.w.slf lte 12>> <video @src="'images/wself' + $h.xr.w.slf + '.mp4'" style="width:338px;" autoplay loop muted></video> <<elseif $h.xr.w.slf gte 13 and $h.xr.w.slf lte 17>> <img @src="'images/wself' + $h.xr.w.slf + '.jpg'" style="width:338px;"> <<elseif $h.xr.w.slf gte 18 and $h.xr.w.slf lte 24>> <video @src="'images/wself' + $h.xr.w.slf + '.mp4'" style="width:338px;" autoplay loop muted></video> <</if>> <br><br> <center> <<button "Close">> <<run Dialog.close()>> <</button>> </center> </span> <</popover>> <</link>></center>
<<nobr>> <<set $h.rous += 20>> <<set $h.pref.wex += 1>> <<set $w.pref.ex += 2>> [img[images/bchchangingrm1.jpg]] <</nobr>> Upon our arrival at the Beach, our first stop was the changing rooms, right there in the depot next to the bus station. There were two changing rooms, one for men and one for women, with lockers and showers. Of course, I finished changing first and waited for $w.fn outside. //Holy shit!// I thought when she finally joined me in front of the building. [img[images/wbikini1.jpg]] "Come on, let's go!" she turned toward the Beach in a hurry. //Hate to see you go, but I love to watch you walk away//. Her ass was always worthy of admiration, but it was even that much more so in a thong bikini. I loved the way each step produced a subtle little bounce, as it wiggled sharply from side to side. The more I enjoyed watching, the more conscious I was of how exposed my wife was. How anyone could see her the way I saw her. <<randomvideo 1 15 stdbchwlk>> And it //excited// me. I imagined that every man on that Beach turned his head toward her as we walked through the crowds. That each of them lusted after her body, fantasized about tearing her bikini off, revealing her nudity, and fucking her relentlessly. The thought began to arouse me, and I realized that I probably ought to be more careful. //It's not like //I'm// fully dressed either . . . if I get hard, I'll look like a pervert!// "Hmmm . . . I don't know if we're going to find anywhere to lay out on this part of the Beach, babe," $w.fn observed, turning back to face me. "Maybe we should just keep going until we get past these crowds, down the Beach a bit more." "Sounds good to me!" Sure enough, after about 10 minutes navigating the crowded beach, we made it to an area much less densely packed. We laid down our towels and settled into our new territory. [img[images/wbchfun1.jpg]] "Yes! Perfect! We have so much room for activities!" $w.fn jumped in the air joyfully. //Activities?!? Just what the hell is she planning?!?// [[Continue|1stSatBeach5]]\
<<showvideo rd1kend1>> <<showvideo rd1kend2>> <<showvideo rd1kend3>> <<showvideo rd1kend4>> <<link [[Go to the Bedroom|RDScene1_FPStart]]>> <<set $SexScene to true>> <<set $Partner1Name to "Richard">> <<set $root to "RDScene1_">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to (($w.pref.a + $w.rous) / 100)>> <<set $npcmod to 0.45>> <<set _BCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _BCum>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>>\
<<showvideo rd1brstart1>> <<showvideo rd1brstart2>> <<showvideo rd1brstart3>> <<showvideo rd1brstart4>> <<include [[RDScene1_FPOptions]]>>\
[[RDScene1_A2]]\
<<showvideo rd1kstart1>> <<showvideo rd1kstart2>> <<showvideo rd1kstart3>> [[Kiss him . . .|RDScene1_A3]]\
<<showvideo rd1kk1>> <<showvideo rd1kk2>> <<showvideo rd1kk3>> <<showvideo rd1kk4>> [[Take off your clothes|RDScene1_A4]]\
<<showvideo rd1kund1>> <<showvideo rd1kund2>> <<showvideo rd1kund3>> <<showvideo rd1kund4>> [[RDScene1_A5]]\
<<set $sexmenu to 0>>\ <<if $POVCumPoints lt 100>>\ !!!What do you want to do? [[Let him eat your pussy|RDScene1_FPA1]] <<if $NPCCumPoints lt 40>>[[Give him a blowjob|RDScene1_FPB1]]<br><</if>> [["Enough foreplay, fuck " + $Partner1Name + "!"|RDScene1_SexStart]] <<elseif $POVCumPoints gte 100>>\ <<include [[RDScene1_WCum]]>> <</if>>\
<<showvideo rd1brsst1>> <<showvideo rd1brsst2>> <<showvideo rd1brsst3>> <<showvideo rd1brsst4>> <<showvideo rd1brsst5>> <<include [[RDScene1_SexOptions]]>>\
<<timed 2.5s>><<shakescreen 2s>>\ <<nobr>> <<if $sexmenu is 0>> <<showvideo rd1brfpac>> <<elseif passage() is "RDScene1_AnalB1">> <<showvideo rd1brabc>> <<elseif passage() is "RDScene1_AnalC1">> <<showvideo rd1brdsc>> <<elseif passage() is "RDScene1_AnalD1">> <<randomvideo 1 2 rd1bradc <<else>> <<showvideo rd1brsac>> <</if>> <<set $POVCumPoints to 0>> <<set _POVCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $w.xr.br.cm += 1>> <<set $povmod to $povmod * 1.2>> <<set $w.pref.bk += 0.5>> <</nobr>> <<nobr>> <<if $sexmenu is 0>> <<include [[RDScene1_FPOptions]]>> <<elseif $sexmenu is 1>> <<include [[RDScene1_SexOptions]]>> <<elseif $sexmenu is 2>> <<include [[RDScene1_AnalOptions]]>> <</if>> <</nobr>>\ <</timed>>\
<<if not $fpa>><<showvideo rd1brfpa1>><<set $fpa to true>><</if>> <<randomvideo 2 8 rd1brfpa>> <<include [[RDScene1_FPOptions]]>>\
<<randompic 1 8 rd1brfpb>> <<include [[RDScene1_FPOptions]]>>\
<<showvideo rd1kfp1>> <<showvideo rd1kfp2>> <<showvideo rd1kfp3>> <<showvideo rd1kfp4>> <<showvideo rd1kfp5>> [[RDScene1_BStart]]\
<<set $sexmenu to 1>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 60>> !!!What do you want to do? [[Missionary|RDScene1_SexA1]] <<elseif $POVCumPoints gte 100>>\ <<include [[RDScene1_WCum]]>> <<elseif $NPCCumPoints gte 60>>\ <<include [[RDScene1_T8N]]>> <</if>>\
<<nobr>> <<if not $sa1>><<showvideo rd1brsa1>><<set $sa1 to true>><br><br><</if>> <<randomvideo 2 11 rd1brsa>> <</nobr>> <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,120)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <<include [[RDScene1_SexOptions]]>><</nobr>>\
<<showvideo rd1brtn1>> <<showvideo rd1brtn2>> [[RDScene1_AnalStart]]\
<<showvideo rd1brast1>> <<showvideo rd1brast2>> <<showvideo rd1brast3>> <<showvideo rd1brast4>> <<showvideo rd1brast5>> <<showvideo rd1brast6>> <<include [[RDScene1_AnalOptions]]>>\
<<set $sexmenu to 2>>\ <<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|RDScene1_AnalA1]] [[Reverse Cowgirl|RDScene1_AnalB1]] [[Doggystyle|RDScene1_AnalC1]] [[Side fuck|RDScene1_AnalD1]] <<elseif $POVCumPoints gte 100>>\ <<include [[RDScene1_WCum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[RDScene1_RDCum]]>> <</if>>\
<<nobr>> <<set _scn to random(10)>> <<if _scn gt 6>> <<showvideo rd1braa1>> <br><br> <</if>> <<randomvideo 2 9 rd1braa>> <</nobr>> <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,100)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <<include [[RDScene1_AnalOptions]]>><</nobr>>\
<<showvideo rd1brrdc>> <<nobr>> <<link "Get dressed" $nextpassage>> <<unset $fpa>> <<unset $sa1>> <<unset $ab>> <</link>> <</nobr>>\
<<nobr>> <<if not $ab>> <<showvideo rd1brab1>> <<set $ab to true>> <br><br> <</if>> <<randomvideo 2 9 rd1brab>> <</nobr>> <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,100)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <<set _scn to random(5)>> <<if _scn gte 4 and $POVCumPoints lt 90 and $NPCCumPoints lt 90>> <<showvideo rd1brab10>> <br><br> <</if>> <<include [[RDScene1_AnalOptions]]>><</nobr>>\
<<nobr>> <<if passage() isnot previous()>> <<showvideo rd1brac1>> <br><br> <</if>> <<randomvideo 2 11 rd1brac>> <</nobr>> <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,100)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <<include [[RDScene1_AnalOptions]]>><</nobr>>\
<<nobr>> <<if passage() isnot previous()>> <<showvideo rd1brad1>> <</if>> <<randomvideo 2 10 rd1brad>> <</nobr>> <<nobr>> <<set _wcpplus to random(5,20)>> <<set _bcpplus to random(5,20)>> <<set _wcpplus to Math.round(_wcpplus * $povmod)>> <<set _bcpplus to Math.round(_bcpplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_wcpplus,1,100)>> <<set $NPCCumPoints += _bcpplus>> <<set _POVCum to $POVCumPoints / 100>> <<set _NPCCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _POVCum>> <<updatemeter 'NPCCumBar' _NPCCum>> <<include [[RDScene1_AnalOptions]]>><</nobr>>\
[[Head outside|RDScene1_HIntro2]]\
[[Go get lunch|RDScene1_HIntro3]]\
<<link "Wait for lunch">> <<if $w.pov>> <<set $nextpassage to "RDScene1_After1">> <<goto [[RDScene1_A1]]>> <<else>> <<goto [[RDScene1_After1]]>> <</if>> <</link>>
<<showvideo rd1after1>>
"Ha! You should see the look of panic on your face when I said that!!" $w.fn laughed at me. "Don't worry, I was just kidding. I do want to go swimming but mostly just want to relax in the sun and sand and listen to the sound of the waves hitting the shore." //Whew! That's a relief. She can be a wild card sometimes.// <<nobr>> <<addminutes 30>> <<set $h.rous += 10>> [img[images/wbikini2.jpg]] <</nobr>> I watched as my wife rubbed suntan lotion on her skin. She glowed where the sun struck the lotion. //Like an angel . . . .// "This is nice. I'm glad you talked me into coming out here today," I told her. "I love you babe." "Awww, honey. Thank //you// for agreeing. I really think we needed to get out of the house for a while, spend some good, quality time together. //Especially// now that the pandemic is over, we really need to try to do this more often." [img[images/wbchus1.jpg]] She snuggled up close to me. "Doing this kind of thing more would make a //world// of difference in our relationship. Might even solve some of //that// little problem." //It's definitely something to think about. When the whole world was shut down, I may have set an unhealthy routine built on staying inside and keeping busy by myself. Could my relationship with $w.fn be fixed by something as simple as spending more time with her?// These thoughts lingered in my mind as I laid back, joining my wife basking in the sun. [[Relaaaxxx . . .|1stSatBeach6]]\
The sound of the waves was not the first thing I heard when I woke up. My keen observational skills kicked in immediately. //Oh shit! I must have fallen asleep!// $w.fn was not laying on the blanket next to me. I looked around, trying to find her. <<randomvideo 1 10 ndbeach>> Obviously, the crowds had continued to arrive at the Beach while I slept. And there was definitely something very different about the crowd I now found myself in the midst of. //Why is everyone naked?// All around me, I saw bare breasts and pussies. I'm sure there must have also been some dicks and balls, but I did my best to avoid noticing them. //Oh, wait . . . I know. I'm still dreaming. Any minute now, I'll wake up. Might as well enjoy it while I can. Ha ha ha.// [img[images/wbikini3.jpg]] "Hey! You're finally awake!" $w.fn appeared in front of me in her bikini. //If this is a dream, why wouldn't she be naked, too?// "Hellooo, Earth to Sleeping Beauty!" I blinked hard. Yup, still there. OK, maybe I //was// awake. "What's going on?" I asked $w.fn. "So, it would appear that the reason it was so empty down here when we first got here is that this is the 'clothing optional' section of the Beach. The families that were here first thing in the morning don't come down to this section, for obvious reasons." "Well, that would explain all the vaginas, I guess," I joked. "Should I be jealous?" she asked, smiling and playing into the joke. "I don't know if you've noticed, but there an awful lot of dicks around here too." She chuckled at the thought. "In fact, maybe I should try my luck?" She leaned in and kissed me, making it clear that she had no intention of doing so. //What if she did, though?// <<randompic 1 6 ndbguy>> I suddenly became aware of the other men on the Beach. There's not a single one of them that would turn her down. Most of them were in much better shape than me, too. //If she decided that she wanted one of them, there would be nothing I could do to stop it.// [[Continue|1stSatBeach7]]\
<<nobr>> <<set _slp to 80 + random(10,20)>> <<addminutes _slp>> <<set $w.rous += (10 + random(1,10))>> [img[images/wbikini4.jpg]] <</nobr>> "Well, so what do you think?" I asked $w.fn. "What do you mean?" "I don't know. All this?" "All what? The naked people?" "Yeah," I answered. "I mean, would you want to try something like that?" "Getting naked?" She paused and looked at me inquisitively, as if trying to read my thoughts. "Do you want me to?" "I don't know, maybe . . . . I always like to see you naked, and I kinda like the idea of other guys being jealous of how beautiful my wife is. It makes me feel good to know that you're mine. I don't know, does that make sense?" $w.fn smiled. "I'm gonna take that as a compliment, not like you are trying to show me off like a new car. But you can forget it . . . I'm not taking my clothes off, //at least not today//. Maybe you can talk me into it next time." [img[images/wbikini5.jpg]] $w.fn hopped back up to her feet. "Come on, Cinderella, I wanna get back in the water and you're coming with me!" She pulled me up and with her toward the water. "Well, actually, Cinderella's not the one that went to sleep. That was Sleeping Beauty. And also actually Snow White too, I think." "I'm pretty sure Cinderella slept every night, Princess!" she laughed playfully. //Touché, darling, touché. Why I did I even think that would work against her?// [img[images/hwswimm1.jpg]] I let her lead me into the ocean. The smell of salt in the air, the feel of the mist spraying up into my face. The wet sand squished beneath my toes. I looked at the joy in my wife's face and realized how much these moments meant to her. She had told me that she was on the swim team in high school, that she had a lot of very special memories attached to swimming. <<nobr>> //I really need to keep this in mind and do this with her more often//, I thought. //<<if $w.xr.h.rel.m>>I want to work hard to improve our relationship after our talk the other night. <<elseif $w.xr.h.rel.opn>>I suggested that we open up our relationship to oher partners after our talk the other night. <<elseif $w.xr.h.rel.cuk>>I suggested that she could sleep with other people after our talk the other night. <<else>>I suggested that we try to be a bit more adventurous in our sex lives during our talk the other night. <</if>> Maybe something as simple as this could help our relationship more than anything else.// <</nobr>> [[Continue|1stSatBeach8]]\
<<nobr>> <<run $gameDate.setHours(18)>> <<set _min to random(0,30)>> <<run $gameDate.setMinutes(_min)>> <<set $h.rous += 50>> <<set $w.rous += 50>> <<set $h.pref.wex += 3>> <<set $w.pref.ex += 2>> <<randomvideo 1 10 ndbeach>> <</nobr>> We continued to enjoy our time at the Beach for the next few hours, surrounded by naked people. Honestly, the overexposure was a bit normalizing, and after a while, I barely noticed them anymore. As the afternoon melted into evening, the crowds thinned out. "Ready to head home soon?" I finally asked $w.fn. "Mmmm . . . let's wait just a little bit longer. The sun is so beautiful when it sets over the ocean." The sun had already started its descent, so this would only take a little bit longer. Maybe an hour or so. "Sure, baby. That will be nice," I agreed. I settled back onto the towel and closed my eyes to enjoy the rest of our stay. "Thanks, sweetie," she replied. After a second, I heard her rustling around. [img[images/wnbstr1.jpg]] I opened her eyes and looked in her direction. To my surprise, she had removed the top of her bikini. Her breasts were amazing, not too large but beautifully shaped. She noticed me looking. "I decided that you deserved a little reward for being so sweet today." [img[images/wnbstr2.jpg]] "I am speechless. You always know how to surprise me. You take my breath away." "Can I tell you a secret?" $w.fn whispered. "I think I kinda get why you wanted me to do this earlier. I am //sooo// turned on right now. Even though I know no one probably notices me, it feels like every single person out here is staring directly at me. I am hyper-aware that I am exposed. Every single nerve in my body is on fire." "Well, I wouldn't be so sure that no one notices you. I am pretty sure that group of guys over there hasn't taken their eyes off you all day. And you finally gave them the show they were waiting for." "What guys?" $w.fn spun her head around looking for her phantom admirers while I started to snicker. "Oh, shut the fuck up, asshole!" She laughed when she figured out that I was just teasing her. [img[images/bsunset1.jpg]] We lay there on the beach for another hour or so until the sun set. As the skies turned a beautiful orange-red, shimmering and reflecting across the surface of the water, we gathered our things and made the long trek back to the bus stop. The bus was nearly empty now on the way back into the city. $w.fn nodded off for a few minutes cuddled up against my shoulder. It took a little over an hour for the bus to arrive at the stop in front of our apartment. //All in all, I'd say that was one of the best days of my life//, I thought. <<link [[Go inside|LivingRoomMain]]>> <<run $gameDate.setHours(20)>> <<set _min to random(0,30)>> <<run $gameDate.setMinutes(_min)>> <<set $w.xr.h.day.tdy += 10>> <<set $h.evt.bch.go to true>> <</link>>
I decided to make $w.fn's day. "Ya know, babe, I really had a great time last time we went out to the Beach. What d'ya say we do it again?" Her eyes immediately lit up. "Really? Fuck yes! Let's fucking go!!" <<showvideo hallwayB1>> She took off running into the Master Bedroom. I followed right behind her so we could get our things together and hit the road before it got too late. [[Follow her . . .|StdBeachStart2]]\
I hollered for $w.fn. She poked her head out from the <<printwloc>>. "What's up, hon'?" <<include [[StdBeachStart1]]>>\
[img[images/hbusmorning4.jpg]] The long ride to the shore was pretty uneventful. As soon as we left the downtown area, the bus filled up with other people going to the beach. <<link [[Continue|StdBeachMain]]>><<set _tm to 70 + random(1,15)>><<addminutes _tm>><</link>>\
<<set _scene to random(2)>> <<if _scene is 0>> <<include [[StdBeach_StdB1]]>> <<elseif $h.evt.bch.prog gt 1>> <<else>> <<include [[StdBeach_StdA1]]>> <</if>>
$w.fn and I arrived at the Beach before it was too busy. Feeling adventurous, we headed straight for the nude section. <<randomvideo 1 10 ndbeach>> As the sun climbed higher in the sky, the Beach filled up with more and more nude bodies. I couldn't help but admire the beautiful sights in front of me. Surprisingly, $w.fn was much more eager to join them this time. [img[images/wnbstr3.jpg]] "When in Rome," she said, as she dropped her bikini with the rest of our stuff near our towels. The thought that everyone could see her in this state turned me on so much. Even with all of the other naked bodies as far as the eye could see, I knew that $w.fn was turning heads. <<randompic 1 14 wnbch>> I loved how happy the Beach made her. I remembered her mentioning that she was on the swimming team in high school. She just really enjoyed being wet, I guess. Throughout the day she would periodically jump up and run into the water, unlike a lot of the other younger women there who seemed to only be interested in tanning. I was not nearly as interested in swimming, so most of the time I just sat around. But every so often $w.fn would convince me to get up and join her in the water. And I have to admit, we were having a lot of fun! I almost forgot that my wife was strutting around in her birthday suit for hours . . . . <<link [[Enjoy the day|StdBeach_StdB2]]>> <<set $h.rous += 50>> <<set $w.rous += 50>> <<set $h.pref.wex += 1.5>> <<set $w.pref.ex += 1.5>> <<run $gameDate.setHours(18)>> <<set _min to random(0,30)>> <<run $gameDate.setMinutes(_min)>> <</link>>\
<<randompic 1 7 whb>> We spent the day together, enjoying each other's company, until the crowds started to thin out. I don't know about her, but I was exhausted. The sun and the waves and the noise had been a lot. //Where does she get the energy?// I wondered as $w.fn ran back to the edge of the water again. She still squealed with joy like a kid when the waves rolled up onto the shore over her bare feet. <<randompic 1 5 bsunset>> "Gettin' hungry?" I asked. "Yeah, I guess I'm ready to go," she replied. "Let's grab some pizza on the way home!" [img[images/bchshwr1.jpg]] We rinsed the sand and salt off our bodies and changed back into our street clothes. We didn't have to wait for the bus for too long. As usual, the bus going //into// the city at this time of day had very few people on it. Suburbanites stayed in the suburbs at night. [img[images/bchdinner1.jpg]] Even though we were still carrying our beach stuff, we got off the bus a couple of stops early, in front of a pizza parlor a few blocks away from home. We grabbed a table, ate some pie, and headed back down the street to our waiting apartment. <<link [[Continue|LivingRoomMain]]>> /* add progress stats here when ready */ <<run $gameDate.setHours(20)>> <<set _min to random(30,59)>> <<run $gameDate.setMinutes(_min)>> <<set $w.xr.h.day.tdy += 15>> <</link>>\
<<randompic 1 7 bethteam>> Beth and I were going through the productivity levels and profit margins associated with a product coming out of a specific factory overseas. This type of analysis was typical due diligence research when considering whether or not to enter into an extended business relationship with another corporation. This was a big one----the biggest in the history of this company----and we had to be even more careful with this due diligence. "OK, let's move on to 2017," Beth said, as we finished the previous year. "Yup . . . I pulled all of those numbers the other day . . . . Huh. The file isn't opening." I double-clicked on the report file but all I saw was that damn spinning hourglass. I clicked again. Nothing. "What the fuck? I think the file is corrupted or something! It's not opening!" This error could derail a full day or two's worth of work. //Not good//, I thought. "OK, no need to panic. I always make backups when I work at home. I'll call $w.fn and have her bring my backup drive out here. If I call her now, we can just take our lunch break a little early and pick right back up when we get back without losing any time." "That sounds good," Beth replied. "We really can't afford to lose too much time." "Oh, and good thinking putting it on your backup drive," she added. "I would hate to have to backtrack now." [['Call ' + $w.fn|OfficeBossForgot2]]\
[img[images/hwkforgot1.jpg]] I went into the main hallway and dialed $w.fn on my phone. "Hey, babe! Are you home?" "Yeah, what's up?" "I need you to do me a huuuge favor. On my desk in the Guest Room, there's an external hard drive. Do you see it?" "Hold on, I'm going in there . . . yeah, ok, I see it." "I need you to bring that to me, if you can. There's some really vital, time-sensitive reports on there. Like weeks' worth of work. And my local copies somehow got corrupted. But if you hop on the bus outside of our place, you can be here in about a half-hour. Please, please, please tell me you can do this for me!" "Yeah, sure, I mean, I need to get dressed first and everything, but I can probably get on the bus in about twenty minutes." I breathed a sigh of relief. "Oh, sweetheart, you are a lifesaver. Thank you //so// much! We're gonna go to lunch now so that we can get right back to work as soon as we get the reports on that drive." "OK, baby. See you soon!" $w.fn disconnected the call and I met Beth back in the conference room. "Whew! It's all good, Beth. $w.fn is gonna get on the bus in about twenty minutes and bring the hard drive out here to us. We should be ready to go by the time we get back from lunch." "Do you want to wait and go to lunch after she gets here?" Beth asked me. "No, we really don't have anything to do until we get that hard drive. I'd rather just jump right back into it as soon as we have the drive than to waste the hour before she gets here. Besides, this might be the best possible chance we have of not having another late night. I'm sure $w.fn would rather not have lunch with me if it means she gets to have dinner with me." Beth looked at me with a slight smirk on her face. "If you say so, $h.fn." //I wonder what that look was for . . . .// <<link "Go to lunch">> <<run $gameDate.setHours(12)>> <<run $gameDate.setMinutes(0)>> <<set $w.xr.rd.forg to true>> <<if $w.pov>> <<set $nextpassage to "OfficeBossForgot3">> <<goto "Meanwhile_Selector">> <<else>> <<wpovstats>> <<goto [[OfficeBossForgot3]]>> <</if>> <</link>>
[img[images/hwkforgot9.jpg]] Beth and I returned directly to the conference room after lunch. "Oh, $w.fn must have come already. The external hard drive is here! I guess traffic wasn't too bad or something." "That's perfect!" Beth agreed, sitting down at the table so we could get started. I sat next to her in front of my laptop and plugged in the drive. The backup file was right where I expected it. To be safe, I copied it from the hard drive to my laptop and unplugged the drive. Beth leaned in closer so that we could both review the spreadsheet. <<timed 2.5s>>\ [img[images/rdoffice3.jpg]] "Ah, you guys are back from lunch. I see you have the hard drive. Everything you need on there?" I looked up to see Richard standing in the conference room's doorway. "Yup, all the backup files are uncorrupted and we can keep on rollin'," I answered him. "Did $w.fn drop it off and go home?" <<next>>\ [img[images/woffice1.jpg]] Richard stepped out of the way. There was my wife, standing right behind him. "No, I got here early and Richard let me into the building since you weren't here," she informed me. I interjected. "I'm sorry, baby. I figured we'd have enough time to eat before you got here and then we could just get right back to work. Not having this report kinda brought our momentum to a halt." "It's OK, hon', I understand. Richard took me to lunch at this a-MAY-zing restaurant that he owns. It was possibly the best meal I have ever had in my life, soooo----don't be mad, but I'm kinda glad that you went to lunch without me." She giggled. "Anyway," $w.fn continued. "I'm gonna go catch the bus and get home. I still have a few things I want to do this afternoon. Are you gonna be working late again?" "I'm not sure yet. I'll call and let you know later, OK?" I said. "$w.fn, you don't have to take the bus. I'll have my driver take you home." Richard and $w.fn turned and left the conference room. I could hear them continue to talk, but I couldn't make out what they were saying. //I hope she's not mad. At least Richard will give her a ride home so she doesn't have to take the bus. I'll have to thank him for that later.// <<include [[OfficePMLinks]]>>\ <</timed>>\
It didn't take too long for me to wash up and get dressed. I grabbed $h.fn's hard drive on the way out the door. [img[images/hwkforgot2.jpg]] Down on the street, the bus arrived within a minute or so. //Talk about great timing! I'll get downtown like 20 minutes earlier than I thought I would.// As the bus pulled away from the curb, I thought, //Hmm . . . maybe $h.fn and I can have lunch together. It's been a while since I've been downtown.// Then the memory of the videos on $h.fn's phone popped into my head. //Oh God . . . what if I see Richard? Will I be able to look him in the eye?// I looked out the window to distract myself, but the moisture in my panties betrayed me. //Just don't think about that big dick, $w.fn . . . should be quite simple, right?// [[Continue|MW_OfficeBossForgot2]]\
[img[images/hwksecurity1.jpg]] I hadn't visited $h.fn's office since before the pandemic, back when we first got married and moved to this city. But I remembered the tight security protocol at his office building----pretty typical for offices in this city. So when I entered the lobby, I headed straight over to the reception desk to check in as a "Visitor." "Hi, I'm here to see $h.fn $h.ln," I told the guard at the desk. //$h.fn should come down to escort me into the office.// "Sure, can I see your ID, please?" I handed him my ID card with a smile. He started typing something in his computer and then picked up the phone. After nearly half a minute, he hung it up again. "Sorry, Mr. $h.ln isn't answering his phone. Do you have another contact?" "Hmmm . . . um, he works for Richard Day?" "OK, hold for just a sec . . . ." He picks up the phone receiver again. "Yes, Mr. Day, sir. I have a Miss $w.fn $w.ln down here in the lobby . . . . OK, I'll send her up, sir." He looked back at me as he placed the phone back on its cradle. "You can go ahead and take the elevator up to the 7th floor. Have a great day!" [img[images/hwkforgot6.jpg]] I headed toward the elevator and pushed the "Call" button. //Why didn't $h.fn answer the phone? Isn't he waiting for me? He called and asked me to bring this drive out here to him because he needed it immediately . . . . I'm sure he's just in the conference room or was in the men's room or something simple like that..// [img[images/mrdayintro.jpg]] The elevator doors opened on the 7th floor to reveal $h.fn's boss Richard standing there waiting for me. "$w.fn! Great to see you again! I assume that you are here to see $h.fn, right? No chance you're here to see me, is there?" He laughed in a very hearty, //masculine// way, if that's a thing. "Oh, Richard, don't sell yourself short!" //Especially not after what I saw on those videos//, I thought. //There was nothing short about //that//!// [img[images/hwkforgot3.jpg]] "But seriously, $h.fn called me to bring him a back-up hard drive. He said some file he was working on got corrupted or something. Is he here? He didn't answer when security called." "Sure, follow me. If he wasn't working at his desk, they have been working in the conference room sometimes, so they had more space to spread out in." I followed Richard through the halls. As we passed a set of cubicles, he remarked, "OK, so they must be in the conference room. They're not at their desks." [img[images/hwkforgot7.jpg]] Finally we turned another corner to reveal a conference room with a long table. There was a laptop and some papers on the table, but otherwise, the room was empty. As in "no $h.fn." "Hmm . . . ok, it looks like they are working in here, but they're not here //right now//. I guess $h.fn and Beth went to lunch, maybe? I'm not sure when they might be back." He pulled out his ID card and swiped it across the face of the door-lock sensor. I heard a faint click as the door unlocked. "Here, put the hard drive on the table near the laptop. And let me treat you to lunch. $h.fn should be back before us." //He went to lunch with Beth, huh?<<if $w.xr.h.rel.opn>> I wonder if something's going on between them.<<else>>I guess I'll have to keep an eye on //that// situation . . . .<</if>>// "Yeah, sounds good." I put the hard drive on the table near the laptop. I could smell the faint remains of Beth's perfume. //That does smell good.// [[Go to lunch with Mr. Day|MW_OfficeBossForgot3][$w.xr.rd.m to true]]\
Leaving the building, Richard immediately had a car waiting for him. //Perks of being the boss, I guess . . . .// And of course, nothing less than the best. He took us to a swanky restaurant in the uptown area, one even $h.fn and I had never been to. [img[images/hwkforgot4.jpg]] The host who sat us handed us menus. There were only four dishes on it, no prices. //I guess if you have to ask, you can't afford it.// "The chef here makes the menu up each morning, so you could literally eat here every day and never have the same dish twice!" //Well, fuck me. Now I know why $h.fn and I have never eaten here.// "I don't even know what some of this is!" I exclaimed. "Would you like me to order for you? Let's see, how about a light, citrusy fish dish, with a bit of garlic?" I nodded my approval. Richard started talking as soon as the waiter took the orders. Honestly, I don't even remember what he was talking about now, something about finding the chef at a little family-owned joint in Tuscany. And how he invests in //people// and builds businesses around them. How $h.fn was one of those people . . . . //Wait, does that mean he owns this restaurant?// But somehow----even though it was the kind of thing other men might try to use as a way to flex----Richard wasn't presenting it that way. It wasn't even a "humble-brag." The way he talked was engaging, interesting, and everything seemed so //normal//. He wasn't trying to impress me at all and that's what impressed me. It almost felt like I was on a date. And a //damn good// date, at that! //My God, he has so much charisma!// [img[images/hwkforgot8.jpg]] The waiter soon placed my plate down in front of me. "That is the most beautiful food I have ever seen!" "Wait until you taste it, $w.fn. That's where the magic lies." Of course, he wasn't wrong [img[images/hwkforgot5.jpg]] After we ate, we kept talking for a little while longer. Richard was such a //fascinating// man. But as much as he spoke, he also listened, with his eyes, his ears, his heart. I felt //heard// in a way that was rare, at least among men my age. I'm not sure when, but at some point my hands fell into his. They were strong without being rough. //These are the hands of a man.// Thinking back, when $h.fn and I were dating, we were basically still kids. Still students learning their ways in the world. I had never been on a date with a fully formed adult man. And always, throughout this whole lunch, the images from $h.fn's phone were lingering just in the back of my mind. The waiter did not even bring us a check. Perks of owning the place, I assumed. As we exited the building, a car was waiting for us at the curb. //I want to fuck this man//, I thought, fleetingly. <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
<<randompic 1 3 wphone>> //Hmmm . . . what's new on TitKok?// <<showvideo toobig2>> //Yeah, maybe this bitch doesn't know what to do with it. She just needs to try harder!// I chuckled to myself, but my mouth started watering, thinking about the next time it would be filled with an extra-large cock. <<link "Continue" $nextpassage>><<unset $nextpassage>><</link>>\
[img[images/hwkshow1.jpg]] Richard and I were in the conference room huddled around my laptop so I could show him some market data projecting the possible profit growth based on opinion polls and market surveys relating to package materials. Our concentration on this oh-so-interesting data was interrupted by a ding and a flash from my cell phone, sitting on the table right in front of me. An incoming text. [img[images/hwkshow2.jpg]] I absentmindedly tapped the icon to open my text messages and saw that it was from $w.fn. I clicked to open it, not thinking anything of the fact that Richard was sitting so close to me, watching what I was doing. <<nobr>> <center> <<set $h.xr.w.slf += 1>> <video @src="'images/wself' + $h.xr.w.slf + '.mp4'" style="width:338px;" autoplay loop muted></video> </center> <<set $w.xr.rd.cw to true>> <<set $h.pref.wex += 2>> <</nobr>> "Is that $w.fn?" Richard asked me. It took me a moment to register everything. Richard was looking directly at my phone, at a nude video my wife had sent me. It was my fault, really. Ever since our talk, $w.fn had started sending these risqué photos and videos occasionally. Yet I did nothing to be careful when checking the incoming message. "Do you have any other photos?" His question took me off-guard. "I mean, only if you don't mind, of course." //Can I even say //no// at this point? He did send me a bunch of videos, after all. And I //do// like to show her off and make other guys jealous of what I have.// "Umm, yeah, take a look." I handed Richard my phone. [img[images/hwkshow3.jpg]] He stared at the phone for a few seconds before he started swiping through the Gallery. Occasionally I could discern a slight groan escape under his breath. "Wow . . . just gorgeous. I remember when Julie and I were young, how wild we got. Of course, we didn't have cell phones back then, we weren't sending nude photos and videos to each other. But we had our ways of turning each other on." His voice trailed off and a wide grin crossed his face as he seemed to be reminiscing about something. But his eyes looked sad at the same time. "Alright," he said. "Back to work . . . we are still on a bit of a time crunch with this account." "Yes, sir," I responded. <<include [[OfficeAMLinks]]>>\
$w.fn and I arrived at the Beach before it was too busy. She was feeling a little less adventurous, so we decided to stay in the common area. It was a mix of parents with small children running around and playing in the water, teenagers clumsily flirting with each other, and other annoyed adults who weren't quite brave enough to hang out in the adult section. <<randomvideo 1 15 stdbchwlk>> We eventually found a nice, peaceful spot and settled in. <<randompic 6 13 wbikini>> [[Enjoy the day|StdBeach_StdA2]]\
<<randompic 1 5 whnb>> She had been strolling up and down the Beach, baring all for all to see, all day long. Her beautiful skin glistened in the sun. We spent a lot of quiet quality time together, too. I'm not sure whether I enjoyed my time with her more than my time watching other guys watching her. <<randompic 1 5 bsunset>> The shadows grew longer and eventually the day had to come to an end. I didn't know about her, but I was exhausted. The sun and the waves and the noise had been a lot. "Gettin' hungry?" I asked. "Yeah, I guess I'm ready to go," she replied. "Let's grab some pizza on the way home!" She pulled her bikini back on before we reached the all-ages section of the Beach. [img[images/bchshwr1.jpg]] We rinsed the sand and salt off our bodies and changed back into our street clothes. We didn't have to wait for the bus for too long. As usual, the bus going //into// the city at this time of day had very few people on it. Suburbanites stayed in the suburbs at night. [img[images/bchdinner1.jpg]] Even though we were still carrying our beach stuff, we got off the bus a couple of stops early, in front of a pizza parlor a few blocks away from home. We grabbed a table, ate some pie, and headed back down the street to our waiting apartment. <<link [[Continue|LivingRoomMain]]>> /* add progress stats here when ready */ <<run $gameDate.setHours(20)>> <<set _min to random(0,30)>> <<run $gameDate.setMinutes(_min)>> <<set $w.xr.h.day.tdy += 10>> <</link>>\
<<nobr>> <<set _im to random(1,3)>> <<if _im lte 2>> <<randompic 1 3 wshgym>> <<elseif _im is 3>> <<randompic 1 5 sgym>> <</if>> <<set $w.rous += 10>> <</nobr>> I headed to the Gym to work out this evening after dinner. I was pleasantly surprised to see Shaun here as well. I was pretty aroused already, but seeing him already working up a sweat was enough to push me over the edge. "Hey, sexy," I called out to him. "My husband won't be home for a while . . . how about we work out in my apartment?" "Sounds good to me," he responded. I expected no different. Shaun followed me to my apartment. [img[images/wshlate1.jpg]] As soon as the door slammed shut behind us, I led him through my home, leaving a trail of clothes behind me as I stripped them off. //This feels so exciting, so dangerous. Bringing another man into my apartment while my husband is at work//, I thought. [img[images/wshlate2.jpg]] I turned back toward Shaun, a devilish gleam in my eye. <<link [['"Fuck me on my husband's bed!"'|ShaunLate1_Start]]>> <<set $SexScene to true>> <<set $Partner1Name to "Shaun">> <<set $POVCumPoints to 0>> <<set $NPCCumPoints to 0>> <<set $povmod to Math.clamp(($w.rous / 100) * $w.pref.bk,0,3)>> <<set $npcmod to 0.6>> <<set _WCum to $NPCCumPoints / 100>> <<updatemeter 'NPCCumBar' _WCum>> <<set _HCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _HCum>> <<removeclass "#right-ui-bar" "stowed">> <</link>>\
<<showvideo wshlate3>> Shaun and I started making out. Though I was completely naked, he was still in his gym clothes. "Come on, please take off your clothes," I pleaded. "Please fuck me." <<showvideo wshlate4>> My muscular suitor pulled his tank top up over his head, revealing those hot fucking abs. My pussy turned on like a faucet. //Ah, the joys of meeting men in a gym//, I thought. //I mean, I love $h.fn, but look at that hard body.// <<showvideo wshlate5>> I couldn't wait for him to get around to taking off his pants. I decided to take the initiative and do it myself. Sitting up on the edge of the bed, I opened his belt and unfastened the front. The big cock I needed was revealed right in front of me. <<showvideo wshlate6>> "I don't know exactly how long he is going to be, so let's skip the formalities. Are you OK with just fucking me?" "I mean, if that's what you want, I am sure I can manage," he chuckled. //Guess I said something funny//, I thought. <<include [[ShaunLate1_Options]]>>\
<<if $POVCumPoints lt 100 and $NPCCumPoints lt 100>> !!!What do you want to do? [[Missionary|ShaunLate1_SexA1]] [[Doggystyle|ShaunLate1_SexB1]] [[Cowgirl|ShaunLate1_SexC1]] [[Reverse cowgirl|ShaunLate1_SexD1]] [[Standing|ShaunLate1_SexE1]] <<elseif $POVCumPoints gte 100>>\ <<include [[ShaunLate1_WCum]]>> <<elseif $NPCCumPoints gte 100>>\ <<include [[ShaunLate1_ShCum]]>> <</if>>\
<<randomvideo 1 6 shlt1sa>> <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_povplus,1,120)>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<set _ShCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<updatemeter 'NPCCumBar' _ShCum>> <<include [[ShaunLate1_Options]]>> <</nobr>>\
<<randomvideo 1 10 shlt1sb>> <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_povplus,1,120)>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<set _ShCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<updatemeter 'NPCCumBar' _ShCum>> <<include [[ShaunLate1_Options]]>> <</nobr>>\
<<randomvideo 1 6 shlt1sc>> <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_povplus,1,120)>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<set _ShCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<updatemeter 'NPCCumBar' _ShCum>> <<include [[ShaunLate1_Options]]>> <</nobr>>\
<<randomvideo 1 4 shlt1sd>> <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_povplus,1,120)>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<set _ShCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<updatemeter 'NPCCumBar' _ShCum>> <<include [[ShaunLate1_Options]]>> <</nobr>>\
<<nobr>> <<timed 2s>> <<shakescreen 2s>> <<set $POVCumPoints to 0>> <<set _WCum to $POVCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<set $w.rous to Math.clamp(($w.rous - 20),0,1000)>> <<set $npcmod to $npcmod * 1.2>> <<set $w.xr.sh.cm += 1>> <<include [[ShaunLate1_Options]]>> <</timed>> <</nobr>>\
<<showvideo shlt1shcum>> <<link "Continue" $nextpassage>> <<set $w.xr.sh.x += 1>> <<unset $nextpassage>> <<unset $SexScene>> <<set $Partner1Name to "">> <<set $w.rous += ($POVCumPoints * 0.2)>> <<unset $POVCumPoints>> <<unset $NPCCumPoints>> <<addclass "#right-ui-bar" "stowed">> <<unset $npcmod>> <<unset $povmod>> <<unset $root>> <<unset $sexmenu>> <</link>>\
<<randomvideo 1 5 shlt1se>> <<nobr>> <<set _povplus to random(5,20)>> <<set _npcplus to (random(5,20))>> <<set _povplus to Math.round(_povplus * $povmod)>> <<set _npcplus to Math.round(_npcplus * $npcmod)>> <<set $POVCumPoints += Math.clamp(_povplus,1,120)>> <<set $NPCCumPoints += Math.clamp(_npcplus,1,120)>> <<set _WCum to $POVCumPoints / 100>> <<set _ShCum to $NPCCumPoints / 100>> <<updatemeter 'POVCumBar' _WCum>> <<updatemeter 'NPCCumBar' _ShCum>> <<include [[ShaunLate1_Options]]>> <</nobr>>\