<<if $replay == true>>
<hr><center><strong>REPLAY MODE</strong><br><button class="button" onclick="exitReplay()">Exit</button></center>
<</if>>
<<script>>
function vidend(e) {
if (settings.loopVid == true) {
e.target.currentTime = 0;
e.target.play();
}
}
$(document).on(':passageinit', function (ev) {
if (document.querySelector('video') != null) {
document.querySelector("video:not(.noloop)").removeEventListener('ended', vidend);
document.querySelector('video').pause();
}
});
setup.scriptpromise.then(function () {
getTooltips();
if (settings.volume != undefined) $("video").prop("volume", settings.volume);
try {
if (document.querySelector('video') != null) {
document.querySelector('video').addEventListener('loadstart', function(e) {
this.loop = false;
}, false);
document.querySelector("video:not(.noloop)").addEventListener('ended', vidend);
}
} catch(err) {
}
});
$(document).on(':passageend', function () {
if (settings.numberedOptions !== true) return;
showNumbers();
});
<</script>>
<<calcAttr>><<if $replay == true>>
<center><strong>REPLAY MODE</strong><br><button class="button" onclick="exitReplay()">Exit</button></center><hr>
<</if>>
<<debug>>
<<set _passage = passage()>>
<<button "Debug Names" _passage>>
<<script>>
for (let x in characterinfo) {
State.variables[x].name = "["+State.variables[x].name+"]";
State.variables[x].refer = "["+State.variables[x].refer+"]";
State.variables[x].calls = "["+State.variables[x].calls+"]";
State.variables[x].them = "["+State.variables[x].them+"]";
State.variables[x].you = "["+State.variables[x].you+"]";
}
State.variables.name = "["+State.variables.name+"]";
<</script>>
<</button>>
<<button "Real Names" _passage>>
<<script>>
for (let x in characterinfo) {
State.variables[x].name = State.variables[x].name.replace("[", "").replace("]", "");
State.variables[x].refer = State.variables[x].refer.replace("[", "").replace("]", "");
State.variables[x].calls = State.variables[x].calls.replace("[", "").replace("]", "");
State.variables[x].them = State.variables[x].them.replace("[", "").replace("]", "");
State.variables[x].you = State.variables[x].you.replace("[", "").replace("]", "");
}
State.variables.name = State.variables.name.replace("[", "").replace("]", "");;
<</script>>
<</button>>
<<button "CheckChars">>
<<run checkChars()>>
<</button>>
<</debug>><<nobr>>
<<set $name to "Throckmorton">>
<<set $money to 5>>
<<meet "waitress">>
<<switch $tempvar>>
<<case "g2g">>
<div class="notice" style="margin:auto">Before we start, here's a little info.</div><br>
<<if window.online == false>>
<div class="notice" style="margin:auto" id="updates">The game can check online for updates automatically for you.
<br>It will only do this whenever a save game is loaded, and right now if you press yes.<br> Do you want to enable this? <br><<button "Yes">>
<<replace "#updates">>
The game will check for updates whenever you load a save. This can be disabled in the settings.
<</replace>>
<<script>>
checkForUpdates();
settings['updateChecker'] = true;
<</script>>
<</button>> <<button "No">>
<<replace "#updates">>
The game will <b>not</b> check for updates. This can be changed in the settings.
<</replace>>
<<script>>
settings['updateChecker'] = false;
<</script>>
<</button>></div>
<</if>>
<<say "side3" "Liz">>Hi, this is a speech bubble. There may be extra descriptors after the name if they aren't speaking normally, such as shouting or whispering.<</say>>
<<say "side2" "Lemon" "" "" "color: pink">>Some characters also have their text colored to make it easier to tell them apart during conversations without reading their name or looking at their avatar every time.<</say>>
<<think "side2" "Liz">>This is me thinking about something. While the player can sometimes see people's thoughts, the main character is only aware of their own.<</think>>
<<narrate>>You read the text in front of you to learn that actions and feelings are narrated like this.<</narrate>>
<<notice>>This is how we notify the player, rather than the main character, of an important change or unlock within the game.<</notice>>
<div class="notice" style="margin:auto; text-align: left">
In addition, you'll get various notifications in the bottom right informing you of various, less impactful, things.
<br>
Hotkeys are enabled by default. You can check them out in the shortcuts menu.
<br>
The game has various custom settings available, such as font size, volume, video defaults, and notification location to customize as you see fit. I recommend checking them out.
<br>
Alright, please enjoy the game.
</div>
<br>
<<button "Continue" Start>>
<<temp "gogogo">>
<</button>>
<<case "gogogo">>
<div class="notice" style="margin:auto">
We start our story in a moving vehicle...</div><br>
<<vid "locations/start.mp4">>
<<narrate>>You've been called to the restaurant by those you live with. Apparently there's something important to discuss.<</narrate>>
<<narrate>>You have an odd feeling in your stomach. It's unusual for them to call you all together, and it sounded serious on the phone.<</narrate>>
<<button "Continue" Start>>
<<temp "gone">>
<</button>>
<<case "gone">>
<<left2 "waitress/waitress01.jpg">>
<<narrate>>You arrive at the restaurant and see everyone else already seated. You stop as you nearly walk into a waitress. She pauses for a moment to let you past. She doesn't seem too happy.<</narrate>>
<<say "voice" "waitress">>Hmmm, you're an odd one. I can sense you, but I can't see you properly or understand how you relate to the others. What's your name?<</say>>
<<narrate>>A little startled by the waitress, you simply answer, not wanting to cause her any further issue.<</narrate>>
<div id="nameself">
<<choices "What's your name?" "playerinput">>
<<textbox "$name" $name>>
<br>
<br>
<<button "Confirm">>
<<set $name to $name.trim().toUpperFirst()>>
<<if $name is "">>
<<replace "#name-error">>Please enter a name!<</replace>>
<<else>>
<<script>>
$('#playerinput').hide();
$('#playercontinue').show();
<</script>>
<<for _key, _value range window.nicknames>>
<<if _key is $name>>
<<set $nickname to _value>>
<<break>>
<</if>>
<</for>>
<<if $nickname is undefined>>
<<set $nickname to $name>>
<</if>>
<<set $anna.calls to $nickname>>
<<set $charlie.calls to $nickname>>
<<set $theodora.calls to $nickname>>
<<replace "#nameself">>
<<say "mc">>It's $name, but what do you—<</say>>
<<narrate>>The waitress seems annoyed and walks off, shaking her head, before you even finish your sentence.<</narrate>>
<<say "mc">>Wow! Rude.<</say>>
<<narrate>>You hurry over to your table, just as you do, you hear the waitress' voice again.<</narrate>>
<<say "voice" "waitress">>So, how do you fit in with these people?<</say>>
<<narrate>>You spin around to ask the waitress what her problem is, but she's currently at the other side of the room. Perhaps you're imagining things.<</narrate>>
<<say "voice" "waitress?">><span class="mcname">$name</span>, did you hear me?<</say>>
<<narrate>>The waitress is nowhere near you, and you otherwise don't recognize the voice. Perhaps you're cracking up, but you feel compelled to answer nonetheless...<</narrate>>
<br>
<<button "Continue" "intro">>
<<time 1>>
<</button>>
<</replace>>
<</if>>
<</button>>
<span id="name-error"></span>
<</choices>>
</div>
<div id="playercontinue" style="display:none">
</div>
<<case "nope">>
<<say "voice" "">>Then I'm afraid you shouldn't be here.<</say>>
<a href="https://www.google.com/search?q=games+for+under+18"><<button "Continue">><</button>></a>
<style>
#story a.link-external:after {
content: "";
}
</style>
<<default>>
<<center "logo.jpg">>
<div>
<div style="font-size:1000%; display:inline-block;">🔞</div>
<div style="display: inline-block">
Hi, welcome to the game!<br>
Before we begin, are you old enough to view hardcore pornography in your location?<br>This is 18 in many countries.<br>
<<button "Yes" Start>>
<<temp "g2g">>
<</button>>
<<button "No" Start>>
<<temp "nope">>
<</button>>
</div>
</div>
<b>I highly recommend you sometimes save to disk.</b><br><br>
Some quick info.<br>
<a href="https://discord.gg/CJaVR3XQzH" target="_blank">Discord</a><br>
<a href="https://f95zone.to/threads/177625/" target="_blank">F95Zone Dev Thread</a><br>
We are concentrating primarily on a single route per substory initially. More options, even in the main story for that matter, will get added near and/or after v1.0.<br>
Please check the settings menu for various options.<br>
This is still under development, and everything is subject to change while we refine the game.<br>
The game has some hotkeys, should that be your thing, check the Shortcuts menu for info.<br>
The game will autosave most mornings unless you change that in the settings.<br>
Most saves are stored in the browser, that means clearing cache will remove them, and if using private browsing they will be lost on exit.<br>
<b>It's advisable to save to disk on occasion.</b><br>
<</switch>>
<</nobr>><img @src="setup.img+'logo.jpg'" style="width: 100%"><<script>>
$(document).on(':passageend', function () {
setup.scriptpromise.then(function () {
if (State.variables.date == undefined) {
State.variables.date = new Date('2021-07-08T13:00:00');
State.variables.hour = 13;
}
});
});
<</script>>
<<set _su = setup.Path + "aud/start.mp3">>
<<set _sd = setup.Path + "aud/shut.mp3">>
<<set _fail = setup.Path + "aud/fail.mp3">>
<<set _poolmusic = setup.Path + "music/indie-rock-far-away-15040.mp3">>
<<cacheaudio "startup" _su>>
<<cacheaudio "shutdown" _sd>>
<<cacheaudio "poolmusic" _poolmusic>>
<<cacheaudio "fail" _fail>>
<<set _m = setup.Path + "aud/thud.mp3">>
<<cacheaudio "thud" _m>>
/* phone notifications */
<<set _notify = setup.Path + "aud/notify.mp3">>
<<cacheaudio "notify" _notify>>
<<set _notify1 = setup.Path + "aud/phone/Acclivity.mp3">>
<<set _notify2 = setup.Path + "aud/phone/Argon.mp3">>
<<set _notify3 = setup.Path + "aud/phone/Chocolate.mp3">>
<<set _notify4 = setup.Path + "aud/phone/Chocolate2.mp3">>
<<set _notify5 = setup.Path + "aud/phone/Overtone.mp3">>
<<set _notify6 = setup.Path + "aud/phone/Pulse_Beam.mp3">>
<<set _notify7 = setup.Path + "aud/phone/Fruit.mp3">>
<<set _notify8 = setup.Path + "aud/phone/Robo.mp3">>
<<set _notify9 = setup.Path + "aud/phone/Level.mp3">>
<<cacheaudio "notify1" _notify1>>
<<cacheaudio "notify2" _notify2>>
<<cacheaudio "notify3" _notify3>>
<<cacheaudio "notify4" _notify4>>
<<cacheaudio "notify5" _notify5>>
<<cacheaudio "notify6" _notify6>>
<<cacheaudio "notify7" _notify7>>
<<cacheaudio "notify8" _notify8>>
<<cacheaudio "notify9" _notify9>>
<<set _earring = setup.Path + "aud/earring.mp3">>
<<set _zoop = setup.Path + "aud/zoop.mp3">>
<<set _pzoop = setup.Path + "aud/pzoop.mp3">>
<<set _heart = setup.Path + "aud/heart.mp3">>
<<set _alarm = setup.Path + "aud/alarm.mp3">>
<<cacheaudio "zoop" _zoop>>
<<cacheaudio "pzoop" _pzoop>>
<<cacheaudio "earring" _earring>>
<<cacheaudio "heart" _heart>>
<<cacheaudio "alarm" _alarm>>
/* festival */
<<set _m = setup.Path + "music/countdown.mp3">>
<<cacheaudio "fest_countdown" _m>>
<<set _m = setup.Path + "music/intro.mp3">>
<<cacheaudio "fest_intro" _m>>
<<set _m = setup.Path + "music/chalice.mp3">>
<<cacheaudio "fest_chalice" _m>>
<<set _m = setup.Path + "music/chasing.mp3">>
<<cacheaudio "fest_chasing" _m>>
<<set _m = setup.Path + "music/chimera.mp3">>
<<cacheaudio "fest_chimera" _m>>
<<set _m = setup.Path + "music/corza.mp3">>
<<cacheaudio "fest_corza" _m>>
<<set _m = setup.Path + "music/daddy.mp3">>
<<cacheaudio "fest_daddy" _m>>
<<set _m = setup.Path + "music/dirty.mp3">>
<<cacheaudio "fest_dirty" _m>>
<<set _m = setup.Path + "music/dragon.mp3">>
<<cacheaudio "fest_dragon" _m>>
<<set _m = setup.Path + "music/ed.mp3">>
<<cacheaudio "fest_ed" _m>>
<<set _m = setup.Path + "music/forceful.mp3">>
<<cacheaudio "fest_forceful" _m>>
<<set _m = setup.Path + "music/fucking.mp3">>
<<cacheaudio "fest_fucking" _m>>
<<set _m = setup.Path + "music/harpoon.mp3">>
<<cacheaudio "fest_harpoon" _m>>
<<set _m = setup.Path + "music/julian.mp3">>
<<cacheaudio "fest_julian" _m>>
<<set _m = setup.Path + "music/kelly.mp3">>
<<cacheaudio "fest_kelly" _m>>
<<set _m = setup.Path + "music/killing.mp3">>
<<cacheaudio "fest_killing" _m>>
<<set _m = setup.Path + "music/laurence.mp3">>
<<cacheaudio "fest_laurence" _m>>
<<set _m = setup.Path + "music/moody.mp3">>
<<cacheaudio "fest_moody" _m>>
<<set _m = setup.Path + "music/nut.mp3">>
<<cacheaudio "fest_nut" _m>>
<<set _m = setup.Path + "music/orange.mp3">>
<<cacheaudio "fest_orange" _m>>
<<set _m = setup.Path + "music/overload.mp3">>
<<cacheaudio "fest_overload" _m>>
<<set _m = setup.Path + "music/piercing.mp3">>
<<cacheaudio "fest_piercing" _m>>
<<set _m = setup.Path + "music/slut.mp3">>
<<cacheaudio "fest_slut" _m>>
<<set _m = setup.Path + "music/tarquin.mp3">>
<<cacheaudio "fest_tarquin" _m>>
<<set _m = setup.Path + "music/tomorrow.mp3">>
<<cacheaudio "fest_tomorrow" _m>>
<<set _m = setup.Path + "music/trauma.mp3">>
<<cacheaudio "fest_trauma" _m>>
<<set _m = setup.Path + "music/zero.mp3">>
<<cacheaudio "fest_zero" _m>>
/* voices */
<<set _m = setup.Path + "aud/robo/morning.mp3">>
<<cacheaudio "morning" _m>>
<<set $gym = {level:0, length:3}>>
<<set $meditate = {level:1, length:3}>>
<<set $tempvar = "">>
<<set $tasks = {}>>
<<set $maxexplorers = 2>>
<<set $explorationends = "">>
<<set $rewards = {base:5,low:60,high:140,groupmulti:1}>>
<<set $resources = 30>>
<<set $energy = 2>>
<<set $maxenergy = 2>>
<<set $location = "lounge">>
<<set $mysteries = {}>>
<<set $day = 0>>
<<set $replay = false>>
<<set $replayval = "">>
<<set $replayvar = "">>
<<set $scene = 0>>
<<set $phoneback = "default.jpg">>
<<set $compback = "default.jpg">>
<<set $power = 0>>
<<set $attractiveness = 0>>
<<set $tracker = {1:'',2:'',3:'', 4:''}>>
<<set $voicedream = 0>>
<<set $maxvd = 14>>
<<set $nextshift = 13>>
<<set $planets = {}>>
<<set $breakthroughs = {}>>
<<set $breakdone = {}>>
<<set $extraLike = 0>>
<<set $extraLust = 0>>
<<set $extraIncome = 0>>
<<set $food = 0>>
<<set $yield = 0>>
<<set $items = {vg:0,dildo:0,music:0}>>
<<set $blockedNightEvents = []>>
<<set $nightEvents = []>>
<<set $flatupkeepdiscount = 0>><<nobr>>
<<if $energy <= 0>>
<<narrate>>You have no energy left.<</narrate>>
<<link "Return" gatewayb>><</link>>
<<else>>
<<switch $tempvar>>
<<case "whitney">>
<div class="choices" style="margin:auto">
<center class="blink">LIMITED OPTIONS AVAILABLE.</center>
<center class="blink">AWAITING USER INPUT.</center>
<div class="flex">
<div class="girlChoice" data-passage="transform" data-setter="$tempvar = 'nochange'"><<center "whitney/avatar.jpg">><br>NO CHANGE</div>
<div class="girlChoice" data-passage="transform" data-setter="$tempvar = 'gender'"><<center "lily/avatar.jpg">><br>MATURE</div>
</div>
</div>
<<case "theodora">>
<div class="choices" style="margin:auto">
<center class="blink">LIMITED OPTIONS AVAILABLE.</center>
<center class="blink">AWAITING USER INPUT.</center>
<div class="flex">
<div class="girlChoice" data-passage="transform" data-setter="$tempvar = 'charlie'"><div class="tfr"><<center "charlie/avatar.jpg">><br>GENDERSWAP</div></div>
<div class="girlChoice" data-passage="gatewayb"><div class="tfr"><<center "theodora/avatar.jpg">></div><br>NO CHANGE</div>
<div class="girlChoice"><div class="redboi"></div><div class="tfr"><<center "ashley/avatar.jpg">><br>MATURE</div></div>
</div>
</div>
<<case "charlie">>
<div class="choices" style="margin:auto">
<center class="blink">LIMITED OPTIONS AVAILABLE.</center>
<center class="blink">AWAITING USER INPUT.</center>
<div class="flex">
<div class="girlChoice" data-passage="gatewayb"><div class="tfr"><<center "charlie/avatar.jpg">><br>NO CHANGE</div></div>
<div class="girlChoice" data-passage="transform" data-setter="$tempvar = 'theodora'"><div class="tfr"><<center "theodora/avatar.jpg">></div><br>GENDERSWAP</div>
</div>
</div>
<<case "sophia">>
<div class="choices" style="margin:auto">
<center class="blink">LIMITED OPTIONS AVAILABLE.</center>
<center class="blink">AWAITING USER INPUT.</center>
<div class="flex">
<div class="girlChoice" data-passage="transform" data-setter="$tempvar = 'derek'"><div class="tfr"><<center "derek/avatar.jpg">><br>GENDERSWAP</div></div>
<div class="girlChoice" data-passage="gatewayb"><div class="tfr"><<center "sophia/avatar.jpg">></div><br>NO CHANGE</div>
<div class="girlChoice"><div class="redboi"></div><div class="tfr"><<center "lumi/avatar.jpg">><br>YOUNGIFY</div></div>
</div>
</div>
<<case "derek">>
<div class="choices" style="margin:auto">
<center class="blink">LIMITED OPTIONS AVAILABLE.</center>
<center class="blink">AWAITING USER INPUT.</center>
<div class="flex">
<div class="girlChoice" data-passage="gatewayb"><div class="tfr"><<center "derek/avatar.jpg">><br>NO CHANGE</div></div>
<div class="girlChoice" data-passage="transform" data-setter="$tempvar = 'sophia'"><div class="tfr"><<center "sophia/avatar.jpg">></div><br>GENDERSWAP</div>
</div>
</div>
<</switch>>
<</if>>
<</nobr>><<nobr>>
<<switch $kayla.events.bake>>
<<case 1>>
<<think "mc">>I need to speak to $kayla.name while she's in the kitchen to learn how to use the oven.<</think>>
<<link "Return" housestuff>><</link>>
<<case 2>>
<<center "other/baking.jpeg">>
<<if $baked != undefined && $food < 1>>
<<narrate>>You've already baked today and don't have any spare ingredients available.<</narrate>>
<<if $buildings.farm != undefined>>
<<notice>>Use the farm to generate surplus food to bake more, or wait until tomorrow.<</notice>>
<<else>>
<<notice>>You can unlock ways to get more food later.<</notice>>
<</if>>
<<button "Continue" housestuff>>
<</button>>
<<else>>
<<set _replies = ['She really appreciates it.', 'She devours them almost immediately.', 'She shares with you.', 'She seems over the moon.', 'She can\'t stop smiling']>>
<div id="baked">
<<if $food > 0 && $baked == 1>>
<<notice>>You can bake an additional $food times today thanks to the food surplus at the farm.<</notice>>
<</if>>
<<choices "Who do you want to bake for?">>
<div class="flex" id="bakingSelect">
<<for _v range $girlsavailable>>
<<set _n = State.variables[_v].name>>
<<if State.variables[_v].traits.includes('off world worker') || getUsableLocation(_v) == "nope" || _v == "charlie" || _v == "derek">><<continue>><</if>>
<<capture _v, _n>>
<<script>>
getTooltips();
<</script>>
<<link '<div class="girlChoice hover baker moviegirl" title="" @girl="_v"><img @src="setup.img+\'/\'+getFolder(_v)+\'/badge.jpg\'" style="width:100px"><br>
_n
</div>'>>
<<if $nightEvents == undefined>>
<<set $nightEvents = []>>
<</if>>
<<if _v == "lacy" && $lacy.lust > 19 && !$blockedNightEvents.includes('lacycake') && !$nightEvents.includes('lacycake')>>
<<replace "#baked">>
<<narrate>>You make a cake for $lacy.name and decide to deliver it to her room.<</narrate>>
<<block "lacy/changed01.jpg">>
<<say "lacy">>Yes?<</say>>
<<narrate>>Before you, $lacy.name is getting changed.<</narrate>>
<<say "mc">>Oh shit, I didn't realize you were getting changed.<</say>>
<<say "lacy">>That hardly matters, what's up?<</say>>
<<think "mc">>She really doesn't care about modesty around me, huh?<</think>>
<<say "mc">>Well I baked you cake, but looking at you, you've already got plenty of cake already.<</say>>
<</block>>
<<say "lacy">>Ha! I appreciate the cake, and the compliment, thank you.<</say>>
<<say "mc">>And man, do I appreciate yours.<</say>>
<<narrate>>She gives her ass a little jiggle in your general direction.<</narrate>>
<<say "mc">>How about a taste?<</say>>
<<say "lacy">>I think I might enjoy that, but unfortunately I have places to be. Perhaps I'll... ummm, <i>bake</i> for you tonight, though.<</say>>
<<say "mc">>I'm looking forward to it!<</say>>
<<button "Continue" housestuff>>
<<set $location = "bedrooms">>
<<like "lacy" 3>>
<<lust "lacy" 3>>
<<time 1.5>>
<<if $baked == 1>>
<<set $food-->>
<</if>>
<<set $baked = 1>>
<<run addNightEvent('lacycake')>>
<</button>>
<</replace>>
<<else>>
<<set _r = either(_replies)>>
<<replace "#baked">>
<<narrate>>You make some treats for _n and call her over. _r<</narrate>>
<<button "Continue" housestuff>>
<<like _v 4>>
<<lust _v 3>>
<<time 1.5>>
<<if $baked == 1>>
<<set $food-->>
<</if>>
<<set $baked = 1>>
<</button>>
<</replace>>
<</if>>
<</link>><br>
<</capture>>
<</for>>
</div>
<</choices>>
</div>
<</if>>
<<default>>
<<narrate>>You start fiddling with the dials, but the oven doesn't seem to respond. All the text appears to be in a different language. If only you knew someone who cooks or bakes here frequently.<</narrate>>
<<task 'bakehow'>>
<<set $kayla.events.bake = "no">>
<<link "Return" housestuff>><</link>>
<</switch>>
<</nobr>><<set _w = State.variables[$mount]>>
<<if $tempvar == "ask">>
<<think "mc">>Let's go to the casino!<</think>>
<<narrate>>She stops walking for a moment.<</narrate>>
<<think $mount>>Yeah, okay. Could be fun. But I can't risk any more than 5 resources!<</think>>
<</if>>
<<block "locations/casino.jpeg">>
<<if $tempvar == "force">>
<<narrate>>You exert your influence, forcing her to enter the casino.<</narrate>>
<</if>>
<<if $resources <= 0>>
<<narrate>>You do not have any resources to gamble with. What a waste!<</narrate>>
<<button "Continue" yourroom>>
<<like $mount 3>>
<<time 2>>
<<run delete $mount>>
<</button>>
<<else>>
<<say "side" "Cashier">>How many chips would you like? The table limit is 100.<</say>>
<<set _n = random(0, 36)>>
<<capture _n>>
<div id="replace">
<<choices>>
<<link "10 - 1 Resource">>
<<replace "#replace">>
<<narrate>>You get your chips and quickly head to the roulette table.<</narrate>>
<div id="roulette" class="noshow">
<<if $tempvar == "ask">>
<<narrate>>_w.name puts everything on black.<</narrate>>
<<else>>
<<narrate>>You put everything on red.<</narrate>>
<</if>>
<<say "side" "Croupier">>No more bets.<</say>>
<span class="loader"></span>
<<timed 4s>>
<<script>>
$('.loader').hide();
<</script>>
<<if _n == 0>>
<<set _r = "">>
<<else>>
<<set _c = isOdd(_n)>>
<<set _r = "Red">>
<<if _c == true>>
<<set _r = "Black">>
<</if>>
<</if>>
<<say "side" "Croupier">>_r _n<</say>>
<<if _r == "Red" && $tempvar == "force">>
<<narrate>>You double your bet.<</narrate>>
<<elseif _r == "Black" && $tempvar == "ask">>
<<think $mount>>We won! That was fun!<</think>>
<<narrate>>You double your bet.<</narrate>>
<<elseif $tempvar == "force">>
<<narrate>>You lost. Loser.<</narrate>>
<<set $chips = 0>>
<<else>>
<<think $mount>>Oh, no! Let's not tell $armani.name about this, okay?<</think>>
<<set $chips = 0>>
<</if>>
<<button "Continue" yourroom>>
<<if (_r == "Black" && $tempvar == "ask")>>
<<like $mount 5>>
<<else>>
<<like $mount 4>>
<</if>>
<<time 2>>
<<run delete $mount>>
<<resources $chips>>
<<set delete $chips>>
<</button>>
<</timed>>
</div>
<</replace>>
<<set $chips = 2>>
<<resources -1>>
<<toggleclass "#roulette" noshow>>
<</link>><br>
<<link "50 - 5 Resources">>
<<replace "#replace">>
<<narrate>>You get your chips and quickly head to the roulette table.<</narrate>>
<div id="roulette" class="noshow">
<<if $tempvar == "ask">>
<<narrate>>_w.name puts everything on black.<</narrate>>
<<else>>
<<narrate>>You put everything on red.<</narrate>>
<</if>>
<<say "side" "Croupier">>No more bets.<</say>>
<span class="loader"></span>
<<timed 4s>>
<<script>>
$('.loader').hide();
<</script>>
<<if _n == 0>>
<<set _r = "">>
<<else>>
<<set _c = isOdd(_n)>>
<<set _r = "Red">>
<<if _c == true>>
<<set _r = "Black">>
<</if>>
<</if>>
<<say "side" "Croupier">>_r _n<</say>>
<<if _r == "Red" && $tempvar == "force">>
<<narrate>>You double your bet.<</narrate>>
<<elseif _r == "Black" && $tempvar == "ask">>
<<think $mount>>We won! That was fun!<</think>>
<<narrate>>You double your bet.<</narrate>>
<<elseif $tempvar == "force">>
<<narrate>>You lost. Loser.<</narrate>>
<<set $chips = 0>>
<<else>>
<<think $mount>>Oh, no! Let's not tell $armani.name about this, okay?<</think>>
<<set $chips = 0>>
<</if>>
<<button "Continue" yourroom>>
<<if (_r == "Black" && $tempvar == "ask")>>
<<like $mount 5>>
<<else>>
<<like $mount 4>>
<</if>>
<<time 2>>
<<run delete $mount>>
<<resources $chips>>
<<set delete $chips>>
<</button>>
<</timed>>
</div>
<</replace>>
<<set $chips = 10>>
<<resources -5>>
<<toggleclass "#roulette" noshow>>
<</link>><br>
<<if $tempvar == "force">>
<<link "100 - 10 Resources">>
<<replace "#replace">>
<<narrate>>You get your chips and quickly head to the roulette table.<</narrate>>
<div id="roulette" class="noshow">
<<if $tempvar == "ask">>
<<narrate>>_w.name puts everything on black.<</narrate>>
<<else>>
<<narrate>>You put everything on red.<</narrate>>
<</if>>
<<say "side" "Croupier">>No more bets.<</say>>
<span class="loader"></span>
<<timed 4s>>
<<script>>
$('.loader').hide();
<</script>>
<<if _n == 0>>
<<set _r = "">>
<<else>>
<<set _c = isOdd(_n)>>
<<set _r = "Red">>
<<if _c == true>>
<<set _r = "Black">>
<</if>>
<</if>>
<<say "side" "Croupier">>_r _n<</say>>
<<if _r == "Red" && $tempvar == "force">>
<<narrate>>You double your bet.<</narrate>>
<<elseif _r == "Black" && $tempvar == "ask">>
<<think $mount>>We won! That was fun!<</think>>
<<narrate>>You double your bet.<</narrate>>
<<elseif $tempvar == "force">>
<<narrate>>You lost. Loser.<</narrate>>
<<set $chips = 0>>
<<else>>
<<think $mount>>Oh, no! Let's not tell $armani.name about this, okay?<</think>>
<<set $chips = 0>>
<</if>>
<<button "Continue" yourroom>>
<<if (_r == "Black" && $tempvar == "ask")>>
<<like $mount 5>>
<<else>>
<<like $mount 4>>
<</if>>
<<time 2>>
<<run delete $mount>>
<<resources $chips>>
<<set delete $chips>>
<</button>>
<</timed>>
</div>
<</replace>>
<<set $chips = 20>>
<<resources -10>>
<<toggleclass "#roulette" noshow>>
<</link>>
<</if>>
<</choices>>
</div>
<</capture>>
<</if>>
<</block>>
<style>
.loader {
width: 48px;
height: 48px;
border: 3px solid #FFF;
border-radius: 50%;
display: inline-block;
position: relative;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
.loader::after {
content: '';
box-sizing: border-box;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 40px;
height: 40px;
border-radius: 50%;
border: 3px solid;
border-color: #FF3D00 transparent;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style><<nobr>>
<<scene>>
<<debug>>
<<button "Angry" connection>>
<<set $whitney.events.sentaway = "angry">>
<</button>>
<<button "Calm" connection>>
<<set $whitney.events.sentaway = "calm">>
<</button>>
<<button "Val" valmeet>>
<</button>>
<<button "Harley" harleymeet>>
<</button>>
<</debug>>
/*<<run checkChars()>>*/
<<if $energy < 1 >>
<<narrate>>You need at least one energy for this.<</narrate>>
<<link "Return" gatewayb>><</link>>
<<elseif $mc.events.eastreturn != undefined && !$completeTasks.includes('meriyareconnect')>>
<div class="choices" style="margin:auto">
<center class="blink">CONNECTION DENIED PENDING COUNCIL INVESTIGATION.</center>
</div>
<<if $tasks.meriyareconnect != undefined>>
<<think "mc">>I guess after the interrogation with $azul.name, they won't grant me access back immediately.<</think>>
<<else>>
<<think "mc">>Ugh... I guess I just have to wait until $kp.name's reported back to them.<</think>>
<</if>>
<<cont "gatewayb">>
<<else>>
<<switch $tempvar>>
<<case "c000">>
<<set _avail = 0>>
<div class="choices" style="margin:auto">
<center class="blink">CONNECTION ESTABLISHED.</center>
<center class="blink">CHOOSE SUBJECT.</center>
<<choices>>
<div class="flex">
<<set _arr = ['charlie', 'theodora', 'derek', 'sophia']>>
<<for _g range _arr>>
<<capture _g>>
<<if $girlsavailable.includes(_g)>>
<<set _avail++>>
<<set _u to State.variables[_g]>>
<<set _center = _g+"/avatar.jpg">>
<<link '<div class="girlChoice"><<center _center>>_u.name</div>' '000'>><<temp _g>><</link>>
<</if>>
<</capture>>
<</for>>
</div>
<</choices>>
<<if _avail == 0>>
<<think "mc">>I'll revisit this once I have some ideas on how to best utilize it.<</think>>
<</if>>
<<link "Return" gatewayb>><</link>>
</div>
<<case "welcome">>
<<if !$girlsmet.includes('val')>>
<<narrate>>As you're about to leave, you notice something purple down by the river and decide to investigate.<</narrate>>
<<button "Continue" valmeet>>
<</button>>
<<elseif !$girlsmet.includes('harley') && $attractiveness >= 5>>
<<left2 "harley/meet.jpg">>
<<say "harley">>Wow, this place is certainly a step up from the usual wastelands I travel through.<</say>>
<<say "mc">>Hi, first time in our hub I see.<</say>>
<<say "harley">>Ah, a tour guide? Yeah, I heard whispers there was a hub world with actual facilities. It's quite refreshing; your patron is certainly trying to set herself apart.<</say>>
<<say "mc">>I'm the patron, actually, and thank you. There's lots to do, but I am certainly trying.<</say>>
<<narrate>>She pauses.<</narrate>>
<<say "harley">>Uh... you're a patron? Male travelers are rare enough, but a male patron is almost unheard of. This place is great, but I'm unsure I believe you.<</say>>
<<say "mc">>Be that as it may, I am what I am. Do you know much about patrons? I'm very new to this; I'd love to learn more if you do.<</say>>
<<narrate>>She remains silent for some time, clearly trying to decide what to do.<</narrate>>
<<think "harley">>Obviously this guy is just trying to get into my pants. There's no way he's a patron. He is kinda cute, but the lying is a turn off.<</think>>
<<say "harley">>I think I'll just pass through. Perhaps another time?<</say>>
<<say "mc">>Of course, may I get your name?<</say>>
<<say "harley">>Sure, it's <<textbox "$harley.name" Quinn>>. Nice to meet you. Would you connect the gateway for me, please?<</say>>
<<button "Continue" harleymeet>>
<</button>>
<<else>>
<<if $girlsmet.includes('harley')>>
<<notice>>There are no more travelers to welcome in the current version.<</notice>>
<<else>>
<<notice>>The hub isn't attractive enough to entice people from new worlds yet.<</notice>>
<</if>>
<<button "Continue" gatewayb>>
<</button>>
<</if>>
<<case "lacy000">>
<<taskdone "lacy000">>
<<set $energy-->>
<<narrate>>You attempt to connect to 0-0-0, focusing hard on the image of the location formed in your mind.<</narrate>>
<<narrate>>The gateway springs to life and an orange oval appears at its center and a message forms in your head.<</narrate>>
<div class="notice" style="margin:auto">
<center class="blink">CONNECTION ESTABLISHED.</center>
<center class="blink">AWAITING SUBJECT...</center>
<center class="blink">WARNING: BUFFER IS FULL.</center>
</div>
<<think "mc">>The buffer sounds like it's something worth looking into, I should let $lacy.name know.<</think>>
<<narrate>>You close the connection.<</narrate>>
<<button "Continue" gatewayb>>
<<time 1>>
<<task "lacybuff">>
<</button>>
<<case '000'>>
<<taskdone "whitney000">>
<<taskdone "lacy000">>
<<set $energy-->>
<<if $whitney.events.sentaway == "angry">>
<<event "whitney" "retrieved">>
<<narrate>>You attempt to connect to 0-0-0, focusing hard on the image of the location formed in your mind.<</narrate>>
<<narrate>>The gateway springs to life and an orange oval appears at its center and a message forms in your head.<</narrate>>
<div class="notice" style="margin:auto">
<center class="blink">CONNECTION ESTABLISHED.</center>
<center class="blink">RETURNING SUBJECT.</center>
<center class="blink">MULTIPLE ERRORS OCCURRED SINCE LAST CONNECTION... LOADING LOGS...</center>
<center class="blink">ERROR: INSUFFICIENT INSTRUCTION. RETURNING SUBJECT.</center>
<center class="blink">ERROR: BUFFER IS FULL. UNABLE TO RETURN SUBJECT.</center>
<center class="blink">PATRON INTERVENTION REQUIRED. SUBJECT WILL BE DESTROYED IF NOT COLLECTED IN 48 HOURS.</center>
</div>
<<think "mc">>Thank god, I reconnected in time. The errors do raise some other questions, though.<</think>>
<<if $voice.events.lexi == 1>>
<<think "mc">>$voice.name explained the buffer to me, but supposed mine would be clear with it being new. I guess I'm not servicing my travelers quick enough. I should look into this at the monitoring station.<</think>>
<</if>>
<<tech "buffer">>
<<task "research">>
<<say "whitney">>So, can you send me home or not... wait, when did you get changed?<</say>>
<<think "mc">>Perhaps I'm reading this wrong... but is she unaware of what just happened?<</think>>
<<say "mc">>A day has passed since we last spoke.<</say>>
<<say "whitney">>What?! Are you crazy, we were literally talking about whether you were actually a tour guide or not just moments ago!<</say>>
<<think "mc">>So, she doesn't remember anything from the point of the gateway opening until now?<</think>>
<div id="opt">
<<choices "What do you tell her?">>
<<link "Truth">>
<<replace "#opt">>
<<say "mc">>I accidentally sent you to somewhere called 0-0-0, but it said I didn't pass any instructions and returned you here today... I have no idea what it means, though.<</say>>
<<narrate>>Her face goes through a number of emotions, disgust, surprise and finally anger.<</narrate>>
<<say "whitney">>ARE YOU KIDDING ME?! What kind of tour guide even has access to some mythical patron-only location. And why the hell would you send me there, even if it was real, and you could do it?!<</say>>
<<say "mc">>Listen, I don't like your attitude. But, after what I did, I understand your anger, so I'm going to let it slide and be honest with you. I'm a patron, new to the job, only found out recently. Both times I've sent you somewhere have been somewhat of a fluke. I'm pretty sure I understand it now as I can see the address book in my mind, but that came about after sending you to 0-0-0.<</say>>
<<say "mc">>Now, you seem to know what 0-0-0 is?<</say>>
<<narrate>>Her mouth opens and closes multiple times before she finally processes this information.<</narrate>>
<<think "whitney">>Could it be true? I don't think I can risk it. If he's a damn patron, I need to show him some respect... and if he really is new, well, this is an opportunity I can't afford to miss. Best play nice, just in case.<</think>>
<<say "whitney">>I apologize, I had no idea you were someone <i>important</i>.<</say>>
<<narrate>>Her whole attitude shifts, she starts playing with her hair and shuffling as if she's shy.<</narrate>>
<<say "whitney">>But for you to connect to 0-0-0, that's impressive. Did... did you change me at all?<</say>>
<<think "mc">>A personality transplant? No, that's obviously because she no longer thinks I'm just the help. Maybe I can use this new attitude to my advantage.<</think>>
<<say "mc">>No, you were returned here because I hadn't left any instructions, but they—it... whatever couldn't return you until I reconnected as the buffer was full. But, I can only connect there once a day. What do you know of it?<</say>>
<<say "whitney">>It's meant to be a myth. I certainly didn't think it was real, but the evidence certainly suggests I've lost the last 24 hours.<</say>>
<<say "whitney">>Apparently it's a realm completely outside of existence that only patrons can connect to. It's sort of like the central office, and apparently patrons can send things there, to change them somehow. The myths mention people being made younger, changing sex or having their appearance fundamentally changed. The most obscene myths even talk about changing species or anthropomorphizing objects.<</say>>
<<say "mc">>Anthro- what now?<</say>>
<<say "whitney">>Anthropomorphism, giving human traits and characteristics to otherwise non-human entities.<</say>>
<<say "mc">>And you believe this?<</say>>
<<say "whitney">>Until today? No. Now, I'm really not sure. If what you're telling me is the truth, some of it has to be real at least.<</say>>
<<think "mc">>Thinking about it, $vanna.name was made 20+ years younger when she transferred here. I'm guessing that was thanks to 0-0-0.<</think>>
<<say "mc">>Thanks, $whitney.name, that's super helpful. Let me send you home now.<</say>>
<<say "whitney">>Wait, not yet. You'll forgive me, but you mentioned you're new, and you've already sent me somewhere you didn't mean to once. Might I observe you returning someone else home first before I risk my own life?<</say>>
<<think "mc">>She's not wrong, of course, yet she has no hesitation letting someone else be the guinea pig.<</think>>
<<say "mc">>I am confident I can do it, but I understand your reservations. I was going to set up an expedition for some of the others, why don't you hang out at our home and come watch when I arrange that?<</say>>
<<say "whitney">>Yes, that would be lovely. Thank you.<</say>>
<<think "whitney">>This sucks. I don't want to stay here in this shithole, but no way I'm risking my life until I know it's safe! Let some over schmuck do that.<</think>>
<<say "whitney">>I'll catch you later, then.<</say>>
<<button "Continue" townhub>>
<<available "whitney">>
<<task "expedition">>
<<event "mc" "c000">>
<<if $voice.events.lexi is undefined>>
<<task "bufferR">>
<</if>>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Passed Out (Lie)">>
<<replace "#opt">>
<<say "mc">>You passed out. It's been a day.<</say>>
<<think "whitney">>Does this guy think I'm stupid?!<</think>>
<<say "whitney">>And just as I was coming around, you brought me back to the gateway?<</say>>
<<say "mc">>Well, the thing is, there was a raccoon—<</say>>
<<say "whitney">>You know what? I'm not interested. Just send me home.<</say>>
<<think "mc">>Gladly!<</think>>
<<narrate>>You focus on the address book in your mind and concentrate on location 2. You hear an ocean wave from the gateway, and a fluid pink oval appears at its center.<</narrate>>
<<say "whitney">>Ha! Just wait until I tell your patron!<</say>>
<<narrate>>A wave of pleasure consumes you as she steps foot through the portal. After she's gone through, the connection closes and your pleasure comes to an abrupt end.<</narrate>>
<<think "mc">>What a bitch, looking forward to her trying to speak to my patron, though!<</think>>
<<button "Continue" townhub>>
<<if $voice.events.lexi is undefined>>
<<task "bufferR">>
<</if>>
<<task "000R">>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<elseif $whitney.events.sentaway == "calm">>
<<narrate>>You attempt to connect to 0-0-0, focusing hard on the image of the location formed in your mind.<</narrate>>
<<narrate>>The gateway springs to life and an orange oval appears at it's center and a message forms in your head.<</narrate>>
<div class="notice" style="margin:auto">
<center class="blink">CONNECTION ESTABLISHED.</center>
<center class="blink">AWAITING SUBJECT...</center>
<center class="blink">WARNING: BUFFER IS FULL.</center>
</div>
<<if $voice.events.lexi == 1>>
<<think "mc">>$voice.name explained the buffer to me, but supposed mine would be clear with it being new. I guess I'm not servicing my travelers quick enough. I should look into this at the monitoring station.<</think>>
<</if>>
<<tech "buffer">>
<<task "research">>
<<think "mc">>Hmmm, so I guess I can send a "subject" whatever that means through the gateway, but to what end? And what does the buffer being full mean? Great, more questions.<</think>>
<<narrate>>You close the connection.<</narrate>>
<<narrate>>As you're about to leave, you notice something purple down by the river and decide to investigate.<</narrate>>
<<button "Continue" valmeet>>
<<task "000R">>
<<if $voice.events.lexi is undefined>>
<<task "bufferR">>
<</if>>
<</button>>
<<else>>
<</if>>
<</switch>>
<</if>>
<</nobr>><<choices "Who do you want to dream with?">>
<div class="flex">
<<for _g range $dreamer>>
<<capture _g>>
<<set _folder = getFolder(_g)>>
<<set _girl = State.variables[_g].name>>
<<link '
<div class="girlChoice" title="" @girl="_g"><img @src="setup.img+\'/\'+_folder+\'/\'+_g+\'crop.jpg\'" style="width:200px"><br>
_girl
</div>' dreaming>>
<<temp _g>>
<</link>>
<</capture>>
<</for>>
</div>
<<link "Never mind" bedroom>><</link>>
<</choices>><<switch $tempvar>>
<<case "krissy">>
<<if $krissy.events.sdream == 3>>
<<narrate>>You focus on $krissy.name as you fall into your slumber.<</narrate>>
<<left2 "krissy/dream03.jpg">>
<<say krissy>>Ah, good. You're here.<</say>>
<<say mc>>You wanted to talk in private?<</say>>
<<think mc>>She looks so serious... and super hot. Where are we; is this somewhere from her memories?<</think>>
<<say krissy>>I realized something when we were dreaming together last.<</say>>
<<narrate>>You raise an eyebrow.<</narrate>>
<<say krissy>>Even if I followed you around, and ensured the two of you never spoke again. Here, in this dreamscape, the two of you could connect without me ever knowing. I can't stop you two.<</say>>
<<say mc>>You mean $kenna.name?<</say>>
<<narrate>>She nods.<</narrate>>
<<say mc>>Why are you so intent on keeping us apart? Back on Earth before you knew I could travel, I can somewhat understand... but now...<</say>>
<<narrate>>The mood darkens and you're sure the temperature dropped.<</narrate>>
<<cont "krissyanswers" "interdream2">>
<<else>>
<<narrate>>You focus on $krissy.name when a strange melody comes to mind.<</narrate>>
<<if $krissy.relief == 4.4>>
<<think mc>>Just like before... but this time she was surely expecting me.<</think>>
<</if>>
<<vid "krissy/sdream01.mp4">>
<<narrate>>$krissy.name parades in a box, tempting and teasing you, but locked up and just out of reach.<</narrate>>
<<think mc>>The dream jumps from one moment to the next, her clothing and poses inconsistent... pretty much like her real actions up to this point.<</think>>
<<narrate>>You reach out to open the gate but she stops you.<</narrate>>
<<say krissy>>No... we mustn't.<</say>>
<<if $krissy.relief == 4.2>>
<<say mc>>But... why not?<</say>>
<<say krissy>>Oh, god, I want to $krissy.calls, I really do... I am so horny...<</say>>
<<say mc>>Then there's nothing stopping us here in this dream.<</say>>
<<narrate>>She looks shocked.<</narrate>>
<<say krissy>>Dream?<</say>>
<<narrate>>Her words echo around your head as the world implodes on itself into nothingness.<</narrate>>
<<set $dreamer.delete('krissy')>>
<<set $krissy.relief = 4.3>>
<<cont "sleep" "focused">>
<<else>>
<<cont "krissysex" "sdream01">>
<</if>>
<</if>>
<<case "kenzie">>
<<narrate>>You fall asleep thinking of $kenzie.name, specifically back to that amazing blowjob back when you were leaving New Eden.<</narrate>>
<<say "kenzie">>I was hoping we'd meet here again...<</say>>
<<say "kenzie">>You remember this place?<</say>>
<<say "mc">>I can't say that I do...<</say>>
<<vid "kenzie/dream01.mp4">>
<<say "kenzie">>Ringing any bells yet?<</say>>
<<narrate>>You grin.<</narrate>>
<<say "mc">>No... no... it's still a bit foggy.<</say>>
<<say "kenzie">>Perhaps a reenactment will refresh your memory...<</say>>
<<cont "kenziesex" "dream101">>
<<case "kp">>
<<narrate>>You concentrate your thoughts on $kp.name, and almost immediately an image of her masturbating comes to mind.<</narrate>>
<<vid "kp/dream101.mp4">>
<<if $kp.events.dreamed == undefined && $replay == false>>
<<think "mc">>Well, that was easier than expected...<</think>>
<</if>>
<<say "kp">>Enjoying the show, $name? Perhaps you'd prefer to take part?<</say>>
<<narrate>>You grin mischievously.<</narrate>>
<<say "mc">>I'm glad we're on the same wavelength.<</say>>
<<narrate>>You clap your hands together for dramatic effect. The room wraps and changes, and $kp.name finds herself wearing nothing but a tie and knee-high socks.<</narrate>>
<<if $kp.events.dreamed == undefined && $replay == false>>
<<think "mc">>Nice... this control... it's incredible.<</think>>
<</if>>
<<say "mc">>Shall we?<</say>>
<<narrate>>You fall backwards, your clothes vanish into smoke, and a bed miraculously appears to catch your fall.<</narrate>>
<<think "mc">>Shit, this is easy!<</think>>
<<narrate>>$kp.name crawls atop you.<</narrate>>
<<say "kp">>The things I'm going to do to you...<</say>>
<<cont "kpsex" "dream102">>
<<case "kenna">>
<<narrate>>You focus your mind on $kenna.name, and a moment later you feel as though your consciousness is in an alien environment.<</narrate>>
<<vid "kenna/dream1.mp4">>
<<think "mc">>What is this place... what is she wearing... just what kind of dream is she having?<</think>>
<<narrate>>She looks at you shocked, almost as if she didn't realize who the man she was performing for was previously.<</narrate>>
<<say "kenna">>$kenna.calls! What are you doing here?<</say>>
<<say "mc">>I just wanted to show you—<</say>>
<<say "kenna">>Your cock?! You're a bad $kenna.you!<</say>>
<<think "mc">>Shit, shit, fuck! I need to go!<</think>>
<<narrate>>You remove yourself from her dream.<</narrate>>
<<think "mc">>She doesn't believe that I can enter her dreams so hopefully it's okay and she just passes it off as some weird dream. I can't believe I got my cock out like that, I didn't even realize.<</think>>
<<button "Continue" sleep>>
<<event "kenna" "dreamed">>
<<set $dreamer.delete('kenna')>>
<<temp "focused">>
<</button>>
<<case "adria">>
<<narrate>>You think about $adria.name while drifting off to sleep.<</narrate>>
<<vid "adria/dream01.mp4">>
<<narrate>>You open your eyes to see $adria.name spinning a hoop around her waist.<</narrate>>
<<think mc>>Not quite what I was expecting...<</think>>
<<narrate>>She grins at you seductively while continuing.<</narrate>>
<<say adria>>Like what you see, $adria.calls?<</say>>
<<narrate>>You keep watching, absorbed in the rhythm. The light dance and flicker to some unknown tune as she continues to dance and enthrall.<</narrate>>
<<say adria>>That's not my only talent...<</say>>
<<narrate>>You blink and for a moment you're almost certain you see her naked.<</narrate>>
<<cont "adriasex" "dream02">>
<<case "lexi">>
<<narrate>>Your thoughts are firmly on $lexi.name as you close your eyes.<</narrate>>
<<if $lexi.young == true>>
<<include "lexisex-y-dream01">>
<<else>>
<<narrate>>Despite your attempts, you feel no shared connection with her.<</narrate>>
<<think mc>>Odd... she does get more horny when I transform her, maybe that's worth trying instead.<</think>>
<<button "Sleep" sleep>>
<</button>>
<</if>>
<</switch>><<switch $tempvar>>
<<case "lookup">>
<<narrate>>You spend some time looking around, trying to work out what businesses may provide useful information.<</narrate>>
<<narrate>>After a few hours, you've narrowed it down to a handful of businesses your think may be appropriate to investigate.<</narrate>>
<<think "mc">>$eva.name seems to be running a business here that may prove useful. In addition, there's a construction agency and a security firm that may be relevant to the invasion.<</think>>
<<notice>>$eva.name's business, <i>New Eden Holdings Inc.</i>, the construction agency, <i>Bob'll Fix It</i>, and the security firm, <i>Aegis Protectorate</i> can now be investigated.<</notice>>
<<button "Continue" easthub>>
<<set $east.bus = 1>>
<<set $intel.eva.pushUnique('Runs New Eden Holdings Inc')>>
<<time 3>>
<</button>>
<</switch>><<set _switch = $tempvar>>
<<if $location == "brothel">>
<<set _switch = "ne">>
<</if>>
<<switch _switch>>
<<case "new">>
<<narrate>>As you approach the building, a man stops you.<</narrate>>
<<left2 "east/guard01.jpg">>
<<say "side" "Guard">>What business do you have here?<</say>>
<<think "mc">>Hmm... I guess it makes sense the security at a security firm is over the top.<</think>>
<<if $east.gerald == 1>>
<<say "mc">>I'm looking for Dave.<</say>>
<<narrate>>he raises an eyebrow.<</narrate>>
<<say "side" "Guard">>Why?<</say>>
<<say "mc">>Shiela's rival sent me.<</say>>
<<elseif $tempvar2 == "ne">>
<<say "mc">>Just looking around.<</say>>
<<say "side" "Guard">>Invite only.<</say>>
<<else>>
<<say "mc">>Just with the looking threat, I was looking to get some protection for me and my family.<</say>>
<<narrate>>He visibly seems to relax.<</narrate>>
<<think "mc">>Odd reaction.<</think>>
<<say "side" "Guard">>Invite only.<</say>>
<</if>>
<<if $east.gerald == 1>>
<<say "side" "Guard">>I see. Sorry about that, sir. Please go ahead. Dave will be waiting.<</say>>
<<think "mc">>I really hope this isn't a bad idea.<</think>>
<<say "dave">>Ah, you must be the new collector. Got one right now that needs testing out in fact. Why don't you give us your verdict, newbie?<</say>>
<<think "mc">>I have no idea what is going on.<</think>>
<<say "mc">>Uh, sure. Yeah.<</say>>
<<narrate>>You follow him to an office at the end of the corridor.<</narrate>>
<<say "dave">>Have fun with it. Let me know your thoughts.<</say>>
<<button "Continue" eastsex>>
<<set $east.guard = 1>>
<<temp "loan">>
<</button>>
<<elseif $tempvar2 == "ne">>
<<say "mc">>To a security firm?<</say>>
<<say "side" "Guard">>Move along.<</say>>
<<narrate>>You feel a tap on your shoulder.<</narrate>>
<<say "gsec">>I figured you'd make your way here eventually. Your reputation precedes you.<</say>>
<<narrate>>A stunning attractive older woman stands before you.<</narrate>>
<<say "gsec">>Stand down, Barry. This is $name... he is our esteemed guest.<</say>>
<<say "side" "Guard">>Of course, <<textbox "$gsec.name" Isha>>, I had no idea.<</say>>
<<narrate>>She motions for you to follow her inside.<</narrate>>
<<meet "gsec">>
<<cont "east-aegis" "newne">>
<<else>>
<<say "mc">>And how do I get an invite?<</say>>
<<say "side" "Guard">>Recommendation from a trusted client or staff member.<</say>>
<<say "mc">>Want to recommend me?<</say>>
<<narrate>>He laughs.<</narrate>>
<<say "side" "Guard">>Nice try.<</say>>
<<think "mc">>Hmm, I have no idea if there's anything worth learning here, but the restrictions alone make me suspicious.<</think>>
<<narrate>>You feel a tap on your shoulder.<</narrate>>
<<say "gsec">>I've been waiting for you. Come on, let's head to the bar.<</say>>
<<narrate>>A stunning attractive older woman stands before you, her eyes almost pleading.<</narrate>>
<<think "mc">>Hmm, clearly she wants something. Let's see where it leads.<</think>>
<<say "mc">>Oh, right. Sure, let's go.<</say>>
<<say "gsec">>I just need to grab something, meet me at the <i>Pig & Fox</i> in 15 minutes, okay?<</say>>
<<narrate>>You nod as she goes inside the building. The guard standing aside for her.<</narrate>>
<<think "mc">>Okay, so she's allowed in. Now I'm extremely curious what she wants.<</think>>
<<button "Continue" east-aegis>>
<<temp "new02">>
<</button>>
<</if>>
<<case "newne">>
<<left2 "east/gsec04.jpg">>
<<say "gsec">>So you've come to enjoy the delights of this place, have you?<</say>>
<<say "mc">>I'm not entirely certainly I need the security, I was just exploring the city to be honest. How is it you know who I am?<</say>>
<<say "gsec">>You stumbled across this place? Ha! I work with Howard. And because of you, this place is now owned by Gerald's former envoy... and I got all the answers I needed.<</say>>
<<say "mc">>Uhh... right. I don't recall doing anything for this place specifically, though.<</say>>
<<say "gsec">>Your actions have consequences, $name. Specifically, you deposed Gerald, and his former business interests are under new management. This isn't just a security firm, it's also a brothel. We are working on separating the two businesses now that it's no longer one of Gerald's covert operations.<</say>>
<<say "mc">>Wow...<</say>>
<<think "mc">>Maybe I could get them interested in working at the hub...<</think>>
<<say "gsec">>Our facilities are open to you, at a very healthy discount. Come back whenever, Dave will give you the details.<</say>>
<<say "mc">>I see, thanks, $gsec.name.<</say>>
<<say "gsec">>My pleasure.<</say>>
<<event "gsec" "step" 1>>
<<cont "nestuff" "" 1>>
<<case "newne2">>
<<say "dave">>$alias. New boss wants to talk to you.<</say>>
<<think "mc">>Hmm, guess not everyone has been told who I am.<</think>>
<<narrate>>He walks you to an office then leaves.<</narrate>>
<<left2 "east/gsec04.jpg">>
<<if $girlsmet.includes('gsec')>>
<<say "gsec">>Ah, welcome $name!<</say>>
<<say "mc">>$gsec.name, it's good to see you again. So you're the new boss?<</say>>
<<else>>
<<say "gsec" "???">>Ah, welcome $name!<</say>>
<<say "mc">>Hello... I'm afraid you have me at a disadvantage.<</say>>
<<say "gsec" "???">><<textbox "$gsec.name" Isha>><</say>>
<<say "mc">>So you're the new boss?<</say>>
<<meet "gsec">>
<</if>>
<<say "gsec">>Well, I'm managing this facility, but ultimately $genvoy.name is in charge. She was given most of Gerald's business interests.<</say>>
<<say "mc">>I see.<</say>>
<<say "gsec">>But, despite everything else Gerald did, the women here were treated well. The only reason it was hidden within Aegis like this was due to him evading taxes of all things.<</say>>
<<say "mc">>I'm glad they're all being treated fairly.<</say>>
<<say "gsec">>We are working on separating the two businesses properly now that it's no longer one of Gerald's covert operations.<</say>>
<<say "mc">>Wow...<</say>>
<<think "mc">>Maybe I could get them interested in working at the hub...<</think>>
<<say "gsec">>Our facilities are open to you, at a very healthy discount. Come back whenever, Dave will give you the details.<</say>>
<<say "mc">>I see, thanks, $gsec.name.<</say>>
<<say "gsec">>My pleasure.<</say>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#textbox-gsecname').change(function() {
$('.gsec .speakername').html($('#textbox-gsecname').val());
});
})
<</script>>
<<event "gsec" "step" 1>>
<<cont "nestuff" "" 1>>
<<case "ne">>
<<set _t = "morning">>
<<if $hour >= 12 && $hour < 18>>
<<set _t = "afternoon">>
<<elseif $hour >= 18>>
<<set _t = "evening">>
<</if>>
<<if checkUnlocks('movie', 'eval', 'pro3') == true && $gsec.events.step == 1 && checkUnlocks('movie', 'gsec', 'gsec') == false >>
<<interrupt>>
<<left2 "east/gsec01.jpg">>
<<say "gsec">>Ah, $name, I was hoping to catch you. I'm afraid I'm on my way to a gala, but I've been speaking to $genvoy.name... she speaks very highly of you.<</say>>
<<say "mc">>Good to hear. You look amazing, by the way.<</say>>
<<say "gsec">>I am glad you approve. On that note... I am a woman who enjoys taking things for herself. Perhaps you'll join me one evening? Here's my address.<</say>>
<<say "mc">>I'd be happy to.<</say>>
<<say "gsec">>Great, don't be a stranger!<</say>>
<<narrate>>She waves and heads out the door.<</narrate>>
<<event "gsec" "step" 2>>
<</interrupt>>
<</if>>
<<say "dave">>Good _t, $name. What are you looking for today?<</say>>
<div id="wreplace">
<<set _where = "east-aegis">>
<<if $location == "brothel">>
<<set _where = "mngbrothel">>
<</if>>
<<choices "Whores">>
10 resources per event.
<div class="flex">
<div class="girlChoice">
<<link '<<center "east/pro1/badge.jpg">>'>>
<<if $resources < 10>>
<<error>>Not enough resources<</error>>
<<else>>
<<replace "#wreplace">>
<<say "dave">>She's known as the Blowjob Queen and is oral only. You won't want to miss it, mind. Still interested?<</say>>
<div id="replace2">
<<choices>>
<<link "Sure" eastsex>>
<<resources -10>>
<<temp "pro1">>
<</link>><br>
<<link "Nah">>
<<replace "#replace2">>
<<say "mc">>Nah, I want full penetration.<</say>>
<<say "dave">>Then unfortunately she's not the gal for you.<</say>>
<<say "mc">>If I pay extra?<</say>>
<<say "dave">>Nope. We don't force any of the women to do anything, or anyone, they don't want to.<</say>>
<<say "mc">>Understood.<</say>>
<<button "Continue" _where>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<</replace>>
<</if>>
<</link>>
<<if !$girlsmet.includes('pro1')>>
<<textbox "$pro1.name" $pro1.name>>
<<else>>
$pro1.name
<</if>>
</div>
<div class="girlChoice">
<<link '<<center "east/pro2/badge.jpg">>'>>
<<if $resources < 10>>
<<error>>Not enough resources<</error>>
<<else>>
<<resources -10>>
<<temp "pro2">>
<<goto "eastsex">>
<</if>>
<</link>>
<<if !$girlsmet.includes('pro2')>>
<<textbox "$pro2.name" $pro2.name>>
<<else>>
$pro2.name
<</if>>
</div>
<div class="girlChoice">
<<link '<<center "east/pro3/badge.jpg">>'>>
<<if $resources < 10>>
<<error>>Not enough resources<</error>>
<<else>>
<<replace "#wreplace">>
<<if checkUnlocks('movie', 'pro3', 'pro3') == true && checkUnlocks('movie', 'eval', 'pro3') == false>>
<<say "dave">>Got a special request for you today.<</say>>
<<say "mc">>Oh?<</say>>
<<if $location == "brothel">>
<<say dave>>$pro3.name is getting evaluated for potentially doing some work here or at the Platinum Lounge... and well, she's requested you as her partner for it. Normally it's one of ours who handle these, but $genvoy.name was intrigued by the request.<</say>>
<<say mc>>So she'll watch me with $pro3.name?<</say>>
<<say dave>>Exactly that.<</say>>
<<else>>
<<say "dave">>$pro3.name is over at the owner's place today. She's gonna be putting on a show, and well, she asked if you'd be her partner for it. Just you and her this time.<</say>>
<<say "mc">>But we're being watched?<</say>>
<<say "dave">>Yup. The audience won't be visible to you. But if you do a good job, who knows what may happen. The owner was very intrigued simply by the request, normally it's one of our men who handle these. You up for it? There'll be no charge.<</say>>
<</if>>
<div id="replace2">
<<choices>>
<<link "Sure" eastsex>>
<<temp "pro3a">>
<</link>><br>
<<link "Nah">>
<<replace "#replace2">>
<<say "mc">>Maybe another time.<</say>>
<<button "Continue" _where>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<else>>
<<narrate>>He whispers to the device on his wrist, then holds his ear as the response comes in.<</narrate>>
<<say "dave">>Ah, slight issue another client has just engaged with her. However... he said he's open to sharing if you're into that?<</say>>
<div id="replace2">
<<choices>>
<<link "Sure" eastsex>>
<<resources -10>>
<<temp "pro3">>
<</link>><br>
<<link "Nah">>
<<replace "#replace2">>
<<say "mc">>Not for me, thank you.<</say>>
<<say "dave">>Understandable, it's not my thing either. Now... two women, maybe!<</say>>
<<narrate>>You laugh.<</narrate>>
<<say "mc">>That ever an option here?<</say>>
<<say "dave">>Nobody available for that at the moment I'm afraid. But you can always try later.<</say>>
<<button "Continue" _where>>
<</button>>
<</replace>>
<</link>><br>
<<link "Skip" _where>>
<<unlock "pro3" "pro3">>
<<time 1>>
<</link>>
<</choices>>
</div>
<</if>>
<</replace>>
<</if>>
<</link>>
<<if !$girlsmet.includes('pro3')>>
<<textbox "$pro3.name" $pro3.name>>
<<else>>
$pro3.name
<</if>>
</div>
<div class="girlChoice">
<<link '<<center "east/pro4/badge.jpg">>'>>
<<if $resources < 10>>
<<error>>Not enough resources<</error>>
<<else>>
<<resources -10>>
<<temp "pro4">>
<<goto "eastsex">>
<</if>>
<</link>>
<<if !$girlsmet.includes('pro4')>>
<<textbox "$pro4.name" $pro4.name>>
<<else>>
$pro4.name
<</if>>
</div>
<div class="girlChoice">
<<link '<<center "east/pro5/badge.jpg">>'>>
<<if $resources < 10>>
<<error>>Not enough resources<</error>>
<<else>>
<<resources -10>>
<<temp "loan">>
<<goto "eastsex">>
<</if>>
<</link>>
<<if !$girlsmet.includes('pro5')>>
<<textbox "$pro5.name" $pro5.name>>
<<else>>
$pro5.name
<</if>>
</div>
</div>
<<if $location != "brothel">>
<<link "Exit" nestuff>><</link>>
<</if>>
<</choices>>
</div>
<<case "new02">>
<<narrate>>You're waiting in the bar for twenty minutes.<</narrate>>
<<think "mc">>She's not coming is she? Probably just a tactic to get rid of me. Now I'm even more intrigued what's going on in there.<</think>>
<<say "gsec">>Looking for someone?<</say>>
<<block "east/gsec01.jpg">>
<<think "mc">>Holy shit, I didn't get a proper look at her earlier. I knew she was attractive, but wow.<</think>>
<<say "mc">>That's right, I met this amazingly beautiful woman outside <i>Aegis</i> today.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "gsec">>Well aren't you quite the charmer, young man? I apologize for blindsiding you earlier, and thank you for humoring me. Let's talk.<</say>>
<<say "mc">>Sure. How can I help?<</say>>
<</block>>
<<say "gsec">>I believe we may be able to help each other.<</say>>
<<say "mc">>Can you give me a recommendation?<</say>>
<<say "gsec">>That I can. But it comes with conditions. Conditions that my friends and others have turned down.<</say>>
<<say "mc">>Well, now I'm both intrigued and concerned.<</say>>
<<say "gsec">>My name is <<textbox "$gsec.name" Isha>>, by the way.<</say>>
<<if $alias == undefined>>
<<think "mc">>I should probably use an alias while I'm here.<</think>>
<</if>>
<<say "mc">>I'm <<if $alias == undefined>><<textbox "$alias" Frank>><<else>>$alias<</if>>. Nice to meet you, officially.<</say>>
<<button "Continue" east-aegis>>
<<temp "new03">>
<</button>>
<<case "new03">>
<<block "east/gsec02.jpg">>
<<say "gsec">>You see, young man, I believe there is something awry within the company. I've been trying to dig into it for some time but my superiors turn my concerns and questions away.<</say>>
<<say "mc">>And you think I can uncover it?<</say>>
<<say "gsec">>Possibly. As I said, my friends turned me down. I need someone posing as a client, a wealthy one at that, to try and find out what extra services they would offer such a person. It could be dangerous.<</say>>
<<think "mc">>Hell, the fact I'm here is already dangerous.<</think>>
<<say "gsec">>But right now, with a lot of the <i>Aegis</i> staff working on the war effort while the wealthy sit and do nothing, it is the best time to strike. Resources are stretched right now, but the rich and powerful will always still get what they want.<</say>>
<</block>>
<<say "mc">>Okay, so what am I looking for here?<</say>>
<<say "gsec">>A number of women come through for all sorts of minor offenses. The male guards spend far too much time with them in the interrogation rooms, there's no recordings and I'm disallowed from attending any of them.<</say>>
<<say "mc">>And you think that something is happening to those women? Do you ever see them again?<</say>>
<<say "gsec">>I do. Firstly, male detainees spend only a fraction of the time in interrogation. And yes, these women become quite frequent visitors, for a small period of time. I tried to approach them but the guards would intercept, or the girls would blank me.<</say>>
<<say "mc">>And how does the wealthy client part play in this?<</say>>
<<say "gsec">>I don't know that it's relevant if I'm honest, but I overhead Dave, one of the guards, showing off to another colleague about how he caught a big whale and how the girls are going to love him. I have assumed the big whale relates to a wealthy client we hadn't long acquired at the time.<</say>>
<<say "mc">>And do the girls seem happy?<</say>>
<<block "east/gsec03.jpg">>
<<say "gsec">>Mixed bag. Generally they seem to start a little unhappy, nervous probably about being detained, but as they visit more they do seem to be happier and happier.<</say>>
<<say "mc">>Then is there a problem?<</say>>
<<say "gsec">>That's the thing. I don't know. If they let me in the loop, I could know for sure, but they fact they won't makes me suspicious.<</say>>
<<say "mc">>And what kind of offenses are these women held on?<</say>>
<</block>>
<<say "gsec">>Usually something like trespassing upon private property or defaulting on loans.<</say>>
<<think "mc">>Why would a security firm handle loans? Maybe it doubles as a collections agency?<</think>>
<<say "mc">>And what do you think is going on?<</say>>
<<say "gsec">>I think it's recruitment for prostitutes.<</say>>
<<narrate>>You spit out your drink.<</narrate>>
<<say "mc">>That's quite the accusation. But, would it matter if it were, providing everyone involved was safe and happy?<</say>>
<<say "gsec">>This is an open-minded city and sex work is not frowned upon in any way, and I certainly have no issue with it. My only concern is the cloak and dagger of it all. Are these women willing participants? I may be wrong, or it may be as simple as the rich wanting some form of privacy.<</say>>
<<say "mc">>And you think I can help?<</say>>
<<say "gsec">>If you're willing, I'll sell you in as the next big whale. I can't imagine you'll have their trust right away, certainly not when I'm the one who has recommended you. But with time I'm sure you can find out what's happening. If you find out it's something innocent and the women are in it willingly, or it's not anything like I suspect at all, all's the better.<</say>>
<<think "mc">>I mean I do kinda want to know more. Even if these women are voluntarily engaging, they may have learned all manner of things during their work.<</think>>
<<say "mc">>And what's not to stop me from just going and telling the guards what you're up to?<</say>>
<<say "gsec">>Frankly, nothing. But unless some other strange man appears at their door, you're my last hope. The guards are fewer within the office buildings due to many of them being sent to the training camps. Now is the best time to investigate.<</say>>
<<say "mc">>Okay I'll think about it.<</say>>
<<say "gsec">>That's all I ask. I'll ready the paperwork, just come by the office when you're ready. I'll let the guards know of the recommendation so you should be able to enter without hassle next time.<</say>>
<<think "mc">>It may or may not lead me to more information, but if I've got the time, it can't hurt. Alternatively, I could ask one of my party to commit one of these offenses and see what's offered to them. I would definitely want to be there while they are detained to ensure I can act if anything is amiss, though.<</think>>
<<button "Continue" easthub>>
<<set $east.gsec = 1>>
<<set $east.guard = 1>>
<<meet "gsec">>
<<time 3>>
<</button>>
<<case "progo">>
<<narrate>>You approach the building, this time the guard simply nods at you and gestures you to pass. Inside you meet Dave.<</narrate>>
<<if $east.pro3 == 1 && !$girlsmet.includes('genvoy')>>
<<say "dave">>Got a special request for you today.<</say>>
<<say "mc">>Oh?<</say>>
<<say "dave">>You remember $pro3.name? Well, she's over the owner's place today. She's gonna be putting on a show, and well, she asked if you'd be her partner for it. Just you and her this time.<</say>>
<<say "mc">>But we're being watched?<</say>>
<<say "dave">>Yup. The audience won't be visible to you. But if you do a good job, who knows what may happen. The owner was very intrigued simply by the request, normally it's one of our men who handle these.<</say>>
<<set $tempvar2 = "friends">>
<</if>>
<<if $east.pro4 == 1 && (($east.pro3 == 1 && $girlsmet.includes('genvoy')) || $east.pro3 == 2) && $east.pro1 > 1>>
<<say "dave">>Sorry, $alias, Nobody available at the moment.<</say>>
<<cont "easthub">>
<<else>>
<<if $tempvar2 != "friends">>
<<say "dave">>$alias, I figured you'd be back. You're looking very sharp today.<</say>>
<</if>>
<<set $tempvar2 = "">>
<<narrate>>He ushers you through the halls.<</narrate>>
<<say "dave">>These are the... friends... currently available.<</say>>
<div id="replace">
<<choices>>
<div class="flex">
<<if $east.pro3 == undefined>>
<div>
<div class="girlChoice">
<<link '<<center "east/pro3/pro3crop.jpg">>'>>
<<replace "#replace">>
<<narrate>>He whispers to the device on his wrist, then holds his ear as the response comes in.<</narrate>>
<<say "dave">>Ah, slight issue another client has just engaged with her. However... he said he's open to sharing if you're into that?<</say>>
<div id="replace2">
<<choices>>
<<link "Sure" eastsex>>
<<temp "pro3">>
<</link>><br>
<<link "Nah">>
<<replace "#replace2">>
<<say "mc">>Not for me, thank you.<</say>>
<<say "dave">>Understandable, it's not my thing either. Now... two women, maybe!<</say>>
<<narrate>>You laugh.<</narrate>>
<<say "mc">>That ever an option here?<</say>>
<<say "dave">>Nobody available for that at the moment I'm afraid. But you can always try later.<</say>>
<<button "Continue" eaststuff>>
<</button>>
<</replace>>
<</link>><br>
<<link "Skip" eastsex>>
<<temp "pro306">>
<</link>>
<</choices>>
</div>
<</replace>>
<</link>>
<<textbox "$pro3.name" $pro3.name>>
</div>
</div>
<<elseif $east.pro3 == 1 && !$girlsmet.includes('genvoy')>>
<div>
<div class="girlChoice">
<<link '<<center "east/pro3/pro3crop.jpg">>' eastsex>>
<<temp "pro3a">>
<</link>>
$pro3.name's Special Request
</div>
</div>
<</if>>
<<if $east.pro4 == undefined>>
<div>
<div class="girlChoice">
<<link '<<center "east/pro4/pro4crop.jpg">>' eastsex>>
<<temp "pro4">>
<</link>>
<<textbox "$pro4.name" $pro4.name>>
</div>
</div>
<</if>>
<<if $east.pro1 == 1>>
<div>
<div class="girlChoice">
<<link '<<center "east/pro1/pro1crop.jpg">>'>>
<<replace "#replace">>
<<say "dave">>She's oral only. The Blowjob Queen in fact. You won't want to miss it. Still interested?<</say>>
<<think "mc">>Isn't that $coffee.name's friend? I might be able to learn something.<</think>>
<div id="replace2">
<<choices>>
<<link "Sure" eastsex>>
<<temp "pro1">>
<</link>><br>
<<link "Nah">>
<<replace "#replace2">>
<<say "mc">>Nah, I want full penetration.<</say>>
<<say "dave">>Then unfortunately she's not the gal for you.<</say>>
<<say "mc">>If I pay extra?<</say>>
<<say "dave">>Nope. We don't force any of the women to do anything, or anyone, they don't want to.<</say>>
<<say "mc">>Understood.<</say>>
<<button "Continue" eaststuff>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<</replace>>
<</link>>
Blowjob Queen
</div>
</div>
<</if>>
</div>
<</choices>>
</div>
<</if>>
<style>
.macro-textbox {
text-align: center;
}
</style>
<<case "gsec">>
<<narrate>>As you approach the building, a man stops you.<</narrate>>
<<block "east/guard01.jpg">>
<<say "side" "Guard">>What business do you have here?<</say>>
<<say "mc">>I'm looking to protect my family.<</say>>
<<say "side" "Guard">>Invite only.<</say>>
<<say "mc">>I have one. It's under $alias.<</say>>
<<say "side" "Guard">>One moment.<</say>>
<</block>>
<<narrate>>He holds his hand to his ear and whispers something in his wrist.<</narrate>>
<<say "side" "Guard">>You're clear to enter. Second room on the right. A guard will escort you.<</say>>
<<narrate>>A moment later a guard does just that before pointing you to a room where $gsec.name greets you. He does not leave.<</narrate>>
<<block "east/gsec04.jpg">>
<<say "gsec">>Hello $alias. It's a pleasure to see you again. I've got the paperwork ready and I think you'll find our services will give you and your family great peace of mind.<</say>>
<<think "mc">>Fuck she looks good.<</think>>
<<say "mc">>That's exactly what I'm after. With the upcoming war, who knows what's going to happen?<</say>>
<<say "gsec">>Yes, quite. Now sir, we have several packages. May I ask your budget?<</say>>
<<narrate>>She holds her hand to the side where the guard can't see and raises 5 fingers, closes her grasp, then 5 fingers again.<</narrate>>
<</block>>
<<say "mc">>I was thinking up to 10,000 credits?<</say>>
<<say "gsec">>Oh, very good sir. Very good.<</say>>
<<narrate>>You notice the guard whispering into his wrist.<</narrate>>
<<say "gsec">>Our highest package costs only 2,000. This will have multiple guards posted at your residence every hour of the day and an escort for you and your family wherever you go. With your budget this should be no problem. In addition, please note protection during parties or social events will cost extra and if you'd like additional security for friends or family while hosting any such events, that will be charged per event.<</say>>
<<say "mc">>Of course. Money is no issue when it comes to protecting my family.<</say>>
<<say "gsec">>Very good sir. We just need to do some validation to ensure you have the relevant—<</say>>
<<say "side" "Guard">>That won't be necessary.<</say>>
<<think "mc">>Oh. Fuck.<</think>>
<<block "east/gsec05.jpg">>
<<say "gsec">>And why is that, Dave?<</say>>
<<say "dave">>I had my men do a background check while you were talking. He's clear. $am.name vouched for him and funds have already been transferred. Protection is to start next week.<</say>>
<<narrate>>She raises an eyebrow at you.<</narrate>>
<<say "gsec">>$am.name? Interesting. Very well. Welcome to <i>Aegis Protectorate</i>; your family is in good hands.<</say>>
<<think "gsec">>$am.name vouched for him? I didn't even think of the background checks. I just assumed he was a chancer that I could use to my advantage. But if he's really a wealthy douchebag... have I made a mistake here? No, even if he is from one of the rich families he'd have surely ratted me out if he was like the rest.<</think>>
<</block>>
<<say "dave">>I'll see him out.<</say>>
<<block "east/pro201.png">>
<<narrate>>As Dave takes you out, a very attractive young women passes you, giving you a sultry stare as she goes, and you can't help but check her out.<</narrate>>
<<say "dave">>Enjoying the view, sir?<</say>>
<<say "mc">>I... uhhh. Yes, actually. She's a very attractive woman, what I wouldn't give.<</say>>
<<say "dave">>Haha, yes sir. I understand.<</say>>
<<narrate>>He holds his hand to his ear.<</narrate>>
<<say "dave">>Sorry sir, I've got a situation that needs my urgent attention. Can you see yourself out?<</say>>
<</block>>
<<say "mc">>Of course.<</say>>
<<think "mc">>Now's my chance. Let's follow that woman, see if I can learn anything. There's probably cameras so I just play up for them.<</think>>
<<narrate>>You look around, step forward in one direction, then shake your head, stand and point in one direction hoping to seem lost to any onlookers, then head the same direction as the attractive woman from a moment ago.<</narrate>>
<<button "Continue" eastsex>>
<<temp "pro2">>
<</button>>
<</switch>><<scene>>
<<center "other/neholdings.jpg">>
<<choices "Where to?">>
<<link "Reception" east-neholdings>>
<</link>><br>
<<link "$eva.name's Office" eva>>
<</link>><br>
<<link "Exit" nestuff>>
<</link>>
<</choices>><<scene>>
<<if $east.lech == 1 || ($tempvar2 == "ne" && $rec.events.step == undefined && !$girlsmet.includes('rec'))>>
<<narrate>>You wander around the lobby and notice the reception desk is empty.<</narrate>>
<<if $tempvar2 == "ne">>
<<think "mc">>Maybe their day off? I guess I'll just head in...<</think>>
<<else>>
<<think "mc">>Hmm, might be a chance to take a look around.<</think>>
<</if>>
<<narrate>>You walk through the reception and into the main offices<<if $tempvar2 != "ne">>, trying to look nonchalant as you walk through the busy office<</if>>. Nobody pays you any mind as you head randomly toward one of the private offices.<</narrate>>
<<think "mc">>Wow, nobody is paying me any attention at all. I wonder what else I could get away with.<</think>>
<<narrate>>You open the door to two people in the room.<</narrate>>
<<think "mc">>It doesn't look like they even noticed the door open.<</think>>
<<narrate>>You duck behind a filing cabinet, your heart racing.<</narrate>>
<<think "mc">>A quick glance to make sure it's safe, then I'll get outta here.<</think>>
<<left2 "east/rec02.jpg">>
<<say "side" "Steve">>And your work lately has been unacceptable. I think you need to be punished.<</say>>
<<say "rec">>But, sir. I've been working as hard as I can!<</say>>
<<say "side" "Steve">>Hmm, you are usually so much more reliable. It'd be a shame to fire you.<</say>>
<<say "rec">>Fire me, sir? Please, no. I'll do anything!<</say>>
<<narrate>>The man smirks.<</narrate>>
<<say "side" "Steve">>Anything?<</say>>
<<think "mc">>Oh, I can see where this is going. I should be able to get out easily, but I could also intervene and save the poor girl or just... watch.<</think>>
<div id="replace">
<<choices>>
<<link "Watch" eastsex>>
<<temp "boss">>
<<set $east.lech = "watch">>
<</link>><br>
<<link "Intervene" eastsex>>
<<temp "intervene">>
<</link>><br>
<<link "Leave">>
<<replace "#replace">>
<<narrate>>You sneak back out of the room, <<if $tempvar2 == "ne">>and leave.<<else>>and again nonchalantly walk through the main office. You decide to explore a few more rooms, but find nothing of value so leave.<</if>><</narrate>>
<<say "sideg" "Worker A">>Who was that handsome guy just walking around the place checking all the rooms?<</say>>
<<say "side" "Worker B">>Probably just some gormless idiot sent by upper management to inspect the place.<</say>>
<<say "sideg" "Worker A">>Wonder if he's single?<</say>>
<<say "side" "Worker B">>Girl. He's not gonna be interested in you. You barely make quota.<</say>>
<<say "sideg" "Worker A">>Ugh, whatever!<</say>>
<<if $tempvar2 == "ne">>
<<cont "nestuff" "" 1>>
<<else>>
<<button "Continue" easthub>>
<<set $east.lech = "left">>
<<time 3>>
<</button>>
<</if>>
<</replace>>
<</link>>
<</choices>>
</div>
<<elseif $east.lech == undefined>>
<<narrate>>You wander into the lobby when a particularly attractive woman calls out to you.<</narrate>>
<<block "/east/rec01.jpg">>
<<say "rec">>Sir. May I help you? We're not open to the public.<</say>>
<<say "mc">>I was just looking around. I wanted to know more about the place.<</say>>
<<say "rec">>Sorry, sir. Unless you have an appointment, I must ask you to leave.<</say>>
<<say "mc">>May I book an appointment?<</say>>
<<say "rec">>That's not possible at the moment. Please leave, sir.<</say>>
<</block>>
<<if $east.hiring == 1>>
<<say "mc">>But I heard you were hiring.<</say>>
<<narrate>>She gives you a quick up-and-down, then gets close to you.<</narrate>>
<<say "rec" "" "(Whispering)" "whisper">>Sir, between you and me, my boss has very... specific needs in an employee. You seem like a decent man, but therein lies the problem, you're a man. You'd only be wasting your time applying here.<</say>>
<<say "side" "Steve">>Everything okay over there?<</say>>
<<say "rec">>Yes sir. Was just explaining the job vacancy to this gentleman, but he is no longer interested.<</say>>
<<say "side" "Steve">>Very well. Be e dear and fetch me a coffee would you?<</say>>
<<say "rec">>My apologies, I must get back to work.<</say>>
<<set $east.hiring = undefined>>
<</if>>
<<narrate>>You leave.<</narrate>>
<<think "mc">>Hmm, I wonder how I can get an appointment or otherwise distract the secretary.<</think>>
<<button "Continue" easthub>>
<</button>>
<<elseif $rec.events.step == 1 || ($girlsmet.includes('rec') && $tempvar2 == "ne" && checkUnlocks('movie', 'home', 'rec') == false)>>
<<left2 "/east/rec01.jpg">>
<<event "rec" "step" 1>>
<<say "rec">>Master, is there some way I can please you?<</say>>
<<say "mc">>I daresay there is. But I'm not here to play with you today, kitten.<</say>>
<<say "rec">>Of course, yes, master.<</say>>
<<think "mc">>If I want to have any fun with her, I should probably make that visit to her home one evening.<</think>>
<<cont "nestuff" "" 1>>
<<elseif $rec.events.step == 2 || (checkUnlocks('movie', 'home', 'rec') == true && checkUnlocks('movie', 'charity', 'rec') == false && $tempvar2 == "ne")>>
<<left2 "/east/rec01.jpg">>
<<event "rec" "step" 2>>
<<say "rec">>Master, is there some way I can please you?<</say>>
<<say "mc">>Oh, very much so, kitten.<</say>>
<<say "rec">>If I may be so bold, master... Club Revolución offer private rooms... with an audience after 20:00.<</say>>
<<think "mc">>That... could be fun.<</think>>
<<cont "nestuff">>
<<elseif $rec.events.step == 3 || (checkUnlocks('movie', 'charity', 'rec') == true && $tempvar2 == "ne")>>
<<event "rec" "step" 3>>
<<narrate>>You look around for $rec.name, but are unable to find her.<</narrate>>
<<think "mc">>Must be her day off, or she's on a break, or something.<</think>>
<<cont "nestuff">>
<<else>>
<<narrate>>You spend some time speaking with $rec.name and rifling through the offices, but find nothing.<</narrate>>
<<think "mc">>I think I've got everything I can from here.<</think>>
<<button "Continue" easthub>>
<<time 3>>
<</button>>
<</if>><<if $tempvar == "plans">>
<<if $east.con == 1>>
<<narrate>>You grab yourself a snack and find a table in the suite to lay out the papers you took from <i>Bob'll Fix It</i><</narrate>>
<<think "mc">>Right, just what the hell am I looking at?<</think>>
<<narrate>>You study the papers before you. There's very little description in them, but there are plenty of diagrams. One of them has what appears to be an icon representing a portal at its center with numerous facilities and buildings surrounding it.<</narrate>>
<<think "mc">>Presumably that represents my Gateway or $voice.name's. But the depicted facilities don't match that of the current town.<</think>>
<<say "va">>What are you looking at there, $name?<</say>>
<<say "mc">>$va.name, I didn't expect to see you here.<</say>>
<<think "mc">>What the hell is she wearing? Wow!<</think>>
<<block "va/bob01.jpg">>
<<say "va">>In my own property?<</say>>
<<say "mc">>Point taken. I've found some plans entitled Gateway; I'm just trying to understand them. There's not a lot of context with it.<</say>>
<<narrate>>She glances over, and immediately looks back to you.<</narrate>>
<<say "va">>Where did you get these?!<</say>>
<<say "mc">>Bob'll Fix It.<</say>>
<<say "va">>And Carlos just handed them over to you? He and I shall be having words.<</say>>
<</block>>
<<say "mc">>Uh... no. I uh... liberated them.<</say>>
<<narrate>>She laughs and takes a seat across from you.<</narrate>>
<<elseif $east.con == 2>>
<<narrate>>You enter $va.name's penthouse, looking around for her.<</narrate>>
<<say "mc">>$va.name, are you here?<</say>>
<<say "va">>$name? Can I help you with something?<</say>>
<<narrate>>You follow her voice.<</narrate>>
<<block "va/bob01.jpg">>
<<think "mc">>The hell is she wearing?!<</think>>
<<say "mc">>What are you planning to do to my hub?!<</say>>
<<say "va">>What do you mean?<</say>>
<<say "mc">>I've seen the plans at <i>Bob'll Fix It</i>!<</say>>
<<say "va">>Ah. I see.<</say>>
<<narrate>>You take a seat at the table and stare at her awaiting a response. She simply sighs.<</narrate>>
<</block>>
<</if>>
<<think "va">>Hmmm, do I tell him the truth, or do I keep this one to myself? Revealing the plans may give him an extra incentive to succeed.<</think>>
<<say "va">>Those are the plans to turn your hub into a new city.<</say>>
<<say "mc">>What?! Why didn't you mention this earlier?!<</say>>
<<say "va">>For me, it's a contingency plan. If things with you don't work out, our people will need access to the Gateway.<</say>>
<<say "mc">>But my Gateway would be useless if you do to me what they did to $voice.name!<</say>>
<<say "va">>But if we keep you captive, your Gateway will remain active. The plan in this war is not to force you back into your Gateway, weak and powerless, like they did with $voice.name. It's to detain you so that we can make use of your gateway.<</say>>
<<say "mc">>Holy shit. Why... why wouldn't you tell me this?<</say>>
<<say "va">>Because I do not know how much I should trust you. <</say>>
<<say "mc">>Wait. Wasn't $am.name authorized to kill me if need be?<</say>>
<<say "va">>Indeed. If she felt you were too dangerous even for capture, we'd have ended this whole thing before it started. You must know to me this city comes first.<</say>>
<<think "mc">>So, she clearly feels I can be captured or manipulated.<</think>>
<<say "mc">>So why are you speaking so freely now?<</say>>
<<say "va">>You've discovered the plans now, and perhaps it'll give you an extra push to ensure we resolve things amicably. I would also prefer to remain here, in this city, as I'm sure many of our people do, but with access to resources through the gateway.<</say>>
<<narrate>>You stare at her, somewhat in disbelief.<</narrate>>
<<say "mc">>How can I trust you? What else are you hiding from me?<</say>>
<<narrate>>She sits across from you.<</narrate>>
<<say "va">>Truthfully, much more. We are allies of circumstance. Our goals align, but I do not know to what level I can put my faith in you.<</say>>
<<say "mc">>I'm starting to wonder if I can put any in you at all.<</say>>
<<narrate>>She cackles.<</narrate>>
<<say "va">>Good, good, you should never blindly trust anyone... but perhaps I can show you that right now, with our goals aligned that it's in both our interests to work together.<</say>>
<<say "mc">>How would you—<</say>>
<<narrate>>You feel something pressing at your crotch, you look down through the glass table to see her feet gently rubbing against you.<</narrate>>
<<vid "va/bob01.mp4">>
<<say "va">>A mutual exchange. A sharing of our bodies as a symbol of our trust.<</say>>
<<think "va">>And a way to distract you.<</think>>
<<narrate>>You look down at your crotch, your dick already starting to grow with anticipation.<</narrate>>
<<think "mc">>This woman cannot be trusted... but that doesn't mean I can't have a little fun with her.<</think>>
<div id="replace">
<<choices>>
<<link "Have some fun" eastsex>>
<<temp "vabob">>
<</link>><br>
<<link "Leave">>
<<replace "#replace">>
<<say "mc">>I know what you're doing.<</say>>
<<narrate>>She licks her lips.<</narrate>>
<<say "va">>I should hope you do... I am very skilled with my feet.<</say>>
<<say "mc">>No, that's not what I meant. I won't be manipulated with sex.<</say>>
<<narrate>>You stand up dramatically and leave.<</narrate>>
<<say "va">>Shame. We would have had a great time.<</say>>
<<think "mc">>These plans don't really give me anything I can use at the cabinet meeting, but I'll show them $krissy.name when we return to the hub just in case there's anything useful in them.<</think>>
<<set $east.con = 3>>
<<cont "easthub" "" 3>>
<</replace>>
<</link>>
<</choices>>
</div>
<<elseif $tempvar == "ne">>
<<narrate>>You enter the building expecting to be greeted by a clerk, receptionist or some other type of administrator. However, the reception area seems empty.<</narrate>>
<<think "mc">>There's nobody here?<</think>>
<<narrate>>You peer around the corner and notice man deep in concentration.<</narrate>>
<<center "/east/bob01.jpg">>
<<say "mc">>Hello.<</say>>
<<narrate>>There's no reply. You inch closer, cautiously.<</narrate>>
<<say "mc">>Hello?<</say>>
<<say "side" "???">>Hmmm, yes?<</say>>
<<say "mc">>I was just wondering if I could get some info about the kind of work you do?<</say>>
<<say "side" "???">>Hmm, yes. Of course. Mostly maintenance work, hence the name. Leaky pipe or dodgy brickwork? We'll fix it. But we also handle renovations and new constructions.<</say>>
<<say "mc">>Sounds great.<</say>>
<<say "side" "???">>Hmm, a fan of construction are you? Here, come take a look at my masterpiece. Still working on it. My name's Carlos, by the way.<</say>>
<<say "mc">>I'd love to. Nice to meet your Carlos, my name is $name.<</say>>
<<narrate>>Carlos proceeds to show you his scrawling. It looks like an entire town. He goes on in minute details about the architecture of each building, the reason for its position and where appropriate its function to the greater town.<</narrate>>
<<say "mc">>Wow, that's all very impressive. If I may ask, what's that big black blob in the center?<</say>>
<<say "side" "Carlos">>Hmm, yes, that's the Gateway.<</say>>
<<think "mc">>Are they planning a new town around my gateway? What the hell?! I thought we had made peace!<</think>>
<<narrate>>He sighs.<</narrate>>
<<say "side" "Carlos">>Unfortunately, the plans will never see the light of day. I'm perfecting them for no reason! The invasion is canceled, and we're playing nice with the new guy.<</say>>
<<say "mc">>You seem upset about that.<</say>>
<<say "side" "Carlos">>I'm happy the invasion is over and that we're not going to war with $name... ha, he has the same name as you! But, I was looking forward to putting my expertise to work for something on this scale.<</say>>
<<think "mc">>I wonder if he'd be willing to help us out back at the hub, it's not the grand project he was after, but more hands certainly couldn't hurt. I'd best talk to $eva.name about it first, though.<</think>>
<<set $bob = 1>>
<<cont "nestuff" "" 1>>
<<elseif $tempvar == "stage">>
<<think mc>>Hmm, maybe Carlos and his company could help us with the festival prep?<</think>>
<<say side Carlos>>Yes sir, how may I help you? Leaky roof, broken stool, whatever you need.<</say>>
<<narrate>>His voice is devoid of emotion, he's resting his head on his hand and twirling a pencil around with his other hand. He's clearly bored and hasn't even looked at you.<</narrate>>
<<say mc>>I was actually hoping for help on something a little different...<</say>>
<<narrate>>He stops twirling the pencil, but still doesn't show much enthusiasm.<</narrate>>
<<say side Carlos>>I see. What are you looking for?<</say>>
<<say mc>>A stage for a music festival.<</say>>
<<narrate>>He turns to look at you.<</narrate>>
<<say side Carlos>>Hmm, a music festival... that's not something I've done before. Do you have any plans drawn up?<</say>>
<<say mc>>No, I was hoping you'd be able to deal with that too.<</say>>
<<narrate>>He grins.<</narrate>>
<<say side Carlos>>Okay... okay... this is definitely something different. What's your budget, how many people are coming, what do you...?<</say>>
<<narrate>>You fail to keep up as he reels off the questions.<</narrate>>
<<think mc>>You know... I have no idea...<</think>>
<<say mc>>You know I think I'm a bit out of my depth, would you be willing to come to $hubname to discuss the details with one of my companions?<</say>>
<<say side Carlos>>Ah, a music festival at $hubname. I did think it was odd to do one in New Eden. And is the patron okay with that?<</say>>
<<think mc>>Wait, has he really not realized who I am? Maybe I've just got used to people recognizing me...<</think>>
<<say mc>>Yes, I'm absolutely fine with it.<</say>>
<<say side Carlos>>Great! I'll visit this evening to discuss if that suits you?<</say>>
<<think mc>>Hmm, still no reaction. Eh, doesn't matter.<</think>>
<<narrate>>You give him the relevant details and head out.<</narrate>>
<<set $bob = 3>>
<<cont "nestuff" "" 1>>
<<else>>
<<narrate>>You enter the building expecting to be greeted by a clerk, receptionist or some other type of administrator. However, the reception area seems empty.<</narrate>>
<<think "mc">>Let's have a look around while I've got chance, see if there's anything of value here.<</think>>
<<narrate>>You start looking around the desk trying to find anything of value when you suddenly spy somebody moving from the corner of your eye. You quickly return to the correct side of the desk but nobody materializes.<</narrate>>
<<think "mc">>Was I imaging things?<</think>>
<<narrate>>Slowly you peer around the corner to see man working on some papers.<</narrate>>
<<center "/east/bob01.jpg">>
<<think "mc">>He looks engrossed in his work. Should I talk to him, or just look around for myself?<</think>>
<div id="replace">
<<choices>>
<<link "Look Around">>
<<replace "#replace">>
<<narrate>>You decide to take the opportunity to look through the papers on the reception desk.<</narrate>>
<<think "mc">>I really hope nobody else turns up!<</think>>
<<narrate>>Every now and again you glance at the man around the corner, but other than one trip away from his desk, presumably to the toilet, that nearly made you panic he didn't notice you.<</narrate>>
<<narrate>>You discovered some plans entitled <i>Gateway</i> in the papers and decide to take them with you.<</narrate>>
<<think "mc">>I need to find somewhere quiet, and private, that I can take a look at these. I can't imagine I'll get away with staying here like this forever. Maybe $va.name's penthouse?<</think>>
<<button "Continue" easthub>>
<<set $intel.city.pushUnique('Discovered papers entitled <i>Gateway</i> at <i>Bob\'ll Fix It.</i>.')>>
<<set $east.con = 1>>
<<time 3>>
<</button>>
<</replace>>
<</link>><br>
<<link "Talk to Him">>
<<replace "#replace">>
<<say "mc">>Excuse me?<</say>>
<<say "side" "???">>Hmmm, yes?<</say>>
<<say "mc">>I was just wondering if I could get some info about the kind of work you do?<</say>>
<<say "side" "???">>Hmm, yes. Of course. Mostly maintenance work, hence the name. Leaky pipe or dodgy brickwork? We'll fix it. But we also handle renovations and new constructions.<</say>>
<<say "mc">>Sounds great.<</say>>
<<say "side" "???">>Hmm, a fan of construction are you? Here, come take a look at my masterpiece. Still working on it. My name's Carlos, by the way.<</say>>
<<if $alias == undefined>>
<<think "mc">>I should probably use an alias while I'm here.<</think>>
<</if>>
<<say "mc">>I'd love to. Nice to meet your Carlos, my name is <<if $alias == undefined>><<textbox "$alias" Frank>><<else>>$alias<</if>>.<</say>>
<<narrate>>Carlos proceeds to show you his scrawling. It looks like an entire town. He goes on in minute details about the architecture of each building, the reason for its position and where appropriate its function to the greater town.<</narrate>>
<<say "mc">>Wow, that's all very impressive. If I may ask, what's that big black blob in the center?<</say>>
<<say "side" "Carlos">>Hmm, yes, that's the Gateway.<</say>>
<<think "mc">>Are they planning a new town around my gateway?<</think>>
<<say "mc">>Ah, I see. And what of the old town?<</say>>
<<say "side" "Carlos">>Redundant. There's a new Gateway and a new patron. Haven't you been paying attention? That's why the cabinet are sending our poor people off to war, to destroy the evil patron before they destroy us!<</say>>
<<say "mc">>Ah, yeah, of course. So you're in charge?<</say>>
<<say "side" "Carlos">>Well I own this company, but ultimately the cabinet are still in charge. It's such an exciting project, an entire town! I wish I was half the city planner $krissy.name was. She designed New Eden, you know? But she had no interest in the minor details either. I want the buildings to pop, to speak to the visitors and the citizens. I want to historians in thousands of years to be talking about our unique and era-defining designs, you know?<</say>>
<<say "mc">>Sounds like you've a big ambition there, Carlos. I look forward to seeing you what you come up with.<</say>>
<<say "side" "Carlos">>Thanks, $alias. And thanks for letting me ramble. Most people just don't understand my passion!<</say>>
<<think "mc">>I need to ask $va.name about this!<</think>>
<<button "Continue" easthub>>
<<set $bob = 1>>
<<set $intel.city.pushUnique('<i>Bob\'ll Fix It.</i> have been contracted to build a new town around your Gateway.')>>
<<set $east.con = 2>>
<<time 3>>
<</button>>
<</replace>>
<</link>><br>
<</choices>>
</div>
<</if>><<switch $tempvar>>
<<case "cabmeet">>
<<set $east.enforcer = 1>>
<<meet "eva">>
<<say "mc">>Okay, this is it. We'll find out if our actions were successful or not.<</say>>
<<say "krissy">>$va.name has arranged a safe passage for us to get close. We can listen into the meeting, and enter when and if we feel appropriate.<</say>>
<<narrate>>With a steely determination, everyone nods.<</narrate>>
<<say "mc">>Alright, let's head up there and listen in.<</say>>
<<cont "cabinet" "cabmeet02">>
<<case "cabmeet02">>
<<say "gerald">>Everything ready for tomorrow?<</say>>
<<say "sarge">>Yes, sir. The troops are ready for your order.<</say>>
<<if $east.genvoy != undefined>>
<<say "gerald">>Are you satisfied too, $genvoy.name?<</say>>
<<say "genvoy">>Yes, sir. We'll save this city; I'm sure of it.<</say>>
<<else>>
<<say "genvoy">>And the newer elite troops are combat-ready?<</say>>
<<say "gerald">>Are they as strong as you, <<textbox "$genvoy.name" Patricia>>?<</say>>
<<say "genvoy">>They are certainly powerful, but $am.name and I are stronger still.<</say>>
<<narrate>>He simply nods.<</narrate>>
<</if>>
<<say "gerald">>Then is there anything left to discuss?<</say>>
/*met howard*/
<<meet "howard">>
<<if $east.howardmeet == 2>>
<<narrate>>$howard.name stands up.<</narrate>>
<<say "howard">>I—I have something to say.<</say>>
<<narrate>>$va.name regards him with a wry smile.<</narrate>>
<<say "gerald">>Yes, yes. We'll make sure the families of the lost ones are compensated.<</say>>
<<say "howard">>No, not that. I think we should reconsider this war.<</say>>
<<say "gerald">>It's a bit late for that isn't it? We voted on this long ago. I know you were never particularly fond of the idea. People will die, that is an inescapable truth, but our people won't survive another patron.<</say>>
<<say "howard">>He's not another $voice.name!<</say>>
<<narrate>>$gerald.name and $sarge.name look at him in shock.<</narrate>>
<<say "gerald">>You dare speak her name here?! And how can you be so sure he's not like the others?<</say>>
/* met eva */
<<meet "eva">>
<<if $east.evameet == 2>>
<<set $mc.events.eastresolved = "convinced">>
<<say "eva">>Because we've met him.<</say>>
<<say "gerald">>You too, $eva.name? You went there to meet him?! What is this madness, do you not recall everything she did to our people?!<</say>>
<<say "eva">>I do. And I understand the caution, your reasons for this war. But not once did any of us stop to consider speaking with him.<</say>>
<<say "gerald">>And you'd risk that? Are you insane, he is no more trustworthy than his predecessor!<</say>>
<<say "eva">>He's been here less than a week and done—<</say>>
<<say "gerald">>He's in the city?! $sarge.name, alert the troops, comb the streets. Find him!<</say>>
<<say "sarge">>Yes sir.<</say>>
<<say "va">>Stand down, $sarge.name.<</say>>
<<narrate>>$sarge.name pauses for a moment, assessing the situation. Then nods.<</narrate>>
<<say "gerald">>What the fuck is going on? You'd betray me $va.name? YOU?! You only sit on this council because of me!<</say>>
<<say "va">>The war is over before it started, $gerald.name. We need our citizens alive. $name does not wish for any bloodshed.<</say>>
<<cont "cabinet" "cabmeet-allin">>
/* no eva */
<<else>>
<<say "eva">>What brought this on, $howard.name?<</say>>
<<say "howard">>He's trying to help our people!<</say>>
<<say "gerald">>What?!<</say>>
<<narrate>>Listening in, you decide now may be the best time to enter.<</narrate>>
<<think "mc">>I've just got to convince $eva.name somehow!<</think>>
<<narrate>>You open the doors and enter, $gerald.name and $eva.name regarding you with annoyance.<</narrate>>
<<say "gerald">><<if $east.genvoy != undefined>>$alias?! <</if>>This is a private meeting. Leave. How did you even get here?<</say>>
<<say "howard">>That's him, $gerald.name. That's the patron. Let's just hear him out!<</say>>
<<say "krissy">>Please, everyone.<</say>>
<<say "eva">>$krissy.name?!<</say>>
<<say "gerald">>Is this a coup? $sarge.name, seize them!<</say>>
<<say "howard">>Please. Let's just hear him out. We all trust $krissy.name, right?<</say>>
<<say "eva">>Stand down, $sarge.name. Let's at least hear him out. Based on what you've told us, $gerald.name, if he wanted us dead, we'd already be corpses. Even if for $krissy.name, we can at least listen to his words... and we'll have the guards seize him if he's a threat. Stay alert, $sarge.name.<</say>>
<<narrate>>$gerald.name's face goes red and he grits his teeth.<</narrate>>
<<cont "cabinet" "convinceeva">>
<</if>>
<<elseif $east.evameet == 2>>
<<say "eva">>This is fruitless. I believe we need to revisit why we are doing this. We've not even tried to open any diplomatic channels!<</say>>
<<say "gerald">>And have the patron aware of the situation? We need to take him by surprise; there will be fewer casualties.<</say>>
<<say "eva">>He already knows, Gerald. Yet we still live.<</say>>
<<narrate>>$va.name grins but says nothing.<</narrate>>
<<say "gerald">>Does he now? I am curious how you could know that. Regardless, all the more reason to strike now before they can fully prepare.<</say>>
<<say "eva">>I suggest we reconsider.<</say>>
<<say "gerald">>It's too late; we already voted on it. Please, $eva.name, we need to focus on the future of our people.<</say>>
<<say "eva">>Exactly. War means many of our people won't have a future. He's not like the previous patron.<</say>>
<<say "howard">>What do you mean, $eva.name?<</say>>
<<say "eva">>Perhaps it's best he speaks for himself. $name?<</say>>
<<narrate>>At her signal, you enter the room, $howard.name and $gerald.name looking at you with disbelief.<</narrate>>
<<say "gerald">><<if $east.genvoy != undefined>>$alias?! <</if>>What is the meaning of this?!<</say>>
<<say "eva">>He's the patron. Let's hear him out.<</say>>
<<say "howard">>The patron? Are... are we safe?<</say>>
<<say "mc">>I will not harm you, $howard.name. I wish to broker peace.<</say>>
<<say "gerald">>Is this a coup? $sarge.name, seize them!<</say>>
<<say "krissy">>Please, everyone.<</say>>
<<say "howard">>$krissy.name?!<</say>>
<<say "eva">>Stand down, $sarge.name. Let's at least hear him out. Based on what $gerald.name's told us, if he wanted us dead we'd already be corpses. Even if just for $krissy.name's sake we can at least listen.<</say>>
<<say "howard">>But what if he tries to attack?<</say>>
<<say "eva">>Then we'll have the guards seize him.<</say>>
<<narrate>>$gerald.name's face goes red and he grits his teeth.<</narrate>>
<<cont "cabinet" "convincehoward">>
<<elseif $east.thomas == 3>>
<<taskfail "cabmeet">>
<<narrate>>You're preparing yourself to go in when Thomas approaches from the stairs.<</narrate>>
<<say "side" "Thomas">>I'm here as I agreed.<</say>>
<<narrate>>$krissy.name grins.<</narrate>>
<<say "krissy">>Think you can get them to listen to us?<</say>>
<<say "side" "Thomas">>I can try, but do bear in mind, I have no clue if $va.name was the only one who wanted me dead.<</say>>
<<narrate>>He pushes through the door, the cabinet all immediately facing him.<</narrate>>
<div class="flex">
<<say "eva" "" "" "" "width:265px; display: inline-block; margin-left: 20px;">>Thomas?!<</say>>
<<say "va" "" "" "" "width:265px; display: inline-block; margin-left: 20px;">>Thomas?!<</say>>
<<say "howard" "" "" "" "width:265px; display: inline-block; margin-left: 20px;">>Thomas?!<</say>>
</div>
<<say "eva">>I thought you were dead!<</say>>
<<say "howard">>What happened to your leg?!<</say>>
<<say "side" "Thomas">>Someone tried to have me killed...<</say>>
<<narrate>>He glances at $va.name.<</narrate>>
<<say "side" "Thomas">>...but let's discuss that later. Right now I need you to listen to someone. The war can be avoided. I hope $eva.name, $howard.name, the two of you know me well enough to know that I would not ask this if I did not trust him.<</say>>
<<say "gerald">>What the hell is going on?<</say>>
<<say "howard">>Who, Thomas?<</say>>
<<narrate>>You step forward with $krissy.name.<</narrate>>
<<say "gerald">>$krissy.name?!<<if $east.genvoy != undefined>> $alias?!<</if>><</say>>
<<say "howard">>Any other ghosts back there?<</say>>
<<say "eva">>And this is the man, Thomas? <<if $east.genvoy != undefined>> $gerald.name seems to know him too. <</if>>I will heed your advice and listen.<</say>>
<<say "gerald">>We don't have time for this!<</say>>
<<say "howard">>You were always a trustworthy colleague, Thomas, even when we didn't agree. I will listen.<</say>>
<<narrate>>You see $va.name grimace a little before smirking.<</narrate>>
<<say "va">>What harm could there be, $gerald.name? Let the man speak, clearly it's important enough for Thomas to choose now for his resurrection.<</say>>
<<say "krissy">>Please everyone, listen to $name. People's lives can be saved!<</say>>
<<say "gerald">>$name?! The patron?! Is this a coup? $sarge.name, seize them!<</say>>
<<say "eva">>Stand down, $sarge.name. Let's at least hear him out. Based on what $gerald.name's told us, if he wanted us dead we'd already be corpses. Even if just for Thomas' sake we can at least listen.<</say>>
<<say "howard">>But what if he tries to attack?<</say>>
<<say "eva">>Then we'll have the guards seize him.<</say>>
<<narrate>>$gerald.name's face goes red and he grits his teeth.<</narrate>>
<<set $tempvar2 = "thomas">>
<<cont "cabinet" "convinceboth">>
<<else>>
<<taskfail "cabmeet">>
<<say "howard">>I don't think so. While it pains me to agree to this invasion, I know it's the right thing to do. More will perish if we let the patron go unchecked.<</say>>
<<say "eva">>I only hope we can subdue him without completely taking the gateway offline. Our people need those resources.<</say>>
<<say "gerald">>I have it handled, don't worry.<</say>>
<<think "mc">>I guess it's now or never!<</think>>
<<narrate>>You burst through the doors.<</narrate>>
<<say "gerald">><<if $east.genvoy != undefined>>$alias?! <</if>>This is a private meeting. Leave. How did you even get here?<</say>>
<<narrate>>$va.name looks at you with disappointment.<</narrate>>
<<say "howard">>$krissy.name?!<</say>>
<<say "mc">>I am $name. I am here to broker peace.<</say>>
<<say "krissy">>Please, everyone. Listen to him.<</say>>
<<say "gerald">>No. We will not be taken in by the sweet words of a patron. Seize him!<</say>>
<<say "mc">>Please. I want no harm!<</say>>
<<narrate>>$howard.name cowers behind his chair.<</narrate>>
<<say "eva">>Hurry! Take him, this may be our best shot!<</say>>
<<say "mc">>Stop! Please!<</say>>
<<narrate>>$sarge.name, $am.name and $genvoy.name cautiously circle you.<</narrate>>
<<if $mc.events.eaststay == undefined>>
<<say "mc">>Please, I have been staying at $va.name's preparing to meet you all. I just want peace.<</say>>
<<narrate>>You notice $va.name's scowl.<</narrate>>
<<say "va">>Stand down. Let him speak, you can throw him in a cell if you don't like what he has to say.<</say>>
<<say "gerald">>You betray this cabinet, $va.name?! You'll do no such thing, all of you, attack!<</say>>
<<say "eva">>Stop! Everyone. Just stop.<</say>>
<<narrate>>She stands up, all eyes on her.<</narrate>>
<<say "eva">>Who knows what game $va.name is playing here, but he has come without his champions. I say we at least give him the opportunity to speak, as $va.name states, we can always lock him up after. And I certainly trust $krissy.name, even if she has been gone for two centuries!<</say>>
<<say "howard">>Just... just stay back. $sarge.name please keep your eye on him and your hand on your blade! B-But I'll listen.<</say>>
<<say "gerald">>Have you all gone mad?!<</say>>
<<say "mc">>Please $gerald.name, I just want peace.<</say>>
<<say "gerald">>And the previous patron just wanted us all to live happy lives. Look how that turned out.<</say>>
<<say "eva">>Just stay on that side of the room. We'll hear you out, but know that you will be detained should we feel endangered. We'll decide what comes next after we hear what you have to say.<</say>>
<<narrate>>$gerald.name's face goes red and he grits his teeth.<</narrate>>
<<cont "cabinet" "convinceboth">>
<<else>>
<<say "va">>Do not fear him. His inexperience makes him weak.<</say>>
<<say "mc">>You too, $va.name?!<</say>>
<<narrate>>$britt.name stands between you and your assailants.<</narrate>>
<<say "britt">>You'll 'av t'get through me first!<</say>>
<<say "krissy">>This is your realm, $krissy.calls! Do something!<</say>>
<<think "mc">>What the hell do I do?! They aren't listening! Wait... the device $kp.name gave me... I can't let $britt.name get hurt!<</think>>
<<temp "enforcer">>
<button class="bigred" data-passage="cabinet">Call Enforcer</button>
<</if>>
<</if>>
<<case "convinceboth">>
<<set $tempvar3 = 0>>
<<say "eva">>So what are you hoping to achieve here, $name?<</say>>
<<say "mc">>Peace. I want to stop the war and handle this diplomatically.<</say>>
<<say "gerald">>Preposterous! $voice.name lulled us in with niceties too, and look how they went.<</say>>
<<say "eva">>He has a point. We've been betrayed by someone in your position before. What makes you different?<</say>>
<<narrate>>$krissy.name answers before you can.<</narrate>>
<<say "krissy">>I raised this boy... this man. He's not some maniac!<</say>>
<<say "eva">>Raised him?<</say>>
<<think "mc">>$va.name is being awfully quiet, why isn't she speaking in my favor?<</think>>
<<say "krissy">>He's my $krissy.you.<</say>>
<<say "mc">>Thank you, $krissy.refer. Everyone, I've been in your city for almost a week. I have no quarrel with your people. I can not say I know the truth of what happened between you and $voice.name, but I do not wish to see my companions thrown into a needless war.<</say>>
<<narrate>>$gerald.name is tapping his foot furiously, but saying nothing.<</narrate>>
<<think "gerald">>There's no way he can convince $va.name too, even if he does convince $eva.name and $howard.name. I mustn't strike him here, not yet. I may need the cabinet in the future.<</think>>
<<say "gerald">>You've been trying to sabotage our military and beguile the people for that week have you?<</say>>
<<say "mc">>Not at all, I didn't want to alarm your people of course, so didn't reveal my identity, but I have been actively trying to find ways to meet with you.<</say>>
<<if $tempvar2 == "thomas">>
<<say "howard">>And it's only taken you a week to find Thomas?<</say>>
<<narrate>>You nod.<</narrate>>
<<else>>
<<narrate>>You pause for a moment.<</narrate>>
<</if>>
<<say "mc">>I already knew your population was dwindling. Male travelers are infertile you see, but the things I found in this city shocked me.<</say>>
<<say "gerald">>Nonsense. Are you really listening to this boy? Some families came here with their children! The infertility is <i>her</i> curse on us.<</say>>
<<say "mc">>Their fathers weren't travelers in that case.<</say>>
<<say "eva">>And you have proof of that?<</say>>
<<say "mc">>I do not, but it's what the council told me.<</say>>
<<say "howard">>The council of patrons?<</say>>
<<say "krissy">>Ehh... the council overseeing the patrons.<</say>>
<<say "howard">>Same difference.<</say>>
<<say "gerald">>The damn council? Where were they when the previous patron was tormenting us?<</say>>
<<say "krissy">>I honestly couldn't say. I was a council candidate, but never privy to their inner workings. They don't make a habit of explaining themselves..<</say>>
<<narrate>>$gerald.name simply huffs.<</narrate>>
<<say "eva">>You were a candidate?!<</say>>
<<say "krissy">>Now is hardly the time for that $eva.name.<</say>>
<<say "howard">>So, why should we trust you, $name?<</say>>
<<think "mc">>I need to be careful how I handle things here. I need to either discredit $gerald.name or prove to $eva.name I am trustworthy without also alienating $va.name. I need three of them on side to vote in my favor before I tackle any other issues.<</think>>
<div id="extra">
</div>
<<choices>>
<<if $east.machines != undefined>>
<div id="machines">
<<link "Machine Degradation">>
<<append "#extra">>
<<say "mc">>Your machines are starting to fail and you do not have the resources to repair them.<</say>>
<<narrate>>$eva.name motions you to continue.<</narrate>>
<<set $tempvar3 += 0.25>>
<<if $east.machines > 2>>
<<say "mc">>More worryingly, your main receptor probably only has ten years left in it.<</say>>
<<think "mc">>Still no idea what a receptor is!<</think>>
<<say "eva">>How did you get access to... you know what never mind.<</say>>
<<set $tempvar3 += 0.25>>
<</if>>
<<say "mc">>You need the gateway; I can help you.<</say>>
<<say "howard">>So you'll hold us hostage?<</say>>
<<say "mc">>No! I'm trying to point out why working together will benefit you as much as me. If we can settle this your people can travel again and get all the resources you need!<</say>>
<<narrate>>$eva.name and $howard.name both stare at you for a moment, then nod slowly.<</narrate>>
<</append>>
<<toggleclass "#machines" noshow>>
<</link>><br>
</div>
<</if>>
<<if $east.amvawatch != undefined>>
<div id="selling">
<<link "Gerald Selling Women">>
<<append "#extra">>
<<think "mc">>I know $va.name said she'd address this if it was relevant, but mentioning it may be enough to trip $gerald.name over.<</think>>
<<say "mc">>Women are disappearing from the Platinum Lounge. The rumor among the Aegis prostitutes is that Gerald sells them off to the wealthy.<</say>>
<<say "gerald">>Sell them off? I offer them more work with exclusive customers. It's prostitution with fewer partners. They become mistresses and concubines. They are employees with an extremely attractive care package.<</say>>
<<say "eva">>You're running a prostitution business out of Aegis Protectorate, $gerald.name?<</say>>
<<say "gerald">>Yes. It's a profitable business.<</say>>
<<say "eva">>Be that as it may, are you declaring that income to the city? And the Platinum Lounge too?<</say>>
<<say "gerald">>Well, that's uhhh...<</say>>
<<set $tempvar3 += 0.25>>
<<if $east.sec > 2>>
<<say "mc">>And putting the expenses through the city.<</say>>
<<say "eva">>$gerald.name?<</say>>
<<say "gerald">>Just for like entertaining associates and...<</say>>
<<say "eva">>$gerald.name.<</say>>
<<narrate>>She says this with a disapproving tone.<</narrate>>
<<set $tempvar3 += 0.25>>
<</if>>
<<toggleclass "#selling" noshow>>
<</append>>
<</link>><br>
</div>
<</if>>
<<if $east.thomas == 3 && $tempvar2 != "thomas">>
<div id="thomas">
<<link "Thomas">>
<<append "#extra">>
<<say "mc">>Thomas is alive.<</say>>
<<say "eva">>What?<</say>>
<<say "va">>Is that a fact, $name?<</say>>
<<narrate>>Thomas walks into the room after hearing his name. His wooden leg clopping against the marbled floor as the other stare at him open-mouthed.<</narrate>>
<<say "side" "Thomas">>It is a fact. Here I am. Lost my leg fighting off her goon!<</say>>
<<narrate>>He points at $va.name.<</narrate>>
<<say "va">>What do you mean, Thomas? I was under the impression you died in an industrial accident.<</say>>
<<say "side" "Thomas">>You know damn well you and $gerald.name colluded to remove me!<</say>>
<<say "va">>I did no such thing.<</say>>
<<say "gerald">>This is ludicrous. Thomas, I'm glad you're alive, but where the hell have you been? And I've not colluded with this woman on anything!<</say>>
<<say "side" "Thomas">>Trust $name. Trust $krissy.name. Do not let these villains defile our city.<</say>>
<<say "howrad">>Thomas, I am so happy you are alive. I recall your health was ailing. The fact $name didn't kill you or use you as bait given your value is quite a convincing argument for peace. But, your accusations worry me too, do you have any proof?<</say>>
<<say "side" "thomas">>My health? It was fine, I was just painted to be in a poor mental state as I opposed our treatment of the strays.<</say>>
<<say "eva">>This is a lot to unpack. But, Thomas, Those are serious accusations that we need to address. Without proof we need to start a full investigation, and right now we have the pressing matter of the war.<</say>>
<</append>>
<<set $tempvar3 += 1>>
<<toggleclass "#thomas" noshow>>
<</link>><br>
</div>
<</if>>
<<if $east.milcamp == 8>>
<div id="soldiers">
<<link "Drugged Soldiers">>
<<append "#extra">>
<<say "mc">>He's drugging soldiers!<</say>>
<<think "mc">>Best to leave out where the drugs are coming from right now.<</think>>
<<say "howard">>What?<</say>>
<<say "gerald">>Lies!<</say>>
<<say "mc">>He's using the Blast factory to make a drug that enhances the endurance of the soldiers—<</say>>
<<say "eva">>I'm impressed, $gerald.name, I didn't take you for a chemist.<</say>>
<<say "mc">>No, it's not that simple. The side effects are grisly. $britt.name?<</say>>
<<narrate>>$britt.name places a folder down on the table.<</narrate>>
<<say "mc">>That's the medical records, but to break it down, he's been experimenting on the less promising recruits, causing some of them to literally go insane.<</say>>
<<say "gerald">>Listen here you little shit! This is a war, and if I have to sacrifice a few guinea pigs to serve the greater good and rid this world of your corruption, so be it.<</say>>
<<say "eva">>$gerald.name! This is absurd. Why would you do this in secret if you thought it was the right thing to do?<</say>>
<<say "gerald">>Because sometimes to do the right thing, you must do the wrong things.<</say>>
<<say "howard">>This is madness. We can't treat people like that.<</say>>
<<think "mc">>I think this alone is enough to discredit $gerald.name, should I bother saying anything else?<</think>>
<</append>>
<<set $tempvar3 += 1>>
<<toggleclass "#soldiers" noshow>>
<</link>><br>
</div>
<</if>>
<<if $east.blast == 4>>
<div id="blast">
<<link "Blast Production">>
<<append "#extra">>
<<say "mc">>$gerald.name signed off on increased Blast production, citing the trying times as the reason.<</say>>
<<say "gerald">>What's your point, boy? Blast is a safe drug that allows—<</say>>
<<say "eva">>That makes people ignore the bigger picture, $gerald.name. It's a recreational drug, not a damn panacea to make people ignore the war!<</say>>
<<say "gerald">>This is exactly the kind of time people need to blow off steam!<</say>>
<<narrate>>$va.name glares at you.<</narrate>>
<<say "howard">>You already know my thoughts on the drug, it's absolutely fine in moderation, but it shouldn't be used to make people ignore their worries or concerns.<</say>>
<</append>>
<<set $tempvar3 += 0.5>>
<<toggleclass "#blast" noshow>>
<</link>><br>
</div>
<</if>>
<<link "Nothing Else" cabinet>>
<<temp "bothdone">>
<</link>><br>
<</choices>>
<<case "convinceeva">>
<<set $tempvar3 = 0>>
<<say "eva">>So what are you hoping to achieve here, $name?<</say>>
<<say "mc">>Peace. I want to stop the war and handle this diplomatically.<</say>>
<<say "gerald">>Preposterous! $voice.name lulled is in with niceties too, and look how they went.<</say>>
<<say "eva">>He has a point. We've been betrayed by someone in your position before. What makes you different?<</say>>
<<narrate>>$krissy.name answers before you can.<</narrate>>
<<say "krissy">>I raised this boy... this man. He's not some maniac!<</say>>
<<say "eva">>Raised him?<</say>>
<<think "mc">>$va.name is being awfully quiet, why isn't she speaking in my favor?<</think>>
<<say "krissy">>He's my $krissy.you.<</say>>
<<say "mc">>Thank you, $krissy.refer. Everyone, I've been in your city for almost a week. I have no quarrel with your people. I can not say I know the truth of what happened between you and $voice.name, but I do not wish to see my companions thrown into a needless war.<</say>>
<<narrate>>$gerald.name is tapping his foot furiously, but saying nothing.<</narrate>>
<<think "gerald">>There's no way he can convince $va.name too, even if he does convince $eva.name. I mustn't strike him here, not yet. I may need the cabinet in the future.<</think>>
<<say "eva">>A week? And what have you learned?<</say>>
<<say "mc">>Well, I already knew your population was dwindling. Male travelers are infertile you see.<</say>>
<<say "gerald">>Nonsense. Are you really listening to this boy? Some families came here with their children! The infertility is <i>her</i> curse on us.<</say>>
<<say "mc">>Their fathers weren't travelers in that case.<</say>>
<<say "eva">>And you have proof of that?<</say>>
<<say "mc">>I do not, but it's what the council told me.<</say>>
<<say "howard">>The council of patrons?<</say>>
<<say "krissy">>Ehh... the council overseeing the patrons.<</say>>
<<say "howard">>Same difference.<</say>>
<<say "gerald">>The damn council? Where were they when the previous patron was tormenting us?<</say>>
<<say "krissy">>I honestly couldn't say. I was a council candidate, but never privy to their inner workings. They don't make a habit of explaining themselves..<</say>>
<<narrate>>$gerald.name simply huffs.<</narrate>>
<<say "howard">>You were a candidate?!<</say>>
<<say "krissy">>Now is hardly the time for that $howard.name.<</say>>
<<say "eva">>So, again, let me ask why should we trust you?<</say>>
<<think "mc">>I need to be careful how I handle things here. I need to either discredit $gerald.name or prove to $eva.name I am trustworthy without also alienating $va.name. I need three of them on side to vote in my favor before I tackle any other issues.<</think>>
<div id="extra">
</div>
<<choices>>
<<if $east.machines != undefined>>
<div id="machines">
<<link "Machine Degradation">>
<<append "#extra">>
<<say "mc">>Your machines are starting to fail and you do not have the resources to repair them.<</say>>
<<narrate>>$eva.name motions you to continue.<</narrate>>
<<set $tempvar3 += 0.25>>
<<if $east.machines > 2>>
<<say "mc">>More worryingly, your main receptor probably only has ten years left in it.<</say>>
<<think "mc">>Still no idea what a receptor is!<</think>>
<<say "eva">>How did you get access to... you know what never mind.<</say>>
<<set $tempvar3 += 0.25>>
<</if>>
<<say "mc">>You need the gateway; I can help you.<</say>>
<<say "eva">>So you'll hold us hostage?<</say>>
<<say "mc">>No! I'm trying to point out why working together will benefit you as much as me. If we can settle this your people can travel again and get all the resources you need!<</say>>
<<narrate>>$eva.name stares at you for a moment, then nods slowly.<</narrate>>
<</append>>
<<toggleclass "#machines" noshow>>
<</link>><br>
</div>
<</if>>
<<if $east.amvawatch != undefined>>
<div id="selling">
<<link "Gerald Selling Women">>
<<append "#extra">>
<<think "mc">>I know $va.name said she'd address this if it was relevant, but mentioning it may be enough to trip $gerald.name over.<</think>>
<<say "mc">>Women are disappearing from the Platinum Lounge. The rumor among the Aegis prostitutes is that Gerald sells them off to the wealthy.<</say>>
<<say "gerald">>Sell them off? I offer them more work with exclusive customers. It's prostitution with fewer partners. They become mistresses and concubines. They are employees with an extremely attractive care package.<</say>>
<<say "eva">>You're running a prostitution business out of Aegis Protectorate, $gerald.name?<</say>>
<<say "gerald">>Yes. It's a profitable business.<</say>>
<<say "eva">>Be that as it may, are you declaring that income to the city? And the Platinum Lounge too?<</say>>
<<say "gerald">>Well, that's uhhh...<</say>>
<<set $tempvar3 += 0.25>>
<<if $east.sec > 2>>
<<say "mc">>And putting the expenses through the city.<</say>>
<<say "eva">>$gerald.name?<</say>>
<<say "gerald">>Just for like entertaining associates and...<</say>>
<<say "eva">>$gerald.name.<</say>>
<<narrate>>She says this with a disapproving tone.<</narrate>>
<<set $tempvar3 += 0.25>>
<</if>>
<<toggleclass "#selling" noshow>>
<</append>>
<</link>><br>
</div>
<</if>>
<<if $east.milcamp == 8>>
<div id="soldiers">
<<link "Drugged Soldiers">>
<<append "#extra">>
<<say "mc">>He's drugging soldiers!<</say>>
<<think "mc">>Best to leave where the drugs are coming from right now.<</think>>
<<say "howard">>What?<</say>>
<<say "gerald">>Lies!<</say>>
<<say "mc">>He's using the Blast factory to make a drug that enhances the endurance of the soliders—<</say>>
<<say "eva">>I'm impressed, $gerald.name, I didn't take you for a chemist.<</say>>
<<say "mc">>No, it's not that simple. The side effects are grisly. $britt.name.<</say>>
<<narrate>>$britt.name places a folder down on the table.<</narrate>>
<<say "mc">>That's the medical records, but to break it down, he's been experimenting on the less promising recruits, causing some of them to literally go insane.<</say>>
<<say "gerald">>Listen here you little shit! This is a war, and if I have to sacrifice a few guinea pigs to server the greater good and rid this world of your corruption, so be it.<</say>>
<<say "eva">>$gerald.name! This is absurd. Why would you do this in secret if you thought it was the right thing to do?<</say>>
<<say "gerald">>Because sometimes to do the right thing, you must do the wrong things.<</say>>
<<say "howard">>This is madness. We can't treat people like that.<</say>>
<<think "mc">>I think this alone is enough to discredit $gerald.name, should I bother saying anything else?<</think>>
<</append>>
<<set $tempvar3 += 1>>
<<toggleclass "#soldiers" noshow>>
<</link>><br>
</div>
<</if>>
<<if $east.thomas == 3>>
<div id="thomas">
<<link "Thomas">>
<<append "#extra">>
<<say "mc">>Thomas is alive.<</say>>
<<say "eva">>What?<</say>>
<<say "va">>Is that a fact, $name?<</say>>
<<narrate>>Thomas walks into the room after hearing his name. His wooden leg clopping against the marbled floor as the other stare at him open-mouthed.<</narrate>>
<<say "side" "Thomas">>It is a fact. Here I am. Lost my leg fighting off her goon!<</say>>
<<narrate>>He points at $va.name.<</narrate>>
<<say "va">>What do you mean, Thomas? I was under the impression you died in an industrial accident.<</say>>
<<say "side" "Thomas">>You know damn well you and $gerald.name colluded to remove me!<</say>>
<<say "va">>I did no such thing.<</say>>
<<say "gerald">>This is ludicrous. Thomas, I'm glad you're alive, but where the hell have you been? And I've not colluded on anything with this woman!<</say>>
<<say "side" "Thomas">>Trust $name. Trust $krissy.name. Do not let these villains defile our city.<</say>>
<<say "eva">>The fact you discovered Thomas was alive, and knowing his potential strategic value didn't kill or use him as bait is honestly enough for me. As for those accusations Thomas, do you have any proof?<</say>>
<<say "howard">>As I recall your health was ailing...<</say>>
<<say "side" "thomas">>Of course it's true, they tried to kill me!<</say>>
<<say "eva">>Those are serious accusations that we need to address, but without proof we need to start a full investigation, and right now we have the pressing matter of the war.<</say>>
<</append>>
<<set $tempvar3 += 1>>
<<toggleclass "#thomas" noshow>>
<</link>><br>
</div>
<</if>>
<<if $east.blast == 4>>
<div id="blast">
<<link "Blast Production">>
<<append "#extra">>
<<say "mc">>$gerald.name signed off on increased Blast production, citing the trying times as the reason.<</say>>
<<say "gerald">>What's your point, boy? Blast is a safe drug that allows—<</say>>
<<say "eva">>That makes people ignore the bigger picture, $gerald.name. It's a recreational drug, not a damn panacea to make people ignore the war!<</say>>
<<say "gerald">>This is exactly the kind of time people need to blow off steam!<</say>>
<<narrate>>$va.name glares at you.<</narrate>>
<<say "howard">>You already know my thoughts on the drug, it's absolutely fine in moderation, but it shouldn't be used to make people ignore their worries or concerns.<</say>>
<</append>>
<<set $tempvar3 += 0.5>>
<<toggleclass "#blast" noshow>>
<</link>><br>
</div>
<</if>>
<<link "Nothing Else" cabinet>><<temp "evadone">><</link>><br>
<</choices>>
<<case "convincehoward">>
<<set $tempvar3 = 0>>
<<say "howard">>You... you won't hurt us?<</say>>
<<say "mc">>I don't want any bloodshed, but I will not let you harm my friends. Both sides will suffer losses if we don't solve this here, and I'd prefer to do so peacefully.<</say>>
<<say "gerald">>Preposterous! $voice.name lulled us in with niceties too, and look how they went.<</say>>
<<say "howard">>He... he's not wrong. We've been betrayed by someone in your position before. What makes you different?<</say>>
<<narrate>>$krissy.name answers before you can.<</narrate>>
<<say "krissy">>I raised this boy... this man. He's not some maniac!<</say>>
<<say "howard">>Raised him?<</say>>
<<think "mc">>$va.name is being awfully quiet; why isn't she speaking in my favor?<</think>>
<<say "krissy">>He's my $krissy.you.<</say>>
<<say "mc">>Thank you, $krissy.refer. Everyone, I've been in your city for almost a week. I have no quarrel with your people. I cannot say I know the truth of what happened between you and $voice.name, but I do not wish to see us all thrown into a needless war.<</say>>
<<narrate>>$gerald.name taps his foot furiously, but says nothing.<</narrate>>
<<think "gerald">>There's no way he can convince $va.name too, even if he does convince $howard.name. I mustn't strike him here, not yet. I may need the cabinet in the future.<</think>>
<<say "howard">>A week? And what have you learned?<</say>>
<<say "mc">>Well, I already knew your population was dwindling. Male travelers are infertile, you see.<</say>>
<<say "gerald">>Nonsense. Are you really listening to this boy? Some families came here with their children! The infertility is <i>her</i> curse on us.<</say>>
<<say "mc">>Their fathers weren't travelers in that case.<</say>>
<<say "howard">>And you have proof of that?<</say>>
<<say "mc">>I do not, but it's what the council told me.<</say>>
<<say "howard">>The council of patrons?<</say>>
<<say "krissy">>Ehh... the council overseeing the patrons.<</say>>
<<say "howard">>Same difference.<</say>>
<<say "gerald">>The damn council? Where were they when the previous patron was tormenting us?<</say>>
<<say "krissy">>I honestly couldn't say. I was a council candidate, but never privy to their inner workings. They don't make a habit of explaining themselves..<</say>>
<<narrate>>$gerald.name simply huffs.<</narrate>>
<<say "eva">>You were a candidate?!<</say>>
<<say "krissy">>Now is hardly the time for that $eva.name.<</say>>
<<say "howard">>So, why should we trust you, $name?<</say>>
<<think "mc">>I need to be careful how I handle things here. I need to either discredit $gerald.name or prove to $howard.name I am trustworthy without also alienating $va.name. I need three of them on side to vote in my favor before I tackle any other issues.<</think>>
<div id="extra">
</div>
<<choices>>
<<if $east.machines != undefined>>
<div id="machines">
<<link "Machine Degradation">>
<<append "#extra">>
<<say "mc">>Your machines are starting to fail and you do not have the resources to repair them. You need the gateway. I offer its use freely if we stop this war.<</say>>
<<narrate>>$howard.name nods.<</narrate>>
<<set $tempvar3 += 0.25>>
<<if $east.machines > 2>>
<<say "mc">>More worryingly, your main receptor probably only has ten years left in it.<</say>>
<<think "mc">>Still no idea what a receptor is!<</think>>
<<narrate>>$howard.name looks confused.<</narrate>>
<<say "howard">>But that's patron technology. Why would it have a lifespan?<</say>>
<<say "krissy">>Nothing is infinite, $howard.name.<</say>>
<<narrate>>He looks unconvinced.<</narrate>>
<<if $east.lacymach == 1 || $east.embermach == 1>>
<<say "krissy">>Had any reports from the water treatment plant recently?<</say>>
<<narrate>>He looks over at $va.name.<</narrate>>
<<say "va">>The machines were failing. Someone has elongated their lifespan.<</say>>
<<say $awaypartystray>>You're welcome!<</say>>
<<say "howard">>What would have happened if that failed?<</say>>
<<say "va">>Our sewage and drinking water would be... let's just say it wouldn't be great.<</say>>
<<say "howard">>Then I clearly owe you some gratitude.<</say>>
<<set $tempvar3 += 0.25>>
<</if>>
<</if>>
<</append>>
<<toggleclass "#machines" noshow>>
<</link>><br>
</div>
<</if>>
<<if $east.amvawatch != undefined>>
<div id="selling">
<<link "Gerald Selling Women">>
<<append "#extra">>
<<think "mc">>I know $va.name said she'd address this if it was relevant, but mentioning it may be enough to trip $gerald.name over.<</think>>
<<say "mc">>Women are disappearing from the Platinum Lounge. The rumor among the Aegis prostitutes is that Gerald sells them off to the wealthy.<</say>>
<<say "gerald">>Sell them off? I offer them more work with exclusive customers. It's prostitution with fewer partners. They become mistresses and concubines. They are employees with an extremely attractive care package.<</say>>
<<say "eva">>You're running a prostitution business out of Aegis Protectorate, $gerald.name?<</say>>
<<say "gerald">>Yes. It's a profitable business.<</say>>
<<say "eva">>Be that as it may, are you declaring that income to the city? And the Platinum Lounge too?<</say>>
<<say "gerald">>Well, that's uhhh...<</say>>
<<set $tempvar3 += 0.5>>
<<if $east.sec > 2>>
<<say "mc">>And putting the expenses through the city.<</say>>
<<say "eva">>$gerald.name?<</say>>
<<say "gerald">>Just for like entertaining associates and...<</say>>
<<say "eva">>$gerald.name.<</say>>
<<narrate>>She says this with a disapproving tone.<</narrate>>
<</if>>
<<say "howard">>I will audit your records personally, $gerald.name. I need to ensure all these women are being treated fairly and with respect.<</say>>
<<say "gerald">>Fine. But you'll find it entirely innocent. Both the women and the clients are happy. I'm not selling slaves here. I'm just contracting their services out long term. This grants them all the protections and security they'd get if working out of Aegis. We ensure they are treated well.<</say>>
<<think "mc">>That sounds surprisingly caring from what I know of this man...<</think>>
<<say "gerald">>Don't want the merchandise damaged, after all!<</say>>
<<think "mc">>Ah, there he is.<</think>>
<<say "howard">>Merchandise, $gerald.name? These are real people, real women. Sure, you can sell their services just like any other business, but they aren't merchandise! They are employees!<</say>>
<<say "gerald">>Yes, yes. You always get so uppity about these kinds of things.<</say>>
<<toggleclass "#selling" noshow>>
<</append>>
<</link>><br>
</div>
<</if>>
<<if $east.milcamp == 8>>
<div id="soldiers">
<<link "Drugged Soldiers">>
<<append "#extra">>
<<say "mc">>He's drugging soldiers!<</say>>
<<think "mc">>Best to leave out where the drugs are coming from right now.<</think>>
<<say "howard">>What?<</say>>
<<say "gerald">>Lies!<</say>>
<<say "mc">>He's using the Blast factory to make a drug that enhances the endurance of the soldiers—<</say>>
<<say "eva">>I'm impressed, $gerald.name, I didn't take you for a chemist.<</say>>
<<say "mc">>No, it's not that simple. The side effects are grisly. $britt.name?<</say>>
<<narrate>>$britt.name places a folder down on the table.<</narrate>>
<<say "mc">>That's the medical records, but to break it down, he's been experimenting on the less promising recruits, causing some of them to literally go insane.<</say>>
<<say "gerald">>Listen here you little shit! This is a war, and if I have to sacrifice a few guinea pigs to serve the greater good and rid this world of your corruption, so be it.<</say>>
<<say "eva">>$gerald.name! This is absurd. Why would you do this in secret if you thought it was the right thing to do?<</say>>
<<say "gerald">>Because sometimes to do the right thing, you must do the wrong things.<</say>>
<<say "howard">>This is madness. We can't treat people like that.<</say>>
<<think "mc">>I think this alone is enough to discredit $gerald.name, should I bother saying anything else?<</think>>
<</append>>
<<set $tempvar3 += 1>>
<<toggleclass "#soldiers" noshow>>
<</link>><br>
</div>
<</if>>
<<if $east.thomas == 3>>
<div id="thomas">
<<link "Thomas">>
<<append "#extra">>
<<say "mc">>Thomas is alive.<</say>>
<<say "eva">>What?<</say>>
<<say "va">>Is that a fact, $name?<</say>>
<<narrate>>Thomas walks into the room after hearing his name. His wooden leg clopping against the marbled floor as the other stare at him open-mouthed.<</narrate>>
<<say "side" "Thomas">>It is a fact. Here I am. Lost my leg fighting off her goon!<</say>>
<<narrate>>He points at $va.name.<</narrate>>
<<say "va">>What do you mean, Thomas? I was under the impression you died in an industrial accident.<</say>>
<<say "side" "Thomas">>You know damn well you and $gerald.name colluded to remove me!<</say>>
<<say "va">>I did no such thing.<</say>>
<<say "gerald">>This is ludicrous. Thomas, I'm glad you're alive, but where the hell have you been? And I've not colluded with this woman on anything!<</say>>
<<say "side" "Thomas">>Trust $name. Trust $krissy.name. Do not let these villains defile our city.<</say>>
<<say "howrad">>Thomas, I am so happy you are alive. I recall your health was ailing. The fact $name didn't kill you or use you as bait given your value is quite a convincing argument for peace. But, your accusations worry me too, do you have any proof?<</say>>
<<say "side" "thomas">>My health? It was fine, I was just painted to be in a poor mental state as I opposed our treatment of the strays.<</say>>
<<say "eva">>This is a lot to unpack. But, Thomas, Those are serious accusations that we need to address. Without proof we need to start a full investigation, and right now we have the pressing matter of the war.<</say>>
<</append>>
<<set $tempvar3 += 1>>
<<toggleclass "#thomas" noshow>>
<</link>><br>
</div>
<</if>>
<<if $east.blast == 4>>
<div id="blast">
<<link "Blast Production">>
<<append "#extra">>
<<say "mc">>$gerald.name signed off on increased Blast production, citing the trying times as the reason.<</say>>
<<say "gerald">>What's your point, boy? Blast is a safe drug that allows—<</say>>
<<say "eva">>That makes people ignore the bigger picture, $gerald.name. It's a recreational drug, not a damn panacea to make people ignore the war!<</say>>
<<say "gerald">>This is exactly the kind of time people need to blow off steam!<</say>>
<<narrate>>$va.name glares at you.<</narrate>>
<<say "howard">>You already know my thoughts on the drug, it's absolutely fine in moderation, but it shouldn't be used to make people ignore their worries or concerns.<</say>>
<</append>>
<<set $tempvar3 += 0.5>>
<<toggleclass "#blast" noshow>>
<</link>><br>
</div>
<</if>>
<<link "Nothing Else" cabinet>>
<<temp "howarddone">>
<</link>><br>
<</choices>>
<<case "evadone">>
<<if $tempvar3 >= 1>>
<<set $mc.events.eastresolved = "convinced">>
<<say "eva">>I think that's enough. I agree with $howard.name. Let's end the war; let's try to work together with $name going forward.<</say>>
<<say "howard">>Oh, thank the gods. I just don't want our people to die! $va.name, $gerald.name? Surely you two would agree?<</say>>
<<say "gerald">>Ridiculous. I would never put our people through that again, and there's no way $va.name would agree with you. It's two for two. We won't be stopping the invasion!<</say>>
<<narrate>>He grins at you, almost salivating as he starts to get up.<</narrate>>
<<say "gerald">>And now for what we do with—<</say>>
<<say "va">>Not true, $gerald.name. I side with them.<</say>>
<<narrate>>He spins in her direction with a look halfway between incredulity and scorn.<</narrate>>
<<say "gerald">>$va.name? What is this betrayal?!<</say>>
<<say "mc">>Please, $gerald.name. Let's work this out.<</say>>
<<temp "gerald">>
<div id="gerald">
<<script>>
setup.scriptpromise.then(function () {
$('#gerald').wiki(Story.get("cabinet").processText());
})
<</script>>
</div>
<<else>>
<<say "eva">>It's not enough. I can't put the lives of our people in jeopardy. You could have come to us at any time, you could have sent an envoy or anything. But instead you chose to sneak into our city and try to get dirt on us. I can not risk our people's futures to such a devious person!<</say>>
<<think "mc">>Shit! Shit!<</think>>
<<say "va">>I agree.<</say>>
<<say "mc">>$va.name, what the fuck?!<</say>>
<<say "gerald">>Seize him! You and I will have a good chat later in your cell, patron.<</say>>
<<narrate>>$sarge.name, $am.name and $genvoy.name cautiously circle you.<</narrate>>
<<say "va">>Do not fear him. His inexperience makes him weak.<</say>>
<<narrate>>$britt.name stands between you and your assailants.<</narrate>>
<<say "britt">>You'll 'av t'get through me first!<</say>>
<<say "krissy">>This is your realm, $krissy.calls! Do something!<</say>>
<<think "mc">>What the hell do I do?! Wait... the device $kp.name gave me... I can't let $britt.name get hurt!<</think>>
<<temp "enforcer">>
<button class="bigred" data-passage="cabinet">Call Enforcer</button>
<</if>>
<<case "howarddone">>
<<if $tempvar3 >= 1>>
<<set $mc.events.eastresolved = "convinced">>
<<say "howard">>I... I get it. The war must stop.<</say>>
<<say "eva">>It's the right decision $howard.name. There needs be no bloodshed. $va.name, $gerald.name? Surely you two would agree?<</say>>
<<say "gerald">>Ridiculous. I would never put our people through that again, and there's no way $va.name would agree with you. It's two for two. We won't be stopping the invasion!<</say>>
<<narrate>>He grins at you, almost salivating as he starts to get up.<</narrate>>
<<say "gerald">>And now for what we do with—<</say>>
<<say "va">>Not true, $gerald.name. I side with them.<</say>>
<<narrate>>He spins in her direction looking upon her with scorn.<</narrate>>
<<say "gerald">>$va.name? What is this betrayal?!<</say>>
<<say "mc">>Please, $gerald.name. Let's work this out.<</say>>
<<temp "gerald">>
<div id="gerald">
<<script>>
setup.scriptpromise.then(function () {
$('#gerald').wiki(Story.get("cabinet").processText());
})
<</script>>
</div>
<<else>>
<<say "howard">>I want to trust you, I really do. But I can't risk people's lives like that. I don't want anyone to die, I don't want anyone to hurt. But you present that danger. You chose against contacting us directly. You chose to ambush us here after sneaking into the city. This does not fill me with a lot of hope. Even if some of your words ring true, it's too little too late.<</say>>
<<narrate>>$gerald.name grins.<</narrate>>
<<think "mc">>Shit! Shit!<</think>>
<<say "howard">>If you truly wish to avoid bloodshed. Surrender.<</say>>
<<say "va">>I agree.<</say>>
<<say "mc">>$va.name, what the fuck?!<</say>>
<<say "gerald">>Seize him! You and I will have a good chat later in your cell, patron.<</say>>
<<narrate>>$sarge.name, $am.name and $genvoy.name cautiously circle you.<</narrate>>
<<say "va">>Do not fear him. His inexperience makes him weak.<</say>>
<<narrate>>$britt.name stands between you and your assailants.<</narrate>>
<<say "britt">>You'll 'av t'get through me first!<</say>>
<<say "krissy">>This is your realm, $krissy.calls! Do something!<</say>>
<<think "mc">>What the hell do I do?! Wait... the device $kp.name gave me... I can't let $britt.name get hurt!<</think>>
<<temp "enforcer">>
<button class="bigred" data-passage="cabinet">Call Enforcer</button>
<</if>>
<<case "bothdone">>
<<if $tempvar3 >= 1>>
<<set $mc.events.eastresolved = "convinced">>
<<say "howard">>I... I get it. The war must stop.<</say>>
<<say "eva">>I agree. There needs be no bloodshed. $va.name, $gerald.name? Surely you two would agree?<</say>>
<<if $tempvar2 != "thomas">>
<<say "va">>I believe him trustworthy, and if war can be avoided it should be.<</say>>
<<say "gerald">>Have you all lost your minds?! There's no way we can trust this monster!<</say>>
<<else>>
<<say "gerald">>Ridiculous. I would never put our people through that again, and there's no way $va.name would agree with you. It's two for two. We won't be stopping the invasion!<</say>>
<<narrate>>He grins at you, almost salivating as he starts to get up.<</narrate>>
<<say "gerald">>And now for what we do with—<</say>>
<<say "va">>Not true, $gerald.name. I side with them.<</say>>
<<narrate>>He spins in her direction looking upon her with scorn.<</narrate>>
<<say "gerald">>$va.name? What is this betrayal?!<</say>>
<</if>>
<<say "mc">>Please, $gerald.name. Let's work this out.<</say>>
<<temp "gerald">>
<div id="gerald">
<<script>>
setup.scriptpromise.then(function () {
$('#gerald').wiki(Story.get("cabinet").processText());
})
<</script>>
</div>
<<else>>
<<say "howard">>I want to trust you, I really do. But I can't risk people's lives like that. I don't want anyone to die, I don't want anyone to hurt. But you present that danger. You chose to ambush us here today instead of sending a messenger or an envoy. This does not fill me with a lot of hope. Even if some of your words ring true, it's too little too late.<</say>>
<<say "eva">>I hate to be on the opposite side of an argument to such a handsome young man, but Howard is right. You've certainly highlighted some concerns in our city, but you have not proven yourself trustworthy. For the sake of our people, I can't put such faith in you blindly.<</say>>
<<narrate>>$gerald.name grins.<</narrate>>
<<think "mc">>Shit! Shit!<</think>>
<<say "howard">>If you truly wish to avoid bloodshed. Surrender.<</say>>
<<say "va">>I agree.<</say>>
<<say "mc">>$va.name, what the fuck?!<</say>>
<<say "gerald">>Seize him! You and I will have a good chat later in your cell, patron.<</say>>
<<narrate>>$sarge.name, $am.name and $genvoy.name cautiously circle you.<</narrate>>
<<say "va">>Do not fear him. His inexperience makes him weak.<</say>>
<<narrate>>$britt.name stands between you and your assailants.<</narrate>>
<<say "britt">>You'll 'av t'get through me first!<</say>>
<<say "krissy">>This is your realm, $krissy.calls! Do something!<</say>>
<<think "mc">>What the hell do I do?! Wait... the device $kp.name gave me... I can't let $britt.name get hurt!<</think>>
<<temp "enforcer">>
<button class="bigred" data-passage="cabinet">Call Enforcer</button>
<</if>>
<<case "enforcer">>
<<audio "zoop" play>>
<<set $mc.events.eastresolved = "enforcer2">>
<<narrate>>There's a zoop and before you stands a person in full, futuristic armor.<</narrate>>
<<say "gerald">>Who the... what the... a champion?! Quickly!<</say>>
<<say "enforcer" "Enforcer">>Situation assessed. Lethal action not required.<</say>>
<<narrate>>The three women circling you dive at the enforcer while $britt.name pushes you backward.<</narrate>>
<<narrate>>In a flash, the enforcer is gone and appears briefly behind $sarge.name, bringing their hand hard to her neck she falls to the ground, rendered unconscious. They catch her limp body as she falls to the floor, ensuring she's laid out safely.<</narrate>>
<<narrate>>Like something out of an anime, they again vanish and this time reappear beside $genvoy.name. They chop at her neck with their hand, her body going limp almost immediately. $am.name's face begins to contort to that of confusion as she continues barreling forward barely able to comprehend the few seconds it took the enforcer to render her teammates inactive.<</narrate>>
<<say "howard">>I surrender! I surrender!<</say>>
<<narrate>>The enforcer moves to the next target and $am.name falls to the floor as $howard.name cowers in fear.<</narrate>>
<<say "gerald">>Coward! Guards! Guards! Throw everything we have at them!<</say>>
<<say "eva">>We can not hope to fight that power, $gerald.name. It's over.<</say>>
<<say "gerald">>No... I need his power, I need—<</say>>
<<narrate>>He's cut off as the enforcer renders him unconscious. The enforcer looks at the remaining parties, $howard.name cowering while $eva.name and $va.name are holding their hands up in surrender.<</narrate>>
<<say "enforcer" "Enforcer">>Threat neutralized.<</say>>
<<think "mc">>Holy shit. I could barely keep up with their movements.<</think>>
<<say "howard">>Wh—what now?<</say>>
<<say "mc">>Detain them first and then we can discuss peace.<</say>>
<<narrate>>The guards $gerald.name called to arrive a moment later. They survey the scene and start charging in when $eva.name calls out to them.<</narrate>>
<<say "eva">>Stop! If those three collectively couldn't land a single hit on that champion, you hold no hope. Do not risk your lives. Please detain these four.<</say>>
<<say "mc">>Not my champion, and that should be five.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say "mc">>$va.name betrayed me. She said she would stand with me, that she would help prevent this war.<</say>>
<<say "va">>Like I said, I alone would be insufficient to change anyone's mind. Though clearly you didn't need anyone's help. I wasn't going to risk my hide unless it was a sure victory.<</say>>
<<narrate>>You grit your teeth.<</narrate>>
<<think "mc">>While it pisses me off, I can't deny she helped us when we arrived and didn't rat us out.<</think>>
<<say "mc">>Fine. But know if we are to work together going forward, I need actual agreements with follow through.<</say>>
<<say "howard">>What... what do you want of us?<</say>>
<<say "mc">>I want you to stop the invasion and $gerald.name never to be given a seat of power again.<</say>>
<<say "eva">>I think you've done that yourself. That's not even one of your champions? I doubt our combined arms would be enough to take them down. I can't imagine how powerful your champions are.<</say>>
<<think "mc">>Probably best not to let on that the enforcer is more powerful than the champions.<</think>>
<<say "mc">>Cancel the invasion.<</say>>
<<say "howard">>Of course. Of course. We'll even increase the tributes! Please, just leave us be.<</say>>
<<say "mc">>I don't want your tributes. I want to settle this diplomatically. I'm even happy for you to use the gateway once we build trust. I never wanted violence.<</say>>
<<say "va">>Those words do not match your actions. This display does not start our negotiations in good faith. You brought... whatever that is! Building trust is going to be no easy task.<</say>>
<<say "mc">>That was the nuclear option if I couldn't broker peace any other way. I realize this strains things between us. Promise me the war is over and that my companions are safe. That's all I want. Then maybe we can start a diplomatic relationship.<</say>>
<<think "mc">>And honestly, thank god $kp.name gave me that.<</think>>
<<say "eva">>The invasion is over.<</say>>
<<say "mc">>$va.name?<</say>>
<<say "va">>Agreed.<</say>>
<<say "mc">>Alright, come on everyone, let's get some rest, we're heading home tomorrow.<</say>>
<<narrate>>As you walk past the enforcer he turns to you.<</narrate>>
<<say "enforcer" "Enforcer">>I will remain here and ensure the safety of your people as instructed by $kp.name.<</say>>
<<say "mc">>Understood. Thank you uhh...<</say>>
<<say "enforcer" "Enforcer">>Marvin. And just following orders.<</say>>
<<say "krissy">>Let's just head home and sleep. We'll have plenty of time to talk while driving back tomorrow.<</say>>
<<narrate>>The three cabinet members just look upon you with a mixture of fear and confusion. They continue chatting after you leave.<</narrate>>
<<say "howard">>Wh... what do we do now?<</say>>
<<say "eva">>We announce the invasion is over, and that we're entering peace talks with the new patron.<</say>>
<<say "va">>Terrifying, wasn't it?<</say>>
<<say "howard">>It's clear we're no match. He's far more powerful than the old patron isn't he?<</say>>
<<say "eva">>While I am angered by the means in which he conducted himself, it doesn't change the fact he could have killed everyone in this city relatively easily had he wished. Had we actually invaded, it would have been suicide. Our only choice is really to try and work with him.<</say>>
<<button "Sleep" eastsleep>>
<</button>>
<<case "gerald">>
<<say "gerald">>$sarge.name, $genvoy.name, seize him. I don't care if he takes everyone in this room down with him, I can't let this chance go!<</say>>
<<narrate>>Nothing happens. He looks around, $sarge.name blanks him while $genvoy.name has been pinned down by $britt.name.<</narrate>>
<<say "gerald">>No, this... no. We need the gateway, our people... it's no. I need your power. I need what the founder has!<</say>>
<<narrate>>There's an explosion as $gerald.name's anger reaches fever pitch. His form contorts and breaks as he grows a meter taller. His body becomes red and his muscles bulge.<</narrate>>
<<say "gerald">>I <b>will</b> have what she had. Your power will be mine! Everyone will bow to me. Even the founder!<</say>>
<<say "mc">>What the fuck?!<</say>>
<<narrate>>He runs at you swiping. $britt.name releases $genvoy.name as she tries to intercept, but $am.name has already swung herself around his neck. He loses balance and his fist misses you by mere inches.<</narrate>>
<<say "howard">>I... I... we need to get outta here!<</say>>
<<narrate>>$britt.name jumps onto his arm, smashing her fists into his biceps, but he effortlessly flings her off and she crashes through the window.<</narrate>>
<<say "mc">>$britt.name!<</say>>
<<say "eva">>$gerald.name! Listen to me, what has become of you?! We can work this out, nobody has to die, $gerald.name!<</say>>
<<narrate>>His lets out a visceral roar as he throws $am.name off his shoulders. The table she lands on snaps in two under the force.<</narrate>>
<<say "gerald">>You are my quarry, $name. I will drain you!<</say>>
<<say "mc">>$gerald.name. Please, calm down, we can talk about this. We can save your people.<</say>>
<<say "gerald">>My people? They can all burn in hell for all I care. I want your power!<</say>>
<<narrate>>$genvoy.name sits in tears, sobbing on the floor.<</narrate>>
<<say "genvoy">>You were meant to protect us; you were meant to be our savior! You were meant to make this city shine!<</say>>
<<say "gerald">>The city will shine as I raze it to the ground!<</say>>
<<narrate>>He turns back to face you again, swatting away $sarge.name and $am.name as they attempt to assail him.<</narrate>>
<<say "gerald">>Your inexperience is your undoing. I have barely a fraction of your power and yet you cannot hope to defeat me.<</say>>
<<think "mc">>What the hell do I do?!<</think>>
<<say "krissy">>This is your dominion, $name. You are the authority here!<</say>>
<<narrate>>$gerald.name cackles.<</narrate>>
<<say "gerald">>He has no authority! After you, I will feast on the strays, your loved ones, and whoever else you've got hiding in your dirty hovel!<</say>>
<<narrate>>Something in your mind breaks and your perception of the worlds changes. Everything becomes slow and as he reaches out to grab you, you simply step to the side.<</narrate>>
<<say "mc">>NO!<</say>>
<<narrate>>He looks at you confused, while you focus on this new feeling. A moment of clarity in a torrent of chaos.<</narrate>>
<<say "mc">>My companions <b>will</b> remain safe!<</say>>
<<narrate>>The feeling grows and you find your mind wandering, concentrating on your companions and almost disconnecting from the current situation for a moment.<</narrate>>
<<narrate>>The faces of all your companions appear in your mind's eye one by one. As your thoughts draw to $kylie.name you feel... warm.<</narrate>>
<<cont "cabinet" "cabmeet-allin2">>
<<case "cabmeet-allin">>
<<say "gerald">>Are you all fucking insane?!<</say>>
<<say "va">>$name, now might be a good time?<</say>>
<<narrate>>You swing the doors open and confidently stride inside the meeting room.<</narrate>>
<<if $east.gerald != undefined>>
<<say "gerald">>YOU?! $alias?! You're fucking $name?!<</say>>
<<else>>
<<say "gerald">>Big mistake. This is your end, $name.<</say>>
<</if>>
<<say "mc">>I just want peace, $gerald.name.<</say>>
<<say "gerald">>This is a fucking coup; he's taking over our damn city and you're just letting him?!<</say>>
<<say "eva">>$gerald.name, please. Calm down. It's not like that.<</say>>
<<say "howard">>He's $krissy.name's $krissy.you, $gerald.name. Let's at least hear him out for her sake.<</say>>
<<say "gerald">>$krissy.name? Are you fucking kidding me?! It's been two hundred fucking—<</say>>
<<say "krissy">>I'm here, $gerald.name.<</say>>
<<narrate>>He pauses, just staring at her in disbelief.<</narrate>>
<<temp "gerald">>
<div id="gerald">
<<script>>
setup.scriptpromise.then(function () {
$('#gerald').wiki(Story.get("cabinet").processText());
})
<</script>>
</div>
<<case "cabmeet-allin2">>
<<audio "zoop" play>>
<<narrate>>There's a zoop noise and suddenly $kylie.name stands before you, a little dazed and confused, but quickly reads the situation.<</narrate>>
<<say "kylie">>I've got it, $name!<</say>>
<<narrate>>Most people in the room look at $kylie.name confused, but $gerald.name doesn't stop to comprehend, he simply swings at her, his giant hands bigger than her body.<</narrate>>
<<say $awaypartystray>>No, $kylie.name! Run!<</say>>
<<narrate>>There's a bolt of electricity from $kylie.name's hand, the lights flicker and $gerald.name stands, shocked and unable to move.<</narrate>>
<<say "kylie">>Quickly, restrain him!<</say>>
<<say "eva">>What the fuck just happened?<</say>>
<<say "mc">>$britt.name!<</say>>
<<narrate>>You run to the window, your stomach in knots as the despair takes hold.<</narrate>>
<<think "mc">>Please, for the love of god, don't be dead!<</think>>
<<narrate>>You peer out through the broken glass, there's a ledge on the floor below with some knocked over plants but no sign of $britt.name. A moment later she runs through the door and stops when she sees $gerald.name restrained and $kylie.name stood over his body.<</narrate>>
<<say "britt">>The fuck did I miss?<</say>>
<<say "kylie">>$name called me here and I used my abilities to—<</say>>
<<say "britt">>Yer abilities?<</say>>
<<say "kylie">>$kp.name has been explaining it to me. Champions can harness the—<</say>>
<<say "krissy">>Now is not the time. Let's just be thankful $name made a damn champion. We need rest and he needs to be detained.<</say>>
<<say "va">>I suggest we get him locked up immediately, and discuss what the hell we do now.<</say>>
<<narrate>>You can't help but notice the wry grin on her face.<</narrate>>
<<say "mc">>Did you know he was... he was whatever that was?!<</say>>
<<say "va">>No. I suspected he was after something, but this is not what I expected.<</say>>
<<cont "cabinet" "cabmeet-allin3">>
<<case "cabmeet-allin3">>
<<narrate>>As $am.name and $kylie.name haul $gerald.name away in restraints, you and the remaining cabinet members sit around the table.<</narrate>>
<<say "eva">>So what now?<</say>>
<<say "howard">>We announce the war is over, and that we have opened diplomatic channels with the new patron.<</say>>
<<say "va">>And what do you want, $name?<</say>>
<<say "mc">>Originally, I just wanted this war avoided, but now I also want to understand more of the founder and what $gerald.name was talking about.<</say>>
<<say "krissy">>And how the hell did he transform without a patron's power?<</say>>
<<say "va">>And I'd like to know where the hell your friend appeared from and how she shot lightning from her hands! What's to say she won't turn on us if we don't give you what you want?<</say>>
<<say "mc">>She's my champion, but right now, I don't really understand the rest if I'm honest. When he threatened my companions, something in my mind snapped. It felt like the world was going in slow motion. My mind drifted to my companions and when I thought of $kylie.name... well, there she was.<</say>>
<<say "krissy">>You didn't even realize you could summon your champions? They're travelers for crying out loud. You're the lord of the realm, your whole thing is literally transporting people through portals!<</say>>
<<say "mc">>But I didn't have a portal?<</say>>
<<narrate>>She sighs while rubbing the bridge of her noise.<</narrate>>
<<say "krissy">>This is not the time for this conversation. $eva.name, providing you do not endanger his companions, you are safe.<</say>>
<<say "eva">>I can certainly see $gerald.name wasn't what we thought he was, but I'm still feeling a little cautious given what just happened.<</say>>
<<say "mc">>I understand. But please do be aware I want peace, I don't want to rule your people with fear or anything like that. If $gerald.name could have been reasoned with, that would never have happened. Let me ask you instead, what do you want? What can I offer to ensure we can sustain an amicable relationship?<</say>>
<<say "eva">>Can me and my people make use of your gateway?<</say>>
<<say "mc">>Of course. $howard.name?<</say>>
<<say "howard">>I... I'd like to repopulate the settlement out there, allow people to move back to their old homes closer to the gateway. This is what I founded <i>Sunset Hope</i> for. Though I wasn't expecting to do it with the patron's blessing... though at least I know our people will be safe there as you and your champions will protect them.<</say>>
<<think "mc">>Hmm, he took my unexpected show of power positively; that I'll protect his people. Of everyone, I'd have expected $howard.name to be the most reluctant after seeing what just happened.<</think>>
<<say "mc">>I've repurposed some of the buildings closer $voice.name's gateway, and I think $moriah.name may take issue with unknown entities settling close to the hotel, but we'll make sure everyone has somewhere to stay. Anything else?<</say>>
<<say "va">>I think an ambassador may be a good idea.<</say>>
<<say "eva">>Anyone in mind?<</say>>
<<say "va">>It should probably be one of us.<</say>>
<<narrate>>You notice a sly grin creeping across her face.<</narrate>>
<<say "howard">>I need to be here in the short to medium term to make sure those that need it can be moved out there.<</say>>
<<narrate>>$eva.name looks you up and down and gives you a wink.<</narrate>>
<<say "eva">>I suppose it may make sense to be me. If I'm stationed there then I can use the Gateway more easily too.<</say>>
<<think "mc">>Hold on, so $howard.name will be distracted, $eva.name will be away from the city... basically leaving $va.name in charge. Has this been her goal all along?<</think>>
<<say "mc">>And what of $gerald.name? Who will replace him?<</say>>
<<say "va">>I suggest we do not. The power of an odd number means we'll never be at a stalemate, at least on items with only two options.<</say>>
<<say "howard">>That makes sense.<</say>>
<<say "eva">>I agree with the logic, but feel we'd need five members.<</say>>
<<say "va">>Perhaps in the future, but right now we need to undo all the damage we've caused this city.<</say>>
<<say "howard">>Agreed.<</say>>
<<say "eva">>Well, right away it's two against one.<</say>>
<<say "krissy">>And everyone is free to leave the city if they wish?<</say>>
<<say "eva">>Of course.<</say>>
<<say "howard">>Though you must realize, there's still going to be a lot of fear of a patron. From $gerald.name's words I am unsure exactly what to believe when it comes to the founder, but people are going to need time.<</say>>
<<say "mc">>Let's open up communication, we can use the same methods you used with $kayla.name, and we can build from there. Is there anything else you can tell me about the founder?<</say>>
<<narrate>>$sarge.name arrives back and silently takes a seat.<</narrate>>
<<say "howard">>She was... or I thought she was, our great savior. She discovered the former patron was transforming people into abominations.<</say>>
<<say "eva">>Similar to what $gerald.name just was I wonder?<</say>>
<<say "mc">>So you think she was trying to generate an army? Why?<</say>>
<<say "eva">>Yes, it blows a number of holes in the original story. Perhaps the founder really was the one experimenting.<</say>>
<<say "krissy">>We can sit here all day and hypothesize, but until we have facts and evidence, we know nothing.<</say>>
<<say "mc">>True. Can you keep $gerald.name contained?<</say>>
<<say "va">>We'll keep him sedated until we have the proper facility.<</say>>
<<say "howard">>I have no idea what that was, but do we really have the resources to hold him?<</say>>
<<say "sarge">>It's already handled. $kylie.name did something to the receptors. Even in that disgusting red form, he won't be able to break out of his cell.<</say>>
<<say "mc">>The receptors?<</say>>
<<say "krissy">>The great big satellite dish that's converting the Gateway's energy into electricity.<</say>>
<<narrate>>You blink at her.<</narrate>>
<<say "krissy">>You never wondered how all the electricity was generated? The gateway emits energy throughout the realm. Those receptors use it to power... well, most everything. Did you not notice the one back at the hotel either? I know it's a lot, lot smaller, but... really?<</say>>
<<narrate>>You feel a little embarrassed.<</narrate>>
<<say "mc">>$cassie.name explained the gateway provided electricity and I honestly never thought to question it further.<</say>>
<<say "va">>Okay, it's been a long day. I think we should all rest. We'll handle the city, and going forward we can work together to improve relationships.<</say>>
<<if $east.thomas == 3 && $tempvar2 != "thomas">>
<<cont "cabinet" "cabmeet-allin4">>
<<else>>
<<say "mc">>Yeah. We'll go get some rest. We'll head home tomorrow.<</say>>
<<button "Sleep" eastsleep>>
<</button>>
<</if>>
<<case "cabmeet-allin4">>
<<say "side" "Thomas">>Not just yet.<</say>>
<div class="flex">
<<say "eva" "" "" "" "width:265px; display: inline-block; margin-left: 20px;">>Thomas?!<</say>>
<<say "va" "" "" "" "width:265px; display: inline-block; margin-left: 20px;">>Thomas?!<</say>>
<<say "howard" "" "" "" "width:265px; display: inline-block; margin-left: 20px;">>Thomas?!<</say>>
</div>
<<think "mc">>With everything else going on I'd kind of forgotten about him.<</think>>
<<say "eva">>I thought you were dead!<</say>>
<<say "howard">>What happened to your leg?!<</say>>
<<say "side" "Thomas">>$va.name and $gerald.name conspired to remove me from the cabinet and kill me.<</say>>
<<say "va">>Absurd, Thomas. I've never had anything but respect for you!<</say>>
<<say "side" "Thomas">>And yet it was your man that tried to kill me. You lust for nothing but power. Leave the city with you? Madness!<</say>>
<<say "va">>And what proof do you have, Thomas? Where have you been all this time?<</say>>
<<say "eva">>I am just so relieved you're alive. But you realize the accusation you're making?<</say>>
<<say "side" "Thomas">>I know it was them! It was all because I opposed $gerald.name's views.<</say>>
<<say "howard">>I could see $gerald.name doing that, and while $va.name may be a little more ruthless than me, I can't imagine she'd stoop to killing someone.<</say>>
<<say "va">>Thank you, $howard.name.<</say>>
<<say "side" "Thomas">>But the timing. It all adds up.<</say>>
<<say "eva">>Thomas, you can't just come back here after all this time with such massive accusations without any proof.<</say>>
<<say "va">>Perhaps you could leave us to handle this, $name?<</say>>
<<say "mc">>Uh, yes, we'll go get some rest. We'll head home tomorrow.<</say>>
<<button "Sleep" eastsleep>>
<</button>>
<<case "eva-tour">>
<<temp "eva">>
<<goto "cabinet">>
<<case "eva">>
<<taskdone "cabmeet">>
<<set _img1 = "east/eva01.jpg">>
<<set _img2 = "east/eva02.jpg">>
<<if $east.charityevent != undefined>>
<<narrate>>You arrive at the office, the two of them already deep in conversation.<</narrate>>
<<else>>
<<narrate>>As soon as you enter the office, $eva.name runs off her seat and swings her arms around $krissy.name's neck.<</narrate>>
<</if>>
<<say "eva">>Just where have you been all this time, $krissy.name?<</say>>
<<say "krissy">>I think you need to meet someone before I can properly explain all that.<</say>>
<<narrate>>She looks over at you as you walk toward her.<</narrate>>
<<block _img1>>
<<say "eva">>Oh, $krissy.name! I see you remembered how I like them. Just like old times, huh? Have you brought him for me to play with, or to watch you play with? Quite the quick gift on your return!<</say>>
<<say "krissy">>$eva.name! That's my $krissy.you.<</say>>
<<say "eva">>Oh, kinky. I never imagined you'd be into that, $krissy.name!<</say>>
<<say "krissy">>For crying out loud. I'd almost forgotten this side of you.<</say>>
<<narrate>>$eva.name looks you up and down.<</narrate>>
<<say "eva">>Clearly you remembered well enough, we're gonna have some fun, handsome.<</say>>
<</block>>
<<think "mc">>It feels like she's gonna eat me alive... and I'm all for it.<</think>>
<<say "mc">>Oh, I'm already looking forward to it.<</say>>
<<set _uc = $name.toUpperCase()>>
<<set _ec = $eva.name.toUpperCase()>>
<<say "krissy">>_ec! _uc! Now is not the time. I didn't bring you here to fuck each other. God I should have expected this with you two.<</say>>
<<narrate>>$eva.name visibly recoils and backs away from you. Her whole demeanor changing almost immediately.<</narrate>>
<<block _img2>>
<<say "eva">>$name?! As in The patron?! $krissy.name what the hell is going on here?<</say>>
<<say "krissy">>Finally. You're paying attention. $name, care to explain?<</say>>
<<say "mc">>As you've just worked out, I'm the patron you're looking to destroy.<</say>>
<<say "eva">>And you're here to kill me first. I'll have you know my envoy—<</say>>
<<say "krissy">>No, $eva.name. Please, just listen. You trust me, right?<</say>>
<</block>>
<<narrate>>She looks at you reluctantly.<</narrate>>
<<say "eva">>Very well. But keep your distance from me.<</say>>
<<say "mc">>I'm looking to broker peace. I do not want my friends to die in needless bloodshed, and from my understanding, neither do you.<</say>>
<<say "eva">>And you expect me to blindly trust you after what the last patron did to us?<</say>>
<<think "mc">>I'll let that go for now, I need to focus on the task at hand.<</think>>
<<say "mc">>I'm hoping I can convince you.<</say>>
<<say "eva">>Even if you did, I'm just one member of the cabinet, I can't overrule the other three.<</say>>
<<say "mc">>$va.name will speak out against $gerald.name if you do too.<</say>>
<<say "eva">>You convinced $va.name? What is she getting out of this?<</say>>
<<say "mc">>Honestly... I don't know yet and I can't say I'm fond of that. But $krissy.refer leads me to believe you and $howard.name are far more trustworthy.<</say>>
<<say "eva">>And how do I know I can trust you?<</say>>
<<if $east.lech == "intervened">>
<<think "mc">>It feels minor, but I did help out with that lecherous boss at <i>New Eden Holdings</i>.<</think>>
<<say "mc">>Have you noticed Steve hasn't turned into work recently?<</say>>
<<say "eva">>Shit... did you kill him? No, I can't work—<</say>>
<<say "mc">>No, no! Not at all. I caught him mistreating one of your staff, $rec.name, and he ran with his tail between his legs.<</say>>
<<say "eva">>Sweet girl. I've been trying to get rid of him for some time, but never had any proof. However, I don't see how such a small act is enough to trust you're not looking for destruction.<</say>>
<</if>>
<<say "mc">>Listen, I know I can't earn your trust in such a small period of time. But let's build diplomatic channels. Let's try and earn each other's trust. Going to war benefits nobody. You want access to the Gateway? Fine. You want to station an ambassador or even move back? I'm fine with that. I just don't want people to die.<</say>>
<<say "eva">>Well, you certainly don't seem the great evil that $gerald.name suggests, and I certainly do trust $krissy.name.<</say>>
<<say "krissy">>Have I ever steered you wrong?<</say>>
<<say "eva">>Only when it was hot.<</say>>
<<narrate>>She gives you a little wink.<</narrate>>
<<say "eva">>Okay, okay. I'll consider it and voice my opinion to the rest of the cabinet when the time comes. No promises, though. I need to carefully consider this.<</say>>
<<say "mc">>Thank you, that's all we ask. We'll leave you in peace.<</say>>
/*
<<if $east.charityevent != undefined>>
<<say "eva">>You know... I could do with some help after the event is finished.<</say>>
<<narrate>>$krissy.name throws her hands in the air and heads towards the door.<</narrate>>
<<say "krissy">>Even after that conversation, that's still what's on your mind?!<</say>>
<<narrate>>She slams the door behind her.<</narrate>>
<<say "eva">>Her loss. Go enjoy the rest of the event, I'll catch up with you later.<</say>>
<<button "Continue" east-charity>>
<<temp $tempvar3>>
<<set $cabmet = 1>>
<<set $east.evameet = 2>>
<</button>>
<<else>>*/
<<say "eva">>Or maybe you could stick around, and we go back to talking about $krissy.name's gift.<</say>>
<<narrate>>Exasperated, $krissy.name throws her hands in the air and heads towards the door.<</narrate>>
<<say "krissy">>Even after that conversation, that's still what's on your mind?!<</say>>
<<narrate>>She slams the door behind her.<</narrate>>
<<set $cabmet = 1>>
<<set $east.evameet = 2>>
<<block "east/eva03.jpg">>
<<say "eva">>Her loss. So how about we try and build some trust together?<</say>>
<<think "mc">>Pretty sure $krissy.refer would have warned me if it wasn't safe.<</think>>
<div id="replace">
<<choices>>
<<link "Do it" >>
<<replace "#replace">>
<<say "mc">>You are an incredibly alluring woman, I'm not sure I could resist you if I tried.<</say>>
<<say "eva">>On the table. Trousers off.<</say>>
<<cont "eastsex" "evameet">>
<</replace>>
<</link>><br>
<<link "Leave">>
<<replace "#replace">>
<<say "mc">>You are an incredibly alluring woman, but given our conversation just now, I think it wise to hold off on such... frivolity... until we've resolved the current situation.<</say>>
<<say "eva">>Oh, rubbish. If your $krissy.them hadn't stopped us earlier, we'd be fucking like rabbits right now!<</say>>
<<say "mc">>There'll be plenty of time for that later.<</say>>
<<if $east.charityevent != undefined>>
<<set $cabmet = 1>>
<<set $east.evameet = 2>>
<<cont "east-charity" $tempvar3>>
<<else>>
<<cont "easthub" "" 3>>
<</if>>
<</replace>>
<</link>>
<</choices>>
</div>
<</block>>
/*<</if>>*/
<<case "howard">>
<<taskdone "cabmeet">>
<<meet "howard">>
<<narrate>>The two of them are already deep in conversation when you arrive.<</narrate>>
<<say "howard">>I can't believe it's really you, $krissy.name!<</say>>
<<say "krissy">>Sorry $howard.name, but there's someone you should meet. My $krissy.you, $name.<</say>>
<<narrate>>His body goes stiff at the mention of your name, then he turns slowly to face you.<</narrate>>
<<say "howard">>Are you here to kill me?<</say>>
<<say "mc">>No, $howard.name I want peace.<</say>>
<<say "howard">>Why?<</say>>
<<say "mc">>Because I don't want my people, or yours, to die needlessly.<</say>>
<<say "howard">>I... I can't stop the war. You can torture me but I can't. I'm only a quarter of the cabinet!<</say>>
<<say "krissy">>$howard.name. Snap out of it!<</say>>
<<say "mc">>I just need to you to listen to me. If you speak out, $va.name will too.<</say>>
<<say "howard">>You want me to trust you when you're in bed with her?<</say>>
<<say "mc">>I don't know what she's after, but she's the lesser of two evils at the minute.<</say>>
<<say "howard">>And I should trust you? What of the people here? The tributes we send the champions. The poor live without so that your champions can live in luxury.<</say>>
<<say "mc">>We have a working gateway, $howard.name, we don't need the tribute. And we can help your people. You can use my Gateway freely too.<</say>>
<<if $east.josie > 2>>
<<say "mc">>And I think you may need to look within regards the poor living without. The milk doesn't come to us, but goes to your wealthy.<</say>>
<<narrate>>He looks a bit shocked.<</narrate>>
<</if>>
<<if $east.coffee == "threesome">>
<<say "mc">>There are also some unsettling rumors within $gerald.name's workforce that some women are getting sold off like property.<</say>>
<<say "howard">>I've been trying to look into $gerald.name's sordid affairs for some time.<</say>>
<</if>>
<<if $east.cucked > 2>>
<<say "mc">>I know about your plans for <i>Sunset Hope</i>. I will not impede your people repopulating the town at the original gateway. Though of course, they will need to live peacefully with my companions.<</say>>
<<say "howard">>How did you find out about that? No... it doesn't matter. You'd seriously just let us stroll back in like nothing happened?<</say>>
<</if>>
<<say "mc">>$gerald.name is the true enemy here, $howard.name. Whatever beef you have with $voice.name is not with me. $gerald.name wants control of the Gateway and he's willing to kill for it. Your people can use it whenever they want, I will not withhold it's use. You don't need to go to war!<</say>>
<<say "howard">>I'll... I'll think about it. At the very least I won't tell the others you're here for $krissy.name's sake. I'll give my opinion in the meeting tomorrow.<</say>>
<<say "krissy">>I trust we can count on you $howard.name. You are a good man.<</say>>
<<button "Continue" east-charity>>
<<set $howardmeet = 2>>
<<temp $tempvar3>>
<</button>>
<<case "howard-pro">>
<<narrate>>You walk toward the door when $gsec.name greets you.<</narrate>>
<<say "gsec">>I told $howard.name about what you were doing and trying to help. He actually asked to meet you before I even asked. Good luck in there. Come see me back at the office if you want to...<</say>>
<<narrate>>She looks at $krissy.name.<</narrate>>
<<say "gsec">>...you know. He's waiting in the kitchen. Second door on the left. See you later.<</say>>
<<say "krissy">>Just can't keep it in your pants can you, $krissy.calls?<</say>>
<<narrate>>She sighs.<</narrate>>
<<say "krissy">>Come on, let's go convince $howard.name.<</say>>
<<narrate>>The two of you head toward the kitchen.<</narrate>>
<<button "Continue" cabinet>>
<<temp "howard-pro01">>
<</button>>
<<case "howard-pro01">>
<<taskdone "cabmeet">>
<<block "east/howard01.jpg">>
<<say "krissy">>$howard.name, great to see you again!<</say>>
<<narrate>>There's a large banging noise as his coffee cup falls to the counter.<</narrate>>
<<say "howard">>$krissy.name?! Wow. Gosh. I can't believe it. It's so great to see you. What are you doing here? Where have you been?<</say>>
<<say "krissy">>Sorry $howard.name, business call. This is my $krissy.you.<</say>>
<<say "mc">>Nice to finally meet you.<</say>>
<<say "howard">>Finally meet me? Well son, any friend of $krissy.name's is a friend of mine. Listen I'm meant to be meeting someone any minute now, let me just call my envoy to cancel that and—<</say>>
<</block>>
<<say "krissy">>It's him you're meeting, $howard.name. I'm here with him.<</say>>
<<narrate>>There's a look of confusion on his face.<</narrate>>
<<say "howard">>You're $alias, the chap who helped $gsec.name look into $gerald.name's prostitution ring?<</say>>
<<say "mc">>That's right. However, there's a bit more to it than that. That's not really my name.<</say>>
<<narrate>>He looks at you cautiously, his hand fidgeting with something.<</narrate>>
<<say "krissy">>A panic alarm, really $howard.name? How long have we known each other? What happened to a friend of $krissy.name is a friend of yours?<</say>>
<<narrate>>He sighs.<</narrate>>
<<say "howard">>Yes... yes, sorry. Of course.<</say>>
<<narrate>>He places his panic button onto the counter, unused, and slides it over to $krissy.name.<</narrate>>
<<say "krissy">>I appreciate the gesture $howard.name.<</say>>
<<say "howard">>So may I ask you real name, son? And what is it you want?<</say>>
<<say "mc">>Okay, first. Please don't freak out, I'm here to broker peace. I think you and I want the same things. My name is $name. I'm the patron your city is currently looking to destroy.<</say>>
<<narrate>>There's a look of fear in his eyes. They dart to the panic button.<</narrate>>
<<say "krissy">>$howard.name. We are not a danger. I can see you starting to panic. Take a deep breath. If we were here to harm you, would we be introducing ourselves this way?<</say>>
<<say "mc">>Let me clarify the situation with the prostitution first. The women are well looked after and are in the job of their own free will.<</say>>
<<if $east.coffee == "threesome">>
<<say "mc">>Though there are some unsettling rumors within $gerald.name's workforce that the successful ones get sold off like property. I'm asking $va.name to look into that.<</say>>
<<say "howard">>$va.name? She knows you're here? I don't trust that woman!<</say>>
<<say "mc">>Honestly, I don't either. She wants power, so right now removing $gerald.name means our goals aligned. She is the lesser of two evils.<</say>>
<</if>>
<<block "east/howard02.jpg">>
<<say "krissy">>Are you paying attention $howard.name? Look at the good he's trying to achieve.<</say>>
<<say "howard">>And you're not here for revenge for the former patron?<</say>>
<<say "mc">>I don't know what to believe with the stories between you and $voice.name...<</say>>
<<narrate>>He winces at the mention of her name.<</narrate>>
<<say "mc">>...but my concern is ensuring my friends are safe. I do not want any bloodshed.<</say>>
<</block>>
<<say "howard">>And what of the people here? The tributes we send the champions. The poor live without so that your champions can live in luxury.<</say>>
<<say "mc">>We have a working gateway, $howard.name, we don't need the tribute. And we can help your people. You can use my Gateway freely.<</say>>
<<if $east.josie > 2>>
<<say "mc">>And I think you may need to look within regards the poor living without. The milk doesn't come to us, but goes to your wealthy.<</say>>
<<narrate>>He looks a bit shocked.<</narrate>>
<</if>>
<<say "howard">>So you expect our people to just forget decades of wrongdoing?<</say>>
<<say "mc">>No. I realize this will take time and people won't be convinced overnight. But the door is open, $howard.name. We can work together to avoid bloodshed. I just need your help in the upcoming cabinet meeting.<</say>>
<<narrate>>He pauses, lost in thought.<</narrate>>
<<if $east.cucked > 2>>
<<say "mc">>I also know about your plans for <i>Sunset Hope</i>. I will not impede your people repopulating the town at the original gateway. Though of course, they will need to live peacefully with my companions.<</say>>
<<say "howard">>How did you find out about that? No... it doesn't matter. You'd seriously just let us stroll back in like nothing happened?<</say>>
<</if>>
<<say "mc">>Do remember, $howard.name. Your quarrel was with $voice.name, not I. I will be frank, she's free and you will have to work through that with her if you wish to coexist. But I will ensure the safety of your people.<</say>>
<<say "howard">>I need to think about this. I won't tell the others you're here for now. I'll make my intentions known at the cabinet meeting.<</say>>
<<say "krissy">>But $howard.name!<</say>>
<<say "howard">>No, $krissy.name. I know people think I'm a coward, and that's fine. But when it comes to the lives of my people, I will not be bullied into any decision by you, $gerald.name or anyone else. There's a lot I need to consider. For what it's worth, I believe you. But, I need time.<</say>>
<<say "mc">>I understand, thank you.<</say>>
<<narrate>>As you're leaving, $krissy.name turns to you.<</narrate>>
<<say "krissy">>That's it?<</say>>
<<say "mc">>We're here to broker peace, $krissy.refer. That's it. Now we just have to trust in him to make the right decision.<</say>>
<<button "Continue" easthub>>
<<set $cabmet = 1>>
<<set $east.howardmeet = 2>>
<<time 3>>
<</button>>
<<case "krissyhoward">>
<<think "mc">>Okay, so let's see if she's convinced him enough for him to agree tonight.<</think>>
<<narrate>>As your hand grabs the handle you hear $howard.name's voice, a little muffled through the door.<</narrate>>
<<say "howard">>You know I always had a thing for blondes, $krissy.name.<</say>>
<<say "krissy">>And just a thing for me in general, I seem to recall.<</say>>
<<think "mc">>Fuck, I can see where this is going. What should I do?<</think>>
<div id="replace">
<<choices>>
<<link "Stop it">>
<<replace "#replace">>
<<think "mc">>I don't have to make it obvious, just head in like I'm wanting to discuss things normally and hope they're still dressed!<</think>>
<<narrate>>You take a deep breath then walk into the room. Both of them regard you with a look of annoyance but otherwise say nothing.<</narrate>>
<<say "mc">>I was hoping we could discuss things a little more, $howard.name.<</say>>
<<narrate>>$krissy.name rolls her eyes.<</narrate>>
<<think "mc">>Phew, looks like I made it in time.<</think>>
<<narrate>>The three of you spend some time discussing the state of affairs. You're doubtful you made any gains with $howard.name and feel like you were hashing over old ground.<</narrate>>
<<if $tempvar3 == "east3">>
<<cont "easthub" "" 3>>
<<else>>
<<button "Continue" east-charity>>
<<temp $tempvar3>>
<</button>>
<</if>>
<</replace>>
<</link>><br>
<<link "Leave them to it">>
<<replace "#replace">>
<<think "mc">>I don't want to know about it, but I'm not gonna deny $krissy.refer her fun, whether that makes me uncomfortable or not.<</think>>
<<button "Continue" east-charity>>
<<temp $tempvar3>>
<<set $tempvar3 = "nowatch">>
<</button>>
<</replace>>
<</link>><br>
<<link "Watch them" eastsex>>
<<temp "krissyhoward">>
<</link>>
<</choices>>
</div>
<</switch>><<switch $east.sec>>
<<case 1>>
<<block "east/sec01.jpg">>
<<say "sec">>$alias! I was hoping you'd visit again! You really do save me from the boredom.<</say>>
<<say "mc">>I couldn't resist staying away. May I ask, what do you do here?<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "sec">>Honestly, there's not a lot to do here. It gets kinda boring. I basically just manage appointments for the cabinet and deal with low level complaints and issues from the public.<</say>>
<<say "mc">>Sounds important!<</say>>
<</block>>
<<say "sec">>Oh, certainly. But doesn't mean it isn't boring. But you're here to save me from that now!<</say>>
<<narrate>>You spend a good amount of time with $sec.name, but whenever you try to talk about her work, she brushes you off explaining it's boring.<</narrate>>
<<think "mc">>It feels kinda bad to use her, but she may very well have some decent information. Besides, spending time with a beautiful woman isn't really a bother!<</think>>
<<button "Continue" easthub>>
<<set $east.sec++>>
<<time 3>>
<</button>>
<<case 2>>
<<block "east/sec02.jpg">>
<<say "sec">>$alias! You're starting to be a regular here.<</say>>
<<say "mc">>What can I say? There's something extremely alluring that keep bringing me back.<</say>>
<<narrate>>She grins from ear to ear.<</narrate>>
<<say "mc">>Got a lot on today?<</say>>
<<say "sec">>Ugh. Unfortunately, yes. $va.name has us all doing an audit.<</say>>
<</block>>
<<say "mc">>What for?<</say>>
<<say "sec">>I don't know. Some bullshit excuse about irregularities or something. It's basically ground everyone to a halt.<</say>>
<<say "mc">>You know what she's looking for?<</say>>
<<say "sec">>Honestly, knowing her, she'll be after some dirt of the other cabinet members.<</say>>
<<say "mc">>Think she'll find any?<</say>>
<<narrate>>She leans over to you.<</narrate>>
<<say "sec" "" "(Whispering)" "whisper">>I've long suspected $gerald.name's assistants have been putting through... questionable expenses.<</say>>
<<say "mc">>Oh really? Like what?<</say>>
<<say "sec" "" "(Whispering)" "whisper">>Shhh, keep your voice down! But let's just say they entertain an awful large number of guests at the <i>Glitter Box Gentleman's Club</i>. Almost every night!<</say>>
<<say "mc" "" "(Whispering)" "whisper">>Ha, dirty dogs!<</say>>
<<think "mc">>Given what we know of him, I wouldn't be surprised if it's all just for $gerald.name himself. I'll check it out.<</think>>
<<narrate>>Despite her complaining about how busy she is, she manages to spend time gossiping with you while lazily typing something into the computer here and there.<</narrate>>
<<set $intel.gerald.pushUnique('His team submit a lot of expenses for the <i>Glitter Box Gentleman\'s Club</i>.')>>
<<button "Continue" easthub>>
<<set $east.sec++>>
<<time 3>>
<</button>>
<<case 3>>
<<block "east/sec01.jpg">>
<<say "mc">>How are you today, $sec.name?<</say>>
<<say "sec">>Well, if it isn't my favorite visitor.<</say>>
<<say "mc">>How'd the audit go?<</say>>
<<say "sec">>Nothing really came from it to be honest. Not sure how, but even the <i>Glitter Box</i> expenses didn't raise any concerns.<</say>>
<<say "mc">>Oh well, at least you're not up to your eyes in it anymore.<</say>>
<</block>>
<<say "sec">>I was hoping you'd come today, though. I've got a surprise for you.<</say>>
<<say "mc">>Oh?<</say>>
<<say "sec">>You remember you said you were looking around at the architecture? Well, I've asked a colleague if she'd be willing to show you around.<</say>>
<<think "mc">>I barely even remembered that excuse.<</think>>
<<say "sec">>I've buzzed her and she'll be ready in a minute, but I was thinking...<</say>>
<<narrate>>She fidgets nervously.<</narrate>>
<<say "sec">>I... uhhh... I like to play baseball in the evenings. Maybe you'd like to join me?<</say>>
<<think "mc">>I thought she was gonna ask me out for dinner! Well, this could work just as well.<</think>>
<<say "mc">>I think I'd quite like that.<</say>>
<<narrate>>She does a little victory fist pump.<</narrate>>
<<say "sec">>Great, follow me, I'll introduce you.<</say>>
<<narrate>>You follow her into a room, the walls adorned with bookshelves.<</narrate>>
<<block "east/tour01.jpg">>
<<say "sec">>$alias, this is <<textbox "$tour.name" Gabriella>>.<</say>>
<<think "mc">>Holy shit, she's crazy hot. This may not be so bad after all!<</think>>
<<narrate>>She looks you up and down, almost with a look of disgust.<</narrate>>
<<say "sec">>Okay, I'll see you later. Play nice!<</say>>
<<narrate>>The other woman simply rolls her eyes.<</narrate>>
<<button "Continue" east-cityhall>>
<<set $east.sec++>>
<</button>>
<</block>>
<<case 4>>
<<meet "tour">>
<<block "east/tour02.jpg">>
<<say "tour">>God, I hate that bitch.<</say>>
<<say "mc">>I... uhhh...<</say>>
<<say "tour">>Oh it's mutual don't worry. The fact she asked me to do this had me wondering what the fuck.<</say>>
<<say "mc">>Well, I was checking out the architecture.<</say>>
<<say "tour">>Yeah, yeah. Whatever. Read a book or something.<</say>>
<</block>>
<<say "mc">>So you're not gonna give me a tour?<</say>>
<<say "tour">>Am I fuck. I just wanted to see what she was up to. I mean, just who the fuck are you anyway? Some random guy turns up off the street and she wants me to fucking give him a tour so he can look at the damn architecture? Who does that shit?<</say>>
<<say "mc">>Right. Well, I'd like to say it was a pleasure to meet you, honestly you seem a delight, but I think I'm just gonna head out. See if there's somewhere nice I can take $sec.name for dinner after her game.<</say>>
<<narrate>>As you turn to leave, she grabs you arm.<</narrate>>
<<say "tour">>Wait. This is priceless. Are you dating that bitch?<</say>>
<<say "mc">>Well, we've not had the first date yet, but kinda hoping yeah.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "tour">>Oh. This is perfect. Maybe I misjudged you. She just riles me up. Come, sit with me. I'll tell you about the architecture or whatever.<</say>>
<<think "mc">>Ok, weird change of pace there. But fuck it, I can cope with a bitch for a few hours if I may learn something useful. She can't be as bad as $anna.name, after all!<</think>>
<<narrate>>As soon as you're sitting she starts stroking your thigh.<</narrate>>
<<think "tour">>This is perfect, she'll be taking her break in here pretty soon!<</think>>
<<say "tour">>So tell me, did you really want to see the building? Or would you prefer to do something a little more... fun?<</say>>
<<narrate>>She maintains eye contact as her hand runs up your thigh then rests on your groin.<</narrate>>
<<think "mc">>Holy shit. She's a bitch, but she's bloody hot. It can't imagine $sec.name will be cool with it if she ever finds out, though.<</think>>
<div id="replace">
<<choices>>
<<link "Do it">>
<<replace "#replace">>
<<narrate>>She gives you a dirty look as you stand up.<</narrate>>
<<say "tour">>You're really gonna say no to thi—<</say>>
<<narrate>>You drop your trousers.<</narrate>>
<<center "east/tour04.jpg">>
<<say "tour">>Oh fuck me. Yes please~!<</say>>
<<narrate>>She leans forward while grabbing your cock.<</narrate>>
<<set $east.tour = "yes">>
<<button "Continue" eastsex>>
<<set $east.sec++>>
<<temp "tour">>
<</button>>
<</replace>>
<</link>><br>
<<link "Push her away">>
<<replace "#replace">>
<<narrate>>You push her hand away.<</narrate>>
<<block "east/tour03.jpg">>
<<say "mc">>I'm sorry, $tour.name, but I think there's a misunderstanding here. I'll just be on my way.<</say>>
<<say "tour">>Seriously? You don't wanna fuck me?<</say>>
<<say "mc">>You're smoking hot for sure, but you just seem like an awful person.<</say>>
<<say "tour">>Oh fuck off. Like you even know me. Just run off and play house with your dumb fucking bitch.<</say>>
<<narrate>>She storms off.<</narrate>>
<</block>>
<<set $east.tour = "no">>
<<think "mc">>Well, whatever. Guess that leaves me alone in here with all these books. I'll see if I can find anything useful.<</think>>
<<narrate>>After a couple of hours, and a brief visit from $sec.name, you leave, having found nothing of value.<</narrate>>
<<button "Continue" easthub>>
<<set $east.sec++>>
<</button>>
<</replace>>
<</link>><br>
<</choices>>
</div>
<<case 5>>
<<if $east.tour == "no">>
<<if $east.datedsec == undefined>>
<<block "east/sec02.jpg">>
<<say "sec">>Don't forget to come see me at the ball field, $alias!<</say>>
<<say "mc">>How could I forget? I'm looking forward to it!<</say>>
<<narrate>>You spend some time chatting and flirting with $sec.name, but learn nothing new.<</narrate>>
<</block>>
<<else>>
<<block "east/sec02.jpg">>
<<say "sec">>I really enjoyed our time together, $alias. But you should know I'm not looking for anything serious.<</say>>
<<think "mc">>Not like I was either!<</think>>
<<say "mc">>Don't worry about it, I understand. I'm happy to just have a little fun.<</say>>
<<narrate>>You spend some time chatting and flirting with $sec.name, but learn nothing new.<</narrate>>
<</block>>
<</if>>
<<narrate>>As you're leaving, $tour.name accosts you, pushing you into an office.<</narrate>>
<<block "east/tour02.jpg">>
<<say "tour">>Did you seriously turn me down for that bitch?<</say>>
<<say "mc">>Can you just leave me be?<</say>>
<<say "tour">>God I hate her. I need to get back at her. Please. Just fuck me already!<</say>>
<<say "mc">>Why does it mean so much to you?<</say>>
<<say "tour">>Let's just say she and I have a... difficult relationship. What can I do to convince you?<</say>>
<</block>>
<<say "mc">>Do you know where any of the cabinet are?<</say>>
<<say "tour">>That's kinda my job. Yeah. You got some weird and wacky business proposal for them? You know what I don't care. You fuck me and I'll book you an appointment with $eva.name. The others are booked up for a long while.<</say>>
<<think "mc">>Shit, have I been working the wrong employee all along? Do I want to pimp myself out for it? Then again, do I care, look at her, she's fucking gorgeous.<</think>>
<div id="replace">
<<choices>>
<<link "Do it">>
<<replace "#replace">>
<<say "mc">>I'm game.<</say>>
<<narrate>>You drop your trousers.<</narrate>>
<<center "east/tour04.jpg">>
<<say "tour">>Oh fuck me. Yes please~!<</say>>
<<narrate>>She leans forward while grabbing your cock.<</narrate>>
<<set $east.tour = "meeting">>
<<button "Continue" eastsex>>
<<temp "tour">>
<</button>>
<</replace>>
<</link>><br>
<<link "Push her away">>
<<replace "#replace">>
<<block "east/tour03.jpg">>
<<say "mc">>I'm sorry, $tour.name, but I think there's a misunderstanding here. I'll just be on my way.<</say>>
<<say "tour">>Seriously? You don't wanna fuck me?<</say>>
<<say "mc">>You're smoking hot for sure, but you just seem like an awful person.<</say>>
<<say "tour">>Oh fuck off. Like you even know me. Just run off and play house with your dumb fucking bitch.<</say>>
<<narrate>>She storms off.<</narrate>>
<</block>>
<<set $east.tour = "no">>
<<think "mc">>Well, whatever. Guess that leaves me alone in here with all these books. I'll see if I can find anything useful.<</think>>
<<narrate>>After a couple of hours, and a brief visit from $sec.name, you leave, having found nothing of value.<</narrate>>
<<button "Continue" easthub>>
<</button>>
<</replace>>
<</link>><br>
<</choices>>
</div>
<<else>>
<<block "east/tour05.jpg">>
<<say "mc">>No $sec.name around?<</say>>
<<say "tour">>No, the bitch is having a fucking mental health day or some shit. So I'm stuck here covering. Fucking worth it, though.<</say>>
<<say "mc">>I need to know. Why were you so intent on her seeing us together?<</say>>
<<say "tour">>That whore stole my husband!<</say>>
<<say "mc">>Holy shit. Okay, I did not see that coming.<</say>>
<</block>>
<<think "mc">>Though if she was like this, I may understand a little why.<</think>>
<<narrate>>She throws her hands in the air.<</narrate>>
<<say "tour">>I know that look. No, I'm not normally a bitch. Just... anything to do with her fucking sends me over the edge.<</say>>
<<say "mc">>I see. Wow.<</say>>
<<say "tour">>Anyway, I'm sorry for having you take part in that, but you seemed to enjoy it at least. So what were you hoping to get out of her?<</say>>
<<say "mc">>Oh, nothing I was just—<</say>>
<<say "tour">>Bullshit. We get your type in here every now and again. Usually want something from the cabinet and think going through us can achieve that. I'm sure you enjoyed her company or whatever, but you didn't crawl in off the street to look at fucking architecture now did you?<</say>>
<<say "mc">>Fine. Originally I was hoping to get to see one the cabinet so I—<</say>>
<<say "tour">>Yeah, you don't need to pitch whatever hair-brained scheme you've concocted to me; save it for them. Kind of amusing though, she may do the odd booking for them, but it's me you should have been cosying up to. I have direct access to all their diaries and can book you an appointment directly. Tell you what, you did me a solid. I'll do you one back. $eva.name is available most evenings this week at 18:00. The others are unavailable. Just come here at 18:00.<</say>>
<<say "mc">>Fucking hell. Thanks $tour.name!<</say>>
<<say "tour">>No worries. If it's something fucked up, I'll just blame it on $sec.name.<</say>>
<<narrate>>You spend some time talking with her. Turns out she's not the massive bitch she first portrayed herself to be, well outside of anything involving $sec.name at least, she's not so bad. However, you find nothing further of value.<</narrate>>
<<if $cabinet == 0>>
<<think "mc">>Shit, I just realized. That meeting is too late. The cabinet meeting is today.<</think>>
<</if>>
<<button "Continue" easthub>>
<<set $intel.eva.pushUnique(State.variables.eva.name+' is available in City Hall at 18:00.')>>
<<set $east.tour = 1>>
<<time 3>>
<</button>>
<</if>>
<<case 6>>
<<think "mc">>I've already gained everything I can there.<</think>>
<<button "Continue" easthub>>
<</button>>
<<default>>
<<block "east/sec01.jpg">>
<<say "sec" "Secretary">>May I help you?<</say>>
<<say "mc">>I was just looking around, I'm interested in the architecture of the place. But, I think I may have spotted something far more alluring now.<</say>>
<<narrate>>She smiles nervously.<</narrate>>
<<say "sec" "Secretary">>Sir. This is a government building, you probably shouldn't stick around unless you have good reason.<</say>>
<<say "mc">>Oh, I was just on my way out, but... I think you've given me a reason to stick around a little longer.<</say>>
<</block>>
<<say "sec" "Secretary">>Oh, and what is that, sir?<</say>>
<<say "mc">>Would you mind if I kept you company for a little while?<</say>>
<<narrate>>She looks back at her desk, then at you, as if weighing up her options.<</narrate>>
<<say "sec" "Secretary">>I'm <<textbox "$sec.name" Ursula>>, nice to meet you. May I ask your name?<</say>>
<<if $alias == undefined>>
<<think "mc">>I should probably use an alias while I'm here.<</think>>
<</if>>
<<say "mc">>Of course, my name is <<if $alias == undefined>><<textbox "$alias" Frank>><<else>>$alias<</if>>. Believe me, the pleasure is all mine.<</say>>
<<say "sec" "Secretary">>Work is... slow at the moment. I could spare you a few minutes.<</say>>
<<narrate>>You flirt with her and end up spending a lot longer than a few minutes with her. Not once does she do any work. Unfortunately you learn nothing of value.<</narrate>>
<<button "Continue" easthub>>
<<meet "sec">>
<<set $east.sec = 1>>
<<time 3>>
<</button>>
<</switch>><<set _switch = $east.library>>
<<if $tempvar2 == "ne">>
<<set _switch = $tempvar3>>
<</if>>
<<switch _switch>>
<<case 1>>
<<narrate>>Enthusiastically, she starts telling you the story.<</narrate>>
<<block "east/lib02.jpg">>
<<say "lib">>The patron allowed the travelers to build a town around her Gateway and settle in her domain. But the evil patron had another agenda; she was taking citizens and transforming them into all sorts of abominations for her own sadistic pleasure.<</say>>
<<say "lib">>The founder started to piece together what was happening. Many of the citizens residing at what we now refer to as <i>Sunset Hope</i> were going missing or returning as clumps of goo and bones. Upon discovering this, she devised a plan.<</say>>
<<say "lib">>She knew they could not flee, for the patron would not allow a mass exodus. So, she met with the other tour guides and between them they decided that only by channeling their powers together could they hope to defeat the evil patron.<</say>>
<<say "lib">>The founder worked closely with the patron, gaining her trust and admiration so that she may be given more power. Only once the patron had shared with her access to all her abilities could the founder destroy her.<</say>>
<</block>>
<<say "lib">>She had one final meeting with the tour guides where they channeled their powers together and the founder finally thwarted the evil patron. But at the gravest of costs. Knowing she could never fully destroy the patron, she sent herself into the Gateway along with the patron so that she could keep her inside and at bay. The patron was cunning and although locked within the Gateway her power still seeped out from time to time.<</say>>
<<say "lib">>This led to the summoning of her champions. But as her power was weakened, the champions were without cause and unknowing of what their master sought. They tried to befriend and integrate with the residents. But we feared what the champions may one day become if they learned the truth, and thus the plan to move out to <i>New Eden</i> was born and the champions, who they had dubbed strays, were left behind.<</say>>
<<say "lib">>But soon they followed us. We don't know whether they learned the truth or had their own sadistic plans, but they began to demand tribute for the city's safety which we must pay. So while <i>New Eden</i> lives peacefully for now it is tenuous at best. Many luxuries are held back from the citizenship so that they can be given as tribute to the champions.<</say>>
<<set _who = State.variables[$awaypartyeast]>>
<<think "mc">>This whole story just feels off. $voice.name may be no saint, but surely the council would have put a stop to this. From what I know of two types of transformations, others wouldn't be aware if it was done via Central. They'd just believe the person was always like that. $voice.name wouldn't have been able to do it without Central as that requires willing travelers. I get the story may be embellished but the core basis for her being evil just doesn't align with what I know of transformations.<</think>>
<<button "Continue" east-library>>
<<if $tempvar2 != "ne">>
<<set $east.library = 2>>
<<else>>
<<set $tempvar3 = 2>>
<</if>>
<</button>>
<<case 2>>
<<left2 "east/lib03.jpg">>
<<say "lib">>Reflecting on the atrocities afforded to our people?<</say>>
<<if $tempvar2 != "ne">>
<<say "mc">>Something like that. Tell me, what was the founder called?<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say "lib">>Very funny.<</say>>
<<narrate>>You stare back at her blankly.<</narrate>>
<<say "lib">>Really? Well, her name is not known to us commonfolk. I daresay only the original tour guides and those who were close to her know.<</say>>
<<say "mc">>Why?<</say>>
<<say "lib">>We do not know how patron powers work. There is a fear speaking the patron's name or that of the founder stuck within the gateway with her could grant her power. It's hypothesized that's how her champions came to be.<</say>>
<<think "mc">>That sounds absurd! Is she listening to herself?<</think>>
<<say "mc">>But you know the patron's name?<</say>>
<<say "lib">>Of course. We all came through her gateway; she was once considered a benevolent and caring patron. Her name was not taboo until her evil ways came to be known.<</say>>
<<say "mc">>Something like that...<</say>>
<<narrate>>She gives you a solemn look.<</narrate>>
<<say "lib">>We believe her final curse was to make our people unable to reproduce.<</say>>
<<say "mc">>Nah, that's just because male travelers weren't originally male.<</say>>
<<left2 "east/lib04.jpg">>
<<say "lib">>Excuse me?<</say>>
<<think "mc">>Oh, shit.<</think>>
<<say "mc">>Oh, just something I heard. That all travelers start female and those transformed to male can't reproduce.<</say>>
<<narrate>>She scoffs.<</narrate>>
<<say "lib">>Complete nonsense. People need to educate themselves; there really are some crazy stories out there.<</say>>
<<say "mc">>uh, yeah. Sure.<</say>>
<<think "mc">>I get that $voice.name may be no saint. But people really buy these stories?<</think>>
<<else>>
<<say "mc">>Something like that... and how does... recent events change your perception of the story?<</say>>
<<say "lib">>Well, apparently there's a new patron and allegedly the luxury goods weren't really going to the champions at all. The legitimacy of the latter parts of this story are therefore under scrutiny at the moment.<</say>>
<<say "mc">>But not the parts suggesting $voice.name was evil?<</say>>
<<narrate>>She gasps.<</narrate>>
<<say "lib">>Sorry, I know it's no longer taboo to say her name... but it still feels wrong to hear it. Officially, the cabinet are investigating the entire thing based on new evidence. It has of course thrown many of our beliefs into disarray, and the more fringe elements, on both sides, become more vocal.<</say>>
<<say "mc">>I see. That's really not what I intended. Thank you for your time.<</say>>
<<say "lib">>No problem.<</say>>
<</if>>
<<say "mc">>Thank you for your time.<</say>>
<<say "lib">>My pleasure. It's always good to meet someone interested in our history. My name's <<textbox "$lib.name" Matilda>>, by the way. Do visit again if you need anything.<</say>>
<<if $tempvar2 == "ne">>
<<narrate>>As you're walking away, you hear her mumbling.<</narrate>>
<<say "lib" "" "(Mumbling)" "whisper">>Not as he intended? What...?<</say>>
<</if>>
<<narrate>>As you're heading out the door, a young woman stops you.<</narrate>>
<<left2 "east/res01.jpg">>
<<say "res">>What did you think of the story?<</say>>
<<say "mc">>I... uhhh...<</say>>
<<narrate>>You try to find the right words to hide your disbelief but your mind draws a blank.<</narrate>>
<<say "res">>You don't believe them, do you?<</say>>
<<if $tempvar2 == "ne">>
<<say "mc">>I don't know what to believe. I've only known $shalina.name a short time, but her side of the story is very different, and her champions definitely aren't evil.<</say>>
<<say "res">>You've spoken to her... recently?<</say>>
<<think "mc">>I don't really want to make a scene here, people will learn who I am soon enough, I imagine everyone close to the cabinet has already been briefed, but I'd better just move on. I can come back and talk to her should I decide to reveal who I am.<</think>>
<<say "mc">>Sorry, I need to go.<</say>>
<<say "res">>Wait. Wait. Just know you're not alone. My name is <<textbox "$res.name" Josie>>. I'm here most days if you ever want to talk privately away from prying ears.<</say>>
<<say "mc">>Nice to meet you. But I really must go.<</say>>
<<button "Continue" nestuff>>
<<time 3>>
<<meet "lib">>
<<meet "res">>
<<event "res" "step">>
<</button>>
<<else>>
<<say "mc">>Sorry, I need to go.<</say>>
<<say "res">>Wait. Wait. Just know you're not alone. My name is <<textbox "$res.name" Josie>>. I'm here most days if you ever want to talk privately away from prying ears.<</say>>
<<say "mc">>Nice to meet you. But I really must go.<</say>>
<<narrate>>You leave the library as quickly as you can.<</narrate>>
<<think "mc">>I have no idea what to make of this. Maybe I should ask the others in the morning.<</think>>
<<button "Continue" easthub>>
<<time 3>>
<<meet "lib">>
<<meet "res">>
<<set $east.library = 3>>
<</button>>
<</if>>
<<case 4>>
<img @src="setup.img+'locations/lib.jpeg'">
<<choices>>
<<if ($east.matilda == undefined || $east.matilda < 4) && $east.matilda != 2>>
<<link "Speak to $lib.name" east-library>>
<<if $east.matilda == undefined>>
<<set $east.matilda = 1>>
<</if>>
<<set $east.library = "mat"+$east.matilda>>
<</link>><br>
<</if>>
<<if $east.josie == undefined>>
<<link "Speak to $res.name" east-library>>
<<if $east.josie == undefined>>
<<set $east.josie = 1>>
<</if>>
<<set $east.library = "jos"+$east.josie>>
<</link>><br>
<</if>>
<<link "Never mind" eaststuff>><</link>>
<</choices>>
<<case "jos1">>
<<block "east/res02.jpg">>
<<say "res">>You came back!<</say>>
<<say "mc">>Hi $res.name. Listen, I'm not saying I believe or disbelieve anything at the minute, but I'm willing to hear you out.<</say>>
<<narrate>>She beams.<</narrate>>
<<say "res">>Great, come, sit. Let me tell you the truth!<</say>>
<<narrate>>She glances around to make sure nobody is within earshot, pulls her chair smack-bang next to yours then proceeds to speak quietly.<</narrate>>
<</block>>
<<say "res">>So, I heard you refer to the previous patron by name.<</say>>
<<say "mc">>Yeah, sorry, I didn't mean to it kinda just slipped it.<</say>>
<<say "res">>Oh, nah. Don't worry about it. I've used her name loads of times, yet there's been no new champions.<</say>>
<<narrate>>You raise an eyebrow.<</narrate>>
<<say "res">>Honestly, how anyone believes it is beyond me. But it was that very part of the story that made me question the entire thing.<</say>>
<<say "mc">>Okay...<</say>>
<<say "res">>And the whole thing is a bunch of baloney! Can't speak the founder's name? Ridiculous. I had assumed she wasn't even real to be honest, some mythical being to create blind followers. Almost like a cult. But no, she's real. The champions are real too, but not necessarily evil.<</say>>
<<say "mc">>Yeah...<</say>>
<<say "res">>But get this. The wealthy elite apparently still have milk.<</say>>
<<say "mc">>Eh? What does that have to do with it?<</say>>
<<say "res">>Well, when was the last time you had milk?<</say>>
<<say "mc">>I don't know. A few days ago?<</say>>
<<narrate>>She looks at you confused.<</narrate>>
<<say "res">>You're serious, aren't you? Where the hell did you get milk from? Are you... no way, are you?<</say>>
<<think "mc">>Shit... milk is gonna be the thing that gives me away?!<</think>>
<<say "res">>You're a fucking rich kid?<</say>>
<<think "mc">>What.<</think>>
<<block "east/res03.jpg">>
<<say "res">>Wow. So milk really is being given to the rich. We were always told it was tribute to the champions. I get we don't have enough cattle to produce milk for everyone, but the fucking rich kids are hoarding it?<</say>>
<<say "mc">>I... uhhhh...<</say>>
<<say "res">>You've got that look of disbelief again. The one you had when talking with $lib.name. Never play poker, by the way. So you're not a rich kid? Then how the hell did you get that milk? I can tell you were being serious.<</say>>
<<say "mc">>Listen, I gotta go.<</say>>
<<narrate>>You get up and leave. Quickly. As you get toward the exit, $lib.name stops you.<</narrate>>
<</block>>
<<say "mc">>Right. Thanks for the warning.<</say>>
<<narrate>>You scurry out of the building.<</narrate>>
<<think "mc">>Shit. Fucking milk? I need to avoid her. She spells trouble.<</think>>
<<button "Continue" east-library>>
<<set $east.josie++>>
<<set $east.library = "jos"+$east.josie>>
<</button>>
<<case "jos2">>
<<say "res">>You're not from <i>New Eden</i>, are you?<</say>>
<<narrate>>You jump at her voice.<</narrate>>
<<say "mc">>The fuck? Listen I—<</say>>
<<say "res">>And clearly you're not here to kill us otherwise that'd be done. What are you? A champion? Thought they were all female?<</say>>
<<say "mc">>I really need to go.<</say>>
<<say "res">>I'll keep following you. $lib.name may think I'm just some computer nerd, but I was trained by the best. I served directly under Thomas as his envoy. You can't escape me.<</say>>
<<say "mc">>What the hell?<</say>>
<<think "mc">>Fuck, is she like $am.name? Shit, and $britt.name is at the camp. The hell do I do?<</think>>
<<say "res">>Let's talk. I think we can help each other out.<</say>>
<<think "mc">>Shit. I don't really have a choice here, but given she's not tried to kill me or otherwise let anyone else know, it's probably safe... right? Fuck, I hope so.<</think>>
<<say "res">>I have an apartment just down the road. Come on.<</say>>
<<say "mc">>To your apartment? Is there not somewhere more public—<</say>>
<<say "res">>You'd already be dead if I wanted you that way. We need to speak privately.<</say>>
<<think "mc">>The hell have I got myself into here?<</think>>
<<narrate>>You follow her to her apartment.<</narrate>>
<<say "res">>Make yourself at home, I'm just gonna get changed.<</say>>
<<think "mc">>It's scary how her entire demeanor changed.<</think>>
<<button "Continue" east-library>>
<<set $east.josie++>>
<<set $east.library = "jos"+$east.josie>>
<</button>>
<<case "jos3">>
<<narrate>>She rushes back into the room a few minutes later and flings herself on the sofa.<</narrate>>
<<block "east/res05.jpg">>
<<say "res">>Right. So tell me everything. For starters, where are you from and what are you doing here?<</say>>
<<think "mc">>And now she seems super cheery? The hell is with this woman?<</think>>
<<say "mc">>First things first. Why haven't you tried to turn me over to the authorities or something?<</say>>
<<say "res">>Fine, fine. I guess I need to earn some trust too, huh? I hinted at it earlier, but I'm with a group of like-minded individuals who do not believe the stories the cabinet tell us. Thomas confided in me. The strays are not evil; they're people brought here without their consent and left without purpose.<</say>>
<<say "mc">>Sounds kinda bleak when you put it like that.<</say>>
<</block>>
<<say "res">>It is. So, my group tries to spread the word. We don't know how much of the stories are true, but we do know there are a lot of lies within them. Thomas confirmed the founder existed, and was indeed $voice.name's most trusted. He never suggested $voice.name wasn't evil, only that the champions she left behind weren't.<</say>>
<<say "mc">>Okay, so what else is false about the stories?<</say>>
<<say "res">>Nope. Your turn now. Where are you from; are you a champion? I thought they were only female.<</say>>
<<say "mc">>I am not a champion, but I am from out west.<</say>>
<<think "mc">>Probably leave out that I'm the damn patron for now.<</think>>
<<say "res">>Hmm, I guess with a patron they have a working Gateway, so you could have come from anywhere. But the question is, why?<</say>>
<<say "mc">>To broker peace. I do not wish my companions to be harmed, and if my Gateway can somehow help your people, I see no reason not to help each other. But, I needed to assess the situation here before meeting with the cabinet.<</say>>
<<say "res">><i>Your</i> Gateway?<</say>>
<<think "mc">>Fuck me.<</think>>
<<block "east/res04.jpg">>
<<say "res">>Okay. Okay. A male patron. That's new. You mentioned male travelers couldn't reproduce? How do you know that?<</say>>
<<think "mc">>She seems to have taken that well.<</think>>
<<say "mc">>A council member told me.<</say>>
<<say "res">>Council member?<</say>>
<<say "mc">>Ah, right. Yeah, I guess most travelers don't really know about them. The council oversee the gateway network and ensure the safety of travelers.<</say>>
<</block>>
<<narrate>>She pauses for thought.<</narrate>>
<<say "res">>Then $voice.name can't be evil, can she? They would have stopped her.<</say>>
<<say "mc">>I don't really know much about them myself. I'm relatively new to the job! But to my understanding, it's not that simple. You guys don't travel anymore. You settled and never left.<</say>>
<<say "res">>So...?<</say>>
<<say "mc">>The protocol, again I have a limited understanding, but the protocol is that you must return a traveler to their true form... well or one they knowingly choose I guess... before they travel back through the Gateway. Your people never did that.<</say>>
<<say "res">>What fucked up rule is that?<</say>>
<<narrate>>You simply shrug.<</narrate>>
<<button "Continue" east-library>>
<<set $east.josie++>>
<<set $east.library = "jos"+$east.josie>>
<</button>>
<<case "jos4">>
<<block "east/res04.jpg">>
<<say "res">>Okay, what do you need me to do?<</say>>
<<say "mc">>What do you mean?<</say>>
<<say "res">>I'm at your disposal. I want to help.<</say>>
<<say "mc">>I mean we're trying to find information about the cabinet members, ways to convince them to help us and how to meet them.<</say>>
<<say "res">>You want dirt? $va.name killed Thomas.<</say>>
<</block>>
<<say "mc">>Holy shit. What?<</say>>
<<say "res">>Yup. Made to look like an industrial accident. But I knew Thomas. There's no way he'd make that kind of error. It was right around the time he was readying himself to announce to the public the strays weren't bad people and that we should consider opening up our home to them.<</say>>
<<say "mc">>Holy shit. But why $va.name?<</say>>
<<say "res">>The timing was too perfect, she came out of nowhere and was suddenly popular with the younger crowd especially, only a week or two before his death.<</say>>
<<say "mc">>That doesn't mean she did it. Do you have any proof?<</say>>
<<say "res">>Oh, no. She wouldn't get her own hands dirty. But maybe her envoy...<</say>>
<<say "mc">>$am.name?<</say>>
<<block "east/res06.jpg">>
<<say "res">>You know her?<</say>>
<<say "mc">>Yes. She met us on the way in. $va.name knows we're here too. She presented herself as an ally and willing to help us convince the other cabinet members.<</say>>
<<say "res">>Do not trust her. She's a snake. She'll help only if it benefits her, otherwise you'll find a knife in your back.<</say>>
<<say "mc">>Well shit.<</say>>
<<narrate>>You look up the clock on the wall.<</narrate>>
<<say "mc">>Listen, I really do have to go this time. Would it be okay if I returned another time?<</say>>
<</block>>
<<say "res">>No. What are you talking about? I said I'm at your disposal. You tell me what to do, and I'll do it.<</say>>
<<narrate>>You scratch your chin.<</narrate>>
<<think "mc">>More hands wouldn't hurt... but I barely know this woman. Maybe she's deceiving me, what if she gives me fake information? On the other hand, if she wanted to cause me harm or hand me over to the cabinet, she could have done so multiple times by now. She said she was part of a group, though, maybe they could help.<</think>>
<<say "mc">>Okay, you mentioned you were part of a group of people of disbelievers. Can you rally them up to find others like you? If enough of the population start to question things, the cabinet might have to take action.<</say>>
<<say "res">>That's kinda what we've been doing. But maybe your presence will make it easier and mean I can finally get justice for Thomas!<</say>>
<<say "mc">>Probably best you don't mention me; I don't want word getting out yet. There's a cabinet meeting in $cabinet days. That's my chance to stop the war.<</say>>
<<say "res">>Hmm, so essentially keep doing what I've been doing?<</say>>
<<say "mc">>Yes, but now you can say you've spoken to the new patron and verified a few things.<</say>>
<<say "res">>I'll try... but it's gonna take some time to convince people on that scale. If you need me for anything else, though, you know where I live.<</say>>
<<button "Continue" easthub>>
<<set $east.josie++>>
<<set $east.library = 4>>
<<time 3>>
<<set $intel.va.pushUnique($res.name+ ' has accused ' + $va.name + ' of murdering former cabinet member, Thomas.')>>
<</button>>
<<case "mat1">>
<<block "east/lib01.jpg">>
<<say "lib">>Ah the gentleman with the crazy fantasies! What may I help you with today?<</say>>
<<say "mc">>I was wondering what you could tell me of the cabinet?<</say>>
<<say "lib">>Ah, looking to educate yourself? Good on you!<</say>>
<<narrate>>You nod politely, resisting the urge to snap at her.<</narrate>>
<<say "lib">>So the cabinet were originally the tour guides that helped defeat the evil patron. Their plan is what led to our safety, as I'm sure you're aware.<</say>>
<</block>>
<<say "mc">>And that made them the de-facto leaders?<</say>>
<<say "lib">>Initially, yes. They roused our spirits, brought the truth to our eyes, and concocted the plan of <i>New Eden</i> to begin with.<</say>>
<<say "mc">>Initially?<</say>>
<<say "lib">>Unfortunately Thomas died in a freak accident not so long ago. $va.name was a known person of the community and the citizenship voted her in to succeed him. Surely you recall that? The entire city was shook by his passing.<</say>>
<<say "mc">>Oh, yes. Of course.<</say>>
<<block "east/lib03.jpg">>
<<say "lib">>But $va.name continues in his stead, and is much better suited to the job than Thomas. He was certainly a hero, but in recent years his mental health had been deteriorating and he had become disillusioned.<</say>>
<<say "mc">>What do you mean by that?<</say>>
<<say "lib">>Between you and me, he was sympathizing with the strays! It was clearly a sign of his poor mental state. Imagine, one of the very heroes who saved our people suggesting that the core of our beliefs was untrue.<</say>>
<<say "mc">>Now that is certainly a shock!<</say>>
<</block>>
<<say "lib">>Whatever mental ailment befell him, for him to suggest that the evil patron was never our enemy and that the champions were anything less than evil was absurd.<</say>>
<<say "mc">>Of course. Of course.<</say>>
<<say "lib">>Sorry, I'm rambling. It was never made public knowledge for obvious reasons, but I used to work as part of Thomas' admin team.<</say>>
<<say "mc">>Wow. What do you think caused the change? And should you be telling—<</say>>
<<set _who = State.variables[$awaypartyeast]>>
<<say "lib">>You know...<</say>>
<<narrate>>She grins at you.<</narrate>>
<<say "lib">>I think I know the real reason you're asking these questions.<</say>>
<<think "mc">>What? Oh shit.<</think>>
<<block "east/lib05.jpg">>
<<say "lib">>And you flatter me. But you need not make such excuses to spend time with me. Tell me, what is it about me you desire most?<</say>>
<<think "mc">>Well that fucking came out of left-field. She thinks I've been asking her these questions just because I'm into her... and this is how she speaks to someone she's into? I mean, she is kinda hot. You know what, I can work with this, let's turn it up to 11.<</think>>
<<say "mc">>Honestly, it's difficult to pinpoint it. Your knowledge and intelligence beguile me, but your beauty and grace are like the icing on a decadent cake. You've got it all, and I can't help but find myself enchanted by you.<</say>>
<<narrate>>She turns away for a moment, almost embarrassed.<</narrate>>
<<say "lib">>Oh my. You're quite the romantic, aren't you? You're certainly my type. A lust for knowledge encased in a handsome shell, what's not to like?<</say>>
<</block>>
<<think "mc">>Damn, this patron shit really does provide the best perks.<</think>>
<<narrate>>She slips you a key.<</narrate>>
<<say "lib">>I work here late most nights... alone.<</say>>
<<narrate>>You take the key.<</narrate>>
<<think "mc">>Shit, this is gonna be fun. But also a key to the library? I wonder what information I can find on her computer when she's not around.<</think>>
<<say "mc">>Perhaps one night I might get a sudden thirst for more knowledge.<</say>>
<<narrate>>She gently strokes your arm.<</narrate>>
<<say "lib">>I hope that's not all you thirst. I'll be waiting.<</say>>
<<button "Continue" easthub>>
<<set $east.matilda++>>
<<set $intel.city.pushUnique('Former cabinet member Thomas died in suspicious circumstances.')>>
<<set $east.library = 4>>
<<time 3>>
<</button>>
<<case "mat3">>
<<narrate>>She bites her lip as you approach her.<</narrate>>
<<block "east/lib07.jpg">>
<<say "lib">>Fuck, I just want to jump you right here.<</say>>
<<say "mc">>I'm not stopping you.<</say>>
<<narrate>>She looks around and sighs.<</narrate>>
<<say "lib">>While I like a little bit of danger, it's too damn busy and I need this job.<</say>>
<<narrate>>A wry grin creeps across her face.<</narrate>>
<<say "lib">>But you know, I've got some time off later if you want to take me shopping.<</say>>
<<think "mc">>The fuck?<</think>>
<</block>>
<<narrate>>She sees your look of confusion then takes another quick look around, then pulls herself into you and runs her tongue up your neck.<</narrate>>
<<say "lib">>It'll be worth your while.<</say>>
<<say "mc">>Well how can I resist that?<</say>>
<<narrate>>She saunters away giving you a wink.<</narrate>>
<<say "lib">>I'll see you and your... monster... very soon.<</say>>
<<if $tempvar2 != "ne">>
<<button "Continue" east-library>>
<<set $east.matilda++>>
<<set $east.library = 4>>
<</button>>
<<else>>
<<button "Continue" nestuff>>
<<event "lib" "step" 4>>
<<time 1>>
<</button>>
<</if>>
<<case "compadria">>
<<narrate>>You head back, hoping to find $adria.name.<</narrate>>
<<block "adria/mature/comp01.jpg">>
<<think "mc">>Wow... she looks incredible.<</think>>
<<narrate>>She looks over at you, almost seductively, as you stand gawking at her.<</narrate>>
<<say "adria">>$adria.calls?<</say>>
<<narrate>>You shake the lewd thoughts from your head.<</narrate>>
<<say "mc">>Sorry. You busy? Think you can access a government computer for me?<</say>>
<<say "adria">>Oh, you've found an open terminal?<</say>>
<</block>>
<<say "mc">>Uhh... I found a computer we can use at the library, if that's what you mean?<</say>>
<<narrate>>She grins.<</narrate>>
<<say "adria">>Let's go.<</say>>
<<narrate>>Your eyes remain trained on her ass as she gets up.<</narrate>>
<<say "adria">>What's up, something on my skirt?<</say>>
<<say "mc">>Uh... no, sorry. Spacing out, come on, let's go.<</say>>
<<set $east.library = "compadria2">>
<<cont "east-library">>
<<case "compadria2">>
<<narrate>>As soon as you're in the library she runs over to the computer, almost giddy. Again, you find your eyes drawn to her ass.<</narrate>>
<<think "mc">>Damn, that skirt is short. I can barely think of anything else!<</think>>
<<say "adria">>Ha! This shouldn't take long.<</say>>
<<narrate>>She sits down on the chair and begins typing away.<</narrate>>
<<say "adria">>Huh? That's it. Barely a challenge. Here's the cabinet members' accounts.<</say>>
<<narrate>>You search through their records but find nothing of value.<</narrate>>
<<say "mc">>I guess they wouldn't be so careless as to use the work computers. Fuck. This was a bust.<</say>>
<<narrate>>She clicks something and on screen is Thomas' account info.<</narrate>>
<<say "adria">>I thought I'd look Thomas up too. Look at this. They attached his death certificate to the file but his body was never found.<</say>>
<<say "mc">>Huh, is that normal?<</say>>
<<say "adria">>I guess they do declare missing people dead. But when the news broke, there was never anything like that mentioned.<</say>>
<<say "mc">>Why would the cabinet keep such a detail away?<</say>>
<<narrate>>She taps on the screen.<</narrate>>
<<say "adria">>Look at who filed this certificate.<</say>>
<<say "mc">>$gerald.name? The fuck?<</say>>
<<say "adria">>Exactly. It's a high-profile death, so maybe the cabinet would be involved. But it still seems very suspect that one of them would handle it personally.<</say>>
<<say "mc">>You think it's worth looking into?<</say>>
<<say "adria">>Yeah, hold on.<</say>>
<<narrate>>The cursor moves around so quickly you can barely keep up, especially when she starts alt-tabbing.<</narrate>>
<<say "adria">>This was his best friend, Michael. Maybe it's worth visiting him?<</say>>
<<say "mc">>It can't hurt. I'll take $krissy.refer with me too. She knew Thomas, she may know this Michael too.<</say>>
<<say "adria">>Sucks there's nothing else interesting on here, though. I guess that would be too easy. Why not head there now?<</say>>
<<say "mc">>Good idea, I'll grab $krissy.refer on the way.<</say>>
<<button "Continue" east-res>>
<<set $intel.gerald.pushUnique('Filed Thomas\' death certificate.')>>
<<set $intel.city.pushUnique('Thomas\' body was never found.')>>
<<set $east.library = 4>>
<<set $east.thomas = 1>>
<<set $east.adria = 1>>
<<temp "res">>
<</button>>
<<case "compjosie">>
<<narrate>>You knock on $res.name's door.<</narrate>>
<<say "res">>I was hoping to see you again. How can I help?<</say>>
<<say "mc">>I want to get on the library computer, but I can't get past the password.<</say>>
<<say "res">>What for?<</say>>
<<say "mc">>Honestly. No idea. But I figure it's connected to the government network, maybe you have some ideas?<</say>>
<<narrate>>She shrugs.<</narrate>>
<<say "res">>But how will you get $lib.name out of the way?<</say>>
<<say "mc">>I have a key and there's nobody there.<</say>>
<<say "res">>Holy shit. Let me grab some kit and let's go!<</say>>
<<button "Continue" eastsex>>
<<temp "res">>
<</button>>
<<case "josiecomp2">>
<<narrate>>She collects herself then heads back to the computer.<</narrate>>
<<say "res">>Looks like it was done a while ago. We're in! So, what should look for?<</say>>
<<say "mc">>Uhh...<</say>>
<<narrate>>She's already typing away.<</narrate>>
<<say "res">>Here's the cabinet members accounts.<</say>>
<<narrate>>You search through their records but find nothing of value.<</narrate>>
<<say "mc">>I guess they wouldn't be so careless as to use the work computers. Fuck. This was a bust.<</say>>
<<narrate>>She continues to click away and on screen is Thomas' account info.<</narrate>>
<<say "res">>Shit. Look at this. They attached his death certificate to the file. His body was never found.<</say>>
<<say "mc">>Oh, sorry to hear that.<</say>>
<<say "res">>No. You don't understand. I said to you there's no way it was an accident. But you really think $va.name wouldn't wrap the entire thing in a nice bow?<</say>>
<<say "mc">>What do you mean? Surely if she was responsible she just disposed of the body?<</say>>
<<say "res">>Maybe. But wouldn't it make more sense for there to be a body, especially given it was an 'industrial accident'. She'd surely want a body. It's a finality to the situation. It removes all hope for his followers that he lives.<</say>>
<<say "mc">>I'm not sure I follow the logic. But, if there's no body how come people didn't look for him?<</say>>
<<say "res">>People aren't aware of this. That's why.<</say>>
<<say "mc">>Why would the cabinet keep such a detail away?<</say>>
<<narrate>>She taps on the screen.<</narrate>>
<<say "res">>Look at who filed this certificate.<</say>>
<<say "mc">>$gerald.name? The fuck?<</say>>
<<say "res">>Exactly. It's a high-profile death, so maybe the cabinet would be involved. But if I had to put money it, I'd say $va.name and $gerald.name were colluding. Or maybe I'm wrong, and actually $gerald.name was the one who killed him.<</say>>
<<say "mc">>Holy shit. That's a pretty big theory, but you know this place better than me. Can we get any proof?<</say>>
<<say "res">>If he's still alive, I'm pretty sure I know where he'll be hiding.<</say>>
<<say "mc">>Fuck for real? I should let $krissy.refer know!<</say>>
<<say "res">>$krissy.refer?<</say>>
<<say "mc">>Sorry, my $krissy.them, $krissy.name.<</say>>
<<say "res">>$krissy.name? As in the damn city planner Thomas was in love with?<</say>>
<<say "mc">>Definitely the city planner, no idea about the love part.<</say>>
<<say "res">>Well, you're full of surprises. Bring her to this address any time after lunch tomorrow. It's where Thomas' best friend lives.<</say>>
<<say "mc">>This could be huge. Thank you so much $res.name.<</say>>
<<say "res">>Oh, I got all the thanks I wanted just now. But I wouldn't say no to more of that.<</say>>
<<narrate>>You grin at her.<</narrate>>
<<say "res">>For now, leave the key with me, I'll see if I can find anything else then lock up. We'll speak soon.<</say>>
<<button "Continue" easthub>>
<<set $intel.gerald.pushUnique('Filed Thomas\' death certificate.')>>
<<set $intel.city.pushUnique('Thomas\' body was never found.')>>
<<set $east.library = 4>>
<<set $east.thomas = 1>>
<<set $east.josie = 6>>
<<time 3>>
<</button>>
<<case "comp">>
<<narrate>>You use the key $lib.name gave you to enter the library then take a few minutes to look around for her.<</narrate>>
<<think "mc">>A little part of me is disappointed she's not here. But at least I can get on the computer now.<</think>>
<<narrate>>You head over to her desk and wiggle the mouse to take it out of sleep mode. The monitor flashes to life, but there's a password prompt on screen. You try 'password', leaving it blank and a few other combinations, but nothing is working.<</narrate>>
<<if $awaypartyeast == "adria">>
<<think "mc">>Shit, I don't have the time to waste here. $adria.name, I could ask her to take a look. Though, didn't $lib.name say $res.name was some sort of computer nerd? Maybe she could help too.<</think>>
<<else>>
<<think "mc">>Shit, I don't have the time to waste here. Had I brought $adria.name she could probably get into this. I wonder if there's anyone else that can help me. <<if $east.josie == 5>>Didn't $lib.name say $res.name was some sort of computer nerd? Maybe she could help. She lives close by..<</if>><</think>>
<</if>>
<<if $awaypartyeast == "adria">>
<<button "Ask $adria.name for help" east-library>>
<<set $east.libcomp = 1>>
<<set $east.library = "compadria">>
<</button>>
<</if>>
<<if $east.josie == 5>>
<<button "Meet $res.name Now" east-library>>
<<set $east.libcomp = 1>>
<<set $east.library = "compjosie">>
<</button>>
<</if>>
<<button "Leave" eaststuff>>
<<set $east.libcomp = 1>>
<<set $east.library = 4>>
<</button>>
<<case "waiting">>
<<block "east/lib01.jpg">>
<<say "lib">>You're the gentleman from before. Did you want me to regale you with the history of our heroic founder and the evil she overcame?<</say>>
<<choices>>
<<link "Listen to the story" east-library>><<set $east.library = 1>><</link>><br>
<<link "Another time" eaststuff>><<set $east.library = "waiting">><</link>>
<</choices>>
<</block>>
<<default>>
<<think "mc">>Perhaps I can find more information about the founder or $voice.name here. I know $krissy.refer said it wasn't relevant to the task at hand, but it may be useful nonetheless and who knows what else I may find.<</think>>
<<block "east/lib01.jpg">>
<<narrate>>The librarian watches you suspiciously as you approach.<</narrate>>
<<say "mc">>Hi there, I was wondering what information you had on the city's founding and $voice.name.<</say>>
<<narrate>>She gasps.<</narrate>>
<<say "lib">>Don't speak her name! Are you trying to doom us all?!<</say>>
<<say "mc">>Uh, right. Yeah, sorry.<</say>>
<<think "mc">>What is this some Harry Potter shit where we can't even speak her name?<</think>>
<</block>>
<<say "lib">>What did you want to know?<</say>>
<<say "mc">>More about what happened and how New Eden came to be.<</say>>
<<narrate>>There's a hint of excitement in her voice as she replies.<</narrate>>
<<say "lib">>You don't need books for that, come. I'll tell you everything you need to know!<</say>>
<<think "mc">>Some one-on-one time with a hot librarian is never a bad thing!<</think>>
<<say "lib">>Just watch out for that computer geek. Her head is in the clouds. Believes some weird fantasies.<</say>>
<<narrate>>She points at someone behind you but you're unsure exactly who.<</narrate>>
<<choices>>
<<link "Listen to the story" east-library>><<set $east.library = 1>><</link>><br>
<<link "Another time" eaststuff>><<set $east.library = "waiting">><</link>>
<</choices>>
<</switch>><<set _krissy = '<<block "east/krissy01.png">>
<<say "krissy">>You\'re going to need me if you\'re meeting either $eva.name or $howard.name.<</say>>
<<say "mc">>How do we get you in there?<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "krissy">>Luckily, $va.name doesn\'t share your lack of foresight. While $va.name isn\'t attending, $am.name is. I\'m her plus one.<</say>>
<<say "mc">>Great!<</say>>
<</block>>'>>
<<switch $tempvar>>
<<case "rec">>
<<set $tempvar3 = "rec3">>
<<set $east.charityevent = "rec">>
_krissy
<<narrate>>You meet $rec.name at the entrance.<</narrate>>
<<block "east/rec01.png">>
<<say "mc">>Wow. You look incredible.<</say>>
<<say "rec">>I wanted to look good for my master.<</say>>
<<say "mc">>Well, mission accomplished. Shall we?<</say>>
<<button "Continue" east-charity>>
<<temp "party">>
<</button>>
<</block>>
<<case "sec">>
<<set $tempvar3 = "sec3">>
<<set $east.charityevent = "sec">>
_krissy
<<narrate>>You meet $sec.name at the entrance.<</narrate>>
<<say "sec">>This is embarrassing. I didn't have time to change after work! I must look such a state.<</say>>
<<say "mc">>Are you kidding? You look incredible.<</say>>
<<narrate>>She gives you a peck on the cheek.<</narrate>>
<<say "mc">>Shall we?<</say>>
<<narrate>>She puts her arm in yours and you head inside.<</narrate>>
<<button "Continue" east-charity>>
<<temp "party">>
<</button>>
<<case "east">>
<<set $east.charityevent = "krissy">>
<<if debug == true>>
<div class="debug">
<<button "Met $howard.name" east-charity>>
<<set $east.howardmeet = 2>>
<</button>>
<<button "Met $eva.name" east-charity>>
<<set $east.evameet = 2>>
<</button>>
<<button "Met Nobody" east-charity>>
<<set $east.evameet = undefined>>
<<set $east.howardmeet = undefined>>
<</button>>
</div>
<</if>>
<<set $tempvar3 = "east3">>
<<block "east/krissy01.png">>
<<say "krissy">>Finally, you're here!<</say>>
<<narrate>>You can't help but notice how good $krissy.name looks dressed up.<</narrate>>
<<say "mc">>You look great, $krissy.refer!<</say>>
<<say "krissy">>Thanks, $krissy.calls. You ready?<</say>>
<<narrate>>You nod.<</narrate>>
<<say "krissy">>So, what's your plan?<</say>>
<</block>>
<<set _meet = '<<say "krissy">>Alright, give me fifteen minutes then meet me in the office on the second floor.<</say>>
<<say "mc">>Understood.<</say>>'>>
<<if $east.howardmeet == 2 && $east.evameet == 2>>
<<say "mc">>I've already met them both, so let's just enjoy the night.<</say>>
<<narrate>>She looks at you quizzically.<</narrate>>
<<say "krissy">>That's it? You don't think you need to put any more work in?<</say>>
<<say "mc">>I'm pretty sure I've convinced them; there's no use stressing over it any further. Let's just enjoy tonight and see what tomorrow brings.<</say>>
<<say "krissy">>Are you sure you don't want me to spend some time with them to be doubly sure?<</say>>
<<say "mc">>We've done the work. Now it's down to them.<</say>>
<<think "mc">>Given how $howard.name looked at her, I could ask her to speak with him a little more. Should I ask her to try and sweeten him up? Who knows what that might turn in to though. Especially with alcohol involved.<</think>>
<div id="replace">
<<choices>>
<<link "Yes">>
<<replace "#replace">>
<<say "mc">>Okay, for safety how about you go chat with $howard.name for a bit? Try and make sure he's completely convinced.<</say>>
<<say "krissy">>Good idea. I'll speak to you later.<</say>>
<<think "krissy">>Hmm, he always preferred me with blonde hair, didn't he?<</think>>
<<set $tempvar2 = "krissyhoward">>
<</replace>>
<<toggleclass "#after" noshow>>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<say "mc">>Let's just go enjoy ourselves. Might be our last chance for a while.<</say>>
<<say "krissy">>Alright, I'm not going to say no to a nice evening.<</say>>
<<narrate>>She puts her arm in yours and you head inside.<</narrate>>
<<set $tempvar2 = "enjoy">>
<</replace>>
<<toggleclass "#after" noshow>>
<</link>>
<</choices>>
</div>
<<elseif $east.howardmeet == 2>>
<<say "mc">>We've already met with $howard.name, so it's gonna be $eva.name.<</say>>
_meet
<<set $tempvar2 = "eva">>
<<script>>
setup.scriptpromise.then(function () {
$('#after').show();
});
<</script>>
<<elseif $east.evameet == 2>>
<<say "mc">>We've already met with $eva.name, so it's gonna be $howard.name.<</say>>
_meet
<<set $tempvar2 = "howard">>
<<script>>
setup.scriptpromise.then(function () {
$('#after').show();
});
<</script>>
<<else>>
<<think "mc">>This could be my last chance to meet them before the cabinet meeting as there won't be much time before the meeting tomorrow.<</think>>
<div id="replace">
<<choices>>
<<link $eva.name>>
<<replace "#replace">>
<<say "mc">>Let's meet up with $eva.name.<</say>>
_meet
<</replace>>
<<toggleclass "#after" noshow>>
<<set $tempvar2 = "eva">>
<</link>><br>
<<link $howard.name>>
<<replace "#replace">>
<<say "mc">>Let's meet up with $howard.name.<</say>>
_meet
<</replace>>
<<toggleclass "#after" noshow>>
<<set $tempvar2 = "howard">>
<</link>>
<</choices>>
</div>
<</if>>
<div id="after" class="noshow">
<<button "Continue" east-charity>>
<<temp "party-gem">>
<</button>>
</div>
<<case "party-gem">>
<<left2 "east/event.mp4" v>>
<<say "mc">>Wow, this is not what I expected. It's so different to normal!<</say>>
<<say "krissy">>Yeah, it's more like a bar, huh?<</say>>
<<say "mc">>They did a great job.<</say>>
<<if $tempvar2 == "howard" || $tempvar2 == "eva">>
<<set _c = State.variables[$tempvar2].name>>
<<say "krissy">>Alright, I'm gonna go meet up with _c. Give me fifteen minutes then meet me in the office on the second floor.<</say>>
<<say "mc">>I'll speak to you later.<</say>>
<<narrate>>You look around you, a little disorientated now left alone, but decide to head to the bar to grab a drink.<</narrate>>
<<elseif $tempvar2 == "krissyhoward">>
<<say "krissy">>Alright, I'm gonna go meet up with Howard and make sure he's onboard.<</say>>
<<say "mc">>I'll speak to you later.<</say>>
<<narrate>>You look around you, a little disorientated now left alone, but decide to head to the bar to grab a drink.<</narrate>>
<<else>>
<<say "krissy">>Shall we grab a drink?<</say>>
<<say "mc">>Let's.<</say>>
<<narrate>>The two of you move over to the bar.<</narrate>>
<</if>>
<<if $tempvar2 == "howard" || $tempvar2 == "eva" || $tempvar2 == "krissyhoward">>
<<narrate>>You get a drink and mill around at the bar, a little unsure what to do with yourself.<</narrate>>
<<think "mc">>Maybe I should have brought a date!<</think>>
<</if>>
<<if $tempvar2 == "howard" || $tempvar2 == "eva">>
<<narrate>>You chat to some random people beside you, a little anxious, killing time before you meet with _c.<</narrate>>
<<button "Continue" cabinet>>
<<temp $tempvar2>>
<</button>>
<<elseif $tempvar2 == "krissyhoward">>
<<narrate>>You look around the scene, a room full of strangers and an unusual lack of desire to try your luck with any of them.<</narrate>>
<<think "mc">>I'm more curious how $krissy.name is getting on with Howard. I'll go check up on them.<</think>>
<<button "Continue" cabinet>>
<<temp $tempvar2>>
<</button>>
<<else>>
<<narrate>>After your first round of drinks, and to your surprise, shots that $krissy.name insisted on, she grabs your hand, pulling you to the dance floor.<</narrate>>
<<say "mc">>No... I can't.<</say>>
<<say "krissy">>Too embarrassed to dance with your $krissy.them? Come on, it'll be fun.<</say>>
<<narrate>>Reluctantly you play along. $krissy.name is a surprisingly good dancer... and very tactile. You feel an uneasy sense of arousal as she flutters around you, but you try to ignore such urges putting it down to the atmosphere and the booze. You're shuffling uncomfortably from side to side vaguely to the beat as she puts on an expert display.<</narrate>>
<<say "krissy">>Oh, what's with that look? Come on! Loosen up! I know you can dance better than that.<</say>>
<<think "mc">>To hell with it!<</think>>
<<narrate>>You put some energy into it, your moves not quite as slick as hers, but nonetheless you have a great time. You can't help but notice how radiant and joyful she looks as she twists and turns around the dance floor. A woman beside you leans in to you and whispers in your ear.<</narrate>>
<<say "side2" "???" "(Whispering)" "whisper">>You guys make a great couple!<</say>>
<<narrate>>$krissy.name glares at you.<</narrate>>
<<say "krissy">>You can't even keep it in check for an hour? The first woman who talks to you and you're—<</say>>
<<say "mc">>What? No? She said we were a cute couple and I was just about to explain that's not the case.<</say>>
<<say "krissy">>Sure, sure. Then why the erection?<</say>>
<<narrate>>The other woman raises her eyebrows and mouths good luck to you while backing off.<</narrate>>
<<set _uc = $krissy.refer.toUpperFirst()>>
<<say "mc">>_uc? What the hell?<</say>>
<<think "mc">>I didn't realize just how aroused this entire thing made me. This is fucked up.<</think>>
<<say "krissy">>Sorry, just... let's go.<</say>>
<<narrate>>As the two of you leave you can't help notice she steals a few glances at your crotch.<</narrate>>
<<cont "east-charity" "krissyhome">>
<</if>>
<<case "krissyhome">>
<<narrate>>Walking a few steps ahead of you, she doesn't respond as you call out to her on the way home.<</narrate>>
<<say "mc">>$krissy.refer!<</say>>
<<say "krissy">>Not now!<</say>>
<<narrate>>As soon as you're both in the door, she throws off her shoes, almost angrily.<</narrate>>
<<say "krissy">>I'm going to bed.<</say>>
<<say "mc">>What's going on? What happened?<</say>>
<<say "krissy">>It doesn't matter. It's been a long day and I'm just tired. I need to get some rest. Big day tomorrow.<</say>>
<<think "mc">>Hmm, I'll give her some space, but maybe I should check up on her later.<</think>>
<<say "mc">>Alright, good night, $krissy.refer.<</say>>
<<narrate>>You grab a glass of water and stand in the kitchen trying to reflect on what just happened.<</narrate>>
<<think "mc">>I know she's uncomfortable with my harem, but her reaction tonight was something else. Maybe I should talk to her.<</think>>
<<narrate>>You finish up your drink then head to her room. As you hold up your knuckle to knock on her door, you hear a whimper of the pleasure on the other side.<</narrate>>
<<think "mc">>There's nobody else home... should I take a peek?<</think>>
<div id="replace">
<<choices>>
<<link "Yes" eastsex>>
<<temp "krissypeep">>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<narrate>>You back away from the door.<</narrate>>
<<think "mc">>She deserves her privacy, I'll get outta here.<</think>>
<<cont "easthub" "" 3>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "party">>
<<if debug == true>>
<div class="debug">
<<button "Met $howard.name" east-charity>>
<<set $east.howardmeet = 2>>
<</button>>
<<button "Met $eva.name" east-charity>>
<<set $east.evameet = 2>>
<</button>></div>
<</if>>
<<set _meet = '<<say "krissy">>Alright, give me fifteen minutes then meet me in the office on the second floor.<</say>>
<<say "mc">>Understood.<</say>>'>>
<<set _meet2 = '<<narrate>>She turns on her heel and descends into the crowd.<</narrate>>
<<if $east.charityevent == "monique">>
<<say "monique">>Damn your $krissy.them looks good.<</say>>
<<narrate>>You can\'t help but notice her craning her neck to watch $krissy.name leave. You steal a glance yourself.<</narrate>>
<<say "monique">>Ha! Cheeky boy. Come on, let\'s dance.<</say>>
<<narrate>>You try to hide your embarrassment as she drags you onto the dance floor.<</narrate>>
<<narrate>>You can\'t help but notice how sensual her moves are. Your hands around her waist, she raises one left against your thigh and brings your forehead to hers, a look of passion in her eyes as she stares into yours. Your dick hungers for more and it\'s all you can do to tear yourself away when it\'s time to go meet $krissy.name.<</narrate>>
<<say "mc">>I have gotta go deal with—<</say>>
<<narrate>>Her face is flush, and her eyes pierce through you.<</narrate>>
<<say "monique">>Yes, hurry. Come back to me soon.<</say>>
<<narrate>>You notice her wafting herself with her hand as you scurry away to meet $krissy.name.<</narrate>>
<<set _uc = $monique.refer.toUpperFirst()>>
<<think "mc">>_uc is going to be the death of me.<</think>>
<<else>>
<<say $east.charityevent>>Who was that, my competition?<</say>>
<<narrate>>You laugh.<</narrate>>
<<say "mc">>No, that was my $krissy.them.<</say>>
<<say $east.charityevent>>Wow, she\'s so pretty.<</say>>
<<say "mc">>She needs help with something in about fifteen minutes, my apologies.<</say>>
<<say $east.charityevent>>Don\'t worry about it. Shall we dance?<</say>>
<<narrate>>You spend some time dancing together before making your excuses and leaving to meet up with $krissy.name.<</narrate>>
<</if>>
<<button "Continue" cabinet>>
<<temp $tempvar2>>
<</button>>
'>>
<<left2 "east/event.mp4" v>>
<<say "mc">>Wow, this is not what I expected. It's so different to normal!<</say>>
<<say $east.charityevent>>$eva.name always puts on a good event.<</say>>
<<say "mc">>It feels more like a bar than it does the City Hall.<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say $east.charityevent>>I think that's the point. Come on, let's get a drink.<</say>>
<<narrate>>You're at the bar when someone taps you on your shoulder.<</narrate>>
<br>
<br>
<br>
<<block "east/krissy02.png">>
<<say "krissy">>We're not gonna get chance to meet them both. Who is it gonna be?<</say>>
<<if $east.howardmeet == 2 && $east.evameet == 2>>
<<say "mc">>We've already met them both. We've just got to trust they'll back us tomorrow. Go. Enjoy the night.<</say>>
<<say "krissy">>How can you be so calm?<</say>>
<<say "mc">>We've done the work. Now it's down to them.<</say>>
<<think "mc">>Given how $howard.name looked at her, I could ask her to speak with him a little more. Should I ask her to try and sweeten him up? Who knows what that might turn in to though. Especially with alcohol involved.<</think>>
<div id="replace">
<<choices>>
<<link "Yes">>
<<replace "#replace">>
<<say "mc">>Okay, for safety how about you go chat with $howard.name for a bit? Try and make sure he's completely convinced.<</say>>
<<say "krissy">>Good idea. I'll speak to you later.<</say>>
<<think "krissy">>Hmm, he always preferred me with blonde hair, didn't he?<</think>>
<<set $tempvar2 = "krissyhoward">>
<</replace>>
<<toggleclass "#after" noshow>>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<say "mc">>Just go enjoy yourself. Might be our last chance for a while.<</say>>
<<say "krissy">>Fine, fine. Just let me know if you need me!<</say>>
<<say "mc">>Got it, $krissy.refer.<</say>>
<<narrate>>She looks around quizzically for a moment then descends into the crowd.<</narrate>>
<<say $east.charityevent>>Who was that, my competition?<</say>>
<<narrate>>You laugh.<</narrate>>
<<say "mc">>No, that was my $krissy.them.<</say>>
<<say $east.charityevent>>Wow, she's so pretty. Shall we dance?<</say>>
<<narrate>>You spend a pleasant evening enjoying each other's company; almost forgetting the woes of the world.<</narrate>>
<<set $tempvar2 = "stayed">>
<<cont "east-charity" $tempvar3>>
<</replace>>
<</link>>
<</choices>>
</div>
<<elseif $east.howardmeet == 2>>
<<say "mc">>We've already met with $howard.name, so it's gonna be $eva.name.<</say>>
_meet
<<set $tempvar2 = "eva">>
<<script>>
setup.scriptpromise.then(function () {
$('#after').show();
});
<</script>>
<<elseif $east.evameet == 2>>
<<say "mc">>We've already met with $eva.name, so it's gonna be $howard.name.<</say>>
_meet
<<set $tempvar2 = "howard">>
<<script>>
setup.scriptpromise.then(function () {
$('#after').show();
});
<</script>>
<<else>>
<<think "mc">>This could be my last chance to meet them before the cabinet meeting as there won't be much time before the meeting tomorrow.<</think>>
<div id="replace">
<<choices>>
<<link $eva.name>>
<<replace "#replace">>
<<say "mc">>Let's meet up with $eva.name.<</say>>
_meet
<</replace>>
<<toggleclass "#after" noshow>>
<<set $tempvar2 = "eva">>
<</link>><br>
<<link $howard.name>>
<<replace "#replace">>
<<say "mc">>Let's meet up with $howard.name.<</say>>
_meet
<</replace>>
<<toggleclass "#after" noshow>>
<<set $tempvar2 = "howard">>
<</link>>
<</choices>>
</div>
<</if>>
<</block>>
<div id="after" class="noshow">
_meet2
</div>
<<case "sec3">>
<<if $tempvar2 != "stayed">>
<<narrate>>You return to $sec.name.<</narrate>>
<<say "sec">>Everything alright with your $krissy.them?<</say>>
<<say "mc">>Yes, all sorted now. Sorry to keep you waiting.<</say>>
<<say "sec">>I think I know how you can make it up to me.<</say>>
<</if>>
<<narrate>>She points to a door at the side of the atrium.<</narrate>>
<<say "sec">>Give me five minutes and follow on.<</say>>
<<narrate>>You grin.<</narrate>>
<<say "mc">>I'll show you just how deep my apology goes.<</say>>
<<button "Continue" eastsex>>
<<temp "charitysec">>
<</button>>
<<case "rec3">>
<<if $tempvar2 != "stayed">>
<<narrate>>You return to $rec.name.<</narrate>>
<<say "rec">>Things okay with your $krissy.them, master?<</say>>
<<say "mc">>Yes. All good. Was just dealing with something a little... sensitive.<</say>>
<</if>>
<<narrate>>She smiles sweetly at you.<</narrate>>
<<say "rec">>If I may, master, there are rooms in the building not currently in use...<</say>>
<<narrate>>You grin.<</narrate>>
<<say "mc">>Good <i>girl</i>.<</say>>
<<button "Continue" eastsex>>
<<temp "charityrec">>
<</button>>
<<case "east3">>
<<narrate>>You quickly make your way back to the bar.<</narrate>>
<<think "mc">>Shit, did I really just do that?<</think>>
<<narrate>>The barmaid gives looks at you with a raise eyebrow.<</narrate>>
<<say "barmaid" "Barmaid">>Everything okay there? You look a little flustered.<</say>>
<<say "mc">>Uh, yeah, sorry.<</say>>
<<think "mc">>Shit, I need to calm down.<</think>>
<<narrate>>You order a drink and try to relax.<</narrate>>
<<say "krissy">>Ah, there you are, $krissy.calls. You ready to head home?<</say>>
<<narrate>>You struggle to look her in the eye.<</narrate>>
<<say "mc">>Yes, did you manage to convince $howard.name?<</say>>
<<narrate>>A grin creeps across her face.<</narrate>>
<<say "krissy">>I'm pretty sure he and I came to an arrangement. You get up to anything?<</say>>
<<say "mc">>Nah, just sat at the bar.<</say>>
<<think "krissy">>He's acting a bit shifty...<<if $tempvar3 != "nowatch">> surely he wasn't... no he couldn't...<</if>><</think>>
<<if $tempvar3 != "nowatch">>
<<say "krissy">>Did... did you...?<</say>>
<</if>>
<<say "barmaid" "Barmaid">>Oh, this your girl? Lucky girl, I was about to make a move myself!<</say>>
<<narrate>>$krissy.name rolls her eyes.<</narrate>>
<<think "krissy">>Always the same. But at least now I get why he's acting this way.<</think>>
<<narrate>>She simply smiles at the barmaid then looks back at you.<</narrate>>
<<say "krissy">>C'mon, let's head home.<</say>>
<<cont "easthub" "" 3>>
<</switch>><<set _before = '<<block "east/coffee01.jpg">>
<<say "coffee">>$alias, hi!<</say>>
<<say "mc">>Hey, $coffee.name. How\'s your day goin\'?<</say>>
<<say "coffee">>Oh, it just got a lot better! I\'ll bring you some green tea over in a mo.<</say>>
<<say "mc">>Great, thanks.<</say>>
<<narrate>>She brings your tea over a few minutes later.<</narrate>>
<</block>>'>>
<<set _after = '<<say "coffee">>On a lighter note. You got any evenings free?<</say>>
<<say "mc">>Why what\'s up?<</say>>
<<say "coffee">>Can you dance?<</say>>
<<say "mc">>Eh... a little.<</say>>
<<say "coffee">>Meet me at Revolución downtown. I\'ll get you VIP.<</say>>
<<narrate>>Before you can ask any further questions, she returns to the counter.<</narrate>>
<<think "mc">>Sounds like a club. Doubtful, but might be worth checking out in case there\'s anybody important in the VIP area.<</think>>
<<narrate>>You listen in to the conversations around you. Apparently there\'s going to be some big event at the City Hall soon, but you didn\'t pick up enough details.<</narrate>>'>>
<<set _switch = $east.coffee>>
<<if $tempvar2 == "ne">>
<<if $coffee.events.step == undefined>>
<<if checkUnlocks('movie', 'dance', 'coffee') == false && $girlsmet.includes('coffee')>>
<<set $coffee.events.step = 1.5>>
<<elseif checkUnlocks('movie', 'three', 'coffee')>>
<<set $coffee.events.step = 6>>
<<elseif checkUnlocks('movie', 'dance', 'coffee')>>
<<set $coffee.events.step = 3>>
<<elseif $girlsmet.includes('coffee')>>
<<set $coffee.events.step = 1.5>>
<</if>>
<</if>>
<<set _switch = $coffee.events.step>>
<</if>>
<<switch _switch>>
<<case 1.5>>
<<left2 "east/coffee01.jpg">>
<<if $coffee.events.neintro == undefined>>
<<say "coffee">>$alias... or should I say $name... good to see you!<</say>>
<<say "mc">>Ah, they told you?<</say>>
<<say "coffee">>Yes, imagine my surprise when $eva.name herself came to see me about the man I thought was $alias.<</say>>
<<say "mc">>Yeah, I wanted anyone I connected with here to know the truth.<</say>>
<<say "coffee">>In that short time you felt a connection to me, huh?<</say>>
<<say "mc">>I mean... yeah...<</say>>
<<if $east.coffee == "dance">>
<<say "coffee">>And yet you never joined me at the club!<</say>>
<<else>>
<<say "coffee">>And yet you never asked me out!<</say>>
<</if>>
<<say "mc">>Well, I was only here for short time and I didn't—<</say>>
<<say "coffee">>No time like the present. Meet me at Revolución downtown one evening.<</say>>
<<say "mc">>Sure, I'm looking forward to it!<</say>>
<<narrate>>You make small talk and flirt with $coffee.name as you drink your tea, then leave.<</narrate>>
<<event "coffee" "step" 2>>
<<event "coffee" "neintro">>
<<cont "nestuff" 1>>
<<else>>
<<say "coffee">>$name, good to see you!<</say>>
<<say "mc">>Likewise.<</say>>
<<say "coffee">>Green tea?<</say>>
<<say "mc">>Yes, please.<</say>>
<<say "coffee">>I take you haven't seen that much of New Eden yet?<</say>>
<<say "mc">>No, any recommendations?<</say>>
<<narrate>>She smirks.<</narrate>>
<<say "coffee">>Meet me at Revolución downtown on evening.<</say>>
<<say "mc">>Yeah, okay. It might be nice to unwind.<</say>>
<<narrate>>You make small talk and flirt with $coffee.name as you drink your tea, then leave.<</narrate>>
<<event "coffee" "step" 2>>
<<event "coffee" "neintro">>
<<cont "nestuff" 1>>
<</if>>
<<case 2>>
<<left2 "east/coffee01.jpg">>
<<say "coffee">>There's my favorite customer! Green tea coming up!<</say>>
<<say "mc">>Always a pleasure to see you, $coffee.name.<</say>>
<<say "coffee">>Then you should definitely come see more of me. Meet me at Revolución downtown one evening.<</say>>
<<say "mc">>I absolutely will!<</say>>
<<narrate>>You make small talk and flirt with $coffee.name as you drink your tea, then leave.<</narrate>>
<<cont "nestuff" 0.5>>
<<case 3>>
<<left2 "east/coffee01.jpg">>
<<say "coffee">>I really enjoyed our time together at the club.<</say>>
<<say "mc">>Believe me, it was mutual.<</say>>
<<if $east.pro1 == 1 && $coffee.events.pro == undefined>>
<<say "coffee">>Remember my friend I asked you to find? Turns out she's fine. She's working for $genvoy.name now. It's just... it was $gerald.name's business before and she was a little embarrassed to tell me.<</say>>
<<say "mc">>That's great news.<</say>>
<<say "coffee">>Yeah, they call her the Blowjob Queen!<</say>>
<<narrate>>You spit out your green tea.<</narrate>>
<<say "coffee">>Haha! I think you'd like her.<</say>>
<<event "coffee" "pro">>
<</if>>
<<narrate>>You make small talk and flirt with $coffee.name as you drink your tea, then leave.<</narrate>>
<<if checkUnlocks('movie', 'pro1', 'pro1') == true>>
<<think "mc">>I've already met her friend, but I wouldn't be against a repeat visit...<</think>>
<<else>>
<<think "mc">>Hmmm, maybe I should try to find that friend she mentioned...<</think>>
<</if>>
<<cont "nestuff" 0.5>>
<<case 4>>
<<narrate>>You notice the place is unusually busy.<</narrate>>
<<left2 "east/coffee01.jpg">>
<<say "mc">>$coffee.name, I met your friend.<</say>>
<<say "coffee">>Oh, yeah? Sorry, listen, it's an absolute madhouse in here today. Do you mind if we talk later?<</say>>
<<say "mc">>Of course, no problem.<</say>>
<<say "coffee">>Great. Here's my address. I'm usually home by 20:00.<</say>>
<<think "mc">>Oh, we're not gonna get much talking done!<</think>>
<<say "mc">>Alright, I'll let you get back to it.<</say>>
<<say "coffee">>Thanks, I'll speak to you later.<</say>>
<<button "Continue" nestuff>>
<<event "coffee" "step" 5>>
<</button>>
<<case 5>>
<<think "mc">>This place is extremely busy right now, I'd better not disturb her. She'll be home after 20:00, though.<</think>>
<<cont "nestuff">>
<<case "unknown">>
<<block "east/coffee01.jpg">>
<<narrate>>The barista looks up at you.<</narrate>>
<<say "coffee">>What can I get you?<</say>>
<<say "mc">>Green tea, please.<</say>>
<<say "coffee">>I'll bring it over.<</say>>
<<think "mc">>She seems a lot less amicable then before, I'm guessing it's because of our last conversation.<</think>>
<<say "coffee">>Here you go.<</say>>
<</block>>
<<set _bad = '<<narrate>>She leaves without another word, or the usual flirting.<</narrate>>
<<think "mc">>I guess because she saw our previous conversation as me blowing her off. I should probably figure out a where <i>$alias</i> works if I want to re-engage with her.<</think>>
<<narrate>>You sit in the coffee shop listening to the chatter around you, but mostly people are just moaning about their jobs and you learn nothing of value.<</narrate>>
<<button "Continue" easthub>>
<<time 3>>
<</button>>'>>
<<if $east.bus == undefined>>
_bad
<<else>>
<<set _sorry = '<<say "mc">>Sorry about last time. Truth is I\'m just a bit nervous.<</say>>
<<say "coffee">>Oh, a little timid are you? The shy ones are always the best. So you gonna tell me where you\'re working then?<</say>>'>>
<<think "mc">>She's a bit more cold than normal. Probably because she thinks I was blowing her off when I wouldn't tell her where I work. Let's see, I could tell her I work at once one of the three businesses I picked out earlier.<</think>>
<div id="replace">
<<choices>>
<<link "New Eden Holdings Inc">>
<<set $east.coffee = "neweden">>
<<replace "#replace">>
_sorry
<<say "mc">>Just started at <i>New Eden Holdings Inc</i><</say>>
<<say "coffee">>$eva.name's business, huh? I guess with her attention diverted to the war effort, she needs a little extra assistance. Well, I'll leave you to your drink. Just let me know if you need anything else.<</say>>
<</replace>>
<<toggleclass "#hidden" noshow>>
<</link>><br>
<<link "Bob'll Fix It">>
<<set $east.coffee = "bob">>
<<replace "#replace">>
_sorry
<<say "mc">>Just started at <i>Bob'll Fix It</i><</say>>
<<say "coffee">>Weird. Dad hadn't mentioned they were hiring.<</say>>
<<think "mc">>Seriously? I pick the damn business her dad is involved with.<</think>>
<<say "mc">>Oh, Bob's your dad?<</say>>
<<narrate>>She stares at you blankly.<</narrate>>
<<say "coffee">>My dad owns the business. His name isn't Bob, that's just the business name.<</say>>
<<think "mc">>Shit a brick.<</think>>
<<say "coffee">>I'm gonna get back to it.<</say>>
<</replace>>
<<toggleclass "#hidden" noshow>>
<</link>><br>
<<link "Aegis Protectorate">>
<<set $east.coffee = "aegis">>
<<replace "#replace">>
_sorry
<<say "mc">>Just started at <i>Aegis Protectorate</i><</say>>
<<say "coffee">>Ah, yeah. I've seen the posters, with the war effort they're kinda busy. Though most new hires are off at the training camp. I guess they need help at the offices too, though. Loads of paperwork I guess?<</say>>
<<say "mc">>Something like that, yeah.<</say>>
<<say "coffee">>Alright, let me know if you need anything else.<</say>>
<</replace>>
<<toggleclass "#hidden" noshow>>
<</link>><br>
<<link "Say Nothing">>
<<replace "#replace">>
_bad
<</replace>>
<</link>>
<</choices>>
</div>
<div id="hidden" class="noshow">
<<narrate>>You sit around the coffee shop for a few hours listening to the conversations around you. One of the customers on the table behind you talking about their lecherous boss, <i>Steve</i>, at <i>New Eden Holdings</i>.<</narrate>>
<<think "mc">>Might be something. An easily distracted boss might let me get in their office to learn more about $eva.name. Though not sure how I'd get in without anyone else noticing me first.<</think>>
<<button "Continue" easthub>>
<<set $east.lech = 1>>
<<set $intel.eva.pushUnique('Steve, a lecherous manager, works at New Eden Holdings Inc')>>
<<time 3>>
<</button>>
</div>
<</if>>
<<case 1>>
<<block "east/coffee01.jpg">>
<<say "coffee">>$alias! Good to see you again. Green tea?<</say>>
<<say "mc">>That would be great.<</say>>
<<narrate>>You sit down and she brings your drink over.<</narrate>>
<<say "coffee">>Not often I see a new face. May I ask where you work?<</say>>
<</block>>
<<if $east.bus == undefined>>
<<think "mc">>Shit. I don't know any of the local businesses. I can't just make something up as clearly she does.<</think>>
<<say "coffee">>Sir?<</say>>
<<say "mc">>Sorry. Lost in my own world. So how long have you been working here?<</say>>
<<think "mc">>Let's hope that deflects the question.<</think>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say "coffee">>Let's just say... a long time. So where's your new job?<</say>>
<<think "mc">>Shit.<</think>>
<<say "mc">>Ah, just across the way actually.<</say>>
<<narrate>>You point randomly out the window.<</narrate>>
<<say "coffee">>Oh, Jenson's Jiggalos, huh? I might have to look you up.<</say>>
<<narrate>>You nearly spit out your tea. She chuckles.<</narrate>>
<<say "coffee">>I'm guessing that's not the case, is it? I get it, you're new and unsure what to make of me just yet. Don't sweat it.<</say>>
<<narrate>>She turns on her heel and returns to the counter<</narrate>>
<<think "mc">>Now she's probably suspicious of me!<</think>>
<<set $east.coffee = "unknown">>
<<button "Continue" easthub>>
<<time 3>>
<</button>>
<<else>>
<<think "mc">>Let's see, I could tell her one of the three businesses I picked out earlier.<</think>>
<div id="replace">
<<choices>>
<<link "New Eden Holdings Inc">>
<<set $east.coffee = "neweden">>
<<replace "#replace">>
<<say "mc">>Just started at <i>New Eden Holdings Inc</i><</say>>
<<say "coffee">>$eva.name's business, huh? I guess with her attention diverted to the war effort, she needs a little extra assistance. Well, I'll leave you to your drink. Just let me know if you need anything else.<</say>>
<</replace>>
<<toggleclass "#hidden" noshow>>
<</link>><br>
<<link "Bob'll Fix It">>
<<set $east.coffee = "bob">>
<<replace "#replace">>
<<say "mc">>Just started at <i>Bob'll Fix It</i><</say>>
<<say "coffee">>Weird. Dad hadn't mentioned they were hiring.<</say>>
<<think "mc">>Seriously? I pick the damn business her dad is involved with.<</think>>
<<say "mc">>Oh, Bob's your dad?<</say>>
<<narrate>>She stares at you blankly.<</narrate>>
<<say "coffee">>My dad owns the business. His name isn't Bob, that's just the business name.<</say>>
<<think "mc">>Shit a brick.<</think>>
<<say "coffee">>I'm gonna get back to it.<</say>>
<</replace>>
<<toggleclass "#hidden" noshow>>
<</link>><br>
<<link "Aegis Protectorate">>
<<set $east.coffee = "aegis">>
<<replace "#replace">>
<<say "mc">>Just started at <i>Aegis Protectorate</i><</say>>
<<say "coffee">>Ah, yeah. I've seen the posters, with the war effort they're kinda busy. Though most new hires are off at the military camp. I guess they need help at the offices too, though. Loads of paperwork I guess?<</say>>
<<say "mc">>Something like that, yeah.<</say>>
<<say "coffee">>Alright, let me know if you need anything else.<</say>>
<</replace>>
<<toggleclass "#hidden" noshow>>
<</link>>
<</choices>>
</div>
<div id="hidden" class="noshow">
<<narrate>>You sit around the coffee shop for a few hours listening to the conversations around you. One of the customers on the table behind you talking about their lecherous boss, <i>Steve</i>, at <i>New Eden Holdings</i>.<</narrate>>
<<think "mc">>Might be something. An easily distracted boss might let me get in their office to learn more about $eva.name. Though not sure how I'd get in without anyone else noticing me first.<</think>>
<<button "Continue" easthub>>
<<set $east.lech = 1>>
<<set $intel.eva.pushUnique('Steve, a lecherous manager, works at New Eden Holdings Inc')>>
<<time 3>>
<</button>>
</div>
<</if>>
<<case "aegis">>
_before
<<say "coffee">>So you know how you're working at <i>Aegis</i>?<</say>>
<<say "mc">>Yeah?<</say>>
<<say "coffee">>I have a friend who got a job there a little while ago. But... well, she's barely around anymore and is super shady about it. You think you could see if she's okay?<</say>>
<<think "mc">>I don't actually work there, but I'll just agree.<</think>>
<<say "mc">>Sure. What's her name.<</say>>
<<block "east/pro101.jpg">>
<<say "coffee">>This is an old pic of her. Her name is <<textbox "$pro1.name" Bella>>. Sweetest girl there is.<</say>>
<<say "mc">>She looks cute, yeah. I'll be on the lookout for her.<</say>>
<<say "coffee">>Great, thanks. I'm sure she's fine, but I just worry how she's changed since starting there.<</say>>
<<say "mc">>I understand.<</say>>
<</block>>
_after
<<button "Continue" eaststuff>>
<<set $east.coffee = "dance">>
<<set $east.pro1 = 1>>
<<time 3>>
<</button>>
<<case "neweden">>
_before
<<say "coffee">>How's it going at <i>New Eden Holdings?</i> <<if $east.lech == "intervened">>I hear Steve got sent packing.<<else>> I hear the manager there is a total pervert.<</if>><</say>>
<<say "mc">><<if $east.lech == "intervened">>Yeah. I got rid of him. Complete and utter waste of space. Harassing the female workers!<<else>> It's alright. If I catch anyone like that, they'll be hell to pay!<</if>><</say>>
<<think "mc">>Not that I actually work there.<</think>>
<<say "coffee">><<if $east.lech == "intervened">>I bet $eva.name is super grateful to you. Between you and me, she's been trying to get rid of the prick for years, but never had any hard evidence.<<else>> Between you and me, $va.name has been trying to get rid of the prick for years, but has never had any hard evidence.<</if>><</say>>
<<block "east/pro101.jpg">>
<<say "coffee">>On a separate note. Have you seen this woman? Her name is <<textbox "$pro1.name" Bella>>. Sweetest girl there is.<</say>>
<<say "mc">>She looks cute, but I haven't seen her, no.<</say>>
<<say "coffee">>She started a new job recently has become aloof, barely see her anymore and I feel like she's actively avoiding me. I don't know where she works. I know it was a long shot, but worth asking.<</say>>
<<say "mc">>I get it. I'll be on the lookout for her.<</say>>
<</block>>
_after
<<button "Continue" eaststuff>>
<<set $east.coffee = "dance">>
<<set $east.pro1 = 1>>
<<time 3>>
<</button>>
<<case "bob">>
_before
<<say "coffee">>I asked my dad about the new hires.<</say>>
<<think "mc">>Fuck. I'm found out, aren't I?<</think>>
<<say "coffee">>He said they'd been that many recently due to a project from $va.name, he hasn't even had chance to meet them all. I had no idea!<</say>>
<<think "mc">>Oh, thank fuck for that!<</think>>
<<say "coffee">>You know, he's often in the office alone if you wanted to curry yourself some favor.<</say>>
<<say "mc">>Maybe, but I want to earn my way legitimately, you know?<</say>>
<<say "coffee">>Oh, for sure, but how will he know if you're earning anything if he never meets you?<</say>>
<<block "east/pro101.jpg">>
<<say "coffee">>On a separate note. Have you seen this woman? Her name is <<textbox "$pro1.name" Bella>>. Sweetest girl there is.<</say>>
<<say "mc">>She looks cute, but I haven't seen her, no.<</say>>
<<say "coffee">>She started a new job recently has become aloof, barely see her anymore and I feel like she's actively avoiding me. I don't know where she works. I know it was a long shot, but worth asking.<</say>>
<<say "mc">>I get it. I'll be on the lookout for her.<</say>>
<</block>>
_after
<<button "Continue" eaststuff>>
<<set $east.coffee = "dance">>
<<set $east.pro1 = 1>>
<<time 3>>
<</button>>
<<case "done">>
<<say "mc">>Holy fuck. You two make an incredible team.<</say>>
<<say "pro1">>Hey now, you were pretty amazing too. Not many men can handle the likes of either of us, never mind together.<</say>>
<<center "east/pro103.jpg">>
<<say "coffee">>$alias told me about your job.<</say>>
<<narrate>>$pro1.name suddenly gets angry.<</narrate>>
<<say "pro1">>Fuck dude! I asked you not to say anything. I told you she'd flip a lid about $gerald.name!<</say>>
<<say "coffee">>$gerald.name. Sorry, what the fuck does that prick have to do with this?<</say>>
<<say "mc">>I only told her you were safe. I didn't mention anything else.<</say>>
<<say "pro1">>Ah, fuck!<</say>>
<<say "coffee">>What's the prick got to do with it, $pro1.name?!<</say>>
<<narrate>>$pro1.name sighs.<</narrate>>
<<say "pro1">>Okay, okay. Just calm down a minute. Take a deep breath. Let's head into the kitchen, grab a drink and I'll explain.<</say>>
<<narrate>>The three of you get redressed and head into the kitchen. You can tell $coffee.name is struggling to maintain her anger and impatience.<</narrate>>
<<say "pro1">>So I got a job giving out blowies to rich dudes.<</say>>
<<say "coffee">>You always were the blowjob queen. But that doesn't explain how that bastard fits into all this.<</say>>
<<say "pro1">>It's his business.<</say>>
<<say "coffee">>For fuck's sake, $pro1.name! You know he's a slimy fucking cunt! He can't be trusted. Before you know it, you'll be wrapped up in some scheme or other to go destroy some other fake villain!<</say>>
<<think "mc">>She doesn't believe the stories, huh? Good to know.<</think>>
<<say "pro1">>I just need the money, and it's good employment. They look after the girls, I can refuse any client I don't want to see, and can set my own limits. They've never once asked me to do anything more than a blow job, and any clients that pushed it were promptly removed.<</say>>
<<say "coffee">>And that undoes all the bad he's done—doing? He's fucking sending people to their deaths!<</say>>
<<say "mc">>There'll be no death on my watch.<</say>>
<<say "coffee">>What the fuck are you talking about?<</say>>
<<say "mc">>I'm here to stop him.<</say>>
<<say "pro1">>Okay. What? You're talking nonsense.<</say>>
<<think "mc">>Fuck it. I think these girls have earned my trust by now.<</think>>
<<say "mc">>I'm not from here. I came from out west to convince the cabinet to stop this war.<</say>>
<<say "pro1">>Are you smoking crack; what the fuck?<</say>>
<<say "coffee">>No... no. I think he's telling the truth. He hadn't heard of <i>Bunny Café</i> when he first came in the store, and he asked for a drink with <b>milk</b> in it.<</say>>
<<block "east/pro104.jpg">>
<<say "pro1">>Holy shit.<</say>>
<<say "mc">>Can you help me? I need to convince $howard.name and $eva.name.<</say>>
<<say "coffee">>This is fucking huge. Holy crap. Wait... just those two, don't you need $va.name too?<</say>>
<<say "mc">>Already have her.<</say>>
<<say "pro1">>Fucking hell. I don't even know how to process this right now.<</say>>
<</block>>
<<say "mc">>Sorry, I just felt... comfortable with you two. Please, is there anything you can tell me about $gerald.name, ideally with evidence, so I can convince them?<</say>>
<<say "coffee">>He fucked my dad's company over. That's why I hate him. But, I can't prove it, and thanks to $howard.name, the company is back on it's feet now.<</say>>
<<say "mc">>$pro1.name?<</say>>
<<say "pro1">>Listen. It's a good company and I enjoy working there. Can you promise me you'll ensure my employment after?<</say>>
<<say "mc">>I'll make it part of my deal with the cabinet.<</say>>
<<say "pro1">>The prostitution is merely the first step. His means of recruitment are questionable, for sure, he pries on those in debt for instance, but his people do not force anything on you. And as I say, it's a good and safe company to work for.<</say>>
<<say "mc">>I sense a but coming...<</say>>
<<say "pro1">>However...<</say>>
<<narrate>>She sticks her tongue out at you.<</narrate>>
<<say "pro1">>After a while he starts pushing you to work at the <i>Glitter Ball</i>. Not as a simple stripper, but in something called the platinum lounge. It's one step away from an all out orgy. The wealthy and powerful gather to fuck, suck and watch others do the same.<</say>>
<<if $east.gerald != undefined>>
<<think "mc">>Probably best to leave out I'm a member at the moment.<</think>>
<</if>>
<<say "mc">>Okay, but given this city's openness, what's so incriminating about that?<</say>>
<<say "pro1">>There are rumors among the workers, and it could very well be nothing, but the workers disappear sometimes. Once they get employed to work the platinum lounge they get moved into the wealthier parts of the city, and inevitably they start seeing their old friends and family less and less. Eventually, they just cut contact entirely.<</say>>
<<say "mc">>Okay...<</say>>
<<say "pro1">>The rumor goes that they're being sold off... that said one of the rumors is also that they're being sent to the patron to appease him, but that's a relatively new one.<</say>>
<<say "mc">>Definitely not coming to me.<</say>>
<<if $east.krissyperformed == 1>>
<<think "mc">>Hmm, $krissy.refer heard a similar rumor about them being sold off... nothing about the patron, though.<</think>>
<</if>>
<<narrate>>The two of them share a glance their eyes briefly widening, but otherwise say nothing.<</narrate>>
<<say "mc">>So the women who work the platinum lounge vanish and nobody investigates?<</say>>
<<say "pro1">>I'm still relatively new to the company, but some of the longer-serving staff mentioned it's one of the reasons they deny promotion to the lounge. I can't verify any of this, but maybe it's something you can work with?<</say>>
<<say "mc">>Yeah, it's definitely a new lead to follow. I'm still really confused how people can disappear without anyone realizing, though. It's a big city, but not humongous. I don't see how a constant supply of women disappearing wouldn't cause alarm.<</say>>
<<say "pro1">>They don't disappear, exactly. They'll resurface, very rarely, almost like proof of life, but they never make contact with old friends or family.<</say>>
<<say "mc">>Okay, now I'm confused. How do they resurface if they aren't making contact with anyone they knew?<</say>>
<<say "pro1">>I... don't know. But the rumors are sounding less viable the more I repeat them to you.<</say>>
<<say "mc">>It may be enough. I can probably resolve this situation without it, but if I can discredit him to the public, with proof, it may make the situation easier to deal with and diplomatic ties between the east and west better.<</say>>
<<say "pro1">>I would never have imagined sucking your cock was going to lead to a way to stop the damn war. Fuck me.<</say>>
<<say "mc">>I just did. But... I could go another round.<</say>>
<<block "east/coffee04.jpg">>
<<narrate>>$coffee.name pushes your shoulder playfully.<</narrate>>
<<say "coffee">>You're insatiable.<</say>>
<<say "pro1">>There's no way I've got the energy for that right now.<</say>>
<<say "mc">>Bah, lightweights. Jokes aside, I'll take the info you've given me and see what I can make of it. Thank you.<</say>>
<<button "Continue" easthub>>
<<set $east.coffee = "threesome">>
<<set $intel.gerald.delete('Possibly connected to the prostitution service at <i>Aegis Protectorate</i>.')>>
<<set $intel.gerald.pushUnique('Runs the prostitution service at <i>Aegis Protectorate</i>.')>>
<<set $intel.gerald.pushUnique('Rumors within his workforce suggest he is selling women off to the wealthy.')>>
<<time 3>>
<</button>>
<</block>>
<<case "pro1">>
<<narrate>>You notice the place is unusually busy.<</narrate>>
<<block "east/coffee01.jpg">>
<<say "mc">>$coffee.name, I spoke to your friend.<</say>>
<<say "coffee">>Oh, thank god. Is she in danger?<</say>>
<<say "mc">>No.<</say>>
<<say "coffee">>That's a relief. Listen, it's an absolute madhouse in here today. Do you mind if we talk later?<</say>>
<<say "mc">>Of course, no problem.<</say>>
<</block>>
<<say "coffee">>Great. Here's my address. I'm usually home by 21:00.<</say>>
<<think "mc">>Oh, we're not gonna get much talking done!<</think>>
<<say "mc">>Alright, I'll let you get back to it.<</say>>
<<say "coffee">>Thanks, I'll speak to you later.<</say>>
<<button "Continue" eaststuff>>
<<set $east.coffee = "home">>
<</button>>
<<default>>
<<left2 "east/coffee01.jpg">>
<<say "coffee">>Welcome to the Bunny Café, what can I get ya?<</say>>
<<narrate>>You're taken back by her attire.<</narrate>>
<<say "coffee">>Sir?<</say>>
<<say "mc">>Sorry, just taken back by... uhhh.<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say "coffee">>First time in the Bunny Café? Have you been living under a rock for the past century?<</say>>
<<say "mc">>I uhh... no, just <<if $tempvar2 == "ne">>not been down this road before<<else>>got a new job<</if>>.<</say>>
<<say "coffee">>I see. So what can I get you today?<</say>>
<<think "mc">>I know what I really want.<</think>>
<<narrate>>She catches your gaze.<</narrate>>
<<say "coffee">>Sir, I am flattered. But I must point out that I am not on the menu.<</say>>
<<narrate>>You cough nervously.<</narrate>>
<<say "mc">>No, I didn't mean... I was just.<</say>>
<<narrate>>She cackles.<</narrate>>
<<say "coffee">>Oh, you're fun to tease! First one's on the house, okay?<</say>>
<<say "mc">>Right, okay. Thank you. I'll just take a flat white, please.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say "coffee">>Is that a bad joke?<</say>>
<<say "mc">>Haha, yes, of course.<</say>>
<<narrate>>You look at the menu.<</narrate>>
<<say "mc">>Just a green tea, please.<</say>>
<<think "mc">>Weird. None of the menu options involve milk, yet I'm pretty sure the strays had it in supply before we started trading through the gateway.<</think>>
<<say "coffee">>What's your name, sir? I'll call you when ready.<</say>>
<<if $alias == undefined>>
<<think "mc">>I should probably use an alias while I'm here.<</think>>
<</if>>
<<say "mc">>Of course, my name is <<if $tempvar2 == "ne">>$name<<else>><<if $alias == undefined>><<textbox "$alias" Frank>><<else>>$alias<</if>><</if>>.<</say>>
<<say "coffee">>Great. I won't be long. I'm <<textbox "$coffee.name" Katrina>>, by the way.<</say>>
<<meet "coffee">>
<<if $tempvar2 == "ne">>
<<event "coffee" "neintro">>
<<think "coffee">>Wait, isn't that the patron's name... is he...? It may explain why he seems so out of place. He is kinda hot...<</think>>
<<narrate>>You sit in the coffee shop listening to the surrounding chatter, but mostly you're distracted by the barista who every now and again gives you a cute wave and a smile.<</narrate>>
<<cont "nestuff" "" 1>>
<<else>>
<<think "coffee" "Barista">>Not very often there are new hires around here. Must be due to the war effort.<</think>>
<<narrate>>You sit in the coffee shop listening to the surrounding chatter, but mostly you're distracted by the barista who every now and again gives you a cute wave and a smile. After several cups of green tea, all you learn is how much the local workers hate their bosses.<</narrate>>
<<button "Continue" easthub>>
<<set $east.coffee = 1>>
<<time 3>>
<</button>>
<</if>>
<</switch>><<set _who = State.variables[$awaypartystray]>>
<<set _whoe = State.variables[$awaypartyeast]>>
<<if $krissy.east == "lounge1" && $krissy.events.striptalk == undefined>>
<<narrate>>As you start to settle in for the night, $krissy.name walks over to you, barely able to make eye contact and looking extremely awkward.<</narrate>>
<<block "krissy/strip05.jpg">>
<<say "krissy">>A... about today.<</say>>
<<say "mc">>It was a fucked up situation. I should have never asked you to get involved with this. I am so sorry.<</say>>
<<say "krissy">>Y... yeah.<</say>>
<<say "mc">>It almost felt like $genvoy.name knew we were uncomfortable and was trying to egg us on.<</say>>
<<say "krissy">>I think she's just insatiable. After you left she even brought out a toy while she was watching.<</say>>
<</block>>
<<think "mc">>Heh, I kinda regret missing that.<</think>>
<<if $east.krissystrip == 1>>
<<narrate>>You can't help but notice her eyes on your crotch.<</narrate>>
<<say "krissy">>I couldn't believe it when she got your dick out. You were so hard.<</say>>
<<think "mc">>Did she just say that with a straight face?!<</think>>
<<say "mc">>I had two stunning women before me, one of them playing with herself and the other giving me a striptease. I was hardly going to remain flaccid.<</say>>
<<say "krissy">>T... Two stunning women?<</say>>
<<say "mc">>Let's not go there. You were half naked in front of me, and whatever else is happening, it doesn't change the fact you are an attractive woman and I'm still a man. Let's just leave it at that.<</say>>
<<think "mc">>I'm... I'm thinking I want to go there, though. Damn I am so fucking depraved. Right now I need to focus on the task at hand. When we're back home I can collect my thoughts. It's probably just the excitement of the moment, right?<</think>>
<<narrate>>You notice the corner of her lip raise slightly, like she's trying hard not to smile.<</narrate>>
<<say "krissy">>It was so wrong. I didn't know what to do. I didn't want to raise any suspicions, and $gerald.name knows me of old. I was so relieved when you managed to get away.<</say>>
<</if>>
<<say "mc">>Let's just try and put it behind us. Did you learn anything useful after I left at all?<</say>>
<<say "krissy">>I think so, but let's discuss it with the group tomorrow.<</say>>
<<say "mc">>Alright, good night, $krissy.refer. And for what it's worth, I'm sorry how fucked up that situation got.<</say>>
<<say "krissy">>I know, $krissy.calls, I know. Let's just move on.<</say>>
<<button "Continue" east-bedroom>>
<<set $krissy.events.striptalk = 1>>
<<if $east.krissystrip == 1>>
<<corrupt "krissy" 1>>
<</if>>
<</button>>
<<else>>
<<narrate>>You retire for the night.<</narrate>>
<<choices>>
/*
<<link $krissy.name>>
<</link>><br>
<<link $britt.name>>
<</link>><br>
<<link _who.name>>
<</link>><br>
<<link _whoe.name>>
<</link>><br>
<<if $mc.events.eaststay == "katie">>
<<link $katie.name>>
<</link>><br>
<</if>>
<<if $mc.events.eaststay == "holly">>
<<link $holly.name>>
<</link>><br>
<</if>>*/
<<link "Reminisce" compMovies>>
<</link>><br>
<<link "Sleep" eastsleep>>
<</link>>
<</choices>>
<</if>><<if $alias == undefined>>
<<set $alias = "Frank">>
<</if>>
<<scene>>
<<switch $tempvar>>
<<case "tourass">>
<<narrate>>As soon as the door is open she violently removes your shirt then throws off her dress, revealing she was wearing no panties.<</narrate>>
<<say "mc">>No panties? Naughty g—<</say>>
<<narrate>>She pushes you down on to the sofa, yanks your jeans to your knees, then wraps her luscious lips around your throbbing penis.<</narrate>>
<div id="replace">
<<button "Continue">>
<<replace "#replace">>
<<vid "east/tour/rep01.mp4">>
<<say "mc">>That's it, bitch, swallow my dirty cock!<</say>>
<<cont "eastsex" "tourass02">>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "tourass02">>
<<narrate>>She drags your jeans off properly. And slowly lowers herself on to your cock.<</narrate>>
<<vid "east/tour/rep02.mp4">>
<<say "tour">>Ohhh~ fuck.<</say>>
<<say "mc">>Yeah, you fucking like that slut?!<</say>>
<<say "tour">>Ohh yeah, like that.<</say>>
<<cont "eastsex" "tourass03">>
<<case "tourass03">>
<<say "tour">>Let me taste my ass on your cock while you fuck my throat!<</say>>
<<vid "east/tour/rep03.mp4">>
<<say "mc">>Choke on that, you fucking bitch!<</say>>
<<cont "eastsex" "tourass04">>
<<case "tourass04">>
<<vid "east/tour/rep04.mp4">>
<<say "tour">>Mmm, fuck. Am I your proper little slut... am I your proper little slut?<</say>>
<<cont "eastsex" "tourass05">>
<<case "tourass05">>
<<vid "east/tour/rep05.mp4">>
<<say "tour">>Oh my gosh, right there.<</say>>
<<say "mc">>Is it fucking good, slut?<</say>>
<<say "tour">>That's good... that's good...<</say>>
<<cont "eastsex" "tourass06">>
<<case "tourass06">>
<<vid "east/tour/rep06.mp4">>
<<say "tour">>Oh my god. Ohh~ that's good, it's so fucking good like that.<</say>>
<<narrate>>You pick up the pace, your savage lust racing to victory.<</narrate>>
<<say "tour">>You're gonna fuckin' cum. Please nut all over me, please nut all over.<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "east/tour/rep07.mp4">>
<<say "mc">>Take my seed all over your dirty slutty goddamn fucking body.<</say>>
<<narrate>>You explode violently over her ass spreading your seed messily over her.<</narrate>>
<<say "tour">>Yes! Give it to me!<</say>>
<<narrate>>She looks back at you, a massive smile on her face.<</narrate>>
<<say "tour">>Now that was a celebration! You were an animal, I love it. I'll be your dirty slut whenever you want!<</say>>
<<narrate>>You catch your breath then clean up and head out.<</narrate>>
<<button "Continue" nestuff>>
<<set $location = "res">>
<<unlock "tour" "ass">>
<<time 3>>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "dream">>
<<vid "kenzie/dreambj.mp4">>
<<narrate>>She greedily works your shaft, worshiping your cock like it's a god. You feel content, happy, like you are the luckiest man alive. As her tongue massages your bellend your body shudders. You know you're dreaming, but it feels so real.<</narrate>>
<<narrate>>You hold your hand out to grab her cheek, she pulls back, looks at you and shakes her head. Despite the vision before you, your cock still feels like her tongue is wrapped around it.<</narrate>>
<<cont "eastsex" "dream2">>
<<case "dream2">>
<<narrate>>You blink and everything changes. You're somewhere different and $voice.name has taken her place. Though you know it to be a dream, given her aspect you wonder if there could be more to it.<</narrate>>
<<vid "shalina/dreambj.mp4">>
<<narrate>>She greedily gobbles down on your cock, occasionally looking up at you with passion-filled eyes. You hope this is the $voice.name you are going home to.<</narrate>>
<<narrate>>A look of disgust comes over her and her head shoots to the right. She hisses at whatever she sees. You turn to face the same direction.<</narrate>>
<<cont "eastsex" "dream3">>
<<case "dream3">>
<<run endDay()>>
<<narrate>>As your head pivots the image changes again. $voice.name is gone and now the founder is sucking your cock. Your confusion intensifies but your lust takes over, and the feeling of elation grows within you.<</narrate>>
<<vid "founder/dreambj.mp4">>
<<narrate>>She slowly works your dick while looking up at you, her eyes a mixture of lust, scorn, and intrigue. You decide to yet again go with the flow and just enjoy the dream, only this time it feels like you're close to your edge.<</narrate>>
<<narrate>>As the feeling grows the dreamworld starts to fade before you and you start to wake.<</narrate>>
<<cont "eastsex" "dream4">>
<<case "dream4">>
<<narrate>>Your eyes open, quickly adjusting to the light, yet the pleasure you were feeling in your dream remains. Feeling ready to blow, you look down to see $britt.name happily servicing you.<</narrate>>
<<vid "britt/dreambj.mp4">>
<<narrate>>She grins as she notices your movement, but you're already about to erupt. She holds her head down on your cock while you unleash your seed directly down her throat.<</narrate>>
<<say "mc">>Now that's a wake-up call!<</say>>
<<narrate>>She grins, swallows dramatically, then shows you her tongue.<</narrate>>
<<say "britt">>And that's a brekkie I cud get used to.<</say>>
<<think "mc">>I guess that's why the dream felt so real.<</think>>
<<say "britt">>But, there's also bacon cookin'.<</say>>
<<narrate>>She gives your bellend one last suck to ensure it's nice and clean, then taps you on the chest before standing up.<</narrate>>
<<say "britt">>Let's eat!<</say>>
<<cont "eastwake" "return">>
<<case "patsex">>
<<narrate>>You head into the Glitter Box's back entrance to find $genvoy.name working out in the first side room.<</narrate>>
<<left2 "east/genvoy/meet01.jpg">>
<<say "genvoy">><<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>. I was hoping to see you again.<</say>>
<<if $tempvar2 == "ne">>
<<say mc>>Likewise. I was just wondering if there was any new evaluation requests?<</say>>
<<say genvoy>>You really get off on seeing your companions with others, huh?<</say>>
<<say mc>>What can I say?<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say genvoy>>Unfortunately, I don't have anything for you. However...<</say>>
<<else>>
<<say "mc">>Likewise. I was just looking for Gerald, but I think I can spare you a few minutes.<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say "genvoy">>Unfortunately, he's not around. With the invasion so imminent, his time is needed elsewhere.<</say>>
<<say "mc">>Makes sense. Shouldn't you be with him too?<</say>>
<<say "genvoy">>Nah. He's over at the training camp with Sarge. It's one of the few times I get a little time away... to your benefit today, it seems.<</say>>
<</if>>
<<left2 "east/genvoy/meet02.jpg">>
<<if $tempvar2 == "ne">>
<<say mc>>Oh?<</say>>
<<say genvoy>>Just hearing about the evaluations from my staff... and watching you with $molly.name... and the stories I've heard of $krissy.name...<</say>>
<<narrate>>She shivers as she mentions $krissy.name's name.<</narrate>>
<<say genvoy>>It's so fucking hot, and I certainly hope I'll get see you and $krissy.name perform together. Fuck, that makes me wet just thinking about it.<</say>>
<<think mc>>Yeah, I guess her being my $krissy.them doesn't phase many people in New Eden.<</think>>
<<say genvoy>>I've a few hours spare... and I think I know exactly how you can keep me entertained until $krissy.name is on that stage.<</say>>
<<else>>
<<say "mc">>What do you mean by that?<</say>>
<<say "genvoy">>Bringing $krissy.name in as a performer? Brilliant. I have no idea why you ran out while she was practicing... I was dripping. She really knows what she's doing. I am absolutely looking forward to watching you two perform.<</say>>
<<narrate>>You grin.<</narrate>>
<<think "mc">>Given what happens in here, I think she'd only be more turned on if she knew I was her $krissy.you.<</think>>
<<say "genvoy">>But back to the point. It's your benefit today because I have a few hours spare, and I think I know exactly what you want. Don't think I didn't notice how you were watching me when you should have been watching $krissy.name. That's quite the compliment.<</say>>
<</if>>
<<narrate>>She pushes you against the wall.<</narrate>>
<<say "genvoy">>This is my address. Be there in thirty minutes.<</say>>
<<narrate>>She slowly runs her hand down your body while gently blowing on your cheek.<</narrate>>
<<think "mc">>Fucking hell.<</think>>
<<narrate>>Your cock grows with anticipation, twitching with excitement. Just as her hand is about to reach your crotch, she pushes herself away off the wall.<</narrate>>
<<say "genvoy">>Thirty minutes.<</say>>
<<narrate>>She leaves without saying another word.<</narrate>>
<<think "mc">>Holy shit I am so hard right now. I never expected I'd get to fuck her!<</think>>
<<cont "eastsex" "patsex2">>
<<case "patsex2">>
<<narrate>>You mill around for a while, watching the clock slowly tick down. It feels like an absolute eternity, but eventually it's time. You hurry to the address she provided.<</narrate>>
<<narrate>>As you arrive, she's stood at the door waiting for you. She's dressed in a tight blue dress, her eyes mad with lust, she says nothing as she curls her finger inviting you in.<</narrate>>
<<think "mc">>Holy fuck yes.<</think>>
<<narrate>>She sits on the sofa, taps for you to sit beside her and as soon as you do she grabs your head and brings you to hers, kissing you passionately.<</narrate>>
<<say "mc">>I wanted to do that the first night I met you.<</say>>
<<say "genvoy">>Most men do. But watching you perform, I can't say I haven't lusted after you for some time myself.<</say>>
<<narrate>>She caresses your thigh while maintaining eye contact. With her other hand she pushes a strap off her shoulder.<</narrate>>
<<say "genvoy">>Now let's get rid of these pants, shall we?<</say>>
<<narrate>>Smitten, you go with the flow allowing her to do all the work as she undoes your belt and pulls your trousers down.<</narrate>>
<<say "genvoy">>Oh, my. It looks even more beautiful up close.<</say>>
<<narrate>>She runs her lips up the entirety of your shaft then gives your bellend a lick before resting her head over your crotch and again meeting your gaze, a big grin across her face.<</narrate>>
<<say "genvoy">>But I want more than a taste.<</say>>
<<cont "eastsex" "patsex01">>
<<case "patsex01">>
<<vid "east/genvoy/psex01.mp4">>
<<say "genvoy">>You like that?<</say>>
<<narrate>>She pushes off the other strap and pulls her dress down over her chest, revealing her bountiful treasures.<</narrate>>
<<say "genvoy">>Go ahead; lay back.<</say>>
<<narrate>>Happy where this is going, you follow the instruction. She raises her dress revealing a lack of underwear. She cocks her leg over you, her glistening pussy now mere centimeters from your manhood. She grins at you and spreads her lips before slowly lowering herself on to your cock. You feel a rush of excitement as the warmth of her pussy welcomes you and you hear the squelch of her juices.<</narrate>>
<<cont "eastsex" "patsex02">>
<<case "patsex02">>
<<vid "east/genvoy/psex02.mp4">>
<<narrate>>She starts riding, expertly sliding up and down your dick as you move your hips in sync.<</narrate>>
<<say "genvoy">>Feels so good.<</say>>
<<narrate>>You become almost hypnotized by the bounce of her tits before your face. She moans with rapturous delight and looking down on your face licks her lips, eager to bring you pleasure.<</narrate>>
<<say "genvoy">>You're gonna make me cum.<</say>>
<<say "mc">>Lay back on the sofa.<</say>>
<<narrate>>With a salacious grin she backs off of you and settles in to the corner of the sofa.<</narrate>>
<<cont "eastsex" "patsex03">>
<<case "patsex03">>
<<narrate>>You stand up and shed off your shirt. For a moment you just stand and gaze upon the beauty spread out on the sofa. She remains enamored with you, not once taking her eyes off you as she rubs her clit in anticipation of your cock.<</narrate>>
<<vid "east/genvoy/psex03.mp4">>
<<narrate>>You pull her legs out wider still and position yourself, gently rubbing your cock over her hood while she gasps. Too impatient yourself, you toy with her for only a second before you slide you dick back inside her.<</narrate>>
<<cont "eastsex" "patsex04">>
<<case "patsex04">>
<<vid "east/genvoy/psex04.mp4">>
<<narrate>>She holds her leg back as you pound away at her pussy. Her face a cacophony of lustful expressions.<</narrate>>
<<say "genvoy">>Oh, shit. Oh, that feels so good.<</say>>
<<narrate>>She looks up at you as you speed up, barely able to contain herself. Her gasps become quicker and you can tell she's trying to hold herself back.<</narrate>>
<<say "genvoy" "" "(Whispering)" "whisper">>Oh, fuck.<</say>>
<<narrate>>Barely audible, she whispers under her breath, you can tell she doesn't have long left in her.<</narrate>>
<<cont "eastsex" "patsex05">>
<<case "patsex05">>
<<narrate>>You push one her legs over to the side and hold on to her tightly for purchase as you pummel her harder and harder, faster and faster, greedy for your climax. She holds her finger to her mouth, her eyes meeting yours as she senses your desire.<</narrate>>
<<vid "east/genvoy/psex05.mp4">>
<<narrate>>She moans and gasps with joy. Her grunts of affirmation grow more frequent as she draws closer and closer to her orgasm and you can tell she's completely lost herself in the moment.<</narrate>>
<<say "genvoy">>Oh, fffff—<</say>>
<<narrate>>She gently pushes one of your hands away, moving her leg back over. You quickly grasp her thigh and start pushing harder, the sofa springs crying out under your assault.<</narrate>>
<<say "genvoy">>Oh, you're gonna make me cum.<</say>>
<<narrate>>Her vaginal muscles contract around your cock, she throws her head back into the pillow, and her mouth is agape as she screams in delight. All the extra stimulation proving too much for you too, and you pull out, quickly finishing over her.<</narrate>>
<<vid "east/genvoy/psex06.mp4">>
<<narrate>>She smiles at you, your warm goo running down her thigh.<</narrate>>
<<say "genvoy">>Fuck I needed that. I needed that so damn bad.<</say>>
<<say "mc">>Any time. Damn, I'm already looking forward to next time.<</say>>
<<narrate>>She peers up at you, a look of concern across her face.<</narrate>>
<<say "genvoy">>No, no, no. Please don't misunderstand, this was a one time thing. God, it was fucking awesome, and I needed to get it out of my system, but that's it.<</say>>
<<say "mc">>I... why?<</say>>
<<say "genvoy">>Let's not ruin the moment. We both had fun, and I'd be willing to give you some private shows with other women in the future... hell, if you have anyone in mind, hook me up... but I don't want you thinking this was more than it was.<</say>>
<<think "mc">>What a weird reaction. I did get told multiple times she doesn't usually go with men, so I guess I'm lucky to have even got this far.<</think>>
<<narrate>>You decide not to push any further. You had a good time, and while it seems unlikely there will be another, you certainly would enjoy watching her with some of your harem in the future.<</narrate>>
<<unlock "genvoy" "psex">>
<<if $tempvar2 != "ne">>
<<set $east.patsex = 1>>
<<cont "easthub" "" 3>>
<<else>>
<<cont "neweden" "" 2>>
<</if>>
<<case "krissypeep">>
<<narrate>>You carefully grab the handle, pushing down slowly and gently as to avoid making any noise as you open the door and peer through the crack.<</narrate>>
<<vid "krissy/peep01.mp4">>
<<think "mc">>This is the perfect position!<</think>>
<<narrate>>You watch as she spreads her lips apart and rubs herself, whimpering with excitement.<</narrate>>
<<think "mc">>This is my $krissy.them for crying out loud... and yet, I can't peel my eyes away.<</think>>
<<cont "eastsex" "krissypeep2">>
<<case "krissypeep2">>
<<narrate>>As her intensity increases she falls back on to the bed, lost to her desires.<</narrate>>
<<vid "krissy/peep02.mp4">>
<<say "krissy" "" "(Whimpering)" "whisper">>Aaahh~ <br><font style="font-size:65%">$name...</font><</say>>
<<narrate>>She whimpers with delight. You're unsure but you almost think she whispered your name as she creased over, struggling to contain herself.<</narrate>>
<<think "mc">>No... no way. I need to get outta here before she catches me.<</think>>
<<narrate>>You struggle to avert your gaze as the noises of her wet pussy grow louder. You carefully back away, closing the door quietly behind you.<</narrate>>
<<think "mc">>I'm imaging things, surely.<</think>>
<<unlock "krissy" "peep01">>
<<if $tempvar2 == "ne">>
<<button "Sleep" sleep>>
<<corrupt "krissy" 3>>
<</button>>
<<else>>
<<button "Continue" easthub>>
<<unlock "krissy" "peep01">>
<<corrupt "krissy" 3>>
<<time 3>>
<</button>>
<</if>>
<<case "vabob">>
<<narrate>>You shimmy your trousers down around your ankles and grin at $va.name. She rubs her feet around your exposed penis and bites her lip.<</narrate>>
<<vid "va/bob02.mp4">>
<<narrate>>The feeling of her feet grinding across your manhood is oddly exhilarating, perhaps accentuated by having a woman of power trying to curry favor with you.<</narrate>>
<<narrate>>You look back up to face her. Her eyes fixated on your cock she ducks under the table and crawls over to you.<</narrate>>
<<cont "eastsex" "vabob03">>
<<case "vabob03">>
<<narrate>>She starts stroking your cock, not once taking her eyes off it. She seems enthralled by it.<</narrate>>
<<vid "va/bob03.mp4">>
<<narrate>>She steals glances at you from time to time but her focus is entirely on your manhood. She licks her hand and coats your shaft and balls with her spittle.<</narrate>>
<<say "mc">>Mhhmm, that's good.<</say>>
<<narrate>>She moves her face closer to your dick, licks it from top to bottom, then lets out a long and sensual sigh blowing cold air onto your bellend and sending a shiver down your spine.<</narrate>>
<<narrate>>She continues to lather your cock in spittle, the sounds of her stroking getting wetter and wetter. You pull the chair around to give her more headroom. You grab her chin and guide her gaze to yours. You rest your thumb in her mouth, which she sucks obediently. With your other hand you point at her lips then back at your cock. She smirks, releases your thumb and rests her lips on the tip of your penis.<</narrate>>
<<cont "eastsex" "vabob04">>
<<case "vabob04">>
<<narrate>>While retaining eye contact she brings your dick into her mouth. Her hands continue to provide pleasure as she polishes your helmet.<</narrate>>
<<vid "va/bob04.mp4">>
<<narrate>>Sloppily she toys with your tip, working her tongue along every angle she can.<</narrate>>
<<narrate>>She looks up at you almost gratefully as one hand continues to massage your balls.<</narrate>>
<<think "mc">>Fuck me. This woman knows what she's doing.<</think>>
<<narrate>>Unable to contain your lust any further, you grab one of her straps and tear at her dress. She gasps with delight.<</narrate>>
<<narrate>>You hold her chin again and bring her to her full height before pushing her down on to the table, bending her over it.<</narrate>>
<<cont "eastsex" "vabob05">>
<<case "vabob05">>
<<narrate>>You eagerly enter her, her pussy offering a welcoming squelch as the juices try to escape your dong.<</narrate>>
<<vid "va/bob05.mp4">>
<<narrate>>You give her a few light spanks as she screams in joy. Grabbing her hair with one hand and her body with your other, you shove into her, your cock growing somehow harder still as she struggles to contain the pleasure welling up inside her.<</narrate>>
<<narrate>>Her foot begins to shake and it looks as though the pleasure has finally consumed her. But as you continue thrusting one of the table legs gives way under the strain. Barely able to catch her in time you hold her awkwardly in your arms while she laughs.<</narrate>>
<<say "va">>Let's see if we can break the sofa too.<</say>>
<<narrate>>She wriggles out of your grip, grabs your hand and leads you to the couch.<</narrate>>
<<cont "eastsex" "vabob06">>
<<case "vabob06">>
<<narrate>>You sit back on the sofa, the sweat making it uncomfortable as she climbs atop your dick.<</narrate>>
<<vid "va/bob06.mp4">>
<<narrate>>As she bounces gleefully on you, her pussy more than happy to entertain you, all thoughts of the sofa are gone and all that's in your mind now is your oncoming climax.<</narrate>>
<<say "va">>Oh my god. Yes.<</say>>
<<narrate>>She groans with rapturous delight. Her right foot quivers and you feel her pussy tightening around you. A moment later, she falls off your lap. But you're still greedy for your own orgasm. Sensing this, she raises her ass in the air and wiggles it at you seductively.<</narrate>>
<<cont "eastsex" "vabob07">>
<<case "vabob07">>
<<narrate>>Without even a moment's hesitation, she forces her body backwards, her pussy once again swallowing you whole. Like a woman possessed she keeps at it, swinging her body back and forth, her full weight behind each thrust.<</narrate>>
<<vid "va/bob07.mp4">>
<<narrate>>Her determination to finish you off is not lost and after only a few moments you feel yourself ready to blow.<</narrate>>
<<say "mc">>It's cumming... fuuuck it's cumming.<</say>>
<<narrate>>She rapidly changes position until she's staring up at you, your dick hovering above her face.<</narrate>>
<<vid "va/bob08.mp4">>
<<narrate>>Her lustful eyes plead for your load and it only takes a few jerks before you paint her face with your jizz. Once she's content you're done she greedily takes your cock back into her mouth, eager to clean up every last drop from your cock.<</narrate>>
<<say "mc">>You're a fucking animal.<</say>>
<<say "va">>And you fucking loved it.<</say>>
<<narrate>>The pair of you grin at each other and then she lets out a cackle.<</narrate>>
<<unlock "va" "bob">>
<<if $tempvar2 == "ne">>
<<cont "nestuff" "" 2>>
<<else>>
<<narrate>>Strangely, you do feel like you know this woman better, and while you still don't trust her as far as you can throw her, you're certainly looking forward to future encounters.<</narrate>>
<<think "mc">>When we're back to the hub, I should probably discuss these plans with $krissy.name. They're not going to help me at the cabinet meeting, but maybe there's something useful in them.<</think>>
<<set $east.con = 3>>
<<cont "easthub" "" 3>>
<</if>>
<<case "eastwhore">>
<<set _whoe = State.variables[$awaypartyeast]>>
<<say $awaypartyeast>>What did you want me to do at <i>Aegis</i>?<</say>>
<<say "mc">>It's not exactly something I'd like to be asking my _whoe.them, but it might lead us to some new information.<</say>>
<<say $awaypartyeast>>I'm not going to like this, am I?<</say>>
<<say "mc">>I need you to go undercover as a performer at the Platinum Lounge.<</say>>
<<say $awaypartyeast>>Isn't that $gerald.name's sex club you told us about?<</say>>
<<say "mc">>Yes. So I completely understand if you don't want to. I realize I'm asking way too much.<</say>>
<<if $awaypartyeast == "aubree">>
<<say "aubree">>I'll do it, but I'll only perform with women.<</say>>
<<say "mc">>Just like that? I really didn't expect you to accommodate this request.<</say>>
<<say "aubree">>Exactly. Despite that, you still asked. That's how I know it's important. If you can guarantee I won't have a stranger's cock inside me, I'll do it. Remember, I've lived here a long time, I'm not blind to the perversions and kinks that go on around here.<</say>>
<<say "mc">>I don't know what to say.<</say>>
<<say "aubree">>Say nothing. This isn't us back home fooling around, teasing each other or whatever, there are lives at stake. I will do my part.<</say>>
<<elseif $awaypartyeast == "adria">>
<<say "adria">>What? Are you serious?!<</say>>
<<say "mc">>I know. I know. It's a massive ask and if I were in your shoes I'd be slapping me and telling me to fuck off.<</say>>
<<say "adria">>Yet despite that you've still asked me.<</say>>
<<say "mc">>I have no idea what it may uncover, but it may give us the edge in removing or discrediting $gerald.name.<</say>>
<<say "adria">>Fine. But no men. I will not perform as you call it, for any men.<</say>>
<<elseif $awaypartyeast == "monique">>
<<say "monique">>You want me to fuck in $gerald.name's club? Who?<</say>>
<<say "mc">>You can say no to anyone you don't want to indulge with.<</say>>
<<say "monique">>Nah, I'm down. But I won't sleep with any strange men unless it's a threesome with you. But if you'll watch me, I'll gladly play with another women for your amusement.<</say>>
<<if $monique.events.truthwait < 3>>
<<think "mc">>I've denied her until now, but it's getting increasingly difficult and I think she can sense that. Who knows how she'll ask me to repay her for this particular favor.<</think>>
<</if>>
<<elseif $awaypartyeast == "lexi">>
<<say "lexi">>You want me to do what?! Not a chance!<</say>>
<<say "mc">>I'm sorry, $lexi.refer. I know it's a big ask and I understand you reluctance. I won't force you, I was just hoping to get some dirt on $gerald.name.<</say>>
<<narrate>>She holds her temples.<</narrate>>
<<say "lexi">>I can't believe I'm saying this, and maybe it's because I'm in this form, but fine. I'll try and help. I can't promise anything, and I certainly won't be letting any men near me. But... I'll try with a woman.<</say>>
<<say "mc">>Are you sure? I don't want to—<</say>>
<<say "lexi">>Let's just go before I change my mind.<</say>>
<</if>>
<<say "mc">>I owe you big. Let's head over to <i>Aegis</i> and get everything sorted.<</say>>
<<set $east.whoreeast = $awaypartyeast>>
<<cont "eastsex" $awaypartyeast>>
<<case "straywhore">>
<<say $awaypartystray>>So you wanted me to do something at <i>Aegis</i>?<</say>>
<<say "mc">>Yeah... it's a bit... sensitive.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say "mc">>They're running a prostitution ring. Some of those prostitutes end up as performers in the platinum lounge at <i>Glitter Box</i>. If I can deliver $gerald.name three performers I might be able to get some more info.<</say>>
<<say $awaypartystray>>Wait. Just what are you asking me here? To sleep with other men? Without you?!<</say>>
<<say "mc">>Without me? What? No, I'm the trainer; I'm the one you have to convince and it's my call if you get moved to the platinum lounge.<</say>>
<<say $awaypartystray>>So, who do I perform with?<</say>>
<<say "mc">>I'll make sure it's me or other women.<</say>>
<<narrate>>She pauses for a moment.<</narrate>>
<<say "mc">>I won't ask you to do this if you aren't comfortable. I can't even guarantee it will lead to anything meaningful. And, if at any point you want out, just leave.<</say>>
<<say $awaypartystray>>No. No. It's fine. It may lead to something and worst case we just have a great time fucking each other or you get to watch me with another woman.<</say>>
<<say "mc">>Doesn't sound so bad when you put it like that. Let's head to <i>Aegis</i> and I'll let Dave know.<</say>>
<<set $east.whorestray = $awaypartystray>>
<<cont "eastsex" $awaypartystray>>
<<case "kayla">>
<<say genvoy>>Great, she has an apartment just next door, just let yourself in. Have fun.<</say>>
<<narrate>>She waves you off as she gets back on with some paperwork.<</narrate>>
<<think mc>>So blasé!<</think>>
<<narrate>>You message $kayla.name to meet you and head next door.<</narrate>>
<<left2 "east/cs/kayla01.jpg">>
<<if $kayla.bimbo != true && $replay == false>>
<<set $kayla.bimbo = true>>
<<set $returnkayla = true>>
<</if>>
<<say cs>>$genvoy.name didn't tell me to expect you!<</say>>
<<say mc>>Is now a bad time?<</say>>
<<narrate>>She looks $kayla.name up and down, licking her lips.<</narrate>>
<<say cs>>Now is a great time!
<<if !$girlsmet.includes('cs')>>
<<meet "cs">>
I'm <<textbox "$cs.name" Allegra>>, by the way. I believe you've already had the pleasure of my sister.
<</if>>
And you, $kayla.name, are quite the treat!
<</say>>
<<narrate>>$kayla.name grins.<</narrate>>
<<say kayla>>I hope you taste as sweet as you talk.<</say>>
<<say cs>>Oh, I like you... come with me. $name, watch, jerk off, or go watch a movie, whatever you want.<</say>>
<<say kayla>>He's coming to watch or I'm not partaking<</say>>
<<say mc>>There you have it.<</say>>
<<meet "cs">>
<<cont "eastsex" "kayla01">>
<<case kayla01>>
<<narrate>>Within moments of entering the bedroom, $kayla.name has disrobed both herself and $cs.name and has her pinned down on the bed.<</narrate>>
<<vid "east/cs/kayla01.mp4">>
<<narrate>>$cs.name moans and writhes under the assault from $kayla.name's tongue.<</narrate>>
<<think mc>>Who is evaluating who, here?<</think>>
<<say cs>>Oh, wow.<</say>>
<<cont "eastsex" kayla02>>
<<case kayla02>>
<<vid "east/cs/kayla02.mp4">>
<<narrate>>$kayla.name is like a woman possessed, completely taking control, and she flips $cs.name over and continues toying with her pussy.<</narrate>>
<<say cs>>Ohh~ fuck yes!<</say>>
<<think mc>>There's something about their size difference and $kayla.name completely dominating her that's really doing it for me on here...<</think>>
<<cont "eastsex" kayla03>>
<<case kayla03>>
<<vid "east/cs/kayla03.mp4">>
<<narrate>>$kayla.name rams her ass into $cs.name's face, who greedily takes on the challenge, running her tongue up and down $kayla.name's glistening pussy as she twerks her giant ass in $cs.name's tiny head.<</narrate>>
<<cont "eastsex" kayla04>>
<<case kayla04>>
<<vid "east/cs/kayla04.mp4">>
<<narrate>>$kayla.name lifts $cs.name's leg up and mounts her, their vulvae rubbing together as $kayla.name sucks on $cs.name's toes.<</narrate>>
<<say "cs">>Mmm~ you are so wet.<</say>>
<<say "cs">>Oh, yes, yes, yes, yes.<</say>>
<<cont "eastsex" kayla05>>
<<case kayla05>>
<<vid "east/cs/kayla05.mp4">>
<<narrate>>They switch positions. The petite $cs.name grinding over bimbo $kayla.name a welcome feast for your eyes, and the wet sounds of their flesh a delight to your eyes.<</narrate>>
<<say cs>>Oh, fff~ uck.<</say>>
<<say kayla>>Keep going, keep going. Don't fucking stop.<</say>>
<<say cs>>I won't ever stop.<</say>>
<<narrate>>$cs.name screams out as yet another orgasm takes hold of her.<</narrate>>
<<say cs>>You just made me cum.<</say>>
<<cont "eastsex" kayla06>>
<<case kayla06>>
<<vid "east/cs/kayla06.mp4">>
<<say kayla>>You wanna cum with me?<</say>>
<<say cs>>Fuck, yes. So much.<</say>>
<<narrate>>The two scream out together as their final climaxes take hold. The two lay back the bed, their legs still intertwined.<</narrate>>
<<say mc>>That was... incredible.<</say>>
<<say cs>>Fuck yes it was. I've never gotten off that quickly and that many times... and I feel like you were the one evaluating me.<</say>>
<<say kayla>>Maybe a little, I wanted to make sure you're good enough to entertain $name.<</say>>
<<say cs>>Haha! How'd I do?<</say>>
<<say kayla>>He looks happy enough to me.<</say>>
<<say cs>>Then i think we both got what we wanted from this.<</say>>
<<narrate>>She stays recuperating on the bed while you and $kayla.name make your exit.<</narrate>>
<<unlock "kayla" "cs">>
<<unlock "cs" "kayla">>
<<if $tempvar2 == "ne">>
<<button "Continue" neglitter>>
<<temp "performers">>
<<lust "kayla" 4>>
<<time 1.5>>
<</button>>
<<else>>
<<if $replay == false>>
<<set $east.geraldgirls++>>
<<set $east.aegisworker.pushUnique('kayla')>>
<</if>>
<<cont "easthub" "" 3>>
<</if>>
<<case "lacy">>
<<narrate>>As you make your way through to one of the offices at <i>Aegis</i> you notice one of the performers from the platinum lounge.<</narrate>>
<<block "east/foxxx/meet01.jpg">>
<<say "foxxx">>Well if it isn't the newbie that got himself an invitation from $gerald.name himself!<</say>>
<<say "mc">>Hi. Loved your performance, by the way.<</say>>
<<say "foxxx">>Of course. It's always great to perform with $genvoy.name. What brings you here today?<</say>>
<<narrate>>You gesture at $lacy.name.<</narrate>>
<<say "mc">>I've come to sign my friend up here. Maybe I'll get to watch the two of you perform in the future.<</say>>
<<narrate>>You give her a wink.<</narrate>>
<</block>>
<<say "foxxx">>Have you been evaluated yet?<</say>>
<<say "lacy">>I have not; that's what we're here for.<</say>>
<<say "foxxx">>Alright. I'll handle it.<</say>>
<<say "mc">>Huh?<</say>>
<<say "foxxx">>It means you'll get exactly what you just wished for. You watch the two of us while I evaluate her hands on.<</say>>
<<say "lacy">>That sounds logical. You can enjoy the show and let us do the work.<</say>>
<<think "mc">>Logical how? I was kinda hoping to 'evaluate' her myself, not that I'm not gonna say no to watching the two of them.<</think>>
<<say "foxxx">>You may call me <<textbox "$foxxx.name" Chantel>>. Come on, I have an apartment around the corner so we don't have to use these grubby offices.<</say>>
<<narrate>>As soon as you're in the door, $foxxx.name grabs some clothes off the cabinet and throws them at $lacy.name.<</narrate>>
<<say "foxxx">>Get dressed into something a bit sexier, then we'll perform for <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>> here.<</say>>
<<meet "foxxx">>
<<cont "eastsex" "lacyaf">>
<<case "nelacy">>
<<left2 "east/foxxx/meet01.jpg">>
<<say "foxxx">>Now there's a treat!<</say>>
<<say "lacy">>I understand you wanted to perform with me for $name?<</say>>
<<say "foxxx">>Something like that...<</say>>
<<say "lacy">>I'd be most happy to entertain.<</say>>
<<say "foxxx">>You may call me <<if $girlsmet.includes('foxxx')>>$foxxx.name<<else>><<textbox "$foxxx.name" Chantel>><</if>>. Come on, I have an apartment around the corner so we don't have to use these grubby offices.<</say>>
<<narrate>>As soon as you're in the door, $foxxx.name grabs some clothes off the cabinet and throws them at $lacy.name.<</narrate>>
<<say "foxxx">>Get dressed into something a bit sexier, then we'll perform for <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>> here.<</say>>
<<meet "foxxx">>
<<cont "eastsex" "lacyaf">>
<<case "lacyaf">>
<<narrate>>The two of them reappear dressed in sexy lingerie. $lacy.name grabs the back of $foxxx.name's head and brings her in for a passionate kiss.<</narrate>>
<<say "foxxx">>Mhhmmm, yes, now that's good.<</say>>
<<narrate>>Quickly, $lacy.name moves forward, rubbing herself along $foxxx.name's thigh.<</narrate>>
<<vid "east/foxxx/lacyaf01.mp4">>
<<say "foxxx">>Sit back and watch, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>. I can already tell this is going to be a great show.<</say>>
<<cont "eastsex" "lacyaf02">>
<<case "lacyaf02">>
<<narrate>>$lacy.name sucks on $foxxx.name's titty as her fingers explore her pussy.<</narrate>>
<<vid "east/foxxx/lacyaf02.mp4">>
<<say "foxxx">>Yes. Oh, yes.<</say>>
<<narrate>>$lacy.name's fingers move quickly as she gazes upon $foxxx.name with utmost desire.<</narrate>>
<<cont "eastsex" "lacyaf03">>
<<case "lacyaf03">>
<<narrate>>$foxxx.name pushes $lacy.name to the side, pulls off her top and repays the favor, hungrily lapping at her snatch.<</narrate>>
<<vid "east/foxxx/lacyaf03.mp4">>
<<say "lacy">>Yeah. Mhmmm, fuck that feels so good.<</say>>
<<cont "eastsex" "lacyaf04">>
<<case "lacyaf04">>
<<narrate>>As if it's some sort of game of tug of war, $lacy.name pushes $foxxx.name back and stands over her smiling before grinding her clit against $foxxx.name's.<</narrate>>
<<vid "east/foxxx/lacyaf04.mp4">>
<<say "foxxx">>Yeah, yes, yes!<</say>>
<<narrate>>The two of them are completely engrossed in each other, their hips move in sync and their moans become increasingly passionate.<</narrate>>
<<cont "eastsex" "lacyaf05">>
<<case "lacyaf05">>
<<narrate>>$foxxx.name pulls out a small dildo from a nearby drawer.<</narrate>>
<<vid "east/foxxx/lacyaf05.mp4">>
<<narrate>>$lacy.name's body quivers as the dildo enters her. Her breaths are short and she's unable to contain her pleasure as $foxxx.name continues.<</narrate>>
<<say "lacy">>Ahhhh~ yeah, that's it!<</say>>
<<cont "eastsex" "lacyaf06">>
<<case "lacyaf06">>
<<narrate>>The ping pong continues when $lacy.name takes charge of the dildo and gestures for $foxxx.name to sit on her face.<</narrate>>
<<vid "east/foxxx/lacyaf06.mp4">>
<<narrate>>$lacy.name's tongue massages $foxxx.name's clit while she viciously thrusts the dildo in and out of her pussy.<</narrate>>
<<say "foxxx">>Yes, yes, yes! Oh my god that's so fucking good!<</say>>
<<cont "eastsex" "lacyaf07">>
<<case "lacyaf07">>
<<narrate>>Biting down on the dildo, $lacy.name grabs $foxxx.name's buttocks and bounces $foxxx.name's pussy on her face.<</narrate>>
<<vid "east/foxxx/lacyaf07.mp4">>
<<narrate>>$foxxx.name quickly gets the picture and starts twerking her hips as $lacy.name makes encouraging noises of affirmation.<</narrate>>
<<say "foxxx">>Ahhh yes!<</say>>
<<narrate>>As $foxxx.name begins to convulse, $lacy.name takes the dildo back in her hand and brings $foxxx.name to completion.<</narrate>>
<<say "foxxx">>Oh my god.<</say>>
<<narrate>>$foxxx.name gently falls to the side of $lacy.name and lays panting.<</narrate>>
<<say "foxxx">>Yeah, you're in. Fuck me you're in. Performing with you is gonna be damn hot.<</say>>
<<say "lacy">>It was extremely enjoyable, I too look forward to a repeat performance.<</say>>
<<say "mc">>God that was hot. I wanted to join in so damn bad!<</say>>
<<narrate>>$foxxx.name grins.<</narrate>>
<<say "foxxx">>Then how about the two of you join me one afternoon? We'll get some practice in ready for a real performance. I need to regain some strength after that, otherwise I'd be up for it right now.<</say>>
<<unlock "lacy" "lacyaf">>
<<unlock "foxxx" "lacyaf">>
<<if $tempvar2 == "ne">>
<<button "Continue" neglitter>>
<<temp "performers">>
<<lust "lacy" 4>>
<<time 1.5>>
<</button>>
<<else>>
<<if $replay == false>>
<<set $east.geraldgirls++>>
<<set $east.aegisworker.pushUnique('lacy')>>
<</if>>
<<cont "easthub" "" 3>>
<</if>>
<<case "ember">>
<<if $tempvar2 == "ne">>
<<narrate>>You head back to the hub to collect $ember.name, returning a few minutes later.<</narrate>>
<<say "ew">>Ah, $name, a pleasure to see you again.<</say>>
<<say "mc">>Likewise. I understand you were interested in evaluating $ember.name?<</say>>
<<narrate>>You turn to $ember.name.<</narrate>>
<<else>>
<<narrate>>You head inside trying to find Dave when you bump into the woman you met at the Platinum Lounge.<</narrate>>
<<say "ew">>Oh, you're recruiting for him now? How about you let me take her for a spin?<</say>>
<<say "mc">>I didn't expect to see you here.<</say>>
<<say "ew">>I like to check out if there's any fresh meat worth my time... now, is she? I'll be sure to let $gerald.name know.<</say>>
<</if>>
<<say "mc">>You up for it?<</say>>
<<say "ember">>She's hot, so why not? What's your name?<</say>>
<<narrate>>She licks her lips.<</narrate>>
<<say "ew">><<if $ew.name == "???" || $ew.name == "Wife">>
<<textbox "$ew.name" Olivia>>
<<else>>
$ew.name
<</if>>, though usually I just go by <i>Wife</i> when I'm performing. Come, my apartment is close by.<</say>>
<<cont "eastsex" "ritaew01">>
<<case "ritaew01">>
<<narrate>>$ew.name throws her jacket off as soon as she enters and sits on the sofa. $ember.name quickly descends upon her, her tongue eager to explore the inside of $ew.name's mouth.<</narrate>>
<<vid "east/ew/ritaew01.mp4">>
<<say "ew">>Looks like you're in for a good show here, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>.<</say>>
<<narrate>>She casts off the rest of her clothes and grins at $ember.name.<</narrate>>
<<say "ew">>Show me what else that tongue can do.<</say>>
<<cont "eastsex" "ritaew02">>
<<case "ritaew02">>
<<narrate>>$ew.name settles back on to the sofa, presenting her pussy for $ember.name.<</narrate>>
<<vid "east/ew/ritaew02.mp4">>
<<narrate>>With no hesitation, $ember.name buries her head between $ew.name's thighs, eager to please.<</narrate>>
<<say "ew">>Oh my gosh, yeah!<</say>>
<<narrate>>$ew.name moans with joy as $ember.name's tongue darts up and down her vulva.<</narrate>>
<<cont "eastsex" "ritaew03">>
<<case "ritaew03">>
<<narrate>>$ember.name undresses as they switch places, $ew.name hungry to taste $ember.name's glistening pussy.<</narrate>>
<<vid "east/ew/ritaew03.mp4">>
<<narrate>>She kisses $ember.name then runs her tongue up and down her lips. $ember.name's moans grow more frequent with each passing second.<</narrate>>
<<cont "eastsex" "ritaew04">>
<<case "ritaew04">>
<<narrate>>$ember.name pushes $ew.name back then lays more squarely on the sofa, presenting her face as a seat to $ew.name.<</narrate>>
<<vid "east/ew/ritaew04.mp4">>
<<say "ew">>Oh my god, use that fucking tongue!<</say>>
<<narrate>>$ew.name grinds on $ember.name's face, rubbing her pussy against $ember.name's manic tongue.<</narrate>>
<<say "ew">>It feels.... so good.<</say>>
<<cont "eastsex" "ritaew05">>
<<case "ritaew05">>
<<narrate>>The two of them shift on the sofa, eventually settling when both of them have the other's pussy in their face.<</narrate>>
<<vid "east/ew/ritaew05.mp4">>
<<say "ember">>I want you to cum!<</say>>
<<narrate>>Both of them locked in the pleasure, their fingers do all the work as they're barely able to make use of their tongues as their salacious screams fill the room.<</narrate>>
<<say "ew">>Oh my god. Right there, right there!<</say>>
<<narrate>>$ember.name manages to compose herself long enough to get a taste as the orgasm takes control of $ew.name's body.<</narrate>>
<<cont "eastsex" "ritaew06">>
<<case "ritaew06">>
<<narrate>>$ew.name takes control, mounting $ember.name and rubbing her pussy on $ember.name's.<</narrate>>
<<vid "east/ew/ritaew06.mp4">>
<<say "ember">>Oh my god, I'm cumming!<</say>>
<<narrate>>As their climax wanes, they begin to slow, their bodies a mess of sweat and adrenaline. As they bask in the afterglow, soft giggles can be heard from them, each content in the pleasure they brought the other.<</narrate>>
<<say "ember">>Did I pass?<</say>>
<<say "ew">>I'll say. I'm looking forward to watching your performances, maybe my husband—<</say>>
<<say "ember">>Women and <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>> only.<</say>>
<<say "ew">>Shame. He'd have enjoyed sharing you with <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>.<</say>>
<<say "ember">>Sharing me?<</say>>
<<narrate>>She looks over at you, a little confused.<</narrate>>
<<say "mc">>Something we can think about in the future. Thanks, $ew.name.<</say>>
<<say "ew">>Any time. Holy shit, yes... any time. Same for you, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>.<</say>>
<<unlock "ew" "ritaew">>
<<unlock "ember" "ritaew">>
<<if $tempvar2 == "ne">>
<<button "Continue" neglitter>>
<<temp "performers">>
<<lust "ember" 4>>
<<time 1.5>>
<</button>>
<<else>>
<<if $replay == false>>
<<set $east.geraldgirls++>>
<<set $east.aegisworker.pushUnique('ember')>>
<</if>>
<<cont "easthub" "" 3>>
<</if>>
<<case "nemolly">>
<<narrate>>$genvoy.name taps her foot impatiently.<</narrate>>
<<say "genvoy">>Where's Booker? He was meant to be here by now!<</say>>
<<say "molly">>Is everything okay?<</say>>
<<say "genvoy">>No, your evaluator is running late. That boy, I tell you!<</say>>
<<narrate>>She looks at her watch one last time, then throws her hands in the air.<</narrate>>
<<say "genvoy">>Time is precious. You know what, I'll oversee this myself. A one time event, $name, you two perform and I'll evaluate you.<</say>>
<<narrate>>$molly.name looks over at you and grips her fists and punches the air with a beaming smile on her face.<</narrate>>
<<say "molly">>Yesss!<</say>>
<<say "genvoy">>Come on, my place is around the corner.<</say>>
<<narrate>>You arrive a few minutes later and $genvoy.name promptly shows you to the bedroom.<</narrate>>
<<say "molly">>Nice place.<</say>>
<<narrate>>She grins while slipping out of her clothes.<</narrate>>
<<vid "molly/aeg01.mp4">>
<<narrate>>She lays down on the bed, uses two fingers to spread her lips apart and looks up at you.<</narrate>>
<<say "molly">>I need you inside of me.<</say>>
<<cont "eastsex" "mollyaeg02">>
<<case "molly">>
<<narrate>>You find Dave and introduce him to $molly.name.<</narrate>>
<<say "dave">>Wow. She's cute. She'll do well.<</say>>
<<say "molly">>Thanks! Looking forward to it.<</say>>
<<say "dave">>You already evaluated her?<</say>>
<<say "mc">>Yup, all good to go.<</say>>
<<narrate>>She gives you a stern look while caressing your chest.<</narrate>>
<<say "molly">>Maybe we should do some more... evaluating before the show?<</say>>
<<narrate>>Dave laughs.<</narrate>>
<<say "dave">>You've got a live one there, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>!<</say>>
<<narrate>>The two of you head home after signing $molly.name up.<</narrate>>
<<say "molly">>About this evaluation... I think it would be unfair not to actually do it, right?<</say>>
<<say "mc">>Oh, yeah, totally.<</say>>
<<narrate>>She grins while slipping out of her clothes.<</narrate>>
<<vid "molly/aeg01.mp4">>
<<narrate>>She lays down on the bed, uses two fingers to spread her lips apart and looks up at you.<</narrate>>
<<say "molly">>I need you inside of me.<</say>>
<<cont "eastsex" "mollyaeg02">>
<<case "mollyaeg02">>
<<narrate>>You slide your dick inside her, happy to meet her demands.<</narrate>>
<<vid "molly/aeg04.mp4">>
<<narrate>>She looks up at you gratefully while moaning in delight.<</narrate>>
<<say "molly">>Yes, $name, yes!<</say>>
<<cont "eastsex" "mollyaeg03">>
<<case "mollyaeg03">>
<<vid "molly/aeg03.mp4">>
<<say "molly">>Fuck, fuck, fuck!<</say>>
<<narrate>>You keep thrusting as she holds her legs back. She gasps in joy as the pounding continues.<</narrate>>
<<say "molly">>Make me cum.<</say>>
<<narrate>>Her face a picture of desire, you can barely contain yourself.<</narrate>>
<<cont "eastsex" "mollyaeg04">>
<<case "mollyaeg04">>
<<narrate>>She crawls further back on to the bed, releasing your dick. She taps the bed gesturing you to lie with her. She raises her hips over your cock and gently lowers herself down on to your rod.<</narrate>>
<<vid "molly/aeg02.mp4">>
<<narrate>>She slowly and deliberately pushes herself up and down your cock, the sounds of the bed springs struggling under her force.<</narrate>>
<<cont "eastsex" "mollyaeg05">>
<<case "mollyaeg05">>
<<narrate>>Hungry for release, you grab her ass, pull yourself up and pound into her, eager to reach climax.<</narrate>>
<<vid "molly/aeg05.mp4">>
<<say "molly">>Ohhhh~ my god.<</say>>
<<narrate>>Her body starts to quiver as you feel her vaginal muscles tightening around your cock.<</narrate>>
<<say "molly">>Fuck yeah. Ohhhh~<</say>>
<<narrate>>She lets out a cute little whimper as the pleasure courses through her.<</narrate>>
<<say "mc">>Fuck. Fuck, $molly.name. Yes. I'm close too!<</say>>
<<narrate>>She quickly twists around, grabs your cock and starts greedily milking your cock with her mouth.<</narrate>>
<<vid "molly/aeg06.mp4">>
<<say "mc">>Holy fuuuck, yes, $molly.name, fuck!<</say>>
<<narrate>>You spray your load onto her face as she jerks the final drops from your cock.<</narrate>>
<<say "molly">>Yes. Give it to me, I love how you taste!<</say>>
<<narrate>>She brings your cock back to her mouth, cleaning off all remaining drops before dropping back on to the bed satisfied.<</narrate>>
<<say "molly">>How was that? Did I pass?<</say>>
<<unlock "molly" "aeg">>
<<if $tempvar2 == "ne">>
<<narrate>>You both turn to look at $genvoy.name. She's rubbing her clit while writhing in pleasure.<</narrate>>
<<left2 "east/genvoy/krissy02.jpg">>
<<say "mc">>I think that's your answer.<</say>>
<<say "genvoy">>Oh, fucking shit, yes!<</say>>
<<narrate>>She takes a few moments to regain herself.<</narrate>>
<<say "genvoy">>That was hot as fuck. If you can do that for an audience, you'll be big earners!<</say>>
<<button "Continue" neglitter>>
<<temp "performers">>
<<lust "molly" 4>>
<<time 1.5>>
<</button>>
<<else>>
<<say "mc">>Haha! There was never a moment you weren't going to pass.<</say>>
<<say "molly">>And we get to do this again with an audience?<</say>>
<<say "mc">>If that's what you want.<</say>>
<<narrate>>She wraps herself around you, her hands caressing your chest. She looks into your eyes and smiles sweetly at you.<</narrate>>
<<say "molly">>When would I ever not want this?<</say>>
<<narrate>>The two of you make small talk for a while.<</narrate>>
<<if $replay == false>>
<<set $east.geraldgirls++>>
<<set $east.aegisworker.pushUnique('molly')>>
<</if>>
<<cont "easthub" "" 3>>
<</if>>
<<case "vanna">>
<<if $tempvar2 == "ne">>
<<say "ew">>I've been looking forward to meeting you, $vanna.name.<</say>>
<<say "vanna">>Likewise, then how about we put on a performance?<</say>>
<<say "ew">>I like how you think. Join me at Aegis, I need to run a quick errand, but they have the perfect facilities for us to play.<</say>>
<<narrate>>You head down to Aegis together where she proceeds to discuss something with the secretary. After a few minutes she turns back to you.<</narrate>>
<<say "ew">>Right, sorry about that interruption, shall we?<</say>>
<<else>>
<<narrate>>The woman from the Platinum Lounge is talking to the secretary as you arrive. She looks $vanna.name up and down.<</narrate>>
<<say "ew">>Now, just who is this fine specimen of a woman? I haven't seen her on the books before...<</say>>
<<say "mc">>New recruit I've lined up for performing.<</say>>
<<say "ew">>You don't say.<</say>>
<<say "vanna">>How about we do a performance of our own?<</say>>
<<say "ew">>My, aren't you bold.<</say>>
<</if>>
<<narrate>>She pops her head into an open door just behind the counter.<</narrate>>
<<say "ew">>Dave, I'm gonna go use office five for a little bit, okay?<</say>>
<<say "dave">>Oh, who is the lucky guy?<</say>>
<<say "ew">><<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>.<</say>>
<<say "dave">>Shit, I was joking. How the hell did he manage to get you back down here working?<</say>>
<<say "ew">>I'm testing out one of his girls.<</say>>
<<say "dave">>Gotcha, enjoy!<</say>>
<<narrate>>She returns to face $vanna.name.<</narrate>>
<<say "ew">>Now then, my gorgeous little plaything, shall we?<</say>>
<<narrate>>She hands her some lingerie.<</narrate>>
<<say "vanna">>I'm already wet thinking about it. You pay close attention, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>.<</say>>
<<if $ew.name == "ew" || $ew.name == "Wife">>
<<say "ew">>I'm, <<textbox "$ew.name" Olivia>> by the way, though usually I just go by <i>Wife</i> when I'm performing.<</say>>
<</if>>
<<narrate>>$vanna.name whips off her clothes in the lobby, without a care in the world, then slips into the lingerie she was handed. $ew.name just laughs then gestures towards an office.<</narrate>>
<<cont "eastsex" "vannaew01">>
<<case "vannaew01">>
<<narrate>>As soon as you're inside, $vanna.name makes a show of shoving the desk back, sitting on the edge and spreading her legs.<</narrate>>
<<vid "east/ew/vannaew01.mp4">>
<<narrate>>$ew.name plays along, crawling across the floor toward $vanna.name. She impatiently tears at $vanna.name's panties, eager to get a taste.<</narrate>>
<<cont "eastsex" "vannaew02">>
<<case "vannaew02">>
<<vid "east/ew/vannaew02.mp4">>
<<narrate>>She gently runs her tongue up $vanna.name's lips before sucking on her clit.<</narrate>>
<<say "vanna">>Oh my god~<</say>>
<<narrate>>$vanna.name lets out a guttural moan as $ew.name laps at her snatch.<</narrate>>
<<cont "eastsex" "vannaew03">>
<<case "vannaew03">>
<<narrate>>$ew.name runs her fingers down $vanna.name's stomach until she's tapping them on the side of her pussy. She looks over at you, smirks, then jams two fingers inside of $vanna.name who screams in delight.<</narrate>>
<<vid "east/ew/vannaew03.mp4">>
<<say "vanna">>Oh my gosh, fuck! Right there, right there!<</say>>
<<narrate>>The two of them start shouting excitedly as $vanna.name leans further back on the desk, barely able to hold herself up.<</narrate>>
<<say "vanna">>Oh fuuck I'm cumming!<</say>>
<<cont "eastsex" "vannaew04">>
<<case "vannaew04">>
<<narrate>>After a brief pause to catch her breath, the two switch places.<</narrate>>
<<vid "east/ew/vannaew04.mp4">>
<<say "ew">>Ohhh~ fuck!<</say>>
<<narrate>>$ew.name rocks her hips back and forth over $vanna.name's tongue.<</narrate>>
<<say "ew">>Eat that fucking cunt!<</say>>
<<cont "eastsex" "vannaew05">>
<<case "vannaew05">>
<<narrate>>$vanna.name grabs $ew.name's butt and pushes her up, gesturing her to stand.<</narrate>>
<<vid "east/ew/vannaew05.mp4">>
<<narrate>>She then positions her onto the chair, ready to go again.<</narrate>>
<<cont "eastsex" "vannaew06">>
<<case "vannaew06">>
<<vid "east/ew/vannaew06.mp4">>
<<narrate>>Massaging $ew.name's clit with her tongue, $vanna.name brings $ew.name to the cusp of an orgasm before she backs off, leaving $ew.name wanting.<</narrate>>
<<narrate>>A sly grin on her face, $vanna.name slowly and deliberately sucks on her own finger before swirling it around $ew.name's asshole.<</narrate>>
<<cont "eastsex" "vannaew07">>
<<case "vannaew07">>
<<vid "east/ew/vannaew07.mp4">>
<<narrate>>With her finger massaging $ew.name's anus, she vigorously rubs $ew.name's pussy with her free hand.<</narrate>>
<<say "ew">>Just like that. You're fucking so good.<</say>>
<<narrate>>$ew.name's looks at $vanna.name, a face full of desire, as she starts rocking her body back and forth in time with $vanna.name's motions.<</narrate>>
<<cont "eastsex" "vannaew08">>
<<case "vannaew08">>
<<vid "east/ew/vannaew08.mp4">>
<<narrate>>As the orgasm builds, $ew.name starts rubbing herself furiously. She screams with pleasure as she squirts into $vanna.name's held out tongue.<</narrate>>
<<say "ew">>Clean me up!<</say>>
<<narrate>>$vanna.name greedily runs her tongue back over $ew.name's vulva, clearly enjoying the squirt. After a few minutes the two of them sit, out of breath and spent.<</narrate>>
<<say "ew">>Holy shit. Where have you been all my life? We're going to need a mop and bucket to clean up this mess!<</say>>
<<say "vanna">>I passed your little test, then?<</say>>
<<say "ew">>I haven't squirted like that for years. Yeah. You fucking passed.<</say>>
<<set _f = $name.substring(0, 2).toUpperFirst()>>
<<say "vanna">>Perhaps next time <<if $tempvar2 == "ne">>$name<<else>>_f— $alias<</if>>. could join us?<</say>>
<<say "ew">>I was surprised he didn't this time.<</say>>
<<say "mc">>I thought I had to sit and be quiet for the evaluation.<</say>>
<<say "vanna">>Unlike you to follow that kind of order.<</say>>
<<say "ew">>Ha! A good little boy, aren't you? Maybe the two of us can bring out your naughty side. But for now, I have matters to attend to. Don't worry about the mess; I'll have Dave's boys handle it.<</say>>
<<narrate>>She pecks you on the cheek then leaves. You follow a few minutes later.<</narrate>>
<<think "mc">>Fuck, that was wild. I hope I can get them together again in the future.<</think>>
<<unlock "ew" "vannaew">>
<<unlock "vanna" "vannaew">>
<<if $tempvar2 == "ne">>
<<button "Continue" neglitter>>
<<temp "performers">>
<<lust "vanna" 4>>
<<time 1.5>>
<</button>>
<<else>>
<<if $replay == false>>
<<set $east.geraldgirls++>>
<<set $east.aegisworker.pushUnique('vanna')>>
<</if>>
<<cont "easthub" "" 3>>
<</if>>
<<case "aubree">>
<<narrate>>As you're heading toward <i>Aegis</i> you pass a blonde woman wearing sunglasses on a bench. She calls out to you.<</narrate>>
<<block "east/cs/meet01.jpg">>
<<say "cs">>Hey there newbie. Fancy seeing you out here.<</say>>
<<say "mc">>Sorry, have we met?<</say>>
<<say "cs">>Ha, I guess not really. You've seen me... perform, and I noticed you in the crowd with my sister.<</say>>
<<narrate>>It clicks that this is the blonde you watched at the Platinum Lounge.<</narrate>>
<<say "mc">>Oh, right. Of course. I'm just taking my friend here to <i>Aegis</i> to get her signed up.<</say>>
<<narrate>>She looks $aubree.name up and down.<</narrate>>
<</block>>
<<say "cs">>You're a tasty one, huh?<</say>>
<<say "aubree">>You're not so bad yourself.<</say>>
<<say "cs">>I'll get you in. No need to bother Dave... but I'll be doing your evaluation.<</say>>
<<think "mc">>Hmm, $aubree.name did say she'd be okay with another woman, I just didn't expect it so immediately.<</think>>
<<say "aubree">>Sure.<</say>>
<<say "cs">>Great, I'm <<textbox "$cs.name" Allegra>>. Let's go, there's a backroom at the lounge especially for this kind of thing. You'll be watching, I assume, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>?<</say>>
<<say "mc">>Of course.<</say>>
"Hot Cherry Pies 13 mp4"
<<meet "cs">>
<<cont "easthub" "" 3>>
<<case "adria">>
<<narrate>>You head towards <i>Aegis</i> when $adria.name stops you.<</narrate>>
<<say "adria">>Gosh, look at her. Isn't she pretty?<</say>>
<<narrate>>You look in the direction she's pointing to see a blonde woman.<</narrate>>
<<think "mc">>Wait, isn't that the blonde I saw performing with $genvoy.name? This might be a good opportunity.<</think>>
<<say "mc">>Come on. I'll introduce you.<</say>>
<<narrate>>You grab her hand and head over.<</narrate>>
<<block "east/cs/meet02.jpg">>
<<narrate>>You can't help but notice the way she's looking at $adria.name.<</narrate>>
<<say "cs">>Fancy seeing you here, newbie. What you up to with this fine piece of art?<</say>>
<<narrate>>$adria.name blushes.<</narrate>>
<<say "mc">>Just on our way to <i>Aegis</i> to sign her up for a performance, when we noticed your beautiful visage.<</say>>
<<say "cs">>A charmer, huh? Sorry to disappoint, but like $genvoy.name I only perform with women.<</say>>
<<say "adria">>What about me?<</say>>
<</block>>
<<think "mc">>That was surprisingly forward.<</think>>
<<narrate>>The woman grins.<</narrate>>
<<say "cs">>Now that I can work with. We don't need Dave for this, I'll handle your evaluation. My place is just around the corner.<</say>>
<<say "adria">>J-just us?<</say>>
<<say "cs">>Of course not, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>> will be watching, of course. I'm <<textbox "$cs.name" Allegra>>, by the way. Let's see what you're made of.<</say>>
<<meet "cs">>
<<cont "easthub" "" 3>>
<<case "monique">>
<<narrate>>Outside <i>Aegis</i> you notice the woman you met at the Platinum Lounge talking to Dave.<</narrate>>
<<block "east/ew/meet01.jpg">>
<<say "ew">>Well hello there handsome. You come to play?<</say>>
<<say "mc">>Sort of. Just getting my friend here signed up for a performance.<</say>>
<<narrate>>She licks her lips as she checks out $monique.name out.<</narrate>>
<<say "ew">>Dave, mind if I take care of this one?<</say>>
<<say "dave">>Be my guest.<</say>>
<<say "monique">>What's wrong?<</say>>
<<say "ew">>Nothing. Quite the contrary. Go grab your bikini or whatever, and meet me at this address. We're gonna have some fun by the pool.<</say>>
<<say "mc">>I just need to sign her up for performing.<</say>>
<</block>>
<<say "ew">>Great. Then I'll do the evaluation.<</say>>
<<say "monique">>Sounds like it could be fun, huh, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>? The <i>three</i> of us together by the pool.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "ew">>Looks like it's finally clicked for him. See you soon. Dave, I'll catch you later.<</say>>
<<say "dave">>Later, <<textbox "$ew.name" Olivia>>.<</say>>
<<narrate>>He turns back to you.<</narrate>>
<<say "dave">>Lucky guy. Not many get a chance to perform with her. Have fun with it.<</say>>
<<cont "easthub" "" 3>>
<<case "lexi">>
<<narrate>>The two of you chat as you enter <i>Aegis</i>.<</narrate>>
<<say "lexi">>I can't believe I'm even considering this. This is wild.<</say>>
<<say "mc">>I know. I know. I realize how fucked up it is to even ask my $lexi.them to do this, and like I say, if at any point you want to stop, we'll do just that.<</say>>
<<say "dave">>Ah, who is this, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>? A new recruit?<</say>>
<<say "mc">>Yup. Hoping to get her performing at the lounge relatively quickly.<</say>>
<<say "dave">>You'd better get her evaluated then.<</say>>
<<say "mc">>Yeah.<</say>>
<<narrate>>He checks his watch.<</narrate>>
<<say "dave">>You know, I think you're in luck. We have a special guest here today. Follow me.<</say>>
<<narrate>>$lexi.name whispers in your ear.<</narrate>>
<<say "lexi" "" "(Whispering)" "whisper">>What does that mean?<</say>>
<<narrate>>You shrug and follow him to a room backing out on to what appears to be a garden.<</narrate>>
<<block "east/cs/meet03.jpg">>
<<say "cs">>What's up Dave?<</say>>
<<say "dave">>Wondered if you fancied doing an evaluation?<</say>>
<<say "cs">>You know I don't really—<</say>>
<<narrate>>She stops when she notices you and $lexi.name.<</narrate>>
<<say "dave">>Ha! I thought you might change your mind when you saw them. I'll leave you to it.<</say>>
<</block>>
<<say "cs">>You're the newbie I saw with my sister the other night? Enjoy my performance?<</say>>
<<say "mc">>Very much. My friend here is hoping to perform too. I'm <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>, by the way.<</say>>
<<say "lexi">>You're so pretty!<</say>>
<<say "cs">>Oh, I've not even half your beauty. I'm <<textbox "$cs.name" Allegra>>. Let's head to one of my nearby apartments and we'll see just what you're capable of.<</say>>
<<narrate>>She grabs you both by the hand and leads you out the building.<</narrate>>
<<say "mc" "" "(Whispering)" "whisper">>Are you okay with this?<</say>>
<<say "lexi" "" "(Whispering)" "whisper">>Y-Yeah. It's fine. I may seem a bit behind the door, but do remember I've lived in the city for a long time. I'm no prude.<</say>>
"GirlfriendsFilms.21.11.05.mp4"
<<cont "easthub" "" 3>>
<<case "krissy">>
<<say "krissy">>I can only imagine what you want me to do at <i>Aegis</i> given the stories you've told us about it and its connection to the Platinum Lounge.<</say>>
<<say "mc">>Yeah. I don't know even know how to begin asking. It's not something I should be asking my $krissy.them in any shape, way, or form, but I don't know how else to proceed.<</say>>
<<say "krissy">>You want me to perform, don't you?<</say>>
<<say "mc">>Want... is a strong word.<</say>>
<<say "krissy">>Providing I get a say in who my partner is, and you're not there when it's happening. I can do it.<</say>>
<<think "mc">>What? Just like that, I expected some sort of resistance.<</think>>
<<say "krissy">>You seem shocked. I realize this is probably the best way for me to get to meet $gerald.name ahead of the cabinet meeting. I doubt I can convince him of anything, but it's worth a shot.<</say>>
<<say "mc">>I get that, but what if you have to—<</say>>
<<say "krissy">>Listen. I don't want to get into it, but let's just say me and <<if $girlsavailable.includes('sophia')>>$sophia.name<<else>>$derek.name<</if>> aren't unaccustomed to this kind of thing.<</say>>
<<think "mc">>Interesting...<</think>>
<<say "mc">>What do—<</say>>
<<say "krissy">>I'm saying nothing further. It's not appropriate for us. Let's just get this over with.<</say>>
<<say "mc">>Okay. You have to be evaluated, but we'll tell Dave I already did that so you don't have to sleep with a trainer.<</say>>
<<narrate>>She nods.<</narrate>>
<<cont "eastsex" "krissy2">>
<<case "krissy2">>
<<narrate>>You head over to <i>Aegis</i> with $krissy.name.<</narrate>>
<<say "dave">>Wasn't expecting to see you so soon, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>. Is this a hopeful?<</say>>
<<say "mc">>Yup, just wanna get her signed up.<</say>>
<<say "dave">>Great. We've got Booker available who can evaluate her.<</say>>
<<narrate>>He points towards a muscular black man.<</narrate>>
<<say "mc">>Oh, no, it's fine I've already—<</say>>
<<narrate>>She moves over to Dave, her hand on his chest she whispers in his ear.<</narrate>>
<<say "krissy" "" "(Whispering)" "whisper">>Booker, you say? Will you be watching us, Dave?<</say>>
<<think "mc">>Holy shit, she suddenly got very thirsty.<</think>>
<<say "dave">>Afraid not. But I'll make sure someone is if that's what you're into. Booker, can you take this woman over to the penthouse suite?<</say>>
<<narrate>>She looks over at you with a face of shame, then quickly looks away.<</narrate>>
<<think "mc">>Wait, wait. This is not what we agreed. Am I okay with this? She seems to be... should I stop it?<</think>>
<div id="replace2">
<<choices>>
<<link "Stop it">>
<<replace "#replace2">>
<<say "mc">>Ah, Dave, no need. I've already evaluated her. She's far more... advanced, shall we say, than $pro5.name was. The Platinum Lounge is her calling.<</say>>
<<say "dave">>Ha! I should have known! Why on Earth would you let any chance of sleeping with a woman of her caliber go, huh?<</say>>
<<narrate>>You both chuckle, but you can't help but notice $krissy.name looks a little disappointed.<</narrate>>
<<say "dave">>Alright, I'll sort the relevant paperwork out and she'll be able to start there from tomorrow.<</say>>
<<say "mc">>Thanks, Dave.<</say>>
<<narrate>>Once you're out of earshot you turn back to $krissy.name.<</narrate>>
<<say "mc">>Sorry about that, close one. I didn't expect him to jump to wanting to evaluate you within two seconds of meeting you!<</say>>
<<say "krissy">>Yeah...<</say>>
<<think "mc">>Wow, she seems kinda annoyed. Best not to push it, let's just head home for now.<</think>>
<<if $replay == false>>
<<set $east.geraldgirls++>>
<<set $east.aegisworker.pushUnique('krissy')>>
<</if>>
<<cont "easthub" "" 3>>
<</replace>>
<</link>><br>
<<link "Let it continue">>
<<replace "#replace2">>
<<say "side" "Booker">>My pleasure boss.<</say>>
<<narrate>>The two of them head out, arm in arm, already giggling.<</narrate>>
<<say "dave">>I can already tell she'll do well. She seems to want an audience. You gonna go watch or should I send someone else?<</say>>
<<think "mc">>No way, she'd kill me if I stroll in and pull up a seat!<</think>>
<<say "dave">>Booker isn't a performer, though. It's not his style. He doesn't mind being watched, but not so blatantly. There's a one-way mirror in the lounge so they'll not see you.<</say>>
<<think "mc">>Awfully convenient, but I guess it's not different to the stuff at Revolución. So I can watch my $krissy.them fucking? Do... do I wanna do that?<</think>>
<<if $replay == false>>
<<set $east.geraldgirls++>>
<<set $east.aegisworker.pushUnique('krissy')>>
<</if>>
<div id="replace">
<<choices>>
<<link "Fuck Yeah">>
<<replace "#replace">>
<<say "mc">>Of course. She's my recruit after all.<</say>>
<<say "dave">>Here's the key and address just in case you don't catch them in time. Use the left entrance as not to disturb them.<</say>>
<<say "mc">>Thanks Dave.<</say>>
<<say "dave">>She looked hungry; it should be a good show.<</say>>
<<narrate>>You arrive a few minutes later and look at the key in your hand and then at both entrances.<</narrate>>
<<think "mc">>I feel like I'm pimping out $krissy.refer at this stage, but she's the one who changed the plans once she met Booker. If nothing else, I should let her have her fun... and while it's fucked up, I kinda wanna see it.<</think>>
<<narrate>>You enter through the left entrance and make your way through a windy hall until you're stood watching through the one-way mirror. $krissy.name is already naked and looking dreamily at Booker.<</narrate>>
<<cont "eastsex" "krissyaeg01">>
<</replace>>
<</link>><br>
<<link "Nah">>
<<replace "#replace">>
<<say "mc">>Nah. I prefer to take part.<</say>>
<<say "dave">>Fair enough. I'll send someone over.<</say>>
<<think "mc">>I feel like I'm pimping out $krissy.refer at this stage, but she's the one who changed the plans once she met Booker. If nothing else, I should let her have her fun.<</think>>
<<narrate>>You spend some time in the office pretending to do paperwork or looking up photos of potential recruits and performers. In reality, you're looking through records for anything incriminating.<</narrate>>
<<say "krissy">>I'm back, $krissy.calls. I got the gig.<</say>>
<<narrate>>She looks a bit flustered, but otherwise extremely happy.<</narrate>>
<<say "mc">>Great! Are you okay?<</say>>
<<narrate>>There's a brief look of shame, but she just nods then quickly changes the subject.<</narrate>>
<<say "krissy">>Learn anything here?<</say>>
<<say "mc">>Nah. Come on, let's head home.<</say>>
<<cont "easthub" "" 3>>
<</replace>>
<</link>>
<</choices>>
</div>
<</replace>>
<</link>><br><em>You can choose whether to watch or not after.</em>
<</choices>>
</div>
<<case "nekrissy">>
<<say "mc">>One of your guys wants to perform with my $krissy.them?<</say>>
<<say "genvoy">>That's correct. I heard the stories, she was quite the wild cat in the past.<</say>>
<<think "mc">>Hmm, I have no idea if she'd be okay with... I have no idea even if I am. Am I okay with her sleeping with someone else? I guess I don't have to watch.<</think>>
<div id="replace2">
<<choices>>
<<link "Yeah">>
<<replace "#replace2">>
<<narrate>>You head back to the hub to collect $krissy.name.<</narrate>>
<<say "mc">>So... uhh... I have some awkward to ask you.<</say>>
<<say "krissy">>Oh?<</say>>
<<say "mc">>Someone in New Eden has taken an interest in you... from the Platinum Lounge.<</say>>
<<left2 "krissy/strip05.jpg">>
<<say "krissy">>Isn't that where people perform sexual acts in front of an audience?<</say>>
<<say "mc">>Yeah... you don't have to do anything, of course. But thought you should be aware.<</say>>
<<say "krissy">>Hmm, and they asked for me specifically?<</say>>
<<say "mc">>Yes.<</say>>
<<say "krissy">>Alright. I'll handle it.<</say>>
<<narrate>>She walks off before explaining what that means, you decide to follow out of curiosity.<</narrate>>
<<think "mc">>Is she going to unleash her inner-Karen?<</think>>
<<narrate>>She arrives at the Platinum Lounge a little later. You try to remain hidden so you can't hear their conversation, but a few minutes later, she's leaving, her arms locked in that of a muscular black man.<</narrate>>
<<say "genvoy">>Curious, were you?<</say>>
<<narrate>>You jump when $genvoy.name approaches.<</narrate>>
<<say "mc">>I just uhh—<</say>>
<<say "genvoy">>Booker isn't a performer, just an evaluator. It's not his style. He doesn't mind being watched, but not so blatantly. There's a one-way mirror in the lounge so they'll not see you, they're expecting me to be watching. You want the key to the apartment?<</say>>
<<think "mc">>Awfully convenient, but I guess it's not different to the stuff at Revolución. So I can watch my $krissy.them fucking? Do... do I wanna do that?<</think>>
<div id="replace">
<<choices>>
<<link "Fuck Yeah">>
<<replace "#replace">>
<<narrate>>You hold out your hand.<</narrate>>
<<say "genvoy">>You're every bit as depraved as I hoped you would be. Here's the key and address just in case you don't catch them in time. Use the left entrance as not to disturb them.<</say>>
<<narrate>>You nod.<</narrate>>
<<say "genvoy">>She looked hungry; it should be a good show.<</say>>
<<narrate>>You arrive a few minutes later and look at the key in your hand and then at both entrances.<</narrate>>
<<think "mc">>Is it fucked up I wanna see this?<</think>>
<<narrate>>You enter through the left entrance and make your way through a windy hall until you're stood watching through the one-way mirror. $krissy.name is already naked and looking dreamily at Booker.<</narrate>>
<<cont "eastsex" "krissyaeg01">>
<</replace>>
<</link>><br>
<<link "Nah">>
<<replace "#replace">>
<<say "mc">>Nah. I prefer to take part.<</say>>
<<say "genvoy">>That's a shame. Feel free to sit around here waiting, bored out of your mind while your $krissy.them gets railed!<</say>>
<<narrate>>She cackles and leaves you toit.<</narrate>>
<<think "mc">>Why did I even do this? I guess she has an old reputation for this kinda thing and if it makes her happy why not. Still feels a little fucked up.<</think>>
<<narrate>>You spend some time in the office messing around on $genvoy.name's computer.<</narrate>>
<<say "krissy">>I'm back, $krissy.calls. I passed, of course.<</say>>
<<narrate>>She looks a bit flustered, but otherwise extremely happy.<</narrate>>
<<say "mc">>Great! Are you okay?<</say>>
<<narrate>>There's a brief look of shame, but she just nods then quickly changes the subject.<</narrate>>
<<say "krissy">>Shall we get home, then?<</say>>
<<notice>>The scene you skipped has been unlocked in the replayer.<</notice>>
<<button "Continue" neglitter>>
<<temp "performers">>
<<lust "krissy" 4>>
<<unlock "krissy" "aeg">>
<<time 1.5>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<</replace>>
<</link>><br>
<<link "No">>
<<replace "#replace2">>
<<think "mc">>No... I don't want this.<</think>>
<<cont "neglitter" "performers">>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "krissyaeg01">>
<<if $replay == true>>
<<narrate>>You arrive a few minutes later and look at the key in your hand and then at both entrances.<</narrate>>
<<think "mc">>I feel like I'm pimping out $krissy.refer at this stage, but she's the one who changed the plans once she met Booker. If nothing else, I should let her have her fun... and while it's fucked up, I kinda wanna see it.<</think>>
<<narrate>>You enter through the left entrance and make your way through a windy hall until you're stood watching through the one-way mirror. $krissy.name is already naked and looking dreamily at Booker.<</narrate>>
<</if>>
<<vid "krissy/aeg01.mp4">>
<<narrate>>Booker rubs $krissy.name's clit, while passionately kissing her.<</narrate>>
<<say "side" "Booker">>You like that?<</say>>
<<narrate>>Her reply is full of desire and you can tell from her dripping pussy that's she's enjoying herself.<</narrate>>
<<say "krissy">>Yeah.<</say>>
<<say "side" "Booker">>When I massage your clit?<</say>>
<<say "krissy">>Yeah. I like it a lot.<</say>>
<<narrate>>She rubs her hands across his crotch then paws at his belt.<</narrate>>
<<say "krissy">>Mhhmm~ where's our audience?<</say>>
<<narrate>>He chuckles and points at the mirror.<</narrate>>
<<say "side" "Booker">>You like to be watched, huh? You'll love the lounge. Our audience is on the other side of that mirror.<</say>>
<<narrate>>She frowns a little.<</narrate>>
<<say "krissy">>I was hoping I'd get to see my audience, but I can work with this.<</say>>
<<say "side" "Booker">>Sorry, babe, that's not my style. Being watched is one thing, but I want to focus on you, not the audience.<</say>>
<<narrate>>She shrugs and pulls down his pants, revealing his long hard cock. She gasps with anticipation as she lowers her head.<</narrate>>
<<cont "eastsex" "krissyaeg02">>
<<case "krissyaeg02">>
<<narrate>>She takes his glans into her mouth, her face a picture of lust as she bobs her head up and down.<</narrate>>
<<vid "krissy/aeg02.mp4">>
<<narrate>>There's a pang of excitement and fear as it appears she looks directly at you.<</narrate>>
<<think "mc">>She's just looking in this direction... she doesn't know it's me!<</think>>
<<narrate>>It looks like Booker is playing with her pussy, but you're too distracted by her face and the excitement each time she looks your way to pay attention.<</narrate>>
<<narrate>>You're almost saddened when he repositions her on the sofa and she's no longer facing you.<</narrate>>
<<cont "eastsex" "krissyaeg03">>
<<case "krissyaeg03">>
<<narrate>>He stands over her and lowers his massive rod between her breasts.<</narrate>>
<<vid "krissy/aeg03.mp4">>
<<say "krissy">>Put your finger in while you fuck my titties.<</say>>
<<narrate>>As he pounds away he expertly explores her pussy with his fingers, not a single wasted motion as he rocks back and forth.<</narrate>>
<<narrate>>Harder and harder he pushes to find $krissy.name's limit until the sofa starts wobbling and crying out under the stress.<</narrate>>
<<say "krissy">>Ahhh~ you fuck so hard.<</say>>
<<narrate>>She grabs his dick and pulls it back into her mouth.<</narrate>>
<<say "side" "Booker">>Let me show you just how hard I really fuck.<</say>>
<<cont "eastsex" "krissyaeg04">>
<<case "krissyaeg04">>
<<narrate>>He sits back on the sofa, his engorged penis uncovered for only a second before $krissy.name lowers herself onto it with an impassioned groan.<</narrate>>
<<vid "krissy/aeg04.mp4">>
<<narrate>>He grabs her hips and after a few gentle thrusts, starts pummeling her pussy, pushing her body up and down in sync with his thrusts.<</narrate>>
<<narrate>>Barely able to even speak, her breaths are quick, wild, and constantly interrupted by her moans of pleasure.<</narrate>>
<<narrate>>You find yourself hypnotized by her beautiful bouncy breasts, all thoughts of guilt and shame completely gone from your mind as you stroke your manhood wishing you were in his position.<</narrate>>
<<say "side" "Booker">>Just one hole left to check out.<</say>>
<<narrate>>She looks at him a little shocked, then grins before pulling herself off his lap and pushing her ass into the air.<</narrate>>
<<cont "eastsex" "krissyaeg05">>
<<case "krissyaeg05">>
<<narrate>>He slowly and gently slides his cock into her anus.<</narrate>>
<<vid "krissy/aeg05.mp4">>
<<say "krissy">>Yeah...<</say>>
<<narrate>>She gasps and moans while massaging her own clit as he slowly feeds more and more of his dick in with each movement.<</narrate>>
<<say "krissy">>I'm getting butterflies in my stomach.<</say>>
<<narrate>>He starts to move a little faster as she gets used to his dick inside her.<</narrate>>
<<cont "eastsex" "krissyaeg06">>
<<case "krissyaeg06">>
<<narrate>>To $krissy.name's surprise he pushes her leg upwards, his cock still firmly jammed in her ass.<</narrate>>
<<vid "krissy/aeg06.mp4">>
<<think "mc">>I had no idea she was so flexible!<</think>>
<<say "krissy">>You make me do all kinds of things! Make me cum!<</say>>
<<narrate>>Almost his entire length now pounding away at her ass, she screams out in pleasure.<</narrate>>
<<say "krissy">>Ohh that's so good. It's so good!<</say>>
<<narrate>>Her moans become more aggressive as she draws closer to her orgasm.<</narrate>>
<<say "krissy">>Ahhh, ahhh, oh god! Fuck. Ohhh~ Yeah! Yeah!<</say>>
<<narrate>>As she reaches her first orgasm, Booker slows down, giving her the chance to recuperate.<</narrate>>
<<cont "eastsex" "krissyaeg07">>
<<case "krissyaeg07">>
<<narrate>>He throws her back down on to the sofa and again starts pummeling away at her ass. She squeals with delight, her face unable to hide her excitement.<</narrate>>
<<vid "krissy/aeg07.mp4">>
<<narrate>>As her ass takes his full length, she can barely contain herself. She looks back over her shoulder at him, her expression a mix of lust and gratitude.<</narrate>>
<<say "side" "Booker">>Fuck, I'm gonna cum, gonna cum!<</say>>
<<cont "eastsex" "krissyaeg08">>
<<case "krissyaeg08">>
<<narrate>>With a visceral groan he pulls his dick out at the last moment and holds it in place as he blasts his load over her.<</narrate>>
<<vid "krissy/aeg08.mp4">>
<<say "side" "Booker">>Fuck yes. My god!<</say>>
<<narrate>>Fantasizing yourself in his position, you too blow your load.<</narrate>>
<<say "krissy">>I hope our audience enjoyed the show.<</say>>
<<narrate>>Booker gets up and heads directly to shower while leaving $krissy.name there to catch her breath.<</narrate>>
<<think "mc">>I'd better head back now before they do; I don't want to get caught.<</think>>
<<unlock "krissy" "aeg">>
<<if $tempvar2 == "ne">>
<<cont "eastsex" "krissyaegne">>
<<else>>
<<cont "eastsex" "krissyaeg09">>
<</if>>
<<case "krissyaegne">>
<<narrate>>You head back. $genvoy.name is sitting behind her desk looking at you smugly.<</narrate>>
<<left2 "east/genvoy/hmm01.jpg">>
<<say "genvoy">>Good show?<</say>>
<<say "mc">>A great show. She's going to be fire.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "genvoy">>Based on the stories, I wouldn't be surprised if she's the very reason the Platinum Lounge came into existence.<</say>>
<<narrate>>$krissy.name walks up behind you.<</narrate>>
<<say "krissy">>Booker said I'm in. I got the gig! Did the audience enjoy the show, $genvoy.name?<</say>>
<<say "genvoy">>Ha! He sure did.<</say>>
<<say "krissy">>He? I thought you were going to be watching.<</say>>
<<say "genvoy">>Something came up. I hope you don't mind that I sent a proxy. I figured from the old stories you'd be fine with it.<</say>>
<<say "krissy">>Oh, yeah, no problem. I'll perform for anyone. Having people gorp over me while I'm getting plowed is such a fucking turn on. I wish I could have seen the look on their eyes as Booker destroyed my ass, though. Fuck, I wonder if they were jerking off.<</say>>
<<say "genvoy">>I daresay they were, what do you think, $name?<</say>>
<<narrate>>$krissy.name spins around to face you, her face red with embarrassment.<</narrate>>
<<say "krissy">>I— $name, I didn't realize you were there. I'm sorry you had to hear that!<</say>>
<<narrate>>$genvoy.name cackles.<</narrate>>
<<say "genvoy">>You guys crack me up.<</say>>
<<say "mc">>Let's just move on.<</say>>
<<button "Continue" neglitter>>
<<temp "performers">>
<<lust "krissy" 4>>
<<corrupt "krissy" 6>>
<<time 1.5>>
<</button>>
<<case "krissyaeg09">>
<<narrate>>You head back to Aegis where Dave is sitting behind the counter looking annoyed.<</narrate>>
<<say "dave">>They not with you?<</say>>
<<say "mc">>Nah, I left them to clean up.<</say>>
<<say "dave">>Good show?<</say>>
<<say "mc">>Absolutely. She's going to be fire.<</say>>
<<narrate>>He grins.<</narrate>>
<<say "dave">>Ah, speak of the devil.<</say>>
<<narrate>>$krissy.name walks up behind you.<</narrate>>
<<say "krissy">>Booker said I'm in. I got the gig, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>! Did the audience enjoy the show, Dave?<</say>>
<<say "dave">>Ha! He sure did, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>> has just been saying how good the show was!<</say>>
<<narrate>>There's a brief look of horror then she quickly composes herself.<</narrate>>
<<think "mc">>Shit. Thanks, Dave! Fuck!<</think>>
<<say "krissy">>I see. <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>> was my audience, huh? Let's head out, shall we. Let's have a chat. Bye Dave.<</say>>
<<narrate>>Your stomach drops and you feel a deep pit of shame as you walk out on to the street with her.<</narrate>>
<<say "krissy">>Did... did you really watch me?<</say>>
<<think "mc">>The fuck do I say?<</think>>
<<say "mc">>He said I should go, I didn't know what to do, I...<</say>>
<<say "krissy">>You could have just said that's what you did without actually doing it!<</say>>
<<think "mc">>Yes... I'll just say that now!<</think>>
<<say "mc">>Exactly! That's exactly what I did. I... I just waited in the doorway.<</say>>
<<narrate>>She looks at you, shock and anger in her face but says nothing else. You can tell she's stuck in thought.<</narrate>>
<<think "krissy">>I've known you your entire life, you don't think I know when you're lying? This is so fucking messed up. I fucking played up to the audience and it was him all along?<</think>>
<<narrate>>Her eyes narrow for a moment as she looks into your eyes. Her face contorts into a kaleidoscope of conflicting emotions.<</narrate>>
<<think "krissy">>No. No. I'm sure he couldn't have even if he was there. It was purely for the mission and he wouldn't have willingly watched me. He probably just caught a glimpse of something or heard me moaning and that's why he looked so guilty. Fuck, am I deluding myself here? What about his lust aspect?<</think>>
<<narrate>>You notice she briefly gazes at your crotch before shaking her head.<</narrate>>
<<think "krissy">>No. I've got to believe. I really can't deal with the alternative. I don't want to embarrass either of us any further, let's just move on. We have more important things to worry about right now.<</think>>
<<set _uc = $krissy.refer.toUpperFirst()>>
<<say "mc">>_uc? You've been staring at me silently.<</say>>
<<narrate>>The shame and guilt wells up inside you. You worry you've just done something that will forever damage your relationship.<</narrate>>
<<say "krissy">>I'm just trying to reconcile the situation in my head. Let's just head home and forget about this. We need to concentrate on $gerald.name.<</say>>
<<think "mc">>I can't tell if she bought it or not, but either way, she clearly doesn't want to talk about it anymore. Fuck, I think I got away with it... but now I feel so fucking shameful.<</think>>
<<button "Continue" easthub>>
<<corrupt "krissy" 3>>
<<event "krissy" "watchedher">>
<<time 3>>
<</button>>
<<case "anna">>
<<narrate>>You ask $anna.name to meet you here.<</narrate>>
<<say anna>>What is it? Why'd you bring me out to this backwater dive?<</say>>
<<say mc>>Such a way with words.<</say>>
<<say anna>>Whatever, fuckface. What do you want?<</say>>
<<say mc>>Wondered if yo wanted to have a little fun with my friend here. Uhh...<</say>>
<<narrate>>You suddenly realize she's not here.<</narrate>>
<<say genvoy>>The key to her apartment is on the shelf behind you. Just get outta here. Backwater dive?! I never!<</say>>
<<say anna>>This city, not the this place. This place is great, everyone leering at you... watching you... fuck I'm getting wet just thinking about it.<</say>>
<<narrate>>$genvoy.name raises an eyebrow. You lean in and whisper.<</narrate>>
<<say mc "" "(Whispering)" "whisper">>She's an acquired taste, and most of her insults are just her trying to get under my skin. Pay her no heed.<</say>>
<<say anna>>I can hear you, idiot. Let's just go... unless you wanna do a show here?<</say>>
<<narrate>>$genvoy.name bursts out laughing as you hurry $anna.name out.<</narrate>>
<<say mc>>If you wanna do some shows, we can definitely discuss that later, but they're not gonna let you until you've been evaluated.<</say>>
<<say anna>>Ugh. That sounds like bullshit, I'm just gonna go home.<</say>>
<<say mc>>I'll be watching...<</say>>
<<say anna>>Oh. My. God. You're such a pervert. You're gonna have your dick out fapping while I lick some other girl's pussy? Fucking dirtbag. So, does she live close? Let's go already!<</say>>
<<narrate>>You arrive at $foxxx.name's a little later. There's no answer when you knock, so you use the key given to you. <</narrate>>
<<say foxxx>>Oh, shit. Sorry I am not dressed for this...<</say>>
<<say anna>>Fuck... you're pretty hot... those clothes are coming off soon anyway, so who give a shit?<</say>>
<<say foxxx>>Ha! You've got quite the tongue on you.<</say>>
<<say anna>>Oh, you've not had the pleasure of my tongue yet... come let's show my $anna.you just how fucking dirty this tongue gets.<</say>>
<<think mc>>Holy shit!<</think>>
<<say "foxxx">>Fuck yeah. I'm <<if $girlsmet.includes('foxxx')>>$foxxx.name<<else>><<textbox "$foxxx.name" Chantel>><</if>>, by the way. Follow me.<</say>>
<<narrate>>You follow them to the bedroom.<</narrate>>
<<say foxxx>>I was just meditating so let me turn off this music.<</say>>
<<say anna>>I can't wait. Don't bother.<</say>>
<<cont "eastsex" "anna01">>
<<case "anna01">>
<<narrate>>$anna.name practically throws $foxxx.name to the bed.<</narrate>>
<<vid "anna/af01e.mp4">>
<<say foxxx>>Ohhh yes.<</say>>
<<narrate>>$anna.name runs her tongue up the nape of $foxxx.name's neck.<</narrate>>
<<think mc>>She's not mucking about.<</think>>
<<narrate>>She tugs at her top and throws it off.<</narrate>>
<<cont "eastsex" "anna02">>
<<case "anna02">>
<<vid "anna/af02.mp4">>
<<narrate>>Their hands continue to explore each other's bodies as their clothing becomes ever more scarce.<</narrate>>
<<say anna>>Mmm~ yes.<</say>>
<<narrate>>Her eyes dart to you for a moment and she pauses.<</narrate>>
<<say foxxx>>What is it... what's wrong?<</say>>
<<say anna>>Get that dirty great big cock out and show me how much you're enjoying the show!<</say>>
<<say foxxx>>Oh, fuck, you nasty!<</say>>
<<think mc>>I think she's starting to realize the only time I'll let her talk to me like that is when it's sexual and I'm getting what I want anyway...<</think>>
<<cont "eastsex" "anna03">>
<<case "anna03">>
<<narrate>>You hard cock is cushioned firmly in your hand as they continue to undress each other.<</narrate>>
<<vid "anna/af03.mp4">>
<<say foxxx>>I love these perfect titties.<</say>>
<<narrate>>She wraps her lips around $anna.name's hard nipples.<</narrate>>
<<say anna>>Oh, my god, yeah.<</say>>
<<cont "eastsex" "anna04">>
<<case "anna04">>
<<narrate>>As $anna.name's panties hit the floor your movements become faster, your eyes trained on her pretty pink pussy.<</narrate>>
<<vid "anna/af04.mp4">>
<<narrate>>$anna.name holds $foxxx.name's head down to her pussy.<</narrate>>
<<say anna>>Yeah. Yes, yes, yes. Just like that.<</say>>
<<say anna>>Oh, my god. Yes, yes, yes, yes.<br>Holy shit, you're good at that.<</say>>
<<cont "eastsex" "anna05">>
<<case "anna05">>
<<vid "anna/af05.mp4">>
<<say anna>>You make me cum so hard every time.<</say>>
<<say anna>>Oh, fuck, yes, right there, there it is, fuck!<</say>>
<<narrate>>She throws her head back and her stomach spasms a few times as the euphoria flows through her.<</narrate>>
<<cont "eastsex" "anna06">>
<<case "anna06">>
<<narrate>>They switch positions, $anna.name looking back at you briefly to make sure you're still enjoying the show before diving into $foxxx.name's pussy.<</narrate>>
<<vid "anna/af07.mp4">>
<<say foxxx>>So good.<</say>>
<<say foxxx>>Fuck, yes!<</say>>
<<cont "eastsex" "anna07">>
<<case "anna07">>
<<vid "anna/af06.mp4">>
<<say foxxx>>Yes! Oh, my god!<</say>>
<<say foxxx>>Ohhh~ that's so good. Yeah~<</say>>
<<narrate>>You blow your load as $anna.name's tongue brings $foxxx.name to the brink of ecstasy.<</narrate>>
<<say anna>>Fucking scumbag enjoyed that, didn't you?<</say>>
<<narrate>>You grab her arm and pull her to you. She's almost shocked by the force.<</narrate>>
<<say mc>>Not as much as you did you fucking whore! Now clean that mess you made up!<</say>>
<<narrate>>She wraps her lips around your helm, sucking off all the fresh goo.<</narrate>>
<<say foxxx>>You two certainly have an... interesting relationship.<</say>>
<<say mc>>Basically, we hate each other, but we also love fucking... so it's kinda like this.<</say>>
<<narrate>>$anna.name grins.<</narrate>>
<<say anna>>He's a dirty fucking pervert $anna.them-fucking twat... but he's <b>my</b> dirty fucking pervert, and I'm the $anna.them he's fucking, so we all kinda get what we want.<</say>>
<<narrate>>$foxxx.name just stares at you both gobsmacked.<</narrate>>
<<say foxxx>>Well, whatever it is, its clearly working, and you've definitely got what it takes to put on a show.<</say>>
<<say anna>>You know it!<</say>>
<<narrate>>$anna.name struts away pridefully.<</narrate>>
<<unlock "anna" "foxxx">>
<<unlock "foxxx" "anna">>
<<if $tempvar2 == "ne">>
<<button "Continue" neglitter>>
<<temp "performers">>
<<lust "anna" 4>>
<<time 1.5>>
<</button>>
<<else>>
<<if $replay == false>>
<<set $east.geraldgirls++>>
<<set $east.aegisworker.pushUnique('anna')>>
<</if>>
<<cont "easthub" "" 3>>
<</if>>
<<case "whitney">>
<<say genvoy>>She's in the apartment next door, just let yourself in.<</say>>
<<say mc>>Gotcha.<</say>>
<<think mc>>I'd better find $whitney.name.<</think>>
<<narrate>>You meet $whitney.name.<</narrate>>
<<say mc>>You know how you enjoyed those onlookers at the shop in New Eden?<</say>>
<<say whitney>>Very much so... are you looking for a repeat performance?<</say>>
<<say mc>>Sort of. Word of our... exploits got out, and there's a certain woman who'd like to perform with you.<</say>>
<<if checkUnlocks('movie', 'monique', 'whitney')>>
<<say whitney>>Like when myself and $monique.name put a show on for you?<</say>>
<<say mc>>Yes...<</say>>
<<think mc>>I didn't realize they knew I was peeping... or rather that they were doing it entirely for my benefit. I'm surprised $monique.refer never said anything...<</think>>
<<else>>
<<say whitney>>Oh, just like $monique.name and I were discussing of doing for you!<</say>>
<<say mc>>You and $monique.refer, huh?<</say>>
<<say whitney>>Drop by my room when I'm staying over, and I'm sure we'll give you quite the performance. But, back to the subject at hand.<</say>>
<</if>>
<<narrate>>She grins.<</narrate>>
<<say whitney>>Take me to this woman, if it pleases you, and I find her attractive, I'd be happy to perform, as you call it.<</say>>
<<say mc>>Great, let's go!<</say>>
<<narrate>>As you turn to leave, she clears her throat and signals at your arms with her eyes.<</narrate>>
<<think mc>>Forever the brat.<</think>>
<<narrate>>You hold out your arm and she links with you before you head to the apartment.<</narrate>>
<<say cs>>$name, a pleasure. $genvoy.name messaged me a few minutes ago.<</say>>
<<narrate>>She gives $whitney.name a sultry stare.<</narrate>>
<<say cs>>
<<if !$girlsmet.includes('cs')>>
<<meet "cs">>
I'm <<textbox "$cs.name" Allegra>>, by the way. I believe you've already had the pleasure of my sister.
<</if>>
You are a fine woman, $whitney.name; I'm glad you agreed to join me.
<</say>>
<<narrate>>$whitney.name holds out her hand, horizontally. $cs.name grabs it and shakes it, leaving $whitney.name looking confused.<</narrate>>
<<think mc>>Surely she wasn't expecting her to kiss it?<</think>>
<<say whitney>>Well, yes, whatever he enjoys; I'm happy to oblige.<</say>>
<<say cs>>Ha! You might live to regret those words!<</say>>
<<think mc>>My thoughts exactly.<</think>>
<<say cs>>Come, sit with me.<</say>>
<<cont "eastsex" "whitney01">>
<<case "whitney01">>
<<narrate>>Within seconds of sitting down, their hands are all over each other.<</narrate>>
<<vid "whitney/cs01.mp4">>
<<narrate>>Their lips collide and they kiss passionately while your dick starts to stir.<</narrate>>
<<narrate>>It's not long until $whitney.name's hand wanders to $cs.name's chest.<</narrate>>
<<say cs>>A girl who knows exactly what she wants; I like it.<</say>>
<<cont "eastsex" "whitney02">>
<<case "whitney02">>
<<narrate>>The two disrobe and $cs.name's casually casts off her bra.<</narrate>>
<<vid "whitney/cs02.mp4">>
<<narrate>>$whitney.name's tongue quickly homes in on $cs.name's nipples.<</narrate>>
<<say cs>>Oh, god. Oh, your mouth...!<</say>>
<<narrate>>The two hum and moan around each other like a couple of songbirds trying to attract a mate.<</narrate>>
<<cont "eastsex" "whitney03">>
<<case "whitney03">>
<<narrate>>$whitney.name throws her panties off at you, all the while her eyes locked on $cs.name.<</narrate>>
<<vid "whitney/cs03.mp4">>
<<narrate>>As $cs.name's fingers enter her, she squeals with delight while rocking back and forth.<</narrate>>
<<say whitney>>Oh, god, that's good... just like that. Right there, yes!<</say>>
<<narrate>>$cs.name expertly massages $whitney.name, a deep concentration on her face as she delivers as much pleasure as she can.<</narrate>>
<<cont "eastsex" "whitney04">>
<<case "whitney04">>
<<narrate>>$cs.name grabs a toy and smirks at $whitney.name who just nods lustfully while biting her bottom lip.<</narrate>>
<<vid "whitney/cs05.mp4">>
<<narrate>>As $cs.name thrusts the toy inside $whitney.name, she reaches her face down, licking $whitney.name's cute little ass.<</narrate>>
<<say whitney>>Watch me, $name, watch me! Ahhh~<</say>>
<<cont "eastsex" "whitney05">>
<<case "whitney05">>
<<vid "whitney/cs04.mp4">>
<<narrate>>They switch roles and $whitney.name holds the vibrator against $cs.name's vulva.<</narrate>>
<<narrate>>$cs.name writhes under the pleasure as she tries to control herself.<</narrate>>
<<say cs>>Yes, that's it. Please... more!<</say>>
<<cont "eastsex" "whitney06">>
<<case "whitney06">>
<<narrate>>$cs.name looks at $whitney.name hungrily and pulls out another, larger toy from behind the sofa.<</narrate>>
<<say cs>>Make me scream, please!<</say>>
<<vid "whitney/cs06.mp4">>
<<narrate>>$whitney.name wastes no time and $cs.name is grinding on the dildo within moments.<</narrate>>
<<say cs>>Oh, god, that's sooo good. Um~ just hold it there and let me fuck it!<</say>>
<<narrate>>Her tempo increases as she chases her climax.<</narrate>>
<<say cs>>Yes, fuck, yes, right there!<</say>>
<<narrate>>She shouts for joy as the pleasure washes over her. The two of them sit, still intertwined as they both pant, trying to catch their breath.<</narrate>>
<<say mc>>You two make quite the pair.<</say>>
<<say cs>>She's a fucking natural, and definitely knows her way around a woman's body.<</say>>
<<say whitney>>Anything to please my man.<</say>>
<<say cs>>Fuck, I hope we get to perform together with a full audience some time.<</say>>
<<narrate>>$whitney.name looks at you with almost puppy-dog eyes.<</narrate>>
<<say mc>>Something we can certainly discuss in the future.<</say>>
<<unlock "whitney" "cs">>
<<unlock "cs" "whitney">>
<<if $tempvar2 == "ne">>
<<button "Continue" neglitter>>
<<temp "performers">>
<<lust "whitney" 4>>
<<time 1.5>>
<</button>>
<<else>>
<<if $replay == false>>
<<set $east.geraldgirls++>>
<<set $east.aegisworker.pushUnique('whitney')>>
<</if>>
<<cont "easthub" "" 3>>
<</if>>
<<case "pharm01">>
<<vid "east/pharm/pharm01.mp4">>
<<narrate>>You rest your cock between her enormous orbs while she playfully licks your bellend.<</narrate>>
<<say "pharm">>Oh my god, yes.<</say>>
<<narrate>>She squeezes them together as you start thrusting your hips, the lube making you glide between them with ease.<</narrate>>
<<narrate>>You get one more thrust in before she releases her grip, grabs your cock and wraps her mouth around it.<</narrate>>
<<cont "eastsex" "pharm01-2">>
<<case "pharm01-2">>
<<vid "east/pharm/pharm01-2.mp4">>
<<narrate>>With a surprising amount of ease she swallows down almost the entire length of your cock.<</narrate>>
<<say "mc">>Oh my fucking yes!<</say>>
<<narrate>>Feeling a little mischievous and wanting a bit of revenge for her earlier attitude, you grab the back of her head and start fucking her throat.<</narrate>>
<<narrate>>As she gasps for breath she looks up at you.<</narrate>>
<<say "pharm">>Fuck, you're better than you look.<</say>>
<<narrate>>She bends over leaning on the partition while spreading the lube seductively over her labia.<</narrate>>
<<think "mc">>Hell yeah, being a patron fucking rocks.<</think>>
<<cont "eastsex" "pharm02">>
<<case "pharm02">>
<<narrate>>Her legs tremble as you jam your dick into her inviting pussy.<</narrate>>
<<vid "east/pharm/pharm02.mp4">>
<<say "pharm">>Oh that's good. Yeah. Oh my god yes. That cock!<</say>>
<<narrate>>You throw off your top and speed up, her moans encouraging you to push further still.<</narrate>>
<<say "pharm">>Yesss, damn!<</say>>
<<narrate>>She looks back over her shoulder at you with a bright smile as you pound away at her.<</narrate>>
<<say "pharm">>I'm gonna ride that dirty great big dick.<</say>>
<<narrate>>You shrug, sit down on the chair and watch as she lowers her beautiful round ass on to your lap.<</narrate>>
<<cont "eastsex" "pharm03">>
<<case "pharm03">>
<<narrate>>She slides her pussy down your cock.<</narrate>>
<<vid "east/pharm/pharm03.mp4">>
<<say "pharm">>Ohhhh~ my god.<</say>>
<<narrate>>As your tempo increases her words become gibberish.<</narrate>>
<<say "pharm">>I'm so fucking wet I don't give a fuck.<</say>>
<<narrate>>Hungry for more you lift her up and deposit her on the counter.<</narrate>>
<<say "pharm">>Yes, fuuck!<</say>>
<<cont "eastsex" "pharm04">>
<<case "pharm04">>
<<narrate>>You grab her thigh and piston away at her pussy, determined to bring her to climax before you reach yours.<</narrate>>
<<vid "east/pharm/pharm04.mp4">>
<<say "pharm">>Oh my god, yeah.<</say>>
<<narrate>>She screams out in joy her eyes pleading for release as you mercilessly continue your pounding.<</narrate>>
<<say "pharm">>Yes, do it.<</say>>
<<narrate>>Her words again become garbled as she gets closer to pinnacle.<</narrate>>
<<cont "eastsex" "pharm05">>
<<case "pharm05">>
<<vid "east/pharm/pharm05.mp4">>
<<narrate>>Her eyes become wide and among her moans she speaks with an almost commanding tone.<</narrate>>
<<say "pharm">>Oh my god, yes. You're so nasty, make me that dirty girl!<</say>>
<<narrate>>As the screams of the pharmacist grow louder, you notice the shadow of $krissy.name in the doorway.<</narrate>>
<<think "mc">>Is she waiting for her chance to get out? I've got her pretty well distracted!<</think>>
<<say "pharm">>Make me dirty!<</say>>
<<narrate>>As $krissy.name finally sneaks out, the pharmacist shouts out in pleasure, her body quakes and her eyes widen as they roll to the back of her head.<</narrate>>
<<narrate>>Seeing and feeling her orgasm tips you over the edge and you feel your own edging its way to the surface.<</narrate>>
<<say "mc">>Shit me too!<</say>>
<<narrate>>She rushes to her knees. Her head level with your cock she holds out her tongue eager for your deposit.<</narrate>>
<<vid "east/pharm/pharm06.mp4">>
<<unlock "pharm" "pharm">>
<<cont "east-ent" "blast3">>
<<case "fholly00">>
<<narrate>>She bursts through the door to what she referred to as the fuck hut, completely ignoring the staff only sign. To your surprise it's a relatively small room, well-lit, with only one window facing the stage at the foot of the bed.<</narrate>>
<<say holly>>Fuck, your guys set this up just perfect, huh?<</say>>
<<narrate>>You gaze out at the crowd for a moment, a sense of excitement washing over you as they dance and jump around to the DJ playing between sets.<</narrate>>
<<say holly>>Really gets you goin', huh?<</say>>
<<left2 "holly/f01.jpg">>
<<narrate>>You turn back to her. She's grinning at you slyly. Her attire completely changed.<</narrate>>
<<think mc>>Was that lingerie here prepared? You now what, I don't care... I just wanna fuck!<</think>>
<<say holly>>How are you feeling? Hard?<</say>>
<<say mc>>Looking at you, dressed like that... how couldn't I?<</say>>
<<say holly>>I'm gonna make you blast over my face so fucking hard!<</say>>
<<narrate>>She leans back on the bed, and pulls her panties to one side.<</narrate>>
<<say holly>>Fuck me already, I can't wait any longer!<</say>>
<<cont "eastsex" "fholly01">>
<<case "fholly01">>
<<vid "holly/f01.mp4">>
<<narrate>>As you rub your helmet over her vulva, a feeling of elation washes through you. Every movement, a veritable cook pot of pleasurable sensations. You're almost afraid to put it inside for fear of cumming immediately.<</narrate>>
<<say holly>>Oh my gosh.<</say>>
<<narrate>>You press on, sliding inside her slowly and deliberately. The two of you already grunting and moaning under the increased sensitivity.<</narrate>>
<<say mc>>Holy fucking shit!<</say>>
<<narrate>>You become accustomed to the unique sensations very quickly, and your libido takes charge almost immediately.<</narrate>>
<<cont "eastsex" "fholly02">>
<<case "fholly02">>
<<vid "holly/f02.mp4">>
<<say holly>>Oh, yes. Just like that.<</say>>
<<narrate>>She screams out with joy as you push into her, her own movements as thirsty as your own as she pushes her body backwards simultaneously with your thrust.<</narrate>>
<<say holly>>Oh, my god~.<</say>>
<<cont "eastsex" "fholly03">>
<<case "fholly03">>
<<narrate>>You barely notice as the two of you switch positions. Your mind is that focused on the heightened sense of pleasure and your body is just going with the flow.<</narrate>>
<<vid "holly/f03.mp4">>
<<say holly>>Ohh~ fuck. Oh, my god!<</say>>
<<cont "eastsex" "fholly04">>
<<case "fholly04">>
<<vid "holly/f04.mp4">>
<<say holly>>Yes, just like that. Ohh~<</say>>
<<narrate>>Her moans seem to become increasingly high-pitched as she rides your cock.<</narrate>>
<<say holly>>Oh, my god, yes!<</say>>
<<cont "eastsex" "fholly05">>
<<case "fholly05">>
<<narrate>>Your bodies move together as your libido takes more and more control of your actions.<</narrate>>
<<vid "holly/f05.mp4">>
<<say holly>>Oh, my god, you're gonna make me cum. Yes, yes, right there.<</say>>
<<narrate>>You speed up, her cries of passion only hastening your race toward climax.<</narrate>>
<<say holly>>Oh, my god, yes. Oh, my god, I'm cumming!<</say>>
<<narrate>>She becomes short of breath, her body jolts, and you feel her tightening around your cock.<</narrate>>
<<cont "eastsex" "fholly06">>
<<case "fholly06">>
<<narrate>>You pick up the pace, chasing your own orgasm.<</narrate>>
<<vid "holly/f06.mp4">>
<<narrate>>Her ass slapping against you as you pound her only fuels your lust and within minutes you're on the brink.<</narrate>>
<<say holly>>Yes, just fuck me.<</say>>
<<narrate>>You feel the pleasure inside you beginning to press for release. It feels wild, and enormous.<</narrate>>
<<say holly>>My face! Quick!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "holly/f07.mp4">>
<<narrate>>You finish over her face, almost unable to jerk yourself through the immense pleasure now coursing through your body.<</narrate>>
<<say mc>>Holy fuck, holy shit, holy fuck!<</say>>
<<narrate>>The feeling of relief as you erupt is indescribable. The pressure within you released with each squirt of cum, sending waves of joy and elation throughout your body.<</narrate>>
<<say mc>>Fuck yes, fuck yes!<</say>>
<<narrate>>When you're finally done, you drop to the ground, sweaty and out of breath, as you recover from the immense sensation of your orgasm.<</narrate>>
<<say holly>>It was good, huh? There's no better orgasm then when on Blast.<</say>>
<<say mc>>Fuck, it felt... holy shit, I can't even describe it. Everything just felt more... just more!<</say>>
<<narrate>>She cackles.<</narrate>>
<<say holly>>The full effects will be wearing off around now too, but we should totally do this again.<</say>>
<<narrate>>You take some more time to recover and clean up before heading back out.<</narrate>>
<<cont "festival" $festival.next 3>>
<<unlock "holly" "fest">>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "hollymeet">>
<<narrate>>She gets on her knees before you, looking up at you while she takes your dick into her mouth.<</narrate>>
<<vid "holly/meet01.mp4">>
<<narrate>>The stimulation of her stroking your cock while massaging your glans makes you groan with pleasure.<</narrate>>
<<say "mc">>Holy crap!<</say>>
<<narrate>>She smirks and continues sliding your dick in and out of her mouth for a moment before gasping for air.<</narrate>>
<<say "holly">>You ready babe?<</say>>
<<narrate>>She lays down on the sofa, spreading her luscious lips for you.<</narrate>>
<<cont "eastsex" "hollymeet02">>
<<case "hollymeet02">>
<<narrate>>The sounds of her wet pussy welcoming your rod as you push into her fills you with excitement.<</narrate>>
<<vid "holly/meet02.mp4">>
<<say "holly">>Oh fuck.<</say>>
<<narrate>>She moves her whole body back and forth on the sofa in time with every thrust.<</narrate>>
<<narrate>>She looks up at you, a grin across her face.<</narrate>>
<<say "holly">>Let me show you my cowgirl impression, babe.<</say>>
<<cont "eastsex" "hollymeet03">>
<<case "hollymeet03">>
<<narrate>>As she lowers herself on your dick, she lets outs an almighty moan. Her excited cries now much louder than they were mere moments ago.<</narrate>>
<<vid "holly/meet03.mp4">>
<<narrate>>She bounces her thick ass up and down your cock, her pussy joyously taking every inch of your cock.<</narrate>>
<<say "holly">>Yes babe, yes!<</say>>
<<narrate>>She cries out as the pleasure overcomes her. Inside her you feel your dick squeezed more tightly as her vaginal muscles spasm, giving you the final push.<</narrate>>
<<say "mc">>Oh god fuck god yes it's coming! It's fucking coming!<</say>>
<<narrate>>She races to her knees in front of you, eager for your cum.<</narrate>>
<<vid "holly/meet04.mp4">>
<<narrate>>As you push yourself past the point of no return, your jizz erupts wildly, most of what isn't lost to the floor culminating on her forehead.<</narrate>>
<<say "holly">>Need to work on your aim, babe. I'm sure we can get plenty of practice.<</say>>
<<narrate>>As her final act she cleans your bellend off before disappearing to the bathroom.<</narrate>>
<<think "mc">>Holy shit, maybe this city isn't so bad after all.<</think>>
<<if $tempvar2 == "ne">>
<<narrate>>She shouts from the bathroom.<</narrate>>
<<say holly>>Feel free to <b>cum</b> back anytime; You know where I live.<</say>>
<<button "Continue" neweden>>
<<event "holly" "step" 1>>
<<unlock "holly" "meet">>
<<time 2>>
<</button>>
<<else>>
<<button "Continue" easthub>>
<<set $east.blast = 1>>
<<unlock "holly" "meet">>
<<time 3>>
<</button>>
<</if>>
<<case "katie01">>
<<narrate>>She jumps on the bed beside you and quickly attends to your cock.<</narrate>>
<<vid "katie/katie01.mp4">>
<<say "mc">>Oh fuck.<</say>>
<<narrate>>She gobbles down your dick with feverish delight.<</narrate>>
<<say "katie">>I need more.<</say>>
<<narrate>>She climbs on top of you.<</narrate>>
<<cont "eastsex" "katie02">>
<<case "katie02">>
<<vid "katie/katie02.mp4">>
<<narrate>>You grab the edge of her ass and bounce her on your cock.<</narrate>>
<<say "katie">>Ahhh~ It feels so good.<</say>>
<<narrate>>She whimpers with joy as her pussy slides up and down your dick.<</narrate>>
<<say "katie">>Haaaa~ oh my god yes.<</say>>
<<cont "eastsex" "katie03">>
<<case "katie03">>
<<narrate>>You twist her round and kneel up while bending her over.<</narrate>>
<<vid "katie/katie03.mp4">>
<<say "katie">>Ohhh yes, fuck that pussy, tight pussy yes.<</say>>
<<narrate>>She's almost incomprehensible as she tries to contain her excited cries.<</narrate>>
<<say "katie">>Ohhhh yes! Yes, Right there.<</say>>
<<narrate>>You grab her hand behind her back push harder into her.<</narrate>>
<<say "katie">>Don't stop! Don't stop!<</say>>
<<cont "eastsex" "katie04">>
<<case "katie04">>
<<narrate>>She flips over, your dick not once slipping loose and starts furiously rubbing her clit.<</narrate>>
<<vid "katie/katie04.mp4">>
<<narrate>>You keep pistoning her, but your stamina is finally waning and you feel the explosion building.<</narrate>>
<<say "katie">>Ohhh yes gimme all that cum.<</say>>
<<narrate>>Sensing your end, she starts begging for your cum.<</narrate>>
<<say "katie">>Hagggh~ Yes! Right there. You wanna cum on me?<</say>>
<<narrate>>Her words topple the last domino and you rush to bring your cock over to her face.<</narrate>>
<<cont "eastsex" "katie05">>
<<case "katie05">>
<<vid "katie/katie05.mp4">>
<<narrate>>She wriggles under your gaze as you fire your load.<</narrate>>
<<narrate>>She greedily pulls her head up to your cock, polishing off your tip.<</narrate>>
<<say "katie">>I see why the women fucking flock to you. Holy shit.<</say>>
<<narrate>>She uses her finger to wipe the errant cum off her cheek and into her mouth, then swallows while giving you a smile.<</narrate>>
<<unlock "katie" "blue">>
<<if $tempvar2 == "ne">>
<<say "katie">>Shit, video games and tasty cum? I'm really going to enjoy working here!<</say>>
<<say "mc">>Any time you're hungry!<</say>>
<<say "katie">>Oh, speaking of food. I'll come work the farm whenever you're ready. As long as I've got my gaming time, I'm happy.<</say>>
<<notice>>
$katie.name will now work for you.<br>
New improvements available for the farm.<br>
<<set $katie.skills.farming = 200>>
<</notice>>
<<button "Continue" townhub>>
<<like "katie" 4>>
<<lust "katie" 5>>
<<taskdone "katiesettle">>
<<worker "katie">>
<<set _arr = ['farm']>>
<<cover "katie" _arr>>
<<time 2>>
<</button>>
<<elseif $tempvar2 == "post">>
<<say "katie">>Fuck you taste good.<</say>>
<<say "mc">>Look me up any time you're hungry!<</say>>
<<say "katie">>I may do just that.<</say>>
<<button "Continue" townhub>>
<<like "katie" 4>>
<<lust "katie" 5>>
<<time 2>>
<</button>>
<<else>>
<<say "katie">>Give me a few minutes to freshen up and you can tell me about Nigel.<</say>>
<<narrate>>Your cock finally satiated it begins to soften.<</narrate>>
<<think "mc">>That was wild. I don't know whether to be mad at Nigel or grateful to him!<</think>>
<<button "Continue" east-farm>>
<<temp "katiecrop">>
<</button>>
<</if>>
<<case "hollyne2">>
<<narrate>>You knock on the door then hear her scrambling, almost like she runs past the door.<</narrate>>
<<say holly "" "(Yelling)" "shouting">>Come in!<</say>>
<<narrate>>You walk through to the lounge to find $holly.name waiting for you.<</narrate>>
<<center "east/holly05.jpg">>
<<say "holly">>So, we gonna have some fun, baby?<</say>>
<div id="replace">
<<choices>>
<<link "Go for it">>
<<replace "#replace">>
<<say "mc">>Well, I can't really say no when you've gone to this effort now, can I?<</say>>
<<cont "eastsex" "hollymeet">>
<</replace>>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<say mc>>Sorry, $holly.name, I just came back for a chat. Maybe next time?<</say>>
<<narrate>>She looks annoyed as you see yourself out.<</narrate>>
<<button "Continue" nestuff>>
<<like "aubree" 3>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "hollyne">>
<<left2 "east/holly01.jpg">>
<<say holly>>Oh, hiya babe. Back for more?<</say>>
<<say mc>>I was in the area and thought—<</say>>
<<narrate>>She grabs your crotch and pulls you inside.<</narrate>>
<<say holly>>You don't need to think when you're with me, babe... you just need to do.<</say>>
<<narrate>>She grins.<</narrate>>
<<say holly>>To be clear, I mean me. You need to do me.<</say>>
<<think mc>>This woman has zero interest in a conversation... fuck it.<</think>>
<<center "east/holly02.jpg">>
<<say "holly">>No romance. No foreplay. I just want your cock deep inside me, baby.<</say>>
<<narrate>>She ushers you to her bedroom, clawing at your clothes as she does so.<</narrate>>
<<say "holly">>I've wanted to do this since I first laid eyes on you.<</say>>
<<narrate>>You shake off the last of your clothes and fall back on to the bed. You watch with excitement as she slides herself up your legs and pushes your dick inside her.<</narrate>>
<<set $tempvar2 = "ne">>
<<cont "eastsex" "holly01">>
<<case "holly01">>
<<vid "east/blue01.mp4">>
<<narrate>>She bounces up and down on your dick. Her face a picture of lust.<</narrate>>
<<say "holly">>Oh my god.<</say>>
<<narrate>>She sends chills down your spine as she gets in close and her hair tickles your nipples.<</narrate>>
<<say "holly">>Oh fuck.<</say>>
<<cont "eastsex" "holly02">>
<<case "holly02">>
<<vid "east/blue02.mp4">>
<<say "holly">>Yes, baby, yes!<</say>>
<<narrate>>The clap of her ass cheeks as she continues to joyfully ride your rod only revs up your libido further.<</narrate>>
<<say "mc">>Fucking yes. Get it!<</say>>
<<narrate>>She rolls off of you but before she can make any more moves, you descend upon her, lifting her legs into the air.<</narrate>>
<<cont "eastsex" "holly03">>
<<case "holly03">>
<<narrate>>Holding onto her knees your you slide your dick in and out, each thrust taking you closer and close to the edge.<</narrate>>
<<vid "east/blue03.mp4">>
<<narrate>>Her own mind blank of thought beyond the pleasure, she struggles to form complete sentences.<</narrate>>
<<say "holly">>Oh my god, yes.<</say>>
<<narrate>>Her moans become more rapid, and feeling your libido running wild, you decide to make the final push.<</narrate>>
<<cont "eastsex" "holly04">>
<<case "holly04">>
<<narrate>>You flip her over, give her ass a few playful slaps, then slip right back in.<</narrate>>
<<vid "east/blue04.mp4">>
<<narrate>>Knowing the end draws near, you pace yourself, but it only takes a few thrusts before the lust takes over and you're going at it like a dog in heat.<</narrate>>
<<say "holly">>Oh my god. Fuck.<</say>>
<<narrate>>She looks back at you. Her cute face in the throes of euphoria, she grips the sheets tight, and screams your name.<</narrate>>
<<set _uc = $name.toUpperCase()>>
<<say "holly">>YES! FUCK! OH MY— _uc FUUUCK!<</say>>
<<narrate>>Her words catapult you to the finish line. You both scramble, eager to decorate her face with your lust.<</narrate>>
<<vid "east/blue05.mp4">>
<<narrate>>As she cleans your nob off, looking up at you with her cum-hungry gaze, you can't help but feel a bit of gratitude to <<if $tempvar2 == "ne">>$aubree.name<<else>>Nigel<</if>>.<</narrate>>
<<say "holly">>Fuck, that was even better than I imagined.<</say>>
<<narrate>>You fall back on the bed, your dick finally relaxing.<</narrate>>
<<if $tempvar2 == "ne">>
<<say holly>>Do come visit me again soon... maybe we can fuck while high on blast next time.<</say>>
<<button "Continue" townhub>>
<<unlock "holly" "hollyblue">>
<<event "holly" "step" 2>>
<<time 2>>
<</button>>
<<else>>
<<think "mc">>I guess I should talk to $katie.name about Nigel and the crops.<</think>>
<<button "Continue" easthub>>
<<unlock "holly" "hollyblue">>
<<set $east.crops = 3>>
<<time 3>>
<</button>>
<</if>>
<<case "rechome">>
<<if $east.sec == 6 && $tempvar2 != "ne">>
<<think "mc">>Hmm, I've already had an invite to the charity event from $sec.name, but a backup can't hurt I guess.<</think>>
<</if>>
<<narrate>>She answers the door and sighs with relief upon seeing you.<</narrate>>
<<say "rec">>Master, please, come in.<</say>>
<<narrate>>As you enter her abode and follow her to the living room you notice two items laid out neatly on the sofa. A riding crop and a pillory.<</narrate>>
<<think "mc">>Well, certainly makes it obvious what she wants.<</think>>
<<say "rec">>Does my preparation please you, master?<</say>>
<<narrate>>You hold out your hand and she scurries over, and to your surprise, sucks on your thumb.<</narrate>>
<<left2 "east/rec09.jpg">>
<<narrate>>As she sucks your thumb, her tongue pressed tightly against it, you feel a ticking sensation in your balls; her touch confusing your senses.<</narrate>>
<<say "rec">>What is it my master desires?<</say>>
<<say "mc">>Remove your top and stand perfectly still, <i>girl</i>. I don't want to hear a peep from you.<</say>>
<<narrate>>Her eyes full of desire, she stands upright before you.<</narrate>>
<<say "rec">>Of course master, whatever pleases you.<</say>>
<<narrate>>You then proceed to ignore her, watching her television instead.<</narrate>>
<<say "rec">>Master, what would you have me—<</say>>
<<say "mc">>Silence, girl. Do not test me.<</say>>
<<narrate>>He body quivers with excitement for a moment then she remains still. Her eyes lustfully gazing upon you throughout.<</narrate>>
<<narrate>>After about thirty minutes the show finishes. It was nothing you were particularly interested in, just a means to purposefully ignore her for a time.<</narrate>>
<<say "mc">>Now, how do we punish you for your earlier interruption.<</say>>
<<say "rec">>Perhaps you could spank me, master?<</say>>
<<narrate>>Her eyes plead with you as she suggests this.<</narrate>>
<<say "mc">>If I wanted your input I would ask for it, <i>girl.</i><</say>>
<<narrate>>You grab the pillory off the sofa.<</narrate>>
<<left2 "east/rec/home01.mp4" v>>
<<say "mc">>And for that, I think we need to teach you some manners.<</say>>
<<narrate>>You lock her into the device. You feel her trembling with anticipation.<</narrate>>
<<say "mc">>Parade for me.<</say>>
<<narrate>>She walks around in a circle for you. You can't help but admire the swagger of her ass.<</narrate>>
<<say "mc">>Very good, very good. But I don't think my little miscreant has truly learned her lesson yet.<</say>>
<<narrate>>You violently lift her skirt up, causing her to yelp in surprise.<</narrate>>
<<say "mc">>What was that, <i>girl</i>?<</say>>
<<say "rec">>Nothing master, I am at your mercy.<</say>>
<<cont "eastsex" "rechome2">>
<<case "rechome2">>
<<narrate>>You grab the riding crop and give her ass a few playful taps.<</narrate>>
<<vid "east/rec/home02.mp4">>
<<narrate>>Goosebumps riddle her arms and ass. Her hairs stand on end and with every touch she gasps loudly unable to contain her excitement.<</narrate>>
<<narrate>>You say nothing as you continue to slap her ass with the crop, occasionally running it across her vulva through her panties.<</narrate>>
<<say "mc">>On your knees, <i>girl</i>.<</say>>
<<narrate>>She obeys, her eyes widening as you lower your bottoms.<</narrate>>
<<cont "eastsex" "rechome3">>
<<case "rechome3">>
<<narrate>>You pull the pillory closer to you. Her mouth wide open, she accepts your stiff cock while looking up at you wistfully.<</narrate>>
<<vid "east/rec/home03.mp4">>
<<narrate>>You gently rock her back and forth, the look in her eyes driving you wild with lust.<</narrate>>
<<narrate>>Unable to contain yourself any further, you pull her up by the pillory then almost throw her down on to the sofa.<</narrate>>
<<cont "eastsex" "rechome4">>
<<case "rechome4">>
<<narrate>>You say nothing as you slide your dick inside her, but the smoky, lustful look she gives you sends your libido racing.<</narrate>>
<<vid "east/rec/home04.mp4">>
<<narrate>>As you pound away at her pussy, the metal bar clanks and her moans grow more vivacious.<</narrate>>
<<say "rec">>Aaah~ yeah.<</say>>
<<narrate>>Her body writhes under the pleasure.<</narrate>>
<<say "mc">>On your knees again, <i>girl</i>.<</say>>
<<cont "eastsex" "rechome5">>
<<case "rechome5">>
<<narrate>>She leans over the sofa, presenting her pussy to you.<</narrate>>
<<vid "east/rec/home05.mp4">>
<<say "rec">>Ohhh, fuck.<</say>>
<<narrate>>Her cries become deeper as you continue to pummel away.<</narrate>>
<<narrate>>The feeling of dominance over $rec.name fuels your excitement further, and as she orgasms, calling out to you as her master, you feel your own finale bubbling.<</narrate>>
<<narrate>>You pull out and jerk to completion, covering her back with your seed.<</narrate>>
<<vid "east/rec/home06.mp4">>
<<say "rec">>Yes, master. Please. Give it to me!<</say>>
<<narrate>>As you milk the last drop, you sit back on the sofa, spent.<</narrate>>
<<cont "eastsex" "rechome6">>
<<case "rechome6">>
<<narrate>>She crawls back over you, resting her head on your thigh.<</narrate>>
<<say "rec">>Did I please you, master?<</say>>
<<narrate>>You stroke her head.<</narrate>>
<<say "mc">>You did very well.<</say>>
<<narrate>>She almost purrs as she rubs her head against your hands.<</narrate>>
<<unlock "rec" "home">>
<<if $tempvar2 == "ne">>
<<else>>
<<say "mc">>You've been invited to a charity event at city hall. Your plus one will be me; make sure to let them know.<</say>>
<<say "rec">>Yes, of course, master. I'm looking forward to it.<</say>>
<</if>>
<<narrate>>You undo her pillory, returning her freedom. But her previous actions give you yet another idea.<</narrate>>
<<say "mc">>My <i>pet</i> needs to go clean up.<</say>>
<<narrate>>Understanding your statement completely, she waggles her ass at you, then crawls off to the bathroom.<</narrate>>
<<vid "east/rec/home07.mp4">>
<<if $tempvar2 == "ne">>
<<cont "nestuff" "" 2>>
<<event "rec" "step" 2>>
<<else>>
<<button "Continue" easthub>>
<<set $east.rec = 1>>
<<time 3>>
<</button>>
<</if>>
<<case "charityrec">>
<<narrate>>She guides you to an empty room<<if $tempvar2 == "ne">> in the VIP Red Area<</if>>.<</narrate>>
<<say "rec">>Would it please you master, if I were to undress?<</say>>
<<narrate>>You sit back on the leather chair while regarding her.<</narrate>>
<<say "mc">>Slowly.<</say>>
<<left2 "east/rec/strip.png">>
<<narrate>>Slowly and deliberately while maintaining eye contact she puts on a striptease for you.<</narrate>>
<<say "mc">>A little more.<</say>>
<<narrate>>She begins to shimmy out her skirt, you too start to undress.<</narrate>>
<<say "rec">>I see that I am pleasing you master. Is there more that you desire?<</say>>
<<narrate>>You beckon her over, pull her hair until her head is level with your dick.<</narrate>>
<<say "mc">>Please me with your mouth. If you do well, I may see fit to return the favor.<</say>>
<<cont "eastsex" "crec01">>
<<case "crec01">>
<<vid "east/rec/crec01.mp4">>
<<narrate>>She gleefully sucks on your knob. Her hair tickling you as her head bobs up and down.<</narrate>>
<<say "mc">>Fuck, that's good.<</say>>
<<narrate>>She grins while gasping for air then pushes her head down your entire shaft, the feeling of her throat squeezing you almost making you bust right there.<</narrate>>
<<say "mc">>You did well, girl.<</say>>
<<narrate>>You slap her ass, and leaving your hand there, pull her over you until her pussy is squarely on your face.<</narrate>>
<<cont "eastsex" "crec02">>
<<case "crec02">>
<<vid "east/rec/crec02.mp4">>
<<narrate>>She moans with delight as your tongue fondles her clit.<</narrate>>
<<say "rec">>Mhmmm~ God!<</say>>
<<narrate>>You greedily lap away at her vulva, eager to taste more of her juices as her excitement grows.<</narrate>>
<<narrate>>Your cock starts to twitch in anticipation.<</narrate>>
<<say "mc">>It's time, girl. Get off and bend over. Show me your glistening snatch.<</say>>
<<cont "eastsex" "crec03">>
<<case "crec03">>
<<narrate>>Obeying your command, she happily leans over the chair, waggling her ass invitingly at you.<</narrate>>
<<vid "east/rec/crec03.mp4">>
<<say "rec">>Ooh, yeah.<</say>>
<<narrate>>As you piston away she swings her body back in rhythm, eager to receive every inch of your cock.<</narrate>>
<<cont "eastsex" "crec04">>
<<case "crec04">>
<<narrate>>You toss her aside, sit in the chair then command her to ride your cock.<</narrate>>
<<vid "east/rec/crec04.mp4">>
<<say "rec">>Ohhh~ fuck!<</say>>
<<narrate>>As she bounces away on your lap, you feel the pleasure growing in your cock.<</narrate>>
<<say "rec">>I love it deep in me!<</say>>
<<say "mc">>Oh fuck, I'm gonna—<</say>>
<<narrate>>She keeps going, bouncing even faster than she was before.<</narrate>>
<<say "mc">>Hnnng~!<</say>>
<<narrate>>At the last moment, she releases your dick and you erupt, leaving her vulva covered in your warm goo.<</narrate>>
<<vid "east/rec/crec05.mp4">>
<<narrate>>You grin as you come up with a wicked plan.<</narrate>>
<<say "mc">>You'll spend the rest of the evening like that. Put your dress back on, but no panties and you'll remain covered in my jizz for the evening.<</say>>
<<narrate>>Her eyes light up and she attempts to hide her smile.<</narrate>>
<<say "rec">>Of course, master as you wish.<</say>>
<<unlock "rec" "charity">>
<<if $tempvar2 == "ne">>
<<think "mc">>She mentioned an audience, I hope we put on a good show.<</think>>
<<narrate>>The two of you head back to the communal area and enjoy a few drinks together.<</narrate>>
<<event "rec" "step" 3>>
<<cont "neweden" "" 2>>
<<else>>
<<think "mc">>All in all, pretty decent event... for me! Between everything I didn't even check what the charity was in aid of, though.<</think>>
<<narrate>>As you leave, you hear one of the MCs mention something about better housing for the poor.<</narrate>>
<<cont "easthub" "" 3>>
<</if>>
<<case "charitysec">>
<<block "east/sec/off01.jpg">>
<<say "mc">>Holy fuck. You look incredible.<</say>>
<<say "sec">>And I'll feel even better.<</say>>
<<narrate>>Your dick was hard the moment you laid eyes on her. She unclasps her bra throwing it at your face.<</narrate>>
<<say "sec">>Someone is wearing too much.<</say>>
<<narrate>>As you fidget with your pants, she lends over the desk, presenting herself to you.<</narrate>>
<<think "mc">>To hell with my top, I want that booty now!<</think>>
<</block>>
<<narrate>>You give her ass a few playful slaps then press your cock between her ass cheeks.<</narrate>>
<<vid "east/sec/off01.mp4">>
<<narrate>>You slide your dick up and down her ass cheeks.<</narrate>>
<<say "sec">>Fuck me already!<</say>>
<<narrate>>You need no further encouragement, you slip your cock into her pussy.<</narrate>>
<<cont "eastsex" "csec02">>
<<case "csec02">>
<<vid "east/sec/off02.mp4">>
<<narrate>>As the sounds of slapping skin echoes around the room you can't help but feel turned on by the fact you're only a few meters away from <<if $tempvar2 == "ne">>people working<<else>>the party<</if>> and someone could walk in at any moment.<</narrate>>
<<say "sec">>Hnnng! Ohhh~ yeah!<</say>>
<<cont "eastsex" "csec03">>
<<case "csec03">>
<<narrate>>You push her fully on to the desk and mounting it beside her.<</narrate>>
<<vid "east/sec/off03.mp4">>
<<narrate>>You hold up her right as you ram your cock deep inside her.<</narrate>>
<<say "sec">>Ohh~ Fuck like that!<</say>>
<<narrate>>Try as you might, you just can't fuck her hard enough in this position. You stand up, and redeliver your package while she remains laid out on the desk.<</narrate>>
<<cont "eastsex" "csec04">>
<<case "csec04">>
<<narrate>>You hug her thigh for purchase while pummeling away at her pussy.<</narrate>>
<<vid "east/sec/off04.mp4">>
<<say "sec">>Ahh yeah, fuck me!<</say>>
<<narrate>>She writhes around with pleasure on the desk, unsure what to do with her body as the orgasm takes hold of her.<</narrate>>
<<say "sec">>Yes, yes, yes!<</say>>
<<narrate>>Her pussy tightens around you as she lets out another high-pitched squeal. While one hand grips the desk the other slaps at it wildly, her pleasure completely taken over.<</narrate>>
<<say "mc">>Oh fuck I'mma—<</say>>
<<narrate>>She barrels to the floor, almost knocking you over.<</narrate>>
<<say "sec">>I'm not missing it this time!<</say>>
<<narrate>>She grabs your dick and strokes you to climax.<</narrate>>
<<vid "east/sec/off05.mp4">>
<<say "mc">>Holy fucking shit, yes!<</say>>
<<narrate>>The pair of you relax while you each catch your breath.<</narrate>>
<<if checkUnlocks('movie', 'office', 'sec') == false || $replay == true>>
<<say "mc">>This your office?<</say>>
<<narrate>>She cackles while collecting up her clothes.<</narrate>>
<<say "sec">>God no! It's $tour.name's.<</say>>
<<say "mc">>What's with you two anyway?<</say>>
<<say "sec">>Some old drama. Don't worry about it. Let's just say fucking you in here gets me a little payback.<</say>>
<<say "mc">>Well if you ever need any more payback...<</say>>
<<narrate>>She grins and throws your trousers at you.<</narrate>>
<</if>>
<<unlock "sec" "office">>
<<if $tempvar2 == "ne">>
<<cont "neweden" "" 2>>
<<else>>
<<think "mc">>All in all, pretty decent event... for me! Between everything I didn't even check what the charity was in aid of, though.<</think>>
<<narrate>>As you leave, you hear one of the MCs mention something about better housing for the poor.<</narrate>>
<<set $tempvar2 = "">>
<<cont "easthub" "" 3>>
<</if>>
<<case "krissyhoward">>
<<narrate>>You take a deep breath then slowly open the door, hoping neither notice you.<</narrate>>
<<vid "krissy/how01.mp4">>
<<narrate>>The two of them are too engrossed in each other to notice you. You manage to hide behind a desk while you watch the scene unfold.<</narrate>>
<<think "mc">>Fuck, I'm really spying on my $krissy.them?<</think>>
<<narrate>>The massive erection you've got soon clears your mind of any guilt. You start stroking yourself while watching her gobble down $howard.name's phallus.<</narrate>>
<<cont "eastsex" "krissyhoward2">>
<<case "krissyhoward2">>
<<narrate>>She mounts $howard.name.<</narrate>>
<<vid "krissy/how02.mp4">>
<<think "mc">>Holy shit, my $krissy.them is dirty!<</think>>
<<narrate>>There's a moment when you think you've locked eyes with $krissy.name. She stares right at you, but says nothing.<</narrate>>
<<think "mc">>Fuck my heart is thumping; I thought she caught me. There's no way she'd stay quiet after that!<</think>>
<<narrate>>You use your second hand to massage your glans while stroking your shaft with the other.<</narrate>>
<<cont "eastsex" "krissyhoward3">>
<<case "krissyhoward3">>
<<vid "krissy/how03.mp4">>
<<narrate>>She suddenly becomes more excitable, her motions more fueled by desire.<</narrate>>
<<narrate>>She screams with joy, every now and again stealing glances in your direction. The uncertainty of whether she knows you're there, or whether she'll catch you only adding to your own desire further.<</narrate>>
<<narrate>>You bust your nut on the underside of the desk, the thrill of your $krissy.them's eyes seeking you out as she gets pounded too much for you to take.<</narrate>>
<<cont "eastsex" "krissyhoward4">>
<<case "krissyhoward4">>
<<vid "krissy/how04.mp4">>
<<if $tempvar2 == "ne">>
<<say "howard">>An audience, $krissy.name? Just like old times, huh?<</say>>
<<say "krissy">>I think it's just the wind. We're alone.<</say>>
<<think "krissy">>Wait, can I see someone's ear poking out... there's no way, $name? No... no... it can't... why? No. Even he's not that depraved.<</think>>
<<else>>
<<say "krissy">>You didn't tell me we had an audience, $howard.name. Just like old times, huh?<</say>>
<<say "howard">>Huh? No. We should be alone...<</say>>
<<say "krissy">>I could have sworn there was someone behind the desk.<</say>>
<<think "krissy">>Wait, that hair... there's no way, $name? No... no... it can't... why? No. Even he's not that depraved.<</think>>
<</if>>
<<set _f = $name.substring(0, 2).toUpperFirst()>>
<<narrate>>As the doubt creeps over her so too does her orgasm, she calls out in euphoria.<</narrate>>
<<say "krissy">>Oh, fucking shit yes, _f—<</say>>
<<narrate>>She claps her hands over her mouth, her eyes wide with shock.<</narrate>>
<<think "mc">>I need to get outta here before they notice me.<</think>>
<<narrate>>You sneak out as fast as you can.<</narrate>>
<<unlock "krissy" "howard">>
<<if $tempvar2 == "ne">>
<<think "mc">>I'll ask Dave to talk to her about using her experience to help the workers at $stripname. I'll worry about whether I'm comfortable her performing there or not at a later stage.<</think>>
<<notice>>
$krissy.name can now work at $stripname.<br>
She will not perform with you or anyone else at this stage. Visit $stripname while she's working if you'd like to influence that.
<</notice>>
<<button "Continue" townhub>>
<<corrupt "krissy" 7>>
<<lust "krissy" 4>>
<<time 2>>
<</button>>
<<else>>
<<button "Continue" east-charity>>
<<corrupt "krissy" 3>>
<<temp $tempvar3>>
<</button>>
<</if>>
<<case "tourva">>
<<narrate>>You arrive at $va.name's penthouse a few moments later. The door is open. You can hear $tour.name talking inside.<</narrate>>
<<if $mayor == "va">>
<<say "tour">>...he said he'd endorse you for mayor. You were already easily the most popular candidate and seemingly the more popular he gets, the more people like you too. I think this just cements it further.<</say>>
<<elseif $mayor == "me">>
<<say "tour">>...then he jokes about himself being mayor. I think many misunderstood his sarcasm, but it doubt it really did any harm to your candidacy.<</say>>
<<elseif $mayor == "tour">>
<<say "tour">>...me, of all people! I have no desire to be mayor, but regardless, most of the people don't know who I am, so I don't think it really did anything to change anyone's mind; though might get me some suspicions looks at work.<</say>>
<<elseif $mayor == "nobody">>
<<say "tour">>...none of his business and that the citizens of New Eden should be the ones to decide without any uninformed opnion from him.<</say>>
<<else>>
<<set _w = State.variables[$mayor]>>
<<say "tour">>..._w.name was his answer. _w.name?! The reaction was lukewarm at best. While he's gained a lot of influence with the people, I don't think even he can sway them to the old guard, as it were.<</say>>
<</if>>
<<think "mc">>Hmm, they're talking about my answers...<</think>>
<<narrate>>You keep listening, but $va.name responds so softy that you're unable to hear her.<</narrate>>
<<think "mc">>I need to know what's going on!<</think>>
<<narrate>>You sneak in, trying to get closer while remaining hidden.<</narrate>>
<<cont "eastsex" "tourva00">>
<<case "tourva00">>
<<narrate>>$va.name grabs $tour.name and pulls her closer, kissing her passionately.<</narrate>>
<<center "va/tour01.jpg">>
<<think "mc">>Looks like I missed the informational stuff. But I think I like where this is going...<</think>>
<<choices>>
<<link "Watch" eastsex>>
<<temp "tourva01">>
<</link>><br>
<<link "Leave" nestuff>>
<<set $location = "gov">>
<<time 2>>
<</link>>
<</choices>>
<<case "tourva01">>
<<narrate>>$tour.name lifts her dress over her head and dangles it from her finger.<</narrate>>
<<vid "va/vatour01.mp4">>
<<say "va">>Let me take care of my good little worker.<</say>>
<<narrate>>She crawls over her seductively.<</narrate>>
<<cont "eastsex" "tourva02">>
<<case "tourva02">>
<<narrate>>$va.name sheds off her cloths and throws them in your direction, unaware of your presence.<</narrate>>
<<vid "va/vatour02.mp4">>
<<say "va">>Squeeze my finger.<</say>>
<<say "tour">>Ahhh~ yeah.<</say>>
<<cont "eastsex" "tourva03">>
<<case "tourva03">>
<<vid "va/vatour03.mp4">>
<<say "tour">>Oh my god, yeah, rub it. Rub it, rub it, rub it.<</say>>
<<say "tour">>Yes, yes, yes, yes, make me squirt!<</say>>
<<say "va">>Good little girl.<</say>>
<<say "tour">>Yes mommy!<</say>>
<<think "mc">>Kinky.<</think>>
<<cont "eastsex" "tourva04">>
<<case "tourva04">>
<<vid "va/vatour04.mp4">>
<<narrate>>$tour.name hungrily devours $va.name's pussy, eager to return the favor she was just given.<</narrate>>
<<think "mc">>Fuck this is hot.<</think>>
<<say "va">>Oh my god!<</say>>
<<cont "eastsex" "tourva05">>
<<case "tourva05">>
<<vid "va/vatour05.mp4">>
<<say "va">>You know what I want, don't you.<</say>>
<<say "va">>Yes. Good girl!<</say>>
<<say "va">>That's a good girl. Yessss—suck it. Suck it like that.<</say>>
<<cont "eastsex" "tourva06">>
<<case "tourva06">>
<<narrate>>Spent, and fully satisfied, the two of them curl up with each other on the sofa.<</narrate>>
<<vid "va/vatour06.mp4">>
<<think "mc">>Fuck, I love this city.<</think>>
<<narrate>>You sneak out while the two of them are embraced.<</narrate>>
<<unlock "va" "tourva">>
<<unlock "tour" "tourva">>
<<cont "eastsex" "tourva07">>
<<case "tourva07">>
<<narrate>>$am.name is stood outside the door as you exit, she turns to face you before you've had chance to even contemplate hiding.<</narrate>>
<<left2 "am/pent01.jpg">>
<<say "am">>$name, I wasn't expecting you.<</say>>
<<say "mc">>I uhh... came to talk to $va.name about the mayor stuff, but she seems... occupied.<</say>>
<<narrate>>She smirks at you.<</narrate>>
<<say "am">>And given what I know of you, I assume you stuck around for the show. Was my mistress aware?<</say>>
<<say "mc">>Honestly... I have no idea...<</say>>
<<say "am">>I'm sure she was. She very much likes putting on a show for you. I should know. We'll speak about the mayor role at a later date, it's still not confirmed it will even be happening.<</say>>
<<say "mc">>Right... yes, of course.<</say>>
<<if $mayor == "va">>
<<say "am">>I was happy to hear you'd endorse my mistress, though.<</say>>
<<elseif $mayor == "me">>
<<say "am">>I was surprised by your answer, though. You seemed to play it off sarcastically, but would you actually be interested in the position?<</say>>
<<say "mc">>No. I have enough on my plate already.<</say>>
<<say "am">>Good to know. But do be aware your words having meaning. You are the all-powerful patron, many still fear you, even if they do now respect you.<</say>>
<<elseif $mayor == "tour">>
<<say "am">>Your answer at the meeting, though... $tour.name is good at planning and management, but she doesn't think on a large enough scale to be mayor.<</say>>
<<elseif $mayor == "nobody">>
<<say "am">>You chose not to endorse anyone at the meeting. That's a safe way to play it, but I suspect that's not a luxury you'll have forever.<</say>>
<<else>>
<<set _w = State.variables[$mayor]>>
<<say "am">>_w.name has lost the people's trust. They will not be mayor.<</say>>
<</if>>
<<say "mc">>Wait, it was you... that's why I recognized the voice! Why didn't you just ask me directly?<</say>>
<<narrate>>She pulls herself close to you.<</narrate>>
<<say "am">>I'll do whatever. WHATEVER it takes for my mistress.<</say>>
<<narrate>>She then heads inside, locking the door behind her, without any further explanation.<</narrate>>
<<think "mc">>The fuck?!<</think>>
<<button "Continue" "nestuff">>
<<set $location == "gov">>
<<set $mayor = undefined>>
<<time 3>>
<</button>>
<<case "evaqt">>
<<vid "eva/qt01.mp4">>
<<narrate>>Taking your cock into her mouth, she gently rocks back and forth while discarding her jacket.<</narrate>>
<<say "mc">>Maybe I should do these meetings more often.<</say>>
<<narrate>>She grins, puling herself back up and unbuttoning your shirt.<</narrate>>
<<say "eva">>The... floor is yours.<</say>>
<<narrate>>She almost giggles at herself as she gestures for you to the carpet.<</narrate>>
<<cont "eastsex" "evaqt02">>
<<case "evaqt02">>
<<narrate>>Lowering herself onto your cock she lets out a yelp as her pussy welcomes your intrusion.<</narrate>>
<<vid "eva/qt02.mp4">>
<<say "eva">>I've been awaiting all day for this cock!<</say>>
<<cont "eastsex" "evaqt03">>
<<case "evaqt03">>
<<vid "eva/qt03.mp4">>
<<say "eva">>So good.<</say>>
<<narrate>>You revel in the sounds of her ass cheeks clapping against you. Each touch pushing you closer and closer to the edge.<</narrate>>
<<cont "eastsex" "evaqt04">>
<<case "evaqt04">>
<<vid "eva/qt04.mp4">>
<<say "eva">>Yeah, yeah...<br>
Fuck me harder!<</say>>
<<narrate>>Mesmerized by the jiggle of her tits you pound away, all other thoughts gone from your mind.<</narrate>>
<<cont "eastsex" "evaqt05">>
<<case "evaqt05">>
<<narrate>>Noticing your fascination, she grins and pulls you forward until your cock is firmly between her breasts.<</narrate>>
<<vid "eva/qt05.mp4">>
<<narrate>>She senses you're close, and speeds up.<</narrate>>
<<say "eva">>Give it all to me.<</say>>
<<narrate>>You're struggling to hold back, and the desire to decorate her face grows stronger with each passing second.<</narrate>>
<<say "eva">>Get every single last drop out.<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "eva/qt06.mp4">>
<<unlock "eva" "qt">>
<<say "mc">>Fucking yes, take it, take my dirty fucking seed all over your goddamn face. FUUUUCK!<</say>>
<<narrate>>She looks up at you with eyes full of lust as the last of your goo paints her face.<</narrate>>
<<say "eva">>Now that's the kind of intercity relationship I'd like to build on!<</say>>
<<button "Continue" neweden>>
<<time 3>>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "evameet">>
<<vid "east/eva01.mp4">>
<<narrate>>She wraps her huge tits around your cock.<</narrate>>
<<say "eva">>Mhhmm~ yeah.<</say>>
<<narrate>>She steals glances at you, her eyes full of desire, as she runs her soft skin against up and down your cock.<</narrate>>
<<say "eva">>You ever had tits this big fucking your cock?<</say>>
<<narrate>>She lowers her face toward your cock and licks your glans teasingly before taking you into her mouth.<</narrate>>
<<cont "eastsex" "evameet02">>
<<case "evameet02">>
<<vid "east/eva02.mp4">>
<<narrate>>Her breasts rest on your thighs as she gleefully bobs her head up and down your shaft.<</narrate>>
<<say "mc">>Fucking hell!<</say>>
<<narrate>>She runs her hands over your thighs as she continues to suck you off, the sensation of her touch sending pangs of pleasure to your groin.<</narrate>>
<<say "eva">>Ready for the real fun?<</say>>
<<narrate>>She pulls herself up on the desk, towering over you.<</narrate>>
<<narrate>>She lowers herself on to your cock, her pussy eagerly welcoming you as she slides you inside her.<</narrate>>
<<cont "eastsex" "evameet03">>
<<case "evameet03">>
<<vid "east/eva03.mp4">>
<<narrate>>She bounces up and down your dick like a women possessed.<</narrate>>
<<say "eva">>Oh fuck. Oh shit.<</say>>
<<narrate>>As the exclamations of her joy echo throughout the office you feel your libido going into overdrive. You hold her waist and rapidly thrust your hips upwards.<</narrate>>
<<say "eva">>Oh god. Oh fuck.<</say>>
<<cont "eastsex" "evameet04">>
<<case "evameet04">>
<<vid "east/eva04.mp4">>
<<say "eva">>Oh, fuck!<</say>>
<<narrate>>You grab her tits while pounding her from behind.<</narrate>>
<<say "eva">>Yeah, oh yes! Right there!<</say>>
<<narrate>>Her voice broken and breath uneven the pleasure has completely taken over her.<</narrate>>
<<cont "eastsex" "evameet05">>
<<case "evameet05">>
<<vid "east/eva05.mp4">>
<<narrate>>You push her back on to the table. While massaging her clit you pummel away determined to leave an impression.<</narrate>>
<<say "eva">>Don't stop. Don't stop, don't stop!<</say>>
<<narrate>>She begins to writhe under your touch, she arches her back and you feel her vaginal walls tighten around your cock.<</narrate>>
<<say "eva">>Fuck yeah.<</say>>
<<say "mc">>Oh shit yeah, I'm gonna cum!<</say>>
<<narrate>>She hurriedly pushes herself off the table and kneels before you, craving your cum.<</narrate>>
<<vid "east/eva06.mp4">>
<<narrate>>Once you finish painting your masterpiece on her face she grabs your cock, savoring every drop of cum she can while cleaning off your bellend.<</narrate>>
<<narrate>>She looks up at you, a wide grin on her face.<</narrate>>
<<say "eva">>Well I'd certainly call that brokering peace. Nothing like a good fuck to work things out, huh?<</say>>
<<say "mc">>God, you're incredible.<</say>>
<<say "eva">>You weren't so bad yourself.<<if $tempvar2 != "ne">> Shame $krissy.name didn't join us, but I'm sure she'll get over whatever stick is up her ass.<</if>><</say>>
<<unlock "eva" "evameet">>
<<if $tempvar2 == "ne">>
<<button "Continue" nestuff>>
<<time 2>>
<</button>>
<<else>>
<<say "mc">>Yeah...<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "eva">>You too? Whatever. Let's do this again some time.<</say>>
<<if $east.charityevent != undefined>>
<<button "Continue" east-charity>>
<<set $cabmet = 1>>
<<set $east.evameet = 2>>
<<temp $tempvar3>>
<</button>>
<<else>>
<<button "Continue" easthub>>
<<set $east.evasex = 1>>
<<time 3>>
<</button>>
<</if>>
<</if>>
<<case "tour">>
<<vid "east/tour01.mp4">>
<<narrate>>She attacks your penis like a ravenous beast; hungry and wild.<</narrate>>
<<say "mc">>Holy fuck, $tour.name.<</say>>
<<narrate>>She pulls your cock out of her mouth, gasping for air.<</narrate>>
<<say "tour">>Enough foreplay. Fuck me. Make me scream this god damn fucking building down!<</say>>
<<narrate>>She pushes you back on to the sofa.<</narrate>>
<<button "Continue" eastsex>>
<<temp "tour02">>
<</button>>
<<case "tour02">>
<<narrate>>Before you even have chance to react, she's atop you, riding your cock with same wild energy as before.<</narrate>>
<<vid "east/tour02.mp4">>
<<say "tour">>Yes, yeah, yeah.<</say>>
<<narrate>>As she bounces on your dick, she looks at you, her eyes practically begging for you to destroy her pussy. You grab her hips and thrust upward, granting her plea.<</narrate>>
<<say "tour">>OH SHIT!<</say>>
<<narrate>>She glances over to the door.<</narrate>>
<<say "tour">>More. Fuck me more. MORE!<</say>>
<<narrate>>She rolls off your lap and positions herself upside down.<</narrate>>
<<say "tour">>Fuck me. Make me scream!<</say>>
<<cont "eastsex" "tour03">>
<<case "tour03">>
<<vid "east/tour03.mp4">>
<<narrate>>Your grab her legs and take full advantage of the position.<</narrate>>
<<say "tour">>Oh shit that's fucking deep.<</say>>
<<narrate>>She holds on to the sofa for dear life as each thrust threatens to push her off.<</narrate>>
<<say "tour">>OH SHIT!<</say>>
<<narrate>>Her screaming and moaning becomes louder.<</narrate>>
<<say "mc">>Fuck I'm gonna...<</say>>
<<narrate>>The door swings open.<</narrate>>
<<say "tour">>Now! Fucking fill me with your spunk.<</say>>
<<say "mc">>Oh fucking shit, yes!<</say>>
<<if checkUnlocks('movie', 'tour', 'tour') == false || $replay == true>>
<<block "east/tour06.jpg">>
<<narrate>>You unload deep inside her, while she's laughing, almost cackling. A wicked smile appears on her face and she looks over at the door.<</narrate>>
<<say "sec">>What the hell is going on here?!<</say>>
<<say "tour">>Revenge, you fucking homewrecker.<</say>>
<<narrate>>She runs off sobbing.<</narrate>>
<<say "mc">>The hell?<</say>>
<<say "tour">>Fuck that felt good.<</say>>
<</block>>
<<say "mc">>Did you use me just to get back at her?<</say>>
<<say "tour">>Oh, boo-hoo. You fucking enjoyed every moment of it and my intentions were clear from the start. Anyway, I gotta go.<</say>>
<<say "mc">>That's it, no further explanation?<</say>>
<<narrate>>She sighs.<</narrate>>
<<say "tour">>Fine. Come back another time, I'll tell you the full story.<</say>>
<</if>>
<<unlock "tour" "tour">>
<<if $tempvar2 == "ne">>
<<cont "neweden" "" 2>>
<<else>>
<<button "Continue" easthub>>
<<time 3>>
<</button>>
<</if>>
<<case "gsec">>
<<narrate>>As you walk up the path to $gsec.name, the door opens.<</narrate>>
<<say "gsec">><<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>! Thank you so much for coming. Come inside!<</say>>
<<think "mc">>Oh, I'm hoping to!<</think>>
<<left2 "east/gsec06.jpg">>
<<if $tempvar2 == "ne">>
<<say "gsec">>How have you been enjoying Aegis?<</say>>
<<say "mc">>The location seems a bit odd, but beyond that it's great.<</say>>
<<say "gsec">>Despite Gerald's many... flaws, it does seem the women were treated well and the business is pretty good. I suspect most of that is down to Dave, however.<</say>>
<<say "mc">>And you're looking to move locations?<</say>>
<<say "gsec">>That's right. Nothing formal yet, just getting the feelers out. We expected there to be a downturn in profits after Gerald left, but as it turns out, he didn't really have that much involvement at this level. For him it was just a training ground for the <i>Glitter Box</i>.<</say>>
<<say "mc">>So he didn't really run the Aegis brothel?<</say>>
<<say "gsec">>No, and even <i>Glitter Box</i> was mostly dealt with by $genvoy.name. It's why the cabinet decided to give her most of his business assets rather than freeze them entirely.<</say>>
<<else>>
<<say "gsec">>Did you manage to find anything out?<</say>>
<<say "mc">>While their entrance into the company seem a bit dubious, the women seem pretty happy with the arrangement.<</say>>
<<say "gsec">>I mean, anyone can <i>seem</i> happy. It might all be a front.<</say>>
<<say "mc">>It doesn't feel that way. I can't say I'm the greatest detective in the world, but it didn't feel like they were lying.<</say>>
<<say "gsec">>Oh bother. Well, at least $howard.name will be pleased!<</say>>
<<say "mc">>$howard.name?<</say>>
<<say "gsec">>Ah... I guess I ought to come clean to you given you've risked yourself to aid me.<</say>>
<<say "gsec">>$howard.name asked me infiltrate <i>Aegis Protectorate</i> and check what was happening. He said one his now-former friends was spouting out something about the poor being poor by choice, and they could easily sell their bodies at <i>Aegis</i>. That he'd rather give those whores money than his stupid causes.<</say>>
<<say "mc">>Wow.<</say>>
<<say "gsec">>Exactly. Hence the <i>former</i> friend. But it was enough information for him to want to learn more, make sure the women were safe and not being exploited. Prostitution as you know isn't frowned upon here, but it is more prone to issues then factory or office work for example. $howard.name has long campaigned for a proper guild or union for sex workers to make sure they are properly protected.<</say>>
<<say "mc">>He sounds like a genuinely decent person. But I don't understand why female prostitutes would be so profitable when it's there's a male shortage.<</say>>
<<say "gsec">>He is. People are not two sided beings. Some people just want a specific need or desire filling, or sometimes just a way to release their frustrations discreetly. I can't really say why male prostitutes are so rare, but my guess would be because the stamina needed for such a vocation wouldn't be suited to many men.<</say>>
<<block "east/gsec07.jpg">>
<<say "gsec">>Anyway, that's why I was there. Though I have to ask, you mentioned their recruitment was a bit dubious?<</say>>
<<say "mc">>It seems to be those in debt that get offered this particular job.<</say>>
<<say "gsec">>Hmm, it's a legitimate career, unless anyone is getting forced into it, offering someone a job so they can pay off their debts doesn't really seem like a crime.<</say>>
<<say "mc">>No, no. I guess when you put it like that it doesn't.<</say>>
<<say "gsec">>Well, I'll going to keep on there a little longer, just to be safe. And if you want to use their facilities, or investigate further, feel free. Though given $am.name vouched for you, I don't think you really need me for that anyway. Just how do you know her? Are you from one of the wealthy families?<</say>>
<</block>>
<<say "mc">>It's a long story, but let's just say she and I work together.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say "gsec">>So you're one of $va.name's underlings?<</say>>
<<say "mc">>No. God no. Not at all. I'm my own man, it's just that our goals current align.<</say>>
<<block "east/gsec08.jpg">>
<<say "gsec">>And that is?<</say>>
<<say "mc">>To stop the war.<</say>>
<<say "gsec">>Now that's a lofty goal. Anything I can do to assist? While $howard.name won't admit it publicly while the cabinet are supporting war, between you and me, he's very much against it.<</say>>
<<narrate>>You think for a moment.<</narrate>>
<<say "mc">>Can you get me a meeting with $howard.name? If I can get him on board, $va.name will also oppose the war. That's then a stalemate on the cabinet. I then just need to convince $eva.name or somehow remove $gerald.name.<</say>>
<<say "gsec">>I can't say for sure. I mean no disrespect when I say this, but $va.name is not trustworthy and beyond $am.name vouching for you, you are a relative nobody. But I will speak to him.<</say>>
<</block>>
<<say "mc">>Thanks, $gsec.name, that's all I ask.<</say>>
<</if>>
<<say "gsec">>I was wondering... do you have some time to spare?<</say>>
<<block "east/gsec09.jpg">>
<<narrate>>She seductively gestures at you while lifting her dress.<</narrate>>
<<think "mc">>I should have known this was going to happen.<</think>>
<div id="replace">
<<choices>>
<<link "Fuck Her">>
<<replace "#replace">>
<<say "mc">>I have all the time in the world.<</say>>
<<narrate>>You grab her wrist and throw her to the floor, then drop your trousers. She looks up at you, her eyes full of passion, as she pulls her dress over her head.<</narrate>>
<<cont "eastsex" "gsec01">>
<</replace>>
<<set $intel.howard.pushUnique('Opposes the war.')>>
<<set $east.gsec = 3>>
<</link>><br>
<<link "Leave">>
<<replace "#replace">>
<<say "mc">>I'm afraid I don't have the time at the moment.<</say>>
<<say "gsec">>I understand a rejection when I see it. Shame, but, your loss.<</say>>
<<if $tempvar2 == "ne">>
<<cont "neweden" "" 2>>
<<else>>
<<button "Continue" easthub>>
<<time 3>>
<</button>>
<</if>>
<</replace>>
<<set $intel.howard.pushUnique('Opposes the war.')>>
<<set $east.gsec = 3>>
<</link>>
<</choices>>
</div>
<</block>>
<<case "gsec01">>
<<vid "east/gsec01.mp4">>
<<narrate>>Your bellend pushes against the back of her throat as she tries to swallow your cock.<</narrate>>
<<say "gsec">>You like that, don't you?<</say>>
<<narrate>>She gets and on the bed.<</narrate>>
<<say "gsec">>My feet. I want to feel your cock between my feet.<</say>>
<<cont "eastsex" "gsec02">>
<<case "gsec02">>
<<vid "east/gsec02.mp4">>
<<narrate>>She strokes your cock with her feet. They feel alien against your cock<</narrate>>
<<say "gsec">>Mhmm~ just like that!<</say>>
<<narrate>>She eggs you on as you grab her feet pushing them closer together while you sway back and forth, the delight of her feet being more than you expected.<</narrate>>
<<say "gsec">>Fuck me!<</say>>
<<cont "eastsex" "gsec03">>
<<case "gsec03">>
<<vid "east/gsec03.mp4">>
<<narrate>>You bounce her on your cock as she screams out in passion.<</narrate>>
<<say "gsec">>Yeah... yes!<</say>>
<<narrate>>As she stands to reposition, your salacious desires take full control and you push her over on to the stool, giving her no time to relax as you ram your cock deep inside.<</narrate>>
<<cont "eastsex" "gsec04">>
<<case "gsec04">>
<<vid "east/gsec04.mp4">>
<<say "gsec">>Oh fuck!<</say>>
<<narrate>>The slapping of flesh fills the room.<</narrate>>
<<say "gsec">>Right there, oh, right—<</say>>
<<narrate>>Sweat drips down the side of your face and as she screams in passion you know you have little left in you.<</narrate>>
<<say "gsec">>It feels so good!<</say>>
<<narrate>>As she screams out in joy you unleash your seed deep inside, before falling back on to the bed, spent.<</narrate>>
<<say "gsec">>Oh gosh, sorry for all the swearing, I just become a different person with a penis inside me.<</say>>
<<narrate>>You grin at her while trying to catch your breath.<</narrate>>
<<unlock "gsec" "gsec">>
<<if $tempvar2 == "ne">>
<<event "gsec" "step" 3>>
<<cont "neweden" "" 2>>
<<else>>
<<button "Continue" easthub>>
<<time 3>>
<</button>>
<</if>>
<<case "genvoy">>
<<narrate>>The bouncer stops you at the door.<</narrate>>
<<say "side" "Bouncer">>Members only.<</say>>
<<narrate>>You show him your card.<</narrate>>
<<say "side" "Bouncer">>Oh, one of <<if $tempvar2 == "ne">>hers<<else>>his<</if>>, huh? In you go. I know you'll be having a great night. Platinum members to the left stairs, please.<</say>>
<<narrate>>You follow the stairs up where $genvoy.name is at the bar.<</narrate>>
<<block "east/genvoy03.jpg">>
<<say "genvoy">><<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>, I'm glad to see you here.<</say>>
<<say "mc">>When a beautiful woman invites me to a strip club after telling how wet I made her... well, you damn well know any man would be here.<</say>>
<<narrate>>She grins at you.<</narrate>>
<<say "genvoy">>I can see what you're thinking and I think I should clarify. You and I won't be happening.<</say>>
<<say "mc">>We'll see.<</say>>
<</block>>
<<narrate>>She chuckles.<</narrate>>
<<say "genvoy">>I like your confidence. Many a man has tried, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>, but I only perform with other women.<</say>>
<<say "mc">>Perform?<</say>>
<<say "genvoy">>Just like yourself and <<if checkUnlocks('movie', 'dance', 'coffee') == true>>the barista<<else>>$pro3.name<</if>>, only here it's a little more... open.<</say>>
<<say "mc">>Is this not just a strip club?<</say>>
<<say "genvoy">>Ha, no. Perhaps downstairs, but here in the platinum lounge... there are a few less rules.<</say>>
<<narrate>>She looks up at the clock.<</narrate>>
<<say "genvoy">><<if $tempvar2 == "ne">>I'm<<else>>My employer has me<</if>> performing in a few minutes. Perhaps you'd like to come watch?<</say>>
<<say "mc">><<if $tempvar2 != "ne">>You mean $gerald.name? And h<<else>>H<</if>>ell yes!<</say>>
<<say "genvoy">><<if $tempvar2 != "ne">>Didn't take long for you to work out who I am, I see. Either way, c<<else>>C<</if>>ome see me in that room over there in fifteen minutes. Perhaps you'd even like to perform for us tonight; earn your keep, so to speak.<</say>>
<<narrate>>She struts off winking at you as she passes you.<</narrate>>
<<button "Continue" eastsex>>
<<temp "genvoy1">>
<</button>>
<<case "genvoy1">>
<<think "mc">>Wow. I had no idea there'd be so many people here.<<if $tempvar2 != "ne">> Wait, is that Gerald in the corner? He seems awfully bored.<</if>><</think>>
<<say "ew">>I hear $genvoy.name's performing tonight. God, she's so fucking hot.<</say>>
<<say "mc">>Can't disagree with that.<</say>>
<<narrate>>The woman steps back, taking a good look at you.<</narrate>>
<<say "ew">>Well, I haven't seen you here before, handsome. Performer, viewer... or both?<</say>>
<<say "mc">>Not quite decided...<</say>>
<<say "ew">>Oh, it's starting!<</say>>
<<narrate>>She pulls close to you and rests her head against your shoulder as you turn your gaze to the scene unfolding in front of you.<</narrate>>
<<think "mc">>Well, she's certainly friendly. This place is wild. I wonder if I could do something similar back at the hub?<</think>>
<<cont "eastsex" "party01">>
<<case "party01">>
<<narrate>>The buzz of conversation in the air dies away as the crowd gathers to watch $genvoy.name and two other beautiful women embrace.<</narrate>>
<<narrate>>You look on, but can't help but feel the woman you were speaking with lazily trace your biceps with her fingers.<</narrate>>
<<vid "east/party01.mp4">>
<<narrate>>The combination of sight and touch has your dick hard in mere seconds.<</narrate>>
<<cont "eastsex" "party02">>
<<case "party02">>
<<vid "east/party02.mp4">>
<<narrate>>As you continue to watch, the woman leaning on you starts rubbing your thigh.<</narrate>>
<<say "ew" "" "(Whispering in your ear)" "whisper">>I wish she was eating my pussy, just look how hungry she is. It's incredible.<</say>>
<<cont "eastsex" "party03">>
<<case "party03">>
<<vid "east/party03.mp4">>
<<say "ew" "" "(Whispering in your ear)" "whisper">>The blonde is my sister, you know? Isn't she wonderful?<</say>>
<<narrate>>The woman gives you a grin when you turn your head to her.<</narrate>>
<<say "ew" "" "(Whispering in your ear)" "whisper">>I can tell from your cock growing two sizes, that you're into that.<</say>>
<<narrate>>You simply shrug, unsure what to make of this mystery woman.<</narrate>>
<<think "mc">>Wait, her sister? Wasn't that the woman a few minutes ago she wished was eating her out?<</think>>
<<cont "eastsex" "party04">>
<<case "party04">>
<<vid "east/party04.mp4">>
<<narrate>>The mystery woman grabs your hand and places it firmly on her stomach.<</narrate>>
<<say "ew" "" "(Whispering in your ear)" "whisper">>A little lower; you'll see how wet I am.<</say>>
<<think "mc">>God, this place is amazing.<<if $tempvar2 != "ne">> Maybe $gerald.name and I are more alike than I thought.<</if>><</think>>
<<cont "eastsex" "party05">>
<<case "party05">>
<<vid "east/party05.mp4">>
<<narrate>>The mystery woman writhes in pleasure as your fingers explore her vulva. She whimpers silently trying to avoid distracting from the real show.<</narrate>>
<<say "ew" "" "(Whispering in your ear)" "whisper">>Oh fuck, your fingers are magical. So much better than my husband!<</say>>
<<think "mc">>Husband?! Eh, given what I know of this place it's probably fine.<</think>>
<<cont "eastsex" "party06">>
<<case "party06">>
<<vid "east/party06.mp4">>
<<narrate>>The moans of the women become louder, the orgasms more frequent, and the crowd more entranced.<</narrate>>
<<say "ew" "" "(Whispering in your ear)" "whisper">>Ahhh~<</say>>
<<narrate>>She grinds her hips on your fingers in time with her sister's performance.<</narrate>>
<<cont "eastsex" "party07">>
<<case "party07">>
<<vid "east/party07.mp4">>
<<narrate>>As the performers continue, the woman beside you goes weak at the knees and has to lean on you for balance. She bites her lip, nodding at you enthusiastically while maintaining eye contact and trying to avoid making any noise.<</narrate>>
<<narrate>>You nudge your cock into the woman's thigh in an attempt to signal you'd like the favor repaid.<</narrate>>
<<say "ew" "" "(Whispering in your ear)" "whisper">>Patience.<</say>>
<<cont "eastsex" "party08">>
<<case "party08">>
<<vid "east/party08.mp4">>
<<narrate>>As the performance dies down, the music starts picking back up. The woman beside you nods at <<if $tempvar2 == "ne">>a man in the corner<<else>>$gerald.name<</if>> then leaves.<</narrate>>
<<think "mc">>Well, shit, I thought she was gonna at least give me a handie.<</think>>
<<cont "eastsex" "party09">>
<<case "party09">>
<<unlock "genvoy" "three">>
<<unlock "cs" "three">>
<<unlock "foxxx" "three">>
<<say "side" "???">>So, how'd you like the show?<</say>>
<<say "mc">>I very much enjoyed it, wish I was right in there with them.<</say>>
<<narrate>>The woman from before returns, resting her cheek on your shoulder while stroking your chest.<</narrate>>
<<say "ew">>My husband and I here were about to put on a private show for <<if $tempvar2 == "ne">>Dave<<else>>$gerald.name<</if>>. But, if you're itching to get involved, I'm sure we could make room for a third.<</say>>
<<think "mc">>Holy shit. This place is insane. <<if $tempvar2 != "ne">>And a private area with $gerald.name? This might be a good chance to get some info... and have some fun doing it.<</if>> But... do I really want to engage in a threesome with another man?<</think>>
<div id="replace">
<<choices>>
<<link "Hell yeah" eastsex>>
<<temp "genvoythree">>
<</link>><br>
<<link "Hell yeah (skip scene)" eastsex>>
<<if $ew.name == "???">>
<<set $ew.name = "Wife">>
<</if>>
<<unlock "ew" "party">>
<<meet "ew">>
<<temp "ew08">>
<</link>><br>
<<link "Hell nah">>
<<replace "#replace">>
<<say "mc">>You'll have to excuse me, but I'm not sure that's my thing.<</say>>
<<say "ew">>Well that is a shame. We do love to indulge in a new face. You'll find such an uptight attitude around here won't last long.<</say>>
<<narrate>>She caresses your cheek as she walks away then blows you a kiss while closing the door behind her.<</narrate>>
<<say "genvoy">>That was a mistake. She's not the kind of woman to ask twice.<</say>>
<<say "mc">>Wow, you got cleaned up quickly! Having another man watch is one thing, but join in? It's not my style.<</say>>
<<if $tempvar2 == "ne">>
<<say "genvoy">>That is a shame, but I'm sure we can find something more up your street. Perhaps some of your companions may be interested in performing too? We could arrange some tryouts.<</say>>
<<say "mc">>Hmmm... I'll think about it.<</say>>
<<think "mc">>Could be hot...<</think>>
<<event "genvoy" "step" 1>>
<<cont "nestuff" "" 2>>
<<else>>
<<say "genvoy">>That is a shame, but I'm sure we can find something you're more up for. And you know, if all you want is to fuck, I may have something else you're interested in that could be mutually beneficial...<</say>>
<<narrate>>She notices you looking her up and down.<</narrate>>
<<say "genvoy">>Tssk, nope. Not me. I thought I'd made that clear. Ask for Dave at <i>Aegis</i> and tell him Lemon's rival sent you.<</say>>
<<say "mc">>Uhh... okay.<</say>>
<<say "genvoy">>You'll enjoy it. Don't worry. It's a little less exclusive... but a little more vanilla.<</say>>
<<think "mc">>Who knows? Might get me some dirt on $gerald.name.<</think>>
<<button "Continue" easthub>>
<<set $intel.gerald.pushUnique('Connected to <i>Aegis Protectorate</i>.')>>
<<set $east.gerald = 1>>
<<time 3>>
<</button>>
<</if>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "genvoythree">>
<<say "ew">>Fantastic. My husband has a rule, though; you must wear a condom when you enter me.<</say>>
<<say "mc">>Right, but if I may ask why? I didn't think we could—<</say>>
<<say "side" "???">>Friend, that is the bargain.<</say>>
<<narrate>>You shrug and nod. The woman grins and laughs to herself.<</narrate>>
<<say "ew">>You may refer to me as Wife during the... fun, but you will not refer to my husband whatsoever.<</say>>
<<think "mc">>Must be something kinky that helps them enjoy it more I guess.<</think>>
<<if $ew.name == "???">>
<<set $ew.name = "Wife">>
<</if>>
<<say "mc">>Very well, Wife.<</say>>
<<narrate>>She squints her eyes and sighs heavily.<</narrate>>
<<say "ew" "Wife">>Mhhmm, yes, perfect.<</say>>
<<narrate>>She heads over the sofa, dropping her dress over her shoulders and to the floor as she does.<</narrate>>
<<if $tempvar2 == "ne">>
<<set _say = "dave">>
<<else>>
<<set _say = "gerald">>
<</if>>
<<say _say "" "(Yelling)" "shout">>Private performance. Everyone out!<</say>>
<<narrate>>There's a murmur of discontent as the audience files out of the room, but you're already too engrossed in the woman before you to notice.<</narrate>>
<<cont "eastsex" "ew01">>
<<case "ew01">>
<<narrate>>The woman lays back on the sofa and pulls her panties to one side as her husband sloppily massages her cunt with his tongue.<</narrate>>
<<vid "east/ew/party01.mp4">>
<<say "ew" "Wife">>Yeah, yeah.<</say>>
<<narrate>>You kiss her passionately and run your fingernails over her thighs, the contrast in sensations for her only making her cries more and more salacious.<</narrate>>
<<cont "eastsex" "ew02">>
<<case "ew02">>
<<narrate>>You kick off your trousers revealing your stiff cock. She slides over, her husband's face still buried in her pussy, and brings her face to your raging manhood.<</narrate>>
<<vid "east/ew/party02.mp4">>
<<narrate>>She works your glans, her tongue feeling almost coarse across the very tip of your penis.<</narrate>>
<<narrate>>As her husband's exploration of her vulva continues, she starts moaning more wildly. Unable to contain her joy any further, she releases your cock and strokes your shaft vigorously while crying out with pleasure.<</narrate>>
<<say "ew" "Wife">>Let's switch it up, boys.<</say>>
<<narrate>>She wraps a condom around your dick then grins at you.<</narrate>>
<<say "ew" "Wife">>The newbie gets to go first.<</say>>
<<cont "eastsex" "ew03">>
<<case "ew03">>
<<narrate>>Out of the corner of your eye, you see <<if $tempvar2 == "ne">>Dave<<else>>$gerald.name<</if>> watching you impassively. It almost puts you off until $ew.name sits herself firmly on your lap, her pussy more than happy to welcome your rod.<</narrate>>
<<vid "east/ew/party03.mp4">>
<<narrate>>Her inner warmth as you piston into her fuels your lust further, causing you to thrust upwards harder and harder, faster and faster.<</narrate>>
<<say "ew" "Wife">>Ohhh yeah, yeah.<</say>>
<<narrate>>As she bounces on your cock, she struggles to properly service her husband, and almost as an afterthought starts sucking his dick.<</narrate>>
<<cont "eastsex" "ew04">>
<<case "ew04">>
<<narrate>>The seemingly jealous husband picks her up without saying a word and pulls her toward him before sliding inside her.<</narrate>>
<<vid "east/ew/party04.mp4">>
<<narrate>>She strokes your cock as her husband pounds her pussy, their eyes locked, you almost feel like an outsider for a brief moment.<</narrate>>
<<say "ew" "Wife">>Fuck yeah, fuck yeah.<</say>>
<<narrate>>As her husband's thumping reaches its end, she quickly reverts her attention to you, greedily trying to consume your bellend. While you're trying not to pay him any attention, you can't help notice <<if $tempvar2 == "ne">>Dave<<else>>$gerald.name<</if>> seems almost bored<</narrate>>
<<say "ew" "Wife">>My asshole needs that cock inside it. Give it to me, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>!<</say>>
<<cont "eastsex" "ew05">>
<<case "ew05">>
<<narrate>>You gently slide your cock into her anus, her joyful whimpering almost making you cum right there.<</narrate>>
<<vid "east/ew/party05.mp4">>
<<narrate>>Her moans increase in rapidity and her attention diverts entirely to you. Her husband is left to jerk himself off while you pleasure his wife.<</narrate>>
<<say "ew" "Wife">>Aaa~ yeah!<</say>>
<<narrate>>As you start massaging her clit, she notices her husband's cock out of the corner of her eye, a quick pang of guilt rushes across her face before she faces it and opens her mouth inviting him to fuck her face.<</narrate>>
<<narrate>>Unable to properly focus on her husband's cock while you're banging her, she looks at you, then her husband, and grins.<</narrate>>
<<say "ew" "Wife">>I want you inside my pussy while he fucks my asshole.<</say>>
<<narrate>>Her husband looks a little taken aback, but nonetheless lies on the couch while she positions herself atop him, sliding his cock inside her and presenting her ass toward you.<</narrate>>
<<cont "eastsex" "ew06">>
<<case "ew06">>
<<vid "east/ew/party06.mp4">>
<<narrate>>You pound away at her ass while husband holds her steady, his own cock deep within her pussy.<</narrate>>
<<say "ew" "Wife">>Ohh, yeah, yeah, yeah.<</say>>
<<narrate>>As she begins to orgasm, her husband looks up at her with love-filled eyes, happy to see his wife in the throes of pleasure.<</narrate>>
<<narrate>>Her moans echo around the room, and you can't help but notice that there's a buzz of chatter next door as each successive moan gets louder.<</narrate>>
<<narrate>>The excitement of the situation and the alien feeling caused by the double penetration finally overcomes you.<</narrate>>
<<say "mc">>Shit, I'm nearly there!<</say>>
<<say "ew" "Wife">>Both of you. Cover my face with your dirty spunk!<</say>>
<<cont "eastsex" "ew07">>
<<case "ew07">>
<<vid "east/ew/party07.mp4">>
<<narrate>>She giggles as the pair of you jack off mere centimeters above her face.<</narrate>>
<<narrate>>As the two of you unload onto her face, you can't help but notice the massive smile, the pure unadulterated joy she apparently receives from having her face plastered in semen is almost heart-warming... if not for, you know, the semen.<</narrate>>
<<say "ew" "Wife">>That was fucking wild. Are you sure that's your first time performing? You've got a knack for it!<</say>>
<<unlock "ew" "party">>
<<meet "ew">>
<<cont "eastsex" "ew08">>
<<case "ew08">>
<<if $genvoy.events.step == undefined || $replay == true>>
<<if $tempvar2 == "ne">>
<<say "dave">>Good show. You two mind if borrow $name for a quick chat?<</say>>
<<else>>
<<say "gerald">>Would you mind giving me some time with <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>> here?<</say>>
<</if>>
<<narrate>>The two of them nod, collect their things into a ball and leave into the main party without even getting dressed, or cleaning the cum off her face. There's a cheer-ridden round of applause as they open the door.<</narrate>>
<<narrate>>As she's closing the door behind her, you call out to her.<</narrate>>
<<say "mc">>Let me know if you want to perform again, <i>Wife</i><</say>>
<<narrate>>The smile on her face grows, and you notice her shudder with excitement. Just as the door slides shut, she blows you a kiss.<</narrate>>
<<if $tempvar2 == "ne">>
<<say "dave">>It's quite a decadence to have two men with a single woman, given the ratio of men to women here.<</say>>
<<say "mc">>So this is like a playground or something for the rich and powerful?<</say>>
<<say "dave">>Pretty much. As you know this was $gerald.name's toy. $genvoy.name and I now run this place, and we're a little more open. But, we also have bills to pay and don't want to scare away the current clientele who may fear change. We lost a few regulars due to Gerald's actions already.<</say>>
<<say "mc">>Okay... why are you telling me this?<</say>>
<<say "dave">>Maybe you can help us find more performers? Your companions are completely fresh faces to most everyone in New Eden.<</say>>
<<say "mc">>Hmm, maybe...<</say>>
<<think "mc">>Could be hot.<</think>>
<<say "dave">>Well, if anyone comes to mind, I'd be happy to arrange some tryouts, just speak to $genvoy.name here before opening.<</say>>
<<event "genvoy" "step" 1>>
<<cont "nestuff" "" 3>>
<<else>>
<<button "Continue" eastsex>>
<<temp "ewdone">>
<</button>>
<</if>>
<<else>>
<<say "dave">>That was quite the show. It's quite a decadence to have two men with a single woman, given the ratio of men to women here.<</say>>
<<cont "nestuff" "" 2>>
<</if>>
<<case "ewdone">>
<<say "gerald">>It's quite a decadence to have two men with a single woman, given the ratio of men to women here.<</say>>
<<think "mc">>What is it some kind of power play for the rich and powerful?<</think>>
<<say "gerald">>You are quite the performer, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>. Tell me, how have our paths never crossed before?<</say>>
<<say "mc">>Never been in the right place at the right time, I guess.<</say>>
<<say "gerald">>Perhaps. Perhaps. Tell me, what are your thoughts on what we do here, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>?<</say>>
<<think "mc">>Okay, he seems like the kind that wants others to want to impress him. I can work with that, just need to tread carefully the line between offending him and getting him to reveal more.<</think>>
<<say "mc">>Honestly, it's pretty good, but it seems so small in scale. And while certainly very... very hot. It feels somewhat, how do I put this... mundane. Like... almost as if these people are just going through the motions.<</say>>
<<narrate>>He scratches his chin.<</narrate>>
<<say "gerald">>Well, that performance certainly didn't feel that way. But you're right. Without new blood our games sometimes get a bit stale.<</say>>
<<say "mc">>Oh, I meant no offense, I didn't mean to suggest—<</say>>
<<say "gerald">>I may have a proposal for you. You seem, how do I put this, a little more rough than my usual company. I suspect you're not that wealthy, are you?<</say>>
<<think "mc">>Where the fuck is this going?<</think>>
<<say "mc">>Uhh, no, sir.<</say>>
<<say "gerald">>How many sexual partners have you had in the last month?<</say>>
<<think "mc">>The hell is going on here?<</think>>
<<say "mc">>Too many to count.<</say>>
<<narrate>>He chuckles.<</narrate>>
<<say "gerald">>I can tell from your eyes you mean that. I have a little business on the side that I think you may be interested in. Participants sometimes need a little... shall we say convincing. But I consider it a training ground before those fledglings come here for our entertainment. Speak to Dave at <i>Aegis</i>, tell him Lemon's rival sent you, and that you're going to be a new trainer. I suspect you'll do a far better job than the current lot.<</say>>
<<say "mc">>May I ask what the job entails, sir?<</say>>
<<say "gerald">>Money and women. Do you need anything else?<</say>>
<<say "mc">>No sir. Thank you.<</say>>
<<say "gerald">>It was good to meet you, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>. Your performances thus far have been exemplary, I hope to see more from you. And if our arrangement goes well, you'll have your pick of all the performers.<</say>>
<<think "mc">>I wonder...?<</think>>
<<say "mc">>Including $genvoy.name, sir?<</say>>
<<narrate>>He smirks as he puts his jacket on.<</narrate>>
<<set $deadline = $cabinet - 1>>
<<if $deadline == 0>>
<<say "gerald">>Time is against us. Had we met a little earlier, perhaps I could have indulged in such a gambit, but unfortunately after today my attention will be elsewhere.<</say>>
<<else>>
<<say "gerald">>You get me three new performers broken in in $deadline days, and I'll see what I can do. Though you should know, we don't usually get more than one or two performers per month. $genvoy.name of course is no normal prize and doesn't usually play with other men, so don't expect too much.<</say>>
<</if>>
<<say "mc">>I won't let you down.<</say>>
<<narrate>>He waves behind him as he exits.<</narrate>>
<<think "mc">>Holy shit. How the hell did someone like that get on the cabinet? Regardless, let's see what I can uncover at <i>Aegis Protectorate</i>. Hopefully there's something I can use to discredit him and his war goals. I doubt his sex club is really enough, it's not like he's hurting anyone.<</think>>
<<button "Continue" easthub>>
<<set $east.genvoy++>>
<<set $east.gerald = 1>>
<<set $east.geraldgirls = 0>>
<<set $intel.gerald.pushUnique('Connected to <i>Aegis Protectorate</i>.')>>
<<time 3>>
<</button>>
<<case "loan">>
<<meet "pro5">>
<<if $tempvar2 == "ne" || $location == "brothel">>
<<else>>
<<narrate>>A woman sits at a desk before you, looking nervous.<</narrate>>
<<say "pro5">>Okay. Okay. I can do this. It's just another job, right?<</say>>
<<say "dave">>Have fun. Make sure to test all her holes.<</say>>
<<think "mc">>Wait, what the fuck is this?<</think>>
<<narrate>>Dave leaves, closing the door behind him.<</narrate>>
<<say "pro5">>Wait, what, even my ass? Oh shit. I don't know...<</say>>
<<think "mc">>Fuck what do I do?<</think>>
<<say "mc">>I won't force you into anything.<</say>>
<<say "pro5">>No, no. I can do this. It's a great opportunity. Freezes my debt and gives me a stable career.<</say>>
<<narrate>>She looks up at you seductively.<</narrate>>
<<think "mc">>Fuck it. She's clearly not being forced. May as well go with the flow.<</think>>
<</if>>
<<left2 "east/pro5.jpg">>
<<say "pro5">>You ready for me to uhh, rock your world?<</say>>
<<narrate>>She clamors at your trousers, her inexperience showing through as she struggles with your belt.<</narrate>>
<<say "mc">>Let's take this one step at a time. Kneel on the ground and let see how well you can take my dick first.<</say>>
<<say "pro5">>Uhh, yes, yes. Of course.<</say>>
<<narrate>>She holds her mouth open wide while you remove your pants.<</narrate>>
<<say "mc">>Let's test your gag reflex foremost.<</say>>
<<if $tempvar2 == "ne" || $location == "brothel">>
<<think "mc">>Her nervousness act is kind of endearing... it plays on an innocence kink I guess. Either way, I'm here for it.<</think>>
<<else>>
<<think "mc">>Though I'm hard, I can't say I feel that lustful. The whole situation just feels weird.<</think>>
<</if>>
<<vid "east/pro5/pro501.mp4">>
<<say "mc">>Not bad, now suck it.<</say>>
<<if $tempvar2 == "ne" || $location == "brothel">>
<<think "mc">>Fucking hell that's good... that nervousness definitely isn't real. She's a pro.<</think>>
<<else>>
<<think "mc">>Okay... it's getting hotter...<</think>>
<</if>>
<<cont "eastsex" "loan2">>
<<case "loan2">>
<<vid "east/pro5/pro502.mp4">>
<<narrate>>She looks up at you with a nervous lust as she slides her lips over your cock.<</narrate>>
<<say "mc">>Fuck, you're no amateur, huh?<</say>>
<<narrate>>You see the joy in her at your compliment. She gasps for air, a grin on her face, then quickly gets back to your cock.<</narrate>>
<<say "mc">>Let's move on. Bend over the desk.<</say>>
<<if $tempvar2 != "ne" && $location != "brothel">>
<<narrate>>Her nervousness returns, but it's now fighting against her eagerness to please you.<</narrate>>
<</if>>
<<narrate>>She bends over, pulling down her panties and presenting her pussy to you.<</narrate>>
<<cont "eastsex" "loan3">>
<<case "loan3">>
<<narrate>>As you enter her, <<if $tempvar2 == "ne" || $location == "brothel">>she screams with delight<<else>>how fucked up this entire situation crashes through you<</if>>, charging your libido.<</narrate>>
<<vid "east/pro5/pro503.mp4">>
<<say "pro5">>Ohhhh~ yes, yes!<</say>>
<<think "mc">>Fuck, why does this suddenly feel so much better?<</think>>
<<narrate>>You flip her round, lift her by the hips and drop her on the desk.<</narrate>>
<<cont "eastsex" "loan4">>
<<case "loan4">>
<<vid "east/pro5/pro504.mp4">>
<<narrate>>You grab her thigh and pound away. Her screams of delight only fueling your lust more.<</narrate>>
<<say "pro5">>Yes, ohhhh~ fu~<</say>>
<<say "mc">>We've still got another hole to test out.<</say>>
<<narrate>>She gulps as she looks up at you.<</narrate>>
<<say "pro5">>I... I love anal. M-May I ride you?<</say>>
<<think "mc">>Holy shit, that nervousness, politeness, and cuteness all rolled up in to one? Shit, I'm gonna fuck her brains out.<</think>>
<<narrate>>You get up on the desk as she mounts you.<</narrate>>
<<cont "eastsex" "loan5">>
<<case "loan5">>
<<narrate>>Her body quivers with anticipation as she lowers herself on to you. She holds her breath as your cock slides into her anus. Then, without much warning she starts bouncing up and down. It doesn't take long for you to match the rhythm.<</narrate>>
<<vid "east/pro5/pro505.mp4">>
<<say "pro5">>Ohhhh~ fuck. Mmmmm~<</say>>
<<narrate>>As her passionate whimpers grow more frequent and your upward thumping becomes harder and harder you fear the desk will give out at any second.<</narrate>>
<<say "mc">>Chair.<</say>>
<<if $tempvar2 == "ne" || $location == "brothel">>
<<narrate>>She smirks and complies.<</narrate>>
<<else>>
<<say "pro5">>Y-yeah... sure.<</say>>
<<narrate>>Despite everything, she still sounds nervous.<</narrate>>
<</if>>
<<cont "eastsex" "loan6">>
<<case "loan6">>
<<vid "east/pro5/pro506.mp4">>
<<narrate>>You hold her cheeks as you bounce her ass up and down on your cock.<</narrate>>
<<say "pro5">>Yes. Mhmmmm.<</say>>
<<narrate>>You grunt viscerally as you feel your end coming.<</narrate>>
<<say "mc">>The money shot's coming!<</say>>
<<say "pro5">>Yes, please. Please give it to me. Decorate my face with your spunk!<</say>>
<<narrate>>There's not even a hint of her previous nervousness as she crawls off your lap and kneels before you.<</narrate>>
<<vid "east/pro5/pro507.mp4">>
<<narrate>>There's almost a look of gratitude in her eyes as you finish<<if $tempvar2 == "ne" || $location == "brothel">>.<<else>> and momentarily you feel a pang of guilt realizing while not forced, she may have been coerced. Luckily she speaks up a moment later.<</if>><</narrate>>
<<say "pro5">>That. Was. So fucking hot. Oh my days, your cum is so tasty, and the way you... fuck. <<if $tempvar2 == "ne" || $location == "brothel">>I wish all my clients were like you.<<else>>Will all my clients be this fun?<</if>><</say>>
<<narrate>>You laugh<<if $tempvar2 == "ne" || $location == "brothel">>.<<else>>, happier now her response suggests there's nothing to be overly alarmed about.<</if>><</narrate>>
<<unlock "pro5" "loan">>
<<if $tempvar2 != "ne" && $location != "brothel">>
<<narrate>>You talk for a few minutes and discover she got into a bit of debt and happened to meet Dave who offered her a job. Everything was entirely consensual, and her nervousness is just like that of many new people on day one of new employment.<</narrate>>
<<say "pro5">>By the way, I want my alias to be <<if $replay == true>>$pro5.name<<else>><<textbox "$pro5.name" Sapphire>><</if>>.<</say>>
<<think "mc">>Yeah, I guess it makes sense they wouldn't use their real names in this line of work.<</think>>
<<button "Continue" eastsex>>
<<meet "pro5">>
<<temp "loan7">>
<</button>>
<<elseif $location == "brothel">>
<<cont "mngbrothel" "" 1>>
<<else>>
<<cont "east-aegis" "ne" 1>>
<</if>>
<<case "loan7">>
<<narrate>>Dave returns.<</narrate>>
<<say "dave">>Not bad, newbie. You.<</say>>
<<narrate>>He points at the woman.<</narrate>>
<<say "dave">>You can go, we'll be in touch soon.<</say>>
<<narrate>>The woman collects her things and scurries off.<</narrate>>
<<say "dave">>So, your assessment, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>? Can she perform?<</say>>
<<say "mc">>Her dirty talk needs a little work, and she was clearly nervous, but that might actually work in our favor.<</say>>
<<think "mc">>Shit, I feel like a pimp. But I need to understand the full weight of what's going on here. It could be useful to discredit $gerald.name.<</think>>
<<say "dave">>How?<</say>>
<<say "mc">>The performances are certainly impressive, but without new blood they become stagnant. Watching someone a little nervous might be quite endearing to the onlookers.<</say>>
<<say "dave">>If you say so, just my job to bring 'em in. It's on your head, newbie. I'll let $gerald.name know.<</say>>
<<say "mc">>Do you have any other, umm, potentials?<</say>>
<<say "dave">>Not right now. We don't exactly advertise.<</say>>
<<think "mc">>I wonder if I know anyone who'd be willing to help...<</think>>
<<say "mc">>And if I have some suggestions?<</say>>
<<say "dave">>You have the authority of $gerald.name to bring whoever you want. Just bear in mind he does not take failure lightly. Come on, I'll walk you out.<</say>>
<<narrate>>He makes conversation as you leave.<</narrate>>
<<say "dave">>You know, not every whore makes it to the <i>Platinum Lounge</i>. Some aren't fit for it, others just don't want it. But if you're ever feeling that way inclined, come see me and you can have some fun with them too. It's usually only a service for the wealthy, but consider it a perk of working for $gerald.name.<</say>>
<<if $cabinet < 2>>
<<think "mc">>I don't have enough time to pursue this further, The cabinet meeting is too soon.<</think>>
<</if>>
<<button "Continue" easthub>>
<<set $east.gerald++>>
<<set $east.dave = 1>>
<<set $east.geraldgirls = 1>>
<<if $replay == false>>
<<set $intel.gerald.pushUnique('<i>Aegis Protectorate</i> is compelling women to perform sexual acts for an audience at the <i>Glitter Box.</i>.')>>
<<set $intel.city.pushUnique('<i>Aegis Protectorate</i> is also running a prostitution ring for the rich and powerful.')>>
<<set $intel.city.pushUnique('<i>Aegis Protectorate</i> prostitutes are recruited from people in debt.')>>
<</if>>
<<time 3>>
<</button>>
<<case "watchingamva">>
<<narrate>>As you approach the door is open so you let yourself inside.<</narrate>>
<<say "mc">>$am.name, are you here?<</say>>
<<narrate>>There's no answer but you hear moaning from the bedroom.<</narrate>>
<<think "mc">>Hmm, I wonder if she's with someone.<</think>>
<<narrate>>You creep to the bedroom door, and spy around the corner.<</narrate>>
<<center "east/amva01.jpg">>
<<think "mc">>Holy shit. I guessed she was with someone... I did not guess it was her!<</think>>
<<button "Continue" eastsex>>
<<temp "watchingamva01">>
<</button>>
<<case "watchingamva01">>
<<vid "east/amva01.mp4">>
<<narrate>>$va.name teases $am.name, stroking her fingers over her ass, running her tongue down the side of her panty line, and finally biting her ass playfully.<</narrate>>
<<narrate>>$am.name whimpers with anticipation; her face an expression of pure joy.<</narrate>>
<<think "mc">>Fuck me, right time right place, huh?<</think>>
<<button "Continue" eastsex>>
<<temp "watchingamva02">>
<</button>>
<<case "watchingamva02">>
<<narrate>>$va.name pulls $am.name's panties to one side and gets in low.<</narrate>>
<<vid "east/amva02.mp4">>
<<narrate>>Her tongue and fingers expertly bring pure unadulterated bliss to $am.name with each touch.<</narrate>>
<<think "mc">>Something tells me this isn't a one-off event.<</think>>
<<narrate>>With her free hand, $va.name blindly paws at the top of the drawers, trying to reach for something.<</narrate>>
<<button "Continue" eastsex>>
<<temp "watchingamva03">>
<</button>>
<<case "watchingamva03">>
<<narrate>>Claiming her prize, she continues feasting on $am.name while introducing a glass dildo to the mix.<</narrate>>
<<vid "east/amva03.mp4">>
<<narrate>>She becomes more ferocious with each moan of delight from $am.name, clearly taking delight in her control over the situation.<</narrate>>
<<narrate>>As an orgasm sweeps over $am.name's body, $va.name grins and grabs something from the top drawer.<</narrate>>
<<say "va">>Bend over. I'm going to fuck you like a dog!<</say>>
<<button "Continue" eastsex>>
<<temp "watchingamva04">>
<</button>>
<<case "watchingamva04">>
<<vid "east/amva04.mp4">>
<<say "am">>Oh god, yes yes!<</say>>
<<narrate>>Her moans become louder and more salacious as $va.name pounds away mercilessly.<</narrate>>
<<narrate>>$am.name's body quakes and she falls to the bed, unable to take anymore.<</narrate>>
<<say "va">>Oh we're not done yet, my little pet. Your mistress needs hers, too.<</say>>
<<button "Continue" eastsex>>
<<temp "watchingamva05">>
<</button>>
<<case "watchingamva05">>
<<vid "east/amva05.mp4">>
<<narrate>>She grabs $am.name's head and pushes it down to her own pussy.<</narrate>>
<<say "va">>Ohh~ yeah.<</say>>
<<narrate>>$am.name sucks on her mistress' lips and clit while gently massaging her pussy.<</narrate>>
<<narrate>>$va.name writhes in excitement, barely able to properly control her limbs as $am.name brings her to climax.<</narrate>>
<<narrate>>As $va.name sits panting, $am.name grabs another toy.<</narrate>>
<<say "am">>May I be so bold, mistress?<</say>>
<<narrate>>$va.name nods.<</narrate>>
<<button "Continue" eastsex>>
<<temp "watchingamva06">>
<</button>>
<<case "watchingamva06">>
<<vid "east/amva06.mp4">>
<<narrate>>She thrusts the dildo in and out, a wild glee in her eyes as she excitably brings her mistress yet another climax.<</narrate>>
<<narrate>>$va.name squirts violently across the bed, screaming out in pleasure.<</narrate>>
<<say "va">>Very good, $am.name... very good.<</say>>
<<say "am">>Anything for my mistress.<</say>>
<<narrate>>The two of them lay in the bed, sweaty and out of breath. You leave before they notice you.<</narrate>>
<<say "va">>Looks like he enjoyed the show.<</say>>
<<say "am">>Yes, mistress.<</say>>
<<say "va">>I had my suspicions based on your reports, but now that we know it's not just limited to his harem it should make it easier for us to control him. I want you to tease him a little. Have a little fun, but make him work for the full course.<</say>>
<<say "am">>Yes, mistress.<</say>>
<<unlock "am" "amva">>
<<unlock "va" "amva">>
<<if $tempvar2 == "ne">>
<<button "Continue" nestuff>>>
<<time 2>>
<</button>>
<<else>>
<<button "Continue" easthub>>
<<set $east.amvasaw = 1>>
<<time 3>>
<</button>>
<</if>>
<<case "amreward">>
<<think "mc">>The door's open again? Is security really that lax around here?<</think>>
<<narrate>>You enter the suite, looking around for $am.name when you notice the buzzing sound.<</narrate>>
<<think "mc">>Oh, that sounds fun!<</think>>
<<say "am" "" "(Yelling)" "shout">>I'm in the bedroom, $name, come on in.<</say>>
<<think "mc">>Fuck yes!<</think>>
<<narrate>>You dash to her room, to find her laying on the bed, legs spread with a wand vibrating against her pussy.<</narrate>>
<<cont "eastsex" "amreward01">>
<<case "amreward01">>
<<vid "east/amsolo01.mp4">>
<<say "mc">>Holy shit.<</say>>
<<say "am">>Enjoying the... aahhhh... view?<</say>>
<<say "mc">>Oh very much so. How about we enjoy it together?<</say>>
<<narrate>>She holds her hand out toward you, and lets the vibrator fall to the bed.<</narrate>>
<<say "am">>No. You're going well, but you've not earned that right. Consider this a treat, a glimpse of what's to come if you continue to serve the mistress.<</say>>
<<think "mc">>Whatever, I'll enjoy the view for now, but I'm totally gonna fuck you later.<</think>>
<<cont "eastsex" "amreward02">>
<<case "amreward02">>
<<vid "east/amsolo02.mp4">>
<<say "am">>Ah, fuck!<</say>>
<<narrate>>As the pleasure from the wand starts to become too much, she struggles to know what to do with her free hand. As it builds further she pinches her own nipple, pulling it back and forth as the orgasm flows through her body.<</narrate>>
<<narrate>>As the intensity increases she falls back on the bed, letting the vibrator free of her clit.<</narrate>>
<<say "mc">>Looks like someone had a great time.<</say>>
<<narrate>>She looks up at you from the bed and grins.<</narrate>>
<<say "am">>My mistress is extremely happy with your progress. Myself also. If you keep performing so well, she may even wish to reward you personally.<</say>>
<<narrate>>She gives you a wink.<</narrate>>
<<say "am">>I might add, I'm personally already looking forward to your next visit.<</say>>
<<unlock "am" "amsolo">>
<<if $tempvar2 == "ne">>
<<button "Continue" nestuff>>>
<<time 2>>
<</button>>
<<else>>
<<button "Continue" easthub>>
<<set $east.amvasaw = 3>>
<<time 3>>
<</button>>
<</if>>
<<case "vablue">>
<<vid "va/pill01.mp4">>
<<narrate>>Her technique is sloppy but very effective. Every part of your genitals knows her touch.<</narrate>>
<<say "mc">>Hnnng~ fuuuuck!<</say>>
<<narrate>>You can barely contain yourself as she sucks on your bollock.<</narrate>>
<<narrate>>You hold her on your dick as she fumbles to bring her top up. As she gasps for air, she brings it over the top of her head, throwing it by the way.<</narrate>>
<<narrate>>Without saying anything further you drag her onto the bed; only one thing on your mind at this point.<</narrate>>
<<cont "eastsex" "vablue02">>
<<case "vablue02">>
<<narrate>>Before you even have chance to enter her, she's wiggled down on the bed and thrust herself onto your cock.<</narrate>>
<<vid "va/pill02.mp4">>
<<say "va">>That's right. Mhmmm~ fuck yeah.<</say>>
<<narrate>>You let her have her moment as she greedily, but skillfully, rocks her body over your cock.<</narrate>>
<<say "mc">>Shit, that's good, but I want more.<</say>>
<<narrate>>You flip her over and she gets on her knees, knowing exactly what's about to come.<</narrate>>
<<cont "eastsex" "vablue03">>
<<case "vablue03">>
<<vid "va/pill03.mp4">>
<<say "va">>Fucking fuck!<</say>>
<<narrate>>She screams out as you enter her from behind.<</narrate>>
<<say "va">>Ohhh shit!<</say>>
<<narrate>>She pushes her body back in time with each hump, the two of you almost in perfect sync as you both chase your crescendo.<</narrate>>
<<cont "eastsex" "vablue04">>
<<case "vablue04">>
<<vid "va/pill04.mp4">>
<<say "va">>Aaaah~ Uggggh~<</say>>
<<narrate>>Her moans become more visceral as you continue pummeling her pussy.<</narrate>>
<<say "va">>Fuck my pussy good!<</say>>
<<narrate>>As you embrace, her tits swing across your face, causing your lust to run wilder still.<</narrate>>
<<cont "eastsex" "vablue05">>
<<case "vablue05">>
<<vid "va/pill05.mp4">>
<<narrate>>As your sweaty bodies continue to collide, she almost becomes feral and her face contorts between passion and admiration as your dick slides in and out of her.<</narrate>>
<<say "va">>Fffff— Hhhaaa~<</say>>
<<narrate>>The sweet sounds of your clapping flesh, joined with her incredulous pussy and her ferocious growls sing to you, and you feel your end drawing closer.<</narrate>>
<<cont "eastsex" "vablue06">>
<<case "vablue06">>
<<narrate>>You flip her back over, knowing your end is near you fiercely pummel away at her.<</narrate>>
<<vid "va/pill06.mp4">>
<<say "va">>Oh fuck, yeah!<</say>>
<<narrate>>As she screams in pleasure, out of breath and sweaty, you feel your climax bubbling.<</narrate>>
<<say "mc">>I'm gonna—<</say>>
<<say "va">>Inside, inside. Fill me with your goo!<</say>>
<<vid "va/pill07.mp4">>
<<narrate>>It only takes a few more thrusts before you erupt, leaving your cum dripping from her pussy.<</narrate>>
<<say "va">>Fuck. Fuuuuck. You and I are going to work so fucking well together. Holy shit.<</say>>
<<think "va">>I've got him. He's mine.<</think>>
<<say "mc">>I'm certainly not against future diplomatic meetings.<</say>>
<<narrate>>She grins at you.<</narrate>>
<<say "va">>I'm gonna go shower, but... my embassy is definitely open to your ambassador any time.<</say>>
<<unlock "va" "pill">>
<<if $tempvar2 == "ne">>
<<narrate>>The two of you burst out laughing at the terrible joke.<</narrate>>
<<cont "nestuff" "" 2>>
<<else>>
<<narrate>>The two of you burst out laughing at the terrible joke. She then heads out, not even bothering to collect her clothes.<</narrate>>
<<think "mc">>I guess I should shower too. I also need to talk to $katie.name about Nigel and the crops.<</think>>
<<button "Continue" easthub>>
<<set $east.crops = 3>>
<<time 3>>
<</button>>
<</if>>
<<case "vareward">>
<<button "Continue" easthub>>
<<set $east.cabmet++>>
<<time 3>>
<</button>>
<<case "ne-penthouse">>
<<if $tasks.visitgerald != undefined>>
<<narrate>>As you approach the door is already open so you let yourself in.<</narrate>>
<<say mc>>Hello?<</say>>
<<left2 "am/what.jpg">>
<<say am>>I saw you from the window. The mistress isn't here. What do you want?<</say>>
<<think mc>>Looking at that ass I know exactly what I want... but unfortunately I'm not here for that right now...<</think>>
<<say mc>>It's actually you that I wanted.<</say>>
<<say am>>Well... you have made the mistress rather happy as of late, if she gives her blessing I'd be happy to reward you.<</say>>
<<say mc>>Let's definitely circle back to that, but specifically I meant I wanted to talk to you. Can you tell me where Gerald is being held?<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say am>>He's secure. He won't come for your sluts, don't worry.<</say>>
<<say mc>>Excuse me?<</say>>
<<think mc>>She basically just offered herself to me and has the gal to say that?<</think>>
<<say mc>>You know what. It doesn't matter. I want to talk to him.<</say>>
<<say am>>I thought you had no interest in that?<</say>>
<<say mc>>Originally, no. But well, he may be able shed some light on what's going on.<</say>>
<<say am>>Which is?<</say>>
<<say mc>>I can't say.<</say>>
<<say am>>Then I can't tell you where he is.<</say>>
<<say mc>>Fine, I think he might be able to help me understand what it is $founder.name is after.<</say>>
<<say am>>$founder.name?<</say>>
<<say mc>>The founder.<</say>>
<<say am>>You discovered her name? Intriguing, have you kept the mistress abreast of everything lately?<</say>>
<<say mc>>I'll fill her in once I've got all the jigsaw pieces together... So, Gerald?<</say>>
<<say am>>The old training camp. I'll let the mistress know to expect you soon.<</say>>
<<narrate>>You roll your eyes.<</narrate>>
<<say mc>>Yeah. Thanks, $am.name.<</say>>
<<think mc>>I should have known she'd be digging for information. I know she won't let me put her off indefinitely, but I'll deal with $va.name later.<</think>>
<<button "Continue" nestuff>>
<<taskdone "visitgerald">>
<<time 1>>
<</button>>
<<elseif $tasks.festival4 != undefined && $va.events.music == undefined && $hubname != undefined>>
<<left2 "va/ne02.jpg">>
<<say va>>Well, if it isn't my favorite patron. What can I assist you with?<</say>>
<<think mc>>Didn't $adria.name mention she gained popularity with some of local musicians?<</think>>
<<say mc>>I heard you have some popularity with local musicians.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say va>>Are you trying to start a band?<</say>>
<<say mc>>No... I've basically no musical talent. We're doing a music festival in $hubname. Figured you might know some interested parties.<</say>>
<<say va>>A music festival, you say? Hmm, New Eden could benefit from additional visitors, ideally converting to immigrants later...<</say>>
<<say mc>>Uh... I was just thinking about maybe some bands to add to the lineup.<</say>>
<<say va>>Oh, sure, sure. That won't be a problem... I was just thinking we might be able to use the festival to New Eden's benefit too.<</say>>
<<say mc>>How so?<</say>>
<<say va>>Let me think on that a little, and I'll send $sarge.name the details once I've finalized the proposal.<</say>>
<<think mc>>Should I be concerned... was it wise to ask her?<</think>>
<<narrate>>She notices your furrowed brow.<</narrate>>
<<say va>>Oh? You'd rather deal with my directly, would you? I think I know what you really want, and there'll be plenty of that, don't worry. While ever you're a good boy and continue to please me... I will continue to please you.<</say>>
<<think mc>>Good boy...? Why does the way she say that excite me so much?<</think>>
<<say va>>But, for things like this we'd better keep it through official channels.<</say>>
<<say mc>>Right... yeah...<</say>>
<<narrate>>She walks her fingers down your chest and gently swirls her nail on your crotch.<</narrate>>
<<say va>>But the ways things are going, I'm sure we'll be collaborating closely more and more frequently.<</say>>
<<think mc>>I like where this is going...<</think>>
<<narrate>>As your dick stirs, she pulls herself away.<</narrate>>
<<say va>>I'll have the musicians contact you shortly, and my other proposal will follow via $sarge.name.<</say>>
<<think mc>>What a fucking tease!<</think>>
<<event "va" "music">>
<<set $festival.stats.hype += 1>>
<<cont "nestuff" "" 1>>
<<else>>
<<say "va">>$name. What a pleasant surprise.<</say>>
<<say "mc">>I wanted to discuss how things are progressing between our peoples.<</say>>
<<set _amreward = "<<say 'am'>>As we discussed, mistress?<</say>>
<<narrate>>$va.name nods. $am.name kneels on the chair, waggling her ass at you, her pussy already glistening.<</narrate>>
<<think 'mc'>>Holy fuck. I have no idea how this relates to anything, but I'm not gonna pass up on the chance.<</think>>
<<say 'mc'>>Well, there's a welcoming invite.<</say>>
<<narrate>>You pull her clothes to one side and run your fingers over her lips. Her body quivers with excitement.<</narrate>>
<<cont 'eastsex' 'am-vawatch'>>">>
<<set _vafriend = "
<<say 'va'>>Come join me at the table.<</say>>
<<narrate>>You take a seat.<</narrate>>
<<say 'va'>>The more popular you become, the more popular I become, it seems. Things are changing in New Eden, and you were pivotal to that.<</say>>
<<say 'mc'>>I just did what I felt was right.<</say>>
<<say 'va'>>Then I shall do the same...<</say>>
<<narrate>>You feel something pressing at your crotch, you look down through the glass table to see her feet gently rubbing against you.<</narrate>>
<<vid 'va/bob01.mp4'>>
<<say 'va'>>A mutual exchange. A sharing of our bodies as a symbol of our trust.<</say>>
<<narrate>>You look down at your crotch, your dick already starting to grow with anticipation.<</narrate>>
<<think 'mc'>>This woman cannot be trusted... but that doesn't mean I can't have a little fun with her.<</think>>
<<cont 'eastsex' 'vabob'>>">>
<<if $nerels == "Fearful">>
<<left2 "va/meet01.jpg">>
<<say "va">>Our people are still fearful of you I'm afraid. We need to do more to allay their fears.<</say>>
<<say "mc">>Hmm, back to the drawing board I guess.<</say>>
<<say "va">>Undoing all the damage Gerald and the founder done was never going to be a quick or easy task, but I'm sure together we can overcome it.<</say>>
<<say "mc">>Yeah...<</say>>
<<cont "nestuff" "" "0.5">>
<<elseif $nerels == "Cautious">>
<<left2 "va/meet03.jpg">>
<<say "va">>While our people are less fearful of you than they once were, they are still somewhat cautious.<</say>>
<<say "mc">>Some improvement, then.<</say>>
<<say "va">>Indeed. I'm sure $am.name would love to show you her gratitude if you keep improving.<</say>>
<<say "am">>Of course mistress.<</say>>
<<cont "nestuff" "" "0.5">>
<<elseif checkUnlocks('movie', 'watched', 'am') == true && $nerels == "Unsure">>
<<left2 "va/meet01.jpg">>
<<say "va">>No update on your popularity, I'm afraid. Though, perhaps you'd like to put on another show with $am.name for me?<</say>>
<div id="replace">
<<choices>>
<<link "Do it">>
<<replace "#replace">>
_amreward
<</replace>>
<</link>><br>
<<link "Another time" nestuff>>
<</link>>
<</choices>>
</div>
<<elseif $nerels == "Unsure" || $nerels == "Impassive">>
<<left2 "va/meet02.jpg">>
<<say "va">>Our people are cautious of you, but mostly accepting. We've come a long way since they feared you and your champions.<</say>>
<<say "mc">>Still a long way to go, though.<</say>>
<<say "va">>Of course... but, well, one should appreciate their victories, no matter how small.<</say>>
_amreward
<<elseif checkUnlocks('movie', 'watched', 'am') == false>>
<<left2 "va/meet02.jpg">>
<<say "va">>Things are improving nicely.<</say>>
_amreward
<<elseif $nerels == "Neutral">>
<<left2 "va/bob01.jpg">>
<<say "va">>Right now, our people aren't overly concerned about you. They are impassive, they no longer perceive you as a threat, but aren't particularly bothered by you either.<</say>>
<<say "mc">>Not a glowing endorsement, but at least it's a far cry from where we were.<</say>>
<<say "va">>Indeed. Things are progressing well.<</say>>
<<cont "nestuff" "" "0.5">>
<<elseif checkUnlocks('movie', 'bob', 'va') == true && $nerels == "Friendly">>
<<left2 "va/bob01.jpg">>
<<say "va">>Your popularity remains as it was. But, that doesn't mean you and I can't improve our relations...<</say>>
<div id="replace">
<<choices>>
<<link "Do it">>
<<replace "#replace">>
_vafriend
<</replace>>
<</link>><br>
<<link "Another time" nestuff>>
<</link>>
<</choices>>
</div>
<<elseif $nerels == "Friendly">>
<<left2 "va/bob01.jpg">>
<<say "va">>Relations have improved significantly. You're now seen rather favorably among our people. Likewise, my popularity has sky-rocketed due to endorsing you.<</say>>
<<say 'mc'>>That's great news!<</say>>
_vafriend
<<elseif checkUnlocks('movie', 'bob', 'va') == false>>
<<left2 "va/bob01.jpg">>
<<say "va">>Things are improving nicely, and my popularity sores alongside yours.<</say>>
<<say 'mc'>>That's great news!<</say>>
<div id="replace">
<<choices>>
<<link "Do it">>
<<replace "#replace">>
_vafriend
<</replace>>
<</link>><br>
<<link "Another time" nestuff>>
<</link>>
<</choices>>
</div>
<<elseif checkUnlocks('movie', 'pill', 'va') == true>>
<<left2 "va/ne01.jpg">>
<<say "va">>I don't know if your popularity can get any better to be honest. But, that doesn't mean you and I can't work on something... privately.<</say>>
<div id="replace">
<<choices>>
<<link "Do it">>
<<replace "#replace">>
<<narrate>>She pulls herself close to you and starts unbuttoning your trousers.<</narrate>>
<<say "va">>Let's continue to <i>really</i> improve our diplomatic relations.<</say>>
<<narrate>>She grasps your cock, licks your cheek, then drops to her knees.<</narrate>>
<<cont "eastsex" "vablue">>
<</replace>>
<</link>><br>
<<link "Another time" nestuff>>
<</link>>
<</choices>>
</div>
<<elseif $nerels == "Respected">>
<<left2 "va/ne01.jpg">>
<<say "va">>You've become well-respected in New Eden. An amazing feat in such a small time. Moreover, the people love me! They've lost faith in the other cabinet members due to them being part of the lies previously, even if they didn't realize they were.<</say>>
<<think "mc">>Wait, have I just made this woman more and more powerful in New Eden?<</think>>
<<say "va">>This city, they want new leadership, and it's all thanks to you.<</say>>
<<say "mc">>New leadership... like who?<</say>>
<<say "va">>Perhaps not new, but, a different structure. People are campaigning for me to be the sole leader of this city. The mayor.<</say>>
<<say "mc">>But what of the—<</say>>
<<narrate>>You cut off when she pulls herself close to you and starts unbuttoning your trousers.<</narrate>>
<<say "va">>Let's continue to <i>really</i> improve our diplomatic relations.<</say>>
<<narrate>>She grasps your cock, licks your cheek, then drops to her knees.<</narrate>>
<<cont "eastsex" "vablue">>
<</if>>
<</if>>
<<case "am-vawatch">>
<<vid "am/watch01.mp4">>
<<narrate>>You jam your fingers in and she moans in delight.<</narrate>>
<<say "am">>Oh fuck!<</say>>
<<narrate>>You present her your fingers, having her lick her own juices off them.<</narrate>>
<<say "va">>Very good. Even I struggle to make her moan that quickly.<</say>>
<<narrate>>You sit back on the couch.<</narrate>>
<<say "am">>I hope that's not all. <<if $tempvar2 == "ne">>The mistress wants to see a proper show!<<else>> She said <i>fuck</i>, remember?<</if>><</say>>
<<narrate>>She bears down on you, pulls your dick from your pants and slides her lips over it.<</narrate>>
<<cont "eastsex" "amwatched02">>
<<case "amwatched02">>
<<vid "am/watch02.mp4">>
<<narrate>>You reach around and start rubbing her clit while she gently works your glans.<</narrate>>
<<say "va">>Not letting her rest for even a moment, I see. Very entertaining.<</say>>
<<narrate>>You start fingerbanging her while using your thumb to massage her clit.<</narrate>>
<<say "am">>Fuck Yes-AH~!<</say>>
<<narrate>>The pleasure consumes her and as the orgasm washes over her she strokes your dick vigorously, while screaming out in ecstasy.<</narrate>>
<<say "va">>Already? You must have quite the touch. Now, $am.name, sit on his dick.<</say>>
<<cont "eastsex" "amwatched03">>
<<case "amwatched03">>
<<vid "am/watch03.mp4">>
<<say "am">>Ohhh yes!<</say>>
<<narrate>>She bounces up and down your dick, her moans growing ever louder as $va.name simply watches.<</narrate>>
<<say "va">>Fascinating.<</say>>
<<narrate>>$am.name starts dropping her body harder on your dick while looking directly at $va.name.<</narrate>>
<<say "am">>Watch me, mistress, watch me take this great big dirty dick all for you!<</say>>
<<think "mc">>Starting to feel like a sex toy at this stage... not that I care.<</think>>
<<cont "eastsex" "amwatched04">>
<<case "amwatched04">>
<<narrate>>She pushes you over onto the couch, not once letting your dick slide free of her pussy.<</narrate>>
<<vid "am/watch04.mp4">>
<<narrate>>As if giving herself a brief respite she makes small movements concentrating on your tip.<</narrate>>
<<say "va">>Tired already, $am.name?<</say>>
<<narrate>>As she looks back over her shoulder you grab her waist and pull her up and down your cock.<</narrate>>
<<say "am">>Oh my god, fuuck!<</say>>
<<say "va">>Better, much better.<</say>>
<<narrate>>You take control, throwing her off you while you stand over her.<</narrate>>
<<cont "eastsex" "amwatched05">>
<<case "amwatched05">>
<<vid "am/watch05.mp4">>
<<narrate>>The look of elation on her face as you pummel away at her pussy is almost enough to make you bust right there.<</narrate>>
<<say "am">>Oh my gosh, yes!<</say>>
<<say "va">>Mhhmm, yes, that's it. I want to see you paint her face with your dirty seed!<</say>>
<<narrate>>Timed with $am.name's moan, it's the breaking point. You move over her, rushing your cock to her face.<</narrate>>
<<vid "am/watch06.mp4">>
<<say "mc">>Oh my fuck. Yes, fuck!<</say>>
<<narrate>>You decorate her face with your spunk. She looks up at you with an infectious smile.<</narrate>>
<<say "va">>Well, I don't think even I've made her that happy before.<</say>>
<<say "am">>No, mistress. He could never—<</say>>
<<narrate>>$va.name holds up her hand.<</narrate>>
<<say "va">>I am by no means offended or hurt, $am.name. He put on a great performance and deserves your admiration.<</say>>
<<say "am">>Right, yes, of course mistress.<</say>>
<<if $tempvar2 != "ne">>
<<say "mc">>So, about the performances?<</say>>
<<say "va">>Oh yes. You both did very well. I see why $gerald.name wanted you to perform. And I can see how much you both enjoyed it.<</say>>
<</if>>
<<say "mc">>You were incredible, $am.name.<</say>>
<<say "am">>Anything for my mistress.<</say>>
<<unlock "am" "watched">>
<<if $tempvar2 != "ne">>
<<say "mc">>But I meant the stuff at the Platinum Lounge.<</say>>
<<say "va">>I'll have it looked into. If I discover anything useful, I'll use it at the cabinet meeting if we need it.<</say>>
<<say "mc">>That's it?<</say>>
<<say "va">>Yes, were you expecting something grandiose? Until we have proof, there's nothing else to be done.<</say>>
<<think "mc">>Hmm, if $va.name and $am.name couldn't get into the platinum lounge perhaps they aren't as well-connected as I thought. Maybe I could still do some digging myself if I get $gerald.name some performers. But I don't really have much time here. Is it worth the risk? <</think>>
<<button "Continue" easthub>>
<<set $east.amvawatch = 1>>
<<time 3>>
<</button>>
<<else>>
<<cont "nestuff" "" 2>>
<</if>>
<<case "dance">>
<<narrate>>As you arrive at the club, you look at the long line to get in and sigh. Just as you're walking up to join the back a bouncer stops you.<</narrate>>
<<say "side" "Bouncer">><<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>?<</say>>
<<say "mc">>Uhhh, yeah?<</say>>
<<say "side" "Bouncer">>Thought so; her description was spot on. <<if $tempvar2 == "ne">>You have the same name as that new patron. I bet that's a pain in the arse, huh? Anyway, <</if>>$coffee.name put you on the VIP list. Right this way, please. Head into the red area just through the back there.<</say>>
<<narrate>>He opens the rope to the annoyance of those queuing and lets you inside. You look around, a little disorientated, then head for the room labeled <i>VIP Red Area</i>. There's another door beside marked <i>VIP Elite Area</i> right next door. Another bouncer guards both doors.<</narrate>>
<<say "side" "Bouncer">>Ah, you must be <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>. Go right ahead.<</say>>
<<say "mc">>Sure, sure. What's the Elite area all about?<</say>>
<<say "side" "Bouncer">>It's for our wealthiest patrons. Don't worry sir, the regular VIP is very private and you and $coffee.name will have a great time. The bar is shared between both VIP areas.<</say>>
<<say "mc">>Uhh... right okay.<</say>>
<<think "mc">>$coffee.name must be a big deal in here or something, but not wealthy enough for that area or maybe she's only allowed to invite guests to the regular VIP?<</think>>
<<narrate>>You shrug, nod at the bouncer, then head inside.<</narrate>>
<<cont "eastsex" "dance1">>
<<case "dance1">>
<<narrate>>You make your way through the area, skipping the bar for now and heading directly to the room you were instructed.<</narrate>>
<<left2 "east/coffee05.jpg">>
<<narrate>>As you open the door, $coffee.name stands to greet you.<</narrate>>
<<say "mc">>Wow. You look incredible. I feel a little under-dressed.<</say>>
<<narrate>>She gives you a wry grin.<</narrate>>
<<say "coffee">>From where I'm standing you're very much overdressed.<</say>>
<<narrate>>She taps her feet as the music starts.<</narrate>>
<<say "coffee">>Come, dance with me!<</say>>
<<narrate>>You start off relatively awkward, as you try to keep pace with her. The two of you laugh a number of times as you fumble the movements. But as time goes by, things start to click and while still not a great dancer, you at least stop making a fool of yourself.<</narrate>>
<<say "coffee">>Pretty good for a beginner. You know... this room is private.<</say>>
<<say "mc">>I did wonder why it was just us two.<</say>>
<<say "coffee">>And dancing makes me horny...<</say>>
<<think "mc">>Fuck yes!<</think>>
<<say "coffee">>Let's have a quick breather, then I'll show you some <i>very</i> intimate dance moves. Perhaps you could grab us some drinks while I get... more comfortable.<</say>>
<<narrate>>You head back to the bar to grab some refreshments.<</narrate>>
<<block "east/genvoy01.jpg">>
<<say "genvoy">>You know, those rooms aren't private to <i>everyone.</i><</say>>
<<think "mc">>Shit. The things I intended to do to her...<</think>>
<<if $east.pro3 != 2>>
<<say "genvoy">>But... let's just say <<if $tempvar2 == "ne">>I<<else>>myself and my employer<</if>> do like a good show. <<if $tempvar2 == "ne">>I'll<<else>>We'll<</if>> make it worth your while.<</say>>
<<say "mc">>Why not just watch without having told me?<</say>>
<<say "genvoy">>It's a test of your ability to perform. You put on a good show for us, and there'll be plenty more like it at the <i>Glitter Box</i>.<<if $tempvar2 == "ne">> A place with someone of your reputation would very much enjoy, $name.<</if>><</say>>
<<else>>
<<say "genvoy">>But... let's just say... <<if $tempvar2 == "ne">>I<<else>>we<</if>> do enjoy a good show.<</say>>
<<say "mc">>Why not just watch without having told me?<</say>>
<<say "genvoy">><<if $genvoy.events.step != undefined>>I think you and I know each well enough by now. <<elseif $tempvar2 == "ne">>Your reputation precedes you. <</if>>Don't you enjoy the thrill of knowing you're being watched?<</say>>
<</if>>
<</block>>
<<narrate>>She holds her fingers to your lips as you're about to respond.<</narrate>>
<<say "genvoy">>No words. Only actions. We'll meet <<if $tempvar2 != "ne">>with you<</if>> later <<if $genvoy.events.step != undefined>>after you've entertained me<<else>> if you entertain <<if $tempvar2 == "ne">>me<<else>>us<</if>><</if>>.<</say>>
<<if $genvoy.events.step != undefined>>
<<think mc>>Yeah... she knows me well... fucking one hot woman while another is watching... I'm definitely game.<</think>>
<<elseif $tempvar2 == "ne">>
<<think "mc">>Well she certainly seems happier since I saw her at the cabinet meeting, and having a hot redhead watching me, maybe even pleasuring herself? Well, that's just another turn on!<</think>>
<<else>>
<<think "mc">>Does some strangers watching me bother me? Honestly, not really.<</think>>
<</if>>
<<cont "eastsex" "dance00">>
<<case "dance00">>
<<narrate>>You head back to the "private" room with the drinks.<</narrate>>
<<block "east/coffee/dance01.jpg">>
<<say "coffee">>What took you so long? I was getting impatient.<</say>>
<<say "mc">>God, you look incredible.<</say>>
<<say "coffee">>I'll look even better when these clothes hit the floor.<</say>>
<<narrate>>She lowers her top reveling her perky breasts then points at the lounger.<</narrate>>
<<say "coffee">>Let's raise the tempo.<</say>>
<</block>>
<<narrate>>You lay back on the lounger as she mounts you, raising her pussy to your face.<</narrate>>
<<cont "eastsex" "dance01">>
<<case "dance01">>
<<vid "east/coffee/dance01.mp4">>
<<narrate>>You run your tongue over the fabric, the contours of her vulva, filling you with delight as your dick tries to break free from its restraints.<</narrate>>
<<say "coffee">>Mhmm yeah!<</say>>
<<narrate>>She climbs down, tugging at your belt as she does so.<</narrate>>
<<cont "eastsex" "dance02">>
<<case "dance02">>
<<narrate>>As you rush to throw off your trousers, she lowers the rest of her outfit, letting it fall on the floor before reaching over and grabbing your rod.<</narrate>>
<<vid "east/coffee/dance02.mp4">>
<<narrate>>She runs her hand up and down your shaft while stimulating your glans with her tongue. Her red lipstick smears across your cock and onto her hands as she continues to stroke.<</narrate>>
<<say "mc">>Nnnng, fucking hell!<</say>>
<<narrate>>She stops and looks you square in the eyes.<</narrate>>
<<say "coffee">>I need it inside me. Show me your moves.<</say>>
<<cont "eastsex" "dance03">>
<<case "dance03">>
<<narrate>>You grab her thigh and start pound her pussy, something about being watched by an unknown audience causing an unusual excitement within you.<</narrate>>
<<vid "east/coffee/dance03.mp4">>
<<say "mc">>Yes, yes, yes!<</say>>
<<say "coffee">>Fuck me just like that!<</say>>
<<narrate>>You're unusually vocal and your breath audible as you continue thrusting away, whether it's the turn on of being watched or the exquisite feel of her pussy you're unsure.<</narrate>>
<<say "coffee">>Yeah, yeah, yeah!<</say>>
<<narrate>>She looks back at you, her eyes steaming with lust.<</narrate>>
<<say "coffee">>I want to taste my pussy on your dirty cock.<</say>>
<<cont "eastsex" "dance04">>
<<case "dance04">>
<<narrate>>As you lay back on the lounger, she climbs over you, her pussy yet again in your face.<</narrate>>
<<vid "east/coffee/dance05.mp4">>
<<narrate>>You dart your tongue at her clit as she sucks down on your cock. The two of you engrossed in each other's pleasure.<</narrate>>
<<narrate>>You start undoing her shoe. She lets out a little laugh then pushes her pussy further into your face.<</narrate>>
<<say "coffee">>I didn't take you for a foot guy, sit back, I'll show just how dexterous a dancer's feet are!<</say>>
<<cont "eastsex" "dance05">>
<<case "dance05">>
<<narrate>>She removes her heels and wraps her feet around your dick.<</narrate>>
<<vid "east/coffee/dance04.mp4">>
<<narrate>>She whimpers with joy as she runs her feet up and down your shaft.<</narrate>>
<<say "mc">>God, yes.<</say>>
<<say "coffee">>Ready for the last dance? Switch places. The tempo's about to get real fast.<</say>>
<<cont "eastsex" "dance06">>
<<case "dance06">>
<<narrate>>She lowers herself on to your dick, her glorious breasts bouncing in your face as your tongue reaches for her nipples.<</narrate>>
<<vid "east/coffee/dance06.mp4">>
<<narrate>>You thrust upwards pistoning into her with frightful speed.<</narrate>>
<<say "coffee">>Ohhhh yeeeeeah.<</say>>
<<narrate>>Again you find yourself unable to remain quiet, your voice mixing with her moans as the two of you race to your finish.<</narrate>>
<<say "coffee">>That is so fucking good!<</say>>
<<say "mc">>I'm there... I'm there!<</say>>
<<narrate>>She quickly dismounts, kneeling before you, her tongue held out for you while she eagerly awaits your load.<</narrate>>
<<vid "east/coffee/dance07.mp4">>
<<say "mc">>Oh god fucking shit yes!<</say>>
<<say "coffee">>Now that's the kind of dance I really enjoy.<</say>>
<<narrate>>The two of you sit recovering for a few minutes before she gets up.<</narrate>>
<<say "coffee">>Where the hell is my other shoe? I can only find one of them.<</say>>
<<narrate>>As you put your clothes back on, you take a cursory glance around, but can't spot it anywhere.<</narrate>>
<<say "mc">>Let's look over—<</say>>
<<say "coffee">>Don't worry about it. You get us a drink, I'll be out in a minute.<</say>>
<<cont "eastsex" "dancedone">>
<<case "dancedone">>
<<left2 "east/genvoy02.jpg">>
<<if checkUnlocks('movie', 'eval', 'pro3') == false>>
<<say "genvoy">><<if $tempvar2 == "ne">>I<<else>>My employer<</if>> was very pleased<<if $tempvar2 == "ne">>, you had me<<else>> and I was<</if>> absolutely soaking. I hope we meet again very soon.<</say>>
<<narrate>>She slips a card in your pocket. You take a look after she's gone, it's a platinum VIP membership card for <i>Glitter Box</i> with your name scrawled on in marker.<</narrate>>
<<think "mc">>Well, might be fun<<if $tempvar2 != "ne">>, but probably not going to lead to any... hold on<</if>>.<</think>>
<<if $tempvar2 != "ne">>
<<narrate>>You notice the name printed on the card and take a second look. <i>By special invite of $gerald.name.</i><</narrate>>
<<think "mc">>Holy shit. $gerald.name was watching me? This might be a chance to get a meeting with him. I know he can't be convinced, but who knows how he'll incriminate himself.<</think>>
<</if>>
<<else>>
<<say "genvoy">>Another great show, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>. You do know how to entertain, huh?<</say>>
<<say "mc">>Perhaps you and I could make some entertainment of our own?<</say>>
<<say "genvoy">>Ha! You can keep trying, but I don't perform with men. It looks like your friend is returning. I'll see you soon.<</say>>
<<narrate>>She waves at you as she departs.<</narrate>>
<<think "mc">>Fuck that woman is hot.<<if $tempvar2 != "ne">> I'm almost jealous of $gerald.name!<</if>><</think>>
<</if>>
<<say "coffee">>Whoa. Why was she talking to you?<</say>>
<<say "mc">>Invited me out.<</say>>
<<say "coffee">>Can't say I'm NOT a bit jealous, you're out with me and picking up other women.<</say>>
<<say "mc">>I— no. It wasn't like that.<</say>>
<<say "coffee">>I'm just messing with you! You pick up as many women as you like, this city has a male shortage, <<if $tempvar2 == "ne">>and you've got quite the reputation, <</if>>it's not for me to withhold your manhood from the others. I was just surprised to see her.<</say>>
<<if $genvoy.events.step == undefined>>
<<say "mc">><<if $tempvar2 == "ne">>You know her?<<else>>Someone important?<</if>><</say>>
<<say "coffee">>That was <<if $tempvar2 == "ne">>$genvoy.name, formerly Gerald's assistant.<<else>><<textbox "$genvoy.name" Patricia>>. $gerald.name's assistant!<</if>><</say>>
<<if $tempvar2 != "ne">>
<<say "mc">>Oh wow.<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "coffee">>Sometimes I wonder if you're from a different world entirely!<</say>>
<<else>>
<<say "mc">>Does she still work for the cabinet?<</say>>
<<say "coffee">>I don't think so. She was gifted a lot of Gerald's business assets, though. I actually have a friend who works at her company. You'll know her if you ever indulge in that kind of thing. They call her the Blowjob Queen.<</say>>
<<say "mc">>Sounds like someone I'd like to meet!<</say>>
<<event "coffee" "pro">>
<</if>>
<<narrate>>She chuckles.<</narrate>>
<<else>>
<<say "mc">>Yeah, she and I have an... arrangement.<</say>>
<<say "coffee">>I'm impressed, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>. $genvoy.name? Wow.<</say>>
<</if>>
<<meet "genvoy">>
<<unlock "coffee" "dance">>
<<if $tempvar2 == "ne">>
<<event "coffee" "step" 3>>
<<event "genvoy" "glitter" 1>>
<<cont "nestuff" "" 2>>
<<else>>
<<button "Continue" easthub>>
<<set $east.coffee = "danced">>
<<if $east.pro3 != 2>>
<<set $east.genvoy = 1>>
<</if>>
<<time 3>>
<</button>>
<</if>>
<<case "coffeethree">>
<<think "mc">>Huh, a bungalow? Not what I expected.<</think>>
<<narrate>>As you're about to knock on the door, $coffee.name opens it.<</narrate>>
<<say "coffee">>I saw you out the window. Come in. Come in.<</say>>
<<left2 "east/coffee02.jpg">>
<<say "coffee">>So you spoke to $pro1.name?<</say>>
<<if $tempvar2 == "ne">>
<<say "mc">>Oh yes... we had a very good... chat.<</say>>
<<say "coffee">>Haha, I bet you did. Did she live up the title?<</say>>
<<say "mc">>And then some.<</say>>
<<say "coffee">>I bet. You free to stay for a while?<</say>>
<<say "mc">>Of course. Something you need?<</say>>
<<else>>
<<say "mc">>I did. She seems pretty content to be honest.<</say>>
<<say "coffee">>Then why has she been so aloof?<</say>>
<<say "mc">>She said she'd come see you soon. I think there's a detail of her new job she thinks you'll have issue with, but it's not my place to say.<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "coffee">>Fine, fine. But seriously, thank you for checking into it.<</say>>
<<say "mc">>My pleasure.<</say>>
<<think "mc">>And damn, it really was!<</think>>
<<say "coffee">>You got anywhere to be?<</say>>
<<say "mc">>No, why?<</say>>
<</if>>
<<left2 "east/coffee03.jpg">>
<<narrate>>She drops her trousers, revealing her firm round ass.<</narrate>>
<<say "coffee">>Then how about a little fun?<</say>>
<<narrate>>She curls her finger at you, gesturing you closer.<</narrate>>
<<say "coffee" "" "(Whispering)" "whisper">>Because right now I'm horny as fuck.<</say>>
<<narrate>>She giggles then runs towards the bedroom.<</narrate>>
<<say "coffee">>What are you waiting for?<</say>>
<<say "mc">>Just admiring the view.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "coffee">>Come get a closer look.<</say>>
<<narrate>>She continues into the room, flopping on the bed.<</narrate>>
<<think "mc">>I love this fucking city!<</think>>
<<button "Continue" eastsex>>
<<temp "coffeethree01">>
<</button>>
<<case "coffeethree01">>
<<narrate>>The two of you embrace, running your hands over each other's bodies and removing each part of clothing when there's a knock at the door.<</narrate>>
<<say "coffee">>Ignore it. It won't be anybody important, and right now this is all I care about!<</say>>
<<narrate>>Unbeknownst to you as you continue to peel each others clothing off, there's a watcher in the window.<</narrate>>
<<center "east/pro102.jpg">>
<<think "pro1">>Oh fuck yeah, $coffee.name, you're gonna love his tasty goddamn dick!<</think>>
<<narrate>>You fall backward on to the bed together, still intertwined in each other's arms. $pro1.name takes the opportunity to sneak in through the window.<</narrate>>
<<center "east/coffee/three02.jpg">>
<<narrate>>Your fingers creep inside $coffee.name's pussy, her whole body quaking while staring up into your eyes lustfully.<</narrate>>
<<narrate>>$pro1.name watches on from the mirror, pleasuring herself to your actions.<</narrate>>
<<vid "east/coffee/three01.mp4">>
<<narrate>>$coffee.name, crawls over you, lowering her pussy on to your erection. As she whips her hair backwards, she lets out a yelp.<</narrate>>
<<say "coffee">>What the fuck?!<</say>>
<<center "east/coffee/three01.jpg">>
<<say "pro1">>Yeah, you didn't answer the door so I came to the window, and hell did I get a show. Tasty cock, huh? Room for one more?<</say>>
<<say "mc">>I've got a spare seat for you up here.<</say>>
<<narrate>>$coffee.name laughs.<</narrate>>
<<say "coffee">>Get on, $pro1.name, let's show him our... team spirit.<</say>>
<<cont "eastsex" "cofthree01">>
<<case "cofthree01">>
<<narrate>>$pro1.name sheds the rest of her clothes and positions herself over your face. Her glistening pussy ripe for the taking.<</narrate>>
<<vid "east/coffee/three01-2.mp4">>
<<narrate>>Almost in sync, the two of them bounce their hips, $coffee.name furiously pumping your cock while your tongue explores $pro1.name's delicious vulva.<</narrate>>
<<say "pro1">>Ohhh~ fuuck!<</say>>
<<narrate>>$pro1.name falls to your side and $coffee.name quickly jumps on her, eager to taste her pussy for herself. Her ass in the air, you get off the bed, your next move clear.<</narrate>>
<<cont "eastsex" "cofthree02">>
<<case "cofthree02">>
<<vid "east/coffee/three02.mp4">>
<<narrate>>She jiggles her hips against you while tucking into $pro1.name's snatch. Her tongue struggling to remain steady as you pound her from behind.<</narrate>>
<<say "coffee">>Mhmmm.<</say>>
<<narrate>>Your bodies draped in sweat, you grab $pro1.name by the ankles, dragging her under $coffee.name's body until the tip of your penis rests on her vulva.<</narrate>>
<<say "mc">>I wanted to do this since the moment my cock touched your lips.<</say>>
<<cont "eastsex" "cofthree03">>
<<case "cofthree03">>
<<vid "east/coffee/three03.mp4">>
<<narrate>>You plunge inside her and pummel away. She holds on to $coffee.name's ass as she tries to contain her pleasure.<</narrate>>
<<say "pro1">>Oh my god yes!<</say>>
<<cont "eastsex" "cofthree04">>
<<case "cofthree04">>
<<vid "east/coffee/three04.mp4">>
<<narrate>>You keep pounding, hungry for satisfaction. Her moans grow increasingly intense.<</narrate>>
<<say "pro1">>Ohhh~ fuuuck.<</say>>
<<say "mc">>Time to repay the favor.<</say>>
<<narrate>>As you slow your assault, she looks at you bemused until $coffee.name presents her pussy.<</narrate>>
<<cont "eastsex" "cofthree05">>
<<case "cofthree05">>
<<vid "east/coffee/three05.mp4">>
<<narrate>>You speed back up, knowing your end is near, you let out a guttural moan.<</narrate>>
<<say "coffee">>Give it to us. Let us share your dirty seed!<</say>>
<<narrate>>Her words are the final spark. The three of you scramble into position as you jerk yourself over the final line, their lustful eyes gazing up at you.<</narrate>>
<<vid "east/coffee/three06.mp4">>
<<unlock "pro1" "three">>
<<unlock "coffee" "three">>
<<say "mc">>That was fucking incredible.<</say>>
<<say "pro1">>We really do make a great team, huh?<</say>>
<<if $tempvar2 == "ne">>
<<event "coffee" "step" 6>>
<<cont "neweden" "" 2>>
<<else>>
<<button "Continue" east-coffee>>
<<set $east.coffee = "done">>
<</button>>
<</if>>
<<case "pro1">>
<<meet "pro1">>
<<say "pro1">>Hello there handsome.<</say>>
<<say "mc">>And hello gorgeous.<</say>>
<<say "pro1">>Looking for some stress relief? I've got exactly what you need.<</say>>
<<narrate>>She gestures you to the chair and promptly undoes your belt.<</narrate>>
<<say "pro1">>Holy shit.<</say>>
<<narrate>>Her eyes widen when your cock flops against her face.<</narrate>>
<<say "pro1">>Now that's a fine cock.<</say>>
<<cont "eastsex" "pro101">>
<<case "pro101">>
<<narrate>>She grasps the base of your shaft while taking the full length into her mouth.<</narrate>>
<<vid "east/pro1/bj01.mp4">>
<<narrate>>She starts slow, working your full shaft while tickling your balls. Occasionally her gaze meets yours with a sensual stare.<</narrate>>
<<say "mc">>Holy shit that's so fucking good.<</say>>
<<narrate>>She hums in delight while continuing to service your member. The vibrations from her throat only making the situation more pleasant.<</narrate>>
<<cont "eastsex" "pro102">>
<<case "pro102">>
<<narrate>>As you groan in delight she looks up at you mischievously while stroking you with both hands.<</narrate>>
<<vid "east/pro1/bj02.mp4">>
<<narrate>>She gives you a smile before taking you back inside her mouth.<</narrate>>
<<say "mc">>Shit that's good.<</say>>
<<narrate>>She picks up the pace and starts taking more of your length into her throat. You feel your climax building, but before you can warn her she yet again increases the ferocity of her onslaught and you unleash your seed into her mouth with a groan.<</narrate>>
<<vid "east/pro1/bj03.mp4">>
<<narrate>>She holds your cock tight as you burst, her lips not letting a single drop free. As your climax begins to fade she looks up at you seductively and smears your cum along the pulsing shaft.<</narrate>>
<<unlock "pro1" "bj">>
<<cont "eastsex" "pro103">>
<<case "pro103">>
<<say "mc">>Fuck, you really are the blowjob queen.<</say>>
<<say "pro1">>That's what they say.<</say>>
<<if $coffee.events.step == 3 || ($tempvar2 != "ne" && $location != "brothel")>>
<<say "mc">>May I ask something?<</say>>
<<say "pro1">>No, I don't fuck.<</say>>
<<say "mc">>No, no. Do you happen to know someone called $coffee.name?<</say>>
<<narrate>>She pauses for a moment.<</narrate>>
<<say "pro1">>Why?<</say>>
<</if>>
<<if $tempvar2 == "ne" || $location == "brothel">>
<<if $coffee.events.step == 3>>
<<say "mc">>She mentioned she had a friend working here...<</say>>
<<say "pro1">>Wait, are you $name? Shit, the fucking patron just exploded in my mouth?! She doesn't stop talking about you.<</say>>
<<say "mc">>All good things, I hope.<</say>>
<<say "pro1">>A lady never tells! But I can say I've now personally verified some of it.<</say>>
<<event "coffee" "step" 4>>
<</if>>
<<narrate>>She hungrily stares at your cock.<</narrate>>
<<say "pro1">>I hope we do this again soon. You've got a tasty fucking cock.<</say>>
<<say "mc">>Sounds good to me!<</say>>
<<if $location == "brothel">>
<<cont "mngbrothel" "" 1>>
<<else>>
<<cont "east-aegis" "ne" 1>>
<</if>>
<<else>>
<<say "mc">>She's worried about you. Says you've barely spoken since you started your new job.<</say>>
<<say "pro1">>Shit, did you tell her where I work?<</say>>
<<say "mc">>No, I pretty much only just found that out.<</say>>
<<say "pro1">>Please don't. I don't think she'd understand.<</say>>
<<say "mc">>Maybe you should talk to her, though? She seems a little upset to have lost touch with her friend. I don't know her that well if I'm honest, but given what little I do know of her, and this city as a whole, I don't think she'd have an issue with you doing this.<</say>>
<<say "pro1">>It's not that. It's $gerald.name.<</say>>
<<say "mc">>What do you mean?<</say>>
<<say "pro1">>Shit, I said too much. Let's just say she does not appreciate his style of leadership.<</say>>
<<say "mc">>But what does that have to do with your job here?<</say>>
<<narrate>>She fidgets uncomfortably.<</narrate>>
<<say "pro1">>I can't tell you that. But tell $coffee.name I'll meet up with her soon. Anyhow, I gotta go.<</say>>
<<think "mc">>Hmm, something's off there. I don't want to rat her friend out, but I wonder if $coffee.name can tell me anything more about her distaste for $gerald.name.<<if $girlsmet.includes('genvoy')>> She didn't seem to have any issue with $genvoy.name.<</if>><</think>>
<<button "Continue" easthub>>
<<set $east.coffee = "pro1">>
<<set $east.pro1 = 2>>
<<set $intel.gerald.pushUnique('Possibly connected to the prostitution service at <i>Aegis Protectorate</i>.')>>
<<time 3>>
<</button>>
<</if>>
<<case "pro2">>
<<meet "pro2">>
<<if $tempvar2 != "ne" && $location != "brothel">>
<<narrate>>You head down the corridor finding two doors at the end. One labeled office A and one labeled supplies.<</narrate>>
<<think "mc">>Office A it is!<</think>>
<<narrate>>You open the door the woman before stands before you.<</narrate>>
<</if>>
<<left2 "east/pro201.jpg">>
<<say "pro2">>Oh hi, Daddy. <<if $tempvar2 != "ne" && $location != "brothel">>I was hoping it was gonna be you when I saw you in the hall.<</if>> Come, sit, let your dirty slut take care of you.<</say>>
<<think "mc">>Holy shit.<</think>>
<<say "mc">>Well I certainly came into the right room.<</say>>
<<say "pro2">>Oh, you've not cum anywhere yet. But don't worry, I'll take care of that in no time.<</say>>
<<narrate>>She gestures to the chair.<</narrate>>
<<say "pro2">>Sit, Daddy. This little slut's gonna take real good care of you.<</say>>
<<block "east/pro202.jpg">>
<<narrate>>She pulls down her top and gives you a seductive wink.<</narrate>>
<<think "mc">>God damn hell yes!<</think>>
<<narrate>>You take a seat, and she's quickly on her knees pawing at your trousers.<</narrate>>
<<say "mc">>Oh you dirty girl.<</say>>
<<narrate>>She looks up at you and blow you a kiss.<</narrate>>
<<say "mc">>Show me exactly what that mouth does.<</say>>
<<cont "eastsex" "pro201">>
<</block>>
<<case "pro201">>
<<vid "east/pro201.mp4">>
<<narrate>>You struggle to contain yourself as she expertly services your cock.<</narrate>>
<<say "mc">>Holy fucking shit that's good.<</say>>
<<if $tempvar2 != "ne" && $location != "brothel">>
<<narrate>>The door swings open.<</narrate>>
<<say "dave">>What the hell is going on in here?<</say>>
<<narrate>>She keeps sucking.<</narrate>>
<<say "mc">>Oh, fuck, god yes!<</say>>
<<say "dave">><<if $replay == true>>$pro2.name<<else>><<textbox "$pro2.name" Winona>><</if>>, can you give us the room for a moment?<</say>>
<<narrate>>She gets off her knees, sighs, pulls her top up and heads out.<</narrate>>
<<cont "eastsex" "pro201-pause">>
<<else>>
<<cont "eastsex" "pro202">>
<</if>>
<<case "pro201-pause">>
<<say "mc">>Shit, Dave, it was just getting good.<</say>>
<<say "dave">>Sir, you shouldn't be in here and you should not be engaging with the uhhh... staff... like that.<</say>>
<<say "mc">>Oh, come on Dave. What's the harm? Look at her she's fucking gorgeous and she's happy to get fucking dirty. Can't you just give us 30minutes and pretend you never saw us?<</say>>
<<say "dave">>Sir, that is highly unprofessional. You want me to turn a blind eye to this?<</say>>
<<think "mc">>Fuck it. If there is a prostitution racket or whatever going on here, this is gonna be my best chance to get in on the action.<</think>>
<<say "mc">>Dave. I'm going to level with you. I want that woman. I want to fuck her over this desk, and I want her to scream my name as I'm balls deep inside her. I get she's your employee or whatever, and feel free to send her to guard my place, but right now I want to finish what I started. How much is it gonna cost me for you to leave us alone for another 30 minutes?<</say>>
<<narrate>>He pauses for a moment, deep in thought.<</narrate>>
<<say "dave">>400 credits.<</say>>
<<say "mc">>Perfect, can you send her back in?<</say>>
<<say "dave">>I'll be back in 30 minutes, sir.<</say>>
<<say "mc">>Now, where were? Oh yes, my dirty little freak was about to get railed over the desk, but she appears to have far too many clothes on.<</say>>
<<block "east/pro203.jpg">>
<<narrate>>She smirks as she does a little striptease for you.<</narrate>>
<<say "pro2">>Anything for you, Daddy.<</say>>
<<say "mc">>Then I want my filthy bitch to lay on that desk and spread her slutty legs for me.<</say>>
<<cont "eastsex" "pro202">>
<</block>>
<<case "pro202">>
<<vid "east/pro202.mp4">>
<<narrate>>She lays back on the table as you slide your dick in and out of her. Her moans morphing into one long big groan of pleasure.<</narrate>>
<<say "pro2">>Yes, Daddy. Destroy your little slut's pussy. Use me!<</say>>
<<narrate>>She bites her lip as you continue to plow her, her words only adding to the excitement of the situation.<</narrate>>
<<say "mc">>I want you ride Daddy's cock!<</say>>
<<cont "eastsex" "pro203">>
<<case "pro203">>
<<narrate>>You lay back and she mounts your cock, the desire in her eyes almost palpable.<</narrate>>
<<vid "east/pro203.mp4">>
<<narrate>>She starts slow, bouncing on your dick gently.<</narrate>>
<<say "mc">>Harder slut. Show me how much you want it.<</say>>
<<narrate>>Her pace quickens and yet again her moans join into a single drone of lust.<</narrate>>
<<say "pro2">>Yes, Daddy! YES!<</say>>
<<say "mc">>Oh fuck. Yes, I'm cumming.<</say>>
<<narrate>>She dexterously maneuvers to your side, looking up at you with pleading eyes.<</narrate>>
<<say "mc">>Finish me, slut.<</say>>
<<narrate>>You stand over her and she grabs your cock.<</narrate>>
<<vid "east/pro204.mp4">>
<<say "mc">>Oh fuck yes! YES! FUCK!<</say>>
<<narrate>>You deliver your jizz into her mouth as she continues looking up at you gleefully. Once she's confident she's milked you dry, she makes a dramatic noise as she swallows your cum.<</narrate>>
<<button "Continue" eastsex>>
<<unlock "pro2" "pro2">>
<<temp "pro204">>
<</button>>
<<case "pro204">>
<<say "pro2">>Daddy, you let me know any time, day or night, when you need this dirty little whore to come polish that big fat fucking cock.<</say>>
<<narrate>>She gets up, collects her things and leaves. You sit back on the chair, put your arms behind your head and grin.<</narrate>>
<<think "mc">>Fuck this place is awesome.<</think>>
<<if $location == "brothel">>
<<cont "mngbrothel" "" 1>>
<<elseif $tempvar2 == "ne">>
<<cont "east-aegis" "ne" 1>>
<<else>>
<<narrate>>Dave returns a moment later.<</narrate>>
<<say "mc">>Dave, thanks for that. Fuck, it was wild.<</say>>
<<say "dave">>You certainly seemed to enjoy yourself, sir. As did $pro2.name.<</say>>
<<say "mc">>If you have any more guards like her, do send them my way. Holy fuck, I'd never leave the house.<</say>>
<<say "dave">>She's not quite a guard sir. But, if you'd like to return here at some point and I, shall we say, turn a blind eye while you spend some quality time with my staff, well, I think we can accommodate that.<</say>>
<<say "mc">>Now that sounds great, Dave. This company is fucking awesome, if you don't mind me saying.<</say>>
<<say "dave">>We do ask for your discretion. We normally only offer this service to our more established clientele, but you clearly have the means and the young lady spoke very highly of you as she was leaving.<</say>>
<<say "mc">>Fantastic. You and I are going to see a lot of each other I suspect, Dave!<</say>>
<<think "mc">>Well, seems the prostitution is most definitely a thing. But she seemed well into it otherwise I wouldn't have partaken. Might just be $gsec.name's imagination on that one. But I've found the best way to investigate it, at least.<</think>>
<<narrate>>As Dave escorts you out you notice $gsec.name in the hall heading toward her office. She gives you a quizzical look and taps her watch. As you pass her she slips a piece of paper in your hand.<</narrate>>
<<narrate>>Once you're clear of the building, you read the paper. It's her address with "18:00+" circled beside it.<</narrate>>
<<think "mc">>I guess she wants to meet up.<</think>>
<<button "Continue" easthub>>
<<set $intel.city.pushUnique('<i>Aegis Protectorate</i> is also running a prostitution ring for the rich and powerful.')>>
<<set $east.dave = 1>>
<<set $east.gsec = 2>>
<<time 3>>
<</button>>
<</if>>
<<case "pro3">>
<<meet "pro3">>
<<say "dave">>Great. Follow me. Just one rule. Sleeve up whenever you're fucking her. I think the other dude is a bit overly cautious, but I'm sure you'll have a great time regardless.<</say>>
<<narrate>>He hands you a pack of johnnies.<</narrate>>
<<say "pro3">>Oh my, is this my lucky day? Two big fat cocks to fill my filthy holes.<</say>>
<<say "mc">>How about we start by filling that pretty little mouth of yours?<</say>>
<<narrate>>The other man grins as he watches her undo your trousers.<</narrate>>
<<vid "east/pro301.mp4">>
<<cont "eastsex" "pro302">>
<<case "pro302">>
<<say "side" "Man">>Don't forget about me, honey.<</say>>
<<vid "east/pro302.mp4">>
<<narrate>>She strokes his cock while continuing to suck on yours, looking you squarely in the eyes.<</narrate>>
<<think "mc">>Well clearly we know which one she prefers.<</think>>
<<say "side" "Man">>Why don't you wrap those lovely lips around my cock?<</say>>
<<narrate>>You can see the look of annoyance from her.<</narrate>>
<<say "mc">>Great idea.<</say>>
<<narrate>>You grab her by the hips and lift her on to the desk.<</narrate>>
<<say "mc">>Get sucking while I get fucking.<</say>>
<<cont "eastsex" "pro303">>
<<case "pro303">>
<<vid "east/pro303.mp4">>
<<narrate>>She struggles to properly service the other man as your pounding brings her to the edge of orgasm.<</narrate>>
<<say "mc">>Let's trade places. Bend over slut, he's gonna ram you from behind while you service my cock.<</say>>
<<cont "eastsex" "pro304">>
<<case "pro304">>
<<narrate>>She follows your instruction obediently, but she looks longingly at your cock as she moves.<</narrate>>
<<vid "east/pro304.mp4">>
<<say "pro3" "" "(Whispering in your ear)" "whisper">>I want you to finish inside me. Your big, thick, dirty cocks feels so much better in my tiny little slit than his.<</say>>
<<narrate>>She spins around on the chair and waggles her plump ass in your direction.<</narrate>>
<<cont "eastsex" "pro305">>
<<case "pro305">>
<<vid "east/pro305.mp4">>
<<narrate>>You pound away at her while she sucks the other dude off.<</narrate>>
<<say "side" "Man">>Oh, fucking yes! Take it down your throat slut.<</say>>
<<narrate>>The other man lets loose down her throat then staggers backwards resting on the cabinet while you pick up the pace.<</narrate>>
<<say "mc">>Scream my name, bitch. Scream it as I fuck your tight little pussy.<</say>>
<<say "pro3">>Yes, <<if $tempvar2 == "ne" || $location == "brothel">>$name<<else>>$alias<</if>>. YES! Pound me!<</say>>
<<narrate>>As she screams your name, you unleash your seed, filling the condom up while she quivers with excitement, falling forward off the chair.<</narrate>>
<<say "pro3">>Holy fuck boys. That was fun.<</say>>
<<narrate>>The other dude tuts, collects his things and leaves without saying another word.<</narrate>>
<<say "pro3">>Clearly he saw I had my favorite. Your cock was the only one I truly desired. I hope next time it's just you and me.<</say>>
<<unlock "pro3" "pro3">>
<<if $location == "brothel">>
<<cont "mngbrothel" "" 1>>
<<elseif $tempvar2 == "ne">>
<<cont "east-aegis" "ne" 1>>
<<else>>
<<cont "eastsex" "pro306">>
<</if>>
<<case "pro306">>
<<say "mc">>May I ask you a question?<</say>>
<<say "pro3">>Anything for you.<</say>>
<<block "east/pro301.jpg">>
<<narrate>>You can't help but admire her ass as she's getting dressed.<</narrate>>
<<say "mc">>How'd you get into this line of work?<</say>>
<<narrate>>She looks shocked by the question.<</narrate>>
<<say "pro3">>What kind of question is that? How did you get into yours?<</say>>
<<say "mc">>Oh, sorry, I meant not offense. I'm grateful you decided to do this. Extremely, believe me. I'm just curious how you recruit for this kind of thing.<</say>>
<<narrate>>She ponders for a moment then shrugs.<</narrate>>
<</block>>
<<say "pro3">>I got into some debt, and someone offered me a way out. I love sex so seemed like the perfect opportunity to me. In fact, I've been out of debt a long time now, but well, I fucking love this job. I get to bang dudes as much as I want, and get paid for it? What's not to like. Not like I'm forced to do anything either, I can refuse any client I don't feel comfortable with, and doing it here means I know I'm always safe.<</say>>
<<say "mc">>That's great to hear. Hopefully I'll see you again very soon.<</say>>
<<say "pro3">>I do hope you become a regular. Your cock is fucking tasty.<</say>>
<<think "mc">>The initial recruitment sounds a bit shifty, but I can't argue with the logic thereafter.<</think>>
<<button "Continue" easthub>>
<<set $east.pro3 = 1>>
<<if $replay == false>>
<<set $intel.city.pushUnique('<i>Aegis Protectorate</i> prostitutes are recruited from people in debt.')>>
<</if>>
<<time 3>>
<</button>>
<<case "pro3a">>
<<narrate>>Dave drives you to the location, a big swanky house.<</narrate>>
<<say "mc">>Wow, look at this place!<</say>>
<<say "dave">>How the other half live, eh? Just head up those stairs on the side of the building and she'll be waiting. Have fun!<</say>>
<<narrate>>You say farewell to Dave and head up the stairs as instructed.<</narrate>>
<<left2 "/east/pro3/meet01.jpg">>
<<say "pro3">>You came!<</say>>
<<say "mc">>Not yet.<</say>>
<<narrate>>You grin at her.<</narrate>>
<<say "pro3">>Ha! We'd better fix that then.<</say>>
<<narrate>>She motions for you to sit.<</narrate>>
<<say "pro3">>When I told you that you were my favorite, that was no lie. I've been looking forward to this cock ever since.<</say>>
<<narrate>>Impatiently, she's off her chair and on her knees before you within seconds of you sitting down.<</narrate>>
<<vid "/east/pro3/eval01.mp4">>
<<narrate>>She runs her tongue up your shaft seductively.<</narrate>>
<<say "pro3">>It's every bit as beautiful as I remember.<</say>>
<<think "mc">>Well that went from zero to sixty real fast, not that I mind!<</think>>
<<narrate>>She licks the tip of your cock then raises her head, looking at you with hungry eyes.<</narrate>>
<<if $location == "brothel">>
<<say mc>>Don't we need to wait for $genvoy.name?<</say>>
<<say pro3>>She's already overseeing, don't worry.<</say>>
<</if>>
<<cont "eastsex" "pro3a02">>
<<case "pro3a02">>
<<narrate>>Her hands swiftly work your shaft. Your cock twitches with delight as her soft hands expertly deliver pleasure.<</narrate>>
<<vid "/east/pro3/eval02.mp4">>
<<say "mc">>God, that's good.<</say>>
<<narrate>>She licks her lips and grins at you.<</narrate>>
<<say "pro3">>I'm sure you mean goddess. But only good? Let me show you great.<</say>>
<<cont "eastsex" "pro3a02-2">>
<<case "pro3a02-2">>
<<narrate>>She lowers her head back down to your cock, gently blowing on your tip as she slowly descends closer.<</narrate>>
<<narrate>>She smirks one last time before happily taking your bellend into her mouth.<</narrate>>
<<vid "/east/pro3/eval02-2.mp4">>
<<narrate>>Expertly, she brings pleasure to your head. Her tongue and lips all working perfectly in sync to maximize your joy.<</narrate>>
<<say "mc">>Holy shit... goddess, that's great!<</say>>
<<narrate>>She looks up at you, her mouth still full of your cock. As she does so, she grips your glans with her tongue. You're barely able to control your hips as you squirm under the strange feeling.<</narrate>>
<<say "pro3">>He learns.<</say>>
<<narrate>>She steps back and gleefully removes several garments, revealing more of her beautiful figure.<</narrate>>
<<say "pro3">>Claim your prize.<</say>>
<<cont "eastsex" "pro3a03">>
<<case "pro3a03">>
<<narrate>>She lowers herself onto the chair, each move carefully curated to push your lust further and further over the edge.<</narrate>>
<<narrate>>Without any hesitation you claim your so-called prize. She struggles to contain her moans as you slide inside of her.<</narrate>>
<<vid "/east/pro3/eval03.mp4">>
<<narrate>>She looks up at you as she starts to thrust back against you, her eyes full of desire, you can't help but feel she's cast some sort of spell over you.<</narrate>>
<<cont "eastsex" "pro3a04">>
<<case "pro3a04">>
<<narrate>>She gasps and moans with each movement, each thrust delivering you both closer and closer to climax.<</narrate>>
<<vid "/east/pro3/eval04.mp4">>
<<narrate>>Both of you struggling even with words, you feel the sweat dripping from your brow. The whole scenario, her whimpering moans and expert riding is all becoming too much to contain.<</narrate>>
<<cont "eastsex" "pro3a05">>
<<case "pro3a05">>
<<narrate>>As if reading your thoughts, a dark and greedy smile creeps across her face before she speeds up, bouncing up and down on your dick as she races for the finish line.<</narrate>>
<<vid "/east/pro3/eval05.mp4">>
<<narrate>>She throws her head back as her moans become wilder and wilder. Her body shudders and you feel her vagina tighten its grip on you. She lays still for a moment, your cock still inside her, while she gasps for air.<</narrate>>
<<say "pro3">>Holy sh— You beat me, huh?<</say>>
<<narrate>>You feel yourself close, but she pushes herself off of you, content in her own climax. Just as you're about to complain, she lowers her head back to your cock and starts sucking away, desperate for you to meet your end too.<</narrate>>
<<vid "/east/pro3/eval06.mp4">>
<<say "mc">>Holy fucking shit yes, $pro3.name. Fucking hell!<</say>>
<<narrate>>You unleash down her throat as she continues to lap at your cock. Your abs twitching in time with each eruption.<</narrate>>
<<narrate>>You feel a calm come over you while she cleans your dick off.<</narrate>>
<<think "mc">>This setting, this place, this woman... a guy could get used to this. I should definitely think about something similar when I'm back home.<</think>>
<<narrate>>While you're stuck in thought, you don't notice $pro3.name's massive smile. Her genuine joy from the deed just done.<</narrate>>
<<say "pro3">>I appreciate you accepting my selfish request today. With your help I'm pretty sure I've just got my promotion! Who knows, maybe we'll perform together soon?<</say>>
<<say "mc">>Haha, any time!<</say>>
<<unlock "pro3" "eval">>
<<set $east.pro3 = 2>>
<<cont "eastsex" "pro3a06">>
<<case "pro3a06">>
<<if $location == "brothel">>
<<narrate>>As you get up to leave, one of the doors open and $genvoy.name beckons you over.<</narrate>>
<<else>>
<<narrate>>As you get up to leave, one of the doors open and an attractive redhead wearing next to nothing stares over at you.<</narrate>>
<</if>>
<<left2 "east/genvoy/watch01.jpg">>
<<say "genvoy">>Impressive performance. Both of you.<</say>>
<<if $location == "brothel">>
<<say "mc">>Always happy to perform for you, $genvoy.name.<</say>>
<<else>>
<<say "mc">>You're the owner?!<</say>>
<</if>>
<<narrate>>She laughs.<</narrate>>
<<if $tempvar2 == "ne">>
<<say "genvoy">>Thanks to you... yes. If you're ever looking for something a little more... entertaining. Do come see me at the <i>Glitter Box</i>. Given how wet I am right now, you're sure to be a big success.<</say>>
<<elseif $location == "brothel">>
<<say genvoy>>And you certainly didn't disappoint..<</say>>
<<else>>
<<say "genvoy">>No, that would be my employer. But we enjoyed your show and I am soaking wet. Here, take this. I look forward to seeing you soon.<</say>>
<</if>>
<<narrate>>She leans in seductively, you almost think she's going in for a kiss until she stops a few centimeters from your face.
<<if checkUnlocks('movie', 'dance', 'coffee') == false>>She puts a card in your pocket,<<else>>She then boops your nose,<</if>> blows you a kiss, then closes the door behind her.<</narrate>>
<<say "pro3">>Wow, I don't think that's ever happened before.<</say>>
<<if ($tempvar2 == "ne" || $location == "brothel") && $girlsmet.includes('genvoy')>>
<<if checkUnlocks('movie', 'dance', 'coffee') == true>>
<<say "mc">>It's not the first time she's enjoyed one of my... performances. It's likely the reason she accepted your request of a third-party.<</say>>
<<else>>
<<say "mc">>What exactly <i>did</i> just happen?<</say>>
<<say "pro3">>She just gave you the golden goose of gifts.<</say>>
<<say "mc">>Huh?<</say>>
<<narrate>>You pull out the card from your pocket. It's a platinum VIP membership card for <i>Glitter Box</i> with your name scrawled on in marker. You notice the card has <i>By special invite of $genvoy.name</i> printed on it.<</narrate>>
<<think "mc">>This could be fun...<</think>>
<</if>>
<<event "genvoy" "glitter" 1>>
<<cont "neweden" "ne" 1>>
<<else>>
<<meet "genvoy">>
<<say "mc">>What exactly <i>did</i> just happen?<</say>>
<<say "pro3">>That was <<textbox "$genvoy.name" Patricia>>. <<if $tempvar2 == "ne" || $location == "brothel">>formerly <</if>>$gerald.name's assistant, and she just gave you the golden goose of gifts.<</say>>
<<think "mc">>The fuck?<</think>>
<<narrate>>You pull out the card from your pocket. It's a platinum VIP membership card for <i>Glitter Box</i> with your name scrawled on in marker. You notice the card has <i>By special invite <<if $tempvar2 != "ne">>of Gerald<</if>></i> printed on it.<</narrate>>
<<if $tempvar2 == "ne" || $location == "brothel">>
<<think "mc">>This could be fun...<</think>>
<<event "genvoy" "glitter" 1>>
<<if $location == "brothel">>
<<cont "mngbrothel" "ne" 1>>
<<else>>
<<cont "nestuff" "ne" 1>>
<</if>>
<<else>>
<<think "mc">>Well, $pro3.name just told me who the employer was; guessing he's the owner of this house too. It's worth checking out, who knows what it may lead to.<</think>>
<<set $east.genvoy = 1>>
<<cont "easthub" "" 3>>
<</if>>
<</if>>
<<case "pro4">>
<<meet "pro4">>
<<left2 "east/pro401.jpg">>
<<say "pro4">>Well ain't you a sweet dollop of sunshine. I'm looking forward to eating you right up!<</say>>
<<say "mc">>No time like the present.<</say>>
<<narrate>>You drop your trousers revealing your hard cock. She stares in surprise.<</narrate>>
<<say "pro4">>Well, fuck me, sugar. We're gonna have some <i>real</i> fun.<</say>>
<<say "mc">>That's the plan, uhhh... sweet cheeks.<</say>>
<<narrate>>She cackles.<</narrate>>
<<say "pro4">>You leave that kinda talking to me, sweetie. You just enjoy yourself.<</say>>
<<narrate>>She lowers herself down to your cock, gasps as she gets it at eye level, then wraps her lips around your bellend.<</narrate>>
<<vid "east/pro401.mp4">>
<<narrate>>The two of you continue to get undressed, your penis not once leaving her mouth until her tits have gained their freedom.<</narrate>>
<<cont "eastsex" "pro402">>
<<case "pro402">>
<<vid "east/pro402.mp4">>
<<narrate>>She grunts viscerally as you shove your cock between her tits.<</narrate>>
<<say "pro4">>Yes, sweetness. Fuck those titties!<</say>>
<<narrate>>The smile on her face as she looks up at you is almost frightening.<</narrate>>
<<say "pro4">>Fuck me. Fuck me hard!<</say>>
<<narrate>>You lift her on the table and remove her panties.<</narrate>>
<<vid "east/pro402-2.mp4">>
<<narrate>>She snatches at your hands as you bring them over her legs. She pulls them forward, scrunching them into her mouth, an expression of pride on her face.<</narrate>>
<<cont "eastsex" "pro403">>
<<case "pro403">>
<<vid "east/pro403.mp4">>
<<narrate>>With one arm around her thigh and the other massage her breast, you pummel away at her.<</narrate>>
<<say "pro4">>Aaaaghhhh!<</say>>
<<narrate>>Her screams of joy are muffled by the panties in her mouth as you continue your onslaught; her cries of passion only increasing the rapidity of your barrage.<</narrate>>
<<narrate>>With another scream, she spits out the panties.<</narrate>>
<<say "pro4">>Let's finish together, sweetie.<</say>>
<<narrate>>She twists her body around on the desk.<</narrate>>
<<cont "eastsex" "pro404">>
<<case "pro404">>
<<vid "east/pro404.mp4">>
<<narrate>>She looks back at you as you hold on to her waist, plowing away.<</narrate>>
<<say "pro4">>Yes. Yes.<</say>>
<<narrate>>She nods her head as if acknowledging your actions. Feeling your end drawing near, you eagerly pick up the pace.<</narrate>>
<<say "pro4">>Aaaaghhhh!<</say>>
<<narrate>>Again, she moans wildly. Her body spasms and her legs become unsteady. Unable to keep upright, she falls to the floor. She grabs your cock and strokes furiously, her mouth wide open and her tongue ready to collect your deposit.<</narrate>>
<<vid "east/pro405.mp4">>
<<say "mc">>Oh, god fucking shit yes.<</say>>
<<narrate>>Her strokes wild and uncoordinated, half your spunk lands on her tits.<</narrate>>
<<say "pro4">>Now that's the dollop of sunshine I truly enjoy. You come back any time, y'hear, sweetness?<</say>>
<<unlock "pro4" "pro4">>
<<if $location == "brothel">>
<<cont "mngbrothel" "" 1>>
<<elseif $tempvar2 == "ne">>
<<cont "east-aegis" "ne" 1>>
<<else>>
<<button "Continue" eastsex>>
<<temp "pro405">>
<</button>>
<</if>>
<<case "pro405">>
<<say "mc">>Wait. Wait. Do you mind if I ask how you started in this line of work?<</say>>
<<narrate>>She looks up at you, still covered in your jizz.<</narrate>>
<<center "east/pro402.jpg">>
<<say "pro4">>Oh, sweetness, we don't employ men for this kinda thing. Not much call for it.<</say>>
<<say "mc">>Strange given how few men live here.<</say>>
<<say "pro4">>Sugar, the women here get what they want. Men might be few in number, but there's plenty willing, and when there ain't, there's plenty of women. The men who come here just want something a little more... discreet. There's probably some male service out there, but I'll be damned if I know where.<</say>>
<<say "pro4">>But if you must know, I had a gambling problem. Ran me into the ground almost. This place offered me a way out of it doing something I love. Can't say fairer than that, also helped me kick the habit.<</say>>
<<narrate>>She twirls her knickers on her finger than throws them at you.<</narrate>>
<<say "pro4">>Something to remember me by, sugar. I do hope we meet again.<</say>>
<<think "mc">>The initial recruitment sounds a bit fishy, but she seems pretty happy with the arrangement.<</think>>
<<button "Continue" easthub>>
<<set $east.pro4 = 1>>
<<if $replay == false>>
<<set $intel.city.pushUnique('<i>Aegis Protectorate</i> prostitutes are recruited from people in debt.')>>
<</if>>
<<time 3>>
<<meet "pro4">>
<</button>>
<<case "secsex">>
<<think "mc">>Shit, looks like it's already started.<</think>>
<<narrate>>You shuffle into a seat and watch the game.<</narrate>>
<<center "east/base01.jpg">>
<<think "mc">>I know nothing about baseball, but I think her team is winning?<</think>>
<<block "east/base02.jpg">>
<<narrate>>You watch as the game unfolds. Steadily getting to grasp with what's going on.<</narrate>>
<<think "mc">>She's up!<</think>>
<<narrate>>She misses the first ball.<</narrate>>
<<say "side" "Umpire">>Strike one!<</say>>
<<think "mc">>Come on, you can do this!<</think>>
<<say "side" "Umpire">>Strike two!<</say>>
<<say "mc" "" "(Yelling)" "shout">>Come on $sec.name, you got this!<</say>>
<</block>>
<<say "side" "Umpire">>Strike three; you're out!<</say>>
<<narrate>>She runs off crying towards the locker rooms.<</narrate>>
<<think "mc">>Shit. Was that last one my fault? I better go check on her.<</think>>
<<button "Continue" eastsex>>
<<temp "secsex1">>
<</button>>
<<case "secsex1">>
<<narrate>>You knock on the locker room door.<</narrate>>
<<say "sec">>I'm busy go away.<</say>>
<<say "mc">>It's <<if $tempvar2 == "ne" || $location == "brothel">>$name<<else>>$alias<</if>>.<</say>>
<<narrate>>You hear her fumbling and a moment later the door opens.<</narrate>>
<<say "sec">>Oh my god. That was so embarrassing. I'm so sorry. I'm normally so much better, but I got so nervous when I thought you were watching.<</say>>
<<narrate>>You close the door behind you.<</narrate>>
<<say "mc">>Honestly, I don't understand the game. But I most certainly couldn't keep my eyes off you, a few missed balls? Big deal! You'll get it next time.<</say>>
<<narrate>>You pull her in for a hug.<</narrate>>
<<think "mc">>Shit, that's a tight top. Look at those wondrous melons!<</think>>
<<narrate>>Your dick stiffens, batting against her leg. She blushes.<</narrate>>
<<say "sec">>Is that a baseball bat in your pocket or are you just happy to see me?<</say>>
<<say "mc">>Baseball bat, definitely.<</say>>
<<narrate>>She pulls down your pants revealing your huge erection.<</narrate>>
<<say "sec">>Uh-huh.<</say>>
<<narrate>>She wraps her lips around your dick while you throw off your top.<</narrate>>
<<cont "eastsex" "secs01">>
<<case "secs01">>
<<vid "east/sec/bat01.mp4">>
<<narrate>>She slurps down on your cock ravenously.<</narrate>>
<<narrate>>Her head rocks back and forth as her tongue massages your glans and her hand caresses the base of your cock.<</narrate>>
<<narrate>>You playfully grab at her breasts.<</narrate>>
<<say "sec">>I could tell on day one you liked my boobs, couldn't keep your eyes off 'em.<</say>>
<<narrate>>She raises her breasts up to your cock.<</narrate>>
<<cont "eastsex" "secs02">>
<<case "secs02">>
<<narrate>>She squeezes her tits together as you hump her boobs.<</narrate>>
<<vid "east/sec/bat02.mp4">>
<<say "sec">>Yeah, fuck those big titties.<</say>>
<<narrate>>She rubs her tits up and down your shaft.<</narrate>>
<<say "mc">>Fuck these are incredible.<</say>>
<<narrate>>She releases your cock, looks up at you, then gets on all fours on the bench.<</narrate>>
<<think "mc">>Noice!<</think>>
<<cont "eastsex" "secs03">>
<<case "secs03">>
<<narrate>>You grab her waist and slide in, her glistening pussy eagerly welcoming you.<</narrate>>
<<vid "east/sec/bat03.mp4">>
<<say "sec">>Oh, shit!<</say>>
<<narrate>>Her lascivious cries echo around the room.<</narrate>>
<<say "sec">>Oh my god!<</say>>
<<cont "eastsex" "secs04">>
<<case "secs04">>
<<narrate>>Unable to hold herself steady any longer, she twists her body round.<</narrate>>
<<vid "east/sec/bat04.mp4">>
<<narrate>>You grab her thigh and start pistoning into her, faster and faster as you feel yourself slipping further and further into the lust.<</narrate>>
<<say "sec">>Aggh~ yeah, yeah. Aaaa~<</say>>
<<cont "eastsex" "secs05">>
<<case "secs05">>
<<narrate>>She lays back on the bench as your assault continues.<</narrate>>
<<vid "east/sec/bat05.mp4">>
<<narrate>>As her moans become more rapid you feel yourself getting closer and closer to the edge. You grab her waist, sit on the bench and perch her on your dick as you prepare for the final innings.<</narrate>>
<<cont "eastsex" "secs06">>
<<case "secs06">>
<<vid "east/sec/bat06.mp4">>
<<narrate>>You bounce her up and down your cock, the clap of her ass against your groin only hastening your climax.<</narrate>>
<<say "mc">>Oh, fuck.<</say>>
<<narrate>>She lets out a high-pitched scream, she slaps her arms rapidly against her thighs and you feel her pussy tighten around you.<</narrate>>
<<say "mc">>Holy fuck I'm cumming!<</say>>
<<narrate>>She quickly gets to her knees, determined to catch your seed in her mouth, but it's too late, you erupt as she's getting to her knees and finish over her voluptuous breasts.<</narrate>>
<<vid "east/sec/bat07.mp4">>
<<say "mc">>Holy fucking shit yes!<</say>>
<<unlock "sec" "bat">>
<<if $tempvar2 == "ne">>
<<say "sec">>Fuck, I needed that.<</say>>
<<say "mc">>You might have struck out with the balls out there, but you knocked it out of the park with these balls in here.<</say>>
<<say "sec">>Oh my, that was a lame pun. Now you'd better get out of here before the rest of the team are done.<</say>>
<<if $sec.events.step < 4 >>
<<event "sec" "step" 4>>
<</if>>
<<cont "neweden" "" 2>>
<<else>>
<<cont "eastsex" "secs07">>
<</if>>
<<case "secs07">>
<<set _charity = $cabinet - 1>>
<<say "mc">>I was thinking maybe we could grab dinner?<</say>>
<<say "sec">>Hmm, I can't join you for dinner. But you know, $eva.name is hosting a charity even <<if _charity == 1>>tonight<<else>> _charity evenings from now<</if>> at the city hall for one of $howard.name's causes. As an employee I have an invite... with a plus one?<</say>>
<<think "mc">>Shit, I might be able to meet with them!<</think>>
<<say "mc">>Count me in!<</say>>
<<say "sec">>Great! Now you'd better get out of here before the rest of the team are done.<</say>>
<<if $east.rec == 1>>
<<think "mc">>I've already told $rec.name to invite me as her plus one. I guess I can decide on the night.<</think>>
<</if>>
<<button "Continue" easthub>>
<<set $east.sec = 6>>
<<set $intel.eva.pushUnique('Hosting a charity event at City Hall')>>
<<set $intel.howard.pushUnique('Attending a charity event at City Hall')>>
<<time 3>>
<</button>>
<<case "res">>
<<narrate>>You head back to the library with $res.name.<</narrate>>
<<if checkUnlocks('movie', 'lib', 'res') == false || $replay == true>>
<<say "res">>How'd you get this key, anyway?<</say>>
<<say "mc">>Let's just say the librarian has taken a shine to me.<</say>>
<<narrate>>She cackles.<</narrate>>
<<say "res">>You dog!<</say>>
<<narrate>>She puts something in the computer, then types away on the keyboard, a bunch of terminals appear before you, but she's so quick around the keyboard you can't really make sense of any of it.<</narrate>>
<<say "res">>Okay, it's gonna take some time. Come with me.<</say>>
<</if>>
<<center "east/res07.jpg">>
<<if $tempvar2 == "ne">>
<<say "res">>So, those stories about you...<</say>>
<<else>>
<<say "res">>You know... we've got an hour or so to kill...<</say>>
<<think "mc">>Oh god I hope this is going where I think it's going.<</think>>
<</if>>
<<narrate>>She kicks off her boots, hikes up her skirt and casts off her top.<</narrate>>
<<say "res">>Presumably this will remove any doubt in your mind as to my intentions... but just in case...<</say>>
<<narrate>>She leans over the desk waggling her hips at you.<</narrate>>
<<say "res">>Fuck me.<</say>>
<<cont "eastsex" "res01">>
<<case "res01">>
<<narrate>>You unsheathe your weapon and slide gently into her pussy. She pushes back on you with force, her pussy gleefully consuming your member.<</narrate>>
<<vid "east/res/jos02.mp4">>
<<say "res">>Yeah, yeah yeaaah!<</say>>
<<narrate>>You both moan passionately as she rhythmically thrusts her hips back and forth against your cock.<</narrate>>
<<say "res">>Let me ride it!<</say>>
<<cont "eastsex" "res02">>
<<case "res02">>
<<vid "east/res/jos03.mp4">>
<<say "res">>Oh god.<</say>>
<<narrate>>Her impassioned movements continue even in this position. Having taken full control, she bounces up and down on your cock.<</narrate>>
<<say "res">>Fuck god.<</say>>
<<say "mc">>My turn.<</say>>
<<narrate>>You roll to the side, forcing her to do the same, her pussy not once losing grip of your dick. Not letting you go for even a moment, she resorts to pulling her skirt up over her head.<</narrate>>
<<cont "eastsex" "res03">>
<<case "res03">>
<<vid "east/res/jos05.mp4">>
<<narrate>>You piston away at her pussy, her salacious moans clouding your mind of all reason.<</narrate>>
<<say "res">>Oh my god, yeah, yeah, yeah.<</say>>
<<narrate>>She throws her head back as the pleasure continues, barely able to contain herself.<</narrate>>
<<say "res">>Fuck yeah, yeah!<</say>>
<<cont "eastsex" "res04">>
<<case "res04">>
<<narrate>>You lift her back on to the desk, face up. And pummel away seeking your end.<</narrate>>
<<vid "east/res/jos04.mp4">>
<<say "res">>Uhh~ fuck!<</say>>
<<narrate>>Her whimpers and cries of passion become higher pitched as her vagina tightens around you. She squeezes her eyes tightly and grips the desk so hard her knuckles turn white.<</narrate>>
<<narrate>>Her new-found tightness taunts your end.<</narrate>>
<<say "mc">>Shit, I'm gonna—<</say>>
<<say "res">>It's fine. Fill me up! Let me have your dirty seed!<</say>>
<<narrate>>You explode inside her, your warm sticky goo splattering on the desk as you thrust your cock dry.<</narrate>>
<<say "res">>Holy shit that feels so good inside me!<</say>>
<<narrate>>She lies on the desk while she catches her breath.<</narrate>>
<<say "res">>I wasn't expecting to have quite that much fun. Wow.<</say>>
<<narrate>>She starts looking for her skirt, not quite sure where she threw it.<</narrate>>
<<say "mc">>I had a pretty damn good time myself.<</say>>
<<narrate>>She looks back at you and smirks before spotting her skirt and darting straight for it.<</narrate>>
<<unlock "res" "lib">>
<<if $tempvar2 == "ne">>
<<button "Continue" negov>>
<<event "res" "step" 5>>
<<temp "jos3">>
<</button>>
<<else>>
<<button "Continue" east-library>>
<<set $east.library = "josiecomp2">>
<</button>>
<</if>>
<<case "libheel">>
<<if checkUnlocks('movie', 'heel', 'lib') == false || $replay == true>>
<<think "mc">>$lib.name suggested she'd be shopping around here, but I don't see her anywhere.<</think>>
<<narrate>>As you're about to leave, you notice an attractive woman dressed in yellow entering the shoe shop.<</narrate>>
<<think "mc">>Shit, was that her? She looks so different!<</think>>
<<narrate>>You decide to follow her into the store.<</narrate>>
<<else>>
<<think "mc">>Another trip to the shoe store with $lib.name is never a bad idea.<</think>>
<</if>>
<<left2 "east/heel01.jpg">>
<<say "lib">>I was beginning to think you'd never show.<</say>>
<<say "mc">>And miss this? Fuck, you look incredible.<</say>>
<<say "lib">>Your vocabulary might be lacking, but I certainly appreciate the sentiment.<</say>>
<<narrate>>She leans in, giving you a passionate kiss before pulling you aside into a corner filled with stockings.<</narrate>>
<<say "lib">>Did you notice the clerk wasn't around? How about we have some fun?<</say>>
<<narrate>>She pulls your top off over your head, kicks off her shoes and sits back on to the stool.<</narrate>>
<<say "lib">>Show me that monster!<</say>>
<<narrate>>Eager to get your dick wet, you quickly oblige.<</narrate>>
<<vid "east/lib/heel01.mp4">>
<<narrate>>She lifts her legs up, revealing her vulva as her shorts slide to the side. Her feet hang in the air next to your dick.<</narrate>>
<<cont "eastsex" "libheel02">>
<<case "libheel02">>
<<vid "east/lib/heel02.mp4">>
<<narrate>>She playfully rubs her feet along your shaft. You grab them, hold them tight to your cock and guide them up and down your dick.<</narrate>>
<<say "mc">>Holy fuck.<</say>>
<<narrate>>She looks at you seductively with a big grin on her face.<</narrate>>
<<say "lib">>Let me taste that monster.<</say>>
<<cont "eastsex" "libheel02-5">>
<<case "libheel02-5">>
<<narrate>>You drop your trousers to your ankles and shuffle over to her.<</narrate>>
<<vid "east/lib/heel02-5.mp4">>
<<narrate>>She strokes her chest as she happily and sensually works your cock.<</narrate>>
<<say "mc">>Fucking yes. Fuck yes!<</say>>
<<narrate>>She pulls up her top revealing her voluptuous mounds and hums as she enjoys the taste of your cock.<</narrate>>
<<narrate>>She stops, looks up at you and smiles sweetly.<</narrate>>
<<say "lib">>Lay down.<</say>>
<<narrate>>As you settle in on the floor she pulls down her daisy dukes, fully revealing her glistening pussy. You kick off your trousers and watch as she throws off her top before lowering herself, leaving her buttocks hovering over your thighs.<</narrate>>
<<vid "east/lib/heel03-00.mp4">>
<<say "lib">>Another... foot rub, or straight for the glory?<</say>>
<<choices>>
<<link "Foot Job" eastsex>>
<<temp "libheel03">>
<</link>><br>
<<link "Ride Me" eastsex>>
<<temp "libheel04">>
<</link>>
<</choices>>
<<case "libheel03">>
<<narrate>>She sits herself between your legs.<</narrate>>
<<vid "east/lib/heel03.mp4">>
<<narrate>>She wraps her feet around your rod and quickly runs them up and down.<</narrate>>
<<say "lib">>Oh yeah.<</say>>
<<narrate>>She appears to be enjoying herself as much as you.<</narrate>>
<<cont "eastsex" "libheel04">>
<<case "libheel04">>
<<narrate>>You grab her ankles and pull her towards you until she's sitting on your cock. Her hungry pussy all too eager to accept to.<</narrate>>
<<vid "east/lib/heel04.mp4">>
<<narrate>>Her feet on your chest she bounces up and down on your cock gleefully; her face a symphony of joy.<</narrate>>
<<narrate>>As her moans and exclamations of pleasure become wilder you find yourself growing more ravenous.<</narrate>>
<<say "mc">>On the chair. Ass in the air!<</say>>
<<narrate>>Her smile grows bigger still as she moves into position.<</narrate>>
<<cont "eastsex" "libheel05">>
<<case "libheel05">>
<<vid "east/lib/heel05.mp4">>
<<narrate>>You grab her ass for purchase and pound away as she cries out lustfully.<</narrate>>
<<say "lib">>Ohhh, fuck. Yeah, yeah. That's so good.<</say>>
<<narrate>>As your cock slides in and out, you think you notice something over the top of the shelves.<</narrate>>
<<think "mc">>Shit. Is someone there? At this stage... do I care?<</think>>
<<say "lib">>Ohhhh yeah, Oh, like that. Ohh fuck uggh!<</say>>
<<narrate>>You feel yourself getting more worked up, between her salacious sounds and the potential onlooker your libido runs unfettered.<</narrate>>
<<cont "eastsex" "libheel06">>
<<case "libheel06">>
<<narrate>>You flip her over on the chair.<</narrate>>
<<vid "east/lib/heel06.mp4">>
<<narrate>>She looks up at you, her eyes full of desire.<</narrate>>
<<say "lib">>Mhhmm, fuck yeah. Don't stop. Don't stop until you cum!<</say>>
<<narrate>>She retains eye contact as you piston into her.<</narrate>>
<<say "lib">>Give it to me. Give it to me. Give me that cum!<</say>>
<<narrate>>It's enough to give you the final push and you feel your climax building. Quickly.<</narrate>>
<<say "mc">>Oh fuck! I'm gonna blow.<</say>>
<<say "lib">>Feet. I wanna feel your warm goo on my feet.<</say>>
<<vid "east/lib/heel07.mp4">>
<<say "mc">>Holy fuck, that was unreal.<</say>>
<<say "lib">>I love this place even more now than I did before. Maybe we can come play here again?<</say>>
<<narrate>>She grabs a pair of shoes and puts them on, without even cleaning the jizz off. She tosses some money on the counter and saunters off.<</narrate>>
<<say "lib" "" "(Shouting)" "shout">>I've left the money on the counter, Jill. See you next time!<</say>>
<<narrate>>A rather timid looking woman pops out from behind a shelf, her face flustered.<</narrate>>
<<say "side" "Jill">>Uh, yes, of course. I look forward to your next visit, $lib.name.<</say>>
<<say "lib">>Oh, I bet you do. You dirty dog!<</say>>
<<if checkUnlocks('movie', 'heel', 'lib') == false || $replay == true>>
<<narrate>>The woman looks at you, embarrassed. You're unsure of the situation, whether she was even okay with what you and $lib.name just did in her store, but you decide it's best just to leave rather than make things more complicated.<</narrate>>
<<say "mc">>It was... nice to meet you Jill, I'm gonna head out.<</say>>
<<say "side" "Jill">>Yes, of course. Please do come again... I mean uhhh... like visit but if you... okay, yup. Bye.<</say>>
<<narrate>>She scurries off into the back before you get a chance to reply.<</narrate>>
<<else>>
<<narrate>>The woman simply smiles at you, seemingly less embarrassed than last your first visit.<</narrate>>
<<say "side" "Jill">>I do uhmmm, enjoy your visits. Goodbye.<</say>>
<</if>>
<<unlock "lib" "heel">>
<<if $tempvar2 == "ne">>
<<if $lib.events.step < 5>>
<<event "lib" "step" 5>>
<</if>>
<<cont "nestuff" "" 2>>
<<else>>
<<set $east.matilda++>>
<<cont "easthub" "" 3>>
<</if>>
<<case "lib">>
<<if $hour >= 20>>
<<narrate>>You let yourself in to the library using the key $lib.name provided you.<</narrate>>
<<think "mc">>I wonder if she's here tonight?<<if $tempvar2 != "ne">> I could access her computer if not, it might be connected to a government network or something.<</if>><</think>>
<</if>>
<<narrate>>You quietly walk through the aisles trying to find her.<</narrate>>
<<center "east/lib06.jpg">>
<<think "mc">>Nice. Now that's a sight for sore eyes.<<if $tempvar2 != "ne">> Guess there's no computer tonight, she'd easily hear the keyboard clacking away, but I can always try some other time.<</if>><</think>>
<<say "lib">>Enjoying the view?<</say>>
<<say "mc">>Oh. Very much so.<<if $hour < 20>> You and I are the only ones here right now...<</if>><</say>>
<<narrate>>She gives you grin as she loosens her blouse, drawing even further attention to her already accentuated cleavage.<</narrate>>
<<say "lib">>Then you'll really like this view.<</say>>
<<narrate>>She slips her bra down revealing her voluptuous breasts. She swaggers to the end of the bookshelf, gesturing at you to follow while looking over her glasses at you.<</narrate>>
<<say "lib">>Watch me!<</say>>
<<narrate>>She hitches up her skirt and places her hand in her panties while holding her breast.<</narrate>>
<<vid "east/lib01.mp4">>
<<think "mc">>Fuck yes.<</think>>
<<say "mc">>It looks great, but I bet it tastes even better!<</say>>
<<narrate>>You push her forward, bend down beside her and pull her panties down with your teeth.<</narrate>>
<<button "Continue" eastsex>>
<<temp "lib01">>
<</button>>
<<case "lib01">>
<<vid "east/lib02.mp4">>
<<narrate>>She holds her ass cheeks apart as you bury your face in her pussy, running your tongue up and down her vulva.<</narrate>>
<<say "lib">>Oh shit. Oh fuck!<</say>>
<<narrate>>You throw off your top.<</narrate>>
<<say "mc">>Show me how filthy you are!<</say>>
<<narrate>>You pull a book trolley over and position her over it.<</narrate>>
<<button "Continue" eastsex>>
<<temp "lib02">>
<</button>>
<<case "lib02">>
<<vid "east/lib03.mp4">>
<<say "lib">>Oh fuuck, yeah. Yeah yeah yeah!<</say>>
<<narrate>>Your pants still barely around your ankles you pummel away, each thrust driving her wild with passion as she cries out lustfully.<</narrate>>
<<say "lib">>I wanna taste my pussy on your dick!<</say>>
<<button "Continue" eastsex>>
<<temp "lib03">>
<</button>>
<<case "lib03">>
<<vid "east/lib04.mp4">>
<<say "mc">>Ohh, yeah. Suck that dirty cock you filthy bitch.<</say>>
<<narrate>>She sucks hard on your bellend while stroking your shaft. She looks up at you, the desire in her eyes only growing stronger with each passing moment.<</narrate>>
<<say "lib">>Fuck my titties!<</say>>
<<button "Continue" eastsex>>
<<temp "lib04">>
<</button>>
<<case "lib04">>
<<vid "east/lib05.mp4">>
<<narrate>>She struggles to keep her breasts together around your cock as you barrage her with blow after blow.<</narrate>>
<<say "lib">>Keep sliding that cock in out of this big fucking titties<</say>>
<<narrate>>She looks up at you seductively licking her lips.<</narrate>>
<<say "lib">>Your cock makes my nipples so fucking hard.<</say>>
<<narrate>>You grab her chin and raise her to your height.<</narrate>>
<<say "mc">>God you're fucking dirty.<</say>>
<<narrate>>You push her backwards on to a chair.<</narrate>>
<<button "Continue" eastsex>>
<<temp "lib05">>
<</button>>
<<case "lib05">>
<<vid "east/lib06.mp4">>
<<say "lib">>Shit, oh fuck yes.<</say>>
<<narrate>>The instability of the situation only somehow adding to your exhilaration you pound at her pussy mercilessly.<</narrate>>
<<say "lib">>This is good. Just like that.<</say>>
<<narrate>>Almost hypnotized by her jiggling breast, your libido takes you into overdrive.<</narrate>>
<<narrate>>The chair breaks away beneath the flurry. A brief feeling of panic overcomes you, but she's on her feet almost immediately, her hand on your chest as she pushes you back toward the table.<</narrate>>
<<say "lib">>Oh, you naughty boy. I'll get you back for that one!<</say>>
<<button "Continue" eastsex>>
<<temp "lib06">>
<</button>>
<<case "lib06">>
<<vid "east/lib07.mp4">>
<<narrate>>Her salacious screams grow louder as she bounces on your cock.<</narrate>>
<<say "lib">>Oh fuck.<</say>>
<<narrate>>With each movement you feel yourself growing ever closer to your end.<</narrate>>
<<button "Continue" eastsex>>
<<temp "lib07">>
<</button>>
<<case "lib07">>
<<vid "east/lib08.mp4">>
<<narrate>>You toss her off you, grab her thigh and pulverizing her pussy, race for your release.<</narrate>>
<<say "lib">>Yeah, yeah. It feels fucking good just like that.<</say>>
<<narrate>>Under the fury of your onslaught the table begins to wobble, the items on top of it jostling for freedom.<</narrate>>
<<say "mc">>Fuck, yes. Fuck, fuck. It's cumming!<</say>>
<<vid "east/lib09.mp4">>
<<narrate>>She jumps off the table and on to her knees, just in time as you unleash your load on to her face.<</narrate>>
<<say "lib">>Rub it on my fucking titties.<</say>>
<<narrate>>She falls back to the floor, completely out of breath and barely able to keep herself upright.<</narrate>>
<<say "lib">>Fucking hell. You're a monster. A great big fucking dirty monster. I love it.<</say>>
<<narrate>>You grin at her.<</narrate>>
<<say "mc">>Ditto. Do you always uhh... <i>work</i> late?<</say>>
<<narrate>>You give her a wink.<</narrate>>
<<say "lib">>No, this is the last night this week... but you say the word and I'll let you fuck me in front of the fucking cabinet if you want. God your dick is fucking good.<</say>>
<<say "mc">>You dirty bitch. I love it.<</say>>
<<unlock "lib" "lib">>
<<if $tempvar2 == "ne">>
<<cont "nestuff" "" 2>>
<<if $lib.events.step < 3>>
<<event "lib" "step" 3>>
<</if>>
<<else>>
<<think "mc">>I should come back another when she's not here if I want to access her computer.<</think>>
<<button "Continue" easthub>>
<<time 3>>
<<set $east.matilda++>>
<<set $east.library = 4>>
<</button>>
<</if>>
<<case "nurse">>
<<meet "kenzie">>
<<narrate>>You arrive in the nurses' office a few minutes later, the pain from your interaction with Damien completely faded.<</narrate>>
<<block "east/nurse01.jpg">>
<<say nurse "Nurse">>Well hello there handsome. What's up? You got a tummy ache?<</say>>
<<think "mc">>Holy shit. Surely that's not the uniform? Fucking hell, if it is, maybe I need to let Damien smack me up more often.<</think>>
<<say "mc">>Uh, no nurse. The sergeant sent to be get checked over as...<</say>>
<<say nurse "Nurse">>You got your ass beat. Yeah, I saw. So what were you hoping to achieve here?<</say>>
<<say "mc">>Umm, just wanted to help the war effort.<</say>>
<</block>>
<<narrate>>She grins.<</narrate>>
<<say nurse "Nurse">>Uh-huh. Sure. Take off your clothes, please.<</say>>
<<say "mc">>Is that necessary?<</say>>
<<say nurse "Nurse">>Oh, most definitely. Need to see if there's any lasting damage.<</say>>
<<narrate>>You can't help but notice how she watches you undress.<</narrate>>
<<say "mc">>Okay so—<</say>>
<<say nurse "Nurse">>Underwear too.<</say>>
<<say "mc">>But—<</say>>
<<say nurse "Nurse">>Boxers. Off.<</say>>
<<narrate>>There's something about her commanding tone that makes you feel helpless to do anything but comply.<</narrate>>
<<think "mc">>Eh, it's not like I'm ashamed of my dick. Feels a bit unorthodox, but who knows how things work around here.<</think>>
<<say nurse "Nurse">>Well, that's certainly impressive. On the bed.<</say>>
<<narrate>>Again you feel yourself compelled to do as she says.<</narrate>>
<<say "mc">>Is this normal?<</say>>
<<say nurse "Nurse">>Your health is a very important matter!<</say>>
<<narrate>>She places her hat on the desk, then looks over at you.<</narrate>>
<<say nurse "Nurse">>First, let's check those pupils.<</say>>
<<narrate>>To your surprise, she raises her leg over you and straddles you. Your cock immediately springs to attention.<</narrate>>
<<vid "east/nurse01.mp4">>
<<narrate>>She gently rocks her hips against you as she shines a light in your eyes. Her soft ass rubbing against your cock.<</narrate>>
<<button "Continue" eastsex>>
<<temp "nurse02">>
<</button>>
<<case "nurse02">>
<<vid "east/nurse02.mp4" noloop>>
<<say nurse "Nurse">>I can fix that...<</say>>
<<narrate>>She continues to sensually rub her ass against your cock.<</narrate>>
<<say nurse "Nurse">>...if you want me to.<</say>>
<<think "mc">>Holy shit. I love this patron perk!<</think>>
<<narrate>>You nod.<</narrate>>
<<vid "east/nurse03.mp4">>
<<narrate>>Her hand reaches back and she starts stroking your cock.<</narrate>>
<<say "mc">>Ohh fuck!<</say>>
<<narrate>>She grins at you.<</narrate>>
<<say nurse "Nurse">>I think my patient needs some extra care.<</say>>
<<vid "east/nurse04.mp4">>
<<button "Continue" eastsex>>
<<temp "nurse03">>
<</button>>
<<case "nurse03">>
<<vid "east/nurse05.mp4">>
<<narrate>>She greedily gobbles down on your fat cock, holding your full length deep in her throat.<</narrate>>
<<say "mc">>Yes. Nurse. Yes!<</say>>
<<narrate>>As she gasps for air she stokes your shaft before running her tongue up and down your dick.<</narrate>>
<<say nurse "Nurse">>Now this is a fun toy.<</say>>
<<button "Continue" eastsex>>
<<temp "nurse04">>
<</button>>
<<case "nurse04">>
<<vid "east/nurse06.mp4">>
<<narrate>>She looks you in the eyes as she playfully rubs her hand up and down your shaft.<</narrate>>
<<narrate>>You squirm under her touch before she dives back in to devour your manhood.<</narrate>>
<<say "mc">>Oh fuck!<</say>>
<<narrate>>The feeling of her expert touch, the warmth of her mouth, and the rapid movements of her tongue over your bellend all culminate together bringing you to a feeling of ecstasy similar to what you felt when making $kylie.name your champion.<</narrate>>
<<say "mc">>Fuck, yes, I'm FUCKING CUMMING SHIIIIT!<</say>>
<<vid "east/nurse07.mp4">>
<<narrate>>You hold her head down on your dick as you explode into her throat.<</narrate>>
<<narrate>>She takes every last squirt gleefully. A sense of pride on her face as she gasps for air.<</narrate>>
<<say nurse "Nurse">>I hope you don't think we're done. I need mine.<</say>>
<<narrate>>She crawls over you, lowering her pussy on to your face.<</narrate>>
<<say nurse "Nurse">>Eat it!<</say>>
<<button "Continue" eastsex>>
<<temp "nurse05">>
<</button>>
<<case "nurse05">>
<<vid "east/nurse08.mp4">>
<<narrate>>She bounces her hips on your face.<</narrate>>
<<say nurse "Nurse">>You eat that pussy so good.<</say>>
<<narrate>>Her taste is moreish, almost addictive. You eagerly run your tongue up and down her vulva then concentrate on massaging her clit as she moans in delight.<</narrate>>
<<say nurse "Nurse">>Oh god!<</say>>
<<narrate>>She whips her hair as the orgasm runs through her, her hips shaking unsteadily on your face.<</narrate>>
<<say nurse "Nurse">>Ohhh~ oh. Ohhh~ FUCK!<</say>>
<<narrate>>She falls backwards on to you, her pussy just out of range of your tongue. You try to push your head forward, hungry for the wondrous flavor of her juices, but under her weight are unable to reach. She grins and gives your chest a playful slap as she slides off the bed.<</narrate>>
<<say nurse "Nurse">>Let's do this again some time, huh?<</say>>
<<narrate>>You lay in the bed mesmerized as you watch her leave through the back door, not even bothering to get dressed.<</narrate>>
<<think "mc">>That was wild. Damien, I fucking owe you one!<</think>>
<<narrate>>You quickly gather your clothes, get dressed, and follow her out the backdoor. But it's too late; you scout around but there's nobody there.<</narrate>>
<<think "mc">>Shit. I guess I'll just have to get another injury.<</think>>
<<say "sarge">>You. Why are you still here? Leave or I'll have you removed.<</say>>
<<say "mc">>I was just wanting to thank the nurse but—<</say>>
<<say "sarge">>Leave.<</say>>
<<think "mc">>Damn.<</think>>
<<narrate>>As you're departing you notice Damien by the way. As you walk past him you hold your fist toward him. He cautiously bumps fists with you but looks a bit confused.<</narrate>>
<<say "mc">>You're the man, Damien!<</say>>
<<narrate>>He just grunts and gets back to his work.<</narrate>>
<<button "Continue" easthub>>
<<unlock "kenzie" "nurse">>
<<time 3>>
<<if $replay == false>>
<<set $intel.city.pushUnique(State.variables.britt.name + ' is staying at the training camp.')>>
<</if>>
<</button>>
<<case "consgarden">>
<<narrate>>You rock up to $cons.name's home, only to find her mowing the lawn.<</narrate>>
<<center "east/cons03.jpg">>
<<narrate>>She smiles like a Cheshire cat when she notices you.<</narrate>>
<<say "cons">><<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>! I wasn't expecting you.<</say>>
<<say "mc">>I was just in the area and thought I'd drop by. I'll be honest, you didn't strike me as the gardening type.<</say>>
<<say "cons">>Eh, I don't come from a super wealthy background, in my family if you could do it yourself, you did it. Bill's not too pleased about it, but I always get my way with him.<</say>>
<<say "mc">>Heh, yes, I've been on the receiving end of you getting your way. Worked out pretty well for me! Is Bill home?<</say>>
<<say "cons">>Nah, it's just you and me. But you know... we can have some fun without him.<</say>>
<<say "mc">>He won't mind?<</say>>
<<say "cons">>With you? Nah. Just... two minutes.<</say>>
<<if $tempvar2 == "ne" && $cons.events.neintro == undefined>>
<<narrate>>She pauses for a moment.<</narrate>>
<<say "cons">>Oh, by the way, Howard came by and told us everything. You're the patron, huh? That's so fucking hot. I'm totally down with it!<</say>>
<<think "mc">>I've just realized she didn't call me $alias.<</think>>
<<event "cons" "neintro">>
<</if>>
<<narrate>>She dashes over to the shed and returns with a picnic blanket that she unfurls on to the grass.<</narrate>>
<<say "mc">>Shit, out here?<</say>>
<<narrate>>She nods enthusiastically.<</narrate>>
<<think "mc">>A bit of fun can't hurt<<if $tempvar2 != "ne">>, and I can probably get inside the house after. Tell her I want a shower or something<</if>>.<</think>>
<<left2 "east/cons04.jpg">>
<<narrate>>A piece of fabric wraps around your head. You peel her bikini top off your face and admire the spectacle before you.<</narrate>>
<<say "cons">>You just gonna stand there, or you gonna come help me water the garden?<</say>>
<<narrate>>You shake your head at the outrageous pun, but she just keeps grinning at you.<</narrate>>
<<say "cons">>I think I'm becoming addicted to your cock, you know. It's so fucking good.<</say>>
<<say "mc">>A cock is only as good as the pussy riding it.<</say>>
<<narrate>>She laughs.<</narrate>>
<<think "mc">>What the fuck did I even mean with that?<</think>>
<<say "cons">>Funny you should say that...<</say>>
<<narrate>>She playfully pushes you down on to a chair and tugs at your trousers.<</narrate>>
<<vid "east/consgarden01.mp4">>
<<narrate>>She lowers herself on to your erect penis, letting out a whimper of a satisfaction as she stays still for a moment with your dick deep inside her.<</narrate>>
<<say "cons">>Oh god I love this fucking cock!<</say>>
<<button "Continue" eastsex>>
<<temp "consgarden02">>
<</button>>
<<case "consgarden02">>
<<vid "east/consgarden02.mp4">>
<<say "cons">>Oh shit!<</say>>
<<narrate>>She screams in delight as she rides your cock.<</narrate>>
<<say "cons">>I love feelin' you go in n out.<</say>>
<<button "Continue" eastsex>>
<<temp "consgarden03">>
<</button>>
<<case "consgarden03">>
<<vid "east/consgarden03.mp4">>
<<say "cons">>I love your thick cock in my tight pussy.<</say>>
<<narrate>>You only get more turned on as her moans grow more salacious.<</narrate>>
<<say "cons">>Yeah! Yeah.<</say>>
<<button "Continue" eastsex>>
<<temp "consgarden04">>
<</button>>
<<case "consgarden04">>
<<vid "east/consgarden04.mp4">>
<<narrate>>You give her ass a playful spank as you prepare for your final assault.<</narrate>>
<<say "cons">>Oh, Ohh~! Yeah fuck that tight little hole good!<</say>>
<<narrate>>You speed up, eager to finish. The thought of a neighbor catching you together just sends your lust into overdrive.<</narrate>>
<<say "cons">>I love listening to your cock pound me.<</say>>
<<narrate>>Her words, along with the sounds of your flesh slapping together takes you beyond the point of return and you feel the orgasm building.<</narrate>>
<<say "mc">>Oh fuck. Yes, $cons.name, fuck! I'm cumming.<</say>>
<<narrate>>She pulls herself away from you and quickly brings her mouth to your cock.<</narrate>>
<<say "cons">>Do it. Decorate my face with your spunk!<</say>>
<<vid "east/consgarden05.mp4">>
<<narrate>>She gratefully accepts your load as you blast on to her face.<</narrate>>
<<say "mc">>Holy fuck. You're incredible.<</say>>
<<say "cons">>Ha! You're not so bad yourself. I just can't get enough of your great big dick. It's so fucking good.<</say>>
<<think "mc">>Heh, without her husband here it's a completely different vibe.<</think>>
<<unlock "cons" "consgarden">>
<<if $tempvar2 == "ne">>
<<event "cons" "step" 3>>
<<cont "neweden" "" 2>>
<<else>>
<<say "cons">>I think I'll go take a shower; sweaty work mowing a lawn.<</say>>
<<narrate>>She chuckles to herself.<</narrate>>
<<say "cons">>I'd invite you to join but I don't think I have your stamina. You're welcome to jump in after me, though.<</say>>
<<think "mc">>Perfect, gives me a chance to snoop around a little.<</think>>
<<button "Continue" east-indlook>>
<<temp "consgarden">>
<</button>>
<</if>>
<<case "conshome">>
<<narrate>>You ring the doorbell and her husband answers.<</narrate>>
<<say "side" "Foreman">>Ah, <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>! Good to see you.<</say>>
<<say "mc">>Uh, yeah, you too.<</say>>
<<think "mc">>I couldn't care less, I'm just here to fuck your wife!<</think>>
<<if $tempvar2 == "ne" && $cons.events.neintro == undefined>>
<<say "side" "Foreman" "(Yelling)" "shout">>Howard came over, by the way. Explained everything. You're the patron, huh? $cons.name just wants to you fuck you even more now!<</say>>
<<say "mc">>Then let's not disappoint her.<</say>>
<<event "cons" "neintro">>
<</if>>
<<say "side" "Foreman" "(Yelling)" "shout">>Honey, he's here!<</say>>
<<narrate>>He gestures you inside.<</narrate>>
<<say "side" "Foreman">>You know, I haven't seen her that happy with a cock for years.<</say>>
<<say "mc">>And you're okay with all this?<</say>>
<<say "side" "Foreman">>Are you kidding? I live for it! The way she degrades me as another man fucks her... it's fucking glorious.<</say>>
<<narrate>>He guides you to the living room, where you see $cons.name laying seductively.<</narrate>>
<<center "east/cons02.jpg">>
<<say "cons">>You ready to see how a real man takes charge, you limp-dicked bastard?!<</say>>
<<say "side" "Foreman">>But honey, please!<</say>>
<<say "cons">>You. <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>>. Get those clothes off and bring that fantastic specimen of manhood over here. I wanna show my husband what it looks like to have a proper mouthful!<</say>>
<<button "Continue" eastsex>>
<<temp "conshome01">>
<</button>>
<<case "conshome01">>
<<vid "east/conshome01.mp4">>
<<narrate>>She forces your dick down her throat, quickly glancing up at you with a sense of achievement as she pulls back for air.<</narrate>>
<<say "mc">>Shitting hell.<</say>>
<<narrate>>Her husband just sits on the sofa and watches as you begin to undo her bra, his wife not once letting your dick free of her mouth.<</narrate>>
<<narrate>>As the bra comes loose, she wraps it around the base of your shaft giving you contrasting sensations. She again gasps for air and quickly turns to her husband.<</narrate>>
<<say "cons">>You see that, you prick? Your tiny dick barely makes it past my teeth. Now watch as he fucks my goddamn brains out!<</say>>
<<button "Continue" eastsex>>
<<temp "conshome02">>
<</button>>
<<case "conshome02">>
<<vid "east/conshome02.mp4">>
<<narrate>>She climbs over you, quickly lowering herself on to your dick.<</narrate>>
<<say "cons">>Put that cock inside of me. YES. Just like that.<</say>>
<<narrate>>She spreads her pussy as you pick up the tempo, your hips furiously humping upwards.<</narrate>>
<<say "cons">>Fffffuck. Yes. Yes. Oh my god!<</say>>
<<narrate>>Her husband says nothing, but you can't help but notice she seems to have stopped paying him any attention.<</narrate>>
<<say "cons">>Give me that cock. Don't you dare stop.<</say>>
<<button "Continue" eastsex>>
<<temp "conshome03">>
<</button>>
<<case "conshome03">>
<<vid "east/conshome03.mp4">>
<<narrate>>You grab her ass, holding yourself steady as you pump away at her.<</narrate>>
<<say "cons">>Tell me how much you love it.<</say>>
<<narrate>>You hear the doorbell ring, and momentarily slow down unsure what to do.<</narrate>>
<<say "cons">>Don't you dare stop!<</say>>
<<say "side" "Foreman">>I'll get it. You two carry on!<</say>>
<<narrate>>He leaves, and just as he opens the door, she lets out an almighty scream of pleasure.<</narrate>>
<<say "side" "???">>Everything okay in there, Bill?<</say>>
<<say "side" "Foreman">>Oh yeah, the wife and I are just entertaining.<</say>>
<<narrate>>You shrug and push her down onto the sofa.<</narrate>>
<<button "Continue" eastsex>>
<<temp "conshome04">>
<</button>>
<<case "conshome04">>
<<vid "east/conshome04.mp4">>
<<narrate>>You frantically pound away, each of you lost to the lust and completely ignorant of your surroundings.<</narrate>>
<<narrate>>She lets out an intense shriek of gratitude as her pussy tightens on your cock. Her eyes roll back in her head and she throws head back into the sofa.<</narrate>>
<<say "mc">>Oh, fuck, yes, $cons.name I'm cumming!<</say>>
<<say "side" "???">>Sounds like you've got a lively one there, Bill.<</say>>
<<narrate>>She scrambles to position, eager to catch every drop of your cum.<</narrate>>
<<vid "east/conshome05.mp4">>
<<if $tempvar2 != "ne">>
<<say "side" "???">>Reminds you of the good ol' days with $krissy.name, huh?<</say>>
<</if>>
<<narrate>>You unload your seed while she greedily laps up every last drop with her tongue.<</narrate>>
<<say "side" "???">>Anyway, I'll leave you be given you've got company. But let's catch up soon.<</say>>
<<say "side" "Bill">>No worries<<if $tempvar2 != "ne">>, $howard.name<</if>>. Maybe next time I'll see if our stud wouldn't mind another audience member, huh?<</say>>
<<narrate>>You hear the door close and her husband returns to the room.<</narrate>>
<<say "cons">>Look at my face darling. This is what a real man does to his woman.<</say>>
<<if $tempvar2 != "ne">>
<<think "mc">>Wait, $howard.name? Seriously?<</think>>
<<narrate>>You peak out the window trying to spot him, but he's already gone. Your dick smacks $cons.name across the face as you do, causing her husband to let out a hearty laugh.<</narrate>>
<</if>>
<<say "side" "Bill">>I guess I missed the best bit of the show, huh?<</say>>
<<say "cons">>Like you'd understand it anyway. Your tiny prick couldn't hope to please me the way <<if $tempvar2 == "ne">>$name<<else>>$alias<</if>> does!<</say>>
<<unlock "cons" "conshome">>
<<if $tempvar2 == "ne">>
<<think "mc">>There was a moment there wen $cons.name seemed to forget her husband was even here. I bet she wouldn't mind a visit while he's at work...<</think>>
<<event "cons" "step" 2>>
<<cont "neweden" "" 2>>
<<else>>
<<think "mc">>What the hell was $howard.name doing here? Does he fuck $cons.name too?<</think>>
<<say "mc">>Strange question, but... but does $howard.name sometimes engage in this too?<</say>>
<<say "cons">>Ha! No. He's not my style. Besides, he prefers to watch.<</say>>
<<say "side" "Bill">>There used to be this woman, $krissy.name that $howard.name was madly in love with. Sadly it wasn't reciprocated, but she was into being watched. So he got into watching.<</say>>
<<think "mc">>Fucking hell. $krissy.refer?!<</think>>
<<say "mc">>Wow. You think you know someone, huh?<</say>>
<<narrate>>You start getting dressed.<</narrate>>
<<say "side" "Bill">>Let me at least feed you before you go, huh, son?<</say>>
<<say "mc">>Uhh, yeah, sure.<</say>>
<<narrate>>While shocked by the hospitality of a man whose wife you just raw-dogged in front of him, the food is excellent.<</narrate>>
<<think "mc">>I wonder if I could come back here while he's at work maybe? It might give me a lead on $howard.name. Fuck he may even just show up again!<</think>>
<<button "Continue" easthub>>
<<set $intel.howard.pushUnique('Likes to watch.')>>
<<set $intel.howard.pushUnique('Used to be in love with '+$krissy.refer+'.')>>
<<set $intel.howard.pushUnique('Has some sort of connection to Bill, the Foreman at <i>Sunset Hope</i>.')>>
<<time 3>>
<<set $east.cucked = 2>>
<<temp "">>
<</button>>
<</if>>
<<case "cons">>
<<vid "east/cons01.mp4">>
<<narrate>>She wastes no time blowing you.<</narrate>>
<<say "mc">>Holy fuck.<</say>>
<<narrate>>No motion is wasted; even when she gasps for air she runs her tongue up your full length.<</narrate>>
<<say "cons">>Watch me suck his cock. Just imagine if you were half the man he is!<</say>>
<<narrate>>She continues, ravenously working your cock.<</narrate>>
<<say "cons">>Take me. Show my limp-dicked husband how a real man does it!<</say>>
<<narrate>>She casts off her daisy dukes and lays back on the equipment.<</narrate>>
<<button "Continue" eastsex>>
<<temp "cons01">>
<</button>>
<<case "cons01">>
<<vid "east/cons02.mp4">>
<<narrate>>As her husband watches you pound her pussy hard, rubbing her clit as you do so.<</narrate>>
<<say "cons">>Ohhh~ fuck!<</say>>
<<narrate>>Her salacious moans echo throughout the room.<</narrate>>
<<say "cons">>You feel so fucking good!<</say>>
<<button "Continue" eastsex>>
<<temp "cons03">>
<</button>>
<<case "cons03">>
<<vid "east/cons04.mp4">>
<<say "cons">>I love you watching me!<</say>>
<<say "side" "Foreman">>Whatever makes you happy, dear.<</say>>
<<narrate>>Her salacious moans echo throughout the room.<</narrate>>
<<button "Continue" eastsex>>
<<temp "cons02">>
<</button>>
<<case "cons02">>
<<vid "east/cons03.mp4">>
<<narrate>>Her husband continues to watch in feigned disgust as she bounces on your dick<</narrate>>
<<say "cons">>Ohhh~<</say>>
<<narrate>>As your sweaty bodies clap against each other the equipment wobbles and cries out in pain with each movement.<</narrate>>
<<say "cons">>Oh fucking yes. Watch me, honey, fucking watch me!<</say>>
<<narrate>>Her vaginal muscles tighten their grip on your dick as the orgasm takes over her body; her eyes firmly locked with her husband's.<</narrate>>
<<say "mc">>Oh fuck, I'm gonna cum!<</say>>
<<say "cons">>Spray it on my face. Show the little dick how a real man marks his territory!<</say>>
<<vid "east/cons05.mp4">>
<<narrate>>You paint her face with your spunk.<</narrate>>
<<say "mc">>Shit, fucking, shit, yes! Holy crap!<</say>>
<<narrate>>As the last drop falls, she takes your cock back into her mouth and polishes off any remnants from your bellend.<</narrate>>
<<say "cons">>You see that? That's how a real man fucks.<</say>>
<<narrate>>She turns back to you.<</narrate>>
<<say "cons">>God that was hot.<</say>>
<<narrate>>She turns back to her husband and nods at him; he nods back.<</narrate>>
<<say "cons">>Listen, we don't normally do this, but if you fancy another evening with me, my husband and I would certainly be up for a repeat performance. Here's our address. I know I said no names, but I didn't expect your cock to be so... fucking good. I'm <<textbox "$cons.name" Tabitha>>. I hope to see you soon.<</say>>
<<if $alias == undefined>>
<<think "mc">>I should probably use an alias while I'm here.<</think>>
<</if>>
<<say "mc">><<if $alias == undefined>><<textbox "$alias" Frank>><<else>><<if $tempvar2 == "ne">>$name<<else>>$alias<</if>><</if>>. I look forward to meeting you again soon.<</say>>
<<unlock "cons" "cons">>
<<meet "cons">>
<<if $tempvar2 == "ne">>
<<event "cons" "step">>
<<event "cons" "neintro">>
<<cont "neweden" "" 2>>
<<else>>
<<button "Continue" east-indlook>>
<<set $east.cucked = 1>>
<<temp "return">>
<</button>>
<</if>>
<<case "boss">>
<<say "side" "Steve">>I suppose I might be persuaded to save your sorry hide.<</say>>
<<say "rec">>Yes, sir. I understand. Please. Let me make it up to you.<</say>>
<<say "side" "Steve">>Hands on the desk.<</say>>
<<block "east/rec03.jpg">>
<<say "rec">>Yes sir!<</say>>
<<think "mc">>Shit, she's looking right in my direction. Has she noticed me?<</think>>
<<say "side" "Steve">>You will call me master!<</say>>
<<say "rec">>Yes master!<</say>>
<<think "mc">>Phew, looks like I'm okay.<</think>>
<</block>>
<<narrate>>He grabs her ass.<</narrate>>
<<center "east/rec04.jpg">>
<<say "side" "Steve">>Do you like that, girlie?<</say>>
<<say "rec">>Yes, master. Please. More. I am so wet.<</say>>
<<say "side" "Steve">>You'll get more when you deserve it.<</say>>
<<narrate>>He hitches up her skirt and brings his hand up into the air with an open palm.<</narrate>>
<<block "east/rec05.jpg">>
<<say "side" "Steve">>This is for your insubordination.<</say>>
<<narrate>>His hand comes hurtling down, slapping her ass with an almighty clap.<</narrate>>
<<say "rec">>Ahhh~ master. Sorry. Please.<</say>>
<<say "side" "Steve">>We're done when I say we're done.<</say>>
<<narrate>>Again he spanks her bare ass.<</narrate>>
<<say "rec">>Ahhh~ Yes. Sorry master. Of course.<</say>>
<</block>>
<<think "mc">>Wow, this is kinda intense. She seems to be enjoying it, though.<</think>>
<div id="replace">
<<choices "">>
<<link "Keep Watching" eastsex>>
<<temp "boss02">>
<</link>><br>
<<link "Intervene" eastsex>>
<<temp "intervene">>
<</link>><br>
<<link "Leave">>
<<replace "#replace">>
<<narrate>>You sneak back out of the room, and again nonchalantly walk through the main office. You decide to explore a few more rooms, but find nothing of value so leave.<</narrate>>
<<say "side" "Worker A">>Who was that handsome guy just walking around the place checking all the rooms?<</say>>
<<say "side" "Worker B">>Probably just some gormless idiot sent by upper management to inspect the place.<</say>>
<<say "side" "Worker A">>Wonder if he's single?<</say>>
<<say "side" "Worker B">>Girl. He's not gonna be interested in you. You barely make quota.<</say>>
<<say "side" "Worker A">>Ugh, whatever!<</say>>
<<button "Continue" easthub>>
<<set $east.lech = "left2">>
<<time 3>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "boss02">>
<<vid "east/rec01.mp4">>
<<narrate>>You watch with fascination as he grabs her hair and continues to spank her. There's no more words, just a constant barrage of slaps.<</narrate>>
<<narrate>>Which each slap her expression is filled with lust. She's clearly enjoying the so-called punishment.<</narrate>>
<<think "mc">>I can't help but think he's been a bit soft, though. Her ass is barely even red!<</think>>
<<say "side" "Steve">>Do you understand now, girlie? Will you do better?<</say>>
<<narrate>>He pulls her skirt back down.<</narrate>>
<<center "east/rec07.jpg">>
<<think "mc">>Is she starting directly at me? No... she would have said something, surely.<</think>>
<<narrate>>She gives you a wink.<</narrate>>
<<think "mc">>Shit, she knew I was here all along. Well, nothing to lose now!<</think>>
<<button "Continue" eastsex>>
<<temp "intervene">>
<<set $east.lech = "watch2">>
<</button>>
<<case "intervene">>
<<say "mc">>Just what the hell is going on in here?<</say>>
<<say "side" "Steve">>Who are you? What are you doing in my office?<</say>>
<<think "mc">>I did not think this through.<</think>>
<<say "mc">>Inspection. And to my absolute horror, I find a manager physically disciplining a staff member.<</say>>
<<narrate>>You turn to face the secretary.<</narrate>>
<<say "mc">>Are you okay?<</say>>
<<narrate>>She nods, but she looks disappointed.<</narrate>>
<<say "side" "Steve">>What inspection? Nobody told me about an inspection!<</say>>
<<say "mc">>Wouldn't do us much good if you hid all your dirty little secrets before I got here, now would it?<</say>>
<<left2 "east/rec08.jpg">>
<<say "side" "Steve">>Listen. It's not what it looks like. It's a game. She enjoys it!<</say>>
<<say "mc">>Really now? So the young miss here likes to get punished, does she? And even if that were true, do you really think it appropriate behavior in the workplace? Just you wait until $eva.name finds out about this!<</say>>
<<narrate>>His face goes pale.<</narrate>>
<<say "side" "Steve">>Shit. Please, no. I'm already on my final warning, I need this job!<</say>>
<<narrate>>You can't help but notice the secretary bite her lip as you shout at her boss.<</narrate>>
<<say "mc">>Miss, may I ask your name?<</say>>
<<say "rec">><<textbox "$rec.name" Belinda>>, sir.<</say>>
<<say "side" "Steve">>Tell him, tell him how you wanted this!<</say>>
<<button "Continue" eastsex>>
<<meet "rec">>
<<temp "intervene02">>
<</button>>
<<case "intervene02">>
<<narrate>>You turn to the secretary, and while her boss buries his face in his hands you shake your head at her and mouth the word no.<</narrate>>
<<say "mc">>Is this true, $rec.name? Were you a willing participant in this?<</say>>
<<narrate>>She looks at you, full of desire.<</narrate>>
<<say "rec">>No sir. Not at all.<</say>>
<<say "side" "Steve">>You lying whore! You tell him now. You obey your master.<</say>>
<<say "mc">>You settle down. You're done. There's no job for you here anymore. Get out. You do not treat a woman like that on my watch.<</say>>
<<say "side" "Steve">>Are you fucking kidding me? This is bullshit. Absolute bullshit! You've not heard the last of me!<</say>>
<<narrate>>He storms off.<</narrate>>
<<say "rec">>Fuck. That was hot. The way you commanded him like that. You made him your little bitch.<</say>>
<<say "mc">>He had it coming. Whether it was consensual or not, the man's a prick and we've had several complaints.<</say>>
<<think "mc">>I have no fucking idea how I'm getting away with this.<</think>>
<<if $east.lech == "watch2">>
<<say "rec">>You were watching for so long. Were you getting off on it? I know I damn well was!<</say>>
<<say "mc">>He was too soft. Your ass barely looks like it was punished at all! Absolute amateur.<</say>>
<<say "rec">>Perhaps you would like to do it correctly?<</say>>
<<think "mc">>I mean, fuck, kinda. But this might be my only chance to check this place out.<</think>>
<<say "mc">><i>Girl</i>, do not presume to know what I want. You have work to do, do you not?<</say>>
<<elseif $east.lech == "watch">>
<<say "rec">>You know I saw you watching? It was an absolute turn on.<</say>>
<<say "mc">>I was merely assessing the situation.<</say>>
<</if>>
<<say "rec">>So you're really against a bit of... fun in the workplace?<</say>>
<<say "mc">>Settle down, <i>girl</i>. There's a time and place for the kind of thing.<</say>>
<<narrate>>She visibly shivers with lust as you enunciate the word girl.<</narrate>>
<<say "rec">>Then perhaps my new master would find it fitting to punish me?<</say>>
<<think "mc">>Seriously? Wow.<</think>>
<<say "mc">>You get out there and do your damn job. We'll see about your punishment after.<</say>>
<<say "rec">>Yes, master. Of course.<</say>>
<<narrate>>She grabs a piece of paper and starts jotting something down.<</narrate>>
<<say "mc">>What are you doing? Go do what you're damn well paid to do.<</say>>
<<say "rec">>An open invitation, master.<</say>>
<<narrate>>She brushes past you as she leaves, placing the piece of paper in your shirt pocket.<</narrate>>
<<say "rec">>I hope to see you soon, master.<</say>>
<<narrate>>After she's gone you take a look at the paper. It's her address.<</narrate>>
<<think "mc">>Fuck. This lie is <i>really</i> paying off. If I want to play her master, I could definitely visit her one evening.<</think>>
<<narrate>>You decide to look around the room, fairly confident people now think you're someone important and thus can get away with just about anything right now. You go through the manager's emails, it's mostly stuff between him and his friends about their 'conquests'<<if $tempvar2 != "ne">> but you do find some more meaningful data sent from $eva.name herself<</if>>.<</narrate>>
<<if $tempvar2 == "ne">>
<<event "rec" "step">>
<<think "mc">>Wow, reading these emails, the guy is a jerk. Let me just forward these to $eva.name. He needs more than a firing! He did not think she was into it, the guy was genuine disciplining her for his own satisfaction with out any thought for her well being. He got lucky she was into it, but BDSM is built on trust, it wouldn't have lasted long.<</think>>
<<cont "nestuff" "" 1>>
<<else>>
<<narrate>>Looks to be a round-robin email to several middle-managers rather than to anyone specifically. The email details a charity event in aid of one of $howard.name's causes. The email asks for them to reply with the name of an employee they want to reward, and they'll be put on the invite list, with a plus one.<</narrate>>
<<think "mc">>Hmmm, that probably means she'll be there too. It's the evening before their meeting, but it might give me the ability to meet her, or even $howard.name. It doesn't look like he has even read it. I'll reply with $rec.name's name. Given her apparent obedience it should be pretty easy to tell her she's taking me.<</think>>
<<narrate>>You reply with $rec.name's name stating she will confirm the name of her plus one directly.<</narrate>>
<<if $east.sec == "6">>
<<think "mc">>This is the same event $sec.name invited me to. If I invite $rec.name too, I'll have to chose between them.<</think>>
<</if>>
<<button "Continue" easthub>>
<<set $east.lech = "intervened">>
<<set $intel.eva.pushUnique('She\'ll be attending a charity event at city hall the night before the cabinet meeting.')>>
<<set $intel.howard.pushUnique('Possible guest at the charity event at city hall the night before the cabinet meeting.')>>
<<time 3>>
<</button>>
<</if>>
<<case "gperform">>
<<center "east/genvoy/genvoycrop.jpg">>
<<choices "Who should $genvoy.name perform with?">>
<div class="flex">
<<if $anna.performed == undefined && $anna.mature != true>>
<div class="girlChoice">
<<link '<<center "anna/badge.jpg">>$anna.name' annasex>>
<<temp "pat01">>
<</link>>
</div>
<<elseif $anna.mature == true>>
<div class="girlChoice" style="cursor: default;">
<<center "anna/mature/badge.jpg">>$anna.name needs to be in<br>her younger form.
</div>
<<else>>
<div class="girlChoice" style="cursor: default;"><<center "anna/badge.jpg">>$anna.name already<br>performed today.</div>
<</if>>
<<if checkUnlocks('movie', 'anna', 'genvoy') == true>>
/* anyone else? */
<</if>>
</div>
<<link "Never mind" mngbrothel>><</link>>
<</choices>>
<</switch>><<if $cabinet != undefined && $cabinet < 4 && $saweast == undefined>>
<center style="font-size: 300%">Meanwhile, at Central...</center>
<<center "council/council.jpg">>
<<say "councila" "Council Member A">>Has $kp.name reported back yet?<</say>>
<<say "councile" "Council Member E">>No. Nothing as yet.<</say>>
<<say "councila" "Council Member A">>It's taking too long. Let's just destroy the patron already!<</say>>
<<say "councilb" "Council Member B">>Why so eager?<</say>>
<<say "councilc" "Council Member C">>Oh, it's not like you to weigh in.<</say>>
<<say "councilb" "Council Member B">>Well, they're an interesting plaything. It piqued my interest so I went down there.<</say>>
<<say "councild" "Council Member D">>You went down there?! Do you not trust $kp.name?<</say>>
<<say "councilb" "Council Member B">>Eh, that's irrelevant. I just wanted to see what was going on. And you know, they're doing exactly what this council was formed to do.<</say>>
<<say "councild" "Council Member D">>What do you mean? And since when do you care?<</say>>
<<say "councilb" "Council Member B">>Honestly, I don't. You all serve for the betterment of the travelers, and I know you'd soon love to see me off the council.<</say>>
<<say "councile" "Council Member E">>What no? Of course not.<</say>>
<<say "councilb" "Council Member B">>Bullshit. But either way, they're down there trying to protect travelers.<</say>>
<<say "councile" "Council Member E">>What? How?<</say>>
<<say "councilb" "Council Member B">>There's a threat there to his companions, to his hub and thus to the travelers. But they're handling it; they're literally saving lives. Is that not what you want?<</say>>
<<say "councila" "Council Member A">>How do we know they're not raising a damn army? And why didn't you just clear the threat yourself?<</say>>
<<say "councilb" "Council Member B">>Not my monkey. Not my circus. $kp.name hasn't removed it either, I might add. Likely to see what they're capable of. Go down there if you want and check it out yourselves.<</say>>
<<narrate>>She points at the two men.<</narrate>>
<<say "councilb" "Council Member B">>Though I know you two are too fucking cowardly for that. <</say>>
<<narrate>>She then points at one of the female members.<</narrate>>
<<say "councilb" "Council Member B">>And you, holy shit, now I understand why you dared threaten me. They're not just another patron to you, huh?<</say>>
<<say "councila" "Council Member A">>What are you talking about? What's going on?<</say>>
<<say "councilb" "Council Member B">>Go down there and see for yourself if you want. Otherwise just let $kp.name do her fucking job.<</say>>
<<say "councila" "Council Member A">>How dare you speak to me that way.<</say>>
<<say "councilb" "Council Member B">>Oh put a sock in it. I'll speak to you how I damn well please. That's the right my father has afforded me.<</say>>
<<narrate>>There's a general murmur of discontent but nobody challenges her.<</narrate>>
<<say "councilc" "Council Member C">>I motion we wait.<</say>>
<<say "councile" "Council Member E">>Fine. But we can't put this off forever.<</say>>
<<narrate>>In unison, the others agree with the motion.<</narrate>>
<<narrate>>After the chatter dies down and the council breaks off, only two remain.<</narrate>>
<<say "councilc" "Council Member C">>What changed?<</say>>
<<say "councilb" "Council Member B">>Nothing for you to worry about. You have your secrets, I have mine. Just know that for now, I don't want my toy to break.<</say>>
<<button "Continue" eastsleep>>
<<set $saweast = 1>>
<</button>>
<<else>>
<<if $eastdreams == undefined>>
<<vid "dreams/east/war01.mp4">>
<<narrate>>Visions of war haunt your dreams.<</narrate>>
<<think "mc">>I can't let this happen!<</think>>
<<set $eastdreams = 1>>
<<elseif $eastdreams == 2>>
<<vid "dreams/east/war02.mp4">>
<<narrate>>Visions of war haunt your dreams.<</narrate>>
<<think "mc">>I can't let this happen!<</think>>
<<set $eastdreams++>>
<<elseif $eastdreams == 4>>
<<vid "dreams/east/war03.mp4">>
<<narrate>>Visions of war haunt your dreams.<</narrate>>
<<think "mc">>I can't let this happen!<</think>>
<<set $eastdreams++>>
<<elseif $cabinet == 0>>
<<narrate>>The anxious feeling you've had since arriving here seems to have washed away leaving you feel somewhat relaxed. Your dreams are no longer bridled by images of war.<</narrate>>
<<vid "dreams/east/over.mp4">>
<<narrate>>The dream feels abstract and obtuse... and yet so very familiar. The dream feels lucid and it somehow reminds you of when you'd navigate the gateway in your mind to access the buffer. You start to notice patterns forming and you trace them with your mind, images of people flow through you. Thoughts of $krissy.name and $kenna.name, but more strangely even the nurse from a few days ago.<</narrate>>
<center><div class="girlChoice hover"><img @src="setup.img+'kenzie/nursecrop.jpg'"></div></center>
<<narrate>>Confused, your mind tries to focus on the nurse. You're unsure why she fills your dream, but you remember how mind-blowingly good she was. You're almost saddened that you may never meet her again. As the feeling grows the picture before you morphs, until she's on her knees before you, your cock firmly in her mouth.<</narrate>>
<<cont "eastsex" "dream">>
<<script>>
setup.scriptpromise.then(function () {
$('#after').addClass('noshow');
});
<</script>>
<<else>>
<<narrate>>You have a vivid dream; it almost feels real.<</narrate>>
<<set _vd = random(1,69)>>
<<set _l = "dreams/"+_vd+".webp">>
<<center _l>>
<<set $eastdreams++>>
<br>
<</if>>
<center id="after">
<<button "GOOD MORNING SUNSHINE" eastwake>>
<<temp "">>
<<if $east != undefined>>
<<set $east.mildone = undefined>>
<</if>>
<<run endDay()>>
<<if $cabinet == undefined>>
<<set $cabinet = 7>>
<</if>>
<<if $cabinet == 0>>
<<temp "return">>
<</if>>
<<set $cabinet-->>
<<if $cabinet == 6>>
<<if $mc.events.eastentry == 'pipe'>><<time 4>><</if>>
<<if $mc.events.eastentry == "am">>
<<temp "va">>
<<else>>
<<temp $mc.events.eaststay>>
<</if>>
<</if>>
<<if $intel == undefined>>
<<set $intel = {gerald:[],howard:[],eva:[],va:[],city:[]}>>
<</if>>
<</button>>
</center>
<</if>><<set _whoe = State.variables[$awaypartyeast]>>
<<set _who = State.variables[$awaypartystray]>>
<<switch $tempvar>>
<<case "krissylounge">>
<<say "krissy">>Alright. You ready to head to the Platinum Lounge?<</say>>
<<say "mc">>This early? I doubt $gerald.name is there. Will they even let us in so early?<</say>>
<<say "krissy">>I work there now. They'll let us in the <i>Glitter Box</i> for sure, even if not upstairs. Performers are allowed to practice there when it's closed. It gives us some time to look around before I face $gerald.name.<</say>>
<<say "mc">>Huh, yeah, okay. That makes sense, I guess.<</say>>
<<narrate>>The two of you leave for the Glitter Box, as you approach she gestures down an alley.<</narrate>>
<<say "krissy">>Booker told me to use the back entrance.<</say>>
<<narrate>>She giggles to herself.<</narrate>>
<<think "krissy">>Just like he did!<</think>>
<<say "mc">>What's so funny?<</say>>
<<say "krissy">>Oh, nothing. Come on.<</say>>
<<narrate>>You follow her around to the back. There's a large metal door with a keypad, she enters the code and you head inside.<</narrate>>
<<say "krissy">>Probably only cleaning staff around this time of the morning, I doubt any of the other performers are—<</say>>
<<say "gerald">>$krissy.name?! Is that you?!<</say>>
<<narrate>>She grimaces.<</narrate>>
<<say "krissy">>$gerald.name. What a surprise.<</say>>
<<narrate>>He looks at you suspiciously.<</narrate>>
<<say "gerald">>And you're with $alias. What are you doing here?<</say>>
<<say "mc">>She's one of my recruits. You two know each other?<</say>>
<<think "mc">>Play it cool!<</think>>
<<say "krissy">>Yes, $gerald.name and I met... a long time ago.<</say>>
<<say "gerald">>What are you doing here, $krissy.name? We assumed you never came through. You should be serving the cabinet, not working here... though I certainly remember how much you enjoyed performing.<</say>>
<<narrate>>He grins.<</narrate>>
<<say "gerald">>Come. Come, let me show you around. $alias, join us.<</say>>
<<narrate>>You both hesitantly follow.<</narrate>>
<<cont "east-ent" "krissylounge02">>
<<case "krissylounge02">>
<<say "gerald">>So where have you been all this time, $krissy.name?<</say>>
<<say "krissy">>You know, just keeping my head down. I wanted to live quietly.<</say>>
<<say "gerald">>Ha! That's not the woman I remember, I'm sure had you known about the lounge you'd have been here from the start. You always loved to have people watch.<</say>>
<<narrate>>She looks at you with an expression of guilt.<</narrate>>
<<say "gerald">>And you, $alias, wow! You've found a great one here. Have you had her pleasure yet? What am I saying, of course you have! I'd love to see you and her perform together.<</say>>
<<narrate>>You stare back at him, unsure what to say.<</narrate>>
<<say "krissy">>I think I'm going to stick to performing with women, $gerald.name. At least for now.<</say>>
<<say "gerald">>That's a shame. But do let me know if I can ever convince you otherwise.<</say>>
<<narrate>>He continues to show you both around, talking about his little empire and how much he helps the women working for him here.<</narrate>>
<<say "gerald">>I can't wait to tell the others you're here, $krissy.name. I know $howard.name especially will be thrilled.<</say>>
<<say "krissy">>I'd prefer to keep a low profile for now, if that's okay. Do any of the others visit here?<</say>>
<<say "gerald">>No. This is my thing and I have excluded them from it purposefully. As much as I'd enjoy watching $eva.name here, I do not wish to mix business with pleasure.<</say>>
<<say "krissy">>I understand that. I feel much the same way.<</say>>
<<say "gerald">>Where on Earth did you meet her, $alias?<</say>>
<<think "mc">>Best make up some bullshit.<</think>>
<<say "mc">>Honestly, I've known her a long while, so when this gig came up I knew she'd be up for it.<</say>>
<<say "gerald">>Good man. Good man. I'm afraid I'm short on time, I'd love to catch up more, but I only stopped by to pick up some things. I'm sure you understand, given the invasion preparation. But I'll certainly make sure I'm here for your first performance.<</say>>
<<say "krissy">>Of course, $gerald.name. I'll make sure to entertain you.<</say>>
<<narrate>>He grins.<</narrate>>
<<say "gerald">>I don't doubt it. Now, if you'll excuse me.<</say>>
<<narrate>>After he leaves, $krissy.name takes a large sigh of relief.<</narrate>>
<<say "krissy">>I can't stand that man! I wanted to some more digging around the place before meeting him; that was the whole point of coming early!<</say>>
<<narrate>>She raises her fists and bares her teeth, almost comically.<</narrate>>
<<say "krissy">>That said, it may have helped a little. He even left us in his office.<</say>>
<<say "mc">>How so?<</say>>
<<say "krissy">>All the staff saw us walking around with him, they won't think it weird if I'm here hanging around for the rest of the day... even without being wrapped around a stripper pole. Though, I better go get changed; I still need to look the part.<</say>>
<<think "mc">>That conjures an unexpected mental image.<</think>>
<<say "mc">>Yeah, of course.<</say>>
<<narrate>>She waves at you then heads for the changing rooms. You look around the office for a few minutes but find nothing of value.<</narrate>>
<<cont "east-ent" "krissylounge03">>
<<case "krissylounge03">>
<<think "mc">>Hmm, she's taking her time. I wonder what's taking her so long. I'm gonna head back downstairs, see if I can get anything from the staff.<</think>>
<<narrate>>You head downstairs when you notice a woman with her back to you dressed in black lingerie.<</narrate>>
<<think "mc">>Wow, look at that ass. Man, I'd like to perform with her!<</think>>
<<narrate>>The woman turns back to you.<</narrate>>
<<center "krissy/strip01.jpg">>
<<say "krissy">>$alias?! What are you still doing here? Were... were you checking out my ass?<</say>>
<<narrate>>Your eyes quickly shoot up to her face.<</narrate>>
<<set _uc = $krissy.refer.toUpperFirst()>>
<<say "mc">>_uc? Holy shit!<</say>>
<<say "krissy">>Keep your voice down.<</say>>
<<narrate>>You cheeks go red.<</narrate>>
<<say "mc">>I didn't know... I thought you were getting ready... I just saw a beautiful ass and got... oh god no!<</say>>
<<narrate>>She shifts uncomfortably, her face as red as yours.<</narrate>>
<<say "krissy">>Just go before this gets any more awkward. I didn't think you were waiting for me!<</say>>
<<say "mc">>Uh, right yes.<</say>>
<<narrate>>As you're about to leave, $genvoy.name approaches you.<</narrate>>
<<block "east/genvoy/krissy01.jpg">>
<<say "genvoy">>$alias! Good to see you. Admiring the fruits of your labor, huh?<</say>>
<<say "mc">>Uh, yes.<</say>>
<<say "genvoy">>$gerald.name was very pleased. I just had to come over and see what the fuss was about.<</say>>
<<say "mc">>Haha! Of course. Anyway, I really must go.<</say>>
<<say "genvoy">>Nonsense, sit with me. Let's watch her practice.<</say>>
<</block>>
<<narrate>>$krissy.name stares daggers at you.<</narrate>>
<<say "krissy">>I really think $alias needs to go he was just saying—<</say>>
<<say "genvoy">>He can spare fifteen minutes can't you, $alias? Let's watch her together.<</say>>
<<narrate>>$krissy.name grits her teeth and stares angrily at you.<</narrate>>
<<think "mc">>Fuck. What the hell do I do?<</think>>
<div id="replace">
<<choices>>
<<link "Leave">>
<<replace "#replace">>
<<say "mc">>I'm sorry, $genvoy.name, but I really can't stay. Maybe another time.<</say>>
<<narrate>>You quickly scurry away as she tries to protest. She shouts over the empty club as you reach the exit.<</narrate>>
<<say "genvoy" "" "(Yelling)" "shout">>You're missing a great show, $alias.<</say>>
<<narrate>>You wave at her as you close the door behind you.<</narrate>>
<<think "mc">>Fuck, my dick is so hard right now. I really hope $krissy.refer didn't notice. I just need to leave her to it, she'll let me know what she finds in the morning.<</think>>
<<cont "easthub" "" 3>>
<</replace>>
<</link>><br>
<<link "Stall">>
<<replace "#replace">>
<<think "mc">>Shit... what do I say?<</think>>
<<narrate>>Before you're able to formulate any sort of response, $genvoy.name pulls you over to a chair, places her hand on your thigh and motions for $krissy.name to continue.<</narrate>>
<<cont "east-ent" "krissylounge04">>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "krissylounge04">>
<<say "krissy">>Are you sure you have time for this, $alias? Didn't you say you had to—<</say>>
<<say "genvoy">>$krissy.name, please. Continue. And what's with that face? Come on, show me the seductress that $gerald.name was harping on about!<</say>>
<<narrate>>She puts on a fake smile, and leans back on the bar.<</narrate>>
<<center "krissy/strip02.jpg">>
<<say "genvoy">>Just look at that figure, $alias. Isn't she remarkable?<</say>>
<<say "mc">>Uh, yes. Of course.<</say>>
<<say "genvoy">>You seem nervous, $alias. You weren't like this when I watched you before.<</say>>
<<say "mc">>Sorry, not a morning person.<</say>>
<<narrate>>She rubs your crotch.<</narrate>>
<<say "genvoy">>Your erection says otherwise. Come on, $krissy.name, show him the good stuff.<</say>>
<<narrate>>$krissy.name's eyes go wide as $genvoy.name speaks. But she retains her composure. She lifts her leg up on to the bar and looks back at you both over her shoulder.<</narrate>>
<<center "krissy/strip03.jpg">>
<<think "mc">>Wow, she's really playing the part. I can't help but notice she's trying to avoid eye contact with me, though.<</think>>
<<say "genvoy">>Damn, just look at her. You mind if I play with myself?<</say>>
<<say "krissy">>Not at all, be my guest.<</say>>
<<think "mc">>She didn't even flinch or have to think about that! She's either a great actor, or wants $genvoy.name to fap over her.<</think>>
<<narrate>>$genvoy.name pulls her dress over her head and rests it on the back of the chair before she starts casually massaging her clit like it's the natural thing to do in this scenario.<</narrate>>
<<block "east/genvoy/krissy02.jpg">>
<<narrate>>You try to focus on $genvoy.name, her luscious lips soaking as she rubs herself while looking at $krissy.name.<</narrate>>
<<say "genvoy">>God, you're hot. I get why $gerald.name was speaking so highly of you. Keep working it, babe.<</say>>
<<narrate>>A genuine smile comes across $krissy.name's face for a fleeting moment, before she looks back at you, a look of horror. Quickly, she composes herself and carries on with the show.<</narrate>>
<<narrate>>There's the sound of fabric hitting the floor and $genvoy.name starts rubbing more furiously.<</narrate>>
<<say "genvoy">>Now look at that! What are you looking at me for, $alias? Take a look at the beauty before you.<</say>>
<<narrate>>Reluctantly, you turn your head back to $krissy.name.<</narrate>>
<<think "mc">>I need to go, $krissy.name is gonna chew me out enough already.<</think>>
<</block>>
<<say "mc">>Sorry, $genvoy.name, I really must go.<</say>>
<<narrate>>She pauses for a moment and as you stand up she pulls at your trousers.<</narrate>>
<<say "genvoy">>Not until you've taken care of this!<</say>>
<<narrate>>$krissy.name stares at your engorged penis, shocked.<</narrate>>
<<say "genvoy">>He's an impressive specimen, isn't he, $krissy.name?<</say>>
<<say "krissy">>Y-Yes...<</say>>
<<narrate>>As you turn back to face your $krissy.them, you notice her bra on the floor and her breasts fully exposed.<</narrate>>
<<center "krissy/strip04.jpg">>
<<narrate>>Your dick pulses with expectation as you feast your eyes on her glorious bosom.<</narrate>>
<<say "genvoy">>Ha! Just look how his dick hungers for you, $krissy.name!<</say>>
<<narrate>>She reflexively goes to cover up then quickly stops when she looks back at $genvoy.name. You can see a hint of excitement in her eyes, but can also sense her awkwardness.<</narrate>>
<<think "mc">>God, just look at her, she's fucking gorgeous. Is she enjoying this? Am I imagining things?<</think>>
<<narrate>>Your dick twitches and you can't help but notice $krissy.name's eyes remain fixated.<</narrate>>
<<think "mc">>Fuck fuck fuck. I gotta get outta of this.<</think>>
<<narrate>>You quickly pull up your trousers.<</narrate>>
<<block "east/genvoy/krissy03.jpg">>
<<say "genvoy">>What are you doing, $alias? Let's have some fun... I don't normally entertain men, but I'd be willing to help you finish in light of this wonder before us.<</say>>
<<narrate>>$krissy.name stares at you, a look of horror on her face.<</narrate>>
<<think "mc">>Oh, god... I actually want to. This could be the only chance I ever get with $genvoy.name... but I can't.<</think>>
<<say "mc">>Honestly, I'd really love to. Any other time, but I really must go. I am sorry.<</say>>
<<narrate>>$genvoy.name looks at you with disappointment, while $krissy.name sighs with relief.<</narrate>>
<<say "genvoy">>That's a shame. Your loss, $alias.<</say>>
<</block>>
<<narrate>>You scurry away, your hard dick making it difficult to walk properly as it rubs against your trousers. $genvoy.name shouts over the empty club as you reach the exit.<</narrate>>
<<say "genvoy" "" "(Yelling)" "shout">>You're missing a great show, $alias.<</say>>
<<narrate>>You wave at her as you close the door behind you.<</narrate>>
<<think "mc">>Fuck, my dick is so hard right now. I can't believe that just happened... I can't believe I wanted to do more. Fuck.<</think>>
<<narrate>>You lean back on the wall beside the club and push your head back to rest on the brickwork.<</narrate>>
<<think "mc">>This is so fucked up. Let's just hope $krissy.refer gets something worthwhile from this. I don't know I'll be able to look her in the eye for a while, though.<</think>>
<<narrate>>You wait a few minutes for your erection to fade, trying hard to think about anything else. Eventually it subsides and you walk off down the street.<</narrate>>
<<button "Continue" easthub>>
<<set $east.krissystrip = 1>>
<<corrupt "krissy" 6>>
<<time 3>>
<</button>>
<<case "blast2">>
<<narrate>>You head over to meet $krissy.name at the pharmacy as agreed.<</narrate>>
<<say "mc">>Why do they need pharmacies if they don't get ill?<</say>>
<<say "krissy">>Well, clearly recreational drugs for one, but also, bandages and that kind of thing. We may be immune to most illnesses here, but not injury.<</say>>
<<say "mc">>How does that work, anyway?<</say>>
<<say "krissy">>Think of it like inoculations when you have to travel abroad. The universes have many, many illnesses, the gateways inoculate against known diseases and the like. It wouldn't be safe otherwise, there'd be mass pandemics on every planet due to some foreign bacteria that one planet has evolved immunity to, but another has never encountered.<</say>>
<<say "mc">>Oh... right.<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "krissy">>You just go deal with the pharmacist. It's looks empty in there, so you should be able to distract her while I sneak in the back.<</say>>
<<narrate>>You both enter and $krissy.name quickly shoots off to the side, hoping not to be noticed.<</narrate>>
<<block "east/pharm01.jpg">>
<<say "pharm">>What do you want?<</say>>
<<think "mc">>What a warm greeting.<</think>>
<<say "mc">>Hi, was just wondering if you could help me—<</say>>
<<say "pharm">>Yes, yes. Just get to it.<</say>>
<<say "mc">>Am I disturbing you?<</say>>
<</block>>
<<say "pharm">>We're about to close. What do you want?<</say>>
<<think "mc">>Ugh. Not a very friendly woman.<</think>>
<<narrate>>$krissy.name gently pushes the door and sneaks into the back while you're talking to the pharmacist.<</narrate>>
<<say "mc">>Blast?<</say>>
<<narrate>>She tuts.<</narrate>>
<<say "pharm">>Of course it is. Nobody ever wants anything fucking else.<</say>>
<<say "mc">>Well, is there anything else you'd recommend?<</say>>
<<narrate>>As if regarding you for the first time she actually cracks a smile.<</narrate>>
<<block "east/pharm02.jpg">>
<<say "pharm">>I recommend this spray. Will increase your stamina so you don't keep disappointing your partners.<</say>>
<<say "mc">>I've had no complaints.<</say>>
<<say "pharm">>Sure. Sure. And tell me how many women have you satisfied with your tiny little prick recently?<</say>>
<<say "mc">>Tiny? Lady, you don't know what you're talking about.<</say>>
<<say "pharm">>Yeah. Sure. Sure.<</say>>
<</block>>
<<think "mc">>Fuck this bitch.<</think>>
<<say "mc">>Take a look for yourself!<</say>>
<<narrate>>You drop your trousers revealing your dick. She gasps, but then a smile creeps across her face.<</narrate>>
<<say "pharm">>Certainly more impressive than the usual bunch. But do you have the stamina?<</say>>
<<say "mc">>You wanna find out?<</say>>
<<narrate>>She moves around you to lock the door, grabs some lube off the shelf and grins at you.<</narrate>>
<<say "pharm">>I'll have you done in two minutes.<</say>>
<<narrate>>You chortle as she rips open her top and rubs her breasts with lube.<</narrate>>
<<meet "pharm">>
<<cont "eastsex" "pharm01">>
<<case "blast3">>
<<say "pharm">>Well, you weren't half bad. Perhaps you're not all talk after all. I'd better go clean up. Do come again.<</say>>
<<narrate>>She goes to unlock the door and notices it already is.<</narrate>>
<<say "pharm">>Shit, could have sworn I locked it.<</say>>
<<narrate>>She shrugs and heads into the back.<</narrate>>
<<think "mc">>She was fucking insatiable, but fuck me it was good.<</think>>
<<narrate>>You collect your things and meet $krissy.name outside.<</narrate>>
<<say "krissy">>Is that your solution to everything? I can't believe I had to watch that! You're my $krissy.you for crying out loud!<</say>>
<<say "mc">>It just kinda happened. Did you get what you needed?<</say>>
<<say "krissy">>Yeah, there was an order from the cabinet to decrease the price during these trying times. It was signed off by $va.name. But additionally, there was another explaining supply would be increased to meet the demand, and that was from $gerald.name.<</say>>
<<say "mc">>You think they're working together? Why would she let me stay here...?<</say>>
<<say "krissy">>I suspect she's playing both sides. Edging her bets. Tread carefully with that one.<</say>>
<<button "Continue" easthub>>
<<meet "pharm">>
<<set $intel.va.pushUnique('Order decreased price of Blast.')>>
<<set $intel.gerald.pushUnique('Increased production of Blast.')>>
<<set $east.blast = 4>>
<<corrupt "krissy" 3>>
<<time 3>>
<</button>>
<<case "hollymeet">>
<<if $tempvar2 != "ne">>
<<narrate>>You and _whoe.name walk through town together, passing several bars and entertainment venues.<</narrate>>
<<say $awaypartyeast>>Let me go ahead and chat to her first.<</say>>
<<say "mc">>And how will she know it's you?<</say>>
<<if $awaypartyeast == "aubree">>
<<narrate>>She taps her nose.<</narrate>>
<<say "aubree">>Let's just say she owes me a favor. She'll know it's me.<</say>>
<<else>>
<<say $awaypartyeast>>She owes $aubree.name a favor... for something she wouldn't share with anyone else under normal circumstances.<</say>>
<</if>>
<<think "mc">>Now I'm intrigued.<</think>>
<<say "mc">>Okay, shout me over when it's clear.<</say>>
<<say $awaypartyeast>>You'll like her, she's the sweetest thing.<</say>>
<<narrate>>She heads off toward the door.<</narrate>>
<<think "mc">>Putting a lot of faith in a stranger here, but I guess she's no stranger to $aubree.refer.<</think>>
<<else>>
<<narrate>>You and $aubree.name head to New Eden together. You walk through a lively street with a variety of bars and clubs.<</narrate>>
<<say aubree>>Let me go say hi and tell her who you are before you rock in there announcing you're the big scary patron everyone feared until recently.<</say>>
<<say mc>>Yeah... okay.<</say>>
<</if>>
<<narrate>>You watch as the two converse by the door. You can't help but notice how she's studying you. She gestures you over.<</narrate>>
<<say "holly">>A patron, huh? Never thought I'd meet one in person. I didn't travel much, and while I knew of $voice.name, I never physically met her.<</say>>
<<say "mc">>Nice to meet you.<</say>>
<<say "holly">>Back at you baby, I'm <<textbox "$holly.name" Brooke>>. You can come inside.<</say>>
<<narrate>>She gives you a wink as she heads inside.<</narrate>>
<<if $tempvar2 == "ne">>
<<cont "east-ent" "hollymeet01ne">>
<<else>>
<<cont "east-ent" "hollymeet01">>
<</if>>
<<case "hollymeet01ne">>
<<left2 "east/holly04.jpg">>
<<say holly>>$aubree.name never told me she had such a hot $aubree.you.<</say>>
<<say aubree>>Keep it in your pants for a minute, will you? How are things here?<</say>>
<<say holly>>Some people are confused. There's been a lot of change in a very small amount of time, but the bars and clubs are just as popular as always.<</say>>
<<say mc>>I hear you're quite the party animal.<</say>>
<<say "holly">>You know, baby, maybe you and I could get together and discuss things in... more detail.<</say>>
<<narrate>>_whoe.name rolls her eyes.<</narrate>>
<<say aubree>>Hello? I'm still in the room!<</say>>
<<say "holly">>Party pooper! Oh, you guys wanna do some blast and really get this party started?<</say>>
<<say mc>>Blast?<</say>>
<<say aubree>>Local recreational drug. Mostly harmless, it's a bit like MDMA but a lot safer. Gives you a temporary high.<</say>>
<<say "mc">>So just something people are using to escape reality?<</say>>
<<say "holly">>Pretty much.<</say>>
<<say aubree>>Just give me two minutes, $holly.name.<</say>>
<<narrate>>She ushers you into the kitchen.<</narrate>>
<<say aubree>>Do not take blast here. She's a sweet girl, but like I say, a bit of a party animal, you can't overdose on it, but she'll definitely give you too much and with your power... well who knows what might happen.<</say>>
<<say mc>>Gotcha, I'll stay clear for now.<</say>>
<<narrate>>$holly.name calls from the other room.<</narrate>>
<<say "holly">>You really gonna leave me alone in here, baby?<</say>>
<<say aubree>>I'll fix us a drink, you go keep her company for a few minutes.<</say>>
<<meet "holly">>
<<cont "east-ent" "hollymeet02">>
<<case "hollymeet01">>
<<left2 "east/holly04.jpg">>
<<say "holly">>You're welcome to stay if you need. Wouldn't mind a man around the place.<</say>>
<<say "mc">>Thanks, $holly.name.<</say>>
<<say $awaypartyeast>>Has there been anything weird while we're away?<</say>>
<<say "holly">>You mean other than the cabinet declaring war?<</say>>
<<say $awaypartyeast>>Yes.<</say>>
<<say "holly">>There's a lot of discontent and anxiety among the city folk given the war. But beyond that, I don't think so.<</say>>
<<say "mc">>Thanks, $holly.name.<</say>>
<<think "mc">>Well, this seems kinda pointless.<</think>>
<<say "holly">>But you know, baby, maybe you and I could get together and discuss things in... more detail. Make sure I've not overlooked anything.<</say>>
<<narrate>>_whoe.name rolls her eyes.<</narrate>>
<<think "mc">>Maybe not quite pointless...<</think>>
<<say $awaypartyeast>>Let's focus, shall we? What's the general feeling in the clubs and pubs?<</say>>
<<say "holly">>Party pooper! There's a lot more <i>blast</i> about, but I guess that's to be expected with the worry about the war.<</say>>
<<say "mc">>Blast?<</say>>
<<say $awaypartyeast>>Local recreational drug. Mostly harmless, it's a bit like MDMA but a lot safer. Gives you a temporary high.<</say>>
<<say "mc">>So just something people are using to escape reality?<</say>>
<<say "holly">>Pretty much.<</say>>
<<say $awaypartyeast>>Just give me two minutes, $holly.name.<</say>>
<<narrate>>She ushers you into the kitchen.<</narrate>>
<<say $awaypartyeast>>Listen, $holly.name is a sweet girl, but she's a bit of a party animal. She won't really think blast is that weird, most of her friends will have been using for years.<</say>>
<<say "mc">>So you don't think it's innocent?<</say>>
<<say $awaypartyeast>>I don't really know, but I think it's worth looking into. What if it's been distributed to make the population more easy going of the current situation?<</say>>
<<say "mc">>You think they'd do that?<</say>>
<<say $awaypartyeast>>Honestly, I don't know.<</say>>
<<narrate>>$holly.name calls from the other room.<</narrate>>
<<say "holly">>You really gonna leave me alone in here, baby?<</say>>
<<say $awaypartyeast>>I'll fix us a drink, you go keep her company for a few minutes.<</say>>
<<meet "holly">>
<<cont "east-ent" "hollymeet02">>
<<case "hollymeet02">>
<<center "east/holly05.jpg">>
<<set _nm = $awaypartyeast>>
<<if $tempvar2 == "ne">>
<<set _whoe = $aubree>>
<<set _nm = "aubree">>
<</if>>
<<say "holly">>So, we gonna have some fun, baby?<</say>>
<<think "mc">>Holy shit... but _whoe.name is in the kitchen...<</think>>
<<say "holly">>Don't worry about her, she'll join in or leave.<</say>>
<div id="replace">
<<choices>>
<<link "Go for it">>
<<replace "#replace">>
<<say "mc">>Well, I can't really say no when you've gone to this effort now, can I?<</say>>
<<narrate>>_whoe.name returns as you drop your trousers.<</narrate>>
<<say _nm>>Oh, for crying out loud. It didn't take long, did it? <<if $tempvar2 == "ne">>I'm gonna go visit some other friends.<<else>>I'm gonna go look into this blast thing.<</if>><</say>>
<<narrate>>She puts the drinks she was carrying down on the table and leaves.<</narrate>>
<<say "holly">>Shame. I was hoping she'd join us. Still, I'm sure you and I can have plenty of fun without her, baby.<</say>>
<<cont "eastsex" "hollymeet">>
<</replace>>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<say "mc">>I don't think that would be fair to _whoe.name.<</say>>
<<narrate>>_whoe.name returns a few moments later to see $holly.name laid on the sofa.<</narrate>>
<<say _nm>>You couldn't even wait ten minutes?<</say>>
<<say "mc">>It wasn't me!<</say>>
<<say _nm>>Yeah, yeah. I'm gonna <<if $tempvar2 == "ne">>head home<<else>>go look into this blast thing<</if>>.<</say>>
<<say "mc">>Gotcha, I'll <<if $tempvar2 == "ne">>come with<<else>>get back out there too then<</if>>.<</say>>
<<say "holly">>You're gonna leave me wet and horny like this, baby? Come back and play another time, yeah?<</say>>
<<if $tempvar2 == "ne">>
<<narrate>>Once you're outside, $aubree.name turns to you.<</narrate>>
<<say aubree>>I should have guessed something like this would happen, but I never thought it'd be within ten minutes of meeting her! Surprised you didn't stick around.<</say>>
<<say mc>>Eh, I came to spend time with you.<</say>>
<<say aubree>>Yuck! You sound like a sad puppy.<</say>>
<<button "Continue" homehub>>
<<like "aubree" 3>>
<<time 1>>
<</button>>
<<else>>
<<button "Continue" easthub>>
<<set $east.blast = 1>>
<<time 3>>
<</button>>
<</if>>
<</replace>>
<</link>>
<</choices>>
</div>
<</switch>><<set _whoe = State.variables[$awaypartyeast]>>
<<set _who = State.variables[$awaypartystray]>>
<<switch $tempvar>>
<<case "nemeet">>
<<if $girlsmet.includes('katie')>>
<<left2 "east/katie04.jpg">>
<<say "katie">>It's been a while, $name.<</say>>
<<say "mc">>Yeah, sorry. Figured we could take another look at who was stealing your crops now the invasion has been averted.<</say>>
<<say "katie">>No need, I figured it out.<</say>>
<<say "mc">>Ah, right. So would you still be interested in coming back to the hub with me?<</say>>
<<say "katie">>Two games.<</say>>
<<say "mc">>Sorry?<</say>>
<<say "katie">>Two video games. You get me something I haven't played before, and I'll consider it.<</say>>
<<say "mc">>Will new games even work on your computer? I can't imagine it's kept up to date with tech from the other worlds.<</say>>
<<say "katie">>I'm sure you'll think of something.<</say>>
<<think "mc">>Maybe $moriah.name can provide me a more up-to-date computer too.<</think>>
<<button "Continue" neweden>>
<<task "katiegame">>
<<event "katie" "ne" 2>>
<<time 1>>
<</button>>
<<else>>
<<think "mc">>I should come back with $lexi.refer so she can introduce us properly.<</think>>
<<cont "nestuff">>
<</if>>
<<case "gameswait">>
<<left2 "east/katie04.jpg">>
<<if $items != undefined>>
<<set _vg = $items.vg>>
<<else>>
<<set _vg = 0>>
<</if>>
<<say "katie">>Got my games yet?<</say>>
<<if _vg >= 2 && $katie.events.ne == 3>>
<<say "mc">>Yup. Slight problem, though.<</say>>
<<say "katie">>Whats' that?<</say>>
<<say "mc">>How are you going to play them?<</say>>
<<narrate>>She grins.<</narrate>>
<<say "katie">>Yeah, I guess they're too advanced for my system, huh?<</say>>
<<say "mc">>I'd assume so. But, well, I've got a new gaming computer back at the hub with your name all over it.<</say>>
<<narrate>>She cackles.<</narrate>>
<<say "katie">>You know exactly how to play me, huh?<</say>>
<<think "mc">>No, not really!<</think>>
<<say "katie">>So, got somewhere for me to stay?<</say>>
<<say "mc">>You can either stay in the hotel with us—<</say>>
<<say "katie">>I'd prefer my own space.<</say>>
<<say "mc">>Or in the old town.<</say>>
<<say "katie">>Sounds good. Once I've tested the games, come by and I'll show you my appreciation.<</say>>
<<think "mc">>Okay, normally I'd assume that means sex... but given my dealings with this women thus far, I can't be too sure...<</think>>
<<notice>>$katie.name will now move to the hub. She'll need a few days to settle in.<</notice>>
<<button "Continue" neweden>>
<<taskdone "katiegame">>
<<item "vg" -2>>
<<event "katie" "ne" 4>>
<</button>>
<<else>>
<<say "mc">>Still working on it.<</say>>
<<say "katie">>Alright. Talk to you some other time.<</say>>
<<think "mc">>Is she really worth this?<</think>>
<<cont "nestuff">>
<</if>>
<<case "katiemeet">>
<<if $tempvar2 == "ne">>
<<set $oldeast = clone($awaypartyeast)>>
<<set $awaypartyeast = "lexi">>
<<set _whoe = State.variables[$awaypartyeast]>>
<</if>>
<<narrate>>You and _whoe.name head over to a farmhouse.<</narrate>>
<<say $awaypartyeast>>Okay, just give me a few minutes to explain the situation.<</say>>
<<if $tempvar2 != "ne">>
<<say "mc">>How do you explain this? She won't even recognize you.<</say>>
<<if $awaypartyeast == "lexi">>
<<say "lexi">>I've known her for years, she was one of my best students and she's been pioneering all sorts of new crops. Traveling the worlds gives us a lot more than just the Earth stuff you're used to. But she confided a lot in me; it'll be enough to convince her.<</say>>
<<else>>
<<set _lexi = $lexi.name>>
<<if $awaypartyeast == "aubree">>
<<set _lexi = "mom">>
<</if>>
<<say $awaypartyeast>>I don't really get it, but her and _lexi were student and teacher. Apparently, she confided in her some of her projects on combining crops from different worlds to create different hybrids. I'll be damned if I understand half of what she told me, but _lexi assures me it'll be enough to convince her I am who I say I am.<</say>>
<</if>>
<</if>>
<<say "mc">>Alright, I'll leave it to you.<</say>>
<<say $awaypartyeast>>Just a word of warning, she can be a bit of a handful.<</say>>
<<narrate>>She skips off before you can question anything further.<</narrate>>
<<think "mc">>I just have to trust in $lexi.refer's judgment.<</think>>
<<narrate>>You watch as the two have a conversation at the door. There are a few points in your direction and cursory glances before you're called over.<</narrate>>
<<say "katie">>So you're the one $lexi.name abandoned her work here for, huh?<</say>>
<<say "mc">>Uh, yeah, I guess.<</say>>
<<say "katie">>And you're a fucking patron? Ha! Bet she didn't see that one coming.<</say>>
<<say "mc">>No... no.<</say>>
<<say "katie">>Well, you gonna stand there or you coming in?<</say>>
<<narrate>>She doesn't wait for an answer. She retreats inside leaving the door wide open. You quickly whisper to _whoe.name<</narrate>>
<<say "mc" "" "(Whispering)" "whisper">>I never asked her name.<</say>>
<<say "katie">>I can still hear you, I'm <<textbox "$katie.name" Nicole>>. Now hurry up before you let all the hot air out.<</say>>
<<cont "east-farm" "katiemeet01">>
<<case "katiemeet01">>
<<meet "katie">>
<<left2 "east/katie01.jpg">>
<<say "katie">>I owe $lexi.name quite a bit. So I'll help you out.<<if $tempvar2 == "ne">> What are you after?<<else>> You got a place to stay?<</if>><</say>>
<<if $tempvar2 == "ne">>
<<say "mc">>$lexi.refer speaks highly of your farming abilities.<</say>>
<<say "katie">>Yeah, I'm pretty good with my hands, and not afraid to try new things.<</say>>
<<narrate>>She gives you a wink.<</narrate>>
<<else>>
<<say "mc">>Yes, we're good.<</say>>
<<say "katie">>Alright. Well, you're free to stay here if that changes. So how can I help?<</say>>
<</if>>
<<think "mc">>Completely different vibe to what I was getting outside.<</think>>
<<if $tempvar2 == "ne">>
<<say "mc">>$lexi.refer suggested you may be interested in accompanying us back to work at our farm.<</say>>
<<else>>
<<say "mc">>$lexi.refer mentioned you were a great farmer, didn't believe in the stories told here, and may be interested in accompanying us back to work at our farm.<</say>>
<</if>>
<<say "katie">>Why?<</say>>
<<say "mc">>Sorry, why what?<</say>>
<<say "katie">>Why do you want to start a farm if you've got a working gateway?<</say>>
<<say "mc">>Well, we've already got a farm. But I want to ensure we are self-sufficient. We've got people working it, but they don't have your skill.<</say>>
<<if $tempvar2 == "ne">>
<<say "katie">>Okay. Here's the deal, get me two new video games and then I'll think about your offer.<</say>>
<<say "mc">>Uh... right. What are you into?<</say>>
<<say "katie">>Video games.<</say>>
<<else>>
<<say "katie">>Okay. Here's the deal, you help me figure out who is stealing my crops and I'll think about your offer.<</say>>
<<think "mc">>That seems counterproductive, if she truly wanted to come back, why would she care about the stolen crops?<</think>>
<<say "mc">>I'll see what I can do. Any leads?<</say>>
<<say "katie">>Nope.<</say>>
<<say "mc">>Anything you can tell me about them?<</say>>
<<say "katie">>Nothing that you'd understand. Let's just say they're special.<</say>>
<</if>>
<<think "mc">>I think I'm understanding a little of what _whoe.name meant by a handful.<</think>>
<<if $tempvar2 == "ne">>
<<say "mc">>Right, but like RTS, FPS—<</say>>
<<say "katie">>Listen, I've got a co-op to play, I'll let you two handle it.<</say>>
<<else>>
<<say "mc">>So we just stake out the farm and catch your thieves?<</say>>
<<say "katie">>If you want to. Listen, I've got a co-op to play, I'll let you two handle it.<</say>>
<</if>>
<<narrate>>You look bemused as she strolls away.<</narrate>>
<<say "mc">>Are we wasting our time here, _whoe.refer?<</say>>
<<say $awaypartyeast>>I told you she was a little difficult to deal with. Mostly friendly as you saw, but also, can't be bothered with the details.<</say>>
<<say "mc">>And what does she mean by co-op?<</say>>
<<say $awaypartyeast>>She's an avid gamer.<</say>>
<<say "mc">>I see. <<if $tempvar2 == "ne">>That explains her request.<</if>> Wait, co-op with whom? You don't have Internet and nobody else is here, right?<</say>>
<<say $awaypartyeast>>Really? After you've seen an entire network for mobile devices and computers in your hub... you didn't think something similar would exist here?<</say>>
<<say "mc">>Then why do people not have phones?<</say>>
<<say $awaypartyeast>>Lack of maintenance initially and then too few resources to produce new circuitry that small. Do remember, the original settlers of the hub, myself included, thought they'd have access to the gateway.<</say>>
<<say "mc">>Yeah, I guess. Is she worth the effort?<</say>>
<<if $tempvar2 == "ne">>
<<say "lexi">>Her skill is worth the attitude, but to be honest, it's going to the games that attract her. I daresay it doesn't matter what games you bring, just that you bring her something new she hasn't seen before.<</say>>
<<say "mc">>Shouldn't be hard given the number of worlds we have access to.<</say>>
<<say "lexi">>But anything you find is highly unlikely to be compatible with her system. I think the true test here is getting her a new computer. Digitization makes things surprisingly compatible across worlds, and while I know she's done a lot to improve and maintain her computer over the years, it's still extremely old.<</say>>
<<think "mc">>I guess I need to speak to $moriah.name on top of getting the two games!<</think>>
<<button "Continue" neweden>>
<<task "katiegame">>
<<set $awaypartyeast = $oldeast>>
<<event "katie" "ne" 2>>
<<time 1>>
<</button>>
<<else>>
<<if $awaypartyeast == "lexi">>
<<say "lexi">>Her skill is worth the attitude, and the gaming thing alone is probably enough to attract her back if I'm honest. There's not much variety here, for sure there are some keen developers out there, but it's not exactly a big city. I suspect the task is more for her to see if you're worthy of her.<</say>>
<<else>>
<<set _lexi = $lexi.name>>
<<if $awaypartyeast == "aubree">>
<<set _lexi = "Mom">>
<</if>>
<<say $awaypartyeast>>_lexi suggests she is, but I don't really know if I'm honest. I suspect the task is more for her to see if you're worthy of her than anything else.<</say>>
<</if>>
<<say "mc">>The audacity. But fine, let's go look around the field, maybe talk to neighbors, and see what we can learn.<</say>>
<<narrate>>You and _whoe.name spend some time familiarizing yourself with the farm, there are numerous vegetables and fruits you don't recognize, but ultimately beyond a patch of the crops _whoe.name refers to as <i>Ananda</i> being obviously chopped, you learn nothing.<</narrate>>
<<say $awaypartyeast>>I'll stick around, talk with some of the other farmers, see if I can learn anything else. I'll let you know what I find.<</say>>
<<say "mc">>Alright, thanks. _whoe.name. I hope she's worth the effort.<</say>>
<<button "Continue" easthub>>
<<set $east.katie = 1>>
<<time 3>>
<</button>>
<</if>>
<<case "crops">>
<<center "locations/east/fmarket.jpeg">>
<<narrate>>You browse the markets, a large number of unknown fruits and vegetables and a din of farmers calling out trying to get people to their stalls. Surprisingly, a few stalls have more than just food or flowers and are selling ornaments or small knick-knacks. It's at one of these stalls you spot someone matching the description of Nigel.<</narrate>>
<<say "mc">>Business going well?<</say>>
<<say "side" "Nigel">>Ah, y'know 'ow it is doncha mate? Prices like these I barely mek a living but gotta 'elp themz in need an' I?<</say>>
<<say "mc">>Yes, quite. Quite.<</say>>
<<think "mc">>What?<</think>>
<<narrate>>You lazily browse his wares, trying to spot $katie.name's crop, but don't see it anywhere.<</narrate>>
<<say "side" "Nigel">>Ya lookin' for summat specific there mate?<</say>>
<<narrate>>He taps his nose.<</narrate>>
<<think "mc">>Fuck, I don't know how to handle this. I know so little about any of it.<</think>>
<<say "mc">>Maybe. I was told you can hook me up?<</say>>
<<narrate>>He leans over the produce, cupping his hand to his mouth.<</narrate>>
<<say "side" "Nigel" "(Whispering)" "whisper">>Whatever ails ya mate, Nigel's got summat for ya. What's tha after?<</say>>
<<say "mc">>Something... a little different.<</say>>
<<say "side" "Nigel" "(Whispering)" "whisper">>Ah, yeah, mate, I got ya. I got ya. But not 'ere, yeah? Fer that kinda thing we needz to be in a proper environment, init? Catch me at th' <i>Pig & Fox</i> in evenin', yeah?<</say>>
<<think "mc">>Fuck, what is that accent?<</think>>
<<say "mc">>Uh, yeah sure.<</say>>
<<narrate>>You start to walk off.<</narrate>>
<<say "side" "Nigel">>Oh but mate, needz me customers 'ere ya know. Slicing me own belly wi' these prices, ain't I?<</say>>
<<think "mc">>The hell is he talking about? I guess he's suggesting I need to buy something from him here first.<</think>>
<<narrate>>You pick up a random bauble.<</narrate>>
<<say "side" "Nigel">>Oh, good eye on ya there, mate. That's a gen-u-wine one-of-a-kind timekeeping device, that is.<</say>>
<<narrate>>You glance at the three other identical items, which are apparently clocks, at the stall.<</narrate>>
<<say "side" "Nigel">>Aye, quite the discerning customer ya is. To think you could tell the gud'un among the cheap imitators 'ere. Tell ya what, give it ya at a discount, 200 credz, and slicing me own belly wi' that.<</say>>
<<narrate>>You hand over the money, completely astounded this man is able to stay in business.<</narrate>>
<<think "mc">>I literally have no idea if I'm going to get anything meaningful from this... and no idea if 200 credits is a fair price for this... cheap shitty clock.... but given his technique I'm almost sure it's not.<</think>>
<<narrate>>You look around the stalls for a while longer, occasionally glancing over at Nigel to see if there's anything he does or anyone he talks to that may be useful. Other than discovering a variety of new foods you learn nothing of value. As you're leaving you pass by Nigel's store one last time and pause when you overhear him talking to someone else while he's packing up.<</narrate>>
<<say "side" "Nigel">>Aye mate, right mug 'e wo. 200 credz for that shitty clock. Ten ta penny they are, 10 credz at best. That one di'nt even work. Ha. N' 'e asked me to 'ook him up with drugs or summat, fuck knows what 'e wanted. But might be able to rinse 'im for a bit more init.<</say>>
<<think "mc">>Not really surprising to be honest, but drugs? Not quite what I was going for but I did kinda word it like I was talking to a dealer. Well, we'll see what he does actually try to sell me. If I can get him red-handed with the crops that'd make life easier.<</think>>
<<button "Continue" easthub>>
<<set $east.crops = 2>>
<<time 3>>
<</button>>
<<case "nigelpig">>
<<narrate>>As you enter the bar you spot Nigel in the corner. You buy a pint then head over.<</narrate>>
<<say "side" "Nigel">>Oh 'ere 'e is.<</say>>
<<say "mc">>Nice to see you again.<</say>>
<<say "side" "Nigel" "(Whispering)" "whisper">>So what ya after mate?<</say>>
<<say "mc">>Just something to make the night a little more pleasant, ya know?<</say>>
<<say "side" "Nigel">>Aye mate, gotcha gotcha. You eva bought <i>Blast</i> before?<</say>>
<<if $girlsmet.includes('holly')>>
<<think "mc">>Maybe I can find out more about Blast too...<</think>>
<<else>>
<<think "mc">>The hell is Blast?<</think>>
<</if>>
<<say "mc">>Nah, first time for everything.<</say>>
<<say "side" "Nigel">>Aye, well, jus' a lil' goes long way init. Seen as yer a newbie n all that, I'll give ya a discount. Say 300 credz for a tab. Can't say fairer than that can I?<</say>>
<<say "mc">>Even after that broken clock?<</say>>
<<narrate>>He looks at you, a face of betrayal.<</narrate>>
<<say "side" "Nigel">>What are youz accusin' me of eh? It wo workin' when you took it.<</say>>
<<think "mc">>Whatever.<</think>>
<<say "mc">>Yeah, yeah, of course.<</say>>
<<say "side" "Nigel">>Tell you what, 200 credz, gesture of good will n all that. Slicin' me own belly wi that I am.<</say>>
<<think "mc">>The fuck does that even mean?<</think>>
<<say "mc">>Great, thanks.<</say>>
<<think "mc">>I should take this back to $katie.name. Maybe it's something to do with her crop.<</think>>
<<narrate>>You hold it in front of your face, and as you open your mouth to speak to him, he gets up, knocking the table. Your elbow slips and the pill falls into your mouth, causing you to choke. Instinctively, you grab the water from the table.<</narrate>>
<<think "mc">>Shit.<</think>>
<<narrate>>He grins at ya.<</narrate>>
<<say "side" "Nigel">>Ya gonna wanna tek care of that real sharp like.<</say>>
<<narrate>>He walks off.<</narrate>>
<<think "mc">>Fuck now I've got nothing to show for this, I guess it's back to trying to catch him out at the market. It's probably just paracetamol or something, I was warned he was a snake oil salesman after all.<</think>>
<<narrate>>You decide to finish up your drink but a minute later your dick starts to get stiffer and stiffer until it's so hard it's almost painful.<</narrate>>
<<think "mc">>What. The. Fuck. Was. That. Pill?!<</think>>
<<think "mc">>Fuck. Fuck, fuck! I need to take care of this.<</think>>
<<narrate>>You hurry back home.<</narrate>>
<<button "Continue" east-farm>>
<<if $mc.events.eaststay == "lexi">>
<<temp "krissy">>
<<elseif $mc.events.eaststay == "katie">>
<<temp "katie">>
<<elseif $mc.events.eaststay == "holly">>
<<temp "holly">>
<<else>>
<<temp "am">>
<</if>>
<</button>>
<<case "holly">>
<<narrate>>You arrive back to the house to see $holly.name standing outside.<</narrate>>
<<block "east/holly01.jpg">>
<<say "holly">>Wasn't expecting you back until this evening. Everything okay?<</say>>
<<say "mc">>I'm hoping so I just need to... take care of something.<</say>>
<<narrate>>She starts blushing.<</narrate>>
<<say "holly">>I can see that. Wow, you're packing something there, huh?<</say>>
<<say "mc">>Ah, yeah, I took this—<</say>>
<<say "holly">>You're that happy to see me, baby? You know... it's just you and me here...<</say>>
<</block>>
<<think "mc">>Two birds one stone. Why not?<</think>>
<<narrate>>She pulls you inside, and starts stripping almost immediately.<</narrate>>
<<center "east/holly02.jpg">>
<<say "holly">>No romance. No foreplay. I just want your cock deep inside me, baby.<</say>>
<<narrate>>She ushers you to her bedroom, clawing at your clothes as she does so.<</narrate>>
<<say "holly">>I've wanted to do this since I first laid eyes on you.<</say>>
<<narrate>>You shake off the last of your clothes and fall back on to the bed. You watch with excitement as she slides herself up your legs and pushes your dick inside her.<</narrate>>
<<cont "eastsex" "holly01">>
<<case "am">>
<<narrate>>You arrive back to the penthouse, your cock pulsing and pushing against your trousers for freedom.<</narrate>>
<<narrate>>As soon as you're in the door you let your cock free, dropping your trousers.<</narrate>>
<<block "east/va01.jpg">>
<<say "va">>Well, aren't you bold?<</say>>
<<say "mc">>Oh fuck, I didn't think anyone would be here.<</say>>
<<narrate>>You start grabbing at your trousers.<</narrate>>
<<say "va">>Well now, don't be so hasty. That's quite the impressive specimen; perhaps we could start some diplomatic channels right now.<</say>>
<<think "mc">>Is there any problem this world doesn't let me fuck my way out of?<</think>>
<<narrate>>She grasps your cock, licks your cheek, then drops to her knees.<</narrate>>
<<cont "eastsex" "vablue">>
<</block>>
<<case "krissy">>
<<block "east/krissy01.jpg">>
<<say "krissy">>What's wrong, $krissy.calls? You look feverish!<</say>>
<<say "mc">>I took an unknown pill and now I've got...<</say>>
<<think "mc">>Wait fuck. I've got a raging boner and the first person I encounter is my $krissy.them?<</think>>
<<narrate>>You start to panic when you realize how fucked up the entire situation is. She's staring at you, worried.<</narrate>>
<<say "krissy">>Tell me $krissy.calls, what did you take? What's wrong?<</say>>
<<say "mc">>I... uhhh... it was...<</say>>
<</block>>
<<say "krissy">>Spit it out, we may need medical attention!<</say>>
<<say "mc">>It's a bit embarrassing but my uhhh... penis won't go down.<</say>>
<<narrate>>Her eyes dart to your crotch, and widen as she notices the tent you're pitching, then shakes her head.<</narrate>>
<<say "krissy">>And you came to me? I'm your $krissy.them, $name! This is not something I should be dealing with. Go take a cold shower or something.<</say>>
<<say "mc">>I know, I know. I just panicked. I didn't know you'd be here!<</say>>
<<say "krissy">>Shower.<</say>>
<<narrate>>You do as she commands, the cold water making you gasp as you jump in.<</narrate>>
<<think "mc">>It's not working... fuck.<</think>>
<<narrate>>You try fapping but you're just not able to finish.<</narrate>>
<<think "mc">>I'm gonna kill him.<</think>>
<<narrate>>You look around for a towel but there isn't one in the room.<</narrate>>
<<think "mc">>She's going to kill me.<</think>>
<<set _uc = $krissy.refer.toUpperFirst()>>
<<say "mc" "" "(Yelling)" "shout">>_uc. Even more embarrassingly I didn't check there were any towels before diving in... can you fetch me one?<</say>>
<<narrate>>A few moments later her arm appears around the door a towel draping over her hand.<</narrate>>
<<narrate>>You get out of the shower, head toward the door with a trail of water left in your wake. As your left foot catches the tiled floor, the mixture of water and soap causes you to slip, landing flat on your back with a thud.<</narrate>>
<<say "krissy">>What's wrong, are you okay?!<</say>>
<<narrate>>You simply groan, not quite with it after the fall. She barges the door open and kneels beside you.<</narrate>>
<<say "krissy">>What's wrong? Are you hurt? How many fingers am I holding up?<</say>>
<<narrate>>She holds three fingers in front of your face.<</narrate>>
<<say "mc">>Four.<</say>>
<<say "krissy">>Oh no. Do they have ambulances around here?! Where do we go for treatment?! Oh shit oh shit!<</say>>
<<narrate>>She moves her hand away.<</narrate>>
<<say "mc">>Now just the one.<</say>>
<<say "krissy">>What? No, I'm not holding...<</say>>
<<narrate>>Her voices trails off as she looks around and spots your rock hard penis. Her cheeks glow red.<</narrate>>
<<think "krissy">>Fucking hell, look at the size of it. I bet it reaches all the spots... no! For fuck's sake $krissy.name!<</think>>
<<narrate>>You grab the towel that fell beside you and wipe your face. Quickly throwing the towel on your cock once you notice.<</narrate>>
<<say "mc">>_uc, I am so sorry. The soap in my eyes and it just looked like... I...<</say>>
<<say "krissy">>So you're fine?<</say>>
<<say "mc">>Yes, yes. I can see fine, though... the cold shower didn't work.<</say>>
<<say "krissy">>I'm leaving. Don't worry me like that again. I can't deal with this. Go find a whore or a hospital.<</say>>
<<say "mc">>I'm sorry, $krissy.refer.<</say>>
<<narrate>>She waves her hand at you as she leaves, not once looking back.<</narrate>>
<<think "mc">>Well that was fucking awkward. But I really do need to take care of this.<</think>>
<<narrate>>You dry yourself down and go back to the living room, the place is empty so you decide to try and finish yourself there.<</narrate>>
<<narrate>>It takes over an hour, and you're a sweaty, smelly mess after, but your cock finally returns to a flaccid state.<</narrate>>
<<think "mc">>Maybe I should ask $katie.name about Nigel.<</think>>
<<button "Continue" easthub>>
<<corrupt "krissy" 5>>
<<set $east.crops = 3>>
<<time 3>>
<</button>>
<<case "katie">>
<<narrate>>You rush into the farmhouse, not even checking if anyone is home.<</narrate>>
<<think "mc">>Shit, can't believe he gave me fucking viagra or whatever. Only have to worry if it's more than four hours, right?<</think>>
<<narrate>>You rush to the bathroom, hoping a cold shower will sort you out.<</narrate>>
<<block "east/katie02.jpg">>
<<think "mc">>Holy shit. This... is not helping.<</think>>
<<narrate>>You stare at $katie.name as she undresses, hypnotized by the view.<</narrate>>
<<think "mc">>Shit, maybe I can just belt one out here and she won't notice?<</think>>
<<narrate>>You lower your pants and start stroking your cock.<</narrate>>
<<think "mc">>Fuck this is so wrong.<</think>>
<<narrate>>As the last of her clothes fall to the floor she turns on the shower while humming a tune.<</narrate>>
<<think "mc">>God, she's fucking hot.<</think>>
<</block>>
<<narrate>>She turns in your direction, noticing you immediately.<</narrate>>
<<block "east/katie03.jpg">>
<<say "katie">>What the actual fuck?<</say>>
<<say "mc">>Shit, fuck. No this isn't...<</say>>
<<say "katie">>Isn't what it looks like? So you weren't perving over me? You're even jerking off. You haven't even fucking stopped!<</say>>
<<narrate>>Her eyes remain on your phallus.<</narrate>>
<<say "mc">>Fuck, no. I didn't meant to. I took something dodgy while trying to find out if Nigel took your crops and...<</say>>
<</block>>
<<say "katie">>Nigel? Should have fucking known. Twat.<</say>>
<<say "mc">>Yeah, and anyway he gave me some sort of pill and now I have this incredible boner, I came rushing back here to take a shower and then just saw you and... my instincts took over.<</say>>
<<say "katie">>Your instincts, huh?<</say>>
<<narrate>>Her eyes still trained on your dick, she lets her hands slide free, revealing her full naked form.<</narrate>>
<<say "katie">>Well, I'd be lying if I said I hadn't thought about it. Fuck it, let's take care of that before you take someone's eye out.<</say>>
<<think "mc">>I do not understand this woman... but right now, I don't care.<</think>>
<<narrate>>She charges you into her bedroom, almost throwing you on to the bed.<</narrate>>
<<cont "eastsex" "katie01">>
<<case "katiecrop">>
<<say "mc">>I think I have a lead on the crops. What do you know about Nigel?<</say>>
<<block "east/katie04.jpg">>
<<say "katie">>Slimy cunt. Sells shit to idiots. Dodgy as they come, but he'll hook you up with actually decent stuff if he doesn't think you're a Muppet.<</say>>
<<think "mc">>He sold me a dodgy clock...<</think>>
<<say "mc">>So his van has been spotted around here a bit. Is there any reason he'd want your crops?<</say>>
<<say "katie">>Other than how delicious they are? Can't think of anything, but no doubt he'll be making a packet out of it.<</say>>
<<say "mc">>Can they be used for anything other than food?<</say>>
<</block>>
<<say "katie">>Be fucked if I know. C'mon, let's go see the little weasel.<</say>>
<<say "mc">>Right now?<</say>>
<<say "katie">>Right now.<</say>>
<<cont "east-farm" "katiecrop2">>
<<case "katiecrop2">>
<<narrate>>You get in her pickup, it's an old rusty thing and it takes a few attempts to get started. On the ride over, she says very little, just cusses out Nigel every now and again.<</narrate>>
<<say "katie">>Can't believe this fucking asshole.<</say>>
<<narrate>>You arrive a while later to a surprisingly fancy house, she storms up the door and knocks so hard you're surprised the door doesn't fall.<</narrate>>
<<say "katie">>Nigel, you bloody cunt, open this damn door.<</say>>
<<narrate>>The door opens; Nigel appears nervous.<</narrate>>
<<say "side" "Nigel">>Ah, $katie.name, hi. I can—<</say>>
<<say "katie">>Don't hi $katie.name me you fucking cockroach. My crops?!<</say>>
<<narrate>>She forces her way inside, Nigel follows her. You shake your head and do the same.<</narrate>>
<<say "katie">>So what you fucking doing with my crops, Nigel?<</say>>
<<say "side" "Nigel">>You know 'ow it is, I wo jus' tryin' to mek ends meet weren' I?<</say>>
<<say "katie">>Don't bullshit me Nigel, I'm not one of the fucking idiots at the market.<</say>>
<<narrate>>You can't help notice how he glances at you when she says that.<</narrate>>
<<say "side" "Nigel">>Fine, fine. I been stealing a bit here n there 'cos it's fuckin' delicious init? But recently I 'ad this woman 'round for... a bit o' fun... and she went fuckin' whacko when she saw it like. Said it wo' jus' what she needed for some science experiment or some shit. Offered to pay top dollar if I got 'er more. I tried never to take too much!<</say>>
<<say "katie">>I wouldn't give a flying fuck if you were only taking a little and eating it yourself. But now you're fucking selling my shit off and not even compensating me? For fuck's sake Nigel.<</say>>
<<say "side" "Nigel">>I'll share it wi' ya, we can cut a deal!<</say>>
<<say "katie">>Who is your buyer, Nigel?<</say>>
<<say "side" "Nigel">>I can't say.<</say>>
<<say "katie">>Nigel. You know me. You know what will happen if you don't fucking tell me.<</say>>
<<narrate>>He genuinely looks scared.<</narrate>>
<<think "mc">>I wonder what she's got on him.<</think>>
<<say "side" "Nigel">>I... I can't tell you. She'll fuckin' kill me.<</say>>
<<say "katie">>Are you more scared of her than me, Nigel?<</say>>
<<say "side" "Nigel">>Yes.<</say>>
<<say "katie">>Holy shit. Well, I'm cutting you off. If I find any more missing, I'm going to tear your fucking balls off.<</say>>
<<narrate>>She storms out to the pickup without saying anything else, you follow.<</narrate>>
<<say "mc">>That's it?<</say>>
<<say "katie">>No. You're gonna find out who his buyer is then figure out what they're using it for. He's gonna have to go back to them and tell them he's fucked up now.<</say>>
<<think "mc">>I could ask $krissy.name or _who.name to follow him tomorrow.<</think>>
<<button "Continue" "easthub">>
<<set $east.crops = 4>>
<<time 3>>
<</button>>
<</switch>><<if $tempvar == "consgarden">>
<<narrate>>You both head into the house together.<</narrate>>
<<say "cons">>Make yourself at home. I won't be long.<</say>>
<<narrate>>As soon as she's gone you start looking through the rooms, seeking paperwork or an office or just anything that might be useful.<</narrate>>
<<think "mc">>I don't even know what I'm looking for!<</think>>
<<narrate>>Finally, you find an office and manage to find a few interesting documents. You only skim read them but it seems there's mission statement and some info on <i>Sunset Hope</i>.<</narrate>>
<<think "mc">>I'll need to find a quiet place to study these.<</think>>
<<say "cons" "" "(Shouting)" "shout">>I'm done, $alias. I'm gonna head back out and finish the lawn. Shower's all yours.<</say>>
<<think "mc">>Thank fuck she didn't come looking for me.<</think>>
<<narrate>>You take the opportunity to read the documents a little more. It seems the plan for <i>Old Eden Holdings Inc</i> is to furnish the buildings in the abandoned town near $voice.name's gateway. $howard.name has devised a scheme where he's selling something off to the wealthy while funneling the profits to Bill's company to make furnishings. He intends to offer the housing to the poorer households in a more fair society where they won't be the underclass.<</narrate>>
<<think "mc">>Shit, he really is out for the little guy, huh? I guess now the Gateway is live he thinks they can have richer lives by returning there. I wonder what his plans are for $voice.name, though. And just what is he selling? Why wouldn't he tell Bill that bit?<</think>>
<<narrate>>You jump in the shower to keep up appearances than head out, waving to $cons.name as you leave.<</narrate>>
<<think "mc">>I think I've got all I can here. I'll certainly miss $cons.name, but maybe after things have settled down they'll be future opportunities for that.<</think>>
<<button "Continue" easthub>>
<<temp "">>
<<set $east.cucked = 3>>
<<set $intel.howard.pushUnique('Selling an unknown product to the wealthy via <i>Sunset Hope</i> to fund a better life for the poor.')>>
<<time 3>>
<</button>>
<<else>>
<<if $tempvar2 == "ne">>
<<think "mc">>I don't need to do anything covert this time, I'm just here to look around.<</think>>
<<temp "first">>
<</if>>
<<if $east.ind == undefined && $hour != 9 && $hour != 18 && $tempvar2 != "ne" && $replay == false>>
<<narrate>>You try to look around, but are unable to learn anything nor gain entry to the factories.<</narrate>>
<<think "mc">>Generally speaking the workers will be arriving at work around 09:00 and heading home at 18:00. Maybe I should try then?<</think>>
<<button "Continue" eaststuff>>
<</button>>
<<elseif $hour == 9 || $tempvar2 == "ne" || $replay == true>>
<<set _info = '<<think "mc">>Well seen as though nobody seems to care I\'m here. I may as well use the opportunity to look around, see if there\'s anything worth learning.<</think>>
<<narrate>>You explore the factory, it appears to be making furniture. Nothing particularly out of the ordinary, but you do find a large number of purchase orders from a company called <i>Sunset Hope</i> in their office. All of them signed by $howard.name\'s office.<</narrate>>
<<if $east.oldeden == undefined>>
<<set _who = State.variables[$awaypartyeast]>>
<<think "mc">>It\'s just orders for basic household furnishings.<</think>>
<</if>>
<<set $intel.howard.pushUnique(\'Using <i>Sunset Hope</i> to have a large number of home furnishings made.\')>>
<<button "Continue" easthub>>
<<set $east.cons = 1>>
<<time 3>>
<</button>>
'>>
<<switch $tempvar>>
<<case "return">>
_info
<<case "first">>
<<if $tempvar2 == "ne">>
<<narrate>>A few people greet you as you head inside the first factory but otherwise nobody really bothers you. You're surprised by how many halls and corridors this place has.<</narrate>>
<<else>>
<<narrate>>There are crowds of people heading toward work. You blend in and try to listen in other conversations.<</narrate>>
<<narrate>>A few people greet you and make small talk but otherwise nobody really bothers you. You end up following a crowd directly into one of the factories.<</narrate>>
<</if>>
<<think "mc">>Shit, where the hell am I?<</think>>
<<if $tempvar2 == "ne">>
<<say "side" "Worker">>Safety!<</say>>
<<narrate>>The man points to his hardhat and then at the equipment hanging on the walls.<</narrate>>
<<say "mc">>Right, yes, of course.<</say>>
<</if>>
<<narrate>>You scramble around, and grab some random equipment to try and blend in.<</narrate>>
<<think "mc">>How the fuck did I get this lost? It's like a damn maze in here!<</think>>
<<narrate>>You open doors at random looking for the exit, when you stumble on two people fighting.<</narrate>>
<<say "side" "Foreman">>What the hell are you doing here, honey?<</say>>
<<block "east/cons01.jpg">>
<<say "cons">>I'm just sick of it. You never attend to my needs anymore.<</say>>
<<narrate>>Strangely, you then see the two of them whisper to one another. You stand at the doorway, intrigued.<</narrate>>
<<say "cons">>That's why I need a real man. Someone who can give me a good and proper fuck!<</say>>
<<say "side" "Foreman">>But honey, I do everything for you! This entire factory, everything I do, I do it to please you!<</say>>
<<say "cons">>All these material goods are great, but you can't please me physically. Your limp dick just doesn't cut it.<</say>>
<<narrate>>Her arm shoots out suddenly and she points directly at you.<</narrate>>
<</block>>
<<say "cons">>I bet he'd take much better care of my needs. Would you like that? Do you want me to fuck some random stranger?!<</say>>
<<say "side" "Foreman">>What? No. Of course not honey.<</say>>
<<narrate>>Despite his words, you see the man nodding at you while gesturing you forward.<</narrate>>
<<think "mc">>The fuck is going on here. Do I want to be part of this?<</think>>
<div id="replace">
<<choices>>
<<link "Yeah">>
<<replace "#replace">>
<<narrate>>You step forward.<</narrate>>
<<say "mc">>If you can't take care of her, let me show you how it's fucking done!<</say>>
<<narrate>>The woman excitably taps her feet while her husband grins.<</narrate>>
<<say "cons">>Yeees! No names. Now let's show my husband how real men perform!<</say>>
<<narrate>>She squats before you, viciously pulling down your trousers as she does so.<</narrate>>
<<say "cons">>Holy shit. Now that's a real cock looks like!<</say>>
<<button "Continue" eastsex>>
<<temp "cons">>
<</button>>
<</replace>>
<</link>><<if $replay == false>><br>
<<link "Nah">>
<<replace "#replace">>
<<say "mc">>Uhh, sorry to intrude I'll just get back to work.<</say>>
<<say "side" "Foreman">>Well hold on now, son, don't you want to fuck my wife?<</say>>
<<say "mc">>Your wife is an extremely beautiful woman, but this whole situation is just a little outside of my comfort zone. Sorry.<</say>>
<<say "cons">>Ugh. Whatever. Tell one of the other workers their boss wants them. They can have what you're missing out on.<</say>>
<<think "mc">>Hmm, she was pretty hot. But, having her husband watch us just feels fucking weird.<</think>>
<<narrate>>You leave the room. As you wander around you meet another worker and give him the instruction that the foreman needs him.<</narrate>>
<<say "mc">>Have fun!<</say>>
<<narrate>>He looks at you quizzically as he heads off.<</narrate>>
<<if $tempvar2 == "ne">>
<<think "mc">>I'm guessing this isn't a one-time event for them, I can always revisit if I change my mind.<</think>>
<<cont "nestuff" "" 1>>
<<else>>
_info
<</if>>
<</replace>>
<</link>><</if>>
<</choices>>
</div>
<</switch>>
<<elseif $hour == 18>>
<<notice>>This page should be visible. Please go back.<</notice>>
<</if>>
<</if>><<switch $east.milcamp>>
<<case 1>>
<<narrate>>You and $britt.name chat while heading to the training camp.<</narrate>>
<<say "mc">>You know I appreciate you looking out for me, it's great you've got my back. But you might not be able to watch me 24/7.<</say>>
<<say "britt">>I have thus far. Shadowin' ya, jus' like we agreed. Bet ya don't even notice me, but I'll be there to protect ya should anyone try to 'arm ya.<</say>>
<<say "mc">>I get it, but another hand gathering information could be useful.<</say>>
<<narrate>>She simply scowls at you.<</narrate>>
<<say "britt">>We're nearly there.<</say>>
<<narrate>>Posted at the entrance to the camp are two guards. As you draw closer you see one of them nudge the other and point in your direction, you can't help but notice they appear to be chuckling.<</narrate>>
<<say "side" "Guard A">>Yeah, what do you want?<</say>>
<<say "mc">>Just came to see how we can help with the war effort.<</say>>
<<say "side" "Guard B">>Ha! You're too late. We don't got time to train rookies. You, we might have been able to train up a few weeks back. But...<</say>>
<<narrate>>He points at $britt.name.<</narrate>>
<<say "side" "Guard B">>Your scrawny girlie here don't stand a chance even if she'd been here months ago.<</say>>
<<narrate>>The two guards laugh while she glares at him.<</narrate>>
<<say "mc">>So you won't let us in?<</say>>
<<say "side" "Guard A">>Mate. You're not listening. It's too late. A few days before the skirmish? Nah, unless you're a fucking superhero you're shit outta luck. You'd be a fucking liability. Do yourself a favor and go home, yeah?<</say>>
<<say "britt">>How about I kick yer ass?<</say>>
<<narrate>>The two guards laugh even harder.<</narrate>>
<<say "side" "Guard B">>Ha! Girlie, your ass'll be on the floor in seconds. No way you can take him.<</say>>
<<say "britt">>Both of you.<</say>>
<<say "side" "Guard A">>Go back home girlie, you're wasting our time. But you know, if you want to have a little fun, I'd be happy to take you round back and show you a real man.<</say>>
<<narrate>>In one swift movement, she runs at the first guard, dodges behind him, and wraps her arm around his neck.<</narrate>>
<<say "britt">>You call me girlie one more time. I fuckin' dare ya.<</say>>
<<say "side" "Guard B">>Holy shit! I barely saw her move.<</say>>
<<say "mc">>So can we pass?<</say>>
<<narrate>>The first guard tries in vain to wriggle free from her grasp.<</narrate>>
<<say "side" "Guard A">>Get off me, bitch!<</say>>
<<narrate>>She sweeps his leg, knocking him to the ground while still holding him in a headlock.<</narrate>>
<<say "side" "Guard B">>Fucking hell. Yeah. Yeah. How the hell did she do that?<</say>>
<<narrate>>She releases her grasp and looks down at the guard.<</narrate>>
<<say "britt">>Yer lucky I was feelin' merciful today. He's more a fuckin' man than you'll ever be.<</say>>
<<say "side" "Guard A">>Fuck you!<</say>>
<<narrate>>As she turns back toward you he makes a grab for her legs, but she effortlessly steps to the side and rams her foot squarely into his stomach. The man crunches in pain, coughing and spluttering.<</narrate>>
<<say "side" "Guard B">>For crying out loud dude. You deserved that one.<</say>>
<<narrate>>He gives you a nod and gestures you past.<</narrate>>
<<say "side" "Guard B">>I guess looks can be deceiving. Please, go ahead. Ask for the sergeant, she'll be glad for someone of her skill.<</say>>
<<narrate>>As you walk into the camp, you hear the two of them talking.<</narrate>>
<<say "side" "Guard A">>She just caught me by surprise. I could've taken her!<</say>>
<<say "side" "Guard B">>Don't delude yourself, mate. It'd take a squadron of us to even land a blow. You could tell she was holding back; you're lucky you don't need fucking medical attention or even a damn mortician. She must be like $am.name and that lot. Scary fucking bitches.<</say>>
<<button "Continue" east-mil>>
<<set $east.milcamp++>>
<</button>>
<<case 2>>
<<narrate>>As you walk through the camp watching the trainees you notice everyone is training in hand-to-hand combat.<</narrate>>
<<say "mc">>Why aren't they using guns or other projectiles?<</say>>
<<say "britt">>Dunno. Probably don't 'av 'em.<</say>>
<<say "mc">>They've built entire structures, have a functioning industry, and easily have the relevant technical know-how. It doesn't fit.<</say>>
<<say "britt">>Maybe they dun 'av the gunpowder or whatever?<</say>>
<<block "east/sarge/meet01.jpg">>
<<say "sarge">>It's because we lack ammunition. Only a few of the elite solders are therefore given them.<</say>>
<<narrate>>$britt.name's pushes you behind her and her stance changes to that of something reminiscent of a Bruce Lee movie.<</narrate>>
<<say "britt">>Who the 'ell are you?<</say>>
<<say "sarge">>I am <<textbox "$sarge.name" "Sena">>, but you can call me Sarge. You've got good reflexes indeed. You'll do nicely! As for the guns, while we have some, a patron and his champions aren't going to succumb to ranged attacks. They have too much time to react.<</say>>
<<say "mc">>They're faster than bullets?<</say>>
<</block>>
<<say "sarge">>Not exactly. But the patron's energy flows through this entire realm. It may only be a fraction of a second but the bullet would be slowed to a harmless velocity almost instantly. It could perhaps work at point-blank range, but if you've got to get that close and can't fight in close range, you're as good as dead.<</say>>
<<think "mc">>What the fuck?<</think>>
<<button "Continue" east-mil>>
<<set $east.milcamp++>>
<</button>>
<<case 3>>
<<say "mc">>So a patron is bulletproof?<</say>>
<<say "sarge">>A patron does not have to retain a corporeal form. The only way to defeat them is to drive them back into the gateway and seal them there. Just like our glorious founder did with the previous patron.<</say>>
<<say "mc">>I see...<</say>>
<<think "mc">>Let's hope they don't realize I have no idea how to change my damn form and that I've no idea how to fucking escape a speeding bullet.<</think>>
<<block "east/sarge/meet02.jpg">>
<<say "sarge">>Relax. I'm no threat. I saw you take down my guard with no effort at all and merely wished to test your reflexes. You on the other hand, have yet to prove your value.<</say>>
<<say "britt">>He's with me.<</say>>
<<say "sarge">>Damien!<</say>>
<<say "side" "Damien">>Yes sarge!<</say>>
<<say "sarge">>I want you to spar with this man. Test his combat prowess. He seems... inexperienced, but remember looks can be deceptive; don't take him lightly.<</say>>
<</block>>
<<say "britt">>No, yo—<</say>>
<<say "mc">>It's fine...<</say>>
<<think "mc">>Shit, she needs an alias. There might be other people in this city called $britt.name, but it's not worth the risk.<</think>>
<<say "mc">>It's fine <<textbox "$aliasbritt" Sharon>>, I just need to prove my value.<</say>>
<<narrate>>She nods, though clearly unhappy.<</narrate>>
<<think "mc">>I'm a big scary patron, right? Just had a big power surge. I can take one chump!<</think>>
<<narrate>>You follow Damien to a clearing. He grunts as he points at a colored spot at one edge and then goes to a similar spot on the other side.<</narrate>>
<<say "sarge">>Let's see what you're made of. Ready... fight!<</say>>
<<narrate>>Damien lunges towards you, you try to sidestep but his knee catches you in the gut and as you fall to the ground his elbow slams into your neck.<</narrate>>
<<say "sarge">>Enough! Good work, solider. Now back to your duties.<</say>>
<<say "side" "Damien">>Yes sarge!<</say>>
<<narrate>>You writhe in pain on the floor as $britt.name rushes over you.<</narrate>>
<<say "britt">>You idiot. I'll kill him!<</say>>
<<say "sarge">>You'll do no such thing. That was a fair fight. You!<</say>>
<<narrate>>She glares at you.<</narrate>>
<<say "sarge">>You have no business here, get to the nurse's office for a once over then leave my camp! <span class='aliasbritt'>$aliasbritt</span>. You'll stay in camp.<</say>>
<<say "britt">>No. I won't leave him!<</say>>
<<narrate>>You groan in pain.<</narrate>>
<<say "mc">>You need to... ouch, fucking hell... you need to stay here. Think of all the <i>good</i> you can do against this evil. You could be the turning point that leads to victory. Don't worry about me, I'll be fine.<</say>>
<<narrate>>The sergeant rolls her eyes.<</narrate>>
<<say "sarge">>Civilians are allowed entry in the evenings to visit their friends & family.<</say>>
<<say "britt">>Wait. Does that mean I 'av to sleep 'ere as well?! Nope. No way.<</say>>
<<say "sarge">>It's to get you used to camp conditions. Do you not want to fight for your people? Clearly you love this man, fight for him, for he isn't capable of fighting for himself.<</say>>
<<say "mc">>She's right, <span class='aliasbritt'>$aliasbritt</span>. You need to stay here. <i>For me.</i><</say>>
<<say "britt">>Damnit! I don't like this one bit. Fuck my life. But Fine!<</say>>
<<say "sarge">>You. Nurse's office. You can't miss it as everything else is a damn tent. Then get out. You can come back in the evenings.<</say>>
<<say "britt">>If anything—<</say>>
<<say "mc">>It's fine. This is for the best.<</say>>
<<narrate>>She glares at you as you walk away.<</narrate>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#textbox-aliasbritt').keyup(function() {
$('.aliasbritt').text($(this).val());
});
});
<</script>>
<<button "Continue" eastsex>>
<<temp "nurse">>
<<set $east.milcamp++>>
<</button>>
<<case 4>>
<<say "britt">>Thank god yer 'ere!<</say>>
<<say "mc">>Something wrong?<</say>>
<<say "britt">>Yeah, I'm not wi' you. This place sucks.<</say>>
<<say "mc">>Have you managed to learn anything useful at least?<</say>>
<<say "britt">>The soldiers 'ere are extremely weak.<</say>>
<<say "mc">>That's somewhat good, right? It means if we can't prevent the invasion, we can at least defeat them easily.<</say>>
<<say "britt">>Nah, it's not right. $am.name is strong, and very quick. I get the same feelin' from $sarge.name. It can't jus' be them two.<</say>>
<<say "mc">>Okay, see if you can dig into anything else.<</say>>
<<say "britt">>I'm gonna try and find the elites $sarge.name mentioned. See if I can spar with one of 'em.<</say>>
<<say "mc">>Just don't push yourself too hard!<</say>>
<<say "britt">>Yeah, no probs.<</say>>
<<narrate>>You're interrupted when $sarge.name appears beside you.<</narrate>>
<<say "sarge">>Ah, $alias, I was hoping we'd get to meet again. $aliasbritt speaks very highly of you. Which I have to say intrigues me given how weak you are and how strong she is.<</say>>
<<say "britt">>He's a lot stronger than you'd imagine.<</say>>
<<say "sarge">>He certainly can take a punch, but he holds no political sway and isn't suited to combat. What other possible strength is there?<</say>>
<<say "mc">>$sarge.name, I am—<</say>>
<<say "sarge">>Sarge.<</say>>
<<say "mc">>Sorry, Sarge. I am relatively weak in comparison to $aliasbritt for sure. But she is extremely precious to me and if anything happened to her, I would ensure hellfire rained down upon those that scorned her.<</say>>
<<narrate>>$britt.name stares at you starry-eyed.<</narrate>>
<<say "sarge">>Fascinating. Until now I had sensed no threat from you whatsoever. But in speaking of $aliasbritt the hairs on the back of my neck pricked up. You'd do anything in your power to protect her?<</say>>
<<say "mc">>Anything.<</say>>
<<say "britt">>Likewise.<</say>>
<<say "sarge">>$aliasbritt, join me tomorrow morning. I have a suggestion you may be interested in.<</say>>
<<say "britt">>Yes, Sarge.<</say>>
<<say "sarge">>It was good to meet you again, $alias. Let me show you out.<</say>>
<<narrate>>You give $britt.name a hug then follow $sarge.name out.<</narrate>>
<<say "sarge">>It boggles my mind how she has such loyalty toward you. But I can see that it's mutual.<</say>>
<<say "mc">>I will do anything and everything for my companions.<</say>>
<<say "sarge">>Companions? Plural. There are others like her? Are they as powerful?<</say>>
<<say "mc">>Based on your definition of the word, no. $aliasbritt is exceptional in that regard.<</say>>
<<say "sarge">>Shame. Though if they are half as loyal as her, they may still be useful.<</say>>
<<say "mc">>What do you—<</say>>
<<say "sarge">>Well, here we are. See you soon.<</say>>
<<narrate>>She turns on a heel and heads back into the camp.<</narrate>>
<<think "mc">>Just what the hell did she mean?<</think>>
<<set $east.milcamp++>>
<<set $east.mildone = 1>>
<<cont "easthub" "" 3>>
<<case 5>>
<<say "britt">>Yer not gonna believe what $sarge.name showed me today!<</say>>
<<say "mc">>Go on.<</say>>
<<say "britt">>They're dopin' soldiers!<</say>>
<<say "mc">>Like steroids and stuff? How does that make up for training?<</say>>
<<say "britt">>No. It's much worse. I dunno what the 'ell it is, but it gives the soldiers more than just a bump in physical strength, they also seem more susceptible to training; picking things up almost immediately.<</say>>
<<say "mc">>Why'd she show you this?<</say>>
<<say "britt">>She said she was thinkin' of you and the "rest of your companions" as she put it, as candidates.<</say>>
<<say "mc">>Shit. Any side-effects?<</say>>
<<say "britt">>She suggested not, but while she was off talkin' to a scientist I overheard 'em mentioned another batch of soldiers freakin' out, goin' insane and even lashin' out at their allies.<</say>>
<<say "mc">>She won't be trying that out on any of us!<</say>>
<<say "britt">>I got the feelin' she really didn't wanna. It was almost with sadness she wo' showin' me around and she genuinely looked upset when she 'erd about the soldiers.<</say>>
<<say "mc">>So why is she actively taking part?<</say>>
<<say "britt">>Dunno, boss. I'm not the best sleuth, but I can try to keep diggin'.<</say>>
<<say "mc">>Thanks, $britt.name. It may prove useful for the cabinet meeting.<</say>>
<<if $east.gbdrug == 1>>
<<set _who = State.variables[$awaypartystray]>>
<<think "mc">>Given what _who.name overhead at the Glitter Box... is $am.name involved in this too?<</think>>
<</if>>
<<say "britt">>You know... if nobody's home I could sneak out of the camp for a bit...<</say>>
<<narrate>>As the two of you are about to depart Damien comes up to you.<</narrate>>
<<say "side" "Damien">>Sarge wants you, $aliasbritt. Wants to test your skills against one of the elites.<</say>>
<<say "britt">>Seriously, right now?<</say>>
<<narrate>>Damien shrugs.<</narrate>>
<<say "side" "Damien">>Probably wants your lover boy to see.<</say>>
<<say "britt">>No. This is—<</say>>
<<say "mc">>It's fine, $aliasbritt. Don't you want to test your strength against them?<</say>>
<<say "britt">>Ugh! Fine!<</say>>
<<set $east.milcamp++>>
<<set $east.mildone = 1>>
<<cont "east-mil" "">>
<<case 6>>
<<narrate>>You arrive a few minutes later.<</narrate>>
<<say "sarge">>Great. Glad you're here. I want to show you the strength of our best. Show you what you could potentially be capable of!<</say>>
<<narrate>>There's an unassuming woman beside her. Blonde and barely over five foot. She smiles nervously at you.<</narrate>>
<<say "britt">>I can tell she's strong.<</say>>
<<narrate>>$sarge.name grins.<</narrate>>
<<say "sarge">>Impressive, most people just assume her to be an assistant or something until she's out in the arena. This is Yolanda.<</say>>
<<think "mc">>Wait, the tiny little blonde next to her?!<</think>>
<<narrate>>The woman says nothing. She just continues to grin nervously.<</narrate>>
<<say "sarge">>She's not very talkative, but she is among the most elite we have. Her prowess rivals that of myself and the envoys.<</say>>
<<narrate>>She points to the edge of the circle.<</narrate>>
<<say "sarge">>You and I are going to want to stand aside. $aliasbritt, I do not let her spar with most. She's that terrifying, but you have so much raw potential, I need to show you what you can become.<</say>>
<<narrate>>$britt.name grins.<</narrate>>
<<say "britt">>And if I beat 'er?<</say>>
<<say "sarge">>That won't happen.<</say>>
<<say "britt">>But if I do?<</say>>
<<say "sarge">>I'll immediately enlist you into the elite unit and you'll be part of the core team responsible for protecting our city and dispatching the champions.<</say>>
<<narrate>>$britt.name nods.<</narrate>>
<<think "mc">>I guess it might get her some more info, but it's also a good way to evaluate the enemy's forces.<</think>>
<<say "sarge">>Ready.... fight!<</say>>
<<narrate>>Yolanda leaps forward and barrels straight toward $britt.name.<</narrate>>
<<say "britt">>Don't ya think that's a bit basic?<</say>>
<<narrate>>As she draws close, $britt.name pivots and sweeps her foot through the air, missing by mere centimeters.<</narrate>>
<<say "britt">>A dodge? Impressive.<</say>>
<<narrate>>Yolanda grabs $britt.name's knee and throws her off to the side.<</narrate>>
<<say "mc">>$aliasbritt!<</say>>
<<say "sarge">>Don't worry, she's fine. But perhaps now she understands the difference—<</say>>
<<narrate>>Without even a moment to catch her breath, $britt.name is back on her feet smirking.<</narrate>>
<<say "britt">>I thought the elite would be better than that.<</say>>
<<narrate>>Yolanda again barrels towards her. $britt.name takes a stance, her hands held high to her face. As soon as Yolanda tries to strike, she grabs her first, blocking all momentum of her punch. Yolanda quickly responds by bringing her knee up but $britt.name still gripping her fist, forces it down to block the movement.<</narrate>>
<<say "sarge">>How the hell is she keeping up?!<</say>>
<<say "britt">>Because this ain't shit!<</say>>
<<narrate>>She releases Yolanda who takes up a stance of her own. This time $britt.name rushes in, her fist flying toward Yolanda's shoulder. Yolanda steps to the right, directly into a kick from $britt.name landing on the side of her torso and physically moving her across the dirt.<</narrate>>
<<say "sarge">>What the fuck?!<</say>>
<<narrate>>Yolanda staggers, falls to the floor and taps out, unable to continue.<</narrate>>
<<say "sarge">>No. Not that easily. Yolanda, are you sick? Why did—<</say>>
<<say "side" "Yolanda">>I am fine, Sarge. Probably the best shape I've ever been... well, before that kick anyway. I can not beat her. Not in my current state.<</say>>
<<say "britt">>So, about that elite team?<</say>>
<<say "sarge">>You're on the team. But I need to know how the fuck you did that? Who trained you?<</say>>
<<say "britt">>I wo' a solider in my old world. Trained daily wi' the best the world had to offer. Before I... came here, I 'ad been offered a position to 'elp defend the travelers using the gateway network.<</say>>
<<say "sarge">>Defenders of the travelers? With who? Can they help us now?<</say>>
<<say "britt">>Dunno. Never got their details, I came 'ere instead.<</say>>
<<think "mc">>That sounds like something to do with the council. Why hasn't she mentioned this before... or is this just a fake backstory for $sarge.name?<</think>>
<<say "sarge">>I wish I'd found you months ago. You could have been a great asset in training others.<</say>>
<<say "mc">>Just be careful. Please... if anything were to happen to you.<</say>>
<<say "britt">>I know. I know. Ditto.<</say>>
<<say "sarge">>Okay. Visiting time is over. $aliasbritt, we have much to discuss.<</say>>
<<set $intel.city.pushUnique('Soldiers are being doped up to improve performance.')>>
<<set $east.milcamp++>>
<<cont "easthub" "" 3>>
<<case 7>>
<<say "britt">>I met the rest of the elite squad. They're weaker than I expected, but greater in number.<</say>>
<<say "mc">>You think they are the doped up soldiers?<</say>>
<<say "britt">>Deffo. You can tell there's a difference even within their ranks. Those that trained for probably decades to hone their skills, and those that 'av' only come in to their power recently.<</say>>
<<say "mc">>Any more info on what they're using to dope them with?<</say>>
<<say "britt">>Better. I swiped this.<</say>>
<<narrate>>She holds some sort of folder aloft.<</narrate>>
<<say "britt">>Seems to be records of the experiments, effects, and even the shipments.<</say>>
<<say "mc">>Holy shit! They don't keep it encrypted on a computer?<</say>>
<<say "britt">>Only reason I even knew about it was because one of the lab guys was complaining about hand cramp and not being able to use the computer to record it because apparently the idiots in charge are afraid the computers won't be functional forever.<</say>>
<<say "mc">>Well, that's to our benefit. Let's take a look.<</say>>
<<narrate>>The two of you spend some time going through the documents. You discover some subjects started hallucinating, and would try to fight their fellow trainees. In some cases they even developed schizophrenia. It does not state what happens to what it refers to as the failures.<</narrate>>
<<say "mc">>This is fucking awful.<</say>>
<<narrate>>You read through some more and discover the drug is based on Blast.<</narrate>>
<<if $east.crops == 6>>
<<think "mc">>Was our theory wrong about what they were using $katie.name's crop for? Was it being used for this instead, or are there more permutations of Blast out there?<</think>>
<</if>>
<<narrate>>The two of you skip to the separator marked Cabinet. There are numerous documents and instructions signed by $gerald.name.<</narrate>>
<<say "mc">>Not a single other cabinet member has signed this. Do they even know? $gerald.name is trying to manufacture super soldiers while causing over half the test subjects to go insane.<</say>>
<<say "britt">>Cruelty doesn't even begin to describe it, eh?<</say>>
<<say "mc">>Honestly, if this can't convince the cabinet, then the cabinet is not worth convincing.<</say>>
<<if $east.gbdrug == 1>>
<<set _who = State.variables[$awaypartystray]>>
<<think "mc">>I really hope that $va.name isn't involved in this too. From what _who.name overhead, it definitely seems she's connected, but maybe she's unaware of the experiments. Her name's not on any of these documents at least.<</think>>
<</if>>
<<set $intel.city.pushUnique('Gerald is experimenting on soldiers.')>>
<<set $east.milcamp++>>
<<set $east.mildone = 1>>
<<cont "easthub" "" 3>>
<</switch>><<if $tempvar == "first">>
<<narrate>>As you head into the hall $tour.name prepared, you can't help but notice how many eyes are on you. It's a little unsettling.<</narrate>>
<<say "mc">>Hello everyone, I understand you have some questions and concerns with $hubname that you'd like me to address. I'd be happy to answer them.<</say>>
<<set $tempvar3 = 0>>
<<switch $nerels>>
<<case "Fearful">>
<<narrate>>There are a lot of questions about their safety, one man even asking how they can be sure you won't eat them. But one question gives you pause for thought.<</narrate>>
<<say "sideg" "Civilian">>How do we know you won't transform us like the previous patron did?<</say>>
<div id="replace">
<<choices>>
<<link "Dismiss the question">>
<<replace "#replace">>
<<narrate>>You laugh off the question as a joke and ask if anyone has any serious questions. There's a look of annoyance on several faces.<</narrate>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "Explain transformation rules">>
<<replace "#replace">>
<<narrate>>You try to explain the rules behind transformation via gateway and via Central and the need for conscious agreement on one, and subconscious agreement on the other. Several people look at you confused.<</narrate>>
<<set $tempvar3 = 3>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "Correct them about $voice.name">>
<<replace "#replace">>
<<narrate>>You suggest the stories they heard about $voice.name aren't entirely true. Several people wince at the mention of her name and opinions seem divided on your response.<</narrate>>
<<set $tempvar3 = 1>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "Change the subject">>
<<replace "#replace">>
<<narrate>>You try to change the subject, not sure how to answer. You go off on a bit of a tangent only loosely connected and people don't seem to notice that when you ask wrap up, that you didn't really answer the question.<</narrate>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<</choices>>
</div>
<<case "Cautious">>
<<narrate>>There are a number of mundane questions about the safety of the gate outside City Hall, if they'll be able to return if they use the Gateway, and such like, but it's the last question that you have to think about.<</narrate>>
<<say "side" "Civilian">>What's stopping you making us reliable on you, then shutting everything down or demanding greater and greater tributes?<</say>>
<div id="replace">
<<choices>>
<<link "Nothing">>
<<replace "#replace">>
<<narrate>>You explain there's nothing other than your own moral sense to stop that. People do not seem amused.<</narrate>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "$eva.name">>
<<replace "#replace">>
<<narrate>>You explain you will be working closely with $eva.name to ensure their city's sovereignty. A small number of people nod, but several more look disgusted.<</narrate>>
<<set $tempvar3 = 1>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "$va.name">>
<<replace "#replace">>
<<narrate>>You explain you will be working closely with $va.name to ensure their city's sovereignty. A large number of people appear happy, though there's a small group looking annoyed.<</narrate>>
<<set $tempvar3 = 3>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "Alternative travel methods long term">>
<<replace "#replace">>
<<narrate>>You explain high-speed trains that don't rely on the gate will be developed that can be maintained and managed by New Eden exclusively. You previously had no such intentions, but thought it would be a good answer, and it seems to have gone over well.<</narrate>>
<<set $tempvar3 = 4>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "Stay self-sufficient">>
<<replace "#replace">>
<<narrate>>You explain you do not wish to offer the city anything that would make it reliant on you or the Gateway. You encourage the city to stay self-sufficient as who knows if the Gateway will always be available. The latter half of your statement seems to have worried a lot of the crowd.<</narrate>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<</choices>>
</div>
<<case "Unsure">>
<<narrate>>There are a number of expected and relevant questions about you and the Gateway, but a particularly well-endowed woman asks a question rather crudely.<</narrate>>
<<say "sideg" "Civilian">>How do we know you won't fuck us all?<</say>>
<div id="replace">
<<choices>>
<<link "Make Sexual Joke">>
<<replace "#replace">>
<<narrate>>You explain to the woman you're looking forward to fucking as many of the women of New Eden as will let you. It's met by some laughter... and some faces of lust.<</narrate>>
<<set $tempvar3 = 4>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "Nothing to gain">>
<<replace "#replace">>
<<narrate>>You suggest you have nothing to gain by fucking them over, and just want to ensure things don't escalate as they did previously. The response is tepid.<</narrate>>
<<set $tempvar3 = 1>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "Protecting companions">>
<<replace "#replace">>
<<narrate>>You talk about your companions and how their safety is paramount. You won't fuck with New Eden, if they don't fuck with your companions. The response is mixed.<</narrate>>
<<set $tempvar3 = 2>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "I guarantee">>
<<replace "#replace">>
<<narrate>>You try to persuade them that you won't, but with nothing to back it up, your response seems empty.<</narrate>>
<<cont "questiontime" "second">>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "Neutral">>
<<narrate>>People seem to a little more comfortable than previously, and have even started asking personal questions about you. However, one question reminds you there are still some not convinced the old stories are entirely false.<</narrate>>
<<say "sideg" "Civilian">>How will you protect us from the evil patron should she make it out of her gateway?<</say>>
<div id="replace">
<<choices>>
<<link "$voice.name is not evil">>
<<replace "#replace">>
<<narrate>>Using her name, some people wince, but you try to persuade them $voice.name was not the evil they're old stories suggest. Unfortunately your response only resonates with those already onboard.<</narrate>>
<<set $tempvar = 1>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "Tell them you're more powerful">>
<<replace "#replace">>
<<narrate>>You respond explaining you are more powerful than she, and, although you doubt she is that level of threat, you would be able to stop her should she become one. There's a few nods, but some people just look confused.<</narrate>>
<<set $tempvar3 = 2>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "No need">>
<<replace "#replace">>
<<narrate>>You tell the questioner there's no need to protect them from $voice.name and move on without any additional context. This is not received well.<</narrate>>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "Invite them to meet her">>
<<replace "#replace">>
<<narrate>>You suggest they all meet her so they can make up their own mind. This is met with shocked faces and and gasps from many. Even those who don't believe the old stories look worried about the prospect. It won't be so easy to clear all doubt from people's minds.<</narrate>>
<<cont "questiontime" "second">>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "Friendly">>
<<narrate>>You received various questions about you and your companions, what you hope to achieve and how you and New Eden can work together. One woman, with a familiar voice, wearing a dark hood to obscure her face, asks a rather leading question.<</narrate>>
<<say "sideg" "???">>Who would you support for mayor?<</say>>
<div id="replace">
<<choices>>
<<link "$eva.name">>
<<replace "#replace">>
<<narrate>>You suggest $eva.name has the best interested of the people at heart and would be the ideal candidate. Only a minority of people are receptive.<</narrate>>
<<set $tempvar3 = 1>>
<<set $mayor = "eva">>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "$va.name">>
<<replace "#replace">>
<<narrate>>You tell them $va.name is a woman of the people and would the ideal person to govern. This is met with a roar of applause.<</narrate>>
<<set $tempvar3 = 5>>
<<set $mayor = "va">>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "Howard">>
<<replace "#replace">>
<<narrate>>You endorse Howard explaining he's always tried his best for the people, and has always looked out for the poorer communities. A number of people seem confused by the response, but a couple nod.<</narrate>>
<<set $tempvar3 = 1>>
<<set $mayor = "howard">>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "$tour.name">>
<<replace "#replace">>
<<narrate>>You talk about $tour.name and all the great things she could do for the city. Most people just stare at you blankly, clearly unaware of who she is.<</narrate>>
<<set $mayor = "tour">>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "Me">>
<<replace "#replace">>
<<narrate>>You suggest you'd make a great mayor, better than their current candidates. This does not go down well.<</narrate>>
<<set $mayor = "me">>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<<link "Nobody">>
<<replace "#replace">>
<<narrate>>You explain that as you are not a citizen of New Eden it is not your place, and that you'll try to work effectively with whomever is elected. The people seem okay with the response.<</narrate>>
<<set $tempvar3 = 2>>
<<set $mayor = "nobody">>
<<cont "questiontime" "second">>
<</replace>>
<</link>><br>
<</choices>>
</div>
<<case "Respected">>
<<notice>>WORK IN PROGRESS<</notice>>
Would normally be a question here.<br>
<<cont "questiontime" "second">>
<</switch>>
<<elseif $tempvar == "second">>
<<taskdone "seegabs">>
<<switch $nerels>>
<<case "Fearful">>
<<left2 "east/tour/off03.jpg">>
<<say "tour">>Well done, I'd say you handled that quite well. I should imagine public opinion of you has improved.<</say>>
<<say "mc">>What was with that last question, though?<</say>>
<<say "tour">>People were scared. Opinions on the legitimacy of the original founder stories are mixed and some remember being friendly with her before whatever happened, happened. It won't be easy to gain their trust, especially given how you stopped the invasion.<</say>>
<<notice>>Public opinion of you in New Eden has improved. They are now cautious of you.<<if $tempvar3 > 0>><br>Your answers also improved your reputation by $tempvar3.<</if>><</notice>>
<<button "Continue" neweden>>
<<set $nerels = "Cautious">>
<<set $neprogress = $tempvar3>>
<<set $tempvar3 = undefined>>
<<time 2>>
<</button>>
<<case "Cautious">>
<<left2 "east/tour/off02.jpg">>
<<say "tour">>Wow, it was tough out there, huh? You did a great job, though.<</say>>
<<say "mc">>What the hell was that last question? Are they always going to throw me curveballs?<</say>>
<<say "tour">>Probably. People are mostly over their fear of you, though I suspect that'll never be completely gone, but they are still some cautious. There's a lot of misinformation about patrons out there right now.<</say>>
<<notice>>Public opinion of you in New Eden has improved. They are now unsure of you.<<if $tempvar3 > 0>><br>Your answers also improved your reputation by $tempvar3.<</if>><</notice>>
<<button "Continue" neweden>>
<<set $nerels = "Unsure">>
<<set $neprogress = $tempvar3>>
<<set $tempvar3 = undefined>>
<<time 2>>
<</button>>
<<case "Unsure">>
<<say "tour">>Well, things are certainly looking up. People seem a bit less vigilant and a little more impassive toward you. They're still some insecurities about living here on the hub with you, but they are slowly coming around to the idea.<</say>>
<<say "mc">>Progress. Though I do wonder why people haven't left through the Gateway if they are so unhappy with the cabinet and wary of me.<</say>>
<<say "tour">>Some already have. But for most, they built a home here, and the benefits of living on a hub are... pretty great. For many, the only decision is to live here, or in $hubname. And until they're more sure of you, they'll stay in New Eden.<</say>>
<<say "mc">>I see...<</say>>
<<notice>>Public opinion of you in New Eden has improved. They are now neutral toward you.<<if $tempvar3 > 0>><br>Your answers also improved your reputation by $tempvar3.<</if>><</notice>>
<<set $nerels = "Neutral">>
<<set $neprogress = $tempvar3>>
<<set $tempvar3 = undefined>>
<<say "tour">>Do you have anywhere to be right now?<</say>>
<<say "mc">>I was probably just going to head back to the hub, why?<</say>>
<<say "tour">>Let's head to my place and celebrate by destroying my ass.<</say>>
<div id="replace">
<<choices>>
<<link "Go with her">>
<<replace "#replace">>
<<say "mc">>Why are we standing around here? Let's go!<</say>>
<<cont "eastsex" "tourass">>
<</replace>>
<</link>><br>
<<link "Decline">>
<<replace "#replace">>
<<say "mc">>Maybe another time.<</say>>
<<say "tour">>Really? You're gonna deny yourself this? Well fuck you very much.<</say>>
<<narrate>>She storms off, clearly unhappy.<</narrate>>
<<cont "neweden" "" 2>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "Neutral">>
<<notice>>Public opinion of you in New Eden has improved. They are now friendly toward you.<<if $tempvar3 > 0>><br>Your answers also improved your reputation by $tempvar3.<</if>><</notice>>
<<set $nerels = "Friendly">>
<<set $neprogress = $tempvar3>>
<<set $tempvar3 = undefined>>
<<left2 "eva/qt01.jpg">>
<<say "eva">>Nice work out there, handsome.<</say>>
<<say "mc">>I'm starting to think I preferred it when they feared me!<</say>>
<<say "eva">>Ha! Sure... sure... I sent $tour.name home.<</say>>
<<say "mc">>Oh, she's not feeling well?<</say>>
<<narrate>>She grins.<</narrate>>
<<say "eva">>No, no... I just thought you and I could benefit from some time alone.<</say>>
<<say "mc">>Oh, really? Anything you have in mind.<</say>>
<<narrate>>She lets her jacket swing open.<</narrate>>
<<left2 "eva/qt02.jpg">>
<<say "eva">>Do I need to spell it out any further?<</say>>
<div id="replace">
<<choices>>
<<link "Unzip">>
<<replace "#replace">>
<<say "mc">>I think I'm catching your drift.<</say>>
<<narrate>>You unzip your fly. She smirks while lowering herself to her knees.<</narrate>>
<<cont "eastsex" "evaqt">>
<</replace>>
<</link>><br>
<<link "Decline">>
<<replace "#replace">>
<<say "mc">>Sorry, $eva.name. Not right now.<</say>>
<<say "eva">>That doesn't sound like the $name I know. Everything okay?<</say>>
<<say "mc">>Yeah, just have some things I need to sort out.<</say>>
<<say "eva">>What a pity, I was looking forward to the feel of your cock between my tits.<</say>>
<<narrate>>She buttons her jacket back up and heads out.<</narrate>>
<<cont "neweden" "" 2>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "Friendly">>
<<notice>>Public opinion of you in New Eden has improved. They now respect you.<<if $tempvar3 > 0>><br>Your answers also improved your reputation by $tempvar3.<</if>><</notice>>
<<think "mc">>Where'd $tour.name go?<</think>>
<<narrate>>You look around but can't find her.<</narrate>>
<<think "mc">>I want to know more about this whole mayor thing. If I can't find $tour.name, I guess I should just go ask $va.name.<</think>>
<<button "Continue" eastsex>>
<<temp "tourva">>
<<set $nerels = "Respected">>
<<set $neprogress = $tempvar3>>
<<set $tempvar3 = undefined>>
<</button>>
<</switch>>
<</if>><<switch $tempvar>>
<<case "res">>
<<if $east.josie == 6>>
<<say "krissy">>You must be $res.name.<</say>>
<<say "res">>And you $krissy.name.<</say>>
<<think "mc">>That's it? Wow. A friendly bunch!<</think>>
<<say "mc">>So this is his best friend's house?<</say>>
<<say "krissy">>Ah, Michael wasn't it?<</say>>
<<say "res">>That's right. Come on, let's go say hello.<</say>>
<<say "mc">>That's the big plan?<</say>>
<<say "res">>If he's alive, he's in there, or Michael knows where he is.<</say>>
<<else>>
<<say "krissy">>Well, let's go say hello. It's been some years since I saw Michael, but him and Thomas were always as thick as thieves.<</say>>
<</if>>
<<narrate>>You follow her to the door. A rather rotund man peeks his head out the door.<</narrate>>
<<say "side" "Michael">>Yeah?<</say>>
<<if $east.josie == 6>>
<<say "res">>Hello Michael. I was hoping to talk to you about Thomas.<</say>>
<<say "side" "Michael">>He's dead.<</say>>
<<say "res">>Is he?<</say>>
<<say "side" "Michael">>Yeah.<</say>>
<<else>>
<<say "krissy">>Hello Michael. Long time no see. I was hoping to speak to you about Thomas.<</say>>
<<say "side" "Michael">>He's dead. Who are you?<</say>>
<</if>>
<<say "krissy">>Michael you let us in this damn house!<</say>>
<<say "side" "Michael">>$krissy.name? Holy fucking shit.<</say>>
<<narrate>>He swings the door open.<</narrate>>
<<say "side" "Michael">>Come in. Come in.<</say>>
<<narrate>>You follow him in.<</narrate>>
<<say "krissy">>Is he actually dead, Michael?<</say>>
<<narrate>>As Michael begins to open his mouth, $krissy.name interrupts.<</narrate>>
<<say "krissy">>Before you answer. Think back to the times I used to visit. Think back to what you <i>owe</i> me Michael. Are you still with Cassandra?<</say>>
<<narrate>>Michael nods.<</narrate>>
<<say "krissy">>Then you give me an honest answer or I swear to god...<</say>>
<<if $east.josie == 6>>
<<narrate>>$res.name leans over to you.<</narrate>>
<<say "res" "" "(Whispering)" "whisper">>Is she always this full on?<</say>>
<<narrate>>$krissy.name stares daggers in your direction and you quickly shake your head.<</narrate>>
<<else>>
<<think "mc">>This is intense.<</think>>
<</if>>
<<say "krissy">>So, Michael?<</say>>
<<say "side" "Michael">>He's in the basement. But... he's not the Thomas you remember.<</say>>
<<if $east.josie == 6>>
<<say "res">>Holy fucking shit. No way. THOMAS!<</say>>
<<narrate>>$res.name runs towards the basement while the rest of you follow.<</narrate>>
<<else>>
<<think "mc">>Wow, he caved so easily. How the hell did they keep him hidden... or is that just $krissy.name's power?<</think>>
<<narrate>>You head over to the basement with $krissy.name.<</narrate>>
<</if>>
<<button "Continue" east-res>>
<<temp "thomas">>
<</button>>
<<case "thomas">>
<<if $east.josie == 6>>
<<say "res">>Thomas? Thomas it's me, $res.name!<</say>>
<<else>>
<<say "krissy">>Thomas, come on out. We need to talk.<</say>>
<</if>>
<<narrate>>There's silence for a moment then the sound of walking stick hitting a concrete floor.<</narrate>>
<<if $east.josie == 6>>
<<say "side" "Thomas">>I should have known you'd find me eventually, $res.name. You always were exceptional.<</say>>
<<else>>
<<say "side" "Thomas">>I should have known someone would find me eventually... now why does that voice sound so familiar?<</say>>
<</if>>
<<narrate>>He notices you staring.<</narrate>>
<<say "side" "Thomas">>Yup. That's a wooden leg, lad. Lost the other when $va.name tried to have me killed.<</say>>
<<say "krissy">>So you've been hiding here Thomas?<</say>>
<<say "side" "Thomas">>$krissy.name?! No, this must be some sort of hallucination.<</say>>
<<narrate>>She strides over to him and slaps him around the head.<</narrate>>
<<say "krissy">>Still think it's a hallucination?<</say>>
<<say "side" "Thomas">>You've been in the city all this time? How did I not know.<</say>>
<<say "krissy">>Uhh... no. Listen it's a long story and we can catch up another time. For now, you're going to help $name prevent this war.<</say>>
<<say "side" "Thomas">>$name?<</say>>
<<say "mc">>That's me. I'm the patron your people are looking to start a war with. I do not wish for it. I'm hoping to convince the cabinet. Do you think you can help?<</say>>
<<say "side" "Thomas">>If that's what $krissy.name wishes of me. $gerald.name and $va.name colluded to have me killed. $gerald.name thought $va.name would help him with the younger voters. She just wanted power. They are both as corrupt as each other. One of her men tried to kill me, hoping to make it look like an accident. While I lost my leg, that man lost his life.<</say>>
<<say "krissy">>And you've holed up here ever since?<</say>>
<<say "side" "Thomas">>Not quite. I've been creating a movement. Placing doubt in people's minds about the stories we were told. The champions aren't evil, they are as much victims as we are. I discovered that $gerald.name wasn't actually giving the items he was withholding from the citizens to the champions, but instead his wealthy friends and benefactors. Ultimately, I think that's what led to this.<</say>>
<<narrate>>He taps his wooden leg.<</narrate>>
<<say "side" "Thomas">>But anyway. Initially through Michael and Cassandra we've tried to convince as many of the population that the champions aren't evil as possible. Try to awaken them to the injustice in this city. $howard.name would be appalled if he knew, but I couldn't risk him being killed off if $gerald.name or $va.name thought he knew. The war effort, well that's only helped. The people don't generally want to go to war. Even the poor who think milk has been withheld from them due to the champions don't want to risk their family. When your city is dwindling, even if slowly, with no way to reproduce, people tend to be a lot more protective of their loved ones.<</say>>
<<if $east.josie == 6>>
<<say "res">>So all this time you've been working from the shadows?<</say>>
<<else>>
<<say "mc">>So you've been working from the shadows?<</say>>
<</if>>
<<say "side" "Thomas">>Yes<<if $east.josie == 6>>, $res.name. My apologies for not been upfront with you, but I'd already risked Michael's and Cassandra's lives by sharing this secret. That's already two too many.<<else>>. I've tried to keep my presence unknown, I was already risking Michael's and Cassandra's lives by sharing the secret with them.<</if>><</say>>
<<say "mc">>Can you come to the cabinet meeting? You may be the key to convincing $howard.name and $eva.name.<</say>>
<<say "side" "Thomas">>But that would leave a stalemate. Two against two.<</say>>
<<say "mc">>Not if I can have the other three to agree to remove $va.name or $gerald.name first.<</say>>
<<say "side" "Thomas">>I—I'm not sure that's—<</say>>
<<say "krissy">>You'll damn well be there, Thomas. Or I'll drag you there.<</say>>
<<say "side" "Thomas">>Ah, right. Yes, of course.<</say>>
<<button "Continue" easthub>>
<<set $intel.gerald.pushUnique('Colluded with $va.name to kill Thomas.')>>
<<set $intel.va.pushUnique('Colluded with $gerald.name to kill Thomas.')>>
<<set $intel.city.pushUnique('Thomas is alive.')>>
<<set $east.thomas = 3>>
<<if $east.josie == 6>>
<<set $east.josie = 7>>
<</if>>
<<time 3>>
<</button>>
<</switch>><<switch $tempvar>>
<<case "sell">>
<<say "mc">>I need some help looking into something.<</say>>
<<say "am">>We can't do anything openly, but what is it?<</say>>
<<say "mc">>$gerald.name is running a prostitution racket out of <i>Aegis Protectorate.</i><</say>>
<<say "am">>Correct. Nothing illegal about that.<</say>>
<<say "mc">>Some of the women then get moved to perform in the platinum lounge at the <i>Glitter Box</i>.<</say>>
<<say "am">>Been trying to get in there for some time. But it's extremely exclusive. We don't have the time for—<</say>>
<<if $east.gerald != undefined>>
<<say "mc">>I'm a member. I've been there.<</say>>
<<else>>
<<say "mc">>I've been invited there by $gerald.name.<</say>>
<</if>>
<<say "am">>What? How the fuck?<</say>>
<<say "mc">>He saw me with someone at <i>Revolución</i> and invited me to perform there.<</say>>
<<if $east.gerald != undefined>>
<<say "am">>Holy shit. And, what did you learn?<</say>>
<<say "mc">>It's just a bunch of rich people watching others fuck, sometimes taking part.<</say>>
<<say "am">>Eh, seems pretty tame. What exactly are you wanting me to look into here?<</say>>
<<else>>
<<say "am">>And you've not been in yet? Then exactly what are you wanting me to look into here?<</say>>
<</if>>
<<say "mc">>One of the prostitutes suggested women are being sold off to the more wealthy onlookers. Inferring the <i>Platinum Lounge</i> is like a showroom for potential buyers.<</say>>
<<say "am">>That's... quite the accusation. And that's what you want me to look into?<</say>>
<<say "mc">>Yes, I don't think I have the resources or time to investigate those people.<</say>>
<<narrate>>$va.name suddenly chimes in from other room.<</narrate>>
<<if $east.gerald != undefined>>
<<say "va">>You performed there, you say?<</say>>
<<say "mc">>That's right.<</say>>
<<else>>
<<say "va">>You performed for him at <i>Revolución</i>, you say?<</say>>
<<say "mc">>Well, I didn't mind an audience, but it wasn't for him. I didn't know who it was at the time.<</say>>
<</if>>
<<say "va">>Show me.<</say>>
<<say "mc">>Sorry?<</say>>
<<say "va">>I think I have a good understanding of what makes you tick by now. Are you going to give up an opportunity to fuck $am.name?<</say>>
<<say "am">>If that's what my mistress wishes.<</say>>
<<think "mc">>Holy fuck. I have no idea how this relates to anything, but I'm not gonna pass up on the chance.<</think>>
<<narrate>>She kneels on the chair, waggling her ass at you, her pussy already glistening.<</narrate>>
<<say "mc">>Well, there's a welcoming invite.<</say>>
<<narrate>>You pull her clothes to one side and run your fingers over her lips. Her body quivers with excitement.<</narrate>>
<<button "Continue" eastsex>>
<<temp "am-vawatch">>
<</button>>
<<default>>
<<choices "What do you want to do?">>
<<if ($east.coffee == "threesome" || $east.krissyperformed == 1) && $east.amvawatch == undefined>>
<<link "$gerald.name selling women off." east-va>>
<<temp "sell">>
<</link>><br>
<</if>>
<<if $east.amvasaw == 2>>
<<link "Ask about $va.name's gratitude" eastsex>>
<<temp "amreward">>
<</link>><br>
<</if>>
<<if $east.cabmet == 1>>
<<link "Speak to $va.name's" eastsex>>
<<temp "vareward">>
<</link>><br>
<</if>>
<<if $east.howardmeet == 1>>
<<link "Meet $howard.name" cabinet>>
<<temp "howard-pro">>
<</link>><br>
<</if>>
<<link "Return" eaststuff>>
<</link>>
<</choices>>
<</switch>><<if debug == true>>
<div class="debug">
<<button "Enable Expeditions" expeditions>>
<<set $expeditions = 1>>
<<set $explorers = ['britt', 'ember', 'cassie', 'molly', 'moriah']>>
<<run setTime(8,0)>>
<<set $energy = 1>>
<<set $qt = 1>>
<</button>>
<<button "+5hr" expeditions>>
<<time 5>>
<</button>>
<<button "NRG is 5" expeditions>>
<<set $energy = 5>>
<</button>>
<<button "NRG is 50" expeditions>>
<<set $energy = 50>>
<</button>>
<<button "NRG is 100" expeditions>>
<<set $energy = 100>>
<</button>>
<<button "InfluenceTest" expeditions>>
<<influence "matsCee">>
<</button>>
</div>
<</if>>
<<run checkPlanets()>>
<<link "Return" gatewayb>><</link>><br>
<<if $tasks.twoexp != undefined>>
<<script>>
if (State.variables.explorers.length >= 2) {
completeTask('twoexp');
}
<</script>>
<</if>>
<<if $possess == undefined>>
<<set $possess = false>>
<</if>>
<<if $exploration isnot undefined && $exploration isnot "" && $explorationends == "" && $completeTasks.includes('expedition')>>
<<if $exploration.explorers != undefined && $exploration.explorers.length > 0>>
<<notice>>
<b>Details of your last expedition.</b><br>
<<for _k, _v range $exploration.explorers>>
<<set _n = State.variables[_k]>>
_n.name recovered <strong style="color:green">_v.earnings resources</strong> and gained <strong style="color:red">_v.fatigue fatigue</strong>.<br>
<<if _v.bonusskill != undefined>>
_n.name learned a little about <strong style="color:green">_v.bonusskill</strong>.<br>
<</if>>
<</for>>
<</notice>>
<</if>>
<<set $exploration = "">>
<<if $girlsavailable.includes('whitney') && $whitney.events.greeted == undefined>>
<<think "mc">>This should be enough to convince $whitney.name it's safe. No doubt she'll want to go home tomorrow.<</think>>
<<set $whitney.events.daysstay = 1>>
<</if>>
<</if>>
<<if $exploration isnot "" && $exploration isnot undefined && $exploration.endtime isnot undefined>>
<<run checkSchedules()>>
<<notice>>
There's already an ongoing expedition. Come back after $exploration.endtime:00
<</notice>>
<<set _td = $exploration.endtime - $hour>>
<center><<button "Return" gatewayb>><</button>> <<button "Wait" expeditions>><<time _td>><</button>></center>
<<elseif $hour > 16>>
<<notice>>16:00 is the latest you can send out an expedition. Try again tomorrow.<</notice>>
<<else>>
<<if $expeditions is undefined>>
<<think "mc">>I should probably try and convince some of the others to help first.<</think>>
<<button "Continue" gatewayb>><</button>>
<<else>>
<<if $planet is undefined>>
<<if $canpossess == true && $possess < 3>>
<<notice>>Your possession ability has further improved. You can now take full control over people on the other side of the Gateway. This ability is used at Gateway B.
<ul>
<li>Your power has increased.</li>
<li>Possession ability unlocked.</li>
<li>Piggybacking and influencing familiarity requirements decreased.</li>
</ul><</notice>>
<<set $possess = 3>>
<<set $piggythreshold = 20>>
<<set $ridethreshold = 40>>
<<set $power += 5>>
<</if>>
<<set $event = {}>>
<<choices "Select a location">>
<div class="locations flex">
<<for _k, _v range planets>>
<<if $planets[_k].unlocked == false>>
<<continue>>
<</if>>
<<set _energy = _v.energy>>
<<capture _k, _v, _energy>>
<<set _passage = "">>
<<if $breakdone.gatewayb != undefined && $breakdone.gatewayb.includes('reserves')>>
<<set _energy-->>
<<if _energy < 1>>
<<set _energy = 1>>
<</if>>
<</if>>
<<if $energy >= _energy>>
<<set _passage = "expeditions">>
<</if>>
<div class="girlChoice" @data-passage="_passage" data-setter="$planet = _k; $energyuse = _energy">
<h3 style="margin-bottom: 0;">_v.name</h3>_v.coords
<div style="position:relative;">
<img @src="setup.img+'/planets/'+_k+'.png'" class="planetimg">
<<set _icons = "">>
<<if $possess != false>>
<<if $planets[_k].piggy != undefined && $planets[_k].piggy.length > 0>>
<<set _okay = true>>
<<for _ev range $planets[_k].piggy>>
<<capture _ev>>
<<if _ev == "">>
<<run $planets[_k].piggy,delete(_ev)>>
<<continue>>
<</if>>
<<for _c range offevents[_ev].chars>>
<<if $girlsavailable.includes(_c) && getCurrentLocation(_c) != "Off World" && getCurrentLocation(_c) != planets[characterinfo[_c].home].name>>
<<set _okay = false>>
<<break>>
<</if>>
<</for>>
<<if _okay == true>>
<<set $event[_k] = _ev>>
<<break>>
<</if>>
<</capture>>
<</for>>
<<set _title = "There are piggyback events available on this world.">>
<<set _style = "">>
<<if _okay != true>>
<<set _style = "opacity: 0.5">>
<<set _title = "There are piggyback events available on this world, but the relevant characters aren't currently on that world.">>
<</if>>
<<set _icons += '<img src="img/icons/piggy.svg" class="movieicon em" @style="_style" @title="_title">'>>
<</if>>
<</if>>
<<if $possess > 1>>
<<if $planets[_k].influence != undefined && $planets[_k].influence.length > 0>>
<<set _okay = true>>
<<set _title = "There are influence events available on this world.">>
<<for _ev range $planets[_k].influence>>
<<capture _ev>>
<<if _ev == "">>
<<run $planets[_k].piggy,delete(_ev)>>
<<continue>>
<</if>>
<<if offevents[_ev].residents != undefined>>
<<for _c range offevents[_ev].charresidents>>
<<if !$girlsavailable.includes(_c)>>
<<set _okay2 = false>>
<<set _title = "There are influence events available on this world, but you need to influence "+State.variables[_c].name+".">>
<<break>>
<</if>>
<</for>>
<</if>>
<<for _c range offevents[_ev].chars>>
<<if $girlsavailable.includes(_c) && getCurrentLocation(_c) != "Off World" && getCurrentLocation(_c) != planets[characterinfo[_c].home].name>>
<<set _okay = false>>
<<set _title = "There are influence events available on this world, but the relevant characters aren't currently on that world.">>
<<break>>
<</if>>
<</for>>
<<if _okay == true>>
<<break>>
<</if>>
<</capture>>
<</for>>
<<set _style = "">>
<<if _okay != true>>
<<set _style = "opacity: 0.5">>
<</if>>
<<set _icons += '<img src="img/icons/influence.svg" class="movieicon em" @style="_style" @title="_title">'>>
<</if>>
<</if>>
<<if $possess > 2>>
<<if $planets[_k].possession != undefined && $planets[_k].possession.length > 0>>
<<if $planets[_k].possess == undefined || $planets[_k].possess != true>>
<<set _l = $planets[_k].possess>>
<<set _icons += '<img src="img/icons/possess.svg" class="movieicon em" style="opacity:0.5" title="There are possession events available on this world, but you need to improve your power control.">'>>
<<else>>
<<set _okay = true>>
<<for _ev range $planets[_k].possession>>
<<capture _ev>>
<<if _ev == "">>
<<run $planets[_k].piggy,delete(_ev)>>
<<continue>>
<</if>>
<<for _c range offevents[_ev].chars>>
<<if $girlsavailable.includes(_c) && getCurrentLocation(_c) != "Off World" && getCurrentLocation(_c) != planets[characterinfo[_c].home].name>>
<<set _okay = false>>
<<break>>
<</if>>
<</for>>
<<if _okay == true>>
<<break>>
<</if>>
<</capture>>
<</for>>
<<set _title = "There are possession events available at Gateway B for this world.">>
<<set _style = "">>
<<if _okay != true>>
<<set _style = "opacity: 0.5">>
<<set _title = "There are possession events available on this world, but the relevant characters aren't currently on that world.">>
<</if>>
<<set _icons += '<img src="img/icons/possess.svg" class="movieicon em" @style="_style" @title="_title">'>>
<</if>>
<</if>>
<</if>>
<<if $val.traits.includes('poster child') && ($poster == undefined || $poster.val == undefined || !$poster['val'].includes(_k))>>
<<set _icons += '<img src="img/icons/poster.svg" class="movieicon em" title="Poster child bonus is inactive on this world.">'>>
<</if>>
<div style="display:inline-block; position: absolute; left: 0; right: 0; text-align: center; top: calc(50% - 22px)">
<<for _p range _v.home>>
<<if !$girlsmet.includes(_p)>><<continue>><</if>>
<<set _pn = State.variables[_p].name>>
<img class="tinybadge" @src="setup.img+'/'+getFolder(_p)+'/badge.jpg'" @title="_pn+'\'s Home World'">
<</for>>
</div>
/* possession */
</div>
<div>
<span @title=" _energy+' energy required'" class="em">⚡ _energy</span>
<div class="icons">
_icons
</div>
<<if $energy < _energy>><b>INSUFFICIENT ENERGY</b><</if>>
</div>
</div>
<</capture>>
<</for>>
</div>
<</choices>>
<<else>>
<<link "Back" expeditions>>
<<set delete $planet>>
<</link>><br>
<<if $maxexplorers > 2>>
<<set $maxexplorers = 2>>
<</if>>
<<if $food == undefined>>
<<set $food = 0>>
<</if>>
<<if $possess == 1>>
<<set $piggythreshold = 50>>
<<set _seen = 0>>
<<for _k, _p range $planets>>
<<capture _k, _p>>
<<if _p.eventsdone == undefined>>
<<set $planets[_k].eventsdone = []>>
<</if>>
<<set _seen += _p.eventsdone.length>>
<<if _seen > 5>>
<<break>>
<</if>>
<</capture>>
<</for>>
<<if _seen >= 5>>
<<notice>>Through repeated use, your possession ability has improved.<br>You can now communicate with your host, and to a small extent, influence their behavior.<br>Additionally, the familiarity requirement for piggybacking has been halved.
<ul>
<li>Your power has increased.</li>
<li>Ride-share ability unlocked.</li>
</ul><</notice>>
<<set $possess = 2>>
<<set $piggythreshold = 25>>
<<set $ridethreshold = 60>>
<<set $power += 2>>
<</if>>
<</if>>
<div class="leftbit" style="min-width:49%; max-width:49%;">
<<choices "Select Explorers">>
<<set delete $piggy>>
<<set delete $mount>>
<<if $food > 0>>
You have enough surplus food to send an additional explorer.<br>
<</if>>
<div class="flex" id="selectTeam">
<<if $possess >= 2 && $harley.events.theopromo == undefined && $theodora.events.photoshare != undefined && $planet == 4>>
<div class="girlChoice" style="border: none" g="theodora">
<img @src="setup.img+'/theodora/badge.jpg'" class="badge"><br>$theodora.name<br>💤$theodora.fatigue
</div>
<</if>>
<<for _g range $explorers>>
<<capture _g>>
<<if $mc.events.eastgo != undefined && $mc.events.eastreturn == undefined && (_g == "britt" || _g == "krissy" || _g == $awaypartyeast || _g == $awaypartystray)>><<continue>><</if>>
<<if !$girlsavailable.includes(_g)>><<continue>><</if>>
<<if getCurrentLocation(_g) == "Off World" || getCurrentLocation(_g) == planets[characterinfo[_g].home].name>><<continue>><</if>>
<<if $teaching != undefined && ($teaching.who == _g || $teaching.teacher == _g)>><<continue>><</if>>
<<set _n = State.variables[_g]>>
<div class="girlChoice" style="border: none; max-width: 90px;" @g="_g">
<img @src="setup.img+getFolder(_g)+'/badge.jpg'" class="badge"><br>_n.name<br>💤_n.fatigue<br>
<<for _t range _n.traits>>
<<if traits[_t].exp == false>><<continue>><</if>>
<<set _tool = eval(traits[_t].info)>>
<<if _t == "poster child" && $poster != undefined && $poster[_g] != undefined>>
<<set _tool = eval(traits[_t].info) + "<br>Current Bonus " + $poster[_g].length>>
<<for _w range $poster[_g]>>
<<set _tool += "<br>"+planets[_w].name>>
<</for>>
<</if>>
<span class="trait" @title="_tool">_t</span><br>
<</for>>
</div>
<</capture>>
<</for>>
</div>
<</choices>>
<<if $possess >= 1>>
<<choices "Abilities">>
<<if $planet == 1>>
<strong>Can not use abilities on your home world.</strong>
<<else>>
<div style="text-align:left">
<<step "Piggyback" "The lowest level of your possession ability allows you to piggyback an explorer for the first 2 hours of their expedition. You won't get to influence or communicate with them and the only senses shared are sight & hearing.">> Requires $piggythreshold Like & 1 Energy<br>
<<if $possess >= 2>>
<<step "Influence" "Intermediate ability allowing you to communicate with your host and experience their physical feelings.">> Requires $ridethreshold Like & 2 Energy<br>
<</if>>
<<if $possess >= 3>>
<<step "Full Control" "Advanced ability allowing you to fully control your host. Associated events are under their own category at Gateway B.">>
<<else>>
Keep using your possessions abilities to improve and/or unlock abilities.
<</if>>
</div>
<</if>>
<</choices>>
<</if>>
</div>
<div class="rightbit" style="width: calc(49% - 60px)">
<<choices "Expedition Team">>
<div class="flex" id="expTeam">
</div>
<</choices>>
</div>
<br>
<br>
<center><button id="gobutton" style="display:none; font-size: 150%">Start Expedition</button></center>
<<script>>
$(document).one(':passageend', function (ev) {
$('#selectTeam').on('click', '.girlChoice', function() {
var l = $('#expTeam').find('.girlChoice').length;
if (State.variables.food > 0) State.variables.maxexplorers++;
if (l >= State.variables.maxexplorers) {
errorMsg("Expedition team is full");
if (State.variables.food > 0) State.variables.maxexplorers--;
return;
}
if (State.variables.food > 0) State.variables.maxexplorers--;
let g = $(this).attr('g');
if (g == "theodora" && getCurrentLocation('harley') != planets[characterinfo['harley'].home].name) {
errorMsg(State.variables.harley.name + " is currently visiting the hub.");
return;
}
if (g == "sophia" && State.variables.planet == 1) {
errorMsg(State.variables.sophia.name + " can not visit her home world.");
return;
}
if ((g == "britt" && $("#expTeam .girlChoice[g='moriah']").length == 1) || (g == "moriah" && $("#expTeam .girlChoice[g='britt']").length == 1)) {
errorMsg(State.variables['britt'].name+" & "+State.variables['moriah'].name+" cannot go on expeditions together.");
return;
}
let abilities = "";
if (State.variables.possess != false && State.variables[g].like >= State.variables.piggythreshold && State.variables.planet != 1 && g != "theodora") {
let disabled = "";
if ($('#expTeam').find('.cancelPiggy').length > 0 || $('#expTeam').find('.cancelRide').length > 0) {
disabled = " disabled";
}
abilities += "<button class='piggy possession' g='"+g+"'"+disabled+">Piggyback</button>";
}
if (State.variables.possess >= 2 && State.variables[g].like >= State.variables.ridethreshold && State.variables.planet != 1) {
let disabled = "";
if ($('#expTeam').find('.cancelRide').length > 0 || $('#expTeam').find('.cancelPiggy').length > 0) {
disabled = " disabled";
if (g == "theodora") {
errorMsg(State.variables.theodora.name + " will only go on an expedition if you are using your influence ability on her, not somebody else.");
return;
}
}
abilities += " <button class='ride possession' g='"+g+"'"+disabled+">Influence</button>";
}
let working = "";
/* are they assigned to the rota today? */
if (State.variables.working != undefined && State.variables.working[g] != undefined) {
for (let x = State.variables.hour; x < State.variables.hour + 5; x++) {
if (x != 12 && x != 16 && x != 19 && x != 23) continue;
if (State.variables.working[g][x] != undefined) {
working = "<br><b style='color:red'>Will miss their shift.</b>";
break;
}
}
}
$('<div class="girlChoice" g="'+g+'"><img src="'+setup.img+getFolder(g)+'/'+g+'crop.jpg" style="width:250px"><br>'+State.variables[g].name+' 💤'+State.variables[g].fatigue+'<br>'+abilities+working+'</div>').appendTo('#expTeam');
if (g == "theodora") $(".ride[g='theodora']").click().prop('disabled', true);
$(this).remove();
checkTeam();
});
$('#expTeam').on('click', '.piggy', function(e) {
e.stopPropagation();
let g = $(this).attr('g');
let energy = State.variables.energyuse + 1;
if (energy > State.variables.energy) {
errorMsg("Not enough energy.");
return;
}
State.variables.energyuse++;
$('.possession').prop('disabled', true);
$(this).prop('disabled', false);
$(this).html('Cancel').addClass('cancelPiggy').removeClass('piggy');
State.variables.piggy = g;
});
$('#expTeam').on('click', '.ride', function(e) {
e.stopPropagation();
let g = $(this).attr('g');
let energy = State.variables.energyuse + 2;
if (energy > State.variables.energy) {
errorMsg("Not enough energy.");
return;
}
State.variables.energyuse += 2;
$('.possession').prop('disabled', true);
$(this).prop('disabled', false);
$(this).html('Cancel').addClass('cancelRide').removeClass('ride');
State.variables.mount = g;
});
$('#expTeam').on('click', '.cancelPiggy', function(e) {
e.stopPropagation();
$('.possession').prop('disabled', false);
$(this).html('Piggyback').addClass('piggy').removeClass('cancelPiggy');
State.variables.energyuse--;
delete State.variables.piggy;
});
$('#expTeam').on('click', '.cancelRide', function(e) {
e.stopPropagation();
let g = $(this).attr('g');
$('.possession').prop('disabled', false);
$(this).html('Influence').addClass('ride').removeClass('cancelRide');
State.variables.energyuse -= 2;
delete State.variables.mount;
});
$('#expTeam').on('click', '.girlChoice', function() {
let g = $(this).attr('g');
let traitinfo = '';
for (let x in State.variables[g].traits) {
let trait = State.variables[g].traits[x];
if (traits[trait].exp == false) continue;
traitinfo += '<span class="trait" title="'+eval(traits[trait].info)+'">'+trait+'</span><br>';
}
$('<div class="girlChoice" style="border: none; max-width: 90px" g="'+g+'"><img src="'+setup.img+getFolder(g)+'/badge.jpg" class="badge"><br>'+State.variables[g].name+'<br>💤'+State.variables[g].fatigue+'<br>'+traitinfo+'</div>').appendTo('#selectTeam');
$(this).remove();
getTooltips();
checkTeam();
});
function checkTeam() {
var l = $('#expTeam').find('.girlChoice').length;
if (l >= 2) {
$('#gobutton').show();
} else {
$('#gobutton').hide();
}
}
$('.expcheck').change(function() {
var l = $('#travelers').find('.expcheck:checked').length;
if (l >= State.variables.maxexplorers) {
$('.expcheck:not(:checked)').prop('disabled', true);
} else {
$('.expcheck').prop('disabled', false);
}
if (l >= 2) {
$('#gobutton').show();
} else {
$('#gobutton').hide();
}
});
$('#gobutton').click(function() {
State.variables.exploring = {};
let deleting = [];
$('#expTeam .girlChoice').each(function() {
let g = $(this).attr('g');
State.variables.exploring[g] = {};
if (g == "molly" && State.variables.molly.events.cosplaystart == 7) State.variables.molly.events.cosplaystart = 8;
deleting.push(g);
});
if (Object.keys(State.variables.exploring).length > 2) {
State.variables.food -= 1;
}
completeTask('expedition');
State.variables.girlsavailable = State.variables.girlsavailable.filter(item => !deleting.includes(item));
State.variables.explorationends = State.variables.hour+5;
if (State.variables.piggy != undefined) {
let passage = "piggy";
if (State.variables.event[State.variables.planet] != undefined) {
passage = offevents[State.variables.event[State.variables.planet]].passage;
State.variables.tempvar = offevents[State.variables.event[State.variables.planet]].tempvar;
}
startexploration();
Engine.play(passage);
} else if (State.variables.mount != undefined) {
startexploration();
Engine.play('rides');
} else {
startexploration();
Engine.play('expeditions');
}
})
})
<</script>>
<</if>>
<</if>>
<</if>><<if $girlshere.length == 0>>
<<center "other/pinball.jpg">>
<<narrate>>There's nobody here to play with, so you play pinball for 30mins before rage-quitting.<</narrate>>
<<button "Continue" housestuff>><<time 0.5>><</button>>
<<else>>
<<scene>>
<<set _g = either($girlshere)>>
<<set $gamegirl = _g>>
<<set _w = State.variables[_g]>>
<<set _game = $tempvar3>>
<<set _wins = ['trounce them', 'win decisively', 'barely scrape a victory']>>
<<set _losses = ['lost unexpectedly', 'lose spectacularly', 'were destroyed']>>
<<set _l = random(0, 1)>>
<<if _l == 0>>
<<set _win = either(_losses)>>
<<else>>
<<set _win = either(_wins)>>
<</if>>
<<set _img = "other/"+_game+".jpg">>
<<set _game = _game.replace("_", " ")>>
<<center _img>>
<<like _g 1>>
<<narrate>>You play _game with _w.name. You _win.<</narrate>>
<<if _g == "adria" && $adria.corruption > 19 && $adria.events.relationship != undefined && $adria.events.relationship == "taboo" && $adria.mature != true>>
<<if _l == 0>>
<<say _g>>Ha! I win.<</say>>
<<else>>
<<say _g>>Damn, I can't believe I lost!<</say>>
<</if>>
<<say "mc">>Rematch?<</say>>
<<say _g>>Nah, I need to... take care of something.<</say>>
<<if $adria.events.gamespeep != undefined>>
<<think "mc">>Sounds like I'm gonna get another show!<</think>>
<</if>>
<<button "Continue" adriasex>>
<<temp "games">>
<</button>>
<<elseif _g == "val">>
<<if _l == 0>>
<<say _g>>Loser! And now for your forfeit.<</say>>
<<say "mc">>I didn't agree to any—<</say>>
<<narrate>>She holds her finger to your lips.<</narrate>>
<<say _g>>Believe me, you're going to enjoy this.<</say>>
<<notice>>Lewd scene not added yet, but you still get a lust bonus.<</notice>>
<<button "Continue" housestuff>>
<<lust "val" 3>>
<<time 1>>
<</button>>
<<else>>
<<say _g>>Fuck! I can't believe you beat me. Were you fucking cheating? I bet you were. FUCK!<</say>>
<<think "mc">>Whoa, she's a bad loser. I'll give her some space.<</think>>
<<time 1>>
<<cont "housestuff" "">>
<</if>>
<<elseif _w.lust > 29 && _g != 'adria'>>
<<if _l == 0>>
<<say _g>>Time for me to claim my prize...<</say>>
<<else>>
<<say _g>>And what does the victor wish to do with me?<</say>>
<</if>>
<<if _g != "molly">>
<<narrate>>Lewd scene not added yet, but you still get a lust bonus.<</narrate>>
<</if>>
<<button "Continue">>
<<if $gamegirl == "molly">>
<<temp "games">>
<<goto "mollysex">>
<<elseif $gamegirl == "adria" && $adria.corruption > 19 && $adria.events.relationship != undefined && $adria.events.relationship == "taboo">>
<<temp "games">>
<<goto "adriasex">>
<<else>>
<<lust $gamegirl 3>>
<<time 1>>
<<goto "housestuff">>
<</if>>
<</button>>
<<else>>
<<if _l == 0>>
<<think _g>>I'd love to push this a bit further, but I don't think that's wise just yet.<</think>>
<<else>>
<<say _g>>Good game, let's play again some time.<</say>>
<<think "mc">>Perhaps if she desired me more, I could claim a better prize for my victory.<</think>>
<</if>>
<<button "Continue" housestuff>>
<<like $gamegirl 1>>
<<time 0.5>>
<</button>>
<</if>>
<</if>><ul>
<<switch $activeintel>>
<<case "gerald">>
<li>Womanizer</li>
<li>Power hungry</li>
<li>Charismatic</li>
<li>Likes redheads</li>
<li>Former tour guide</li>
<<for _i range $intel.gerald>>
<li>_i</li>
<</for>>
<<case "howard">>
<li>Coward, unless protecting others</li>
<li>Fears the champions</li>
<li>Humanitarian</li>
<li>Often working in poorer communities</li>
<li>Former tour guide</li>
<<for _i range $intel.howard>>
<li>_i</li>
<</for>>
<<case "eva">>
<li>Businesswoman</li>
<li>Charismatic</li>
<li>Manages city finances</li>
<li>Funds $howard.name's causes</li>
<li>Former tour guide</li>
<<for _i range $intel.eva>>
<li>_i</li>
<</for>>
<<case "va">>
<li>Manipulative</li>
<li>Loyal assistant - $am.name</li>
<li>Relatively new to the position</li>
<<for _i range $intel.va>>
<li>_i</li>
<</for>>
<<case "city">>
<<set _inv = $cabinet+1>>
<li>Population can't reproduce</li>
<li>Cabinet meeting in $cabinet days</li>
<li>Invasion in _inv days</li>
<<for _i range $intel.city>>
<li>_i</li>
<</for>>
<</switch>>
</ul>tempvar <<textbox "$tempvar" $tempvar>> <br>
tempvar2 <<textbox "$tempvar2" $tempvar2>> <br>
tempvar3 <<textbox "$tempvar3" $tempvar3>> <br>
location <<textbox "$location" $location>> <br>
<<button "Jump" $passage>>
<</button>>
<<button "Home" househub>>
<</button>><<set $scene = 0>>
<<if $tempvar == "guidedcons">>
<<scene>>
<<say "lacy">>Great, you can either manage rotas here across all facilities, or if you can manage them in the facility itself. Let's head to the construction facility to look in more detail.<</say>>
<<notice>>Click the construction image.<</notice>>
<</if>>
<<if $power > 2 && $completeTasks.includes('harleyreturn') && $completeTasks.includes('bufferfin2') && !$girlsmet.includes('kp') && $mc.events.metinspector == undefined && !$girlsavailable.includes('harley') && $kp.events.wait == undefined>>
<<goto "kpmeet">>
<</if>>
<<if $spafatigue == undefined>>
<<set $spafatigue = 15>>
<</if>>
<<if $mngtut is undefined>>
<<if $tasks is undefined || $tasks.buildMS is undefined>>
<<think "mc">>I should probably come back to this once I have something in mind.<</think>>
<<else>>
<<script>>
Dialog.setup("Rota Management");
Dialog.wiki(Story.get("management").processText());
Dialog.open();
<</script>>
<<set $mngtut = 1>>
<</if>>
<</if>>
<<if $lockedSlots == undefined>>
<<set $lockedSlots = {}>>
<</if>>
<<if $breakthroughs == undefined>>
<<set $breakthroughs = {}>>
<</if>>
<<if $breakdone == undefined>>
<<set $breakdone = {}>>
<</if>>
<<breakcheck>>
<<button "Office" housestuff>>
<<set $location = "office">>
<</button>>
<<button "Overview" overview>>
<</button>>
<<if $promo != undefined>>
<<button "Marketing" marketing>>
<</button>>
<</if>>
<<button "Clear Schedule" manage>>
<<set $dailyworking = undefined>>
<<if Object.keys($lockedSlots).length > 0>>
<<set $dailyworking = clone($lockedSlots)>>
<</if>>
<<set $working = {}>>
<<run checkWorkRota()>>
<<set $schedulecleared = true>>
<</button>>
<<button "Schedule Storage">>
<<script>>
Dialog.setup("Schedules", "saves");
Dialog.wiki(Story.get("storage").processText());
Dialog.open();
<</script>>
<</button>>
<<if $dailyworking == undefined>>
<<set $dailyworking = {
'Monday':{},
'Tuesday':{},
'Wednesday':{},
'Thursday':{},
'Friday':{},
'Saturday':{},
'Sunday':{}
}>>
<</if>>
<<if settings.sundaystart == true>>
<<set _tempOpts = ['Sunday', 'Monday','Tuesday','Wednesday','Thursday','Friday','Saturday']>>
<<else>>
<<set _tempOpts = ['Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday']>>
<</if>>
<<set _shifts = [13,17,20,24]>>
<<if $activeDay2 == undefined>><<set $activeDay2 = "Tuesday">><</if>>
<<if $activeDay == undefined>><<set $activeDay = "Monday">><</if>>
<<if $rotaType == undefined>><<set $rotaType = "daily">><</if>>
<<if $rotaView == undefined>><<set $rotaView = "weekly">><</if>>
<br>
<<if $breakdone.office != undefined && $breakdone.office.includes('rota')>>
<b>Schedule Type</b> <label><<radiobutton "$rotaType" "weekly" autocheck>> <<step "Weekly" "Set a different schedule for every day of the week.">></label> <label><<radiobutton "$rotaType" "daily" autocheck>> <<step "Daily" "Set a single schedule that repeats every day.">></label>
<<if $rotaType == "weekly">>
<b>View</b> <label><<radiobutton "$rotaView" "two" autocheck>> <<step "Two Days" "Any two days side-by-side.">></label> <label><<radiobutton "$rotaView" "weekly" autocheck>> <<step "Weekly" "Full week view.">></label>
<</if>>
<</if>>
<<if $schedulecleared != undefined>>
<center><b style="color:red">Schedule cleared.</b> <<back [[Undo|manage]] >></center>
<<set delete $schedulecleared>>
<</if>>
<<if $rotaType == "daily">><<set $activeDay = "Monday">><</if>>
<center id="copied" style="color:green; display:none;">Copied</center>
<<if $tempvar3 == "pasted">>
<center style="color:green;">Pasted <<back [[Undo|manage]] >></center>
<<set $tempvar3 = "">>
<</if>>
<<if $tempvar3 == "pastedsome">>
<center style="color:orange;">Some slots couldn't be duplicated due to locked slots. <<back [[Undo|manage]] >></center>
<<set $tempvar3 = "">>
<</if>>
<<if $tempvar3 == "loadedsome">>
<center style="color:orange;">Some slots couldn't be duplicated due to locked slots. <<back [[Undo|manage]] >></center>
<<set $tempvar3 = "">>
<</if>>
<<if $tempvar3 == "loaded">>
<center style="color:green;">Loaded stored schedule. <<back [[Undo|manage]] >></center>
<<set $tempvar3 = "">>
<</if>>
<<set _sorted = Object.keys($buildings).sort(function (a, b) {
let sorta = constructs[a].name;
let sortb = constructs[b].name;
if (sorta == "Brothel") sorta = State.variables.stripname;
if (sortb == "Brothel") sortb = State.variables.stripname;
if (constructs[a].sort != undefined) sorta = constructs[a].sort;
if (constructs[b].sort != undefined) sortb = constructs[b].sort;
if (sorta < sortb) {
return -1;
}
if (sorta > sortb) {
return 1;
}
return 0;
});>>
<<if $rotaType == "weekly" && $rotaView == "weekly">>
<<set $activeDay = daytowords(dayjs(State.variables.date).day());>>
<table id="newweekly">
<colgroup>
<col style="width:6rem">
</colgroup>
<thead>
<tr style="position: -webkit-sticky; position: sticky; top: 0; z-index: 49; background-color: #35a">
<th class="center dayChange" rowspan="2" data-col="fac">Facility</th>
<<for _d range _tempOpts>>
<th class="dayChange" colspan="4" @data-col-group="_d"> _d
<img @src="setup.img+'icons/remove.svg'" class="cp remove" @d="_d" @title="'Clear '+_d">
<img @src="setup.img+'icons/paste.svg'" class="cp paste" @d="_d" title="Paste schedule">
<img @src="setup.img+'icons/copy.svg'" @d="_d" class="cp copy" @title="'Copy '+_d+' schedule'">
</th>
<</for>>
</tr>
<tr style="position: -webkit-sticky; position: sticky; top: 22px; z-index: 49; background-color: #35a">
<<for _d range _tempOpts>>
<th class="center timeLine shifttitle" title="Morning 09:00-13:00" @data-col="_d+'-13'">🐓</th>
<th class="center timeLine shifttitle" title="Afternoon 13:00-17:00" @data-col="_d+'-17'">☀️</th>
<th class="center timeLine shifttitle" title="Evening 17:00-20:00" @data-col="_d+'-20'">🌇</th>
<th class="center dayChange shifttitle" title="Night 20:00-00:00" @data-col="_d+'-24'">🌙</th>
<</for>>
</tr>
</thead>
<<for _k range _sorted>>
<<set _v = $buildings[_k]>>
<<if _v.location != undefined>>
<<continue>>
<</if>>
<tr class="facilityLine">
<td class="dayChange">
<<set _skill = getSkill(_k)>>
<div class="smaller central" @skill="_skill" @slots="_v.slots" @key="_k" @data-passage="'mng'+_k" data-col="fac">
<img @src="setup.img+'locations/'+_k+'.jpeg'"><br>
<<if _k == "brothel">>
$stripname
<<else>>
_v.name
<</if>>
<<if _k == "neoffice">>
<<if $neprogress > 100>><<set $neprogress = 100>><</if>>
<div id="newedenprogress" style="border:solid 1px white; height: 2rem; position: relative;">
<div @style="'height: 100%; width: '+$neprogress+'%; background-color: #0c7918'"></div>
<div style="height: 100%; width: 100%; position: absolute; top: 0;"><<if $neprogress >= 100 && $nerels == "Respected">>Max Rep<<elseif $neprogress >= 100>><span style="font-size:90%">$nerels 100%</span><<else>><span style="font-size:90%">$nerels $neprogress%</span><</if>></div>
</div>
<</if>>
</div>
</td>
<<for _d range _tempOpts>>
<<set _active = "">>
<<if _d == $activeDay>>
<<set _active = "activeDay">>
<</if>>
<<for _x range _shifts>>
<<capture _x>>
<<set _i = 0>>
<<set _class = "timeLine">>
<<if _x == 24>><<set _class ="dayChange">><</if>>
<<if _x == 13>><<set _shiftname = "morning">><</if>>
<<if _x == 17>><<set _shiftname = "afternoon">><</if>>
<<if _x == 30>><<set _shiftname = "evening">><</if>>
<<if _x == 24>><<set _shiftname = "night">><</if>>
<td @class="_class+' center '+_active" @data-col="_d+'-'+_x">
<<if _v.rota[_x] == 1>>
<<if $dailyworking[_d] != undefined && $dailyworking[_d][_k] !== undefined && $dailyworking[_d][_k][_x] != undefined>>
<<for _girl range $dailyworking[_d][_k][_x]>>
<<if _girl == "">><<continue>><</if>>
<<set _folder = getFolder(_girl)>>
<<set _exclass = "">>
<<if $lockedSlots[_d] != undefined && $lockedSlots[_d][_k] != undefined && $lockedSlots[_d][_k][_x] != undefined && $lockedSlots[_d][_k][_x].includes(_girl)>>
<<set _exclass = "lockedSlot">>
<</if>>
<div @class="'minibadge '+_exclass" @slot="_i" @t="_x" @f="_k" @day="_d" @girl="_girl" title=""><img class="minibadgeimg" @src="setup.img+'/'+_folder+'/badge.jpg'">
<<if _exclass == "lockedSlot">>
<img @src="setup.img+'/icons/lock.svg'" class="locked">
<</if>>
</div><br>
<<set _i++>>
<</for>>
<</if>>
<<for _i; _i lt _v.slots; _i++>>
<div class="minibadge empty" @slot="_i" @t="_x" @f="_k" @day="_d" @title="'Empty '+_shiftname+' slot for '+_v.name+'.'"></div><br>
<</for>>
<</if>>
<<if _k == "spa" && $breakdone.spa != undefined && $breakdone.spa.includes('staff')>>
<<if $dailyworking[_d] != undefined && $dailyworking[_d]['sparelax'] !== undefined && $dailyworking[_d]['sparelax'][_x] != undefined && $dailyworking[_d]['sparelax'][_x] != "">>
<<set _girl = $dailyworking[_d]['sparelax'][_x]>>
<<if _girl == "">><<continue>><</if>>
<<set _folder = getFolder(_girl)>>
<<set _exclass = "">>
<<if $lockedSlots[_d] != undefined && $lockedSlots[_d]['sparelax'] !== undefined && $lockedSlots[_d]['sparelax'][_x] != undefined && $lockedSlots[_d]['sparelax'][_x] != "">>
<<set _exclass = "lockedSlot">>
<</if>>
<div @class="'minibadge relax '+_exclass" slot="r" @t="_x" f="sparelax" @day="_d" @girl="_girl" title=""><img @src="setup.img+'/'+_folder+'/badge.jpg'">
<<if _exclass == "lockedSlot">>
<img @src="setup.img+'/icons/lock.svg'" class="locked">
<</if>></div><br>
<<else>>
<div class="minibadge relax empty" slot="r" @t="_x" f="sparelax" @day="_d" @title="'Empty '+_shiftname+' relaxation slot.'"></div><br>
<</if>>
<</if>>
</td>
<</capture>>
<</for>>
<</for>>
</tr>
<</for>>
</table>
<<else>>
<table id="weeklyrota">
<thead>
<tr style="position: -webkit-sticky; position: sticky; top: 0; z-index: 100; background-color: #35a">
<th>
<<if $rotaType == "weekly">>
<<listbox "$activeDay" autoselect>>
<<optionsfrom _tempOpts>>
<</listbox>>
<</if>>
</th>
<th>09:00-13:00</th>
<th>13:00-17:00</th>
<th>17:00-20:00</th>
<th>20:00-00:00</th>
<<if $rotaType == "weekly">>
<th><<listbox "$activeDay2" autoselect>>
<<optionsfrom _tempOpts>>
<</listbox>></th>
<th>09:00-13:00</th>
<th>13:00-17:00</th>
<th>17:00-20:00</th>
<th>20:00-00:00</th>
<</if>>
</tr>
<<for _k range _sorted>>
<<set _v = $buildings[_k]>>
<<if _v.location != undefined>>
<<continue>>
<</if>>
<tr class="facilityLine">
<td>
<<set _skill = getSkill(_k)>>
<div @class="'mngimg central '+_class" @skill="_skill" @slots="_v.slots" @key="_k" style="position: relative; display: inline-block;" @data-passage="'mng'+_k">
<img @src="setup.img+'locations/'+_k+'.jpeg'"><<if _k == "neoffice">>
<<if $neprogress > 100>><<set $neprogress = 100>><</if>>
<div id="newedenprogress" style="border:solid 1px white; height: 2rem; position: absolute; bottom: 2.1rem; left: 0px; right: 0px;">
<div @style="'height: 100%; width: '+$neprogress+'%; background-color: #0c7918'"></div>
<div style="height: 100%; width: 100%; position: absolute; top: 0;"><<if $neprogress >= 100 && $nerels == "Respected">>Max Rep<<elseif $neprogress >= 100>>Talk to $tour.name<<else>>$nerels $neprogress%<</if>></div>
</div>
<</if>><br>
<<if _k == "brothel">>
$stripname
<<else>>
_v.name
<</if>>
</div>
</td>
<<for _x range _shifts>>
<<capture _x>>
<<if _x == 13>><<set _shiftname = "morning">><</if>>
<<if _x == 17>><<set _shiftname = "afternoon">><</if>>
<<if _x == 30>><<set _shiftname = "evening">><</if>>
<<if _x == 24>><<set _shiftname = "night">><</if>>
<td class="timeLine">
<<if _v.rota[_x] == 1>>
<<set _i = 0>>
<<if $dailyworking[$activeDay] != undefined && $dailyworking[$activeDay][_k] !== undefined && $dailyworking[$activeDay][_k][_x] != undefined>>
<<for _girl range $dailyworking[$activeDay][_k][_x]>>
<<if _girl == "">><<continue>><</if>>
<<set _folder = getFolder(_girl)>>
<<set _exclass = "">>
<<if $lockedSlots[$activeDay] != undefined && $lockedSlots[$activeDay][_k] != undefined && $lockedSlots[$activeDay][_k][_x] != undefined && $lockedSlots[$activeDay][_k][_x].includes(_girl)>>
<<set _exclass = "lockedSlot">>
<</if>>
<div @class="'badge '+_exclass" @slot="_i" @t="_x" @f="_k" @day="$activeDay" @girl="_girl" title=""><img @src="setup.img+'/'+_folder+'/badge.jpg'"><<if _exclass == "lockedSlot">>
<img @src="setup.img+'/icons/lock.svg'" class="locked">
<</if>></div><br>
<<set _i++>>
<</for>>
<</if>>
<<for _i; _i lt _v.slots; _i++>>
<div class="badge empty" @slot="_i" @t="_x" @f="_k" @day="$activeDay" @title="'Empty '+_shiftname+' slot for '+_v.name+'.'"></div><br>
<</for>>
<</if>>
<<if _k == "spa" && $breakdone.spa != undefined && $breakdone.spa.includes('staff')>>
<<if $dailyworking[$activeDay] != undefined && $dailyworking[$activeDay]['sparelax'] !== undefined && $dailyworking[$activeDay]['sparelax'][_x] != undefined && $dailyworking[$activeDay]['sparelax'][_x] != "">>
<<set _girl = $dailyworking[$activeDay]['sparelax'][_x]>>
<<if _girl == "">><<continue>><</if>>
<<set _folder = getFolder(_girl)>>
<<set _exclass = "">>
<<if $lockedSlots[$activeDay] != undefined && $lockedSlots[$activeDay]['sparelax'] != undefined && $lockedSlots[$activeDay]['sparelax'][_x] != undefined && $lockedSlots[$activeDay]['sparelax'][_x].includes(_girl)>>
<<set _exclass = "lockedSlot">>
<</if>>
<div @class="'badge relax '+_exclass" slot="r" @t="_x" f="sparelax" @day="$activeDay" @girl="_girl" title=""><img @src="setup.img+'/'+_folder+'/badge.jpg'"><<if _exclass == "lockedSlot">>
<img @src="setup.img+'/icons/lock.svg'" class="locked">
<</if>></div><br>
<<else>>
<div class="badge relax empty" slot="r" @t="_x" f="sparelax" @day="$activeDay" @title="'Empty '+_shiftname+' relaxation slot.'"></div><br>
<</if>>
<</if>>
</td>
<</capture>>
<</for>>
<<if $rotaType == "weekly">>
<td> </td>
<<for _x range _shifts>>
<<if _x == 13>><<set _shiftname = "morning">><</if>>
<<if _x == 17>><<set _shiftname = "afternoon">><</if>>
<<if _x == 30>><<set _shiftname = "evening">><</if>>
<<if _x == 24>><<set _shiftname = "night">><</if>>
<td class="timeLine">
<<if _v.rota[_x] == 1>>
<<set _i = 0>>
<<if $dailyworking[$activeDay2] != undefined && $dailyworking[$activeDay2][_k] !== undefined && $dailyworking[$activeDay2][_k][_x] != undefined>>
<<for _girl range $dailyworking[$activeDay2][_k][_x]>>
<<if _girl == "">><<continue>><</if>>
<<set _folder = getFolder(_girl)>>
<<set _exclass = "">>
<<if $lockedSlots[$activeDay2] != undefined && $lockedSlots[$activeDay2][_k] != undefined && $lockedSlots[$activeDay2][_k][_x] != undefined && $lockedSlots[$activeDay2][_k][_x].includes(_girl)>>
<<set _exclass = "lockedSlot">>
<</if>>
<div class="badge" @slot="_i" @t="_x" @f="_k" @day="$activeDay2" @girl="_girl" title=""><img @src="setup.img+'/'+_folder+'/badge.jpg'"><<if _exclass == "lockedSlot">>
<img @src="setup.img+'/icons/lock.svg'" class="locked">
<</if>></div><br>
<<set _i++>>
<</for>>
<</if>>
<<for _i; _i lt _v.slots; _i++>>
<div class="badge empty" @slot="_i" @t="_x" @f="_k" @day="$activeDay2" @title="'Empty '+_shiftname+' slot for '+_v.name+'.'"></div><br>
<</for>>
<</if>>
<<if _k == "spa" && $breakdone.spa != undefined && $breakdone.spa.includes('staff')>>
<<if $dailyworking[$activeDay2] != undefined && $dailyworking[$activeDay2]['sparelax'] !== undefined && $dailyworking[$activeDay2]['sparelax'][_x] != undefined && $dailyworking[$activeDay2]['sparelax'][_x] != "">>
<<set _girl = $dailyworking[$activeDay2]['sparelax'][_x]>>
<<if _girl == "">><<continue>><</if>>
<<set _folder = getFolder(_girl)>>
<<set _exclass = "">>
<<if $lockedSlots[$activeDay2] != undefined && $lockedSlots[$activeDay2]['sparelax'] != undefined && $lockedSlots[$activeDay2]['sparelax'][_x] != undefined && $lockedSlots[$activeDay2]['sparelax'][_x].includes(_girl)>>
<<set _exclass = "lockedSlot">>
<</if>>
<div @class="'badge relax '+_exclass" slot="r" @t="_x" f="sparelax" @day="$activeDay2" @girl="_girl" title=""><img @src="setup.img+'/'+_folder+'/badge.jpg'"><<if _exclass == "lockedSlot">>
<img @src="setup.img+'/icons/lock.svg'" class="locked">
<</if>></div><br>
<<else>>
<div class="badge relax empty" slot="r" @t="_x" f="sparelax" @day="$activeDay2" @title="'Empty '+_shiftname+' relaxation slot.'"></div><br>
<</if>>
<</if>>
</td>
<</for>>
<</if>>
</tr>
<</for>>
</thead>
</table>
<</if>>
<div id="rotaworkers" class="noshow"><spa></spa>
<table id="whom" class="rotaselect" style="width:100%">
</table>
</div>
<style>
.badge, .minibadge {
cursor: pointer;
}
.shifttitle {
cursor: default;
}
.locked {
width: 1rem !important;
position: absolute;
top: calc(50% - 0.5rem);
right: calc(50% - 0.5rem);
opacity: 0.8;
}
.cp {
width: 1rem;
cursor: pointer;
float: right;
margin: 4px;
}
.central {
text-align: center;
}
#listbox-activeday, #listbox-activeday2 {
background-color: #333;
}
.facilityLine {
border-bottom: solid 2px white;
}
.timeLine {
border-right: dotted 2px white;
padding: 0px !important;
}
.dayChange {
border-right: solid 2px white;
padding: 0px !important;
}
#newweekly {
margin-left: -2rem;
min-width: 1300px;
width: calc(100% + 4rem);
table-layout: fixed
}
@media screen and (max-width: 1350px) {
#passages {
width: calc(1350px + 2rem);
}
#newweekly {
max-width: calc(100%);
}
}
@media screen and (max-width: 1120px) {
#passages {
width: calc(1350px + 3rem);
}
#newweekly {
margin-left: -1rem;
max-width: calc(100% - 1rem);
}
}
table {
overflow: hidden;
}
#newweekly tr:hover {
background-color: #262626;
}
.cell-hover {
background-color: #5F5F5F !important;
}
#newweekly td, #newweekly th, .activeDay {
position: relative;
}
.activeDay::after {
content: "";
position: absolute;
background-color: #0f182f;
left: 0;
top: -5000px;
height: 10000px;
width: 100%;
z-index: -2;
}
#newweekly td.timehighlight,
#newweekly th.timehighlight {
background-color: #262626;
}
</style>
<script>
$(document).one(':passageend', function () {
$('[data-col], [data-col-group]').hover(
function () {
var $el = $(this);
var col = $el.data('col');
var group = $el.data('colGroup');
if (group) {
$('[data-col^="' + group + '-"], [data-col-group="' + group + '"]').addClass('timehighlight');
} else if (col) {
var groupName = col.split('-')[0];
$('[data-col="' + col + '"], [data-col-group="' + groupName + '"]').addClass('timehighlight');
}
$el.addClass('cell-hover');
},
function () {
$('[data-col], [data-col-group]').removeClass('timehighlight cell-hover');
}
);
});
</script>
<<script>>
let s = "";
let t = "";
let slot = "";
let location = "";
let day = "";
let locationactive = [];
let whoactive = [];
let current = "";
let clicked = 0;
let shiftnames = {13:"Morning", 17: "Afternoon", 20: "Evening", 24: "Night"};
$(document).one(':passageend', function (ev) {
$('.copy').click(function() {
let day = $(this).attr('d');
$('#pasted').hide();
$('#copied').show();
State.variables.copied = State.variables.dailyworking[day];
});
$('.remove').click(function() {
let day = $(this).attr('d');
State.variables.dailyworking[day] = {};
if (Object.keys(State.variables.lockedSlots).length > 0 && State.variables.lockedSlots[day] != undefined && Object.keys(State.variables.lockedSlots[day]).length > 0 ) {
State.variables.dailyworking[day] = clone(State.variables.lockedSlots[day]);
}
checkWorkRota();
State.variables.schedulecleared = true;
Engine.play('manage');
});
$('.paste').click(function() {
if (State.variables.copied == undefined) {
alert("You need to copy something first.");
} else {
let sv = State.variables;
let day = $(this).attr('d');
sv.tempvar3 = "pasted";
sv.dailyworking[day] = clone(sv.copied);
if (Object.keys(sv.lockedSlots).length > 0 && sv.lockedSlots[day] != undefined && Object.keys(sv.lockedSlots[day]).length > 0 ) {
for (let l in sv.lockedSlots[day]) {
if(sv.dailyworking[day][l] == undefined) sv.dailyworking[day][l] = {};
for (let t in sv.lockedSlots[day][l]) {
if (sv.dailyworking[day][l][t] == undefined) sv.dailyworking[day][l][t] = [];
sv.dailyworking[day][l][t] = sv.dailyworking[day][l][t].concat(sv.lockedSlots[day][l][t].filter((value) => !sv.dailyworking[day][l][t].includes(value)));
if (l == 'sparelax') {
while (1 < sv.dailyworking[day][l][t].length) {
sv.dailyworking[day][l][t].shift();
sv.tempvar3 = "pastedsome";
}
} else {
while (sv.buildings[l].slots < sv.dailyworking[day][l][t].length) {
sv.dailyworking[day][l][t].shift();
sv.tempvar3 = "pastedsome";
}
}
}
}
}
checkWorkRota(day);
Engine.play('manage');
}
});
resetRotaVars();
$("#listbox-activeday, #listbox-activeday2, [name='radiobutton-rotatype'], [name='radiobutton-rotaview']").change(function() {
resetRotaVars();
Engine.play('manage');
});
function resetRotaVars() {
s = "";
t = "";
slot = "";
location = "";
day = "";
locationactive = [];
whoactive = [];
current = "";
$('#whom').html('');
$('#rotaworkers').hide();
}
function checkWhoActive(day, t) {
whoactive = [];
for (let location in State.variables.dailyworking[day]) {
for (let g in State.variables.dailyworking[day][location][t]) {
whoactive.pushUnique(State.variables.dailyworking[day][location][t][g]);
}
}
}
$(document).click(function() {
var target = $(".badge, .minibadge");
var container = $("#rotaworkers");
if (!target.is(event.target) && !target.has(event.target).length) {
container.hide();
}
});
$('#weeklyrota').on('click', '.badge', function(e) {
resetRotaVars();
location = $(this).attr('f');
current = $(this).attr('girl');
if (State.variables.constructionproject != undefined && State.variables.constructionproject.key == "lab" && location == "construction" && current != "" && current != undefined) {
$('#whom').html('Can not change this shift until the monitoring station is complete.');
$('#rotaworkers').show();
$('#rotaworkers').css('top', e.pageY);
$('#rotaworkers').css('left', e.pageX);
return;
}
$('#whom').html('');
let sv = State.variables;
$('#rotaworkers').show();
let windowheight = $(window).height();
if (e.clientY > windowheight/2) {
$('#rotaworkers').css('bottom', windowheight - e.pageY);
$('#rotaworkers').css('top', '');
$('#rotaworkers').css('left', e.pageX);
} else {
$('#rotaworkers').css('top', e.pageY);
$('#rotaworkers').css('bottom', '');
$('#rotaworkers').css('left', e.pageX);
}
t = $(this).attr('t');
s = $(this).attr('s');
slot = $(this).attr('slot');
day = $(this).attr('day');
let skill = "";
let n = 3;
let th = "";
let header = "Spa Relaxation";
if (location != "sparelax") {
skill = constructs[location].skill;
header = constructs[location].name;
n = 4;
th = "<th>"+skill.toUpperFirst()+"</th>";
}
if (location == "brothel") {
header = State.variables.stripname;
}
let opts = "
<tr class='headerrow'><th colspan='"+n+"'>"+header+" ("+shiftnames[t]+")</th></tr>
<tr class='headerrow'>
<th>Name</th>
<th>Fatigue</th>
"+th+"
<th>Traits</th>
</tr>
</thead><tr value=\"\"><td class=\"left\">Nobody</td><td></td><td></td></tr>";
let size = 0;
if (State.variables.dailyworking[day][location] == undefined) State.variables.dailyworking[day][location] = {};
if (State.variables.dailyworking[day][location][t] == undefined) State.variables.dailyworking[day][location][t] = [];
checkWhoActive(day, t);
locationactive = State.variables.dailyworking[day][location][t];
let whocan = clone(sv.workers);
if (location == "sparelax") {
whocan = whocan.concat(sv.explorers.filter((value) => !whocan.includes(value)));
}
if (location == "brothel") {
whocan = clone(sv.brothel);
}
if ((sv.anna.events.settle != undefined && sv.anna.events.important == undefined) || (sv.anna.events.important == 1 && sv.anna.events.mature == 3)) {
whocan.pushUnique('anna');
}
if (sv.mc.events.eastgo != undefined && sv.mc.events.eastreturn == undefined) {
whocan.delete('britt');
whocan.delete('krissy');
whocan.delete(sv.awaypartyeast);
whocan.delete(sv.awaypartystray);
}
whocan.sort(function (a, b) {
if (State.variables[a].name < State.variables[b].name) {
return -1;
}
if (State.variables[a].name > State.variables[b].name) {
return 1;
}
return 0;
});
for(let x in whocan) {
if (whoactive.includes(whocan[x]) && whocan[x] != current) continue;
let char = characterinfo[whocan[x]];
if (whocan[x] == "anna" && (State.variables.anna.events.important == undefined || State.variables.anna.events.important == 1)) {
char.only = undefined;
}
/* Constraints */
if (char.only != undefined && location != "brothel") {
if (!char.only.includes(location) && location != "sparelax") {
continue;
}
}
/* Exclusions */
if (char.nowork != undefined) {
if (char.nowork.includes(location)) {
continue;
}
}
/* Teaching */
if (sv.teaching != undefined) {
if ((sv.teaching.who == whocan[x] || whocan[x] == sv.teaching.teacher) && (t >= sv.teaching.start && t <= sv.teaching.hour)) continue;
}
/*
(t == sv.teaching.hour || t-1 == sv.teaching.hour || t-2 == sv.teaching.hour) || (t == 20 && sv.teaching.hour == 20 && sv.teaching.hour == t-3)) continue;*/
let skillLevel = "";
let td = "";
if (location != "sparelax") {
skillLevel = sv[whocan[x]].skills[skill];
if (skillLevel == undefined) skillLevel = 0;
td = "<td>" + Math.floor(skillLevel*100)/100 + "</td>";
}
let chartraits = "";
for (let k in sv[whocan[x]].traits) {
let trait = sv[whocan[x]].traits[k];
if (window.traits[trait].work == true) {
chartraits += '<span class="trait" title="'+eval(traits[trait].info)+'">'+trait+'</span>';
}
}
opts += "<tr value=\""+whocan[x]+"\"><td class=\"left\">"+sv[whocan[x]].name+"</td><td>" + sv[whocan[x]].fatigue + "</td>"+td+"<td style=\"text-align: center;\">"+chartraits+"</tr>";
size++;
}
$('spa').html('');
if (location == "sparelax") {
$('spa').html("<b>Not a work shift!</b><br>Assigning someone here reduces their<br>fatigue by "+State.variables.spafatigue+" at shift end.");
}
$('#whom').html(opts);
$("tr[value='"+current+"']").addClass('highlighted');
$('.trait, .tinybadge, .em').tooltip({
position: {
my: "center bottom-5",
at: "center top-5"
},
track: true
});
});
$('#newweekly').on('click', '.minibadge', function(e) {
resetRotaVars();
location = $(this).attr('f');
current = $(this).attr('girl');
if (State.variables.constructionproject != undefined && State.variables.constructionproject.key == "lab" && location == "construction" && current != "" && current != undefined) {
$('#whom').html('Can not change this shift until the monitoring station is complete.');
$('#rotaworkers').show();
$('#rotaworkers').css('top', e.pageY);
$('#rotaworkers').css('left', e.pageX);
return;
}
$('#whom').html('');
let sv = State.variables;
$('#rotaworkers').show();
$('#rotaworkers').css('top', e.pageY);
$('#rotaworkers').css('left', e.pageX);
t = $(this).attr('t');
s = $(this).attr('s');
slot = $(this).attr('slot');
day = $(this).attr('day');
let skill = "";
let header = "Spa Relaxation";
if (location != "sparelax") {
skill = constructs[location].skill;
header = constructs[location].name;
}
if (location == "brothel") {
header = State.variables.stripname;
}
let opts = "
<tr class='headerrow'><th colspan='4'>"+header+" ("+shiftnames[t]+")</th></tr>
<tr class='headerrow'>
<th>Name</th>
<th>Fatigue</th>
<th>"+skill.toUpperFirst()+"</th>
<th>Traits</th>
</tr>
</thead><tr value=\"\"><td class=\"left\">Nobody</td><td></td><td></td></tr>";
let size = 0;
if (State.variables.dailyworking[day] == undefined) State.variables.dailyworking[day] = {};
if (State.variables.dailyworking[day][location] == undefined) State.variables.dailyworking[day][location] = {};
if (State.variables.dailyworking[day][location][t] == undefined) State.variables.dailyworking[day][location][t] = [];
checkWhoActive(day, t);
locationactive = State.variables.dailyworking[day][location][t];
let whocan = clone(sv.workers);
if (location == "sparelax") {
whocan = whocan.concat(sv.explorers.filter((value) => !whocan.includes(value)));
}
if (location == "brothel") {
whocan = clone(sv.brothel);
}
if ((sv.anna.events.settle != undefined && sv.anna.events.important == undefined) || (sv.anna.events.important == 1 && sv.anna.events.mature == 3)) {
whocan.pushUnique('anna');
}
if (sv.mc.events.eastgo != undefined && sv.mc.events.eastreturn == undefined) {
whocan.delete('britt');
whocan.delete('krissy');
whocan.delete(sv.awaypartyeast);
whocan.delete(sv.awaypartystray);
}
whocan.sort(function (a, b) {
if (State.variables[a].name < State.variables[b].name) {
return -1;
}
if (State.variables[a].name > State.variables[b].name) {
return 1;
}
return 0;
});
for(let x in whocan) {
if (whoactive.includes(whocan[x]) && whocan[x] != current) continue;
let char = characterinfo[whocan[x]];
if (whocan[x] == "anna" && (sv.anna.events.important == undefined || sv.anna.events.important == 1)) {
char.only = undefined;
}
/* Constraints */
if (char.only != undefined && location != "brothel") {
if (!char.only.includes(location) && location != "sparelax") {
continue;
}
}
/* Exclusions */
if (char.nowork != undefined && location != "brothel") {
if (char.nowork.includes(location)) {
continue;
}
}
/* Teaching */
if (sv.teaching != undefined) {
if ((sv.teaching.who == whocan[x] || whocan[x] == sv.teaching.teacher) && (t >= sv.teaching.start && t <= sv.teaching.hour)) continue;
}
/*
(t == sv.teaching.hour || t-1 == sv.teaching.hour || t-2 == sv.teaching.hour) || (t == 20 && sv.teaching.hour == 20 && sv.teaching.hour == t-3)) continue;*/
let skillLevel = "";
if (location != "sparelax") {
skillLevel = sv[whocan[x]].skills[skill];
if (skillLevel == undefined) skillLevel = 0;
}
let chartraits = "";
for (let k in sv[whocan[x]].traits) {
let trait = sv[whocan[x]].traits[k];
if (window.traits[trait].work == true) {
chartraits += '<span class="trait" title="'+eval(traits[trait].info)+'">'+trait+'</span>';
}
}
opts += "<tr value=\""+whocan[x]+"\"><td class=\"left\">"+sv[whocan[x]].name+"</td><td>" + sv[whocan[x]].fatigue + "</td><td>" + skillLevel + "</td><td style=\"text-align: center;\">"+chartraits+"</tr>";
size++;
}
$('spa').html('');
if (location == "sparelax") {
$('spa').html("<b>Not a work shift!</b><br>Assigning someone here reduces their<br>fatigue by "+State.variables.spafatigue+" at shift end.");
}
$('#whom').html(opts);
$("tr[value='"+current+"']").addClass('highlighted');
$('.trait, .tinybadge, .em').tooltip({
position: {
my: "center bottom-5",
at: "center top-5"
},
track: true
});
});
$('#newweekly').on('contextmenu', '.minibadge', function(e) {
if (!$(this).hasClass('empty')) {
e.preventDefault();
t = $(this).attr('t');
location = $(this).attr('f');
day = $(this).attr('day');
let girl = $(this).attr('girl');
if (!$(this).hasClass('lockedSlot')) {
$('<img src="'+setup.img+'/icons/lock.svg" class="locked">').appendTo($(this));
$(this).addClass('lockedSlot');
State.variables.dailyworking[day][location][t];
if (State.variables.lockedSlots[day] == undefined) State.variables.lockedSlots[day] = {};
if (State.variables.lockedSlots[day][location] == undefined) State.variables.lockedSlots[day][location] = {};
if (State.variables.lockedSlots[day][location][t] == undefined) State.variables.lockedSlots[day][location][t] = [];
State.variables.lockedSlots[day][location][t].pushUnique(girl);
} else {
$(this).children('.locked').remove();
$(this).removeClass('lockedSlot');
State.variables.lockedSlots[day][location][t].delete(girl);
}
}
});
$('#weeklyrota').on('contextmenu', '.badge', function(e) {
if (!$(this).hasClass('empty')) {
e.preventDefault();
t = $(this).attr('t');
location = $(this).attr('f');
day = $(this).attr('day');
let girl = $(this).attr('girl');
if (!$(this).hasClass('lockedSlot')) {
$('<img src="'+setup.img+'/icons/lock.svg" class="locked">').appendTo($(this));
$(this).addClass('lockedSlot');
State.variables.dailyworking[day][location][t];
if (State.variables.lockedSlots[day] == undefined) State.variables.lockedSlots[day] = {};
if (State.variables.lockedSlots[day][location] == undefined) State.variables.lockedSlots[day][location] = {};
if (State.variables.lockedSlots[day][location][t] == undefined) State.variables.lockedSlots[day][location][t] = [];
State.variables.lockedSlots[day][location][t].pushUnique(girl);
} else {
$(this).children('.locked').remove();
$(this).removeClass('lockedSlot');
State.variables.lockedSlots[day][location][t].delete(girl);
}
}
});
$('#whom').on('click', 'tr', function() {
if ($(this).hasClass('headerrow')) return;
let g = $(this).attr('value');
if (g == "anna" && State.variables.anna.events.important == undefined) {
State.variables.tempvar = "worker";
Engine.play('annaanswers');
return;
}
if (g == "anna" && State.variables.anna.events.important == 1 && State.variables.anna.events.mature == 3 && location != "bar" && location != "waiting") {
State.variables.tempvar = "worker2";
State.variables.tempvar2 = "notbar";
Engine.play('annaanswers');
return;
}
if ((current == "" || current == undefined) && g == "") {
$('#whom').html('');
$('#rotaworkers').hide();
return;
}
if ($('#weeklyrota .badge').not('.empty').length > 0) $( "#weeklyrota .badge" ).tooltip( "destroy" );
if ($('#newweekly .minibadge').not('.empty').length > 0) $( "#newweekly .minibadge" ).tooltip( "destroy" );
State.variables.dailyworking[day][location][t].delete(current);
if (location == "sparelax") {
State.variables.dailyworking[day][location][t] = [g];
} else {
State.variables.dailyworking[day][location][t].pushUnique(g);
}
let folder = getFolder(g);
if (current == "" || current == undefined) {
$(".badge[slot='"+slot+"'][t='"+t+"'][f='"+location+"'][day='"+day+"']").removeClass('empty').html('<img src="'+setup.img+'/'+folder+'/badge.jpg">').attr('girl', g).attr('title', '');
$(".minibadge[slot='"+slot+"'][t='"+t+"'][f='"+location+"'][day='"+day+"']").removeClass('empty').html('<img src="'+setup.img+'/'+folder+'/badge.jpg">').attr('girl', g).attr('title', '');
} else {
if (g == "" || g == undefined) {
$(".badge[slot='"+slot+"'][t='"+t+"'][f='"+location+"'][day='"+day+"'][girl='"+current+"']").html('').addClass('empty').attr('girl', '').removeAttr('title');
$(".minibadge[slot='"+slot+"'][t='"+t+"'][f='"+location+"'][day='"+day+"'][girl='"+current+"']").html('').addClass('empty').attr('girl', '').removeAttr('title');
} else {
$(".badge[slot='"+slot+"'][t='"+t+"'][f='"+location+"'][day='"+day+"'][girl='"+current+"'] img").attr('src', setup.img+'/'+folder+'/badge.jpg');
$(".minibadge[slot='"+slot+"'][t='"+t+"'][f='"+location+"'][day='"+day+"'][girl='"+current+"'] img").attr('src', setup.img+'/'+folder+'/badge.jpg');
$(".badge[slot='"+slot+"'][t='"+t+"'][f='"+location+"'][day='"+day+"'][girl='"+current+"']").attr('girl', g).attr('title', '');
$(".minibadge[slot='"+slot+"'][t='"+t+"'][f='"+location+"'][day='"+day+"'][girl='"+current+"']").attr('girl', g).attr('title', '');
}
}
$('#whom').html('');
$('#rotaworkers').hide();
checkWorkRota(day);
badgeCheck();
if (g == "anna" && State.variables.anna.events.important == 1 && State.variables.anna.events.mature == 3) {
State.variables.tempvar = "worker2";
Engine.play('annaanswers');
return;
}
});
function badgeCheck() {
$('.badge, .minibadge').tooltip({
position: {
my: "right bottom-5",
at: "right top-5"
},
track: true,
content: function() {
let title = "";
if ($(this).hasClass('empty')) {
title = $(this).attr('title');
} else {
let girl = $(this).attr('girl');
let info = State.variables[girl];
let ci = characterinfo[girl];
let f = $(this).attr('f');
title = "<h3>"+info.name+"</h3>";
title += "<table style=\"width:100%\"><tr><td>👍"+info.like+"</td><td>❤️"+info.lust+"</td></tr>";
title += "<tr><td>💤"+info.fatigue+"</td>";
if (f != "sparelax") {
if (info.skills[constructs[f].skill] == undefined) info.skills[constructs[f].skill] = 0;
title += "<td>"+skillSpans[constructs[f].skill]+info.skills[constructs[f].skill]+"</td>";
}
title += "</tr></table><h3>Traits</h3>";
for (let x in info.traits) {
title += info.traits[x].toUpperFirst();
if (x != info.traits.length-1) title += "<br>";
}
if (ci.only != undefined) {
title += "<br><h3>Constraints</h3>";
for (let x in ci.only) {
if (State.variables.buildings[ci.only[x]] != undefined) {
title += State.variables.buildings[ci.only[x]].name;
if (x != ci.only.length-1) title += "<br>";
}
}
}
if (ci.nowork != undefined) {
title += "<br><h3>Exclusions</h3>";
for (let x in ci.nowork) {
if (State.variables.buildings[ci.nowork[x]] != undefined) {
title += State.variables.buildings[ci.nowork[x]].name;
if (x != ci.nowork.length-1) title += "<br>";
}
}
}
}
return title;
}
});
}
badgeCheck();
$('.cp, .shifttitle').tooltip({
position: {
my: "right bottom-5",
at: "right top-5"
},
track: true,
content: function() {
return $(this).attr('title');
}
});
})
<</script>>
<<link "Return" housestuff>>
<<set $location = "office">>
<</link>><<if $promo == true>>
<<think "mc">>Alright... I guess I should send for $harley.name to show me how to do this properly.<</think>>
<<narrate>>She arrives ten minutes later and starts explaining.<</narrate>>
<<say "harley">>Okay, so with the current size of my team and our available resources, I think we can run up to three campaigns at once. Each world will have costs and bonuses associated with it. Worlds with larger populations will generally cost most, but also provide larger boons. Once a campaign is over, your popularity on that world will steadily decrease.<</say>>
<<say "mc">>Okay, so if I want to stay popular on a world, I need to keep marketing on them?<</say>>
<<say "harley">>Pretty much. You can also run multiple campaigns on the same world. Normally, a campaign would yield you about twenty-five popularity.<</say>>
<<say "mc">>What does that mean? How do you put a number on that?<</say>>
<<say "harley">>It's a metric we use at our company based on several presumed factors. Don't worry about it too much.<</say>>
<<say "mc">>Right...<</say>>
<<say "harley">>But anyway, as these will be our first campaigns, I want to start off with a bang. Your home world was a rather lucky suggestion, I have a a couple of performers on my books who are celebrities on that world. Together, they should be able to surge your popularity for a time.<</say>>
<<say "mc">>Great, let's do it!<</say>>
<<say "harley">>Okay, open the app, and select your home world. Easy as that! Normally, you could select up to three worlds, but we're focusing on one for now.<</say>>
<<narrate>>You open the app and are presented by images of various planets.<</narrate>>
<<say "mc">>How does it know which planets I can connect to?<</say>>
<<say "harley">>I asked $lacy.name to keep a database.<</say>>
<<narrate>>You look back at the app.<</narrate>>
<center>
<div class="notice">
<<set _v = planets[1]>>
<<set _k = 1>>
<<set _cost = _v.energy * 5>>
<div class="girlChoice" style="text-align:center">
<h3 style="margin-bottom: 0;">_v.name</h3>_v.coords<br>
<img @src="setup.img+'/planets/'+_k+'.png'" class="planetimg"><br>
<span class="em" title="Popularity">⭐ 75 / 100</span>
<span class="em" title="Cost">⚙️ _cost</span><br>
Bonus every _v.attr popularity
<div style="display:inline-block; position: absolute; left: 0; right: 0; text-align: center; top: calc(50% - 22px)">
<<for _p range _v.home>>
<<if !$girlsmet.includes(_p)>><<continue>><</if>>
<<set _pn = State.variables[_p].name>>
<img class="tinybadge" @src="setup.img+'/'+getFolder(_p)+'/badge.jpg'" @title="_pn+'\'s Home World'">
<</for>>
</div>
</div>
</div>
</center>
<<say "mc">>So this'll cost me five resources?<</say>>
<<say "harley">>Normally, yes. The population of travelers is relatively low and they tend to stick around the same places, so it's not hard to reach out to them, but in turn the benefit won't be that great. However, I'll make this one a freebie as a show of trust in our new partnership.<</say>>
<<say "mc">>Great, thanks $harley.name.<</say>>
<<narrate>>You click the button.<</narrate>>
<<say "harley">>Perfect. $lacy.name really is a genius. I don't know how she's done it, but whenever you submit your request, the gateway will connect briefly to my world and issue the orders. You'll see the benefits tomorrow. Each campaign lasts a week, and it takes a couple of days for it to spool up, so you won't see the full benefit until day three.<</say>>
<<say "mc">>Got it, thanks, $harley.name!<</say>>
<<if $hubname == undefined>>
<<say harley>>There are numerous hubs, though. I think we need a better name.<</say>>
<<say mc>>People have been able to connect okay until now...<</say>>
<<say harley>>Sure, but a name is much easier to market.<</say>>
<<say "mc">>Yeah, okay, let's call it <<textbox "$hubname" Fornix>>.<</say>>
<<say harley>>Perfect!<</say>>
<</if>>
<<narrate>>She looks at her watch.<</narrate>>
<<say "harley">>I have nothing else planned for a little while. How about a drink around the pool to celebrate? I think we both know you didn't really need my help to press a few buttons...<</say>>
<<notice>>You are now running a marketing campaign <<if $hubname != undefined>>for $hubname<</if>> on Earth. From tomorrow you'll see a minor improvement to your popularity, this will increase each day until it's peaked on day three. It will then remain this way for four days. After the campaign ends, the popularity will decrease by two each night. Your attractiveness is temporarily increased by the bonus stated. In the case of Earth, the base is 1 attractiveness for 100 popularity. Worlds with higher or denser traveler populations will require less popularity.<</notice>>
<<set $promo = "go">>
<<market 1>>
<<set $planets[1].popularity = 75>>
<<taskdone "harleypromo2">>
<<cont "harleyanswers" "promodone">>
<<else>>
<<if $planet != undefined>>
<<set $resources -= $cost>>
<<set _c = planets[$planet].name>>
<<market $planet>>
<<say $planet "planetnote">>You've started a new campaign on _c<</say>>
<<set delete $cost>>
<<set delete $planet>>
<</if>>
<<set _l = Object.keys($market).length>>
<<say "info" "Information">>You can run up to three campaigns at once. Your popularity on any given world can not exceed 100. A campaign increases popularity on that planet by 25. This takes three days to achieve. Planets without an active campaign lose two popularity per day.<br>
Currently running _l campaign<<if _l != 1>>s<</if>>.<</say>>
<div class="flex">
<<set _mk = {}>>
<<for _m range $market>>
<<set _c = planets[_m.w].name>>
<<set _d = 7 - ($day - _m.d)>>
<div class="flex">
<div class="inline-block">
<img class="tinybadge" @src="setup.img+'/planets/'+_m.w+'.png'">
</div>
<div class="inline-block">
<b>_c</b><br> _d days left
</div>
</div>
<<set _mk[_m.w] = _d>>
<</for>>
</div>
<center>
<<button "Close" housestuff>>
<<set $location = "office">>
<</button>>
</center>
<<choices "Select a location">>
<div class="locations flex">
<<for _k, _v range planets>>
<<capture _k, _v>>
<<if $planets[_k].unlocked == false || _k == 7>>
<<continue>>
<</if>>
<<set _w = $planets[_k]>>
<<set _cost = _v.energy * 5>>
<<capture _w, _cost>>
<<if $resources < _cost || _l >= 3>>
<div class="girlChoice" style="text-align:center">
<h3 style="margin-bottom: 0;">_v.name</h3>_v.coords<br>
<img @src="setup.img+'/planets/'+_k+'.png'" class="planetimg"><br>
<<if _w.popularity == undefined>>
<<set _w.popularity = 0>>
<</if>>
<span class="em" title="Popularity">⭐ _w.popularity / 100</span>
<span class="em" title="Cost">⚙️ _cost</span><br>
Bonus every _v.attr popularity
<div style="display:inline-block; position: absolute; left: 0; right: 0; text-align: center; top: calc(50% - 22px)">
<<for _p range _v.home>>
<<if !$girlsmet.includes(_p)>><<continue>><</if>>
<<set _pn = State.variables[_p].name>>
<img class="tinybadge" @src="setup.img+'/'+getFolder(_p)+'/badge.jpg'" @title="_pn+'\'s Home World'">
<</for>>
</div>
<<if _mk[_k] != undefined>>
<img src="img/icons/ad.svg" style="position: absolute; top:30px; right:0" class="movieicon em" title="This world has an active marketing campaign.">
<</if>>
</div>
<<else>>
<div class="girlChoice" data-passage="marketing" data-setter="$planet = _k; $cost = _cost" style="text-align:center">
<h3 style="margin-bottom: 0;">_v.name</h3>_v.coords<br>
<img @src="setup.img+'/planets/'+_k+'.png'" class="planetimg"><br>
<<if _w.popularity == undefined>>
<<set _w.popularity = 0>>
<</if>>
<span class="em" title="Popularity">⭐ _w.popularity / 100</span>
<span class="em" title="Cost">⚙️ _cost</span><br>
Bonus every _v.attr popularity
<div style="display:inline-block; position: absolute; left: 0; right: 0; text-align: center; top: calc(50% - 22px)">
<<for _p range _v.home>>
<<if !$girlsmet.includes(_p)>><<continue>><</if>>
<<set _pn = State.variables[_p].name>>
<img class="tinybadge" @src="setup.img+'/'+getFolder(_p)+'/badge.jpg'" @title="_pn+'\'s Home World'">
<</for>>
</div>
<<if _mk[_k] != undefined>>
<img src="img/icons/ad.svg" style="position: absolute; top:30px; right:0" class="movieicon em" title="This world has an active marketing campaign.">
<</if>>
</div>
<</if>>
<</capture>>
<</capture>>
<</for>>
</div>
<</choices>>
<</if>><<nobr>>
<div id="mast">
<<choices "Who do you think about?">>
<<if $adria.events.borked == undefined || $adria.events.compfixed != undefined>>
<<if $aubree.events.aubrock01 != undefined>>
<<link $aubree.name>>
<<audio "startup" play>>
<<replace "#mast">>
<<narrate>>You turn on the computer and start jerking off to the pictures from the photoshoots.<</narrate>>
<center>
<<if $aubree.events.aubgarden01 == undefined>>
<img @src="setup.img+'/shoots/aubrock01/04.jpg'" class="shootimg">
<<else>>
<img @src="setup.img+'/shoots/aubgarden01/13.jpg'" class="shootimg">
<</if>>
<<if $aubree.events.aubgames01 == undefined>>
<img @src="setup.img+'/shoots/aubrock01/07.jpg'" class="shootimg">
<<else>>
<img @src="setup.img+'/shoots/aubgames01/11.jpg'" class="shootimg">
<</if>>
<img @src="setup.img+'/shoots/aubrock01/09.jpg'" class="shootimg">
</center>
<<if $aubree.lust > 79 && $aubree.corruption > 79 && $girlsavailable.includes('aubree') && $aubree.events.firstsex == undefined>>
<<say "mc">>Screw it. I want the real thing.<</say>>
<<button "Continue" aubreesex>>
<<temp "first">>
<<audio "shutdown" play>>
<</button>>
<<elseif $adria.events.mom != undefined && $adria.events.compfixed == undefined>>
<<timed 3s>><<audio "fail" play>>
<</timed>>
<<narrate>>As you're about to cum, your computer locks up. Pictures of $aubree.name stuck on the screen.<</narrate>>
<<think "mc">>Shit. Fucking hell!<</think>>
<<button "Continue" adriaanswers>>
<<temp "borked">>
<<set $tempvar2 = "aubree">>
<</button>>
<<else>>
<<narrate>>After 20 minutes, you clean up and head to bed.<</narrate>>
<<button "Sleep" sleep>>
<<audio "shutdown" play>>
<</button>>
<</if>>
<</replace>>
<</link>>
<br>
<</if>>
<<if $theodora.events.theored01 != undefined && $girlsavailable.includes('theodora')>>
<<link $theodora.name>>
<<set $theodora.events.catchfap = 1>>
<<if $vanna.mature == true && $theodora.events.catchfap != undefined && $theodora.events.catchfap == 1 && $theodora.corruption > 79>>
<<replace "#mast">>
<<narrate>>As you reach to turn on the computer, $vanna.name lets herself into your room and perches on the edge of your bed.<</narrate>>
<<left2 "vanna/mature/interupt01.jpg">>
<<say vanna>>Looks like you were about to have some fun.<</say>>
<<say mc>>And now it looks like we're about to have some fun.<</say>>
<<say vanna>>It's not my turn tonight, and I wouldn't want to intrude... not yet at least. But I was hoping to... enjoy myself in my younger form tonight, if you wouldn't mind.<</say>>
<<say mc>>Not your turn?<</say>>
<<narrate>>She grins.<</narrate>>
<<say vanna>>You'll see.<</say>>
<<think mc>>Not like her...<</think>>
<<narrate>>You shrug, and transform her back as requested.<</narrate>>
<<button "Continue" transforms>>
<<set $active = "vanna">>
<<set $tempvar2 = "theodorafap">>
<<temp "revert">>
<</button>>
<</replace>>
<<else>>
<<audio "startup" play>>
<<replace "#mast">>
<<narrate>>You turn on the computer and start jerking off to the pictures from the photoshoots.<</narrate>>
<center>
<<if $theodora.events.theoblue01 == undefined>>
<img @src="setup.img+'/shoots/theored01/04.jpg'" class="shootimg">
<<else>>
<img @src="setup.img+'/shoots/theoblue01/13.jpg'" class="shootimg">
<</if>>
<<if $theodora.events.theolounge01 == undefined>>
<img @src="setup.img+'/shoots/theored01/08.jpg'" class="shootimg">
<<else>>
<img @src="setup.img+'/shoots/theolounge01/12.jpg'" class="shootimg">
<</if>>
<img @src="setup.img+'/shoots/theored01/11.jpg'" class="shootimg">
</center>
<<if $theodora.events.catchfap != undefined && $theodora.events.catchfap == 1 && $theodora.corruption > 79>>
<<narrate>>A few minutes later, you hear your door creak open. You continue fapping, bracing yourself for her words... but hear nothing.<</narrate>>
<<think "mc">>Huh, maybe it was across the hall.<</think>>
<<timed 5s>>
<<say "theodora">><center><b id="boo">BOO!</b></center><</say>>
<<narrate>>$theodora.name taps you on the shoulder while shouting.<</narrate>>
<<say "mc">>Holy shit, $theodora.name, what the fuck?!<</say>>
<<say "theodora">>$vanna.name dared me to come scare you—<</say>>
<<narrate>>She seems to suddenly notice you're naked, holding your cock.<</narrate>>
<<say "theodora">>Wait, were you jerking off?<</say>>
<<say "mc">>Yeah, I wasn't expecting a ghost visitor, for fuck's sake.<</say>>
<<narrate>>Her face darts to the computer screen.<</narrate>>
<<say "theodora">>To me?<</say>>
<<say "mc">>Of course.<</say>>
<<narrate>>She sits back on your bed.<</narrate>>
<<button "Continue" theodorasex>>
<<temp "fapcatch">>
<</button>>
<</timed>>
<style>
#boo {
font-size:238%;
vertical-align: middle;
animation: boo 0.15s ease 20;
}
@keyframes boo {
100% {
font-size: 230%;
}
}
</style>
<<elseif $adria.events.mom != undefined && $adria.events.compfixed == undefined>>
<<timed 3s>><<audio "fail" play>>
<</timed>>
<<narrate>>As you're about to cum, your computer locks up. Pictures of $theodora.name stuck on the screen.<</narrate>>
<<think "mc">>Shit. Fucking hell!<</think>>
<<button "Continue" adriaanswers>>
<<temp "borked">>
<<set $tempvar2 = "theodora">>
<</button>>
<<else>>
<<if $harley.events.theopromo == undefined>>
<<think "mc">>Fapping to my $theodora.them feels so damn bad, but so damn good. I wonder what she'd do if she caught me...<</think>>
<</if>>
<<narrate>>After 20 minutes, you clean up and head to bed.<</narrate>>
<<button "Sleep" sleep>>
<<event "mc" "theofap">>
<<audio "shutdown" play>>
<</button>>
<</if>>
<</replace>>
<</if>>
<</link>>
<br>
<</if>>
<<if $moriah.events.compprivate != undefined && $day > 3>>
<<link $moriah.name>>
<<audio "startup" play>>
<<replace "#mast">>
<<narrate>>You turn on the computer and start jerking off to the pictures $moriah.name left for you.<</narrate>>
<center>
<img @src="setup.img+'/moriah/comp00.jpg'" class="shootimg">
<img @src="setup.img+'/moriah/comp02.jpg'" class="shootimg">
<img @src="setup.img+'/moriah/comp05.jpg'" class="shootimg">
</center>
<<if $moriah.lust > 24 && $girlsavailable.includes('moriah')>>
<<say "moriah">>Enjoying my pictures I see.<</say>>
<<block "moriah/reddress01.jpg">>
<<narrate>>The sudden voice behind you makes you jump.<</narrate>>
<<say "mc">>What the fuck?<</say>>
<<say "moriah">>Oh, don't worry, I was having a great time watching you!<</say>>
<<say "mc">>How'd you get in here?<</say>>
<<say "moriah">>I knocked, but you didn't answer... then I heard you shout my name, so I let myself in and to my delight found you like this, hun.<</say>>
<</block>>
<<say "moriah">>So, wanna give the real thing a go?<</say>>
<<choices>>
<<link "Absolutely!" moriahnightvisits>>
<<temp "bathroom">>
<</link>>
<br>
<<link "Nah" moriahnightvisits>>
<<temp "refuse">>
<</link>>
<</choices>>
<<else>>
<<narrate>>After 20 minutes, you clean up and head to bed.<</narrate>>
<<button "Sleep" sleep>>
<<audio "shutdown" play>>
<</button>>
<</if>>
<</replace>>
<</link>>
<br>
<</if>>
<<if $waitress.events.waitout != undefined>>
<<link $waitress.name>>
<<audio "startup" play>>
<<replace "#mast">>
<<narrate>>You turn on the computer and start jerking off to the pictures from the photoshoots.<</narrate>>
<center>
<<if $waitress.events.SHOOTNAME2 == undefined>>
<img @src="setup.img+'/shoots/waitout/03.jpg'" class="shootimg">
<<else>>
<img @src="setup.img+'/shoots/waitout/03.jpg'" class="shootimg">
<</if>>
<<if $waitress.events.SHOOTNAME3 == undefined>>
<img @src="setup.img+'/shoots/waitout/06.jpg'" class="shootimg">
<<else>>
<img @src="setup.img+'/shoots/waitout/11.jpg'" class="shootimg">
<</if>>
<img @src="setup.img+'/shoots/waitout/11.jpg'" class="shootimg">
</center>
<<narrate>>After 20 minutes, you clean up and head to bed.<</narrate>>
<<button "Sleep" sleep>>
<<audio "shutdown" play>>
<</button>>
<</replace>>
<</link>>
<br>
<</if>>
<</if>>
<<link $armani.name>>
<<replace "#mast">>
<<block "armani/watchingyou.jpg">>
<<narrate>>You're just starting to fantasize about $armani.name when you notice the door is ajar.<</narrate>>
<<think "mc">>Pretty sure I closed that...<</think>>
<<narrate>>You're about to get up to close the door when you notice a faint buzzing noise and a shadow through the door crack.<</narrate>>
<<think "mc">>Let's give 'em a show, I could certainly use a stress release.<</think>>
<<narrate>>You reach for your cock and start stroking slowly, you hear the buzzing change intensity and hear the faintest whisper of a moan. Clearly someone is enjoying the show.<</narrate>>
<<narrate>>You speed up as the shadow tries to stifle their moans. It's only turning you on more.<</narrate>>
<<narrate>>You slow down again and begin to massage your glans as you continue stroking your shaft, trying to coerce a slow orgasm.<</narrate>>
<<narrate>>There's a louder moan, the buzzing stops and there's a thud on the ground.<</narrate>>
<<narrate>>The thought of some random woman reaching orgasm while watching you jack off finally pulls you over the edge, and you explode, covering your own hand and stomach in warm spunk.<</narrate>>
<<narrate>>As you get up to go clean yourself the door closes, a moment later you hear another door down the hall close.<</narrate>>
<<button "Sleep" sleep>>
<<event "armani" "peek">>
<<lust "armani" 1>>
<</button>>
<</block>>
<</replace>>
<</link>>
<</choices>>
<br>
<<button "Sleep" sleep>>
<</button>>
</div>
<</nobr>><<nobr>>
<<switch $armani.events.meditate>>
<<case 1>>
<<if getCurrentLocation('sophia') == "Garden" && $sophia.events.meditate == 1>>
<<left2 "sophia/garden02.jpg">>
<<say "sophia">>Okay, before we get going, let's sort out that posture!<</say>>
<<narrate>>She starts manhandling you, moving your body into various positions.<</narrate>>
<<say "mc">>You could just direct me.<</say>>
<<say "sophia">>I could, but you'd get it wrong. Let's get you used to it first.<</say>>
<<narrate>>Your dick begins to stir as the sensation of her hands rubbing against you sends ticking sensations through your body. You noticeably shiver.<</narrate>>
<<say "sophia">>I didn't realize you were ticklish!<</say>>
<<say "mc">>No, it's just— never mind.<</say>>
<<say "sophia">>Right, now stay in this position, breathe in time with me and just focus on that breathing.<</say>>
<<think "sophia">>He's got an erection again. Just what is going through his head? But wow. Just look at it, I'd love to have seen $krissy.name railed by something that big. I'm almost jealous of his harem!<</think>>
<<narrate>>She shakes her head and focuses on her own breathing.<</narrate>>
<<narrate>>$sophia.name's tutelage pays off, and you feel yourself able to relax. The two of you spend time seated in silence, clearing your thoughts, and, even if temporary, gaining an inner peace.<</narrate>>
<<notice>>Your meditation bonuses have improved.<</notice>>
<<set $meditate.level++>>
<<set $meditate.length++>>
<<narrate>>After some time, she speaks up.<</narrate>>
<<say "sophia">>So, how was that, $sophia.calls?<</say>>
<<say "mc">>It was great, $sophia.refer. I feel so much more at ease.<</say>>
<<say "sophia">>Great, it's no use worrying about stuff you can't control. I'm always happy to meditate together if you need it.<</say>>
<<narrate>>Others will react more positively toward you for a few hours.<</narrate>>
<<notice>>Like 👍 gains will be more potent.<</notice>>
<<button "Continue" housestuff>>
<<like "sophia" 2>>
<<lust "sophia" 2>>
<<corrupt "sophia" 2>>
<<event "sophia" "meditate" 2>>
<<temp "">>
<<time 1>>
<<set $meditating = $meditate.length>>
<</button>>
<<elseif getCurrentLocation('sophia') == "Garden" && $sophia.events.meditate == undefined>>
<<left2 "sophia/garden02.jpg">>
<<say "sophia">>Great, you decided to join me!<</say>>
<<say "mc">>Yeah.<</say>>
<<say "sophia">>Want some weights?<</say>>
<<say "mc">>Not for me, thank you.<</say>>
<<say "sophia">>Suit yourself.<</say>>
<<narrate>>You nestle into a pose and try to clear your mind.<</narrate>>
<div id="hide">
<<button "Continue">>
<<toggleclass "#hide" noshow>>
<<replace "#replace">>
<div class="fantasy">
<<narrate>>You try to clear your thoughts, but you can't stop thinking about your $sophia.them.<</narrate>>
<<vid "sophia/meditate01.mp4">>
<<think "mc">>Concentrate. Concentrate. Cast out the bad thoughts!<</think>>
<<narrate>>You feel your dick fighting for freedom in your gym shorts. Your thoughts remain on $sophia.them sucking your dick.<</narrate>>
<<say "mc">>God yes, suck it!<</say>>
</div>
<<button "Continue" sophiaanswers>>
<<temp "meditate">>
<</button>>
<</replace>>
<</button>>
</div>
<div id="replace">
</div>
<<elseif getCurrentLocation('sophia') == "Garden" && $sophia.events.meditate > 1 && $sophia.events.trapchat == 1>>
<<think "mc">>Hmmm, let's see how can I turn this to my benefit? She likes holding on to the weights... something hard she said. I know what I'd like to replace them with... but for now, let's just have my cock 'accidentally' fall out.<</think>>
<<left2 "sophia/garden02.jpg">>
<<say "sophia">>...'lo? You there, $sophia.calls?<</say>>
<<say "mc">>Sorry, $sophia.refer. Lost in thought.<</say>>
<<say "sophia">>Jeez, you really need to clear your head. Come on, it's a bit hot out here, let's just do it inside.<</say>>
<<say "mc">>Do it...? Wow, $sophia.refer, I'm your $sophia.you!<</say>>
<<say "sophia">>Get your mind out of the gutter for once, come on. We'll try some yoga today.<</say>>
<<narrate>>You follow her inside where she gives you various instructions, but unfortunately is a little more hands off than normal.<</narrate>>
<<think "mc">>Shit, have I burnt too many bridges?<</think>>
<<cont "sophiaanswers" "yoga01">>
<<elseif getCurrentLocation('sophia') == "Garden" && $sophia.events.meditate > 1>>
<<left2 "sophia/garden02.jpg">>
<<say "sophia">>Great! I was just about to meditate too. I'll give you a hand.<</say>>
<<narrate>>She starts manhandling you, moving your body into various positions.<</narrate>>
<<say "mc">>You could just direct me. We've done this before.<</say>>
<<say "sophia">>It's just quicker this way.<</say>>
<<narrate>>Your dick begins to stir as the sensation of her hands rubbing against you sends ticking sensations through your body.<</narrate>>
<<think "sophia">>And there's his massive erection again, damn those girls are lucky.<</think>>
<<narrate>>Others will react more positively toward you for a few hours.<</narrate>>
<<notice>>Like 👍 gains will be more potent.<</notice>>
<<if $shalina.events.energy != undefined>>
<<narrate>>You'll find it easier to concentrate while using power control.<</narrate>>
<<notice>>Energy costs of power control are reduced.<</notice>>
<</if>>
<<button "Continue" $return>>
<<like "sophia" 2>>
<<lust "sophia" 2>>
<<corrupt "sophia" 2>>
<<time 1>>
<<event "sophia" "meditate" 3>>
<<set $meditating = $meditate.length>>
<</button>>
<<else>>
<<center "other/meditate.gif">>
<<narrate>>You manage to clear your mind and relax in the garden for an hour.<</narrate>>
<<narrate>>Others will react more positively toward you for a few hours.<</narrate>>
<<notice>>Like 👍 gains will be more potent.<</notice>>
<<if $shalina.events.energy != undefined>>
<<narrate>>You'll find it easier to concentrate while using power control.<</narrate>>
<<notice>>Energy costs of power control are reduced.<</notice>>
<</if>>
<<time 1>>
<<if $meditate == undefined>>
<<set $meditate = {level:1, length:3}>>
<</if>>
<<set $meditating = $meditate.length>>
<<button "Continue" $return>><</button>>
<</if>>
<<default>>
<<narrate>>You attempt to clear your mind, but are unable to do so. Perhaps you could do with some help from someone who meditates here frequently.<</narrate>>
<<task 'meditate'>>
<<time 0.5>>
<<button "Continue" housestuff>><</button>>
<</switch>>
<</nobr>><<if $activeDay == undefined>>
<<set $activeDay = "Monday">>
<</if>>
<<button "Office" housestuff>>
<<set $location = "office">>
<</button>>
<<button "Management" manage>>
<</button>>
<<if $hubname != undefined>>
<center><h3><<textbox "$hubname" $hubname>></h3></center>
<</if>>
<div class="flex">
<div @class="_g+' girlChoice clicker'" title="" data-passage="mngconstruction"><img @src="setup.img+'locations/construction.jpeg'" style="width:200px"><br>
<<if $constructionproject isnot undefined>>
$constructionproject.name<br>$constructionproject.shifts shifts remain<br>
<<elseif $breakcproject != undefined>>
<<if $breakcproject.facility == "gatewayb">>
<<set _n = "Gateway B">>
<<elseif $breakcproject.facility == "office">>
<<set _n = "Management">>
<<elseif $breakcproject.facility == "hotel">>
<<set _n = "Hotel">>
<<else>>
<<set _n = window.constructs[$breakcproject.facility].name>>
<</if>>
_n - $breakcproject.name<br>$breakcproject.shifts shifts remain<br>
<<else>>
Facility is idle.
<</if>>
</div>
<<if $buildings.lab != undefined>>
<div @class="_g+' girlChoice'" title="" data-passage="mnglab"><img @src="setup.img+'locations/lab.jpeg'" style="width:200px"><br>
<<if $techproject isnot undefined>>
$techproject.name<br>$techproject.shifts shifts remain<br>
<<elseif $breakproject != undefined>>
<<if $breakproject.facility == "gatewayb">>
<<set _n = "Gateway B">>
<<elseif $breakproject.facility == "office">>
<<set _n = "Management">>
<<else>>
<<set _n = window.constructs[$breakproject.facility].name>>
<</if>>
_n - $breakproject.name<br>$breakproject.shifts shifts remain<br>
<<else>>
Facility is idle.
<</if>>
</div>
<</if>>
</div>
<center><h3>Workers</h3>
<<if $spaType == undefined>>
<<set $spaType = "name">>
<</if>>
Arrange by <label><<radiobutton "$spaType" "name" autocheck>> Name</label> <label><<radiobutton "$spaType" "fatigue" autocheck>> Fatigue</label>
</center>
<<if $spaType == "fatigue">>
<<run $workers.sort(function (a, b) {
return (State.variables[a].fatigue < State.variables[b].fatigue) - (State.variables[a].fatigue > State.variables[b].fatigue)
});>>
<<else>>
<<run $workers.sort(function (a, b) {
if (State.variables[a].name < State.variables[b].name) {
return -1;
}
if (State.variables[a].name > State.variables[b].name) {
return 1;
}
return 0;
});>>
<</if>>
<<set _emojis = skillSpans>>
<div class="flex">
<<for _v range $workers>>
<<set _g = State.variables[_v]>>
<<capture _v, _g>>
<div class="girlChoice" title="" @girl="_v" style="max-width: 200px;"><img @src="setup.img+getFolder(_v)+'/'+_v+'crop.jpg'" style="width:200px"><br>
_g.name<br>
💤_g.fatigue<br>
<<if $working != undefined && $working[_v] != undefined && $working[_v][12] != undefined>>
<<if $working[_v][12] == "sparelax">>
<div style="display:inline-block"><img @src="setup.img+'locations/spa.jpeg'" title="Morning - Spa Relaxation" class='relax tinybadge'></div>
<<else>>
<div style="display:inline-block"><img @src="setup.img+'locations/'+$working[_v][12]+'.jpeg'" @title="'Morning - ' +constructs[$working[_v][12]].name" class='tinybadge'></div>
<</if>>
<<else>>
<div class='tinybadge' title="Morning - Free"></div>
<</if>>
<<if $working != undefined && $working[_v] != undefined && $working[_v][16] != undefined>>
<<if $working[_v][16] == "sparelax">>
<div style="display:inline-block"><img @src="setup.img+'locations/spa.jpeg'" title="Afternoon - Spa Relaxation" class='relax tinybadge'></div>
<<else>>
<div style="display:inline-block"><img @src="setup.img+'locations/'+$working[_v][16]+'.jpeg'" @title="'Afternoon - '+constructs[$working[_v][16]].name" class='tinybadge'></div>
<</if>>
<<else>>
<div class='tinybadge' title="Afternoon - Free"></div>
<</if>>
<<if $working != undefined && $working[_v] != undefined && $working[_v][19] != undefined>>
<<if $working[_v][19] == "sparelax">>
<div style="display:inline-block"><img @src="setup.img+'locations/spa.jpeg'" title="Evening - Spa Relaxation" class='relax tinybadge'></div>
<<else>>
<div style="display:inline-block"><img @src="setup.img+'locations/'+$working[_v][19]+'.jpeg'" @title="'Evening - '+constructs[$working[_v][19]].name" class='tinybadge'></div>
<</if>>
<<else>>
<div class='tinybadge' title="Evening - Free"></div>
<</if>>
<<if $working != undefined && $working[_v] != undefined && $working[_v][23] != undefined>>
<<if $working[_v][23] == "sparelax">>
<div style="display:inline-block"><img @src="setup.img+'locations/spa.jpeg'" title="Night - Spa Relaxation" class='relax tinybadge'></div>
<<else>>
<div style="display:inline-block"><img @src="setup.img+'locations/'+$working[_v][23]+'.jpeg'" @title="'Night - '+constructs[$working[_v][23]].name" class='tinybadge'></div>
<</if>>
<<else>>
<div class='tinybadge' title="Night - Free"></div>
<</if>>
<br>
<<for _t range _g.traits>>
<<if _t == "off world worker">><<continue>><</if>>
<<set _tool = eval(traits[_t].info)>>
<<if _t == "poster child" && $poster != undefined && $poster[_g] != undefined>>
<<set _tool = traits[_t].info + "<br>Current Bonus " + $poster[_g].length>>
<<for _w range $poster[_g]>>
<<set _tool += "<br>"+planets[_w].name>>
<</for>>
<</if>>
<span class="trait" @title="_tool">_t</span><br>
<</for>>
<br>
<<for _k, _s range _g.skills>>
<<if _emojis[_k] == undefined>><<continue>><</if>>
<span style="white-space: nowrap;">_emojis[_k]_s</span>
<</for>>
</div>
<</capture>>
<</for>>
</div>
<center>
<h3>Miscellaneous Bonuses</h3>
<<set _extraincome = $daily + $extraIncome>>
⚙️Additional Daily Income: _extraincome<br>
<<if $shootincome != undefined && $shootincome > 0>>
⚙️Daily Shoot Income: $shootincome<br>
<</if>>
<<if $food >0 >>🥕Current Surplus: $food<br><</if>>
<<set _anchor = 0>>
<<set _conn = 0>>
<<for _v range $planets>>
<<if _v.anchor != undefined>>
<<set _anchor += _v.anchor.attr>>
<</if>>
<</for>>
<<if _anchor > 0>>😍Anchor Bonuses: _anchor<br><</if>>
<<if $penalty != undefined && $penalty > 0>>😍Attractiveness Penalty: $penalty<br><</if>>
/* poster child bonus */
<<set _poster = 0>>
<<if $poster != undefined>>
<<if $poster.val != undefined>>
<<set _poster += $poster.val.length>>
<</if>>
😍Poster Child Bonus: _poster<br>
<</if>>
<<if $eventbonus != 0>>
<<set _eb = Math.floor($eventbonus)>>
😍Event Bonus: _eb<br>
<</if>>
<<if $planetbonus != 0>>
😍Marketing Bonus: $planetbonus<br>
<</if>>
<<if $shootattr != 0>>
😍Shoot Bonus: $shootattr<br>
<</if>>
<h3>Facilities</h3>
<<notice>>This shows projected values for a full day's work. It does not take into account fatigue penalties or workers failing to show for their shift.<</notice>>
</center>
<div class="flex">
<<for _k, _b range $buildings>>
<<if _k == "construction" || _k == "lab" || _k == "stage">><<continue>><</if>>
<<capture _k, _b>>
<<set _lnk = "mng"+_k>>
<<set _dta = "">>
<<set _expincome = 0>>
<<set _food = 0>>
<<set _attr = clone(_b.attractive)>>
<<if _attr == undefined>>
<<set _attr = 0>>
<</if>>
<<if _b.location == "town" || _b.location == "house">>
<<set _lnk = "housestuff">>
<</if>>
<div @class="_g+' girlChoice clicker'" title="" @data-passage="_lnk" data-setter="$location = _k"><img @src="setup.img+'locations/'+_k+'.jpeg'" style="width:200px"><br>
_b.name<br>
<<if $dailyworking[$activeDay][_k] != undefined>>
<<for _x, _s range $dailyworking[$activeDay][_k]>>
<<capture _x, _s>>
<<for _w range $dailyworking[$activeDay][_k][_x]>>
<<capture _w>>
<<if _w == undefined || _w == "">><<continue>><</if>>
<<set _expincome += calcBuildingIncome(_k, State.variables[_w], _x)>>
<<if _k == "farm">>
<<set _food += calcFarmYield(State.variables[_w], _x)>>
<</if>>
<<if _k == "restaurant">>
<<set _food-->>
<</if>>
<</capture>>
<</for>>
<</capture>>
<</for>>
<</if>>
<<switch _k>>
<<case "waiting">>
<<if $breakdone != undefined && $breakdone.waiting != undefined && $breakdone.waiting.includes('comfy')>>
<<set _attr++>>
<</if>>
<<if $attractivenessbonus != undefined && $attractivenessbonus > 0>><<set _attr += $attractivenessbonus>><</if>>
<<case "farm">>
<<if $breakdone != undefined && $breakdone.farm != undefined && $breakdone.farm.includes('animals')>>
<<set _attr += 2>>
<</if>>
<<case "toilets">>
<<if $breakdone != undefined && $breakdone.toilets != undefined && $breakdone.toilets.includes('tp')>>
<<set _attr += 1>>
<</if>>
<<if $breakdone != undefined && $breakdone.toilets != undefined && $breakdone.toilets.includes('wash')>>
<<set _attr += 1>>
<</if>>
<<if $breakdone != undefined && $breakdone.toilets != undefined && $breakdone.toilets.includes('shower')>>
<<set _attr += 1>>
<</if>>
<<if $breakdone != undefined && $breakdone.toilets != undefined && $breakdone.toilets.includes('lockers')>>
<<set _attr += 1>>
<</if>>
<<case "studio">>
<<if $breakdone != undefined && $breakdone.studio != undefined && $breakdone.studio.includes('print')>>
<<run calcShoots()>>
<<set _expincome = $shootincome>>
<</if>>
<<case "market">>
<<set _low = Math.floor($totalattractiveness * 0.4)>>
<<set _high = Math.floor($totalattractiveness * 0.5)>>
<<set _marketincome = Math.floor(_low + ((_high-_low)/2))>>
<<set _expincome = "≈_marketincome">>
<</switch>>
⚙️_expincome 🔻_b.upkeep 😍_attr <<if _food != 0>>🥕_food<</if>>
</div>
<</capture>>
<</for>>
</div>
/* $dailyworking -> day -> facility -> hour -> array of workers */
<<script>>
setup.scriptpromise.then(function () {
$('.trait, .tinybadge, .em').tooltip({
position: {
my: "center bottom-5",
at: "center top-5"
},
track: true
});
$("[name='radiobutton-spatype']").change(function() {
Engine.show();
});
});
<</script>><<if debug == true>>
<div class="debug">
<<if checkUnlocks('movie', 'peep', 'sophia') == false>>
<<button "Derin Seen" peep>>
<<set $movies.sophia.peep.unlocked = true>>
<<set $sophia.events.peeper = 1>>
<</button>>
<<else>>
<<button "Derin Unseen" peep>>
<<set $movies.sophia.peep.unlocked = false>>
<<set $sophia.events.peeper = undefined>>
<</button>>
<</if>>
<<if checkUnlocks('movie', 'ember', 'britt') == false>>
<<button "Rita/Zoe Seen" peep>>
<<set $movies.britt.ember.unlocked = true>>
<</button>>
<<else>>
<<button "Rita/Zoe Unseen" peep>>
<<set $movies.britt.ember.unlocked = false>>
<</button>>
<</if>>
<<if $lexi.events.peep == undefined>>
<<button "Kim Seen" peep>>
<<set $lexi.events.peep = 1>>
<</button>>
<<else>>
<<button "Kim Unseen" peep>>
<<set delete $lexi.events.peep>>
<</button>>
<</if>>
</div>
<</if>>
<div id="replace">
<<choices "What do you want to do?">>
<div class="flex">
<<if $girlsavailable.includes('founder')>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'founder/badge.jpg'" style="width:100px"><br>
$founder.name<br>
<<button "Spy" foundersex>>
<<temp "peep01">>
<</button>>
</div>
<</if>>
<<if $girlsavailable.includes('melody') && $melody.events.music != undefined && checkUnlocks('movie', 'n', 'melody') == false>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'offworld/melody/badge.jpg'" style="height:100px"><br>
$melody.name<br>
<<button "Visit" othersex>>
<<temp "melodyn">>
<</button>>
</div>
<<elseif $girlsavailable.includes('hm') && $girlsavailable.includes('melody')>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'offworld/melody/both.jpg'" style="height:100px"><br>
$melody.name & $hm.name<br>
<<button "Join" othersex>>
<<temp "hmsisters">>
<</button>>
</div>
<</if>>
<<if $krissy.events.hotel != undefined && ($krissy.events.relationship == undefined || $krissy.events.relationship != "friends")>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'krissy/badge.jpg'" style="width:100px"><br>
$krissy.name<br>
<<button "Spy" eastsex>>
<<temp "krissypeep">>
<<set $tempvar2 = "ne">>
<</button>>
</div>
<</if>>
<<if $sophia.events.peeper != undefined>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'sophia/badge.jpg'" style="width:100px"><br>
$sophia.name<br>
<<button "Spy" peeping>>
<<temp "sophiawander">>
<</button>>
</div>
<</if>>
<<if $anna.events.model == 1>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'anna/badge.jpg'" style="width:100px"><br>
$anna.name<br>
<<button "Meet" annasex>>
<<temp "foot">>
<</button>>
</div>
<</if>>
<<if $girlsavailable.includes('maddy') && $girlsavailable.includes('anna') && $anna.events.relationship != undefined && $anna.events.relationship == "taboo" && $anna.mature != true>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'maddy/avatar.jpg'" style="width:100px"><img @src="setup.img+'anna/avatar.jpg'" style="width:100px">
<br>$maddy.name & $anna.name<br>
<<button "Watch" maddysex>>
<<temp "maddyanna">>
<</button>>
</div>
<</if>>
<<if $theodora.events.harley != undefined && $girlsavailable.includes('theodora')>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'theodora/badge.jpg'" style="width:100px"><br>
$theodora.name<br>
<<button "Visit" peeping>>
<<temp "theodoravis01">>
<</button>>
<<if $theodora.events.dildo != undefined>>
<<button "Meet" theodorasex>>
<<temp "loungedildo">>
<</button>>
<</if>>
</div>
<</if>>
<<if $lexi.young == true>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'lexi/young/badge.jpg'" style="width:100px">
<br>$lexi.name<br>
<<button "Spy" lexisex>>
<<temp "tformpeep">>
<</button>>
</div>
<<elseif $lexi.events.peep != undefined || $lexi.events.studyspy >= 1>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'lexi/badge.jpg'" style="width:100px">
<br>$lexi.name<br>
<<if $lexi.events.peep != undefined>>
<<button "Spy" peeping>>
<<temp "lexipool02">>
<</button>>
<</if>>
<<if $lexi.events.studyspy >= 1>>
<<button "Meet" lexisex>>
<<temp "mutual">>
<</button>>
<</if>>
</div>
<</if>>
<<if $adria.mature == true>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'adria/mature/badge.jpg'" style="width:100px">
<br>$adria.name<br>
<<button "Spy" adriasex>>
<<temp "tformpeep">>
<</button>>
</div>
<<elseif $adria.events.blind == 6>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'adria/badge.jpg'" style="width:100px">
<br>$adria.name<br>
<<button "Visit" adria>>
<<set $location = "bedrooms">>
<</button>>
</div>
<<elseif $adria.events.compfixed != undefined>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'adria/badge.jpg'" style="width:100px">
<br>$adria.name<br>
<<button "Spy" peeping>>
<<temp "adria">>
<</button>>
</div>
<</if>>
<<if $aubree.mature == true>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'aubree/mature/badge.jpg'" style="width:100px">
<br>$aubree.name<br>
<<button "Spy" aubreesex>>
<<temp "tformpeep">>
<</button>>
</div>
<<elseif $aubree.events.relationship != undefined && $aubree.events.relationship != "friends">>
<div class="girlChoice hover upgraded"><img @src="setup.img+'aubree/badge.jpg'" style="width:100px"><br>
$aubree.name<br>
<<if $aubree.events.surprise == undefined>>
<<button "Visit" peeping>>
<<temp "aubree">>
<</button>>
<<else>>
<<button "Spy" peeping>>
<<temp "aubree01">>
<</button>>
<</if>>
</div>
<</if>>
<<if $girlsavailable.includes('kp') && (($mc.events.metinspector == 1 && $schedules['kp'][8] == "Unavailable")|| $power > 4)>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'kp/badge.jpg'" style="width:100px"><br>
$kp.name<br>
<<if $mc.events.metinspector == 1 && $schedules['kp'][8] == "Unavailable">>
<<button "Spy" peeping>>
<<temp "kp01">>
<</button>>
<<elseif $power > 4>>
<<button "Spy" peeping>>
<<temp "kppeep01">>
<</button>>
<</if>>
</div>
<</if>>
<<if $tasks.inspectinteract != undefined>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'kp/badge.jpg'" style="width:100px"><br>
$kp.name<br>
<<button "Visit" kpanswers>>
<<temp "inspectiondone">>
<</button>>
</div>
<</if>>
<<if $cassie.events.porno == 2>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'cassie/badge.jpg'" style="width:100px">
<br>$cassie.name<br>
<<button "Spy" peeping>>
<<temp "cassie">>
<</button>>
</div>
<</if>>
<<if $girlsavailable.includes('kayla') && $kayla.lust > 9>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'kayla/badge.jpg'" style="width:100px">
<br>$kayla.name<br>
<<button "Spy" peeping>>
<<if checkUnlocks('movie', 'peeping01', 'kayla') == true && $kayla.events.dildo != undefined>>
<<temp "kayladildo">>
<<else>>
<<temp "kayla">>
<</if>>
<</button>>
<<if $girlsavailable.includes('kayla') && $kayla.lust > 24>>
<<button "Visit" kaylabj>>
<<temp "night">>
<</button>>
<</if>>
</div>
<</if>>
<<if $girlsavailable.includes('vanna') && $vanna.events.surprise >= 4 && $vanna.mature != true>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'vanna/badge.jpg'" style="width:100px">
<br>$vanna.name<br>
<<button "Visit" vannasex>>
<<temp "corset">>
<</button>>
</div>
<</if>>
<<if $girlsavailable.includes('vanna') && $vanna.mature == true && $vanna.events.surprise == 7>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'vanna/mature/badge.jpg'" style="width:100px">
<br>$vanna.name<br>
<<button "Visit" vannasex>>
<<temp "firstt">>
<</button>>
</div>
<</if>>
<<if $girlsavailable.includes('ember')>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'ember/badge.jpg'" style="width:100px">
<br>$ember.name<br>
<<if $ember.events.peep == undefined || checkUnlocks('movie', 'peepbj', 'ember') == true>>
<<button "Spy" peeping>>
<<temp "ember">>
<</button>>
<<else>>
<<button "Spy" emberbj>>
<<temp "peepbj">>
<</button>>
<</if>>
<<if checkUnlocks('movie', 'peepbj', 'ember') == true>>
<<button "Visit" emberbj>>
<<temp "peepbj">>
<</button>>
<</if>>
</div>
<</if>>
<<if $girlsavailable.includes('armani') >>
<div class="girlChoice hover upgraded"><img @src="setup.img+'armani/badge.jpg'" style="width:100px">
<br>$armani.name<br>
<<button "Spy" peeping>>
<<temp "armani">>
<</button>>
<<if $armani.lust > 19>>
<<if $krissy.events.hotel == undefined && $armani.events.krissyroom == undefined>>
<<button "Visit" peeping>>
<<temp "armanipeek02">>
<<set $tempvar2 = "peepskip">>
<</button>>
<<elseif $armani.events.krissyroom != undefined>>
<<button "Visit" armanisex>>
<<temp "anal01">>
<</button>>
<</if>>
<</if>>
</div>
<</if>>
<<if $girlsavailable.includes('britt') >>
<div class="girlChoice hover upgraded"><img @src="setup.img+'britt/badge.jpg'" style="width:100px">
<br>$britt.name<br>
<<button "Spy" peeping>>
<<temp "britt">>
<</button>>
<<if $britt.events.dildo != undefined>>
<<button "Visit" peeping>>
<<temp "brittdildo">>
<</button>>
<</if>>
</div>
<</if>>
<<if $girlsavailable.includes("whitney") && $girlsavailable.includes("monique") && $monique.young != true>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'whitney/badge.jpg'" style="width:100px">
<br>$whitney.name<br>
<<button "Spy" peeping>>
<<set $tempvar = "whitneymonique">>
<</button>>
</div>
<</if>>
<<if checkUnlocks('movie', 'ember', 'britt') == true && $girlsavailable.includes('britt') && $girlsavailable.includes('ember')>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'britt/avatar.jpg'" style="width:100px"><img @src="setup.img+'ember/avatar.jpg'" style="width:100px">
<br>$britt.name & $ember.name<br>
<<button "Watch" peeping>>
<<temp "brittember">>
<</button>>
</div>
<</if>>
<<if $girlsavailable.includes("lexi") && $girlsavailable.includes("monique") && $monique.young == true && $lexi.young != true && $monique.events.lexi3 >= 1>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'lexi/avatar.jpg'" style="width:100px"><img @src="setup.img+'monique/young/avatar.jpg'" style="width:100px">
<br>$lexi.name & $monique.name<br>
<<button "Visit" moniquelexi01>>
<</button>>
</div>
<</if>>
<<set _explore = 0>>
<<set _opts = []>>
<<if checkUnlocks('movie', 'ember', 'britt') == false && $girlsavailable.includes('britt') && $girlsavailable.includes('ember') && ($ember.lust > 29 || $britt.lust > 29)>>
<<set _explore++>>
<<temp "brittember">>
<<set _opts.pushUnique($tempvar)>>
<</if>>
<<if checkUnlocks('movie', 'peep', 'sophia') == false && $sophia.lust > 9 && $sophia.events.peeper == undefined && $sophia.events.meditate > 1>>
<<set _explore++>>
<<temp "sophiawander">>
<<set _opts.pushUnique($tempvar)>>
<</if>>
<<if $lexi.events.feelings != undefined && $lexi.events.peep == undefined && $lexi.young != true>>
<<set _explore++>>
<<temp "lexipool">>
<<set _opts.pushUnique($tempvar)>>
<</if>>
<<if _explore > 0>>
<div class="girlChoice hover upgraded"><img @src="setup.img+'locations/wander.jpg'" style="width:100px">
<br>The Hotel<br>
<<if _explore > 1>>
<<button "Explore">>
<<replace "#replace">>
<<choices "Where do you want to explore?">>
<<for _o range _opts>>
<<switch _o>>
<<case "brittember">>
<<link "Go Left" peeping>>
<<temp "brittember">>
<</link>><br>
<<case "sophiawander">>
<<link "Go Right" peeping>>
<<temp "sophiawander">>
<</link>><br>
<<case "lexipool">>
<<link "Games Room" peeping>>
<<temp "lexipool">>
<</link>><br>
<</switch>>
<</for>>
<<link "Never mind" peep>><</link>>
<</choices>>
<</replace>>
<</button>>
<<else>>
<<button "Explore" peeping>><</button>>
<</if>>
</div>
<</if>>
</div>
<br>
<<return "Never mind">>
<</choices>>
</div><<switch $tempvar>>
<<case "lexipool">>
<<narrate>>Unable to sleep you decide to walk around the hotel, as you walk past the games room you overhear the pool balls knocking against each other.<</narrate>>
<<think "mc">>Who's in there at this time of night?<</think>>
<div id="replace">
<<button "Open Door">>
<<replace "#replace">>
<<narrate>>As soon as you open the door you see your $lexi.them's ass on full display as she crawls on the table.<</narrate>>
<<vid "lexi/pool01.webm">>
<<narrate>>You gasp at the sight.<</narrate>>
<<think "mc">>What the hell?!<</think>>
<<narrate>>Unable to tear your eyes away you stand in the doorway watching the scene unfold.<</narrate>>
<<narrate>>As she grabs the blue ball, you realize you're stood in the open, unnoticed only because she has her back to you. You sneak back to the door, excited to watch from behind cover.<</narrate>>
<<center "lexi/poolt01.jpg">>
<<narrate>>Unfortunately you trip just as you make it to the doorway. You fall to the floor with a thump and the door closes behind you quietly.<</narrate>>
<<say "lexi">>Is someone there? $monique.name?<</say>>
<<think "mc">>Shit!<</think>>
<<narrate>>You scurry away, hoping she didn't catch you. Back in your room, your heart still racing from excitement, you reflect on the situation.<</narrate>>
<<think "mc">>Why would she go to the games room at night of all places? Does she think it's more private down there at night? Maybe I should see if she frequents the place, now I know, I can be a little more stealthy.<</think>>
<<button "Sleep" sleep>>
<<lust "lexi" 3>>
<<corrupt "lexi" 1>>
<<event "lexi" "peep">>
<</button>>
<</replace>>
<</button>>
</div>
<<case "lexipool02">>
<<narrate>>You sneak down to the games room door, hopeful $lexi.name is there again.<</narrate>>
<<if $lexi.events.peep == 1>>
<<think "mc">>Okay, $name, don't fuck it up this time!<</think>>
<</if>>
<div id="replace">
<<button "Open Door">>
<<replace "#replace">>
<<narrate>>You nudge the door open and peer from the crack.<</narrate>>
<<vid "lexi/pool02.webm">>
<<think "mc">>Jackpot!<</think>>
<<narrate>>You stand and enjoy the show as your $lexi.them pleasures herself.<</narrate>>
<<say "lexi">>Aaaagh~<</say>>
<<narrate>>Her moan sends a shiver down your spine.<</narrate>>
<<if $lexi.events.peep >= 3>>
<<say "lexi">>Let's try out $monique.name's gift...<</say>>
<<think "mc">>She thinks it was from $monique.refer?<</think>>
<<narrate>>You shrug.<</narrate>>
<<cont "peeping" "lexipool03">>
<<else>>
<<if $possess != undefined && $possess > 1>>
<<think "mc">>I bet a toy would make her nights even better... but I doubt she'd take one from me directly right now. Maybe I could leave it in her room when she's not there?<</think>>
<</if>>
<<narrate>>After a while you decide it's best to make your escape before you're caught.<</narrate>>
<<button "Sleep" sleep>>
<<lust "lexi" 3>>
<<corrupt "lexi" 2>>
<<if $lexi.events.peep == 1>>
<<event "lexi" "peep" 2>>
<</if>>
<</button>>
<</if>>
<</replace>>
<</button>>
</div>
<<case "lexipool03">>
<<narrate>>She switches the vibrator on and smirks.<</narrate>>
<<vid "lexi/pool03.webm">>
<<narrate>>You can see her writhing in pleasure as she rubs the vibrator on over her clit.<</narrate>>
<<think "mc">>Wow, that's the best use of money ever!<</think>>
<<narrate>>As you watch her orgasm, you can't but think she whispered your name. Though intrigued, you decide it's best to make your exit.<</narrate>>
<<button "Sleep" sleep>>
<<unlock "lexi" "peep">>
<<lust "lexi" 5>>
<<corrupt "lexi" 3>>
<<if $lexi.events.peep < 3>>
<<event "lexi" "peep" 3>>
<</if>>
<</button>>
<<case "adria">>
<<think "mc">>I wonder if she actually disabled the webcam. I'll see if I can catch her in the act.<</think>>
<<narrate>>You sneak down the hall to her room.<</narrate>>
<<center "other/closeddoor.jpeg">>
<<think "mc">>Well, the lights are on, let's try inching the door open a little.<</think>>
<div id="replace">
<<button "Continue">>
<<unlock "adria" "peep01">>
<<if $adria.events.relationship == undefined && $replay == false>>
<<replace "#replace">>
<<narrate>>You slowly push the door open, immediately getting an eyeful of $adria.name pleasuring herself on the sofa.<</narrate>>
<<vid "adria/peep01.mp4">>
<<think "mc">>Wow, she's really going for it. It's kinda turning me on...<</think>>
<<narrate>>You feel your dick stiffen, pushing the door slightly.<</narrate>>
<<think "mc">>Well, it's obvious what my dick wants. But what about me? She's certainly attractive, and given what else has been going on, it's not like the taboo would stop me. Do I wanna go further with my $adria.them?<</think>>
<div id="replace2">
<<choices>>
<<link "Fuck yeah">>
<<replace "#replace2">>
<<think "mc">>Oh, she's gonna get it for sure. I wonder what would work best to convince her?<</think>>
<<narrate>>While pondering you admire her beauty, when suddenly you hear yourself grunt.<</narrate>>
<<think "mc">>What the fuck?<</think>>
<<say "mc" "" "(Recording)">>Oh fuck yes!<</say>>
<<think "mc">>Is she watching a recording of me fucking someone while masturbating? Hell, this is gonna be easy!<</think>>
<<button "Sleep" sleep>>
<<event "adria" "relationship" "taboo">>
<<event "adria" "peep">>
<<lust "adria" 2>>
<<corrupt "adria" 3>>
<<if $adria.corruptmax < 40>>
<<set $adria.corruptmax = 40>>
<</if>>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Nah">>
<<replace "#replace2">>
<<think "mc">>Right now I think I'll leave things as they are. I can always revisit this decision later if I want to.<</think>>
<<button "Sleep" sleep>>
<<event "adria" "relationship" "friends">>
<<event "adria" "peep">>
<<lust "adria" 2>>
<<if $adria.corruptmax < 40>>
<<set $adria.corruptmax = 40>>
<</if>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<notice>>If you choose against pursuing a taboo relationship you can collect your thoughts at night and change your mind later.<</notice>>
<</replace>>
<<else>>
<<replace "#replace">>
<<narrate>>You slowly push the door open, immediately getting an eyeful of $adria.name pleasuring herself on the sofa.<</narrate>>
<<vid "adria/peep01.mp4">>
<<think "mc">>Wow, she's really going for it. It's kinda turning me on...<</think>>
<<narrate>>You feel your dick stiffen, pushing the door slightly.<</narrate>>
<<think "mc">>Well, it's obvious what my dick wants.<</think>>
<<narrate>>You stay hidden while enjoying the show.<</narrate>>
<<button "Sleep" sleep>>
<<lust "adria" 2>>
<<corrupt "adria" 2>>
<</button>>
<</replace>>
<</if>>
<</button>>
</div>
<<case "kppeep01">>
<<center "other/closeddoor.jpeg">>
<<narrate>>You inch the door open only to find the room empty. $kp.name isn't here. Curious what she's up to at this time of night, you sneak around the hotel looking for her.<</narrate>>
<div id="replace">
<<button "Continue">>
<<replace "#replace">>
<<narrate>>You find her in the kitchen... with $lacy.name.<</narrate>>
<<center "kp/lacy01.jpg">>
<<think "mc">>Holy shit, I knew she was impressed with $lacy.name, but clearly I had no idea how much!<</think>>
<<if $lacy.lust < 50>>
<<narrate>>You watch as $lacy.name rubs $kp.name's thigh while sucking on her boobs, you're about to get your cock out and start stroking when $lacy.name turns to face you.<</narrate>>
<<say "lacy">>$name? Sorry, I just—<</say>>
<<narrate>>$kp.name chuckles.<</narrate>>
<<say "kp">>He was just getting into it.<</say>>
<<say "lacy">>Another time.<</say>>
<<narrate>>She leaves.<</narrate>>
<<say "kp">>Bah, there's always another night. Good night, $name.<</say>>
<<think "mc">>I guess $lacy.name isn't quite lustful enough to take it further yet. I bet she wouldn't have even noticed me if she was engrossed enough.<</think>>
<<button "Sleep" sleep>>
<<lust "kp" 2>>
<<lust "lacy" 1>>
<</button>>
<<else>>
<<narrate>>You watch as $lacy.name rubs $kp.name's thigh while sucking on her boobs.<</narrate>>
<<think "mc">>Damn, this is hot.<</think>>
<<narrate>>You think you're busted when $kp.name looks over in your direction, but she just gives you a wink and pushes $lacy.name's head down toward her pussy.<</narrate>>
<<choices "Keep Watching?">>
<<link "Yes " peeping>>
<<temp "kplacy01">>
<</link>><br>
<<link "Sleep" sleep>>
<</link>>
<</choices>>
<</if>>
<</replace>>
<</button>>
</div>
<<case "kplacy01">>
<<vid "kp/lacy01.mp4">>
<<narrate>>You enjoy the show as $lacy.name devours $kp.name's pussy.<</narrate>>
<<say "kp">>Mhmmm, yeah. Your turn, babe.<</say>>
<<button "Continue" peeping>>
<<temp "kplacy02">>
<</button>>
<<case "kplacy02">>
<<narrate>>She pushes $lacy.name onto the counter top.<</narrate>>
<<vid "kp/lacy02.mp4">>
<<narrate>>The lust in $kp.name's eyes as she eats $lacy.name out is enough to make you jealous.<</narrate>>
<<say "lacy">>I wanna make you cum!<</say>>
<<button "Continue" peeping>>
<<temp "kplacy03">>
<</button>>
<<case "kplacy03">>
<<narrate>>She jumps off the counter with surprising agility and quickly has $kp.name bent over as she rubs her clit and rapidly fingers her.<</narrate>>
<<vid "kp/lacy03.mp4">>
<<narrate>>$kp.name's cries of pleasure echo across the kitchen.<</narrate>>
<<say "kp">>Oh shit, yes mhhmm, uh-huh, uh-huh!<</say>>
<<narrate>>Her moans become more intense, and she has to hold on to herself as the orgasm washes over her.<</narrate>>
<<say "kp">>Holy shit.<</say>>
<<button "Continue" peeping>>
<<temp "kplacy04">>
<</button>>
<<case "kplacy04">>
<<narrate>>She falls to the floor. Thinking the show is over, you're about to leave when she grabs $lacy.name's legs and stands over her face.<</narrate>>
<<vid "kp/lacy04.mp4">>
<<say "lacy">>That's it, that's it, oohhh yes.<</say>>
<<narrate>>$lacy.name is barely able to keep herself upright as the pleasure takes control.<</narrate>>
<<say "lacy">>Oh god, fuck yes.<</say>>
<<narrate>>As $lacy.name falls back to the floor and starts pawing for her clothes, you make your exit.<</narrate>>
<<button "Sleep" sleep>>
<<temp "">>
<<unlock "kp" "lacy">>
<<unlock "lacy" "kp">>
<<lust "kp" 3>>
<<lust "lacy" 3>>
<</button>>
<<case "theodoravis01">>
<<narrate>>Without even knocking, you just enter $theodora.name's room. Immediately you're greeted by her sultry whimpers.<</narrate>>
<<vid "theodora/peep01.mp4">>
<<narrate>>She looks directly at you with a mixture of confusion and lust.<</narrate>>
<<say "mc">>Oh shit, sorry, I'll go, I didn't know.<</say>>
<<say "theodora">>Mhhmmm, what are you talking about, this is your... aaaah... reward!<</say>>
<<think "mc">>Are you shitting me?<</think>>
<<say "theodora">>Your problem. I thought mhhhm, yes... this would be a good way to help.<</say>>
<<think "mc">>She keeps calling it a problem, I don't see it as such!<</think>>
<<button "Continue" peeping>>
<<temp "theodoravis02">>
<</button>>
<<case "theodoravis02">>
<<narrate>>You sit down on her bed and enjoy the show.<</narrate>>
<<vid "theodora/peep02.mp4">>
<<say "theodora">>Mhhmmm, you can stroke yourself if you want.<</say>>
<<narrate>>You need no encouragement, your dick is out within seconds, and you're both jerking it while watching each other.<</narrate>>
<<say "mc">>You're the best, $theodora.refer.<</say>>
<<say "theodora">>It causes me no harm an—aaaaah, and I see it brings you—ooooh, joy.<</say>>
<<button "Continue" peeping>>
<<temp "theodoravis03">>
<</button>>
<<case "theodoravis03">>
<<narrate>>She puts down the dildo and begins furiously finger banging herself, you pick up the pace, trying to match your climax to hers.<</narrate>>
<<vid "theodora/peep03.mp4">>
<<narrate>>The two of you wordlessly watch each other, edging ever closer to your orgasm, until finally you both break within seconds of each other.<</narrate>>
<<say "theodora">>Oh fuck, god yes!<</say>>
<<set _s = $theodora.refer.toUpperFirst()>>
<<say "mc">>_s, yes, that's so damn good!<</say>>
<<narrate>>You both sit there, out of breath, for a moment.<</narrate>>
<<think "theodora">>I enjoyed that a bit more than I thought I would.<</think>>
<<say "theodora">>How was that?<</say>>
<<say "mc">>It was fantastic. I can't wait for the next reward!<</say>>
<<say "theodora">>It'll be even better next time if you keep spoiling me!<</say>>
<<narrate>>You pause.<</narrate>>
<<say "mc">>Really?<</say>>
<<say "theodora">>Absolutely, I actually enjoy helping you with your problem.<</say>>
<<say "mc">>Honestly, I don't see it as much of a problem!<</say>>
<<think "mc">>I can only imagine what she means by even better. Will she stroke it or suck it for me, maybe? Holy shit! Who is corrupting who here?<</think>>
<<think "theodora">>I'm sure he saw the butt plug. I bet he'd love to watch me use that next time!<</think>>
<<if $theodora.corruptmax < 60>>
<<notice>>$theodora.name's attitude means she's becoming corrupt at a heightened pace. Flirting will now provide additional corruption<<if $buildings.spa != undefined>>, and you're now guaranteed to corrupt her when you relax at the spa together<</if>>.<</notice>>
<</if>>
<<button "Sleep" sleep>>
<<event "theodora" "night">>
<<lust "theodora" 4>>
<<if $theodora.corruptmax < 60>>
<<set $theodora.corruptmax = 60>>
<</if>>
<<corrupt "theodora" 5>>
<<like "theodora" 2>>
<<unlock "theodora" "night01">>
<</button>>
<<case "kp01">>
<<think "mc">>She may have been a bitch, but damn if she wasn't hot.<</think>>
<<narrate>>You head down the hall and stealthily open the door, hoping to catch her naked.<</narrate>>
<<center "kp/peep01.jpg">>
<<say "kp">>May I help you, boy?<</say>>
<<think "mc">>Shiiiit.<</think>>
<<narrate>>She chuckles.<</narrate>>
<<block "kp/peep02.jpg">>
<<say "kp">>I don't think I've ever seen anyone turn so pale so quickly. Whatever your reasons for being here are, I simply don't care. I'm here to inspect you. Whether you were here to ensure I wasn't a danger or even a misguided attempt to have your way with me, you're a fool for thinking you can sneak up on me.<</say>>
<<say "mc">>Well, I—<</say>>
<<say "kp">>Boy, leave me. This visit helps me understand what kind of person you are.<</say>>
<<say "mc">>No, but I—<</say>>
<<say "kp">>Leave.<</say>>
<</block>>
<<narrate>>You leave, then lean back on her door to collect your thoughts.<</narrate>>
<<think "mc">>Shit, what does that mean to the inspection? She's still a bitch, but I was here to perv on her, so can't really expect her to act any other way. Have I fucked this inspection up?<</think>>
<<narrate>>As you stand there in the hall leaning on her door, you start to hear moaning.<</narrate>>
<<think "mc">>Is she...? I wanna look so bad, but I can't fuck this up any more than I already have.<</think>>
<<narrate>>You hear her muffled voice through the door.<</narrate>>
<<say "kp">>Fu... me. Take... like... man.<</say>>
<<think "mc">>Goddamn! I feel crazy for not peeping, but I don't know what'll happen to the gateway and the others if I fail this inspection.<</think>>
<<button "Sleep" sleep>>
<<event "kp" "peeped">>
<</button>>
<<case "aubree01">>
<<narrate>>You hear her moans as you get close to her room.<</narrate>>
<<think "mc">>Jackpot.<</think>>
<<narrate>>You use your master key card and peer around the door.<</narrate>>
<<vid "aubree/peep01.mp4">>
<<say "aubree">>Oh, god, yes, yes. $aubree.calls, yes!<</say>>
<<narrate>>You keep watching for a while, especially enjoying the moments when she calls your name.<</narrate>>
<<button "Sleep" sleep>>
<<unlock "aubree" "peep01">>
<<corrupt "aubree" 2>>
<<lust "aubree" 1>>
<</button>>
<<case "aubree">>
<<think "mc">>I'll leave it 15 mins, keep her waiting.<</think>>
<<narrate>>You end up reading a book for 30 minutes, then decide to head to her room.<</narrate>>
<<center "other/closeddoor.jpeg">>
<<think "mc">>She's still up, great, this should hopefully work, just need to resist her!<</think>>
<div id="replaceme">
<<button "Open the door">>
<<replace "#replaceme">>
<<narrate>>As you begin opening the door, you hear her moaning and decide to be a bit more sneaky.<</narrate>>
<<vid "aubree/corruptpeep01.mp4">>
<<think "mc">>Shit, I can use this far better than anything else I had planned!<</think>>
<<say "aubree">>Mhhhm, that's it, $aubree.calls, just like that!<</say>>
<<think "mc">>Ha! Perfect.<</think>>
<<narrate>>You keep watching, but before she completes, you open the door wide and feign surprise.<</narrate>>
<<button "Continue" peeping>>
<<temp "aubsurprise">>
<</button>>
<</replace>>
<</button>>
</div>
<<case "aubsurprise">>
<<center "aubree/surprise01.jpg">>
<<say "mc">>The fuck is this, $aubree.name? You invite me to your room to see this?! I can't believe you!<</say>>
<<say "aubree">>Wait, no. This isn't... it wasn't supposed... you... no.<</say>>
<<think "mc">>I've never seen her so flustered.<</think>>
<<say "mc">>I'm leaving, this is just so wrong.<</say>>
<<say "aubree">>I—<</say>>
<<narrate>>You storm off dramatically and slam the door behind you.<</narrate>>
<<think "mc">>Thank fuck I got engrossed in that book, this has turned out waaay better than anything I was planning.<</think>>
<<think "aubree">>Fuck fuck fuck. He was late, so I didn't think he was coming, I really hope he didn't hear me call his name. Fuck, this is bad.<</think>>
<<button "Sleep" sleep>>
<<unlock "aubree" "surprise">>
<<temp "aubreecaught">>
<<event "aubree" "surprise">>
<</button>>
<<case "sophiawander">>
<<center "other/closeddoor.jpeg">>
<<narrate>>As you walk past $sophia.name's room, you hear her moaning.<</narrate>>
<<think "mc">>Well, she did mention everyone does it. Should... should I take a look?<</think>>
<div id="replace">
<<choices "Peep on her?">>
<<link "Peep">>
<<temp "sophiapeep">>
<<script>>
$('#replace').html('').wiki(Story.get("peeping").processText());
<</script>>
<</link>><br>
<<link "Sleep" sleep>>
<</link>>
<</choices>>
</div>
<<case "sophiapeep">>
<<narrate>>You push her door open slightly and peep through the crack.<</narrate>>
<<vid "sophia/peep01.mp4">>
<<think "mc">>Wow, she's really going for it. Looks like I'm just in time for the climax.<</think>>
<<narrate>>You watch as her legs quiver violently and she screams out in joy.<</narrate>>
<<think "mc">>Holy shit, I just watched my $sophia.them bring herself to orgasm. I'd better get out of here before anyone catches me.<</think>>
<<button "Sleep" sleep>>
<<unlock "sophia" "peep">>
<<lust "sophia" 2>>
<<corrupt "sophia" 1>>
<<event "sophia" "peeper">>
<<temp "">>
<</button>>
<<case "brittember">>
<<narrate>>You decide to wander the halls to see if you come across anything interesting. You pass everyone's room and are heading past the vacant rooms when you suddenly hear two women moaning...<</narrate>>
<<think "mc">>Guess it's my lucky day!<</think>>
<<center "other/closeddoor.jpeg">>
<<choices "Check it out?">>
<<link "Investigate" peeping>>
<<temp "brittember01">>
<</link>><br>
<<link "Sleep" sleep>>
<</link>>
<</choices>>
<<case "brittember01">>
<<narrate>>You open the door of the room to reveal a most amazing sight.<</narrate>>
<<vid "ember/britt01.mp4">>
<<think "mc">>Shit, I had no idea they were that close. But I guess they did go on plenty of trade missions together.<</think>>
<<narrate>>You keep watching.<</narrate>>
<<button "Continue" peeping>>
<<temp "brittember02">>
<</button>>
<<case "brittember02">>
<<vid "ember/britt02.mp4">>
<<think "mc">>Damn, I wonder if I can get it on this somehow.<</think>>
<<button "Continue" peeping>>
<<temp "brittember03">>
<</button>>
<<case "brittember03">>
<<vid "ember/britt03.mp4">>
<<think "mc">>Looks like they're coming to the end, I'd best skedaddle.<</think>>
<<think "mc">>I wonder if I can convince either of them to a threesome...<</think>>
<<button "Sleep" sleep>>
<<unlock "ember" "britt">>
<<unlock "britt" "ember">>
<<lust "ember" 2>>
<<lust "britt" 2>>
<<event "britt" "emberles">>
<<if $britt.lustlvl == 2>>
<<set $britt.lustlvl = 3>>
<</if>>
<</button>>
<<case "ember">>
<<narrate>>You approach $ember.name's room only to find the door open and her sat on the floor pleasuring herself.<</narrate>>
<<vid "ember/peep01.mp4">>
<<choices "What are you going to do?">>
<<if $ember.lust > 9>>
<<link "Jerk Off" peeping>>
<<temp "ember02">>
<</link>>
<br>
<</if>>
<<link "Sleep" sleep>>
<<lust "ember" 1>>
<</link>>
<</choices>>
<<case "ember02">>
<<say "ember">>Mhhhm, enjoying the show?<</say>>
<<think "mc">>Ah, shit.<</think>>
<<say "ember">>There's a reason I left the door open, you know.<</say>>
<<narrate>>You walk in.<</narrate>>
<<say "mc">>I was walking past and just couldn't help but stay and watch when I saw what you were doing.<</say>>
<<say "ember">>Then you'll really like this next toy!<</say>>
<<narrate>>She pulls out what looks to be a cushion with a dildo attached.<</narrate>>
<<say "ember">>Watch me, $name!<</say>>
<div id="replaceme">
<<button "Continue">>
<<replace "#replaceme">>
<<narrate>>She sits atop the device, sliding the fake penis into her wet pussy.<</narrate>>
<<vid "ember/peep02.mp4">>
<<say "ember">>Hooooleeeeeey fuck!<</say>>
<<button "Continue" peeping>><<temp "ember03">><</button>>
<</replace>>
<</button>>
</div>
<<case "ember03">>
<<narrate>>She turns around on the device and rides it as she looks back at you over her shoulder.<</narrate>>
<<vid "ember/peep03.mp4">>
<<narrate>>Her moans fill the room and only cause you to masturbate more furiously.<</narrate>>
<<say "mc">>Shit. Ride it. Show me what that ass can do.<</say>>
<<say "ember">>Mhhm, shit, fuck. Watch me. Watch me $name!<</say>>
<<narrate>>She lets out a long howl of pleasure as she reaches her climax, you too not far behind.<</narrate>>
<<say "ember">>Shit, that was fun. Come watch me any time, okay?<</say>>
<<narrate>>She turns the device off and relaxes on the sofa.<</narrate>>
<<say "mc">>I look forward to the next show.<</say>>
<<narrate>>She smirks at you.<</narrate>>
<<button "Sleep" sleep>>
<<unlock "ember" "peep01">>
<<lust "ember" 1>>
<<event 'ember' 'peep'>>
<</button>>
<<case "britt">>
<<narrate>>As you draw close to $britt.name's door, you hear faint buzzing sounds. You creak the door open slightly to enjoy the show.<</narrate>>
<<vid "britt/peep01.mp4">>
<<narrate>>You watch for a while before deciding not to risk being caught.<</narrate>>
<<button "Sleep" sleep>>
<<unlock "britt" "peep01">>
<<lust "britt" 1>>
<<event 'britt' 'buzzpeek'>>
<</button>>
<<case "brittdildo">>
<<narrate>>She's already started by the time you arrive, but her face lights up as soon as she sees you.<</narrate>>
<<vid "britt/dildo01.mp4">>
<<say "britt">>Yes, watch me. Watch me thrust your gift into my cute little pussy.<</say>>
<<narrate>>You stay and watch the show, jerking off as she brings herself to orgasm multiple times.<</narrate>>
<<button "Sleep" sleep>>
<<unlock "britt" "dildo">>
<<lust "britt" 5>>
<</button>>
<<case "cassie">>
<<narrate>>You head down to the lounge but as you draw close being to hear wet slapping sounds the loud moans.<</narrate>>
<<think "mc">>Is someone fucking in there?<</think>>
<<narrate>>You slowly push the door open only to see porn playing on the massive TV.<</narrate>>
<center>
<div class="tv">
<div class="tvborder">
<<center "cassie/porn.webp">>
</div>
<span class="tvlogo">SAMESUNG</span>
</div>
</center>
<br>
<<think "mc">>Holy crap, someone is watching porn!<</think>>
<<narrate>>You gingerly push the door open, hoping they don't notice you.<</narrate>>
<<button "Continue" peeping>>
<<temp "cassie02">>
<</button>>
<<case "cassie02">>
<<vid "cassie/porn01.mp4">>
<<think "mc">>Holy shit, $cassie.name!<</think>>
<<narrate>>You watch for a good while as she continues to pleasure herself.<</narrate>>
<<button "Sleep" sleep>>
<</button>>
<<case "kayladildo">>
<<narrate>>You sneak down the hall to $kayla.name's room. As you're about to open the door, you hear her moans.<</narrate>>
<<think "mc">>Sounds like she's already started!<</think>>
<<narrate>>You push the door open and sneak inside.<</narrate>>
<<vid "kayla/dildo01.mp4">>
<<narrate>>You whip out your cock and jerk off as you enjoy the show.<</narrate>>
<<button "Sleep" sleep>>
<<unlock "kayla" "dildo">>
<<lust "kayla" 3>>
<</button>>
<<case "kayla">>
<<center "other/closeddoor.jpeg">>
<<narrate>>You see the lights on in $kayla.name's room and decide to investigate, as you draw close you hear her calling your name.<</narrate>>
<<if checkUnlocks('movie', 'peeping01', 'kayla') == false>>
<<narrate>>You bust the door wide open, thinking she's in danger.<</narrate>>
<</if>>
<div id="replaceme">
<<button "Continue">>
<<replace "#replaceme">>
<<vid "kayla/peep01.mp4">>
<<narrate>>To your astonishment, she's laying naked on the bed, pleasuring herself. You stop dead in your tracks and just stare at the amazing vision unfolding before you.<</narrate>>
<<say "kayla">>Ohhh, fuck!<</say>>
<<narrate>>She's so engrossed that she doesn't even notice the door swing open. You silently close the door and hide behind some furniture.<</narrate>>
<<say "kayla">>Yes! $name! Fuck.<</say>>
<<think "mc">>Probably not wise to respond.<</think>>
<<narrate>>You decide to creep out before she catches you.<</narrate>>
<<if $kayla.lustlvl == 0 || $kayla.lustlvl == undefined>>
<<set $kayla.lustlvl = 1>>
<<set $kayla.oral = 0>>
<<think "mc">>Knowing she's into me, though, I think I can try and take things further.<</think>>
<</if>>
<<button "Sleep" sleep>>
<<unlock "kayla" "peeping01">>
<<lust "kayla" 2>>
<</button>>
<</replace>>
<</button>>
</div>
<<case "armani">>
<<narrate>>You you open the door slightly and are immediately rewarded with the view of $armani.name pleasuring herself.<</narrate>>
<<vid "armani/peekingon.mp4">>
<<if $armani.lust > 9 && $replay == false>>
<<choices "Jack off?">>
<<link "Yup" peeping>>
<<temp "armanipeek02">>
<</link>><br>
<<link "Sleep" sleep>>
<</link>>
<</choices>>
<<else>>
<<narrate>>Perhaps if $armani.name desired you more, something more may happen.<</narrate>>
<<button "Sleep" sleep>>
<<lust 'armani' 1>>
<<event 'armani' 'buzzpeek'>>
<</button>>
<</if>>
<<case "armanipeek02">>
<<if $tempvar2 != "peepskip">>
<<narrate>>You arrive at her door only to see she's already well underway.<</narrate>>
<<set $tempvar2 == "">>
<</if>>
<<narrate>>You stealthily lower your boxes, and start stroking your cock... but you get a little too into it and accidentally hit her door with your hand, blowing it wide open.<</narrate>>
<<narrate>>She jumps back in her bed and the pair of you lock eyes silently for a moment.<</narrate>>
<<say "armani">>You know what? I'm not even mad. Come here.<</say>>
<<center "armani/peep01.jpg">>
<<say "armani">>Watch me!<</say>>
<<narrate>>She pulls you down on to the bed and pushes you down to the end.<</narrate>>
<<say "mc">>Show me how you like it.<</say>>
<<center "armani/peep02.jpg">>
<<narrate "armani">>She bites her lip as she continues to rub her clit with the vibrator.<</narrate>>
<<say "armani">>Mhhmmm, yes, it feels so much better with you here.<</say>>
<<narrate>>Her hips gently sway as if hungering for me.<</narrate>>
<<say "armani">>Take over.<</say>>
<<narrate>>The command was absolute, serious, and you left you in no doubt denying her would be ill-advised.<</narrate>>
<div id="replaceme">
<<button "Take Over" peeping>>
<<temp "armanipeek03">>
<<stat "armani" 5 "dominance">>
<<lust "armani" 2>>
<</button>>
<<button "Leave">>
<<replace "#replaceme">>
<<say "mc">>No, I'm not your lapdog.<</say>>
<<narrate>>You get up to leave.<</narrate>>
<<say "armani">>Are you fucking kidding me? If I tell you to get down and lick my boots, that's what you'll fucking do!<</say>>
<<think "mc">>Fucking hell!<</think>>
<<narrate>>You turn back to respond just in time to see a large wand vibrator hurtling towards you. The last thing you hear as you drop to the floor is $armani.name cursing.<</narrate>>
<<say "armani">>Shit shit shit! Fuck!<</say>>
<<button "Continue" sleep>>
<<temp "armanibash">>
<</button>>
<</replace>>
<</button>>
</div>
<<unlock 'armani' 'peek01'>>
<<case "armanipeek03">>
<<vid "armani/peep02.mp4">>
<<narrate>>You take the wand off her and hold it against her clit.<</narrate>>
<<say "armani">>Mhhhm, ohh, this feels so much better.<</say>>
<<narrate>>She continues to moan as you gently move the wand over the full length of her vulva.<</narrate>>
<<say "armani">>Oh shit, that's it, right there.<</say>>
<<narrate>>She starts thumping her left leg and her moans grow in intensity, her eyes roll back until finally she lights out an almighty sigh.<</narrate>>
<<say "armani">>Fuuuuck, that was good.<</say>>
<<if $armani.lust > 19>>
<<say "mc">>My turn.<</say>>
<<narrate>>She seems puzzled for a moment.<</narrate>>
<<say "armani">>You know what? I did rather fancy a midnight snack.<</say>>
<<narrate>>She pulls you back up the bed, then shuffles down between your legs.<</narrate>>
<<button "Continue" peeping>>
<<temp "armanipeekbj">>
<</button>>
<<else>>
<<say "armani">>I'm done with you now, you can leave.<</say>>
<<say "mc">>The fuck?<</say>>
<<say "armani">>You heard me.<</say>>
<<narrate>>She saunters off to her bedroom leaving you bewildered. After a few minutes when it's clear she wasn't joking, you decide to head back to bed.<</narrate>>
<<button "Sleep" sleep>>
<<stat "armani" 5 "dominance">>
<</button>>
<</if>>
<<case "armanipeekbj">>
<<unlock 'armani' 'peek02'>>
<<say "armani">>I'm gonna suck you dry.<</say>>
<<narrate>>With little ceremony, she gobbles down on your dick, clearly determined to finish quickly.<</narrate>>
<<vid "armani/peekbj01.mp4">>
<<say "mc">>Holy crap!<</say>>
<<narrate>>She speeds up, faster and faster until you're hanging on the edge, and then stops to give you a look of anger.<</narrate>>
<<think "mc">>Shit, I knew it was too good to be true, and now she has my cock in her hand.<</think>>
<<narrate>>She squeezes hard.<</narrate>>
<<say "armani">>Next time, you don't fucking wait at the door, you come straight in and attend to my needs.<</say>>
<<think "mc">>I feel like how I react here will greatly impact on our relationship.<</think>>
<div id="which">
<<choices "How do you respond">>
<<button "Submit">>
<<replace "#which">>
<<say "mc">>Got it, next time I catch you having fun, I'll join in right away.<</say>>
<<say "armani">>Good boy.<</say>>
<<narrate>>She takes your cock back in her mouth while holding your balls tightly with her other hand.<</narrate>>
<<say "armani">>This cock is mine now. You can put it wherever you like, but just you remember, when I want it, I get it. You stop anything, or anyone, you're doing and present it to me. Do you understand?<</say>>
<<narrate>>She's edging you that much you can barely think straight.<</narrate>>
<<say "mc">>Yes.<</say>>
<<say "armani">>Yes, what?<</say>>
<<say "mc">>Uhhh, yes $armani.name?<</say>>
<<narrate>>She squeezes your dick tighter.<</narrate>>
<<say "armani">>It's "Mistress", don't your forget it, I won't be so forgiving next time.<</say>>
<<narrate>>Barely able to contain your orgasm already, once she returns her attention to your cock you climax within seconds.<</narrate>>
<<vid "armani/peekbjcum.mp4">>
<<say "armani">>Away with you now.<</say>>
<<say "mc">>uh, yeah, ok, good night.<</say>>
<<narrate>>She glares at you.<</narrate>>
<<say "mc">>Sorry. Good night Mistress.<</say>>
<<say "armani">>The boy's learning. Sleep well.<</say>>
<<if $armani.oral == 2>>
<<think "mc">>Well it's certainly a mixed bag with $armani.name, but I think it's going well. I'll try pushing things further with her.<</think>>
<<set $armani.lustlvl = 2>>
<</if>>
<<button "Sleep" sleep>>
<<stat 'armani' 25 'dominance'>>
<<lust 'armani' 3>>
<<event 'armani' 'buzzpeek' 2>>
<</button>>
<</replace>>
<</button>>
<<button "Take Charge">>
<<replace "#which">>
<<say "mc">>Next time I won't be so polite, I'll throw you on the bed and fuck you hard. But unless you finish me off right now, you'll be getting sweet FA. Don't say anything, just nod if you understand.<</say>>
<<narrate>>She opens and closes her mouth a couple of times while trying to comprehend the switch. Her grip on your dick loosens, then she nods and immediately starts sucking your cock again.<</narrate>>
<<narrate>>The adrenaline from the interaction means you barely last a few seconds as she expertly works your shaft.<</narrate>>
<<vid "armani/peekbjcum.mp4">>
<<say "mc">>You're my fucking slut now, understand?<</say>>
<<narrate>>She glares at you, unaccustomed to being submissive.<</narrate>>
<<say "armani">>Don't push your luck; you just remember your promise.<</say>>
<<narrate>>She ushers you out of the room.<</narrate>>
<<think "mc">>I guess she'll never convert fully to being a sub, but I can't help but get turned on by the idea of dominating her and clearly she doesn't hate the idea entirely.<</think>>
<<if $armani.oral == 2>>
<<think "mc">>Well it's certainly a mixed bag with $armani.name, but I think it's going well. I'll try pushing things further with her.<</think>>
<</if>>
<<button "Sleep" sleep>>
<<stat 'armani' -25 'dominance'>>
<<lust 'armani' 3>>
<<event 'armani' 'buzzpeek' 2>>
<<set $armani.lustlvl = 2>>
<</button>>
<</replace>>
<</button>>
<</choices>>
</div>
<<case "whitneymonique">>
<<center "whitney/monique01.jpg">>
<<think "mc">>Holy crap, when did those two get so close?<</think>>
<<choices "Continue watching?">>
<<link "Yes" peeping>>
<<set $tempvar = "whitneymonique01">>
<</link>>
<<if $replay == false>>
<br>
<<link "Sleep" sleep>>
<</link>>
<</if>>
<</choices>>
<<case "whitneymonique01">>
<<say "whitney">>Now listen here you dirty old slut, I'm sick of playing nice. You're my plaything now, understand?<</say>>
<<say "monique">>Old? What—<</say>>
<<say "whitney">>You shut your whore mouth!<</say>>
<<narrate>>$whitney.name shoves her strap on into $monique.name's mouth.<</narrate>>
<<center "whitney/monique02.jpg">>
<<say "whitney">>Since I saw you out at the pool, I knew you were a fucking slut and that I'd have to break you in.<</say>>
<<think "mc">>$whitney.name is a brat when she's not around me, so this attitude isn't unexpected, but wow, I had no idea $monique.name would be into it!<</think>>
<<narrate>>$whitney.name pushes $monique.name back on to the bed.<</narrate>>
<<say "whitney">>Look at how wet my dirty little pussy is. Tell me what you want.<</say>>
<<say "monique">>Fuck me, fuck me hard.<</say>>
<<say "whitney">>No, beg for it. Beg like you're my dirty little cum slave.<</say>>
<<say "monique">>Please, fuck me. Fuck me hard with your big strap on.<</say>>
<<narrate>>$whitney.name runs her finger down $monique.name's body, moving slower as she passes between her breasts, until she reaches her pussy.<</narrate>>
<<say "whitney">>You know what? No. You don't deserve it.<</say>>
<<say "monique">>But! $whitney.name, please, I'm begging you, don't leave me in this state. Please fuck me.<</say>>
<<say "whitney">>First, I'm gonna taste you, see if you actually deserve it.<</say>>
<<center "whitney/monique03.jpg">>
<<narrate>>$monique.name moans in pleasure as $whitney.name's tongue explores her vulva.<</narrate>>
<<say "monique">>Please. Fuck me, please mistress.<</say>>
<<say "whitney">>Oh, I'll give my dirty slut exactly what she deserves.<</say>>
<<narrate>>She draws herself back up and aligns her strap on with $monique.name's pussy before thrusting hard, giving her the entire length.<</narrate>>
<<button "Continue" peeping>>
<<set $tempvar = "whitneymonique02">>
<</button>>
<<case "whitneymonique02">>
<<vid "whitney/monique01.mp4">>
<<narrate>>She pounds with increasing rapidity as $monique.name's moans become ever louder.<</narrate>>
<<say "whitney">>Yeah, you like it when I fuck you?<</say>>
<<say "monique">>Aaaahhh, yees, please fuck me more!!<</say>>
<<say "whitney">>You absolute whore!<</say>>
<<say "monique">>Fuuuck, yes, so much... oh my god, fuck yes...<</say>>
<<narrate>>The girls collapse into a heap on top of each other as their bodies quiver and buckle under the intense pleasure.<</narrate>>
<<say "monique">>Fuck, that was hot. But next time you call me old, I'll be taking charge.<</say>>
<<narrate>>$whitney.name simply rolls her eyes.<</narrate>>
<<narrate>>You decide to make your exit before either notice you.<</narrate>>
<<button "Sleep" sleep>>
<<unlock 'whitney' 'monique'>>
<<unlock 'monique' 'whitney'>>
<<event "whitney" "monique">>
<<lust 'whitney' 3>>
<<lust 'monique' 2>>
<</button>>
<</switch>><<scene>>
<<set _return = "mng"+$location>>
<<set _hours = $nextshift - $hour>>
<<set _lg = $nextshift - $hour>>
<<set _lug = 0>>
<<set _corr = 0>>
<<set _who = State.variables[$active]>>
<<set _fg = 0>>
<<set _skill = $mc.skills[constructs[$location].skill]>>
<<set _sn = constructs[$location].skill>>
<<set _sg = 0.25 * _hours>>
<<notice>>WORK IN PROGRESS<</notice>>
<<cont "mngbrothel" "" 1>><<scene>>
<<narrate>>Nothing remarkable happened. You were bored out of your mind.<</narrate>>
<<notice>>There are currently no piggyback events available to you. The world will show a pig icon whenever such events are available.<</notice>>
<<button "Continue" yourroom>>
<<like $piggy 5>>
<<time 2>>
<<run delete $piggy>>
<</button>><<run console.log($planets[5])>>
<<run checkPlanets()>>
<<set _maxlevel = 10>>
<<if $tempvar2 == "cal">>
<<set _coords = planets[$calibrate].name>>
<<say $calibrate "planetnote">>The gateway has been calibrated to focus on the signal from _coords.<</say>>
<<set $tempvar2 = "">>
<</if>>
<<if $lacy.events.science == 5 && $techscomplete.calibrate != undefined>>
<<say lacy>>Good timing. I've just finished!<</say>>
<<say mc>>Finished what?<</say>>
<<say lacy>>Signal calibration. My estimations were accurate. By calibrating the Gateway to focus on a specific signal, it vastly improves the efficiency of your power control. I suspect you'll see roughly three times the gain, and I'll keep tinkering to see if I can't improve that throughput more.<</say>>
<<say mc>>Wow, you really are amazing!<</say>>
<<say lacy>>There are some restrictions, though. I won't bore you with the details, but you can only calibrate it once a day.<</say>>
<<say mc>>I don't think that will be a problem.<</say>>
<<notice>>You can calibrate the gateway once a day to focus on the signal from a single world. That world will progress significantly faster than other worlds.<</notice>>
<<event "lacy" "science" 6>>
<</if>>
<<set _n = false>>
<<if $planet != undefined>>
<<if $planet == "central">>
<<say $planet "planetnote">>You expand all your energy trying to form a connection with Central in a similar way you do with planets, but you feel nothing.<br>Attempting to connect to Central is only useful if you want to charge your libido.<</say>>
<<else>>
<<set _multi = 5>>
<<if $meditating != undefined && $shalina.events.energy != undefined>>
<<set _multi = 2.5>>
<</if>>
<<if $fyodr.events.anchor != undefined && $planets[$planet].anchor != undefined>>
<<set _multi /= 2>>
<</if>>
<<set _energy = Math.ceil(planets[$planet].energy*_multi)>>
<<set $energy -= _energy>>
<<set _require = planetRequirement($planet)>>
<<set _cal = 1>>
<<if $calibrate == $planet>>
<<set _cal = 3>>
<<if $planets[$planet].calibrated != undefined>>
<<set _cal *= 1.25>>
<</if>>
<<if $fyodr.events.anchor != undefined && $planets[$planet].anchor != undefined>>
<<set _cal *= 1.5>>
<</if>>
<</if>>
<<if $tempvar == "night">>
<<set _gain = Math.floor(($energy/_energy) * ($totalpower*_cal))>>
<<else>>
<<set _gain = Math.floor($totalpower*_cal)>>
<</if>>
<<set $planets[$planet].progress += _gain>>
<</if>>
<<if $planet != "central" && $planets[$planet].progress > _require>>
<<set _powgain = 0>>
<<set _megain = 0>>
<<for $planets[$planet].progress > _require && $planets[$planet].power < _maxlevel>>
<<set $planets[$planet].power++>>
<<set $planets[$planet].progress -= _require>>
<<set $maxenergy += 2>>
<<set _powgain++>>
<<set _megain += 2>>
<<set _require = planetRequirement($planet)>>
<</for>>
<<say $planet "planetnote">>You have gained _powgain power and _megain max energy.<</say>>
<<if $kenna.events.seductress == undefined>>
<<narrate>>Two hands suddenly cover your eyes.<</narrate>>
<<say "kenna">>Guess who!<</say>>
<<narrate>>She lowers her hands to your abs and hugs you, still from behind, her breasts squashing up against your back.<</narrate>>
<<think "mc">>She smells incredible... and her touch is...<</think>>
<<narrate>>You stop and try to clear your thoughts.<</narrate>>
<<think "mc">>I've only just got her back, let's not spoil things... I'm just feeling horny because of the power gain.<</think>>
<<say "kenna">>Why's my $kenna.you so quiet?<</say>>
<<say "mc">>Sorry, just... lost in the gravity of everything and gaining power makes me feel... let's just say odd... for a little while.<</say>>
<<narrate>>She hugs you more tightly and whispers in your ear.<</narrate>>
<<say "kenna" "" "(Whispering)" "whisper">>You know, I spent many lonely nights thinking about you.<</say>>
<<narrate>>She laughs, releases her grip and spins you around, holding your hands and looking you in the eye.<</narrate>>
<<say "mc">>What do—<</say>>
<<left2 "kenna/noback01.png">>
<<say "kenna">>My $kenna.you. The patron. I'd never have believed it before. To think that's how I'd find you again.<</say>>
<<say "mc">>It's been an absolute whirlwind since arriving here.<</say>>
<<say "kenna">>I'm always here for you. We can talk just like we used to. I'd like that, in fact. Any time you need your mature super-awesome and cute $kenna.them for ANYTHING, you come get me! I'll battle all of $founder.name's armies for you if I have to!<</say>>
<<say "mc">>She has an army?!<</say>>
<<say "kenna">>No idea. But it stands to reason, she probably isn't working alone.<</say>>
<<say "mc">>Yeah... I guess...<</say>>
<<say "kenna">>Anyway, $kenna.calls, you get big and strong for me, and let me know whenever you want to talk. I'm always here for you. But, can you do something for me? I really need to get out of mom's house. I love her to bits, but living with her is a nightmare!<</say>>
<<say "mc">>$armani.name can put you up in the hotel if you like.<</say>>
<<say "kenna">>Sounds like a plan. I can have a room right next to yours!<</say>>
<<say "mc">>Ha! Those are taken.<</say>>
<<narrate>>She pouts.<</narrate>>
<<say "kenna">>I'll work something out. Talk to you later.<</say>>
<<event "kenna" "seductress">>
<<set _n = true>>
<<taskdone "powerone">>
<<cont "planetgrowth" "" 1>>
<<elseif $lacy.events.automate == undefined && $planets[$planet].power >= 2>>
<<say "lacy">>$name, you look worn out.<</say>>
<<say "mc">>And then some. This is tiring work.<</say>>
<<say "lacy">>So you are connecting to a world multiple times to strengthen your connection?<</say>>
<<say "mc">>That's right.<</say>>
<<say "lacy">>Then do you need to do that here?<</say>>
<<say "mc">>I guess not really, but it's as good a place as any.<</say>>
<<say "lacy">>I was thinking, sleeping replenishes your energy, correct?<</say>>
<<say "mc">>Mostly, yes.<</say>>
<<say "lacy">>Then could you just expend all your remaining energy into this pursuit before you go to bed?<</say>>
<<say "mc">>Theoretically, but while it only takes a few seconds to create the connection, I need a little break between each one.<</say>>
<<say "lacy">>Why?<</say>>
<<say "mc">>I get extremely horny.<</say>>
<<say "lacy">>Like after a limit break?<</say>>
<<say "mc">>Not that bad, though maybe if I don't leave a big enough gap between them.<</say>>
<<say "lacy">>So, if you did them in quicker succession, you may become a sex beast?<</say>>
<<say "mc">>Interesting way to put it, but yes, I fear that may be true. Not as bad as the limit breaks, I don't think, but that's the feeling I get.<</say>>
<<say "lacy">>Then I fail to see the problem.<</say>>
<<say "mc">>Well, I don't want to go on a rampage.<</say>>
<<say "lacy">>You have a harem of women who would love for you to go on a rampage. Why not just invite a couple before bed?<</say>>
<<say "mc">>I... that's not such a bad idea. Though for worlds I don't have a strong connection to, I think it needs a little more concentration until I get used to the feeling.<</say>>
<<notice>>Getting a planet to bonus level 2 will allow you to expend more energy before bed to bump it's level further. However, you'll need multiple women with you to deal with the aftermath.<</notice>>
<<event "lacy" "automate">>
<<set _n = true>>
<<cont "planetgrowth" "" 1>>
<<elseif $tempvar == "night">>
<<set _n = true>>
<<set $energy = 0>>
<<narrate>>You feel your lust growing uncontrollably.<</narrate>>
<<think mc>>I hope they're ready for me...<</think>>
<center><<button "Continue" nightlewds>><<temp "">><</button>></center>
<<else>>
<<time 1>>
<</if>>
<<else>>
<<if $tempvar == "night">>
<<narrate>>You expanded as much energy as you could, but didn't manage to increase your power.<</narrate>>
<<if $completeTasks.includes('fyodrstretch') && $fyodr.events.anchor == undefined>>
<<timed 0.1s>>
<<toggleclass ".passage" blurify>>
<<audio "zoop" play>>
<<timed 0.5s>>
<<toggleclass ".passage" blurify>>
<</timed>>
<<say fyodr>>Hey buddy.<</say>>
<<say mc>>Fyodr?<</say>>
<<think mc>><i>Buddy</i>?<</think>>
<<say fyodr>>I think my reward for you discovering and building the Iterfinis was a little lacking.<</say>>
<<say mc>>Right...<</say>>
<<say fyodr>>And I noticed you were trying to improve your control over the signal to the relevant worlds. There's one key thing the Iterfinis does that you are not properly making use of.<</say>>
<<say mc>>What's that?<</say>>
<<say fyodr>>Worlds with Iterfinis are not only easier to connect to, they have a larger bandwidth. Right now, you're focusing on the repetitions, and not the quality of your connection. Think of it like an Internet connection, you're loading a basic webpage and hitting refresh multiple times. That webpage is probably very small and uses very little of your bandwidth. Instead, connect then focus on the Iterfinis, it will be the equivalent of downloading a large file very quickly.<</say>>
<<say mc>>I <i>think</i> I get the analogy.<</say>>
<<say fyodr>>If you do it right, any world with an Iterfinis, sorry, anchor point as you call them, will need less energy to achieve more.<</say>>
<<say mc>>Wow, that's great, thanks Fyodr.<</say>>
<<say fyodr>>No problem. I hope this is more beneficial to you than the meager reward I gave you previously. Anyway, I'll let you get back to it.<</say>>
<<narrate>>He zoops you home.<</narrate>>
<<event "fyodr" "anchor">>
<<notice>>Worlds with anchor points on them will now need half as much energy and grant 50% more progress.<</notice>>
<</timed>>
<</if>>
<<set _n = true>>
<<set $energy = 0>>
<<narrate>>You feel your lust growing uncontrollably.<</narrate>>
<<think mc>>I hope they're ready for me...<</think>>
<center><<button "Continue" nightlewds>><<temp "">><</button>></center>
<<else>>
<<narrate>>You made some progress, but didn't increase your power.<</narrate>>
<<if !$completeTasks.includes('fyodrstretch') && $tasks.fyodrstretch == undefined && $completeTasks.includes('counciltasks0') && $planets[$planet].anchor != undefined>>
<<set _coords = $planets[$planet].name>>
<<timed 0.1s>>
<<toggleclass ".passage" blurify>>
<<audio "zoop" play>>
<<timed 0.5s>>
<<toggleclass ".passage" blurify>>
<</timed>>
<<say fyodr>>Sorry to call you here, but I just noticed something fascinating.<</say>>
<<say mc>>Yeah, the zooping got old quick.<</say>>
<<say fyodr>>I imagine. So, I noticed you've built an Iterfinis. How did you come by this knowledge?<</say>>
<<say mc>>Uhh... what's an Iterfinis?<</say>>
<<say fyodr>>The structure you've built on the other side of the gateway on _coords that's helping focus your power.<</say>>
<<say mc>>oh, the anchor point? It's something a companion came up with.<</say>>
<<say fyodr>>You mean it was without the aid of anyone from the council... is she an equalizer?<</say>>
<<say mc>>No... just a traveler to my knowledge.<</say>>
<<say fyodr>>Amazing. Its function is slightly different too. Usually an Iterfinis improves your connection to a world, increasing your power and allowing you to focus better on the connection. Yours however, is also redirecting some travelers to your hub. It's like you've built an automated travel guide on the other side.<</say>>
<<say mc>>I take it that's not normal?<</say>>
<<say fyodr>>No. Not at all. There's very few patrons who can detect their connection to the worlds, never mind think to build something like this. Your companion is exceptional. I think I might like to meet them. Until then, I'd like to task you build five of these so that I may study further.<</say>>
<<say mc>>Five anchor points? Okay...<</say>>
<<say fyodr>>Great, I'll let you get back to it.<</say>>
<<narrate>>He zoops you home.<</narrate>>
<<task "fyodrstretch">>
<</timed>>
<<elseif $completeTasks.includes('salimpower2') && $shalina.events.energy == undefined>>
<<think "mc">>This drains my energy so quickly. I don't think it's wise to ask the council given they basically just tell me to work everything out myself, but maybe $shalina.name has some tips?<</think>>
<<task "meriyaenergy">>
<<elseif $meditating != undefined && $lacy.events.science == 3>>
<<think mc>>It's a lot easier to connect after meditating, but progress still feels slow on the more densely populated worlds. Given what $lacy.name discovered previously, I wonder if she has any ideas...<</think>>
<<event "lacy" "science" 4>>
<<elseif $meditating != undefined && ($lacy.events.science == undefined || $lacy.events.science < 3) && $mc.events.geraldescape != undefined>>
<<think mc>>It's a lot easier to connect to worlds now, but progress still feels slow on the more densely populated worlds. I really need to find a way to improve this. I wonder if $lacy.name could help...<<step "<br>Hint" `"Follow "+$lacy.name+"'s substory."`>><</think>>
<</if>>
<<time 1>>
<</if>>
<</if>>
<<if $planet != "central">>
<<if $planets[$planet].night == undefined && $planets[$planet].power >= 2>>
<<say $planet "planetnote">>You've become accustomed to the feel of this world. You can now use power control before bed to expend all remaining energy to further strengthen your connection.<</say>>
<<set $planets[$planet].night = true>>
<</if>>
<<if $planets[$planet].possess == undefined && $planets[$planet].power >= 3>>
<<say $planet "planetnote">>Your connection to the world has grown so much that you feel confident you could transfer your consciousness to people on the other side.<br>Possession events are generally substory related. <<if $planet == 2 || $planet == 6>>Check the possession option at Gateway B for more information.<<else>>Unfortunately, this planet does not currently have any associated content.<</if>><</say>>
<<set $planets[$planet].possess = true>>
<<set $canpossess = true>>
<</if>>
<<if $planets[$planet].auto == undefined && $planets[$planet].power >= 4>>
<<if $techscomplete.anchor == undefined>>
<<say $planet "planetnote">>Your passive connection to this world now feels stronger... yet something still feels lacking. Perhaps one of your companions can research this?<br>
<span style="color:white"><<step "Hint" `"Follow "+$lacy.name+"'s substory to unlock a structure you can place on each planet."`>></span><</say>>
<<elseif $planets[$planet].anchor == undefined>>
<<say $planet "planetnote">>Your passive connection to this world now feels much stronger. If you had a focus on the other side, you suspect you could slowly grow it over time with minimal effort.<br>Build an anchor point on this world to generate passive progress.<</say>>
<<else>>
<<say $planet "planetnote">>Your passive connection to this world now feels much stronger. The anchor point on this world focuses your connection and allows you to generate passive progress without any effort. Every hour you're awake, you will gain progress equal to 3% of your power.<</say>>
<<set $planets[$planet].auto = true>>
<</if>>
<</if>>
<<if $planets[$planet].calibrated == undefined && $planets[$planet].power >= 5 && $techscomplete.calibrate != undefined && $planets[$planet].anchor != undefined>>
<<say $planet "planetnote">>Calibration on this planet is now 25% more effective.<</say>>
<<set $planets[$planet].calibrated = true>>
<</if>>
<<if $planets[$planet].power >= 10>>
<<say $planet "planetnote">>Your connection to this world has grown as strong as it can be for now.<br>You gained an additional 10 max energy.<</say>>
<<set $maxenergy += 10>>
<</if>>
<</if>>
<<set delete $planet>>
<</if>>
<<if $hour >= 0 && $hour < 8 && $tempvar != "night">>
<<set _n = true>>
<center>
<<button "Head to Bed" bedroom>>
<</button>>
</center>
<</if>>
<<if _n != true>>
<<if $tempvar == "night">>
<<say "info" "Information">>Using power control before bed allows you to expend all your excess energy on a single planet. However, this will make you extremely horny, so you'll need the aid of your companions to get through this. You need to have already strengthened your connection twice on a planet to use this function.<</say>>
<center>
<<button "Cancel" bedroom>><<temp "">><</button>>
</center>
<<else>>
<<if $shalina.events.energy == undefined>>
<<say "info" "Information">>You can strengthen your passive connection to a world by spending an hour repeatedly connecting the gateway to that planet. This will consume energy for every connection. It becomes increasingly difficult to strengthen the same connection multiple times. Your current power determines how much progress you can make in an hour and which planets are available.<br><br>You only need to gain 1 power via this mechanic for the main story. It is otherwise entirely optional and primarily used for current endgame side-content.<</say>>
<</if>>
<</if>>
<center>
<div class="flex">
<<if $meditating == undefined && $shalina.events.energy != undefined && $tempvar != "night">>
<<link '<div class="girlChoice"><<center "other/meditate.gif">>Garden Meditation</div>' meditate>><<set $return = "planetgrowth">><</link>>
<</if>>
</div>
<<if $tempvar != "night">>
<<button "Return" gatewayb>><<temp "">><</button>>
<</if>>
</center>
<br>
<<choices "Select a location">>
<div class="locations flex">
<<if $tempvar == "night">>
<div class="girlChoice" data-passage="planetgrowth" data-setter="$planet = 'central';">
<h3 style="margin-bottom: 0;">Central</h3>0-0-0
<div style="position:relative">
<div role="progressbar" @style="'--value: '+_percent+'; background: url('+setup.img+'/planets/0.jpg) center;
background-size: 200px; background-repeat: no-repeat;'">
</div>
<span class="em" title="Progress">🛜 ??/??</span>
<span class="em" title="Potential Gain">📈 ??</span>
<span class="em" title="Current Power Bonus">💪 0</span>
</div>
</div>
<</if>>
<<for _k, _v range planets>>
<<if $planets[_k].unlocked == false>>
<<continue>>
<</if>>
<<capture _k, _v, _energy>>
<<set _multi = 5>>
<<if $meditating != undefined && $shalina.events.energy != undefined>>
<<set _multi = 2.5>>
<</if>>
<<if $fyodr.events.anchor != undefined && $planets[_k].anchor != undefined>>
<<set _multi /= 2>>
<</if>>
<<set _energy = Math.ceil(_v.energy*_multi)>>
<<if $totalpower < Math.floor(_energy/3)>><<continue>><</if>>
<<if $planets[_k].power == undefined || $planets[_k].progress == undefined>>
<<set $planets[_k].power = 0>>
<<set $planets[_k].progress = 0>>
<</if>>
<<if $tempvar == "night" && $planets[_k].power < 2>><<continue>><</if>>
<<set _require = planetRequirement(_k)>>
<<if $planets[_k].power >= _maxlevel>>
<<set _percent = 100>>
<<else>>
<<set _percent = Math.floor($planets[_k].progress/_require*100)>>
<</if>>
<<set _passage = "">>
<<if $energy >= _energy && $planets[_k].power < _maxlevel>>
<<set _passage = "planetgrowth">>
<</if>>
<<set _icons = "">>
<div class="girlChoice" @data-passage="_passage" data-setter="$planet = _k;">
<h3 style="margin-bottom: 0;">_v.name</h3>_v.coords
<div style="position:relative">
<div role="progressbar" @style="'--value: '+_percent+'; background: url('+setup.img+'/planets/'+_k+'.png) center;
background-size: 200px; background-repeat: no-repeat;'">
</div>
<div style="display:inline-block; position: absolute; left: 0; right: 0; text-align: center; top: calc(70% - 22px)">
<<for _p range _v.home>>
<<if !$girlsmet.includes(_p)>><<continue>><</if>>
<<set _pn = State.variables[_p].name>>
<img class="tinybadge" @src="setup.img+'/'+getFolder(_p)+'/badge.jpg'" @title="_pn+'\'s Home World'">
<</for>>
</div>
</div>
<<if $planets[_k].power >= _maxlevel>>
<b>MAX LEVEL</b><br><span class="em" title="Current Power Bonus">💪 $planets[_k].power</span>
<<set $planets[_k].calibrated = true>>
<<set $planets[_k].auto = true>>
<<set $planets[_k].night = true>>
<<set $planets[_k].possess = true>>
<<set $canpossess = true>>
<<else>>
<span class="em" title="Progress">🛜 $planets[_k].progress/_require</span>
<<if $tempvar != "night">>
<span @title=" _energy+' energy required'" class="em">⚡ _energy</span>
<<else>>
<<set _cal = 1>>
<<if $calibrate == _k>>
<<set _cal = 3>>
<<if $planets[_k].calibrated != undefined>>
<<set _cal *= 1.25>>
<</if>>
<<if $fyodr.events.anchor != undefined && $planets[_k].anchor != undefined>>
<<set _cal *= 1.5>>
<</if>>
<</if>>
<<set _gain = Math.floor(($energy/_energy) * ($totalpower*_cal))>>
<span class="em" title="Potential Gain">📈 _gain</span>
<</if>>
<span class="em" title="Current Power Bonus">💪 $planets[_k].power</span>
<<if $techscomplete.calibrate != undefined && $calibrate == undefined>>
<br><<button "Calibrate" planetgrowth>>
<<set $calibrate = _k>>
<<set $tempvar2 = "cal">>
<</button>>
<</if>>
<<if $planets[_k].anchor == undefined && $techscomplete.anchor != undefined>>
<<set _icons += '<img src="img/icons/anchor.svg" class="movieicon em" title="This world has no anchor point.">'>>
<</if>>
<</if>>
<div class="icons">
_icons
</div>
<<if $energy < _energy && $planets[_k].power < _maxlevel>><b>INSUFFICIENT ENERGY</b><<else>> <</if>>
<div clas="prog"></div>
</div>
<</capture>>
<</for>>
</div>
<</choices>>
<style>
@property --percentage {
syntax: '<number>';
inherits: true;
initial-value: 0;
}
[role="progressbar"] {
--percentage: var(--value);
--size: 200px;
width: var(--size);
aspect-ratio: 1;
border-radius: 50%;
position: relative;
overflow: hidden;
display: grid;
place-items: center;
}
[role="progressbar"]::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: conic-gradient(#35a calc(var(--percentage) * 1%), #3540 0);
mask: radial-gradient(white 55%, transparent 0);
mask-mode: alpha;
-webkit-mask: radial-gradient(#0000 55%, #000 0);
-webkit-mask-mode: alpha;
}
[role="progressbar"]::after {
counter-reset: percentage var(--value);
content: counter(percentage) '%';
font-family: Helvetica, Arial, sans-serif;
font-size: calc(var(--size) / 5);
color: #FFF;
text-shadow: 0.08em 0 black, 0 0.08em black, -0.08em 0 black, 0 -0.08em black, -0.08em -0.08em black, -0.08em 0.08em black, 0.08em -0.08em black, 0.08em 0.08em black;
}
</style>
<</if>><<set delete $planet>>
<center>
<div class="notice">Dev Comment: I haven't added enough lewds here yet... so there's a skip button. Later, you'll be able to skip scenes you've already watched, but still need to select a scene.</div>
<div class="flex">
<<if $girlsavailable.includes('kayla') && $girlsavailable.includes('moriah') && $moriah.young != true && ($kayla.bimbo == true || $kayla.bimbo == 'seen')>>
<<link '<div class="girlChoice">
<<center "moriah/movies/pcns.jpg" >>
$moriah.name &<br> Bimbo $kayla.name
</div>' moriahsex>>
<<temp "bimbokayla">>
<</link>>
<<elseif $kayla.bimbo != true && $kayla.bimbo != 'seen'>>
<div class="girlChoice locked">
<<center "moriah/movies/pcns.jpg">>
Unavailable Content <<step "<br>Why" `"Your previous choices have locked a number of "+$kayla.name+" scenes. Future updates will add alternative ways to get this content."`>>
</div>
<<elseif $moriah.young == true>>
<div class="girlChoice locked">
<<center "moriah/movies/pcns.jpg">>
$moriah.name needs to<br>be in her original form.
</div>
<<elseif !$girlsavailable.includes('kayla')>>
<div class="girlChoice locked">
<<center "moriah/movies/pcns.jpg">>
$kayla.name is unavailable.
</div>
<<elseif !$girlsavailable.includes('moriah')>>
<div class="girlChoice locked">
<<center "moriah/movies/pcns.jpg">>
$moriah.name is unavailable.
</div>
<</if>>
<<if $monique.events.truthwait != 3>>
<div class="girlChoice locked">
<<center "monique/movies/pcjl.jpg" >>
Wrong Relationship <<step "<br>Why" `"You need to have a sexual relationship with "+$monique.name+"."`>>
</div>
<<elseif $girlsavailable.includes('monique') && $girlsavailable.includes('lacy') && $monique.young == true && ($lacy.mature == false || $lacy.mature == 'seen' || $lacy.mature == undefined)>>
<<link '<div class="girlChoice">
<<center "monique/movies/pcjl.jpg" >>
$lacy.name &<br> Young $monique.name
</div>' moniquesex>>
<<temp "mandl">>
<</link>>
<<elseif $monique.young != true && $monique.young != 'seen'>>
<div class="girlChoice locked">
<<center "monique/movies/pcjl.jpg" >>
Unavailable Content <<step "<br>Why" `"You need to unlock "+$monique.name+"'s transformation first. Try talking to all the New Edeners you live with."`>>
</div>
<<elseif $monique.young != true>>
<div class="girlChoice locked">
<<center "monique/movies/pcjl.jpg" >>
$monique.name needs to<br>be in her younger form.
</div>
<<elseif $lacy.mature == true>>
<div class="girlChoice locked">
<<center "monique/movies/pcjl.jpg" >>
$lacy.name needs to<br>be in her original form.
</div>
<<elseif !$girlsavailable.includes('lacy')>>
<div class="girlChoice locked">
<<center "monique/movies/pcjl.jpg" >>
$lacy.name is unavailable.
</div>
<<elseif !$girlsavailable.includes('monique')>>
<div class="girlChoice locked">
<<center "monique/movies/pcjl.jpg" >>
$monique.name is unavailable.
</div>
<</if>>
<<if checkUnlocks('movie', 'lmy', 'lexi') == true>>
<<if $monique.young == true && $lexi.young != true && $girlsavailable.includes('monique') && $girlsavailable.includes('lexi')>>
<<link '<div class="girlChoice">
<<center "monique/movies/lmy.jpg" >>
$lexi.name &<br> Young $monique.name
</div>' moniquelexi02>>
<<temp "pc">>
<</link>>
<<elseif $monique.young != true>>
<div class="girlChoice locked">
<<center "monique/movies/lmy.jpg" >>
$monique.name needs to<br>be in her younger form.
</div>
<<elseif $lexi.young == true>>
<div class="girlChoice locked">
<<center "monique/movies/lmy.jpg" >>
$lexi.name needs to<br>be in her original form.
</div>
<<elseif !$girlsavailable.includes('monique')>>
<div class="girlChoice locked">
<<center "monique/movies/lmy.jpg" >>
$monique.name is unavailable.
</div>
<<elseif !$girlsavailable.includes('lexi')>>
<div class="girlChoice locked">
<<center "monique/movies/lmy.jpg" >>
$lexi.name is unavailable.
</div>
<</if>>
<</if>>
<<if checkUnlocks('movie', 'lexikylie01', 'lexi') == true>>
<<if $kylie.mature != true && $lexi.young != true && $girlsavailable.includes('kylie') && $girlsavailable.includes('lexi')>>
<<link '<div class="girlChoice">
<<center "lexi/movies/lexikylie02.jpg">>
$lexi.name &<br> $kylie.name
</div>' lexikylie201>>
<</link>>
<<elseif $kylie.mature == true>>
<div class="girlChoice locked">
<<center "lexi/movies/lexikylie02.jpg" >>
$kylie.name needs to<br>be in her original form.
</div>
<<elseif $lexi.young == true>>
<div class="girlChoice locked">
<<center "lexi/movies/lexikylie02.jpg" >>
$lexi.name needs to<br>be in her original form.
</div>
<<elseif !$girlsavailable.includes('kylie')>>
<div class="girlChoice locked">
<<center "lexi/movies/lexikylie02.jpg" >>
$kylie.name is unavailable.
</div>
<<elseif !$girlsavailable.includes('lexi')>>
<div class="girlChoice locked">
<<center "monique/movies/lexikylie02.jpg" >>
$lexi.name is unavailable.
</div>
<</if>>
<</if>>
</div>
<<button "Skip Lewd" sleep>><</button>>
</center><<if debug == true>>
<fieldset>
<legend>$maddy.name</legend>
<<button "World" possess>>
<<set $planets[2].possess = true>>
<</button>>
<<button "Remove Dad Chat" possess>>
<<set delete $maddy.events.daddy>>
<</button>>
<<button "Dad Chat Agree" possess>>
<<set $maddy.events.daddy = 1>>
<</button>>
<<button "Dad Chat Refuse" possess>>
<<set $maddy.events.daddy = 0>>
<</button>>
</fieldset>
<</if>>
<<if $energy < 80>>
<<notice>>You do not have the energy for this right now.<</notice>>
<<cont "gatewayb">>
<<else>>
<<set _i = 3>>
<<choices>>
<div class="flex">
<<if $planets[2].possess == undefined>>
<div class="girlChoice locked">
<<center "planets/2.png">>
??? <<step "" `"Improve your connection strength to "+$planets[2].name+"."`>>
</div>
<<elseif $maddy.events.daddy == undefined>>
<div class="girlChoice locked">
<<center "maddy/maddycrop.jpg">>
??? <<step "" `"Progress "+$maddy.name+"'s substory."`>>
</div>
<<elseif $maddy.events.daddy == 0>>
<div class="girlChoice locked">
<<center "maddy/maddycrop.jpg">>
$maddy.name's Dad <<step "" "Collect your thoughts at night to change your mind.">>
</div>
<<elseif checkUnlocks('movie', 'cookie', 'maddy') == false>>
<<if $girlsavailable.includes('maddy')>>
<div class="girlChoice locked">
<<center "maddy/maddycrop.jpg">>
$maddy.name needs to be off world.
</div>
<<else>>
<<link '<div class="girlChoice">
<<center "maddy/maddycrop.jpg">>
$maddy.name\'s Dad<br>
</div>' maddysex>>
<<set $energy -= 80>>
<<temp "cookie">>
<</link>>
<</if>>
<<else>>
<<set _i-->>
<</if>>
<<if $planets[6].possess == undefined>>
<div class="girlChoice locked">
<<center "planets/6.png">>
??? <<step "" `"Improve your connection strength to "+$planets[6].name+"."`>>
</div>
<<elseif !$girlsmet.includes('melody')>>
<div class="girlChoice locked">
<<center "offworld/melody/melodycrop.jpg">>
??? <<step "" "Do more piggyback events on "+$planets[6].name+".">>
</div>
<<elseif !$girlsmet.includes('hm')>>
<div class="girlChoice locked">
<<center "offworld/melody/melodycrop.jpg">>
??? <<step "" `"Do more influence events on "+$planets[6].name+"."`>>
</div>
<<elseif !checkUnlocks('movie', 'both', 'hm')>>
<div class="girlChoice locked">
<<center "offworld/melody/melodycrop.jpg">>
??? <<step "" "Progress "+$melody.name+"'s substory.">>
</div>
<<elseif !checkUnlocks('movie', 'dean', 'melody')>>
<<if $girlsavailable.includes('melody') && $girlsavailable.includes('hm')>>
<div class="girlChoice locked">
<<center "offworld/melody/melodycrop.jpg">>
$melody.name & $hm.name need to be off world.
</div>
<<elseif $girlsavailable.includes('melody')>>
<div class="girlChoice locked">
<<center "offworld/melody/melodycrop.jpg">>
$melody.name needs to be off world.
</div>
<<elseif $girlsavailable.includes('hm')>>
<div class="girlChoice locked">
<<center "offworld/melody/melodycrop.jpg">>
$hm.name needs to be off world.
</div>
<<else>>
<<link '<div class="girlChoice">
<<center "offworld/melody/melodycrop.jpg">>
Dean
</div>' othersex>>
<<set $energy -= 80>>
<<temp "dean">>
<</link>>
<</if>>
<<else>>
<<set _i-->>
<</if>>
<<if $festival == undefined || $festival.complete != true>>
<div class="girlChoice locked">
<<center "planets/7.png">>
Progress the story.
</div>
<<elseif $planets[7].unlocked != true>>
<div class="girlChoice locked">
<<center "planets/7.png">>
??? <<step "" `"Discover this world by asking "+$cassie.name+" or "+$armani.name+" about their home world."`>>
</div>
<<elseif $planets[7].possess == undefined>>
<div class="girlChoice locked">
<<center "planets/7.png">>
??? <<step "" `"Improve your connection strength to "+$planets[7].name+"."`>>
</div>
<<elseif !$girlsmet.includes('dee')>>
<div class="girlChoice locked">
<<center "offworld/dee/deecrop.jpg">>
??? <<step "" `"Do more influence events on "+$planets[7].name+"."`>>
</div>
<<elseif !$planets[7].influence.includes('peluwar1') && !$planets[7].eventsdone.includes('peluwar1')>>
<div class="girlChoice locked">
<<center "locations/lib.jpeg">>
??? <<step "" `"Have "+$cassie.name+" study in the library."`>>
</div>
<<elseif !$girlsmet.includes('tk')>>
<div class="girlChoice locked">
<<center "offworld/tk/tkcrop.jpg">>
??? <<step "" `"Do more influence events on "+$planets[7].name+"."`>>
</div>
<<elseif !checkUnlocks('movie', 'night01', 'cassie')>>
<div class="girlChoice locked">
<<center "offworld/cassie/cassiecrop.jpg">>
??? <<step "" "Progress "+$cassie.name+"'s substory.">>
</div>
<<elseif !$planets[7].possession.includes('peluthree01') && !checkUnlocks('movie', 'p1', 'dee')>>
<div class="girlChoice locked">
<<center "planets/7.png">>
??? <<step "" `"Do more influence events on "+$planets[7].name+"."`>>
</div>
<<elseif !checkUnlocks('movie', 'p1', 'dee')>>
<<link '<div class="girlChoice">
<<center "offworld/dee/deecrop.jpg">>
Pelu Man
</div>' peluthree01>>
<<set $energy -= 80>>
<</link>>
<<else>>
<<set _i-->>
<</if>>
</div>
<<if _i == 0>>
<<notice>>You've experienced all current possession events in this version of the game.<</notice>>
<</if>>
<<link "Never mind" gatewayb>><</link>>
<</choices>>
<</if>><<say "info" "Information">>Off world workers can commute to your hub and work the facilities.<br>Some workers require certain criteria before they'll join you.<</say>>
<<think "mc">>Male candidates? Let's just move those to one side.<</think>>
<<set _n = 0>>
<div class="flex">
<<if !$workers.includes('kristen')>>
<<set _n++>>
<<if ($buildings.bakery != undefined || $buildings.spa != undefined)>>
<div @class="_g+' pointer girlChoice'" title="" girl="kristen" data-passage="recruitment" data-setter="$tempvar to 'kristen'"><img @src="setup.img+'offworld/kristen/kristencrop.jpg'" style="width:200px"><br>
<<textbox "$kristen.name" $kristen.name>><br><br>
<<for _t range $kristen.traits>>
<<if _t == "off world worker">><<continue>><</if>>
<span class="trait" @title="eval(traits[_t].info)">_t</span>
<</for>>
</div>
<<else>>
<<set _ex = "">>
<<if $girlsmet.includes('monique')>><<set _ex += $monique.name+"<br>">><</if>>
<<if $girlsmet.includes('whitney')>><<set _ex += $whitney.name+"<br>">><</if>>
<<if $girlsmet.includes('maddy')>><<set _ex += $maddy.name+"<br>">><</if>>
<<if $girlsmet.includes('kleio')>><<set _ex += $kleio.name+"<br>">><</if>>
<div @class="_g+' girlChoice locked'" title="" girl="kristen"><img class="blur" @src="setup.img+'offworld/kristen/kristencrop.jpg'" style="width:200px"><br>
<<step "Requirements not met." `"Unlocked in any of the following substories:<br>
"+$kayla.name+"<br>"+_ex`>>
</div>
<</if>>
<</if>>
<<if !$workers.includes('jasmine')>>
<<set _n++>>
<<if $planets[2] != undefined || $planets[2].unlocked != false>>
<div @class="_g+' pointer girlChoice'" title="" girl="jasmine" data-passage="recruitment" data-setter="$tempvar to 'jasmine'"><img @src="setup.img+'offworld/jasmine/jasminecrop.jpg'" style="width:200px"><br>
<<textbox "$jasmine.name" $jasmine.name>><br><br>
<<for _t range $jasmine.traits>>
<<if _t == "off world worker">><<continue>><</if>>
<span class="trait" @title="eval(traits[_t].info)">_t</span>
<</for>>
</div>
<<else>>
<div @class="_g+' girlChoice locked'" title="" girl="jasmine"><img @src="setup.img+'offworld/jasmine/jasminecrop.jpg'" style="width:200px"><br>
<<step "Requirements not met." "Follow the story to discover her home world.">>
</div>
<</if>>
<</if>>
<<if !$workers.includes('rei')>>
<<set _n++>>
<<if $buildings.restaurant != undefined && $attractiveness >= 6>>
<div @class="_g+' pointer girlChoice'" title="" girl="rei" data-passage="recruitment" data-setter="$tempvar to 'rei'"><img @src="setup.img+'offworld/rei/reicrop.jpg'" style="width:200px"><br>
<<textbox "$rei.name" $rei.name>><br><br>
<<for _t range $rei.traits>>
<<if _t == "off world worker">><<continue>><</if>>
<span class="trait" @title="eval(traits[_t].info)">_t</span>
<</for>>
</div>
<<else>>
<div @class="_g+' girlChoice locked'" title="" girl="rei"><img @src="setup.img+'offworld/rei/reicrop.jpg'" style="width:200px"><br>
<<if _t == "off world worker">><<continue>><</if>>
<<if $planets[3] == undefined || $planets[3].unlocked == false>>
<<step "Requirements not met." "Follow the story to discover her home world and reveal more hints.">>
<<elseif !$girlsmet.includes('kleio')>>
<<step "Requirements not met." "Continue the story to reveal more hints.">>
<<else>>
<<step "Requirements not met." `"Follow "+$kleio.name+"'s substory and have an attractiveness of 6."`>>
<</if>>
</div>
<</if>>
<</if>>
<<if !$workers.includes('christy')>>
<<set _n++>>
<<if $planets[3] != undefined || $planets[3].unlocked != false>>
<div @class="_g+' pointer girlChoice'" title="" girl="christy" data-passage="recruitment" data-setter="$tempvar to 'christy'"><img @src="setup.img+'offworld/christy/christycrop.jpg'" style="width:200px"><br>
<<textbox "$christy.name" $christy.name>><br><br>
<<for _t range $christy.traits>>
<<if _t == "off world worker">><<continue>><</if>>
<span class="trait" @title="eval(traits[_t].info)">_t</span>
<</for>>
</div>
<<else>>
<div @class="_g+' girlChoice locked'" title="" girl="christy"><img @src="setup.img+'offworld/christy/christycrop.jpg'" style="width:200px"><br>
<<step "Requirements not met." "Follow the story to discover her home world.">>
</div>
<</if>>
<</if>>
<<if !$workers.includes('helena')>>
<<set _n++>>
<<if $kylie.events.mom != undefined>>
<div @class="_g+' pointer girlChoice'" title="" girl="helena" data-passage="recruitment" data-setter="$tempvar to 'helena'"><img @src="setup.img+'offworld/helena/helenacrop.jpg'" style="width:200px"><br>
<<textbox "$helena.name" $helena.name>><br><br>
<<for _t range $helena.traits>>
<<if _t == "off world worker">><<continue>><</if>>
<span class="trait" @title="eval(traits[_t].info)">_t</span>
<</for>>
</div>
<<else>>
<div @class="_g+' girlChoice locked'" title="" girl="helena"><img @src="setup.img+'offworld/helena/helenacrop.jpg'" style="width:200px"><br>
<<if !$girlsmet.includes('kylie')>>
<<step "Requirements not met." "Continue the story to reveal more hints.">>
<<else>>
<<step "Requirements not met." `"Once "+$kylie.name+" is settled in, she'll text you a day or two after."`>>
<</if>>
</div>
<</if>>
<</if>>
<<if $completeTasks.includes('organisation')>>
<<if !$workers.includes('mj')>>
<<set _n++>>
<<if $attractiveness >= 8>>
<div @class="_g+' pointer girlChoice'" title="" girl="mj" data-passage="recruitment" data-setter="$tempvar to 'mj'"><img @src="setup.img+'offworld/mj/mjcrop.jpg'" style="width:200px"><br>
<<textbox "$mj.name" $mj.name>><br><br>
<<for _t range $mj.traits>>
<<if _t == "off world worker">><<continue>><</if>>
<span class="trait" @title="eval(traits[_t].info)">_t</span>
<</for>>
</div>
<<else>>
<div @class="_g+' girlChoice locked'" title="" girl="mj"><img @src="setup.img+'offworld/mj/mjcrop.jpg'" style="width:200px"><br>
<<step "Requirements not met." `"Needs 8 attractiveness."`>>
</div>
<</if>>
<</if>>
<<if !$workers.includes('skin')>>
<<set _n++>>
<<if $attractiveness >= 12>>
<div @class="_g+' pointer girlChoice'" title="" girl="skin" data-passage="recruitment" data-setter="$tempvar to 'skin'"><img @src="setup.img+'offworld/skin/skincrop.jpg'" style="width:200px"><br>
<<textbox "$skin.name" $skin.name>><br><br>
<<for _t range $skin.traits>>
<<if _t == "off world worker">><<continue>><</if>>
<span class="trait" @title="eval(traits[_t].info)">_t</span>
<</for>>
</div>
<<else>>
<div @class="_g+' girlChoice locked'" title="" girl="skin"><img @src="setup.img+'offworld/skin/skincrop.jpg'" style="width:200px"><br>
<<step "Requirements not met." `"Needs 12 attractiveness."`>>
</div>
<</if>>
<</if>>
<<if !$workers.includes('fox')>>
<<set _n++>>
<<if $attractiveness >= 10>>
<div @class="_g+' pointer girlChoice'" title="" girl="fox" data-passage="recruitment" data-setter="$tempvar to 'fox'"><img @src="setup.img+'offworld/fox/foxcrop.jpg'" style="width:200px"><br>
<<textbox "$fox.name" $fox.name>><br><br>
<<for _t range $fox.traits>>
<<if _t == "off world worker">><<continue>><</if>>
<span class="trait" @title="eval(traits[_t].info)">_t</span>
<</for>>
</div>
<<else>>
<div @class="_g+' girlChoice locked'" title="" girl="fox"><img @src="setup.img+'offworld/fox/foxcrop.jpg'" style="width:200px"><br>
<<step "Requirements not met." `"Needs 10 attractiveness."`>>
</div>
<</if>>
<</if>>
<</if>>
</div>
<<if _n ==0>>
<<think "mc">>Heh, looks there aren't any new candidates available at the moment.<</think>>
<</if>>
<<link "Return" housestuff>><</link>>
/*
1 - Teen - Kristen Scott
2 - Black - Jasmine Webb
3 - Asian - Rei Kitajima
4 - Alt - Christy Mack
5 - MILF - Helena Price
1 - Teen - MJ Fresh
2 - Black - Ashlyn Peaks
3 - Asian -
4 - Alt -
5 - MILF -
Atlantis Deep
*/
<<script>>
setup.scriptpromise.then(function () {
$('.trait').tooltip({
position: {
my: "center bottom-5",
at: "center top-5"
},
track: true
});
$('.macro-textbox').click(function(e) {
e.stopPropagation();
})
});
<</script>>
<div class="notice">Off world workers are, with little exception, characters that have no meaningful content.<br>This is mostly to reduce scope creep while still providing a good variety of workers for the rota.<br>In much later versions of the game they will be given lewd content but little to no substory-type content.<br>They may however appear in the substories of other characters.</div><<switch $tempvar>>
<<case "kristen">>
<<block "offworld/kristen/meet01.jpg">>
<<say "kristen">>This is such a great opportunity, I'd love to work on a hub. I didn't even know that was a thing before!<</say>>
<<narrate>>You review her CV. She has a skill level of 10 in both baking and cooking.<</narrate>>
<<narrate>>Her traits mean she gains extra income when working in the bakery or spa.<</narrate>>
<<narrate>>She will not do construction or farming.<</narrate>>
<<narrate>>She has not requested a signing bonus.<</narrate>>
<<say "kristen">>I know I've not got a lot of experience, but I'm a hard-worker and would really love to work here. As my boss I'll ensure your every need is attended to.<</say>>
<<say "mc">>My <i>every</i> need?<</say>>
<<say "kristen">>Yes, I want to be the best worker you have.<</say>>
<<think "mc">>Oh, I have some very specific needs!<</think>>
<<choices>>
<<link "Hire $kristen.name" recruit>>
<<time 1>>
<<meet "kristen">>
<<worker "kristen">>
<<available "kristen">>
<</link>><br>
<<link "Later" recruit>>
<<time 1>>
<</link>><br>
<</choices>>
<</block>>
<<case "jasmine">>
<<block "offworld/jasmine/meet01.jpg">>
<<say "jasmine">>You'd be a fool not to employ me; I'll definitely make it worth your while.<</say>>
<<narrate>>You review her CV. She has a skill level of 25 in construction and 10 in farming.<</narrate>>
<<narrate>>Her traits mean she gains fatigue slower and completes construction projects 15% faster.<</narrate>>
<<narrate>>She will only work construction, farming or in the waiting area.<</narrate>>
<<narrate>>She has requested a signing bonus the equivalent of 5 resources.<</narrate>>
<<say "jasmine">>I work hard, and if you let me, I'll play hard.<</say>>
<<think "mc">>Oh, she knows exactly what I want!<</think>>
<<choices>>
<<if $resources < 5>>
Not enough resources.<br>
<<else>>
<<link "Hire $jasmine.name" recruit>>
<<time 1>>
<<meet "jasmine">>
<<worker "jasmine">>
<<available "jasmine">>
<<resources -5>>
<</link>><br>
<</if>>
<<link "Later" recruit>>
<<time 1>>
<</link>><br>
<</choices>>
<</block>>
<<case "rei">>
<<block "offworld/rei/meet01.jpg">>
<<say "rei">>I am an amazing chef and my dream is to use all sorts of ingredients found from all over the different worlds. This job seems perfect for that!<</say>>
<<narrate>>You review her CV. She has a skill level of 50 in cooking, 25 in baking and 10 in reception.<</narrate>>
<<narrate>>Her traits mean she will generate increased income in the restaurant and bakery. She also has a small chance that she won't gain fatigue.<</narrate>>
<<narrate>>She will only work at the restaurant, bakery, bar, or in the waiting area.<</narrate>>
<<narrate>>She has requested a signing bonus the equivalent of 25 resources.<</narrate>>
<<say "rei">>I just want to cook, I'm great at handling meat.<</say>>
<<think "mc">>Just wait until you've seen my meat!<</think>>
<<choices>>
<<if $resources < 25>>
Not enough resources.<br>
<<else>>
<<link "Hire $rei.name" recruit>>
<<time 1>>
<<meet "rei">>
<<worker "rei">>
<<available "rei">>
<<resources -25>>
<</link>><br>
<</if>>
<<link "Later" recruit>>
<<time 1>>
<</link>><br>
<</choices>>
<</block>>
<<case "christy">>
<<block "offworld/christy/meet01.jpg">>
<<say "christy">>A friend said you were hiring, and working on a hub seems pretty awesome.<</say>>
<<narrate>>You review her CV. She has a skill level of 10 in most everything.<</narrate>>
<<narrate>>Her traits mean she will learn skills a little faster but get bored and achieve nothing if she repeats the same task two shifts in a row. She also has a small chance not to gain fatigue after a shift.<</narrate>>
<<narrate>>She will work anywhere.<</narrate>>
<<narrate>>She has requested a signing bonus the equivalent of 10 resources.<</narrate>>
<<say "christy">>I like to try lots of different things. I'm a jack of all trades.<</say>>
<<think "mc">>There's definitely something I'd like you you to try!<</think>>
<<choices>>
<<if $resources < 10>>
Not enough resources.<br>
<<else>>
<<link "Hire $christy.name" recruit>>
<<time 1>>
<<meet "christy">>
<<worker "christy">>
<<available "christy">>
<<resources -10>>
<</link>><br>
<</if>>
<<link "Later" recruit>>
<<time 1>>
<</link>><br>
<</choices>>
<</block>>
<<case "helena">>
<<block "offworld/helena/meet01.jpg">>
<<say "helena">>My daughter mentioned you'd helped her. I've been unemployed for a while, but I'd love to help you as much as you helped her if I'm able.<</say>>
<<narrate>>You review her CV. She has a skill level of 50 in research.<</narrate>>
<<narrate>>Her traits mean she will advance research projects much faster.<</narrate>>
<<narrate>>She will not work construction, on the farm, or in the restaurant.<</narrate>>
<<narrate>>She has not requested a signing bonus.<</narrate>>
<<say "helena">>For helping $kylie.name, I'd really like to show my appreciate to you.<</say>>
<<think "mc">>Oh, I know exactly how you can show your appreciation!<</think>>
<<choices>>
<<link "Hire $helena.name" recruit>>
<<time 1>>
<<meet "helena">>
<<worker "helena">>
<<available "helena">>
<</link>><br>
<<link "Later" recruit>>
<<time 1>>
<</link>><br>
<</choices>>
<</block>>
<<case "mj">>
<<block "offworld/mj/meet01.jpg">>
<<say "mj">>I've passed through this place a few times. It's so great, sometimes I just come here to hang out then head home without actually traveling anywhere. When I saw you were hiring off world, I just had to apply!<</say>>
<<narrate>>You review her CV. She has a skill level of 20 in mixology, reception & baking.<</narrate>>
<<narrate>>Her traits mean she will reduce upkeep and gain fatigue at a reduced rate.<</narrate>>
<<narrate>>She will not work construction, on the farm, in the restaurant, or at the monitoring station.<</narrate>>
<<narrate>>She has requested a signing bonus the equivalent of 20 resources.<</narrate>>
<<say "mj">>You know what? Forget the signing bonus, I just really want to work under you.<</say>>
<<think "mc">>Oh, you'll definitely be under me soon!<</think>>
<<choices>>
<<link "Hire $mj.name" recruit>>
<<time 1>>
<<meet "mj">>
<<worker "mj">>
<<available "mj">>
<</link>><br>
<<link "Later" recruit>>
<<time 1>>
<</link>><br>
<</choices>>
<</block>>
<<case "skin">>
<<block "offworld/skin/meet01.jpg">>
<<say "skin">>I like the vibe of this place; I'd love to work here!<</say>>
<<narrate>>You review her CV. She has a skill level of 10 in everything.<</narrate>>
<<narrate>>Her traits mean she will gain skills and when working with others she'll outperform them but gain more fatigue.<</narrate>>
<<narrate>>She will work anywhere.<</narrate>>
<<narrate>>She has requested a signing bonus the equivalent of 20 resources.<</narrate>>
<<say "skin">>I like to dabble in all sorts of different things. I'll try anything!<</say>>
<<think "mc">>Oh, we'll be trying lots of things together.<</think>>
<<choices>>
<<if $resources < 20>>
Not enough resources.<br>
<<else>>
<<link "Hire $skin.name" recruit>>
<<time 1>>
<<resources -20>>
<<meet "skin">>
<<worker "skin">>
<<available "skin">>
<</link>><br>
<</if>>
<<link "Later" recruit>>
<<time 1>>
<</link>><br>
<</choices>>
<</block>>
<<case "fox">>
<<block "offworld/fox/meet01.jpg">>
<<say "fox">>$val.name told me about this place, and when I saw you were hiring, I thought... why not?<</say>>
<<narrate>>You review her CV. She has a skill level of 20 in farming and cooking.<</narrate>>
<<narrate>>Her traits mean others she works with will be more effective. She also has a small chance that she won't gain fatigue.<</narrate>>
<<narrate>>She won't work construction or in the monitoring station.<</narrate>>
<<narrate>>She has requested a signing bonus the equivalent of 15 resources.<</narrate>>
<<say "fox">>I'd love the opportunity to prove myself to you.<</say>>
<<think "mc">>Oh, I know <b>exactly</b> how you can do that!<</think>>
<<choices>>
<<if $resources < 15>>
Not enough resources.<br>
<<else>>
<<link "Hire $fox.name" recruit>>
<<time 1>>
<<resources -15>>
<<meet "fox">>
<<worker "fox">>
<<available "fox">>
<</link>><br>
<</if>>
<<link "Later" recruit>>
<<time 1>>
<</link>><br>
<</choices>>
<</block>>
<</switch>><table>
<tr>
<th>08:00-09:00</th>
<td></td>
</tr>
<tr>
<th>09:00-10:00</th>
<td></td>
</tr>
<tr>
<th>10:00-11:00</th>
<td></td>
</tr>
<tr>
<th>11:00-12:00</th>
<td></td>
</tr>
<tr>
<th>12:00-13:00</th>
<td></td>
</tr>
<tr>
<th>13:00-14:00</th>
<td></td>
</tr>
<tr>
<th>14:00-15:00</th>
<td></td>
</tr>
<tr>
<th>15:00-16:00</th>
<td></td>
</tr>
<tr>
<th>16:00-17:00</th>
<td></td>
</tr>
<tr>
<th>17:00-18:00</th>
<td></td>
</tr>
<tr>
<th>18:00-19:00</th>
<td></td>
</tr>
<tr>
<th>19:00-20:00</th>
<td></td>
</tr>
<tr>
<th>20:00-21:00</th>
<td></td>
</tr>
<tr>
<th>21:00-22:00</th>
<td></td>
</tr>
<tr>
<th>22:00-23:00</th>
<td></td>
</tr>
<tr>
<th>23:00-00:00</th>
<td></td>
</tr>
</table><<scene>>
<<if $mount == "theodora">>
<<if $planets[4].eventsdone.includes('theodorapromo') && $harley.events.theopromo == undefined >>
<<run $planets[4].eventsdone.delete('theodorapromo')>>
<<run $planets[4].influence.pushUnique('theodorapromo')>>
<</if>>
<<influence "theodorapromo">>
<</if>>
<<notice>>You can request your explorer visit someone specifically, or just go for a wander.<</notice>>
<<choices>>
<<set _events = []>>
<div class="flex">
<<if $planets[$exploration.planet].influence != undefined>>
<<for _ev range $planets[$exploration.planet].influence>>
<<capture _ev>>
<<set _tv = offevents[_ev].tempvar>>
<<if _tv == "wander">><<continue>><</if>>
<<for _c range offevents[_ev].chars>>
<<if $girlsavailable.includes(_c) && getCurrentLocation(_c) != "Off World" && getCurrentLocation(_c) != planets[characterinfo[_c].home].name>>
<<continue>>
<</if>>
<<if _events.includes(_c)>><<continue>><</if>>
<<set _events.pushUnique(_c)>>
<<if _c == "qm">>
<<set _center = "/other/qm.jpg">>
<<set _txt = offevents[_ev].txt>>
<<else>>
<<set _folder = getFolder(_c)>>
<<set _center = _folder+"/"+_c+"crop.jpg">>
<<set _who = State.variables[_c]>>
<<set _txt = "Visit " + _who.name>>
<</if>>
<<set _passage = offevents[_ev].passage>>
<<set _require = offevents[_ev].require>>
<<set _power = offevents[_ev].power>>
<<if _power != undefined && $planets[$exploration.planet].power < _power>>
<div class="girlChoice locked"><<center _center>>Level _power connection needed</div>
<<elseif _require != undefined && $mount != _require>>
<<set _r = State.variables[_require]>>
<div class="girlChoice locked"><<center _center>>Come back with _r.name</div>
<<else>>
<<link '<div class="girlChoice"><<center _center>>_txt</div>' _passage>>
<<set $tempvar = offevents[_ev].tempvar>>
<</link>>
<</if>>
<</for>>
<</capture>>
<</for>>
<</if>>
<<link '<div class="girlChoice"><<center "locations/explore.jpeg">>Wander</div>' riding>>
<<set $tempvar = "own"+($exploration.planet-1)>>
<</link>>
</div>
<<back>>
<</choices>><<set $maddy.events.met = undefined>>
<<set _w = State.variables[$mount]>>
<<switch $tempvar>>
<<case "own1">>
<<narrate>>As _w.name is walking through the city, you notice a casino.<</narrate>>
<div id="replace">
<<choices>>
<<link "Influence _w.name to go" casino>><<temp "force">>
<</link>><br>
<<link "Ask _w.name to visit" casino>><<temp "ask">>
<</link>><br>
<<link "Ignore It">>
<<replace "#replace">>
<<narrate>>You do nothing, and the rest of the trip bores you.<</narrate>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<time 2>>
<<run delete $mount>>
<</button>>
<</replace>>
<</link>><br>
<</choices>>
</div>
<<case "own2">>
<<if $kleio.events.knee == undefined>>
<<narrate>>You're walking down the street when you see a group of people with cameras swarming around someone, or something.<</narrate>>
<<think "mc">>Ugh, vultures. Probably some fancy, rich celebrity or something.<</think>>
<<narrate>>There's a woman's scream from the crowd.<</narrate>>
<<think "mc">>And the fuckers are hurting the public too?!<</think>>
<<narrate>>Without any other thought, your anger spurs _w.name into action as she dashes into the crowd, tossing photographers aside, and sees a woman in a white tank top curled on the ground.<</narrate>>
<<say $mount $name "(Possession)" "" "" "possessed">>Savages, the lot of you!<</say>>
<<narrate>>They start to take photos of _w.name as she helps the woman up and quickly escort her inside the nearest building.<</narrate>>
<<if $mount == "val">>
<<say $mount>>Mom? Should have known it was you! $name just sort of had me jump in.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>It just got me so angry. Just who were they after, anyway? Hardly seems fair you got caught in the crossfire!<</say>>
<<think $mount>>Alright, turn it down a notch!<</think>>
<<think mc>>Huh?<</think>>
<<say kleio>>What do you mean...?<</say>>
<<left2 "kleio/hero01.jpg">>
<<say $mount $name "(Possession)" "" "" "possessed">>Doesn't matter. So, what were you doing out here?<</say>>
<<say kleio>>I have to answer to my daughter now?<</say>>
<<say val>>You don't have to answer to anyone, but it was just $name making conversation.<</say>>
<<narrate>>She's starts looking a little confused.<</narrate>>
<<say kleio>>What's the patron you keep talking about got to do with anything?<</say>>
<<say $mount>>He's here with me. In my head, sometimes talking through me, it's quite disorientating. He's met you before, but his power didn't allow him to communicate at the time.<</say>>
<<else>>
<<say $mount>>Sorry about that, I guess their fancy celebrity must have wandered off, so we were the most interesting thing left.<</say>>
<<narrate>>You notice you're in a room currently being decorated, but there's nobody here..<</narrate>>
<<say $mount>>I guess we got kinda lucky that this place is so empty. Are you okay?<</say>>
<<narrate>>You finally get a proper look at her.<</narrate>>
<<left2 "kleio/hero01.jpg">>
<<say "kleio">>My hero!<</say>>
<<say $mount>>No problem. What were they doing here, anyhow?<</say>>
<<narrate>>$kleio.name looks at _w.name puzzled for a moment.<</narrate>>
<<say $mount $name "(Possession)" "" "" "possessed">>$val.name's mom!<</say>>
<<think $mount>>It's extremely weird when you speak through me.<</think>>
<<think "mc">>Sorry, not meaning to.<</think>>
<<say "kleio">>Oh, you know my daughter? Have we met previously?<</say>>
<<narrate>>She's still looking a little confused.<</narrate>>
<<say $mount $name "(Possession)" "" "" "possessed">>Yeah, we came over to your place once.<</say>>
<<say "kleio">>Ah, you must be one of that patron's companions that my daughter keeps talking about, right?<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>She talks about me?<</say>>
<<say "kleio">>Sorry, you're $name?<</say>>
<<say $mount>>No, no, no! But he's here with me. In my head, sometimes talking through me, it's quite disorientating. He's met you before, but his power didn't allow him to communicate at the time.<</say>>
<</if>>
<<say "kleio">>That makes more sense. And he's got the possession ability, huh? Impressive.<</say>>
<<think "mc">>She knows about patrons?<</think>>
<<say $mount>>Do you know much about patrons?<</say>>
<<say "kleio">>Not particularly, but when you've seen as many worlds as I have, you pick up a thing or two.<</say>>
<<left2 "kleio/hero02.jpg">>
<<narrate>>She rubs her knee.<</narrate>>
<<say "kleio">>Ouch! Bastards. All of them. That hungry to get their pictures, not bothered who they hurt.<</say>>
<<say $mount>>Is your knee okay?<</say>>
<<say "kleio">>It feels a bit off. I'll probably nip to the docs just to get it checked out, but my last doctor just retired, and finding a doctor to treat travelers is no simple feat.<</say>>
<<think "mc">>Tell her about $kp.name!<</think>>
<<say $mount>>We've got you covered. We know a doctor if you want to come back to the hub.<</say>>
<<say "kleio">>Hmm, maybe. It would be a pain finding one otherwise.<</say>>
<<say $mount>>If you think it's an emergency, I'm sure we can—<</say>>
<<say "kleio">>No, no. Not at all, I'll pop by when I have time. Thank you for your help.<</say>>
<<if $buildings.docs == undefined>>
<<think "mc">>I'd better hurry and finish building that doctor's surgery for $kp.name!<</think>>
<</if>>
<<say $mount>>No problem.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>Anything for a beautiful woman.<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say "kleio">>I take it he has no filter?<</say>>
<<narrate>>_w.name simply shakes her head.<</narrate>>
<<if $buildings.docs == undefined>>
<<notice>>Build the doctor's surgery then when $kp.name is there, you'll be able to call $kleio.name at Gateway B.<</notice>>
<<else>>
<<notice>>When $kp.name is at the surgery, you'll be able to call $kleio.name at Gateway B.<</notice>>
<</if>>
<<button "Continue" yourroom>>
<<like "kleio" 3>>
<<lust "kleio" 1>>
<<like $mount 4>>
<<lust $mount 2>>
<<event "kleio" "knee">>
<<eventdone "kleioknee">>
<<run delete $mount>>
<<time 2>>
<</button>>
<<else>>
<<narrate>>You find yourself in the middle of a market, full of all manner of oddities and goods. There are a few stalls that take out. You've probably only got enough time left to visit one of them.<</narrate>>
<<if $resources == 0>>
<<narrate>>Unfortunately you're broke, so there's nothing you can do here.<</narrate>>
<</if>>
<div id="replace">
<<choices>>
<<if $resources > 0>>
<<link "Buy a 💿 Record - 1 Resource" >>
<<replace "#replace">>
<<narrate>>You influence _w.name to visit the record stall and purchase some music.<</narrate>>
<<button "Continue" yourroom>>
<<waitingitem "music">>
<<resources -1>>
<<like $mount 4>>
<<lust $mount 2>>
<<time 2>>
<<run delete $mount>>
<</button>>
<</replace>>
<</link>><br>
<</if>>
<<if $resources > 2>>
<<link "Buy a 🍆 Sex Toy - 3 Resources">>
<<replace "#replace">>
<<narrate>>You influence _w.name to visit the adult stall and purchase a sex toy.<</narrate>>
<<button "Continue" yourroom>>
<<waitingitem "dildo">>
<<resources -3>>
<<like $mount 4>>
<<lust $mount 3>>
<<time 2>>
<<run delete $mount>>
<</button>>
<</replace>>
<</link>><br>
<</if>>
<<if $resources > 1>>
<<link "Buy a 👾 Video Game - 2 Resources">>
<<replace "#replace">>
<<narrate>>You influence _w.name to visit the game stall and purchase a game.<</narrate>>
<<button "Continue" yourroom>>
<<waitingitem "vg">>
<<resources -2>>
<<like $mount 4>>
<<lust $mount 2>>
<<time 2>>
<<run delete $mount>>
<</button>>
<</replace>>
<</link>><br>
<</if>>
<<link "Leave">>
<<replace "#replace">>
<<narrate>>You decide not to bother and disconnect.<</narrate>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<time 2>>
<<run delete $mount>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<</if>>
<<case "own3">>
<<block "locations/library.jpeg">>
<<narrate>>There's a library, you could probably influence _w.name to improve their skills...<</narrate>>
<div id="replace">
<<choices>>
<<link "Choose a Skill">>
<<replace "#replace">>
<<choices>>
<<for _k, _v range $buildings>>
<<capture _k _v>>
<<if _v.skill == undefined || _v.skill == "teaching">>
<<continue>>
<</if>>
<<set _n = _v.skill.toUpperFirst()>>
<<capture _n>>
<<link "_n" >>
<<set $subject = _v.skill>>
<<replace "#replace">>
<<set _l = random(3, 6)>>
<<narrate>>_w.name gains _l _v.skill.<</narrate>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<if State.variables[$mount].skills[_v.skill] == undefined>>
<<set State.variables[$mount].skills[_v.skill] = 0>>
<</if>>
<<time 2>>
<<set State.variables[$mount].skills[_v.skill] += _l>>
<<run delete $mount>>
<</button>>
<</replace>>
<</link>><br>
<</capture>>
<</capture>>
<</for>>
<</choices>>
<</replace>>
<</link>><br>
<<link "Leave">>
<<replace "#replace">>
<<narrate>>You do nothing, and the rest of the trip bores you.<</narrate>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<time 2>>
<<run delete $mount>>
<</button>>
<</replace>>
<</link>><br>
<</choices>>
</div>
<</block>>
<<case "own4">>
<<block "locations/peep.jpeg">>
<<narrate>>You notice some neon signs in the distance. As _w.name draws closer you realize it's a sex shop selling peep shows.<</narrate>>
<<narrate>>Influence _w.name to go inside?<</narrate>>
<div id="replace">
<<choices>>
<<link "Go In">>
<<replace "#replace">>
<<set _l = "peepshow/" + random(1, 10)+".webp">>
<<center _l>>
<<narrate>>You sit back and enjoy the show.<</narrate>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 3>>
<<if State.variables[$mount].corruption != undefined && State.variables[$mount].corruption > 0>>
<<corrupt $mount 2>>
<</if>>
<<run delete $mount>>
<<time 2>>
<</button>>
<</replace>>
<</link>><br>
<<link "Leave">>
<<replace "#replace">>
<<narrate>>You do nothing, and the rest of the trip bores you.<</narrate>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<run delete $mount>>
<<time 2>>
<</button>>
<</replace>>
<</link>><br>
<</choices>>
</div>
<</block>>
<<case "own5">>
<<set _who = State.variables[$mount]>>
<<if $mc.events.musiclesson == undefined>>
<<narrate>>As you're walking down a busy street, a woman calls you over.<</narrate>>
<<say "sideg" "???">>Looking to play the piano?<</say>>
<<think "mc">>That's not the kind of thing I'd expect from a shady looking woman in a hoodie to ask...<</think>>
<<say $mount $name "(Possession)">>Not right now, thank you.<</say>>
<<think $mount>>Could be fun!<</think>>
<<think "mc">>Really?<</think>>
<<think $mount>>Yeah, I want to see how good you are at it!<</think>>
<<think "mc">>You want me to take control?<</think>>
<<think $mount>>You probably can for a few minutes, right?<</think>>
<<think "mc">>I guess I can try.<</think>>
<<say $mount>>Sorry, yes, we'll give it a go!<</say>>
<<narrate>>The woman hands _who.name a flyer while looking confused.<</narrate>>
<<think $mount>>Oh, we walked past it a few minutes ago, let's see if there's anything available right now!<</think>>
<<cont "riding" "musiclesson">>
<<else>>
<<narrate>>Knowing this world is famous for its music you decide to influence _who.name to go see a show with you.<</narrate>>
<<set _l = random(1, 5)>>
<<switch _l>>
<<case 1>>
<<center "music/buzz.webp">>
<<narrate>>You end up at gig with a few bands play buzzchock. You're still not entirely sure if you know how to define this genre but it sure is popular.<</narrate>>
<<say $mount>>That was kinda fun!<</say>>
<<think "mc">>Yeah, I can't say I fully get it yet, but I definitely had a good time.<</think>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case 2>>
<<block "music/classic.webp">>
<<narrate>>You end up in a small theater where there are a number of extremely talented musicians playing classical music.<</narrate>>
<<think "mc">>Well, it's not usually my thing, but I certainly appreciate the talent and it was pretty beautiful.<</think>>
<<think $mount>>Yeah, not bad was it?<</think>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<</block>>
<<case 3>>
<<narrate>>There's a hive of activity in the city and you follow a throng of people heading toward some sort of concert.<</narrate>>
<<think $mount>>Could be fun!<</think>>
<<think "mc">>Let's go!<</think>>
<<center "music/edm.jpeg">>
<<narrate>>You end up at an EDM festival with amazing visuals.<</narrate>>
<<think $mount>>That light show was intense.<</think>>
<<think "mc">>And that crowd was wild!<</think>>
<<think $mount>>Yeah, super friendly, though.<</think>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case 4>>
<<narrate>>You follow a couple you overhear talking about how great a musician the guy they're going to see is.<</narrate>>
<<think $mount>>Does this kinda make us stalkers?<</think>>
<<think "mc">>Haha!<</think>>
<<center "music/jazz.jpeg">>
<<narrate>>You end up in a bar with a very talented jazz musician on stage. You can't help but tap _who.name's foot.<</narrate>>
<<think $mount>>I didn't take you for a jazz fan.<</think>>
<<think "mc">>Nah, not my thing.<</think>>
<<think $mount>>The way you were tapping my foot says otherwise!<</think>>
<<think "mc">>Eh, I can appreciate good music without being into the genre.<</think>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case 5>>
<<narrate>>You notice a group of metalheads who happily invite you to the show when you spark up conversation.<</narrate>>
<<center "music/metal.jpeg">>
<<narrate>>You end up headbanging with the metalheads you met earlier.<</narrate>>
<<think "mc">>What a great group of guys.<</think>>
<<think $mount>>Yeah, but my neck is killing me now. You really enjoyed that, huh?<</think>>
<<think "mc">>Shit, sorry.<</think>>
<<think $mount>>Ha, it's fine. Glad you had a good time. Just glad you didn't try to throw me in the moshpit!<</think>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<</switch>>
<</if>>
<<case "own7">>
<<notice>>No meaningful content for this planet yet, sorry!<</notice>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case "own6">>
<<narrate>>You spend some time helping a small settlement of survivors. They mention a nearby cache that has long been useless to them. Unfortunately, the team was unable to locate it.<</narrate>>
<<if $planets[7].influence.includes('matsDee')>>
<<cont "riding" "matsDee0">>
<<else>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<</if>>
<<case "own8">>
<<notice>>No meaningful content for this planet yet, sorry!<</notice>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case "own10">>
<<notice>>No meaningful content for this planet yet, sorry!<</notice>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case "own9">>
<<narrate>>While exploring the world you come across a group of people dressed strangely wielding particularly shiny swords. They seem particularly out of place given this world has quite advanced technology. You decide to leave them be.<</narrate>>
<<if $planets[10].influence.includes('matsCee')>>
<<cont "riding" "matsCee">>
<<else>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<</if>>
<<case "own11">>
<<notice>>No meaningful content for this planet yet, sorry!<</notice>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case "own12">>
<<notice>>No meaningful content for this planet yet, sorry!<</notice>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case "musiclesson">>
<<narrate>>You head to the address on the flyer and head inside. The foyer is rather run down.<</narrate>>
<<say "sideg" "Receptionist">>You're in luck, the mistress has had a cancellation. She's available now. The first lesson is free. Please, follow me.<</say>>
<<think "mc">>Cancellation? Ha! This place is obviously lacking custom.<</think>>
<<think $mount>>Be nice!<</think>>
<<narrate>>You follow the reception into one of the rooms.<</narrate>>
<<left2 "offworld/misty/meet01.jpg">>
<<meet "misty">>
<<say "misty">>Hello there, I'm <<textbox "$misty.name" $misty.name>>. I will be your teacher today, please, take a seat.<</say>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#textbox-mistyname').change(function() {
$('.misty .speakername').html($('#textbox-mistyname').val());
});
})
<</script>>
<<think "mc">>She's pretty hot.<</think>>
<<think $mount>>Of course that's the first thing you notice... me too... but that aside, look at this room, how extravagant it is. It's nothing like outside.<</think>>
<<narrate>>You try to follow the instructions but fail miserably. Just as you start to think you're making some progress, the connection fades.<</narrate>>
<<button "Continue" yourroom>>
<<meet "misty">>
<<event "mc" "musiclesson">>
<<eventdone "meetmisty">>
<<influence "meetmoody">>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case "musiclesson2">>
<<say "sideg" "Receptionist">>Miss Tone is currently with another client, but she shouldn't be long. You're welcome to wait outside her room.<</say>>
<<narrate>>As you approach her room, you hear the unmistakable squeals of delight.<</narrate>>
<<think "mc">>She's with another woman... having a lot of fun by the sounds of it.<</think>>
<<choices "How do you want to influence _w.name's actions?">>
<<link "Peep" othersex>>
<<temp "mistymood">>
<</link>><br>
<<link "Leave" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</link>>
<</choices>>
<<case "dean">>
<<if $melody.events.met != $mount>>
<<set _o = State.variables[$melody.events.met]>>
<<think "mc">>I should come back with _o.name; she wanted to handle it personally.<</think>>
<<back>>
<<else>>
<<narrate>>You head to Dean's address.<</narrate>>
<<think "mc">>Wow, he lives in a swanky place, huh?<</think>>
<<narrate>>You knock on the door, but nobody answers.<</narrate>>
<<say $mount>>Let's find a way inside. Find out more about this fucker!<</say>>
<<narrate>>You pull the handle, expecting it to be locked, but to your surprise it's open.<</narrate>>
<<say $mount>>Well, that was easy!<</say>>
<<narrate>>You hear some muffled voices from another room and follow the sounds.<</narrate>>
<<say "side" "Dean">>That's it, baby, the camera loves you!<</say>>
<<left2 "offworld/moody/meet01.jpg">>
<<if $girlsmet.includes('moody')>>
<<think "mc">>Isn't that, $moody.name?<</think>>
<</if>>
<<narrate>>You stare at her for a moment, admiring the vision before you.<</narrate>>
<<think "mc">>Fuck, she's hot.<</think>>
<<narrate>>She turns to face _w.name.<</narrate>>
<<say "moody">>You told me this would be private, Dean!<</say>>
<<say "side" "Dean">>Sorry, babe. I must have forgotten to lock the door. Are you a new client? Can we maybe discuss another time?<</say>>
<<say $mount>>No, Dean. We're here about $melody.name.<</say>>
<<say "moody">>Your sister, again, Dean? What the fuck?<</say>>
<<think "mc">>Sister? Huh?!<</think>>
<<say "moody">>I'm outta here.<</say>>
<<narrate>>She storms off.<</narrate>>
<<meet "moody">>
<<say $mount>>Sister? You're stalking your sister?<</say>>
<<think "mc">>Does that mean he's a traveler too?<</think>>
<<say "side" "Dean">>What? No... she ran off after an argument a few months ago. I'm just trying to bring her home, but she ignores my calls and any time I get close to her, she runs off.<</say>>
<<think "mc">>One of them is lying to me...<</think>>
<<say $mount $name "(Possession)">>Are you a traveler?<</say>>
<<say "side" "Dean">>Yeah, came here with $melody.name. Figured they'd be plenty of opportunity for me as a photographer.<</say>>
<<say $mount $name "(Possession)">>So what happened between you two?<</say>>
<<say "side" "Dean">>I don't think that's really any of your business.<</say>>
<<say $mount $name "(Possession)">>She said you're stalking her. We said we'd take care of it.<</say>>
<<say "side" "Dean">>Fine. Listen, she's a good person, she really is. But... well, she wanted something from me that I couldn't give her. I'm actually a woman, but I had the patron change me to a male form when I came here, I thought it might be fun. So did she...<</say>>
<<think "mc">>I'm getting lost here...<</think>>
<<say "side" "Dean">>But, I was doing a shoot with her and well, I got a massive erection. I just tried to ignore it, she's my sister for crying out loud, but she spotted it.<</say>>
<<say $mount $name "(Possession)">>And she freaked out?<</say>>
<<say "side" "Dean">>No... she told me she felt the same, and she lowered her panties... she's my sister! I told her she was my sister, and we couldn't do anything like that... and well, she ran off and here we are now. I'm trying to find her to say I still love her and that she needs to come home.<</say>>
<<say $mount $name "(Possession)">>So you didn't want to fuck her?<</say>>
<<say "side" "Dean">>If I'm honest... yeah... but I figured that's just because I'm in a male's body right now.<</say>>
<<say $mount $name "(Possession)">>There are a multitude of worlds out there. Many of them don't have the same taboos. Maybe you should try it.<</say>>
<<say "side" "Dean">>What? No! I don't want to ruin our relationship.<</say>>
<<say $mount $name "(Possession)">>As opposed to what you have now?<</say>>
<<say "side" "Dean">>Point taken. But even still, it's only because I'm in a male body. It wouldn't be an issue otherwise.<</say>>
<<say $mount $name "(Possession)">>Come back to my hub, I'll revert you to your proper form and see how you feel after.<</say>>
<<say "side" "Dean">>Your hub?<</say>>
<<narrate>>As you start to explain, your connection expires.<</narrate>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<event "melody" "step" 3>>
<<event "hm" "mount" $mount>>
<<event "hm" "start" $hour>>
<<eventdone "melodydean">>
<<time 2>>
<<set _s = $hour+3>>
<<set _t = $hour+7>>
<<run overrideSchedule('hm', 8, _s, "Off World")>>
<<run overrideSchedule('hm', _s, _t, "lounge")>>
<<run overrideSchedule('hm', _t, 24, "Off World")>>
<<available "hm">>
<<event "hm" "timer" 7>>
<</button>>
<</if>>
<<case "matsDee0">>
<<narrate>>After helping the survivors, a young woman tries to get _w.name's attention.<</narrate>>
<<left2 "offworld/dee/meet01.jpg">>
<<say "dee" "???">>I want to thank you for helping us...<</say>>
<<say $mount>>It's fine, please don't worry about it.<</say>>
<<say "dee" "???">>I know you can't take my people back to your world, but there's an old cache of resources that are useless to us, but were fiercely fought over by our governments before. Perhaps they would be useful to you.<</say>>
<<if $tempvar3 == "cwar">>
<<think mc>>This the place you want to go anyway?<</think>>
<<think $mount>>I'm not sure... I don't think so. But worth checking out.<</think>>
<</if>>
<<say $mount>>We'd be happy to look at them if they really are no use.<</say>>
<<say "dee" "???">>The cache is a little while from here. We've already stripped it of anything that's helpful to us, I suspect it'll be a long time before we rebuild our society large enough to need the rest.<</say>>
<<say $mount>>That would be great. If you let us know where it is—<</say>>
<<say "dee" "???">>You'll not find it with just directions, it's too well hidden, and I'm not even sure how best to describe it. Come on, I'll take you there. My name is <<textbox "$dee.name" Penny>>, by the way.<</say>>
<<meet "dee">>
<<cont "riding" "matsDee">>
<<case "matsDee">>
<<if $tempvar3 == "cwar">>
<<think $mount>>Looks like it's in the completely wrong direction, but I think it's still worth checking out. We can come back another time if we find we can trust her.<</think>>
<</if>>
<<narrate>>$dee.name leads you a few miles from the city. You don't see anything remarkable.<</narrate>>
<<think "mc">>A trap? Has she led us to an ambush to steal from us?<</think>>
<<narrate>>_w.name clutches her knife.<</narrate>>
<<say "dee">>See what I mean? You'd never spot this place if I hadn't come.<</say>>
<<say $mount>>Huh?<</say>>
<<say "dee">>Exactly. You still can't see it!<</say>>
<<narrate>>She stomps on the ground and you hear a loud metallic noise.<</narrate>>
<<say "dee">>The doors are right here, it's like a trap door, but given all the sandstorms and whatnot, trying to describe its exact location is difficult. Let's head inside.<</say>>
<<narrate>>_w.name's hand releases her knife, and you follow $dee.name inside.<</narrate>>
<<left2 "other/cache.jpg">>
<<narrate>>A vast array of shelves extend before you; boxes upon boxes of unknown items.<</narrate>>
<<say $mount>>And none of this is useful to your people?<</say>>
<<say "dee">>No. Can't even trade it away with other settlements.<</say>>
<<say $mount>>But why not trade what's here with us?<</say>>
<<say "dee">>The truth is, we don't know the value of what's here to others. You seem like decent people, it's my hope by sharing this with you, you find something useful and give us a fair deal. It also means you're more likely to visit us when you want something from the cache.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>And what's to stop us just taking everything?<</say>>
<<say "dee">>Nothing. But it's meaningless to us, so I've lost nothing other than my time either way. I just hope you revisit and help us as you have been. Call it a show of good faith. Whether you take it all now, none of it, or just come back every so often for what you need, I hope it's enough that you'll continue to help us.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>This is appreciated. We'll go through and see what we can find.<</say>>
<<think $mount>>I'll try and catalog what's here and report back to the hub when done.<</think>>
<<say "dee">>Do you want me to help you go through everything?<</say>>
<<say $mount>>That would be great, thank you.<</say>>
<<if $tempvar3 == "cwar">>
<<think $mount>>Wow, okay this is valuable. Definitely worth the detour. But let's not forget to return here later.<</think>>
<</if>>
<<narrate>>Your connection fades as they start going through the boxes.<</narrate>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<if $tempvar2 == "cwar">>
<<set $exploration.explorers.cassie.earnings = 120>>
<<else>>
<<set $matsDee = $mount>>
<<event "mc" "matsDee">>
<<eventdone "matsDee">>
<</if>>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case "matsCee">>
<<narrate>>While exploring, a man brandishing a sword stops _w.name.<</narrate>>
<<say "side" "???">>Yer be one of them from the other world, ain't ya?<</say>>
<<say $mount>>Sorry, I'm not sure—<</say>>
<<say "side" "???">>We've been waiting for ya, sir. M'lady would like a word.<</say>>
<<think "mc">>What the hell is going on?<</think>>
<<say $mount>>I don't think we're who you're looking for.<</say>>
<<narrate>>Behind you, a group of people similarly dressed appear from the bushes.<</narrate>>
<<think "mc">>Ambush?!<</think>>
<<narrate>>_w.name is about to sprint at the man when everyone kneels before her, holding their swords up. A woman steps forward.<</narrate>>
<<left2 "offworld/sata/meet01.png">>
<<say "sata" "???">>Our order has long awaited the return of your people. The world governments entrusted us as envoys to ensure peaceful coexistence between our peoples.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>I think you have the wrong people.<</say>>
<<say "sata" "???">>No, I feel the power you exude and the fact you harbor two consciousnesses.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>What is it you want?<</say>>
<<say "sata" "???">>We wish only for peace. We do not wish for war. We have awaited your people for hundreds of years since your last incursion. Please, allow us to negotiate peace. I am <<textbox "$sata.name" "Catharine">>.<</say>>
<<narrate>>The people behind her part and another man steps forward holding a large box.<</narrate>>
<<say "sata">>Take these, our most precious of gemstones as a sign of good-intent. We would be happy to trade with your people, share knowledge, and learn from each other. We merely wish to avoid the bloodshed from the previous time your people ventured here. That was a war none of us won.<</say>>
<<think "mc">>I have no idea what war they are talking about.<</think>>
<<think $mount>>Probably some other patron with ill-intent. But, they aren't going to take no for an answer, and that big orange gemstone, well that's one of the items $lacy.name is after.<</think>>
<<say $mount $name "(Possession)" "" "" "possessed">>We did not come here to quarrel, but we will take your gift, and would be happy to trade with you going forward.<</say>>
<<think $mount>>I think that was the right decision. We don't often get to trade directly with governments after all!<</think>>
<<say "sata">>Fantastic, I look forward to our friendship.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>But, I feel I should be honest. It was not my people that came before.<</say>>
<<say $mount>>It was probably another patron.<</say>>
<<say "sata">>You really are two people. Be that as it may, you are the first with such power since the incursion. It would also do well for us to understand more about you. The patron is a term we are familiar with thanks to that terrible war, but your words suggest there are multiple?<</say>>
<<narrate>>Your connection fades before you're able to answer.<</narrate>>
<<think "mc">>I hope _w.name is okay...<</think>>
<<meet "sata">>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<set $matsCee = $mount>>
<<event "mc" "matsCee">>
<<eventdone "matsCee">>
<<run delete $mount>>
<<time 2>>
<</button>>
<</switch>><h3>Rota</h3>
<<set _tempOpts = ['Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday']>>
<<if $rotaType == "weekly">>
<<listbox "$activeDay" autoselect>>
<<optionsfrom _tempOpts>>
<</listbox>>
<</if>>
<<set _expincome = 0>>
<<if $dailyworking[$activeDay] != undefined && $dailyworking[$activeDay][$location] != undefined>>
<<for _x, _s range $dailyworking[$activeDay][$location]>>
<<capture _x, _s>>
<<for _w range $dailyworking[$activeDay][$location][_x]>>
<<capture _w>>
<<if _w == undefined || _w == "">><<continue>><</if>>
<<set _expincome += calcBuildingIncome($location, State.variables[_w], _x)>>
<</capture>>
<</for>>
<</capture>>
<</for>>
<</if>>
<<if _expincome > 0>>
⚙️Projected Daily Income: _expincome
<</if>>
<<set _shifts = [13,17,20,24]>>
<<set _times = {13:"Morning 09:00 - 13:00", 17:"Afternoon 13:00 - 17:00", 20:"Evening 17:00 - 20:00", 24:"Night 20:00 - 00:00"}>>
<<set _slots = $buildings[$location].slots>>
<<for _k, _x range _times>>
<<capture _k _x>>
<<set _i = 0>>
<div class="choices">
<b>_x</b><br>
<<if $buildings[$location].rota[_k] == 1>>
<<if $dailyworking[$activeDay] != undefined && $dailyworking[$activeDay][$location] !== undefined && $dailyworking[$activeDay][$location][_k] != undefined>>
<<for _girl range $dailyworking[$activeDay][$location][_k]>>
<<if _girl == "">><<continue>><</if>>
<<set _folder = getFolder(_girl)>>
<div class="badge" @slot="_i" @t="_k" @f="$location" @day="$activeDay" @girl="_girl" title=""><img @src="setup.img+'/'+_folder+'/badge.jpg'"></div>
<<set _i++>>
<</for>>
<</if>>
<<for _i; _i lt $buildings[$location].slots; _i++>>
<div class="badge empty" @slot="_i" @t="_k" @f="$location" @day="$activeDay"></div>
<</for>>
<<else>>
Closed<br>
<</if>>
<<if $location == "spa" && $breakdone.spa != undefined && $breakdone.spa.includes('staff')>>
<<if $dailyworking[$activeDay] != undefined && $dailyworking[$activeDay]['sparelax'] !== undefined && $dailyworking[$activeDay]['sparelax'][_k] != undefined && $dailyworking[$activeDay]['sparelax'][_k] != "">>
<<set _girl = $dailyworking[$activeDay]['sparelax'][_k]>>
<<if _girl == "">><<continue>><</if>>
<<set _folder = getFolder(_girl)>>
<div class="badge relax" slot="r" @t="_k" f="sparelax" @day="$activeDay" @girl="_girl" title=""><img @src="setup.img+'/'+_folder+'/badge.jpg'"></div><br>
<<else>>
<div class="badge relax empty" slot="r" @t="_k" f="sparelax" @day="$activeDay" @title="'Empty '+_x+' relaxation slot.'"></div><br>
<</if>>
<</if>>
</div>
<</capture>>
<</for>>
<br>
<<set _save = "mng"+$location>>
<<button "Save Changes" _save>><</button>>
<div id="rotaworkers2" class="noshow"><spa></spa>
<table id="whom2" class="rotaselect" style="width:100%">
</table>
</div>
<<script>>
$(document).on(':passageend', function (ev) {
resetRotaVars();
});
let s = "";
let t = "";
let slot = "";
let location = "";
let day = "";
let locationactive = [];
let whoactive = [];
let current = "";
$('#whom2').html('');
$('#rotaworkers2').hide();
function resetRotaVars() {
s = "";
t = "";
slot = "";
location = "";
day = "";
locationactive = [];
whoactive = [];
current = "";
$('#whom2').html('');
$('#rotaworkers2').hide();
}
function checkWhoActive(day, t) {
whoactive = [];
for (let location in State.variables.dailyworking[day]) {
for (let g in State.variables.dailyworking[day][location][t]) {
whoactive.pushUnique( State.variables.dailyworking[day][location][t][g]);
}
}
}
$(document).on('click', function (event) {
if (!$(event.target).closest('#rotaworkers2').length && !$(event.target).closest('.badge').length) {
$('#rotaworkers2').hide();
}
});
$('#rota').on('click', '.badge', function(e) {
resetRotaVars();
location = $(this).attr('f');
current = $(this).attr('girl');
if (State.variables.constructionproject != undefined && State.variables.constructionproject.key == "lab" && location == "construction" && current != "" && current != undefined) {
$('#whom2').html('Can not change this shift until the monitoring station is complete.');
$('#rotaworkers2').show();
$('#rotaworkers2').css('top', e.pageY);
$('#rotaworkers2').css('left', e.pageX);
return;
}
let sv = State.variables;
$('#rotaworkers2').show();
let windowheight = $(window).height();
if (e.clientY > windowheight/2) {
$('#rotaworkers2').css('bottom', windowheight - e.pageY);
$('#rotaworkers2').css('top', '');
$('#rotaworkers2').css('left', e.pageX);
} else {
$('#rotaworkers2').css('top', e.pageY);
$('#rotaworkers2').css('bottom', '');
$('#rotaworkers2').css('left', e.pageX);
}
t = $(this).attr('t');
s = $(this).attr('s');
slot = $(this).attr('slot');
day = $(this).attr('day');
let skill = "";
if (location != "sparelax") {
skill = constructs[location].skill;
}
let opts = "
<tr class='headerrow'>
<th>Name</th>
<th>Fatigue</th>
<th>"+skill.toUpperFirst()+"</th>
<th>Traits</th>
</tr>
</thead><tr value=\"\"><td class=\"left\">Nobody</td><td></td><td></td></tr>";
let size = 0;
if (State.variables.dailyworking[day][location] == undefined) State.variables.dailyworking[day][location] = {};
if (State.variables.dailyworking[day][location][t] == undefined) State.variables.dailyworking[day][location][t] = [];
checkWhoActive(day, t);
locationactive = State.variables.dailyworking[day][location][t];
let whocan = clone(sv.workers);
if (location == "sparelax") {
whocan.concat(sv.explorers.filter((value) => !whocan.includes(value)));
}
if (location == "brothel") {
whocan = clone(sv.brothel);
}
if ((sv.anna.events.settle != undefined && sv.anna.events.important == undefined) || (sv.anna.events.important == 1 && sv.anna.events.mature == 3)) {
whocan.pushUnique('anna');
}
if (sv.mc.events.eastgo != undefined && sv.mc.events.eastreturn == undefined) {
whocan.delete('britt');
whocan.delete('krissy');
whocan.delete(sv.awaypartyeast);
whocan.delete(sv.awaypartystray);
}
whocan.sort(function (a, b) {
if (State.variables[a].name < State.variables[b].name) {
return -1;
}
if (State.variables[a].name > State.variables[b].name) {
return 1;
}
return 0;
});
for(let x in whocan) {
if (whoactive.includes(whocan[x]) && whocan[x] != current) continue;
let char = characterinfo[whocan[x]];
if (whocan[x] == "anna" && (sv.anna.events.important == undefined || sv.anna.events.important == 1)) {
char.only = undefined;
}
if (char.only != undefined && location != "brothel") {
if (!char.only.includes(location) && location != "sparelax") {
continue;
}
}
if (char.nowork != undefined) {
if (char.nowork.includes(location)) {
continue;
}
}
/* Teaching */
if (sv.teaching != undefined) {
if ((sv.teaching.who == whocan[x] || whocan[x] == sv.teaching.teacher) && (t >= sv.teaching.start && t <= sv.teaching.hour)) continue;
}
let skillLevel = "";
if (location != "sparelax") {
skillLevel = sv[whocan[x]].skills[skill];
if (skillLevel == undefined) skillLevel = 0;
}
let chartraits = "";
for (let k in sv[whocan[x]].traits) {
let trait = sv[whocan[x]].traits[k];
if (window.traits[trait].work == true) {
chartraits += '<span class="trait" title="'+eval(traits[trait].info)+'">'+trait+'</span>';
}
}
opts += "<tr value=\""+whocan[x]+"\"><td class=\"left\">"+sv[whocan[x]].name+"</td><td>" + sv[whocan[x]].fatigue + "</td><td>" + Math.floor(skillLevel*100)/100 + "</td><td style=\"text-align: center\">"+chartraits+"</td></tr>";
size++;
}
$('spa').html('');
if (location == "sparelax") {
$('spa').html("<b>Not a work shift!</b><br>Assigning someone to this slot reduces their fatigue by "+State.variables.spafatigue+" at the end of the shift.");
}
$('#whom2').html(opts);
$("tr[value='"+current+"']").addClass('highlighted');
$('.trait, .tinybadge, .em').tooltip({
position: {
my: "center bottom-5",
at: "center top-5"
},
track: true
});
});
$(document).on('click', '#whom2 tr', function() {
if ($(this).hasClass('headerrow')) return;
let g = $(this).attr('value');
if (g == "anna" && State.variables.anna.events.important == undefined) {
State.variables.tempvar = "worker";
Engine.play('annaanswers');
return;
}
if ((current == "" || current == undefined) && g == "") {
$('#whom2').html('');
$('#rotaworkers2').hide();
return;
}
if (g == "anna" && State.variables.anna.events.important == 1 && State.variables.anna.events.mature == 3 && location != "bar" && location != "waiting") {
State.variables.tempvar = "worker2";
State.variables.tempvar2 = "notbar";
Engine.play('annaanswers');
return;
}
if ($('#rota .badge').not('.empty').length > 0) $( "#rota .badge" ).tooltip( "destroy" );
locationactive.delete(current);
if (location == "sparelax") {
State.variables.dailyworking[day][location][t] = [g];
} else {
locationactive.pushUnique(g);
}
let folder = getFolder(g);
if (current == "" || current == undefined) {
$(".badge[slot='"+slot+"'][t='"+t+"'][f='"+location+"'][day='"+day+"']").removeClass('empty').html('<img src="'+setup.img+'/'+folder+'/badge.jpg">').attr('girl', g).attr('title', '');
} else {
if (g == "" || g == undefined) {
$(".badge[slot='"+slot+"'][t='"+t+"'][f='"+location+"'][day='"+day+"'][girl='"+current+"']").html('').addClass('empty').attr('girl', '').removeAttr('title');
} else {
$(".badge[slot='"+slot+"'][t='"+t+"'][f='"+location+"'][day='"+day+"'][girl='"+current+"'] img").attr('src', setup.img+'/'+folder+'/badge.jpg');
$(".badge[slot='"+slot+"'][t='"+t+"'][f='"+location+"'][day='"+day+"'][girl='"+current+"']").attr('girl', g).attr('title', '');
}
}
$('#whom2').html('');
$('#rotaworkers2').hide();
checkWorkRota(day);
badgeCheck();
if (g == "anna" && State.variables.anna.events.important == 1 && State.variables.anna.events.mature == 3) {
State.variables.tempvar = "worker2";
Engine.play('annaanswers');
return;
}
});
function badgeCheck() {
$('.badge').tooltip({
position: {
my: "right bottom-10",
at: "right top-10"
},
track: true,
content: function() {
if ($(this).hasClass('empty')) return;
let girl = $(this).attr('girl');
let info = State.variables[girl];
let skill = constructs[State.variables.location].skill;
let f = State.variables.location;
let skillLevel = State.variables[girl].skills[skill];
if (skillLevel == undefined || isNaN(skillLevel)) {
skillLevel = 0;
State.variables[girl].skills[skill]
}
let ci = characterinfo[girl];
let title = "<h3>"+info.name+"</h3>";
title += "<table style=\"width:100%\"><tr><td>👍"+info.like+"</td><td>❤️"+info.lust+"</td></tr>";
title += "<tr><td>💤"+info.fatigue+"</td>";
if (f != "sparelax") {
if (info.skills[constructs[f].skill] == undefined) info.skills[constructs[f].skill] = 0;
title += "<td>"+skillSpans[constructs[f].skill]+info.skills[constructs[f].skill]+"</td>";
}
title += "</tr></table><h3>Traits</h3>";
for (let x in info.traits) {
title += info.traits[x].toUpperFirst();
if (x != info.traits.length-1) title += "<br>";
}
if (ci.only != undefined) {
title += "<br><h3>Constraints</h3>";
for (let x in ci.only) {
if (State.variables.buildings[ci.only[x]] != undefined) {
title += State.variables.buildings[ci.only[x]].name;
if (x != ci.only.length-1) title += "<br>";
}
}
}
if (ci.nowork != undefined) {
title += "<br><h3>Exclusions</h3>";
for (let x in ci.nowork) {
if (State.variables.buildings[ci.nowork[x]] != undefined) {
title += State.variables.buildings[ci.nowork[x]].name;
if (x != ci.nowork.length-1) title += "<br>";
}
}
}
return title;
}
});
}
setup.scriptpromise.then(function () {
badgeCheck();
})
<</script>><<scene>>
<<set _return = "mng"+$location>>
<<set _hours = $nextshift - $hour>>
<<set _lg = $nextshift - $hour>>
<<set _lug = 0>>
<<set _corr = 0>>
<<set _who = State.variables[$active]>>
<<set _fg = 0>>
<<set _skill = $mc.skills[constructs[$location].skill]>>
<<set _sn = constructs[$location].skill>>
<<set _sg = 0.25 * _hours>>
<<set _nb = false>>
<<if $active == "anna" && $anna.events.important == 2>>
<<left2 "anna/waiting01.jpg">>
<<think "mc">>Whoa... this is not what I expected. Why is she wearing... next to nothing with her underwear clearly on display for everyone.<</think>>
<<say "anna">>This is great, I'm loving this!<</say>>
<<say "mc">>I uh... what exactly?<</say>>
<<say "anna">>Just everyone's eyes on me... it's so exhilarating. I should have worn a skirt with no panties on... well, I know for next time, huh?<</say>>
<<think "mc">>Fuck... it's all clicking in to place. I knew she had a bit of an exhibitionist streak in her... and that explains why she was so happy to work at $kylie.name's, and what she meant by conditions.<</think>>
<<say "mc">>Yeah, great!<</say>>
<<say "anna">>God, this is so good, thank you, $anna.calls!<</say>>
<<think "mc">>Is this all I had to do? I'm still not sure I've made the point I was originally trying to make, but I'll be fucked if I'm not going to enjoy the results of whatever it's morphed into.<</think>>
<<say "mc">>Yeah... of course, no problem.<</say>>
<<say "anna">>It's just great to, you know... finally have someone who just gets me and lets me be me without any judgment.<</say>>
<<think "mc">>I'm still in awe of this redemption... I doubt the bitchiness will ever truly be gone, but if I get moments like this, I can tolerate it to a level.<</think>>
<<notice>>$anna.name's exhibitionist trait is now active. It will create lust and corruption whenever she works, but she's 10% less effective at working. The bonuses will be increased further any time you assist with her shifts. For best results check her trait info and ensure she never works alone.<</notice>>
<<set $anna.traits.push('exhibitionist')>>
<<event "anna" "important" 3>>
<<elseif $lacy.events.labsex == 1 && $active == "lacy" && $location == "lab" && Object.keys($techscomplete).length >= 5>>
<<left2 "lacy/lab06.jpg">>
<<narrate>>You can't help but noticed $lacy.name isn't her usual self and not at all focusing on the project at hand.<</narrate>>
<<say "mc">>What's wrong $lacy.name?<</say>>
<<say "lacy">>What do you mean? Everything is fine. Come, let's continue our work.<</say>>
<<think "mc">>Hmm... she's not always the most expressive, so it's hard to tell. Am I overthinking it?<</think>>
<<narrate>>You continue working, and a little while later you hear a muffled scream of frustration from behind one of the doors. You run over.<</narrate>>
<<say "mc">>What is going on? Are you okay?<</say>>
<<say "lacy">>No! You've done so much for us, and I just can't figure out what to do for you in return. I'm sorry I'm not good enough, I just... I just can't think of how best to help you!<</say>>
<<narrate>>She takes a deep sigh.<</narrate>>
<<say "lacy">>Sorry, I don't normally let my frustrations get the better of me.<</say>>
<<narrate>>You cup her chin and pull her gaze to yours.<</narrate>>
<<say "mc">>$lacy.name. Are you kidding me? You've done so much for me since I've been here, I may never have even known about the buffer without you.<</say>>
<<say "lacy">>I know... I know... but I feel like I could just do so much more!<</say>>
<<say "mc">>You already do enough, far more than anyone can reasonably ask of you. If you push yourself too hard, you'll burn yourself out.<</say>>
<<say "lacy">>But I don't want to let you down!<</say>>
<<say "mc">>You exceed my expectations at every turn, you couldn't let me down if you tried. You need some time away from work, from research. What do you do when you're not working?<</say>>
<<say "lacy">>I try and look into other ways I can find to help you.<</say>>
<<narrate>>You shake your head.<</narrate>>
<<say "mc">>No more. Okay? I want you to spend your free time relaxing, not working!<</say>>
<<say "lacy">>But—<</say>>
<<say "mc">>No buts. How about a game of pool or something? I'll let you know when I'm available and we can play together.<</say>>
<<narrate>>Her demeanor changes when she realizes she'll be with you.<</narrate>>
<<say "lacy">>Yeah... okay.<</say>>
<<event "lacy" "labsex" 2>>
<<elseif $active == "skin" && $skin.events.shift == undefined>>
<<left2 "offworld/skin/work01.jpg">>
<<say skin>>Finally! I was starting to think I was invisible!<</say>>
<<say mc>>Everything okay?<</say>>
<<say skin>>It is now. I've been working my ass off, making sure I beat all these bitches to stand out.<</say>>
<<say mc>>Yeah, your work effort and ability to learn quickly has definitely been noticed.<</say>>
<<narrate>>She nods to herself.<</narrate>>
<<say skin>>Fuck yeah, I'm the best. I do hope that recognition comes with some reward.<</say>>
<<say mc>>We can look at your salary, for sure.<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say skin>>You're a dense motherfucker, ain't ya? I'll gladly take ya money, but what I want is a little more... hands on.<</say>>
<<narrate>>She grins at you.<</narrate>>
<<say skin>>I'm down. Whenever.<</say>>
<<narrate>>She heads back to work, but just as she turns the corner, she gives her ass a playful spank and looks back at you over her shoulder.<</narrate>>
<<think mc>>Fuck me, she's ready to go...<</think>>
<<event skin shift>>
<<set _arr = ['construction', 'lab', 'bakery', 'bar', 'library', 'restaurant', 'waiting']>>
<<cover "skin" _arr>>
<<elseif $active == "mj" && $mj.events.shift == undefined>>
<<narrate>>$mj.name grins as she sees you approach.<</narrate>>
<<left2 "offworld/mj/shift01.jpg">>
<<say mj>>I was wondering how long you'd take to come find me...<</say>>
<<say mc>>Huh?<</say>>
<<say mj>>Well, I felt we had a... certain connection after the interview.<</say>>
<<think mc>>As I recall, she was just excited to be on the hub...<</think>>
<<narrate>>She catches you staring at her ass, laughs and gives it a little shake.<</narrate>>
<<say mj>>Like what you see?<</say>>
<<narrate>>She grins and gives you a wink.<</narrate>>
<<say mc>>Oh, definitely... and I quite enjoy how forward you are.<</say>>
<<say mj>>Then allow me to be direct. As much I enjoy working under you, I think I'd enjoy being under you more.<</say>>
<<narrate>>She gives you a sultry look.<</narrate>>
<<say mj>>Anyway, I'd better get to work, but I look forward to working... closely together in the future.<</say>>
<<narrate>>She struts away, swinging her hips. At the door she stops, looks back and blows you a kiss.<</narrate>>
<<think mc>>Wow... she knows what she wants... and I what I want.<</think>>
<<event mj shift>>
<<elseif $active == "waitress" && $waitress.events.restaurant == 1 && $location == "restaurant">>
<<left2 "waitress/restaurant02.jpg">>
<<say waitress>>Oh, wow you actually wanna help out?<</say>>
<<say mc>>Might be fun; you seem to really enjoy it!<</say>>
<<say waitress>>Yeah, you get to meet some great people. Especially here, wow, I never thought I'd meet aliens, and I never expected them to look just like us!<</say>>
<<say mc>>Hmm, I never really thought about it that way, but yeah, I guess they are aliens... though they're still human, you know that right?<</say>>
<<narrate>>She gives you a cheeky grin.<</narrate>>
<<say waitress>>Are <b>you</b> sure of that?<</say>>
<<narrate>>Her face suddenly sours.<</narrate>>
<<say mc>>What's wrong?<</say>>
<<say waitress>>Nothing. Just a regular I don't enjoy serving. But ya gotta take the good with the bad, y'know? Ya can't like everyone, and he's a paying customer just like everyone else.<</say>>
<<narrate>>She puts on an obviously fake smile and heads over to greet the man.<</narrate>>
<<think mc>>Hmmm, I wonder why she doesn't like serving him. I'm sure if it was anything serious, she'd tell me.<</think>>
<<narrate>>You continue working, and glance back at her as she serves the customer she was so unhappy to see.<</narrate>>
<<left2 "waitress/restaurant03.jpg">>
<<think mc>>What the actual fuck?<</think>>
<<narrate>>You immediately storm over, anger taking full control.<</narrate>>
<<say mc>>What the fuck is going on here?!<</say>>
<<say waitress>>I'm sorry, $name, I got his order wrong. It's not the side he wanted. I'll fix it, I swear. Please don't fire me!<</say>>
<<narrate>>You're blinking in shock for a moment when the man speaks up.<</narrate>>
<<say "side" "Customer">>Don't you worry your pretty little head about it, you just wanted another excuse to come back to the table to see your favorite customer, didn't you?<</say>>
<<narrate>>He slaps her ass, which brings you back to reality.<</narrate>>
<<say mc>>$waitress.name, go to the kitchen. I'll speak to you in a moment.<</say>>
<<say waitress>>No, please, I'm sorry, I'll make things right.<</say>>
<<say mc>>GO. NOW.<</say>>
<<say "side" "Customer">>Hey now, the lil missy made a small mistake no need to—<</say>>
<<say mc>>You get the fuck outta this restaurant and off this hub right now.<</say>>
<<say "side" "Customer">>Excuse me, who do you think—<</say>>
<<say mc>>I'm the fucking patron, and you need get the fuck off my hub, or I'll fucking transform you into something that has no hands so that you'll never be able to touch another woman ever again. And I'll fucking make sure the gateway doesn't ever turn you back.<</say>>
<<narrate>>He stands up to you.<</narrate>>
<<say "side" "Customer">>Patron? Bullshit, you're just another fucking cook or waiter or whatever. I've paid for my meal, and I'm gonna eat it, and if the lil missy didn't want me to touch that fine ass of hers, she wouldn't present herself to me in such a way. Mind your own fucking business and send $waitress.name back out here to serve me.<</say>>
<<narrate>>Your anger spikes and there's a flash of light as $kylie.name appears. Without any hesitation, she starts conjuring sparks in her hand.<</narrate>>
<<say kylie>>Tell me where to aim!<</say>>
<<say "side" "Customer">>Whoa, whoa, whoa. I'm going, I'm going.<</say>>
<<narrate>>He stands outside the door and shouts inside.<</narrate>>
<<say "side" "Customer">>I ain't ever coming back to this shithole, and I'll make sure nobody else does. You're done. Fucking done.<</say>>
<<narrate>>He immediately starts sprinting as $kylie.name steps forward. You hold her back.<</narrate>>
<<say mc>>He's not worth it. I'll ask $lacy.name if she can identify his signature or whatever and ensure he never returns here.<</say>>
<<say kylie>>I don't know what happened, but your anger was so strong I couldn't help but be drawn to it. Are you sure it's okay to leave him?<</say>>
<<say mc>>Oh, we're not. We'll also be paying him a visit off world. But right now, I need to speak with $waitress.name. Thanks, $kylie.name.<</say>>
<<narrate>>She nods and returns to her own devices. You head over to speak to $waitress.name.<</narrate>>
<<set _nb = true>>
<<event "waitress" "restaurant" 2>>
<<cont "shift">>
<<elseif $active == "waitress" && $waitress.events.restaurant == 2 && $location == "restaurant">>
<<left2 "waitress/restaurant04.jpg">>
<<say waitress>>I'm really sorry, I didn't mean to screw up. Please don't fire me! I really love this job.<</say>>
<<narrate>>You embrace her and hug her tightly.<</narrate>>
<<say mc>>You clearly didn't want him touching you. Why did you allow it?<</say>>
<<say waitress>>It's part of the job...<</say>>
<<narrate>>You push her back and hold on to her shoulders, and look directly into her eyes.<</narrate>>
<<say mc>>No. No it isn't. If it's consensual, fine, have at it. But you do not let anyone touch you like that if you're not into it, okay? I get signals can be misread, but from the way your face soured when he arrived, this is obviously not the first time.<</say>>
<<say waitress>>You're not mad?<</say>>
<<say mc>>I am furious with him. Not with you. I don't know where you've worked before, but that's not okay here.<</say>>
<<say waitress>>But your lust aspect... everything you do and show to travelers, isn't this expected of me?<</say>>
<<say mc>>No. Absolutely not. Things are a lot more open here, sexually, but that doesn't give people the right to do that. This is a restaurant, even in <<if $buildings.brothel == undefined>>in the Glitter Box<<else>> $stripname<</if>>, there are rules against this kind of behavior. If you were into it, that'd be a different thing entirely, though I'd definitely be jealous.<</say>>
<<narrate>>She leans back into you and embraces you, holding back tears.<</narrate>>
<<say waitress>>I really did luck out coming here... thank you, thank you so much!<</say>>
<<narrate>>You try to send her home for the rest of the shift, but she insists she continues working.<</narrate>>
<<think mc>>I should ask $lacy.name if she can identify him. I'm not sure what I'm going to do right now, but I need to do <b>something</b>!<</think>>
<<event "waitress" "restaurant" 3>>
<<elseif $active == "fox" && $fox.events.shift == undefined>>
<<left2 "offworld/fox/work01.jpg">>
<<say "fox">>Boss! Is everything okay?<</say>>
<<say "mc">>Yes, of course. I just thought I'd help out a little today.<</say>>
<<say "fox">>I have done something wrong?<</say>>
<<say "mc">>No, no, not at all. There's no ulterior motive, I'm just here to help.<</say>>
<<say "fox">>So you're not trying to catch me out and fire me?<</say>>
<<say "mc">>What? No. Whatever gave you that idea?<</say>>
<<say "fox">>I've had some bad bosses before... though maybe not so handsome as you.<</say>>
<<say "mc">>Excuse me? Do you think that's appropriate in the workplace?<</say>>
<<say "fox">>Oh, my gosh. I am so sorry, the others they said... I thought... oh, no, please don't fire me!<</say>>
<<say "mc">>Whoa, whoa, whoa! I was messing with you, it was just a joke. I didn't mean to worry you!<</say>>
<<narrate>>She bursts out laughing.<</narrate>>
<<say "fox">>And I turned the tables on you!<</say>>
<<say "mc">>Yep, you got me!<</say>>
<<say "fox">>I'm sure you'll figure out how to get me back... or on my back.<</say>>
<<narrate>>She turns and gets back to work while you slowly realize what she just said.<</narrate>>
<<event fox shift>>
<<elseif $krissy.relief > 1 && $cover != undefined && $cover[$active] != undefined && ($cover[$active] == 'all' || $cover[$active].includes($location)) && ($active != "kayla" || ($active == "kayla" && $kayla.bimbo != true)) && $tempvar3 != "nb">>
<<set _img = getFolder($active) + "/" + $active + "crop.jpg">>
<center><img @src="setup.img+_img" width="450px"></center>
<<notice>>Assist _who.name with her shift... or have some fun?<</notice>>
<<choices>>
<<link "Assist" shift>>
<<set $tempvar3 = "nb">>
<</link>><br>
<<link "Have some fun" shiftcover>>
<</link>>
<</choices>>
<<set _nb = true>>
<<else>>
<<set _img = getFolder($active) + "/" + $active + "crop.jpg">>
<center><img @src="setup.img+_img" width="450px"></center>
<</if>>
<<if _nb == false>>
<<set $tempvar3 = "">>
<<if $nextshift == 20>>
<<set _sb = Math.ceil(_skill/3)>>
<<else>>
<<set _sb = Math.ceil(_skill/4)>>
<</if>>
<<set _sb = _sb * ($nextshift - $hour)>>
<<set _lib = false>>
<<if $location == "lib">>
<<set _lib = true>>
<<narrate>>You and _who.name study together for _hours hours.<</narrate>>
<<else>>
<<narrate>>You help _who.name with their shift for _hours hours.<</narrate>>
<</if>>
<<if _skill < 10>>
<<narrate>><<if _lib == true>>You're not wise enough<<else>>Your skill is too low<</if>> to be helpful, but _who.name is appreciative of the attempt, and the company, and you do learn a little that may help in the future.<</narrate>>
<<elseif _skill <= 33>>
<<narrate>>You've picked up enough to be a little useful to _who.name and you improve their efficiency by _sb%.<</narrate>>
<<elseif _skill <= 66>>
<<set _fg = 3 * _hours>>
<<narrate>>You're getting quite good at this and _who.name can tell. You improve their efficiency by _sb% and reduced their fatigue gain by _fg%.<</narrate>>
<<elseif _skill < 100>>
<<set _fg = 6 * _hours>>
<<narrate>>_who.name can really tell the difference when you're helping out. You improve their efficiency by _sb% and reduced their fatigue gain by _fg%.<</narrate>>
<<set _lug = $nextshift - $hour>>
<<else>>
<<set _fg = 10 * _hours>>
<<set _ub = 2.5 * _hours>>
<<set _lug = $nextshift - $hour>>
<<narrate>>You're a master, _who.name couldn't be more grateful. You improve their efficiency by _sb%, reduced their fatigue gain by _fg%, and reduced the facility's upkeep by _ub%.<</narrate>>
<</if>>
<<shift $active>>
<<if _lib == false && State.variables[$active].traits.includes('exhibitionist')>>
<<narrate>>_who.name showed off to the punters, displaying an awful lot of skin. You're pretty sure people even got a good view of her pussy on several occasions.<</narrate>>
<<think "mc">>I can't believe just how open she's become about her exhibitionism.<</think>>
<<set _lug += $nextshift - $hour>>
<<set _corr = Math.floor(($nextshift - $hour)/2)>>
<</if>>
<<notice>>Your _sn <<if $location != "lib">>skill<</if>> has increased by _sg.<</notice>>
<<if $active == "jade" && checkUnlocks('movie', 'jade', 'ember') == false && $girlsavailable.includes('ember') && getUsableLocation('ember') != 'nope' && ($working['ember'] == undefined || $working['ember'][_shift] == undefined || $working['ember'][_shift] == null)>>
<<say jade>>You know I'm really grateful you and $ember.name employed me.<</say>>
<<say mc>>You do a great job, glad to have you on the team.<</say>>
<<narrate>>$ember.name seems to appear out of nowhere, as if summoned. You can tell she's been drinking.<</narrate>>
<<say ember>>It's all he could do to keep his hands off you!<</say>>
<<narrate>>$jade.name grins at you.<</narrate>>
<<say jade>>There's nothing stopping you...<</say>>
<<say ember>>Let's head over to the pool and have some <b>real</b> fun.<</say>>
<<think mc>>Did $ember.name just wingman me into a threesome with her? I didn't even have to say anything! I love this place.<</think>>
<<temp "jade">>
<<set _return = "embersex">>
<</if>>
<<if $active == "helena" && $helena.events.step == 6>>
<<narrate>>$helena.name grabs your hand and pulls you into the street as soon as the shift is over.<</narrate>>
<<say helena>>Come on, you'll love what I've done with the place.<</say>>
<<temp "house">>
<<set _return = "pristinesex">>
<</if>>
<<button "Continue" _return>>
<<set $mcbonus = [_sb, _fg]>>
<<run skillup(_sn, 'mc', _sg)>>
<<like $active _lg>>
<<if _lug > 0>>
<<lust $active _lug>>
<</if>>
<<if _corr > 0>>
<<corrupt $active _corr>>
<</if>>
<<set $scene = 0>>
<<if _return == "embersex">>
<<time _hours h false>>
<<else>>
<<time _hours>>
<</if>>
<</button>>
<</if>><<set _who = State.variables[$active]>>
<<set $return = returnLocation()>>
<<set $tempvar3 = "cover">>
<<scene>>
<<switch $active>>
<<case "christy">>
<<narrate>>You take a seat on one of the desks and gesture $christy.name over.<</narrate>>
<<left2 "offworld/christy/work03.jpg">>
<<if checkUnlocks('movie', 'lift', 'christy')>>
<<say christy>>I do like it when you come to visit me here... so do the New Edeners.<</say>>
<<say mc>>They're every bit as perverted as you and I!<</say>>
<<narrate>>She cackles.<</narrate>>
<<say mc>>So, going up?<</say>>
<<narrate>>She smirks at you.<</narrate>>
<<say christy>>Talk of the office last time... so absolutely yes.<</say>>
<<else>>
<<say christy>>What's up, boss? Here for a little... team building?<</say>>
<<say mc>>Kinda, remember our fun in the garage?<</say>>
<<narrate>>She grins and tugs at her blouse, revealing even more cleavage.<</narrate>>
<<say christy>>Mostly, but maybe I need a little refresher.<</say>>
<<say mc>>Ha! I figured you'd be game. <<if $krissy.relief == 1>>$krissy.name is gonna cover your shift for a little while... i<<else>>I<</if>>s there somewhere nearby that would allow us to reacquaint ourselves?<</say>>
<<say christy>>Like last time?<</say>>
<<say mc>>Less direct, but otherwise, yes.<</say>>
<<say christy>>I know just the place... you don't care if the New Edeners hear too?<</say>>
<<say mc>>Nope, generally, they're as depraved as me.<</say>>
<</if>>
<<narrate>>She gestures you to the nearby elevator and follows quickly behind, just make it in before the doors auto-close.<</narrate>>
<<vid "offworld/christy/lift01.mp4">>
<<if checkUnlocks('movie', 'lift', 'christy')>>
<<narrate>>Just like last time, as the elevator starts to move, she hits the emergency button.<</narrate>>
<<else>>
<<say mc>>Can you hear above or below or something? Why are we going to another floor?<</say>>
<<narrate>>Just as the elevator starts to move, she hits the emergency button.<</narrate>>
<<say christy>>We ain't going anywhere. Our office is right outside.<</say>>
<<say mc>>Fuck me, this is perfect.<</say>>
<</if>>
<<narrate>>You rip off her blouse and pull down her bra.<</narrate>>
<<say mc>>I want you to squeal my name!<</say>>
<<cont "christysex" "lift01">>
<<case "jade">>
<<say mc>>How about a break?<</say>>
<<if $krissy.relief == 1>>
<<say jade>>It's too busy.<</say>>
<<say krissy>>I'll handle it.<</say>>
<<narrate>>$jade.name looks at you and raises an eyebrow.<</narrate>>
<<say mc>>She'll be fine, come on, let's go chat in the private bar in the back.<</say>>
<<narrate>>You see $krissy.name grimace.<</narrate>>
<<else>>
<<say jade>>It has been manic... might be nice to get my feet up.<</say>>
<<say mc>>And I can treat you to something long and tasty.<</say>>
<<say jade>>Ha!<</say>>
<</if>>
<<cont "othersex" "jadebj01">>
<<case "katie">>
<<narrate>>You walk around the farm with $krissy.name trying to find $katie.name.<</narrate>>
<<say mc "" "(Yelling)" "shout">>$katie.name!<</say>>
<<say katie "" "(Yelling)" "shout">>Greenhouse.<</say>>
<<narrate>>You head to the greenhouse but are still unable to spot her until you hear the plants rustling behind you.<</narrate>>
<<left2 "katie/farm02.jpg">>
<<say katie>>I was just watering the plants. What's up?<</say>>
<<if $krissy.relief == 1>>
<<narrate>>$krissy.name rolls her eyes.<</narrate>>
<<say krissy>>I'll take care of the plants. I'll speak to you later.<</say>>
<<narrate>>There's a sudden mood swing.<</narrate>>
<<say katie>>She'd better not fuck up my plants!<</say>>
<</if>>
<<say mc>><<if $krissy.relief == 1>>Relax, they'll be fine. <</if>>Quite the getup you've got there for this kinda work.<</say>>
<<say katie>>What are you, the fashion police? I can dress how I want.<</say>>
<<say mc>>Yeah... I guess.<</say>>
<<think mc>>I had assumed she was trying to look sexy for me. But I guess not, and she is quite eccentric so maybe this is just how she does things.<</think>>
<<say katie>>So, we gonna fuck?<</say>>
<<narrate>>You're startled by the sudden question. She just eyes you impatiently.<</narrate>>
<<say katie>>I didn't dress like this to fucking water the planets, did I?<</say>>
<<say mc>>I don't think I get you half the time, but I am down.<</say>>
<<say katie>>Oh, not before me, you're not.<</say>>
<<vid "katie/gh00.mp4">>
<<narrate>>She wastes no time removing her clothing then tugs your hand leading you to a clearing that, to your surprise, is furnished.<</narrate>>
<<say katie>>Don't give me that look. Sometimes I just like to take a nap, and it's easier than going home. Besides working to our advantage now, right?<</say>>
<<think mc>>Eccentric as she may be... I guess it's practical.<</think>>
<<narrate>>She crawls up on to the bed.<</narrate>>
<<vid "katie/gh01.mp4">>
<<say katie>>You're telling me you're not seeing the benefits? It's not just for naps...<</say>>
<<narrate>>She tugs at your pants exposing your stiff cock.<</narrate>>
<<cont katiesex gh01>>
<<case "lacy">>
<<left2 "lacy/lab01.jpg">>
<<say mc>>Working hard?<</say>>
<<say lacy>>Of course, I've just started a benchmarking application to measure connection times to different worlds.<</say>>
<<say mc>>Right... yeah... so good time for a break!<</say>>
<<narrate>>She grins.<</narrate>>
<<say lacy>>I see where this is going. And I am most definitely happy to comply.<</say>>
<<left2 "lacy/lab04.jpg">>
<<if $krissy.relief == 1>>
<<say mc>>Great, $krissy.refer will cover your work while you and I spend some time together.<</say>>
<</if>>
<<narrate>>She drops her dress over her shoulders.<</narrate>>
<<say lacy>>Then let us not waste any time. I calculate my benchmarks will be complete in the time it takes me to bring you to orgasm.<</say>>
<<say mc>>Haste makes waste.<</say>>
<<say lacy>>Efficiency is key, $name. Allow me to demonstrate...<</say>>
<<narrate>>She climbs onto you and starts rocking her hips back and forth over your lap as she massages your tongue with her own.<</narrate>>
<<think mc>>I have no idea what she's trying to demonstrate right now, but I'm all for it.<</think>>
<<vid "lacy/work01.mp4">>
<<narrate>>Your cock swells with lust, your trousers ready to rip at any moment as she continues to grind.<</narrate>>
<<say "lacy">>I can feel you're already quite eager to move on. Let's remove these restrictions.<</say>>
<<narrate>>As you begin to undo your jacket, she undoes your belt and pulls your trousers down over your ankles, tossing them in a random direction. She stares at your cock for a moment.<</narrate>>
<<say "lacy">>I do enjoy... collaborating... with you.<</say>>
<<narrate>>She grabs your cock and slowly works your shaft as she brings her face in close, only to take one of your balls in her mouth. As her tongue massages it and shifts it around your scrotum, you can't help but wiggle your ass under the unusual feeling. She giggles as you do so.<</narrate>>
<<say "lacy">>The excitement already getting to you? We've barely begun.<</say>>
<<say "mc">>I've got plenty left in me, don't you worry.<</say>>
<<say "lacy">>I certainly hope so, but right now I think I need a better taste.<</say>>
<<narrate>>Her tongue moves up from your balls, slowly along your shaft and up to your glans. She wraps her tongue around as much of your tip as possible before bringing it into her mouth and bobbing her head with such speed you're once again taken aback.<</narrate>>
<<cont lacysex workbj>>
<<case "kayla">>
<<left2 "kayla/bakery01.jpg">>
<<say kayla>>Heyyyy.<</say>>
<<say mc>>Wanna bunk off and have some fun?<</say>>
<<say kayla>>I've just put some doughnuts in the oven...<</say>>
<<if $krissy.relief == 1>>
<<say mc>><<uf $krissy.refer>> will cover out front... and we can stay in here.<</say>>
<<think mc>>As long as we're loud!<</think>>
<<else>>
<<say mc>>Don't you find the idea of customers catching us thrilling?<</say>>
<</if>>
<<say kayla>>Oh, you're bad! But it was kinda fun last time...<</say>>
<<narrate>>She slowly runs her hands down your body, your dick getting ever harder as she draws closer to your crotch.<</narrate>>
<<left2 "kayla/bakerystrip01.mp4" v>>
<<narrate>>She sweeps away from you as she shows off her killer body.<</narrate>>
<<say "mc">>I'm gonna make you howl!<</say>>
<<say "kayla">>Mhmm, what if someone found us....<</say>>
<<narrate>>She bites her lip at the notion...<</narrate>>
<<say "kayla">>And I'm gonna milk you dry.<</say>>
<<narrate>>You throw your top to one side as your dick struggles for freedom.<</narrate>>
<<left2 "kayla/bakerystrip02.mp4" v>>
<<narrate>>She looks almost predatory as she rubs her pussy through her panties.<</narrate>>
<<say "kayla">>Keep looking at me. I want it. I want your eyes on me.<</say>>
<<narrate>>You tug at your trouser leg while trying not to miss anything she has to show you.<</narrate>>
<<say "kayla">>Show me. Show me how hard I made you.<</say>>
<<narrate>>With one final, ungraceful tug, you manage to slip your trousers off, pulling your briefs with them.<</narrate>>
<<say "kayla">>Oh god, yes, look at that thing. I want it harder. <</say>>
<<narrate>>She continues to rub her pussy as she eyes up your dick.<</narrate>>
<<left2 "kayla/bakerystrip03.mp4" v>>
<<narrate>>You stand naked, admiring her every movement.<</narrate>>
<<say "kayla">>Yes, that's it. Just look at how hard you are. I fucking love it.<</say>>
<<say "mc">>Well, it is kinda your fault.<</say>>
<<say "kayla">>Well then, let me fix it.<</say>>
<<cont kaylasex bakery01>>
<<case "skin">>
<<left2 "offworld/skin/toil01.jpg">>
<<if checkUnlocks('movie', 'toil', 'skin')>>
<<say skin>>I do like it when you come to see me, boss...<</say>>
<<say mc>>Believe me, it's mutual.<</say>>
<<narrate>>She looks over your shoulder, and then around the facility.<</narrate>>
<<say skin>>I'm down for another round.<</say>>
<<narrate>>She pushes you into the toilet.<</narrate>>
<<else>>
<<say skin>>I'm guessing you don't wanna talk about work.<</say>>
<<say mc>>Nope.<</say>>
<<say skin>>Finally ready to show me if you can live up to that reputation of yours?<</say>>
<<say mc>>If you think you can handle it...<</say>>
<<say skin>>Oh, you cheeky little bastard. I'm gonna enjoy breaking you.<</say>>
<<narrate>>She looks over your shoulder, and then around the facility.<</narrate>>
<<say mc>>Breaking me? Ha! Come on, we can use the—<</say>>
<<say skin>>I don't have the patience!<</say>>
<<narrate>>She pushes you into the toilet.<</narrate>>
<<say skin>>I want it now!<</say>>
<<think mc>>Works for me!<</think>>
<</if>>
<<narrate>>The door hasn't even swung shut by the time she's relieved you of your shirt. She squats before you and violently drags your pants down.<</narrate>>
<<cont "othersex" "skin01">>
<<default>>
<<narrate>>You hang around with _who.name for an hour while $krissy.name covers for them, but the moment never seems right to take things further.<</narrate>>
<<button "Continue" $return>>
<<time 1>>
<</button>>
<</switch>><<if $active == undefined>>
<<set _shift = 8>>
<<if $hour < 24>>
<<set _shift = 23>>
<</if>>
<<if $hour < 20>>
<<set _shift = 19>>
<</if>>
<<if $hour < 17>>
<<set _shift = 16>>
<</if>>
<<if $hour < 13>>
<<set _shift = 12>>
<</if>>
<<choices "Choose a Model">>
<div class="flex">
<<for _g range $girlsavailable>>
<<capture _g>>
<<set _girl = State.variables[_g].name>>
<<set _photo = State.variables[_g].photos>>
/* if working, nope. */
<<if _photo == undefined || _photo == false>>
<<continue>>
<</if>>
<<if $working[_g] != undefined>>
<<if $working[_g][_shift] != undefined && $working[_g][_shift] != null>>
<div class="girlChoice" title="" @girl="_g"><img @src="setup.img+'/'+_g+'/'+_g+'crop.jpg'" style="width:200px"><br>
_girl - Unavailable<br>
<<if $working[_g][_shift] == "sparelax">>
Relaxing at the spa
<<else>>
<<set _where = constructs[$working[_g][_shift]].name.toLowerCase()>>
Working the _where
<</if>>
</div>
<<continue>>
<</if>>
<</if>>
<<link '
<div class="girlChoice" title="" @girl="_g"><img @src="setup.img+\'/\'+_g+\'/\'+_g+\'crop.jpg\'" style="width:200px"><br>
_girl
</div>' shoot>>
<<set $active = _g>>
<</link>>
<</capture>>
<</for>>
</div>
<<link "Return" housestuff>><</link>>
<</choices>>
<br>
<<if $breakdone != undefined && $breakdone.studio != undefined && $breakdone.studio.includes('print')>>
<<run calcShoots()>>
<<say "info" "Information">>You receive ⚙️$shootincome resources daily from completed shoots.
<<if $promo != undefined && $promo != true>>
<br>You also gain 😍$shootattr attractiveness by using some of the shoots in your marketing.
<</if>>
<</say>>
<</if>>
<<else>>
<<scene>>
<<if $active == "theodora" && $theodora.events.theored01 == undefined && $shoot == undefined>>
<<run newMessage('theodora', 'shoot')>>
<<run newMessage('theodora', 'shootreply')>>
<<say "theodora">>I'm here! This is so exciting. I can't wait. What do you want me to do?<</say>>
<<say "mc">>Hi $theodora.refer. I packed a bag just back there with a bunch of different outfits. But I figured with what you messaged, we'd just start with some lingerie shots for now.<</say>>
<<say "theodora">>Huh, start?<</say>>
<<narrate>>You decide to try and dodge the question.<</narrate>>
<<say "mc">>So I really liked that photo you messaged me. Red suits you well, there's an outfit just like that in the bag if you want to get changed into that.<</say>>
<<say "theodora">>Oh gosh, I love that lingerie. I feel so womanly in it!<</say>>
<<think "mc">>How on earth is she agreeing to any of this for her first shoot?!<</think>>
<<shoot "theodora" "theored01">>
<<button "Continue" shoot>>
<<set $shoot = "theored01">>
<<temp "new">>
<</button>>
<<run forceRead(State.variables.active)>>
<<elseif $active == "aubree" && $aubree.events.aubrock01 == undefined && $shoot == undefined>>
<<run newMessage('aubree', 'shoot')>>
<<run newMessage('aubree', 'shootreply')>>
<<say "aubree">>Okay, so we're going to do this my way if we're doing it. You need practice, and I've done this a bunch of times. I'm not the best photographer, but I've picked up a few things from my time working with so many of them. I'll go get changed.<</say>>
<<say "mc">>Right, yeah ok.<</say>>
<<think "mc">>Grin and bear it for now. She never remains commanding for long, and once I've got a bit of skill, she'll be putty in my hands.<</think>>
<<narrate>>She returns with a guitar, and to your dismay, fully clothed.<</narrate>>
<<say "aubree">>Why the long face? You didn't really think I was gonna strip down for a newbie on our first shoot, did you?<</say>>
<<think "mc">>Was kinda hoping, yeah.<</think>>
<<say "mc">>What? Of course not, the guitar just took me by surprise.<</say>>
<<say "aubree">>Sure, sure. Help me with the rest of the stuff.<</say>>
<<shoot "aubree" "aubrock01">>
<<button "Continue" shoot>>
<<set $shoot = "aubrock01">>
<<temp "new">>
<</button>>
<<run forceRead(State.variables.active)>>
<<else>>
<<if $shoot == undefined>>
<<if $active == "val" && (getCurrentLocation('val') == planets[characterinfo['val'].home].name || getCurrentLocation('val') == "Off World")>>
<<narrate>>$val.name is currently on her home world, but can be here in roughly twenty minutes.<</narrate>>
<</if>>
<<choices "Which Shoot?">>
<<for _k range State.variables[$active].shoots>>
<<capture _k>>
<<set _v = window.shoots[$active][_k]>>
<<capture _v>>
<<if _v.corrupt != undefined && _v.corrupt > State.variables[$active].corruption>>
_v.name - Needs _v.corrupt corruption<br>
<<else>>
<<link _v.name shoot>>
<<set $shoot = _k>>
<</link>><br>
<</if>>
<</capture>>
<</capture>>
<</for>>
<<link "Never mind" housestuff>>
<<set delete $active>>
<</link>>
<</choices>>
<<else>>
<<switch $shoot>>
<<case "adriared01">>
<<if $adria.events.adriared01 == undefined>>
<<run newMessage('adria', 'shoot')>>
<<run newMessage('adria', 'shootreply')>>
<<run newMessage('adria', 'shootreply2')>>
<<run forceRead(State.variables.active)>>
<<think mc>>Hmm, no reply, and it's been a few minutes now. Given she's seen my... collection, maybe it was hoping for too much.<</think>>
<<narrate>>After thirty minutes, you decide you're wasting your time.<</narrate>>
<<think mc>>Hopefully I've not done too much damage...<</think>>
<<narrate>>As you're about to leave, you hear the front doors clatter.<</narrate>>
<<say adria>>I'm here!<</say>>
<<say mc>>Great let's—<</say>>
<<narrate>>As she takes off her coat, you're lost for words.<</narrate>>
<<say adria>>Oh, no... is it wrong? Do I look awful?<</say>>
<<else>>
<<say adria>>Another shoot with that lingerie? Sure, why not!<</say>>
<<narrate>>She goes into the back and returns ten minutes later.<</narrate>>
<</if>>
<<say mc>>No... you look... incredible! Holy shit, you're sexy as fuck!<</say>>
<<narrate>>You snap a pic while she's trying to formulate a response.<</narrate>>
<<center '/shoots/adriared01/01.jpg'>>
<<say adria>>I'm your $adria.you, tone it down!<</say>>
<<say mc>>Hell no, look at you. <<uf $adria.you>> or not, you gotta appreciate beauty.<</say>>
<<say adria>>You don't think this is a little much? I know I don't have the looks like $aubree.name, but I thought it might be fun to try...<</say>>
<<think adria>>And maybe I'll get into that sick little folder of yours...<</think>>
<<say mc>>You look great. Come on, I'll guide you through some poses.<</say>>
<center>
<img @src="setup.img+'/shoots/adriared01/02.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/adriared01/03.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/adriared01/04.jpg'" class="shootimg">
</center>
<<say mc>>Wow, you're great at this. That outfit was perfect.<</say>>
<<say adria>>Yeah, you like it? I was hoping you would.<</say>>
<<narrate>>She suddenly looks embarrassed.<</narrate>>
<<say adria>>For the shoot, I hoped you'd like it for the shoot!<</say>>
<<say mc>>Oh, yes, keep going! I'll guide you.<</say>>
<center>
<img @src="setup.img+'/shoots/adriared01/05.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/adriared01/06.jpg'" class="shootimg">
</center>
<<say mc>>Okay, now drop to your knees.<</say>>
<<say adria>>Wait... what, what for?<</say>>
<<narrate>>Her eyes dart to your crotch.<</narrate>>
<<say mc>>For some more sexy photos.<</say>>
<<say adria>>Haha... yeah, right, of course.<</say>>
<center>
<img @src="setup.img+'/shoots/adriared01/07.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/adriared01/08.jpg'" class="shootimg">
</center>
<<say mc>>That's good, damn the camera loves you. So hot! Give me more, make it even sexier.<</say>>
<<narrate>>She looks flustered for a moment, but then pushes her bra strap over her shoulder and strikes another pose.<</narrate>>
<center>
<img @src="setup.img+'/shoots/adriared01/09.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/adriared01/10.jpg'" class="shootimg">
</center>
<<say mc>>Hell, yeah, that's what I'm talking about.<</say>>
<<say adria>>This was kinda fun... can I see the pics?<</say>>
<<if $adria.events.adriared01 == undefined>>
<<think mc>>Hmm, is that her way of telling me the shoot is over? Damn, I really thought I was gonna push her so much further.<</think>>
<<say mc>>You did great today. Here, take a look, I'll just finish clearing up.<</say>>
<<say adria>>Oh, it's fine. You get off, I'll freshen up and tidy the equipment away.<</say>>
<<say mc>>Are you sure?<</say>>
<<say adria>>Yeah, yeah, I'd like to.<</say>>
<<say mc>>Okay then... thanks.<</say>>
<<think mc>>Odd...<</think>>
<<else>>
<<narrate>>You look through the camera together.<</narrate>>
<<say adria>>You're really good at this, wow! You make me looks so... hot!<</say>>
<<say mc>>That's all you!<</say>>
<</if>>
<<button "Finish" townhub>>
<<set delete $active>>
<<set delete $shoot>>
<<set delete $temp>>
<<lust "adria" 3>>
<<corrupt "adria" 4>>
<<event "adria" "adriared01">>
<<set $adria.events.sexy++>>
<<time 2>>
<</button>>
<<case "waitout">>
<<say "waitress">>Can we do it outside? There's this bikini I've wanted to show off since $molly.name made it for me.<</say>>
<<say "mc">>Sure, we'll set up with one of the palm trees as backdrop.<</say>>
<center>
<img @src="setup.img+'/shoots/waitout/01.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitout/02.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitout/03.jpg'" class="shootimg">
</center>
<<think "mc">>$molly.name has great taste!<</think>>
<<say "mc">>You're a natural.<</say>>
<<say "waitress">>I'm just posing how you tell me to.<</say>>
<<say "mc">>You'd be surprised how difficult that is for some. It's not as easy as it sounds. You're looking great.<</say>>
<center>
<img @src="setup.img+'/shoots/waitout/04.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitout/05.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitout/06.jpg'" class="shootimg">
</center>
<<say "waitress">>Oops!<</say>>
<<narrate>>She acts innocent as she pulls at the bow on her panties.<</narrate>>
<<think "mc">>Wow. She's got that sexy innocence vibe going.<</think>>
<<say "mc">>Are you sure you want to go that far on your first shoot?<</say>>
<<narrate>>She looks momentarily upset.<</narrate>>
<<say "waitress">>What's wrong, am I not doing it properly? Is it—<</say>>
<<say "mc">>No, you look great. I just didn't want to push you if you weren't comfortable.<</say>>
<center>
<img @src="setup.img+'/shoots/waitout/07.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitout/08.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitout/09.jpg'" class="shootimg">
</center>
<<think "mc">>Well this is way more than I had hoped for!<</think>>
<center>
<img @src="setup.img+'/shoots/waitout/10.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitout/11.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitout/12.jpg'" class="shootimg">
</center>
<<think "mc">>Completely naked and loving life. Wow! She really is a natural.<</think>>
<<say "mc">>These shots are incredible!<</say>>
<<if $waitress.events.waitout == undefined>>
<<say "waitress">>Can I see?<</say>>
<<narrate>>You show her the shots on the camera screen.<</narrate>>
<<say "waitress">>Oh wow, you made me look so hot!<</say>>
<<say "mc">>That was all you.<</say>>
<<narrate>>She blushes.<</narrate>>
<<say "waitress">>Can you send me copies?<</say>>
<<say "mc">>Of course. And are you sure you're okay with these being used on the hub?<</say>>
<<say "waitress">>Oh, I didn't realize that was a thing.<</say>>
<<narrate>>She thinks for a moment.<</narrate>>
<<say "waitress">>So everyone would see me naked?<</say>>
<<say "mc">>Yes. You'll break a lot of hearts and make a lot of women jealous.<</say>>
<<say "waitress">>Can we maybe keep the ones with my petunia private?<</say>>
<<say "mc">>Sorry, petunia?<</say>>
<<say "waitress">>My... uhh... pussy.<</say>>
<<say "mc">>Of course.<</say>>
<<say "waitress">>Great. These are so good!<</say>>
<<say "mc">>We can always do it again sometime.<</say>>
<<say "waitress">>That'd be fun, thanks!<</say>>
<</if>>
<<button "Finish" townhub>>
<<set delete $active>>
<<set delete $shoot>>
<<set delete $temp>>
<<lust "waitress" 5>>
<<event 'waitress' 'waitout'>>
<<time 2>>
<</button>>
<<case "waitswing">>
<<narrate>>As you enter the studio, you're met with an unfamiliar backdrop.<</narrate>>
<<say waitress>>Do you like it?<</say>>
<<narrate>>There's a swinging chair, a shag rug, and some pink lighting. It's not really your taste, but is perfect for a shoot.<</narrate>>
<<say mc>>It's perfect for a shoot. Did you prepare this?<</say>>
<<say waitress>>Yes! I had such fun last time, and it allows me to show off my favorite assets!<</say>>
<<narrate>>You chuckle.<</narrate>>
<<say mc>>You're more than just a pair of tits, you know that right?<</say>>
<<say waitress>>Yeah, yeah, but it's the most important part, huh?<</say>>
<<narrate>>You just shake your head in disbelief as she gets into position, and you pick up the camera.<</narrate>>
<center>
<img @src="setup.img+'/shoots/waitswing/01.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitswing/02.jpg'" class="shootimg">
</center>
<<narrate>>You manage to snap a pic before she's posing, which turns out surprisingly well.<</narrate>>
<center>
<img @src="setup.img+'/shoots/waitswing/03.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitswing/04.jpg'" class="shootimg">
</center>
<<narrate>>She looks increasingly seductive as she grows bolder.<</narrate>>
<<say waitress>>And the moment you've been waiting for...<</say>>
<<center "/shoots/waitswing/05.jpg">>
<<say mc>>Damn, you're beautiful.<</say>>
<<say waitress>>They are, aren't they?<</say>>
<center>
<img @src="setup.img+'/shoots/waitswing/06.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitswing/07.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitswing/08.jpg'" class="shootimg">
</center>
<<say waitress>>Wanna get some different angles of them?<</say>>
<<left2 "/shoots/waitswing/09.jpg">>
<<say mc>>I meant what I said before, you know. You're not just a pair of boobs.<</say>>
<<say waitress>>Yeah, yeah, but it's the part you like most, though.<</say>>
<<say mc>>Is it? What gives you that idea?<</say>>
<<narrate>>She scowls.<</narrate>>
<<say waitress>>You don't like them?<</say>>
<<narrate>>She cups her breasts and bounces them in front of you. Instinctively you take the shot.<</narrate>>
<<center "/shoots/waitswing/10.jpg">>
<<say mc>>You misunderstand. I love your boobs, but I want to see all of you... you're a beautiful woman, $waitress.name.<</say>>
<<say waitress>>You mean... my petunia?<</say>>
<<say mc>>Sure, but all of you. Every part of you is just as sexy as the last.<</say>>
<<narrate>>She blushes and nods.<</narrate>>
<<say waitress>>I can try...<</say>>
<center>
<img @src="setup.img+'/shoots/waitswing/11.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitswing/12.jpg'" class="shootimg">
</center>
<<say mc>>Wow, that's great. Very seductive!<</say>>
<<say waitress>>Yeah... even though the focus isn't on my boobs?<</say>>
<<say mc>>I can't keep repeating it. I want to see all of you, not just your boobs.<</say>>
<<narrate>>She nods.<</narrate>>
<center>
<img @src="setup.img+'/shoots/waitswing/13.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/waitswing/14.jpg'" class="shootimg">
</center>
<<think mc>>Holy shit. She was forward last time, but this time it feels different, like she's trying to impress me specifically.<</think>>
<<if $waitress.events.waitswing == undefined>>
<<say waitress>>That felt... great... can I see?<</say>>
<<say mc>>Of course.<</say>>
<<say waitress>>Wow. Those are so good. And the last ones are just... for you?<</say>>
<<say mc>>If that's what you want.<</say>>
<<narrate>>She nods.<</narrate>>
<</if>>
<<say waitress>>Thanks for this, $name, it was great. I'll speak to you later.<</say>>
<<if $waitress.events.waitswing == undefined>>
<<say mc>>I thought maybe we could hang out?<</say>>
<<say waitress>>Rain check; there's something I want to sort out.<</say>>
<<think mc>>Hmm, I was sure after the tit job, this was going to get me laid...<</think>>
<</if>>
<<button "Finish" townhub>>
<<set delete $active>>
<<set delete $shoot>>
<<set delete $temp>>
<<lust "waitress" 5>>
<<event 'waitress' 'waitswing'>>
<<time 2>>
<</button>>
<<case "aubgames01">>
<<think "aubree">>Shit, I didn't think this through, I just panicked when he found me, but hey, I can put on a show!<</think>>
<center>
<img @src="setup.img+'/shoots/aubgames01/01.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgames01/02.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgames01/03.jpg'" class="shootimg">
</center>
<<think "aubree">>You know what? Screw it, I'm enjoying these shoots. It's not like he's touching me or anything, I should just let go.<</think>>
<center>
<img @src="setup.img+'/shoots/aubgames01/04.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgames01/05.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgames01/06.jpg'" class="shootimg">
</center>
<center>
<img @src="setup.img+'/shoots/aubgames01/07.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgames01/08.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgames01/09.jpg'" class="shootimg">
</center>
<<think "aubree">>This is so much fun; let's really kick it up!<</think>>
<<center '/shoots/aubgames01/10.jpg'>>
<<think "mc">>Did she actually take her panties off? Holy crap!<</think>>
<<think "aubree">>God, this is so hot. Watch me, $name, watch me!<</think>>
<<center '/shoots/aubgames01/12.jpg'>>
<<think "mc">>This can't be real, since when was my $aubree.them <i>this</i> much of a tease.<</think>>
<<center '/shoots/aubgames01/13.jpg'>>
<<think "aubree">>Mhhhm, will you be thinking of me later when you're jacking off?<</think>>
<<center '/shoots/aubgames01/14.jpg'>>
<<think "aubree">>What the hell am I thinking, what the hell am I doing?!<</think>>
<<narrate>>As if suddenly coming to her senses, $aubree.name's whole attitude changes.<</narrate>>
<<say "aubree">>What the hell? I can't believe you let me go this far, perv!<</say>>
<<say "mc">>I didn't let you do anything, and let's not forget it's not the first time you've wanted me to see you naked.<</say>>
<<narrate>>She blushes.<</narrate>>
<<say "aubree">>Ugh, whatever perv. I'm outta here.<</say>>
<<narrate>>She picks up her things and leaves.<</narrate>>
<<button "Finish" townhub>>
<<set delete $active>>
<<set delete $shoot>>
<<set delete $temp>>
<<lust "aubree" 2>>
<<set _corrupt = 4>>
<<if $aubree.events.roomcaught == 3>>
<<set _corrupt = 2>>
<</if>>
<<corrupt "aubree" _corrupt>>
<<event 'aubree' 'aubgames01'>>
<<time 2>>
<</button>>
<<case "aubgarden01">>
<<think "aubree">>Another chance to tease the perv! This time I'm in control of myself.<</think>>
<<say "aubree">>So, what do you have in mind for today?<</say>>
<<think "mc">>That you're going to leave here craving my attention.<</think>>
<<say "mc">>I'd like to head to the garden for a shoot, even got some props.<</say>>
<<say "aubree">>You go to all this expense for a studio, then don't use it?<</say>>
<<say "mc">>Hey, I still needed the equipment!<</say>>
<<narrate>>The two of you head to the garden and the shoot begins.<</narrate>>
<<think "aubree">>I'm not messing around today, I'll prove he's a perv!<</think>>
<center>
<img @src="setup.img+'/shoots/aubgarden01/01.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgarden01/02.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgarden01/03.jpg'" class="shootimg">
</center>
<<think "mc">>Shit, this is so hard not to react.<</think>>
<<say "mc">>Yeah, I guess these are okay. Let's try some other poses.<</say>>
<<think "aubree">>Just ok? Fuck you. I'll show you!<</think>>
<center>
<img @src="setup.img+'/shoots/aubgarden01/04.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgarden01/05.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgarden01/06.jpg'" class="shootimg">
</center>
<<say "mc">>What else you got?<</say>>
<<think "aubree">>The fuck? He should be drooling all over me by now!<</think>>
<center>
<img @src="setup.img+'/shoots/aubgarden01/07.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgarden01/08.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgarden01/09.jpg'" class="shootimg">
</center>
<<say "mc">>Huh, how long did you say you were modeling back home?<</say>>
<<think "aubree">>What's with him today? Fuck it, I'm getting my tits out! I'll catch him perving for sure!<</think>>
<center>
<img @src="setup.img+'/shoots/aubgarden01/10.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgarden01/11.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgarden01/12.jpg'" class="shootimg">
</center>
<<think "aubree">>I've definitely got him now!<</think>>
<<say "mc">>Any other poses you want to try, or are you about ready to wrap up?<</say>>
<<narrate>>She looks at you dumbfounded.<</narrate>>
<<say "aubree">>Wait, what did you think about those last shots?<</say>>
<<say "mc">>Yeah, they were okay.<</say>>
<<think "mc">>Fuck, this is hard.<</think>>
<<think "aubree">>Again, just okay?<</think>>
<<say "aubree">>Oh, right okay. Just a couple more, yeah?<</say>>
<center>
<img @src="setup.img+'/shoots/aubgarden01/13.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubgarden01/14.jpg'" class="shootimg">
</center>
<<think "mc">>Holy shit, she's naked right now, please turn around!<</think>>
<<think "aubree">>This has got to do it, right?<</think>>
<<say "mc">>That the last of them?<</say>>
<<think "aubree">>What the actual fuck?!<</think>>
<<say "aubree">>Uh, yeah, I guess.<</say>>
<<narrate>>She's visibly confused.<</narrate>>
<<think "aubree">>I've got it, I'll invite him to my room and tease him in there, he won't be able to resist!<</think>>
<<say "aubree">>Hey, you wanna come to my room tonight to chat before bed?<</say>>
<<say "mc">>I don't know, I'm pretty tired.<</say>>
<<say "aubree">>Oh come on, it'll be fun!<</say>>
<<think "mc">>Got her!<</think>>
<<say "mc">>I'll think about it.<</say>>
<<button "Finish" townhub>>
<<set delete $active>>
<<set delete $shoot>>
<<set delete $temp>>
<<lust "aubree" 2>>
<<set _corrupt = 3>>
<<if $aubree.events.roomcaught == 3>>
<<set _corrupt = 1>>
<</if>>
<<corrupt "aubree" _corrupt>>
<<like "aubree" 2>>
<<time 2>>
<<event 'aubree' 'aubgarden01'>>
<</button>>
<<case "aubrock01">>
<<think "aubree">>I wonder just how much I can tease him...<</think>>
<<say "aubree">>We'll start with some basics. Pay close attention to my poses and expressions. A good photographer knows how best to direct their model.<</say>>
<<say "mc">>Believe me, I'll be studying you very closely.<</say>>
<<say "aubree">>Ha, perv! I'm your $aubree.you, remember!<</say>>
<<say "mc">>I meant professionally, of course.<</say>>
<<say "aubree">>Yeah, of course you did.<</say>>
<<think "aubree">>Ha! I'm going to tease you so much you get the most uncomfortable boner, then I'll tease you about that too! But let's start slow.<</think>>
<<say "aubree">>Take pictures when I tell you to.<</say>>
<center>
<img @src="setup.img+'/shoots/aubrock01/01.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubrock01/02.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubrock01/03.jpg'" class="shootimg">
</center>
<<say "aubree">>Let's take a look at your pictures then.<</say>>
<<narrate>>You show her the camera screen.<</narrate>>
<<say "aubree">>Well shit, you might have some talent after all. I did the poses, but you chose all the right angles. And the photos are actually focused, you'd be surprised how often that's a problem!<</say>>
<<say "mc">>Great, thanks, $aubree.refer. But really it's all down to the beauty on your side of the lens.<</say>>
<<say "aubree">>Ha! Trying to charm your way into your $aubree.them's pants, huh? Aren't you bold!<</say>>
<<narrate>>Before you get to fake outrage, she quickly moves on.<</narrate>>
<<say "aubree">>Okay stud, for these next few, you try and guide me into poses. Let's see what you can come up with.<</say>>
<<narrate>>You instruct her to do a few poses similar to those she did already.<</narrate>>
<<say "mc">>How about one from the back, turn around and look at me over your shoulder.<</say>>
<<say "aubree">>Good call.<</say>>
<<think "aubree">>Let's see how he reacts to this!<</think>>
<center>
<img @src="setup.img+'/shoots/aubrock01/04.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubrock01/05.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubrock01/06.jpg'" class="shootimg">
</center>
<<say "mc">>Perfect. I can see why you used to do this for a living. You're great at it.<</say>>
<<think "mc">>I'm not gonna mention the ass, I'm enjoying looking at it, and if it was a mistake I don't want it to go anywhere.<</think>>
<<think "aubree">>No reaction? Right, big guns!<</think>>
<<say "aubree">>I've got an idea how to improve the shot.<</say>>
<<narrate>>She unbuttons her leather skirt, lets it fall to her feet, then kicks it away.<</narrate>>
<<say "aubree">>How's this?<</say>>
<<say "mc">>Looking great, what poses do you have in mind?<</say>>
<<think "aubree">>Seriously, nothing? I'm gonna get you hard, $aubree.calls, don't you worry, you'll be embarrassed at the end of this shoot!<</think>>
<center>
<img @src="setup.img+'/shoots/aubrock01/07.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubrock01/08.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/aubrock01/09.jpg'" class="shootimg">
</center>
<<say "mc">>Damn, $aubree.refer, if it weren't for the fact I had a camera, I'd think you were trying to seduce me.<</say>>
<<say "aubree">>That's how you play it, make the camera want you. Seduce whoever is wielding it.<</say>>
<<say "mc">>So you are trying to seduce me?<</say>>
<<say "aubree">>Ha! You wish! Not you specifically, just what you symbolize.<</say>>
<<think "aubree">>Great, now I'm thinking about what would happen if I actually seduced him... and it's kinda turning me on.<</think>>
<<say "aubree">>Okay, one more. I need to go... take care of something.<</say>>
<<center "shoots/aubrock01/10.jpg">>
<<think "mc">>Shit, it's taking all my willpower not to go over there and fuck her brains out.<</think>>
<<say "aubree">>What do you think?<</say>>
<<say "mc">>I think you're incredible.<</say>>
<<narrate>>She looks down at your crotch.<</narrate>>
<<say "aubree">>I can see. Anyway, I need to go take care of something, but I'm up for doing this again.<</say>>
<<think "aubree">>Shit, I wanted to tease and embarrass him, but instead all I've done is got myself so turned on I'm struggling not to jump him.<</think>>
<<think "mc">>Just what is she going to do, I'm quite intrigued.<</think>>
<<choices "Find out?">>
<<if $aubree.events.relationship != "friends">>
<<button "Follow Her" aubreesex>>
<<temp "rockpeep">>
<<set delete $active>>
<<set delete $shoot>>
<<lust "aubree" 2>>
<<set _corrupt = 3>>
<<if $aubree.events.roomcaught == 3>>
<<set _corrupt = 1>>
<</if>>
<<corrupt "aubree" _corrupt>>
<<like "aubree" 2>>
<<event 'aubree' 'aubrock01'>>
<<time 2>>
<</button>>
<<else>>
You made a decision to remain friends, so cannot peep on her.
<</if>>
<br>
<<button "Finish" townhub>>
<<set delete $active>>
<<set delete $shoot>>
<<set delete $temp>>
<<lust "aubree" 2>>
<<set _corrupt = 3>>
<<if $aubree.events.roomcaught == 3>>
<<set _corrupt = 1>>
<</if>>
<<corrupt "aubree" _corrupt>>
<<like "aubree" 2>>
<<event 'aubree' 'aubrock01'>>
<<time 2>>
<</button>>
<</choices>>
<<case "theored01">>
<<think "theodora">>Now that I'm dressed like this, is it really okay to be like this in front of my $theodora.you?<</think>>
<<say "mc">>Everything okay, $theodora.refer?<</say>>
<<say "theodora">>Oh, yeah, just feeling a bit nervous.<</say>>
<<say "mc">>Come on out. I'll help you through it, we'll take it slow and if you're not into it, we just won't continue and nobody else has to see it.<</say>>
<<think "theodora">>Dummy, it's you I'm nervous about!<</think>>
<<say "theodora">>Right, yeah, sure. Two secs.<</say>>
<<block "shoots/theored01/01.jpg">>
<<narrate>>After a minute, she gingerly comes out from behind the screen.<</narrate>>
<<say "mc">>You look incredible!<</say>>
<<say "theodora">>Thanks, but is this really okay?<</say>>
<<say "mc">>We don't have to do anything you don't want to. It was just meant to be a bit of fun, how about we take a few photos and see how you feel after?<</say>>
<<say "theodora">>Yeah, okay.<</say>>
<<think "theodora">>I guess it's no different from how I was dressed in the kitchen...<</think>>
<</block>>
<<narrate>>You direct her into a few safe poses to start, just to get her comfortable.<</narrate>>
<<say "mc">>You're doing great, the camera loves you. For this next one, give me a sultry glance and push your chest forward a bit.<</say>>
<<think "theodora">>This is such a rush!<</think>>
<center>
<img @src="setup.img+'/shoots/theored01/02.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theored01/03.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theored01/04.jpg'" class="shootimg">
</center>
<<think "mc">>Not even the slightest hint of reluctance on that picture. I wonder how far I can take this...<</think>>
<<say "mc">>Face away from me, but then look back over your shoulder.<</say>>
<<block "shoots/theored01/05.jpg">>
<<say "theodora">>Like this?<</say>>
<<say "mc">>Perfect. How are you feeling so far?<</say>>
<<say "theodora">>It is kinda fun! I'm still not sure about sharing them, but I'm enjoying myself!<</say>>
<<say "mc">>We can't hide your beauty from the world! But we can discuss that once we've got all the shots ready.<</say>>
<<say "theodora">>Yeah, I guess. Let's keep going!<</say>>
<</block>>
<<say "mc">>Great, let's do a few on your knees.<</say>>
<<say "theodora">>Like on all fours?<</say>>
<<say "mc">>No, no. Though we can try that too, fully upright still, just on your knees.<</say>>
<<narrate>>You direct her into more poses, taking a few more risks each time.<</narrate>>
<<say "mc">>You're doing great, pull out the waistband a little, give me a sexy look for the camera.<</say>>
<<say "theodora">>Is it really okay for us to do this, you're my $theodora.you after all.<</say>>
<<say "mc">>Better me than some pervert who may take advantage of you. Let's try it out. We can always delete the photos.<</say>>
<<say "theodora">>Okay!<</say>>
<center>
<img @src="setup.img+'/shoots/theored01/06.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theored01/07.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theored01/08.jpg'" class="shootimg">
</center>
<<say "mc">>Fantastic, now let's try that all-fours pose you wanted to try. Give me a sweet smile and look back over at me.<</say>>
<<say "theodora">>That I wanted to try?<</say>>
<<say "mc">>You mentioned it earlier when I asked you to get on your knees.<</say>>
<<say "theodora">>Oh, right, yes.<</say>>
<<center "shoots/theored01/10.jpg">>
<<say "mc">>Great, you're a natural. Give me one more. Sit back on the rug, look at me, and pretend you're trying to seduce your boyfriend.<</say>>
<<say "theodora">>What, like you're my boyfriend?<</say>>
<<say "mc">>If that makes it easier, but I meant the camera.<</say>>
<<think "theodora">>But you know, that kinda makes me want to show more...<</think>>
<<say "theodora">>And nobody will see these unless I agree?<</say>>
<<say "mc">>Of course!<</say>>
<<block "shoots/theored01/11.jpg">>
<<say "mc">>Wow, $theodora.refer, I did not expect you to be so forward!<</say>>
<<say "theodora">>Wait, is this wrong?<</say>>
<<say "mc">>No, it's brilliant. It's fine, certainly seducing the male inside me.<</say>>
<<say "theodora">>Even though you're my $theodora.you?<</say>>
<<say "mc">>I'm still a hot-blooded male that appreciates beauty.<</say>>
<</block>>
<<narrate>>She blushes.<</narrate>>
<<say "theodora">>Yeah, that makes sense. It's not weird because it's a photoshoot!<</say>>
<<say "mc">>Exactly.<</say>>
<<say "theodora">>Okay, I think I'm done.<</say>>
<<narrate>>She pulls her bra back up.<</narrate>>
<<say "mc">>Aww, at least give me the shot I meant a moment ago.<</say>>
<<say "theodora">>Yeah, okay, just one more then.<</say>>
<<say "mc">>Okay, going for the seduction again, but let me give you a bit of extra instruction.<</say>>
<<narrate>>You place the camera down for a moment then go over to her, moving her into position, gently rubbing her thighs as you go. Your penis rock hard, you make no attempt to hide it.<</narrate>>
<<think "theodora">>That bulge is crazy, it feels really good to know he finds me attractive, but is it really okay? I don't know... but it feels okay if it's during a professional shoot, I guess. I mean it's right in my eye line, and he's not making any attempts to hide it, I guess it's just normal.<</think>>
<<center "shoots/theored01/09.jpg">>
<<say "mc">>Perfect. You did great today, I'm already looking forward to the next shoot. I'll text you when I'm ready.<</say>>
<<say "theodora">>Yeah, it was a lot of fun. I'm up for doing it again. Thanks $theodora.calls.<</say>>
<<think "mc">>Can't wait to see how far I can push her!<</think>>
<<button "Continue" townhub>>
<<set delete $active>>
<<set delete $shoot>>
<<set delete $temp>>
<<lust "theodora" 2>>
<<corrupt "theodora" 3>>
<<like "theodora" 2>>
<<time 2>>
<<event "theodora" "theored01">>
<</button>>
<<case "theoblue01">>
<<say "mc">>Wow, you look great!<</say>>
<<narrate>>She grins.<</narrate>>
<<say "theodora">>Thanks $theodora.calls!<</say>>
<<narrate>>You guide her into position for a few shots.<</narrate>>
<center>
<img @src="setup.img+'/shoots/theoblue01/01.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theoblue01/02.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theoblue01/03.jpg'" class="shootimg">
</center>
<<say "mc">>Great, how about some on your knees?<</say>>
<<narrate>>She nods enthusiastically.<</narrate>>
<<think "mc">>Damn, she looks good.<</think>>
<center>
<img @src="setup.img+'/shoots/theoblue01/04.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theoblue01/05.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theoblue01/06.jpg'" class="shootimg">
</center>
<<say "mc">>Okay now give me something sexy, like you're crawling toward me.<</say>>
<<narrate>>She hesitates for a moment, but ultimately complies.<</narrate>>
<center>
<img @src="setup.img+'/shoots/theoblue01/07.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theoblue01/08.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theoblue01/09.jpg'" class="shootimg">
</center>
<<think "mc">>And now let's see if we can push her.<</think>>
<<say "mc">>Brilliant. I know this is only your second shoot, but you're doing so great I think maybe we can start moving to the next level already!<</say>>
<<narrate>>She looks smug.<</narrate>>
<<say "theodora">>Great, just tell me what to do!<</say>>
<<think "mc">>Here goes nothing!<</think>>
<<say "mc">>So just slip your bra down and stare at the camera as if you want to jump it.<</say>>
<<think "theodora">>Hmm, I guess it is what most of the models have to do, and I do want to do this for real... I can always delete the pics if I'm not happy. Sure, let's do it!<</think>>
<<narrate>>To your surprise, after a brief pause for thought, she simply flips her bra down.<</narrate>>
<center>
<img @src="setup.img+'/shoots/theoblue01/10.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theoblue01/11.jpg'" class="shootimg">
</center>
<<say "theodora">>God, I feel so sexy.<</say>>
<<say "mc">>You look incredible.<</say>>
<<set _full = '<<narrate>>You feel your dick starting to stir.<</narrate>>
<<say "theodora">>This feels so freeing, you know what, let\'s go further still!<</say>>
<<say "mc">>Like what do—<</say>>
<<narrate>>She pulls her panties aside, and you quickly fumble with your camera to capture the magic.<</narrate>>
<center>
<img @src="setup.img+\'/shoots/theoblue01/12.jpg\'" class="shootimg">
</center>
<<narrate>>Your cock is rock hard.<</narrate>>
<<say "theodora">>Wow, that felt so naughty but so good! Ha, looks like you enjoyed it too. It\'s kinda distracting, though, can you take care of it before we continue?<</say>>
<<think "mc">>The hell is going on? I thought I was meant to be corrupting her, not the other way around!<</think>>
<<button "Continue" shoot>>
<<set $shoot = "theoblue01-2">>
<</button>>'>>
<<if $theodora.events.theoblue01 != undefined>>
<div id="replace">
<<say "theodora">>That was fun, let's do it again soon!<</say>>
<<say "mc">>You don't want to keep going?<</say>>
<<narrate>>She glances at your crotch.<</narrate>>
<<say "theodora">>I don't have the time to help with your problem right now, maybe another time?<</say>>
<<say "mc">>Sure.<</say>>
<<button "Continue" townhub>>
<<set delete $active>>
<<set delete $shoot>>
<<set delete $temp>>
<<lust "theodora" 2>>
<<corrupt "theodora" 3>>
<<like "theodora" 2>>
<<time 2>>
<</button>>
<<notice>>You can replay the original scene, but will still only receive the diminished corruption benefits.<br>
<<button "Original Scene">>
<<replace "#replace">>
_full
<</replace>>
<<ScrollTo 'replace'>>
<</button>>
<</notice>>
</div>
<<else>>
_full
<</if>>
<<case "theoblue01-2">>
<<say "mc">>Wow, okay, if you're really okay with that.<</say>>
<<narrate>>Before she can question it, you whip out your cock and start stroking while looking directly into her eyes. She looks surprised.<</narrate>>
<<say "theodora">>What the hell are you doing?!<</say>>
<<say "mc">>You told me to take care of it because it was distracting you!<</say>>
<<say "theodora">>I didn't mean like that! This feels worse!<</say>>
<<narrate>>Despite her protesting, you don't stop, and she doesn't take her eyes off of it.<</narrate>>
<<say "theodora">>Wow, you are so big. How long will this take?<</say>>
<<say "mc">>Longer the more you whine. You want to help speed it up? It is kinda your fault.<</say>>
<<think "mc">>How the hell did it get this far so quickly? Not that I'm complaining!<</think>>
<<narrate>>She sighs, but you can't help feel it was for effect.<</narrate>>
<<say "theodora">>What would you have me do?<</say>>
<<think "mc">>Shit, is she for real? Sucking it would be ideal, but I think that might be a bit too far right now.<</think>>
<<say "mc">>Pose for me, as sexy as you can.<</say>>
<center>
<img @src="setup.img+'/shoots/theoblue01/13.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theoblue01/14.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theoblue01/15.jpg'" class="shootimg">
</center>
<<think "mc">>I didn't even ask her to show me her pussy, wow!<</think>>
<<say "mc">>Holy shit, you're incredible.<</say>>
<<say "theodora">>God, this is so wrong, posing for my $theodora.you while he jerks off!<</say>>
<<say "mc">>It's just biology, I can't help it any more than you can help being so damn fine.<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "theodora">>Close yet?<</say>>
<<say "mc">>Not just yet, you wanna give me a proper hand?<</say>>
<<say "theodora">>I'm not touching your dick!<</say>>
<<say "mc">>I didn't mean literally, just come a bit closer, the proximity will speed it along.<</say>>
<<think "mc">>I absolutely meant it literally!<</think>>
<<say "theodora">>Fine!<</say>>
<<narrate>>She bends over right in front of your face, her pussy at eye level, it's all you can do not to bend forward and tuck in.<</narrate>>
<<center "shoots/theoblue01/16.jpg">>
<<say "mc">>Damn, your pussy looks tasty as fuck.<</say>>
<<say "theodora">>Don't you dare! I'm just helping my $theodora.calls with his problem, so we can get back on with the shoot! <i><b>I</b></i> don't need help.<</say>>
<<say "mc">>Oh, shit, $theodora.refer, I'm gonna—<</say>>
<<narrate>>As she turns to face you, you bust your nut, much of it landing firmly on her face. She stares at you blankly for a moment.<</narrate>>
<<block "shoots/theoblue01/17.jpg">>
<<say "theodora">>Are you fucking kidding me?!<</say>>
<<say "mc">>I am so sorry, $theodora.refer, you just turned at the wrong moment!<</say>>
<<say "theodora">>As if this situation wasn't fucked up enough!<</say>>
<<say "mc">>It's fine, it's just biology, it's not like you're sucking my dick!<</say>>
<<say "theodora">>You keep saying it's biology, but why do I get the feeling you wouldn't protest if I tried?<</say>>
<</block>>
<<say "mc">>Because even if you're my $theodora.them, I'm still a hot-blooded heterosexual man!<</say>>
<<say "theodora">>Oh my god! Whatever, like I've said loads of times, it's your problem. Next time I help you out, try not to finish on my face, though.<</say>>
<<think "mc">>Wait next time? Even after all this, she's willing to continue? Ha, I don't think this is just <b>my</b> problem anymore.<</think>>
<<say "mc">>Yeah, sure, so shall we get back on with the shoot?<</say>>
<<say "theodora">>With your cum on my face? Nah, I'm gonna go wash up. We'll chat later.<</say>>
<<say "mc">>Alright, speak to you later.<</say>>
<<think "mc">>Holy fuck, that went way further than I was planning, she is so much more gullible than I thought!<</think>>
<<button "Continue" townhub>>
<<set delete $active>>
<<set delete $shoot>>
<<set delete $temp>>
<<if $theodora.events.theoblue01 != undefined>>
<<lust "theodora" 2>>
<<corrupt "theodora" 3>>
<<like "theodora" 2>>
<<time 2>>
<<else>>
<<if $theodora.corruptmax < 40>>
<<set $theodora.corruptmax = 40>>
<</if>>
<<lust "theodora" 4>>
<<corrupt "theodora" 6>>
<<like "theodora" 1>>
<<time 3>>
<</if>>
<<event 'theodora' 'theoblue01'>>
<</button>>
<<case "theolounge01">>
<<say "mc">>$harley.name confirmed she's happy to promote you if we do her a new shoot!<</say>>
<<say "theodora">>That's fantastic!<</say>>
<<say "mc">>So we're gonna start this shoot a bit more classy and tease the viewer a little before giving them what they really want!<</say>>
<<say "theodora">>Sounds good, thanks $theodora.calls.<</say>>
<<narrate>>She gets changed right in front of you, not even attempting to conceal anything. You already feel your dick stirring. She catches you staring.<</narrate>>
<<say "theodora">>I figure you're gonna see everything anyway, right? So why waste time with modesty now.<</say>>
<<say "mc">>Uh, yeah, of course.<</say>>
<<narrate>>Once she's ready, you take a few shots.<</narrate>>
<center>
<img @src="setup.img+'/shoots/theolounge01/01.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theolounge01/02.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theolounge01/03.jpg'" class="shootimg">
</center>
<<say "mc">>Great, now give me a few different expressions.<</say>>
<center>
<img @src="setup.img+'/shoots/theolounge01/04.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theolounge01/05.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theolounge01/06.jpg'" class="shootimg">
</center>
<<say "mc">>Brill. Now then, enough teasing, let's give them what they really want!<</say>>
<center>
<img @src="setup.img+'/shoots/theolounge01/07.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theolounge01/08.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theolounge01/09.jpg'" class="shootimg">
</center>
<<think "mc">>Holy shit, I know from last time she's happy to show it all, but I at least expected her to start with her tits.<</think>>
<<if $theodora.events.theolounge01 != undefined>>
<div id="replace">
<<say "theodora">>Everything okay?<</say>>
<<say "mc">>I just didn't expect you to go straight to the pussy, it caught me off guard.<</say>>
<<say "theodora">>Oh, no problem!<</say>>
<center>
<img @src="setup.img+'/shoots/theolounge01/16.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theolounge01/17.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theolounge01/18.jpg'" class="shootimg">
</center>
<<button "Continue" townhub>>
<<set delete $active>>
<<set delete $shoot>>
<<set delete $temp>>
<<lust "theodora" 2>>
<<corrupt "theodora" 3>>
<<like "theodora" 2>>
<<time 2>>
<</button>>
<<notice>>You can replay the original scene, but will still only receive the diminished corruption benefits.<br>
<<button "Original Scene" shoot>>
<<set $shoot = "theolounge01-2">>
<</button>>
<</notice>>
</div>
<<else>>
<<button "Continue" shoot>>
<<set $shoot = "theolounge01-2">>
<</button>>
<</if>>
<<case "theolounge01-2">>
<<block "/shoots/theolounge01/10.jpg">>
<<say "theodora">>Everything okay?<</say>>
<<say "mc">>I just didn't expect you to go straight to the pussy, it caught me off guard.<</say>>
<<narrate>>She looks at your crotch.<</narrate>>
<<say "theodora">>Look like you need some help again. Let's hurry that along and get back on with the shoot!<</say>>
<<think "mc">>Honestly, I could probably work through it, but I'm not gonna give up the chance to get my cock out.<</think>>
<</block>>
<<say "mc">>Let's multitask, try to get me off while posing for the camera.<</say>>
<<say "theodora">>Yeah, okay.<</say>>
<center>
<img @src="setup.img+'/shoots/theolounge01/11.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theolounge01/12.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/theolounge01/13.jpg'" class="shootimg">
</center>
<<say "theodora">>Gosh, you're taking your time. Can we speed it up?<</say>>
<<say "mc">>I mean, you could certainly help me with that.<</say>>
<<think "mc">>No way she'll agree to this yet, it's pushing it even for me.<</think>>
<<say "theodora">>Sure, what will you have me do?<</say>>
<<say "mc">>I really enjoyed that reward you gave me the other night, and you mentioned doing more next time?<</say>>
<<say "theodora">>Oh, I don't have my butt plug with me.<</say>>
<<think "mc">>That's what she meant last time? Damn, while still hot, kinda disappointing too, was hoping for a little more hands-on action.<</think>>
<<say "theodora">>No need to look so disappointed. I'm sure we can figure something else out.<</say>>
<<think "mc">>Let's see how far she's willing to go.<</think>>
<<say "mc">>There's a real quick way to sort it... but no, I don't think you'd be able to do that, yet.<</say>>
<<say "theodora">>No, come on. Tell me.<</say>>
<<say "mc">>A blow job is the quickest way.<</say>>
<<narrate>>She looks at your cock, then back at you.<</narrate>>
<<say "theodora">>I guess I should have seen this coming after I mentioned it last time, huh? I don't know, it feels a bit much.<</say>>
<<say "mc">>You said yourself, it's my problem, you're just helping. Doesn't have to mean anything, we're just sorting the issue out, so we can get on with the shoot.<</say>>
<<say "theodora">>Hmm, yeah... I guess...<</say>>
<<narrate>>She tentatively grasps your cock, you feel the sensation of her touch reverberate through your entire body.<</narrate>>
<<think "mc">>I can't believe this is working!<</think>>
<<narrate>>She gets on her knees before you. The entire taboo of the situation is driving you wild.<</narrate>>
<<say "theodora">>Alright, let's do it, at least this way you can't come on my face again!<</say>>
<<center "shoots/theolounge01/14.jpg">>
<<think "mc">>Fuck me, she's gonna swallow too?!<</think>>
<<button "Continue" theodorasex>>
<<temp "loungeshoot">>
<</button>>
<<case "valpool01">>
<<say "val">>I'm here. What we doin'?<</say>>
<<say "mc">>I was thinking off something out by the pool?<</say>>
<<say "val">>Ooh, you wanna feel the air while you ram my tight little pussy, huh?<</say>>
<<say "mc">>I mean... yeah... but the main reason is that I want the aesthetic for the backdrop.<</say>>
<<say "val">>But I'm still getting the ramming, yeah?<</say>>
<<say "mc">>Of course!<</say>>
<<say "val">>Great, give me the outfit and let's go!<</say>>
<<set $shoot = "valpool01-1">>
<<cont "shoot">>
<<case "valpool01-1">>
<<narrate>>As soon as you arrive she tosses of her clothing and puts on her the black lingerie you got for her.<</narrate>>
<<say "val">>Wow, going straight for the sex appeal, huh?<</say>>
<<say "mc">>Hey, if you've got it flaunt it, and fuck me you've got it in spades!<</say>>
<<say "val">>You cheesy mutha fucker.<</say>>
<<say "mc">>Oh, you love it! Come on, strike a few poses for me.<</say>>
<center>
<img @src="setup.img+'/shoots/valpool01/01.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/valpool01/02.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/valpool01/03.jpg'" class="shootimg">
</center>
<<say "mc">>Damn, you're a natural, you don't even need my guidance.<</say>>
<<say "val">>I'm just posing for you, wanna make that dick good and hard ready for my reward.<</say>>
<<say "mc">>Well it's damn well working.<</say>>
<center>
<img @src="setup.img+'/shoots/valpool01/04.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/valpool01/05.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/valpool01/06.jpg'" class="shootimg">
</center>
<<say "mc">>Fuck, just look at that ass. I fucking love it.<</say>>
<<say "val">>Yeah?<</say>>
<<center "shoots/valpool01/07.jpg">>
<<say "mc">>I am rock hard. People'll will come in droves to get even a sniff of you. You're a fucking goddess.<</say>>
<<say "val">>I think we can get you harder still... these next picture are for you and me only, okay?<</say>>
<center>
<img @src="setup.img+'/shoots/valpool01/08.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/valpool01/09.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/valpool01/10.jpg'" class="shootimg">
</center>
<center>
<img @src="setup.img+'/shoots/valpool01/11.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/valpool01/12.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/valpool01/13.jpg'" class="shootimg">
</center>
<<say "mc">>I fucking want every part of your body, holy shit.<</say>>
<<center "comp/back/val02.jpg">>
<<say "val">>Then take me!<</say>>
<<set delete $active>>
<<set delete $shoot>>
<<set delete $temp>>
<<notice>>New backgrounds available for $val.name on your phone and computer.<</notice>>
<<cont "valsex" "valpool01">>
<</switch>>
<</if>>
<</if>>
<</if>><center>
<h1>Skipping!</h1>
<<set _skip = random(1,4)>>
<<set _img = "other/skip"+_skip+".jpg">>
<<center _img>>
</center>
<<timed 0.1s>>
<<if $skipping == true>>
<<if $hour >= 0 && $hour < 8>>
<<goto sleep>>
<<else>>
<<set _h = 23 - $hour>>
<<if _h == 0>><<set _h = 1>><</if>>
<<time _h h false>>
<<goto skipping>>
<</if>>
<<else>>
<<goto "yourroom">>
<</if>>
<</timed>><<scene>>
<<run checkChars()>>
<<if $tasks.ormeet != undefined && $azul.events.night == undefined>>
<<audio "zoop" play>>
<<run setTime(3)>>
<<narrate>>You're awoken by $azul.name tugging at your sheets. You squint as you reply groggily.<</narrate>>
<<say mc>>What is it? What's happened?<</say>>
<<say azul>>I went to Central.<</say>>
<<think mc>>I did wonder where she went, but I'm half-asleep!<</think>>
<<say mc>>Can we discuss this in the morning?<</say>>
<<say azul>>No. It's not... <b>my</b> Central. A completely different council, and I met $or.name.<</say>>
<<left2 "azul/night01.jpg">>
<<narrate>>You sigh and sit up.<</narrate>>
<<say mc>>Okay...<</say>>
<<think mc>>I've not really slept well these last few days and I'm exhausted... why can't this wait?<</think>>
<<if $azul.events.trust == 0>>
<<say azul>>So, are you going to give me my long overdue explanation? I gave you until the morning, but you've had an extra day to consider it given my absence.<</say>>
<<think mc>>$kenna.name seems to think it a good idea. To show faith in $azul.name, but she's worked with $kenzie.name for who knows how long, can I really trust her that easily? She's also met $or.name now, so I can't really hide that part.<</think>>
<div id="replace">
<<notice>>This decision will impact the story for the coming days.<</notice>>
<<choices "Tell her everything?">>
<<link "Yes">>
<<replace "#replace">>
<<say mc>>I apologize about before, with everything going on, I just didn't know what to do.<</say>>
<<say azul>>I understand. That is the only reason I gave you time.<</say>>
<<narrate>>You go on to tell her about the distractions, Rebecca, and meeting $or.name.<</narrate>>
<<say azul>>Is nothing just what it is? Distraction for distractions for bloody distractions. Why are the progeny so... aggravating?!<</say>>
<<say mc>>Tell me about it.<</say>>
<<say azul>>What's interesting is that $or.name didn't mention meeting you in Prime to me whatsoever.<</say>>
<<say mc>>Did you learn much about her?<</say>>
<<event azul trust 'all2'>>
<<include "azulsleep">>
<</replace>>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<say mc>>I'd rather not get into it. I just want to get on with things.<</say>>
<<say azul>>And I want to return home, $name. Your explanation may help me achieve that.<</say>>
<<say mc>>I'm sorry. I can't have $kenzie.name know where I am.<</say>>
<<narrate>>She throws her hands up into the air out of frustration.<</narrate>>
<<say azul>>I don't think you realize how big of a thing this is. If you won't tell me anything, I can't help. But I am not going to play games, $name. I will find my own way back if I must. Just know you've made a huge mistake today.<</say>>
<<narrate>>She zoops away.<</narrate>>
<<think mc>>It's just not worth the risk.<</think>>
<<event "azul" "night" "none">>
<<button "Sleep" sleep>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<else>>
<<include "azulsleep">>
<</if>>
<<elseif $kenna.events.krissy == 3>>
<<run setTime(4)>>
<<narrate>>You're awoken in the early hours by a scratching at your door, followed by groaning. You jump up and out of bed as the door bursts open and $krissy.name falls through it.<</narrate>>
<<say krissy>>Haha... doorsh, eh?<</say>>
<<narrate>>She rolls around on the floor for a moment before being able to get up.<</narrate>>
<<say mc>><<uf $krissy.refer>>, what are you doing here?<</say>>
<<narrate>>Another shadow appears at the door.<</narrate>>
<<say moriah>>I heard the commotion, thought maybe someone had sneaked in... but looks like she's just had a bit too much to drink. I'll leave you to it.<</say>>
<<narrate>>$krissy.name inexplicably starts laughing hysterically.<</narrate>>
<<say krissy>>So... so's you wants yer old $krissy.them, huh? I am sexshy. Just look at my boobies! Hahaha!<</say>>
<<think mc>>Just how much did she have to drink?<</think>>
<<say mc>>Come on, let's get you back to your room.<</say>>
<<say krissy>>No! I want... I want dick.<</say>>
<<think mc>>Yeah, you ain't getting it in this state, I'm pretty sure the movement would make you throw up, never mind anything else.<</think>>
<<say mc>>Yeah... you're in no fit state.<</say>>
<<narrate>>You try grabbing her arm to guide her to her room, but in her drunken defiance, she throws herself back to the floor.<</narrate>>
<<think mc>>I haven't got the patience for this.<</think>>
<<say mc>>Fine, stay in here. But I'm not fucking you when you're this drunk.<</say>>
<<narrate>>There's no response.<</narrate>>
<<say mc>><<uf $krissy.refer>>?<</say>>
<<narrate>>There's a low, ugly gurgling sound.<</narrate>>
<<say krissy>><span class="breathe">*SNORE*</span><</say>>
<<say mc>>Sleep there on the floor for all I care.<</say>>
<<narrate>>Despite your words, you position a pillow under her head and make sure she looks comfortable before returning to your own bed.<</narrate>>
<<button "Sleep" sleep>>
<<set $tempvar3 = "drunkkrissy">>
<<set $kenna.events.krissy = 4>>
<</button>>
<<elseif $geraldtimer == 0>>
<<narrate>>You drift off to sleep...<</narrate>>
<center style="font-size: 300%">Meanwhile, in Gerald's prison...</center>
<<say gerald>>Who are you?<</say>>
<<say hood "???">>Does it matter? I'm here to get you out.<</say>>
<<say gerald>>The guard?<</say>>
<<say hood "???">>She'll live.<</say>>
<<say gerald>>No, that won't do.<</say>>
<<say hood "???">>My orders are specifically not to kill. Let's go.<</say>>
<<narrate>>He grunts.<</narrate>>
<<say gerald>>Whose orders?<</say>>
<<say hood "???">>Do not play dumb.<</say>>
<<say gerald>>I need to make a detour. $name needs to die.<</say>>
<<if $mc.events.eastresolved == "convinced">>
<<say hood "???">>He's off-limits.<</say>>
<<say gerald>>No! I will have his head.<</say>>
<<narrate>>He rages out, his body expanding several sizes and turning red.<</narrate>>
<<say red "Gerald">>He is my prey!<</say>>
<<narrate>>The hooded figure remains unfazed.<</narrate>>
<<say hood "???">>If you do not comply, you will die.<</say>>
<<say red "Gerald">>Ha, you're a puny skinny little girl you could never—<</say>>
<<narrate>>The woman seems to vanish in the air, leaving only a streak of blue as an afterimage. Her knife is around Gerald's neck, a drop of blood runs down its length.<</narrate>>
<<say hood "???">>Move and die. Will you comply?<</say>>
<<narrate>>There's a grunt of submission, and she releases the knife.<</narrate>>
<<say hood "???">>Let's go.<</say>>
<</if>>
<<narrate>>You are awoken not long after.<</narrate>>
<<set $geraldtimer = -1>>
<<cont "sleep">>
<<elseif $geraldtimer == -1>>
<<run setTime(3)>>
<<if $completeTasks.includes('visitgerald2')>>
/* Saw Gerald in prison */
<<left2 "kylie/concern02.jpg">>
<<say kylie>>$name. We've got a problem.<</say>>
<<say mc>>What is it?<</say>>
<<say kylie>>Gerald is gone.<</say>>
<<say mc>>Like... dead?<</say>>
<<say kylie>>No... escaped. That guard we met, barely left alive.<</say>>
<<say mc>>But how? He was underground and barely anyone knew where he was!<</say>>
<<narrate>>$sarge.name comes bounding into your room, and looks sheepish when she sees you talking to $kylie.name.<</narrate>>
<<left2 "east/sarge/night.jpg">>
<<say sarge>>Sorry to impede, but it sounds like you've already discovered what I was sent to tell you. Gerald has escaped.<</say>>
<<say mc>>How?!<</say>>
<<say kylie>>I know I hadn't done that much training back then, but there's no way he should have been able to escape. He must have had help.<</say>>
<<say sarge>>An abomination... I haven't seen the camera footage yet, but it's been described to me as a blue sliver...<</say>>
<<say kylie>>What does that even mean?<</say>>
<<say mc>>It means either she's here... or Gerald was never the only one.<</say>>
<<say sarge>>Only a handful of people knew where he was being held. We're investigating.<</say>>
<<say mc>>Let's go.<</say>>
<<say sarge>>I think that would be ill-advised.<</say>>
<<say mc>>What, why?<</say>>
<<say sarge>>Right now, those aware are on high-alert, trying to focus on rounding up anyone and everyone that could possibly be involved. A quick response is critical. Your presence may jeopardize that.<</say>>
<<say kylie>>She's right. You may be accepted there, but suddenly rocking up demanding answers will only mean they are distracted from rounding everyone up and tracking down the traitor. Your involvement may allow them to escape. Sleep on it, let them handle things tonight before anyone has chance to flee New Eden. I've already asked $lacy.name to turn off the automatons. Nobody will be using the Gateway without your input.<</say>>
<<say mc>>Fine... fine... but tomorrow we need to head to New Eden.<</say>>
<<event "mc" "geraldescape" "kylie">>
<<elseif $mc.events.geraldmentioned != undefined>>
/* Didn't visit Gerald, but told council about him */
<<audio "zoop" play>>
<<narrate>>You hear the zoop noise and groan.<</narrate>>
<<say mc>>What is it now?<</say>>
<<left2 "azul/meeting01.jpg">>
<<say azul>>That Gerald fellow you told us about... well, he's escaped or maybe been kidnapped.<</say>>
<<say mc>>You think it was $founder.name?<</say>>
<<narrate>>$sarge.name comes bounding into your room, and looks sheepish when she sees you talking to $azul.name.<</narrate>>
<<say sarge>>Sorry to impede, but it sounds like you've already discovered what I was sent to tell you. Gerald has escaped.<</say>>
<<say mc>>How?!<</say>>
<<left2 "east/sarge/night.jpg">>
<<say sarge>>An abomination... I haven't seen the camera footage yet, but it's been described to me as a blue sliver...<</say>>
<<say azul>>Sounds like $founder.name gifted more than just Gerald with transformation abilities.<</say>>
<<say mc>>You think she's here too? <</say>>
<<say azul>>From what you've told us... no. I suspect she has no use for Gerald anymore. That said, we don't really understand her intentions, so I can't say for sure. We'll continue with the plan, but I wanted to warn you.<</say>>
<<say mc>>So any ideas who the blue sliver or whatever is?<</say>>
<<say azul>>Whoever did this, I think was aware I had intended to question him again tonight. The timing is too coincidental otherwise... but nobody was aware I was going tonight, only that I would be going soon...<</say>>
<<say sarge>>Only a handful of people knew where he was being held. We're investigating.<</say>>
<<say mc>>Did you get any useful information from him previously that may help, $azul.name?<</say>>
<<say azul>>No. Despite how weak he appears, he shared nothing of value.<</say>>
<<say mc>>Alright, let's head to New Eden.<</say>>
<<say sarge>>I think that would be ill-advised.<</say>>
<<say mc>>What, why?<</say>>
<<say sarge>>Right now, those aware are on high-alert, trying to focus on rounding up anyone and everyone that could possibly be involved. A quick response is critical. Your presence may jeopardize that.<</say>>
<<say azul>>I have no idea who this attractive young woman is... but she's right. If you cause too much of a stink tonight, you'll be distracting the people from doing their job of rounding up all the potential traitors.<</say>>
<<say mc>>Fine... fine... but tomorrow we need to head to New Eden.<</say>>
<<say azul>>Just... stay vigilant. The council will watch over you, but, we aren't omnipresent and we can't leave enforcers here, even disguised, as it would be too obvious. But, the abominations as you so call them won't be able to use your Gateway, I'll make sure of that.<</say>>
<<say mc>>And I just let travelers come through like nothing's happened?<</say>>
<<say azul>>Yes. Let us handle their security.<</say>>
<<say sarge>>I would suggest putting your champions on alert, though.<</say>>
<<think mc>>Plural champions? I guess she still thinks the strays are my champions too... not that that's important right now.<</think>>
<<taskfail "visitgerald2">>
<<taskfail "visitgerald">>
<<event "mc" "geraldescape" "azul">>
<<elseif $mc.events.eastresolved == "convinced">>
/* didn't visit and didn't tell council but did see his transformation so get just Sarge */
<<narrate>>Your door bangs open and $sarge.name bursts through. She immediately looks sheepish, but speaks up.<</narrate>>
<<left2 "east/sarge/night.jpg">>
<<say sarge>>Gerald has escaped.<</say>>
<<say mc>>What?!<</say>>
<<say sarge>>An abomination... I haven't seen the camera footage yet, but it's been described to me as a blue sliver...<</say>>
<<say mc>>Was it $founder.name?<</say>>
<<say sarge>>I don't know. Only a handful of people knew where he was being held. We're investigating.<</say>>
<<say mc>>Let's go.<</say>>
<<say sarge>>I think that would be ill-advised.<</say>>
<<say mc>>What, why?<</say>>
<<say sarge>>Right now, those aware are on high-alert, trying to focus on rounding up anyone and everyone that could possibly be involved. A quick response is critical. Your presence may jeopardize that.<</say>>
<<say mc>>I can help!<</say>>
<<say sarge>>The people working on this need to act immediately to round up everyone that could possibly be involved. If you or I go in there demanding answers, you're just gonna slow them down and give the traitor time to escape/<</say>>
<<say mc>>Fine... fine... but tomorrow we need to head to New Eden.<</say>>
<<say sarge>>I hope it's not overstepping, but I'd like to ask $lacy.name to disable the automatons to make sure he or whatever this blue thing is escape.<</say>>
<<say mc>>Of course.<</say>>
<<taskfail "visitgerald2">>
<<taskfail "visitgerald">>
<<event "mc" "geraldescape" "sarge">>
<<else>>
/* did not see his transformation, did not visit him, and did not tell Selina */
<<narrate>>You hear scratching at your window. As you look up, it slides open.<</narrate>>
<<say mc>>The fuck... who is there?<</say>>
<<narrate>>A deep, raspy voice responds.<</narrate>>
<<say "red" "???">>You're mine, patron.<</say>>
<<say mc>>The fuck are you?<</say>>
<<narrate>>$kylie.name bursts through the door.<</narrate>>
<<say kylie>>You think I wouldn't notice a big, disgusting red blob?<</say>>
<<say "red" "???">>It doesn't matter. I wasn't ready last time. Your champion won't stop me.<</say>>
<<say mc>>Champion? $kylie.name who the fuck is this?<</say>>
<<narrate>>Another figure comes charging into your room. $kylie.name's eye flick to her quickly, then back to Gerald.<</narrate>>
<<say sarge>>It's Gerald! He's escaped. He's not alone, be careful!<</say>>
<<say "red" "Gerald">>I've come for my revenge.<</say>>
<<narrate>>You feel a draft of air and $kylie.name's eyes glow blue.<</narrate>>
<<say "red" "Gerald">>Like me, are you? Well, I'll show you just how weak you are. The patron's power will be mine!<</say>>
<<narrate>>$kylie.name holds out a single finger toward Gerald and an arc of electricity flies through the air pushing him out back through the window with a thud as he lands on the ground.<</narrate>>
<<say "hood" "???">>I should kill you right here for that. He is off-limits.<</say>>
<<narrate>>The three of you race to the window to look at the scene below, but all you see is a blue silhouette disappearing into the distance.<</narrate>>
<<left2 "kylie/concern02.jpg">>
<<say kylie>>I'm going after them.<</say>>
<<say mc>>Whatever that thing is, it's faster than you, and it's had a head start.<</say>>
<<say kylie>>But you can just zoop me there!<</say>>
<<say mc>>Where? I don't know where they've gone.<</say>>
<<narrate>>She grunts with frustration.<</narrate>>
<<say mc>>How did he escape, $sarge.name?<</say>>
<<left2 "east/sarge/night.jpg">>
<<say sarge>>I don't know. Only a handful of people knew where he was being held. They mentioned a blue sliver... I guess we just saw that too. We're investigating everyone who knew where Gerald was kept.<</say>>
<<say mc>>Let's go.<</say>>
<<say sarge>>I think that would be ill-advised.<</say>>
<<say mc>>What, why?<</say>>
<<say sarge>>Right now, those aware are on high-alert, trying to focus on rounding up anyone and everyone that could possibly be involved. A quick response is critical. Your presence may jeopardize that.<</say>>
<<say mc>>I can help!<</say>>
<<say kylie>>As much as it pisses me off, she's right. You may be accepted there, but suddenly rocking up demanding answers will only mean they are distracted from rounding everyone up and tracking down the traitor. Your involvement may allow them to escape. Sleep on it, let them handle things tonight before anyone has chance to flee the hub.<</say>>
<<say mc>>Fine... fine... but tomorrow we need to head to New Eden.<</say>>
<<say kylie>>I'll ask $lacy.name to turn off the automatons and the New Eden gate. Nobody will be using the Gateway without your input.<</say>>
<<taskfail "visitgerald2">>
<<taskfail "visitgerald">>
<<event "mc" "geraldescape" "gerald">>
<</if>>
<<button "Sleep" sleep>>
<<set $tempvar3 = "nightmare">>
<<set delete $geraldtimer>>
<<run cancelSkip()>>
<</button>>
<<elseif $tempvar3 == "limitbroken01">>
<span id="st"></span>
<div id="replaceme">
<<narrate>>You're still asleep when $lexi.name enters the room.<</narrate>>
<<vid "lexi/break01.mp4" 1>>
<<say "lexi">>God, it smells of sweat in here!<</say>>
<<narrate>>She surveys the scene. You're laying on the bed while $lacy.name is sprawled on the sofa with $vanna.name resting on her stomach; both of them a sticky mess. She sighs.<</narrate>>
<<say "lexi">>Well, looks like you guys had fun.<</say>>
<<narrate>>$lacy.name starts to stir.<</narrate>>
<<say "lacy">>I feel so sore.<</say>>
<<narrate>>$lexi.name sits at the edge of your bed.<</narrate>>
<<block "lexi/breakmorn.jpg">>
<<say "lexi">>You and your mom go clean up while I give this place a good deep clean. I'll watch over him for a bit.<</say>>
<<narrate>>$lacy.name nods, prods $vanna.name's cheek to wake her up, then stumbles out of the door back to her own room with her mom in tow.<</narrate>>
<<say "lexi">>You really are a lucky guy to have all these people care so much for you, $lexi.calls.<</say>>
<<narrate>>You answer by snoring, still slumbering and blissfully unaware of her presence.<</narrate>>
<<say "lexi">>Oh, my.<</say>>
<<narrate>>As if suddenly noticing you're naked, she stares at your dick.<</narrate>>
<<think "lexi">>Just look at that beautiful phallus.<</think>>
<</block>>
<<narrate>>She shakes her head as if trying to evict an intrusive thought.<</narrate>>
<<think "lexi">>No, I shouldn't be thinking such things about my $lexi.you, but these fantasies haunt me.<</think>>
<<narrate>>She bites her lip as she continues to stare at your cock.<</narrate>>
<<think "lexi">>But maybe if I just got a closer look, seeing as though it's there and out for all to see already, it may curb these cursed thoughts.<</think>>
<<narrate>>She creeps over and sits on the side of your bed; she inhales deeply before letting out a long breath.<</narrate>>
<<think "lexi">>Just a closer look. Nothing more; it won't mean anything.<</think>>
<<narrate>>She puts her face close to your dick.<</narrate>>
<<think "lexi">>Maybe just a quick touch, too.<</think>>
<<button "Continue">>
<<script>>
window.scrollTo(0, 0);
<</script>>
<<replace "#replaceme">>
<<vid "lexi/breakmorning.mp4" 1>>
<<think "lexi">>What am I doing? This is just plain wrong... but maybe it's the best thing to stop these urges.<</think>>
<<narrate>>You start to stir, and she looks up at you in panic.<</narrate>>
<<think "lexi">>Shit shit shit! Why did I think this was a good idea?!<</think>>
<<narrate>>Despite this, she doesn't seem to let go of your dick. You groggily begin to open your eyes.<</narrate>>
<img class="centerimg" @src="setup.img+'/lexi/breakmorn02.jpg'" style="filter:blur(10px)">
<<narrate>>Blurry-eyed, you make out the silhouette of someone on your bed.<</narrate>>
<<say "mc">>What time is it?<</say>>
<<think "lexi">>Oh, thank God, I don't think he knows what I was doing!<</think>>
<<say "lexi">>It's about $hour, $lexi.calls.<</say>>
<<narrate>>Your vision starts to clear.<</narrate>>
<img class="centerimg" @src="setup.img+'/lexi/breakmorn02.jpg'" style="filter:blur(1px)">
<<think "mc">>Is she...?<</think>>
<<say "mc">>Uhmmm, $lexi.refer...?<</say>>
<<narrate>>As if suddenly realizing she's still holding on to your dick, the fear in her eyes grows tenfold.<</narrate>>
<<think "lexi">>What the hell am I doing?!<</think>>
<<say "lexi">>Sorry dear, just cleaning up. Looks like you went through quite the ordeal. Perhaps you should go back to sleep?<</say>>
<<think "lexi">>Just pretend it's not happening. I can blame it on his delirium, should he ever question it.<</think>>
<<narrate>>You feel your dick slap back against your belly as she lets go, but in your exhausted state all you can manage is a grunt before drifting back to sleep.<</narrate>>
<<think "lexi">>Dammit, $lexi.name, just what the hell have you done?!<</think>>
<<button "Sleep" sleep>>
<<set $tempvar3 = "possessiongained">>
<<corrupt "lexi" 10>>
<</button>>
<</replace>>
<</button>>
</div>
<<else>>
<<end>>
<<if $festdays != undefined && $festdays > 0>>
<<set $festdays = $festday - $day>>
<</if>>
<<if $skipping == true && (($festdays == 5 && $kleio.events.olive == 1) || $festdays == 0)>>
<<set delete $skipping>>
<</if>>
<<if $festday == $day>>
<<taskdone festival5>>
<</if>>
<<if $founder.countdown != undefined>>
<<set $founder.countdown-->>
<</if>>
<<if $kh.events.step == 1>>
<<event kh step 2>>
<</if>>
<<if $kh.events.step == 3>>
<<event kh step 4>>
<</if>>
<<if $kh.events.step == 7 && $neproj != undefined && $neproj.includes('aegis')>>
<<event kh step 8>>
<</if>>
<<if $appraisalCD != undefined>>
<<set $appraisalCD-->>
<<if $appraisalCD <= 0>><<set delete $appraisalCD>><</if>>
<</if>>
<<if $hiringtimer != undefined>>
<<set $hiringtimer-->>
<<if $hiringtimer <= 0>><<set delete $hiringtimer>><</if>>
<</if>>
<<if $melody.days != undefined && $melody.days > 0>>
<<set $melody.days-->>
<</if>>
<<if $sarge.cooldown < 0 || $sarge.cooldown == undefined>>
<<set $sarge.cooldown = 0>>
<</if>>
<<if $sarge.cooldown > 0>>
<<set $sarge.cooldown-->>
<</if>>
<<if $sarge.events.gym == 1>>
<<event sarge gym 2>>
<</if>>
<<if $sarge.events.gym == 3>>
<<event sarge gym 4>>
<</if>>
<<if $melody.events.sister == 'taboo' && ($melody.days == undefined || ($girlsavailable.includes('hm') && $girlsavailable.includes('melody')))>>
<<if $melody.events.sis > 1>>
<<set $melody.days = 7>>
<<else>>
<<set $melody.days = 3>>
<</if>>
<<unavailable "melody">>
<<unavailable "hm">>
<</if>>
<<if $skipping == true>>
<<else>>
<<if $tempvar3 == "drunkkrissy">>
<<narrate>>You don't recall your dreams when you awake.<</narrate>>
<<elseif ($completeTasks.includes('ormeet') || $completeTasks.includes('newsector')) && $mc.events.meanwhile == undefined>>
<<run checkChars()>>
<<debug>>
<<button "Council" sleep>>
<<set $side = "council">>
<<set delete $mc.events.meanwhile>>
<</button>>
<<button "$founder.name" sleep>>
<<set delete $side>>
<<set delete $mc.events.meanwhile>>
<</button>>
<<button "$azul.name Sent" sleep>>
<<set delete $side>>
<<set $mc.events.founderplan = "kayla">>
<<set delete $mc.events.meanwhile>>
<</button>>
<</debug>>
<center style="font-size: 300%">A few days ago, in Prime...</center>
<<event "mc" "meanwhile">>
<<if $side == "own">>
<<temp "meanwhileshared">>
<<include "kenzieanswers">>
<<say ss>>What do you mean?<</say>>
<<say kenzie>>Ugh. I have no energy dealing with you. Let's await my other sister.<</say>>
<<say ss>>You've brought another progeny?<</say>>
<<say kenzie>>Listen to me girl, this is all $founder.name's plan, but she didn't expect me to know, my council is... I don't have to explain myself to the likes of you.<</say>>
<<say ss>>I... Yes, I meant no disrespect. I just need to stop $founder.name.<</say>>
<<narrate>>$kenzie.name rolls her eyes.<</narrate>>
<<say ss>>Can we work together?<</say>>
<<narrate>>$kenzie.name ignores <span class='ssname'>$ss.name</span>. After a few minutes, <span class='ssname'>$ss.name</span> attempts to speak up again.<</narrate>>
<<say ss>>If $founder.name is assaulting your council, why are you here?<</say>>
<<narrate>>$kenzie.name glares at her.<</narrate>>
<<say kenzie>>Your progeny may have granted you passage here, but do not test me, girl. You are not worthy to be here.<</say>>
<<say ss>>But please, we need to stop her!<</say>>
<<say kenzie>>Tell your progeny I will take care of $founder.name. Go. Don't ever come before me again.<</say>>
<<narrate>><span class='ssname'>$ss.name</span> nods and backs away slowly, daring not question any further. She leaves a moment later.<</narrate>>
<<think kenzie>>That sister of mine disrespects father by allowing such people in our lands.<</think>>
<<narrate>>After another thirty minutes, $kenzie.name is growing increasing impatiently.<</narrate>>
<<think kenzie>>Fuck. Have I been betrayed by $name? Was he working with $founder.name all along? Or did $founder.name chose her progeny allies poorly? Fuck, either way, I've wasted enough time here.<</think>>
<<narrate>>She zoops away back to Central.<</narrate>>
<<elseif $mc.events.founderplan == "kayla" || $mc.events.founderplan == "kp">>
/* Azul meets progeny */
<<narrate>>$azul.name is sat in a strange room, her eyes full of wonder as she surveys the alien architecture and technology.<</narrate>>
<<say azul>>Just what is this place...<</say>>
<<narrate>>As she continues to study her environment, a stranger approaches. $azul.name turns to greet them.<</narrate>>
<<left2 "ss/intro02.jpg">>
<<say ss>>$kenzie.name, I am sorry to appear uninvited, but I am <<textbox "$ss.name" $ss.name>>, I am here on behalf of your sister.<</say>>
<<say azul>>$kenzie.name isn't here... she'd be pissed if she knew you were here, though. Only progeny should be here.<</say>>
<<say ss>>I was granted passage here by the progeny. You are?<</say>>
<<say azul>>I serve on the council. $kenzie.name granted me passage here, much like yourself. Though I must say she wasn't exactly thrilled about it, and she's got me locked in this building under strict orders not to touch anything.<</say>>
<<say ss>>She was expecting me?<</say>>
<<narrate>>$azul.name nods.<</narrate>>
<<say azul>>Well, her sister.<</say>>
<<say ss>>What's going on? I came to broker an alliance to stop $founder.name...<</say>>
<<say or>>Ha! Stop her? Let her run loose, I say. Let's see where that takes us. Let's see what Daddy does!<</say>>
<<left2 "or/intro02.jpg">>
<<say azul>>Good. You're both here. $founder.name is currently assaulting Central hoping to take control of $kenzie.name's sector. She wanted the progeny here as part of her plans. You were meant to distract $kenzie.name and keep her here, preventing her from defending the sector.<</say>>
<<say or>>But your little boy wonder tipped her off?<</say>>
<<say ss>>Boy wonder?<</say>>
<<say or>>You two have so little power, what's to stop me simply waltzing in there and taking $kenzie.name's sector for myself?<</say>>
<<say azul>>You are clearly more powerful, but all I need to do is slow you down until $kenzie.name returns.<</say>>
<<say ss>>Please. Let's not fight.<</say>>
<<say or>>Ha! You're a spirited one. I didn't come today to conquer. I came today to add to my collection. Regardless of how strong $kenzie.name is, I only need to find a moment she's at her weakest.<</say>>
<<say azul>>Collection? What are you trying to take?<</say>>
<<say or>>Well, we'll see soon, won't we? We've got a few hours, I'd wager, shall we play a game of cards?<</say>>
<<narrate>>$azul.name and $ss.name and look at each other, confused.<</narrate>>
<<say or>>It's better than fighting, is it not? You want to prevent $founder.name, but it's too late for that. And you, $azul.name, your job is simply to delay me, so why don't we all just have a fun game of cards instead.<</say>>
<<narrate>>The three go on to play cards for the next few hours. $ss.name and $azul.name extremely wary and constantly on edge as the games continue.<</narrate>>
<<say or>>Oh... you feel that? We're close.<</say>>
<<say azul>>What is it?<</say>>
<<narrate>>The lights blink out for a moment, and there's a rush of air in the building.<</narrate>>
<<say or>>It's been a pleasure, ladies. $ss.name, time for us to go.<</say>>
<<narrate>>They both vanish, though from $ss.name's face it's clear she wasn't expecting to be forcefully removed.<</narrate>>
<<say azul>>What the fuck? I need to get to $kenzie.name, now!<</say>>
<<else>>
<<if $side == "council">>
<<temp "meanwhileshared">>
<<include "kenzieanswers">>
<<say or>>You should go and meet her then, sister.<</say>>
<<center "or/intro01.jpg">>
<<say kenzie>>YOU! I should have known.<</say>>
<<say or>>You go, sister... I'll take good care of your property while you're gone.<</say>>
<<else>>
<<narrate>>$kenzie.name is in her home when the door clicks open.<</narrate>>
<<say kenzie>>Who's there? $name if that's you again, so help me I'll—<</say>>
<<left2 "ss/intro02.jpg">>
<<say kenzie>>Who the fuck are you?<</say>>
<<say ss>>I am <<textbox "$ss.name" $ss.name>>, I am here on behalf of your sister.<</say>>
<<say kenzie>>I don't give a shit, how the hell did you come to Prime? This is sacred land!<</say>>
<<say ss>>I serve on the council... a council, my progeny temporarily allowed me passage.<</say>>
<<say kenzie>>What do you want? Why shouldn't I cut you down for your insolence right now?!<</say>>
<<say ss>>To broker peace. $founder.name's plan will plunge the progeny into chaos. We want you to stop her.<</say>>
<<say kenzie>>I am working on it, I have a man inside. Go, before you regret coming here. And don't ever fucking step foot in Prime again. I don't care which of my sisters gives you that ability. The <b>only</b> reason you still stand before me alive, is because I want you to deliver that message to my foolish sister.<</say>>
<<say or>>You never change, do you?<</say>>
<<left2 "or/intro02.jpg">>
<<say kenzie>>YOU! I should have known.<</say>>
<<say or>>$founder.name's plan is action, sister. Your council will fall if you don't go save it. You go, sister... I'll take good care of your property while you're gone.<</say>>
<</if>>
<<say kenzie>>You can't take my sector, $or.name.<</say>>
<<say or>>Maybe not right this moment, but when $founder.name opens the door... well, who is to say what will happen?<</say>>
<<say kenzie>>Father would never allow it!<</say>>
<<narrate>>$or.name chuckles.<</narrate>>
<<say or>>Well, maybe I feel like being a bad girl. Let's see if Daddy punishes me.<</say>>
<<narrate>>$or.name looks over at $ss.name.<</narrate>>
<<say or>>Girl. You have no business being here. You can't hope to negotiate with the likes of her, she sees you as nothing more than a worker ant. You can't prevent what's going to happen.<</say>>
<<say ss>>Progeny fighting would harm us, it's why sectors even exist, please, we must band together to stop $founder.name before this escalates.<</say>>
<<say kenzie>>It's too late for that. GO!<</say>>
<<narrate>>She snaps her fingers and $ss.name vanishes.<</narrate>>
<<say or>>So, what's it going to be, sister? Will you rush off to Central to fight $founder.name, or stay here to keep me company?<</say>>
<<narrate>>$kenzie.name grimaces, and takes a seat across from $or.name.<</narrate>>
<<say kenzie>>I will fucking have your head for this.<</say>>
<<say or>>I'm not here for your sector, $kenzie.name; at least not today.<</say>>
<<say kenzie>>Then leave!<</say>>
<<say or>>No, I want to see what Daddy does when $founder.name makes it through, and then, I'm going to make your latest plaything mine.<</say>>
<<narrate>>The two sit in silence, staring at each other. An angry look of disdain over $kenzie.name's face and a smug grin over $or.name's. Neither one of them willing to budge.<</narrate>>
<<narrate>>This goes on for hours until $kenzie.name falls forward, the color draining from her face.<</narrate>>
<<say or>>I'm sorry, sister.<</say>>
<<say kenzie>>Fuck... fuck... what was that? My power... sapped... if only momentarily. How the fuck did you do that?!<</say>>
<<narrate>>She looks up to see $or.name missing.<</narrate>>
<<say kenzie>>Fuck, fuck, fuck!<</say>>
<<narrate>>She bellows out into the sky, anger exploding from every expletive. Sparks of electricity dance through the air, and the area around her feet blackens.<</narrate>>
<<say kenzie>>FUUUUUCK!<</say>>
<<narrate>>She zoops away to Central, but it's too late. $founder.name is gone, and her sector is offline. <<if $side == "council">>Despite her being prepared, t<<else>>T<</if>>he distraction was a success.<</narrate>>
<</if>>
<<notice>>This is where the main story content for 0.4 ends.<br>You'll be able to continue managing your hub and experience side/flavor content, but the main story will not progress until the next major update.<</notice>>
<<elseif $tempvar3 == "nightmare">>
<<vid "founder/alone01.mp4">>
<<say founder>>There's nobody around.̶̧͍͕͚͔̖͖̙͍̖͈͈̖͓̳͗̀̑͗̓̓̿͆͠.̴̨̡̨̛̭̦͚̭̫̮̃̂̉͑́͂̕̚͝.̵̨̳̤̗͔̭̺͈͙̤̝̯͐̈́̐̾̈́͆͗̔͋͋͋̅̉͋̀̿̿͐̿̊̔͑̅͝͝͝͝.̴̬̏̈́̒̾̓̎̾̌̑̾̆͛̚ nobody to watch you. Nobody.̶̧͍͕͚͔̖͖̙͍̖͈͈̖͓̳͗̀̑͗̓̓̿͆͠.̴̨̡̨̛̭̦͚̭̫̮̃̂̉͑́͂̕̚͝.̵̨̳̤̗͔̭̺͈͙̤͐̈́̐̾̈́͆͗̔͋͋͋̅̉͝͝.̵̝̯͋̀̿̿͐̿̊̔͑̅͝͝.̴̬̏̈́̒̾̓̎̾̌̑̾̆͛̚<</say>>
<<narrate>>You try to speak, but your lips feel stitched together. You try to grunt and murmur yet no sounds are made.<</narrate>>
<<say founder>>Yeah, look in my pretty blue eyes while I stroke your cock.<</say>>
<<narrate>>You're unable to even focus on your own thoughts, it's like static running through your head.<</narrate>>
<<say founder>>.̶̴̧̨̡̨̛͍͕͚͔̖͖̙͍̖͈͈̖͓̳̭̦͚̭̫̮͗̀̑͗̓̓̿͆̃̂̉͑́͂̕̚͠͝.̵̨̳̤̗͔̭̺͈͙̤͐̈́̐̾̈́͆͗̔͋͋͋̅̉͝͝.̵̝̯͋̀̿̿͐̿̊̔͑̅͝͝.̴̬̏̈́̒̾̓̎̾̌̑̾̆͛̚Just you... and me..̶̧͍͕͚͔̖͖̙͍̖͈͈̖͓̳͗̀̑͗̓̓̿͆͠.̴̨̡̨̨̛̭̦͚̭̫̮̳̤̗͔̭̺͈͙̤̃̂̉͑́͂͐̈́̐̾̈́͆͗̔͋͋͋̅̉̕̚͝͝͝.̵̝̯͋̀̿̿͐̿̊̔͑̅͝͝.̴̬̏̈́̒̾̓̎̾̌̑̾̆͛̚<</say>>
<<say founder>>I want you to feel completely B̸̛̛̛͎̜͂̃̃̔̈́̍̅̾̇̃̂̌L̸̛͉͍͓͎͐̿͐͆́̑̈́̎̌͛͊̕͜͝E̷̛͍͖̫͍͇̲̗͖͕̤͐̒̀̿̓̑̄̐͆̿̚͝Ę̸̨̢̯͙̭͔̻̯͈͊͆͌̎̐̈͋͋͂̌̑̒͛͋͜͜͝Ṗ̸̨͈̦̰̠̯̯̿̈́̃̓̐̚͝͝ͅ and ready..̷̧̛̠̳̖̱̟̿ͅͅ.̸̢̛̛̲̟̩͚͚̠̆̊́̂͌͆̾͗̄̌̒͝ͅ.̷̢̡͚̗̫͓͚̙̥̯̱̖͆͋̃<</say>>
<<narrate>>Finally, as the cursed image of $founder.name dissipates you seem to wrest some control over yourself, and you awaken with a start, gasping for breath.<</narrate>>
<<think mc>>The fuck was that?! A fucking nightmare?!<</think>>
<<set _who = 3>>
<<script>>
$('#aftermorn').addClass('noshow');
<</script>>
<<elseif $tempvar != "focused">>
<div id="drift">
<<if $tempvar3 == "carry">>
<<narrate>>You're exhausted, falling in and out of consciousness as someone helps you to your room. As soon as you're inside, you flop on to the bed and drift off to sleep proper.<</narrate>>
<<else>>
<<narrate>>You drift off to sleep.<</narrate>>
<</if>>
</div>
<<if $tempvar2 == "drunk">>
<<set _who = 3>>
<<elseif $shalina.events.bang != undefined && !$completeTasks.includes('meriyareconnect')>>
<<set _who = random(2, 4)>>
<<else>>
<<set _who = random(1, 4)>>
<</if>>
<<if $mc.events.metinspector == 1 && $tasks.inspectgateway != undefined>>
<<run overrideSchedule('kp', 8, 10, "kitchen")>>
<<run overrideSchedule('kp', 10, 13, "office")>>
<<run overrideSchedule('kp', 13, 15, "lounge")>>
<<run overrideSchedule('kp', 15, 18, "gatewaya")>>
<<run overrideSchedule('kp', 18, 20, "gym")>>
<<run overrideSchedule('kp', 20, 22, "pool")>>
<<run overrideSchedule('kp', 22, 24, "bedrooms")>>
<<available "kp">>
<</if>>
<<set _day = dayjs($date).day()>>
<<if $girlsavailable.includes('kp') && (_day == 1 || _day == 4) && $power > 4 && $kp.events.stay == undefined>>
<<set $girlsavailable.delete('kp')>>
<</if>>
<<if $armani.sex > 0 && $cassie.sex > 0 && $lacy.sex > 0 && $molly.sex > 0 && $moriah.sex > 0 && $britt.sex > 0 && $ember.sex > 0 && $vanna.sex > 0 && $voice.events.firstsex != undefined && $voice.events.allsex == undefined && $mc.events.kaylagone == undefined>>
<<narrate>>You're awoken a few minutes later by a strange humming noise at the edge of your bed.<</narrate>>
<<set _s = voiceState()>>
<<set _img = "shalina/0"+_s+".jpg">>
<<set _blur = "blur"+_s>>
<<block _img "" "" _blur>>
<<say "voice">>Amazing! You've done it. I feel new power in all my champions. With a little more practice, I may even be able to return to a corporeal form!<</say>>
<<say "mc">>That's great news!<</say>>
<<say "voice">>Isn't it? Now all eight champions are truly worthy of that title, I'll be able to—<</say>>
<<say "mc">>Wait, did you say eight? There's nine of them.<</say>>
<<say "voice">>No. You're not my champion, you're a patron.<</say>>
<<say "mc">>Not me. There were nine strays before I arrived.<</say>>
<</block>>
<<say "voice">>That's... no, that can't be correct. I only had the power to summon eight.<</say>>
<<say "mc">>Be that as it may, there are nine here. Could you have pulled another through somehow, or maybe pulled two through at once unknowingly?<</say>>
<<say "voice">>No.<</say>>
<<narrate>>Her voice has taken a serious tone. Her answer, abrupt and full of certainty.<</narrate>>
<<say "mc">>Then...?<</say>>
<<say "voice">>Then I think we need to speak in full. Come to my gateway at 09:00.<</say>>
<<narrate>>The humming slows and the coalescence dissipates until both are nothing but memory.<</narrate>>
<<think "mc">>I should know by now, her night visits only ever complicate matters. But can she really not know who her champions are? Do I speak to her, or one of the others, about it first? I'll only time to speak to one person before 09:00 should I choose to.<</think>>
<<notice>>
While this task-chain is technically optional, the way in which it is completed (or ignored) will impact future story events. It may be preferable to make a separate save file in case you wish to return to this point. There's a very slight variance (basically a few lines of dialogue) if you hadn't even triggered this event, but it's insubstantial and otherwise the same as simply ignoring it.<br><br>
If you wish to complete this task proper, it's advisable to handle this ASAP before moving ahead with other story tasks as depending on how far you are along with those, you may not have much time until it handles itself.<br><br>
Potential lewd-content will also differ based on your choices. The missed lewds will be available in the future, but this could potentially be much later in the story.
<</notice>>
<<narrate>>You drift back to sleep thinking about the voice and what this means.<</narrate>>
<<set _who = 1>>
<<event "voice" "allsex">>
<<task "eightchamps">>
<<event "mc" "trans" 0>>
<<event "mc" "sus" 0>>
<<elseif $tempvar == "relaxdream">>
<<vid "dreams/relax.mp4">>
<<narrate>>Your dream is unusually absent of naked women. You feel relaxed and at peace with the world.<</narrate>>
<<set _who = 3>>
<<elseif $kyler.events.step == 2>>
<div id="replace">
</div>
<<temp "dream01">>
<<timed 0.1s>>
<<script>>
$('#replace').wiki(Story.get("kylersex").processText());
$('#aftermorn').addClass('noshow');
<</script>>
<</timed>>
<div id="button">
<<button "Continue">>
<<if $tempvar == "dream01">>
<<temp "dream02">>
<<script>>
$('#replace').html('');
$('#drift').hide();
$('#replace').wiki(Story.get("kylersex").processText());
<</script>>
<<elseif $tempvar == "dream02">>
<<temp "dream03">>
<<script>>
$('#replace').html('');
$('#replace').wiki(Story.get("kylersex").processText());
<</script>>
<<elseif $tempvar == "dream03">>
<<temp "dream04">>
<<script>>
$('#replace').html('');
$('#replace').wiki(Story.get("kylersex").processText());
$('#aftermorn').removeClass('noshow');
$('#button').remove();
<</script>>
<</if>>
<</button>>
</div>
<<elseif $krissy.events.together >= 4 && $krissy.events.dream == undefined && $krissy.fanta.length > 0>>
<div id="replace">
</div>
<<temp "dream01">>
<<timed 0.1s>>
<<script>>
$('#replace').wiki(Story.get("krissysex").processText());
$('#aftermorn').addClass('noshow');
<</script>>
<</timed>>
<div id="button">
<<button "Continue">>
<<if $tempvar == "dream01">>
<<temp "dream02">>
<<script>>
$('#replace').html('');
$('#drift').hide();
$('#replace').wiki(Story.get("krissysex").processText());
<</script>>
<<elseif $tempvar == "dream02">>
<<temp "dream03">>
<<script>>
$('#replace').html('');
$('#replace').wiki(Story.get("krissysex").processText());
$('#button').hide();
<</script>>
<<elseif $tempvar == "dream03">>
<<temp "dream04">>
<<script>>
$('#replace').html('');
$('#replace').wiki(Story.get("krissysex").processText());
$('#aftermorn').removeClass('noshow');
$('#button').remove();
<</script>>
<</if>>
<</button>>
</div>
<<elseif !$completeTasks.includes('shareddreams2') && ($kenna.events.krissy == 6 || $krissy.relief == 4.1) && $krissy.events.sdream == undefined>>
<<narrate>>A strange melody plays in your head as your thoughts drift to recent events with $krissy.name.<</narrate>>
<<vid "krissy/sdream01.mp4">>
<<narrate>>$krissy.name parades in a box, tempting and teasing you, but locked up and just out of reach.<</narrate>>
<<think mc>>Fuck she looks good...<</think>>
<<narrate>>As you reach out to release the gate, you're flung back, and she wags her finger at you.<</narrate>>
<<set $tempvar3 ="krissydream">>
<<set _who = 3>>
<<elseif $anna.events.maid == 4 && $shalina.events.bang != undefined && $anna.events.mature == undefined && $anna.corruption > 79>>
<<vid "anna/mature/dream01.mp4">>
<<narrate>>Your dream feels alive somehow, like you're connected to this unknown blonde riding your dick.<</narrate>>
<<event "anna" "mature">>
<<set _who = 3>>
<<elseif $anna.events.step == 1 && $shalina.events.bang != undefined && $anna.events.relationship == "taboo">>
<<narrate>>You hear the intro to a song you don't recognize then suddenly images of your $anna.them come to mind.<</narrate>>
<<vid "anna/dream03.mp4">>
<<narrate>>Even in your dream world her seductive movements take your breath away, and without the bitchy attitude you can't help but be lost to her charms.<</narrate>>
<<narrate>>You're saddened it's over as you begin to rouse from your slumber.<</narrate>>
<<think "mc">>And that was her clothed. Wow... I wonder if I can get the real one to be like that...<</think>>
<<event "anna" "step" 2>>
<<set _who = 3>>
<<elseif $anna.events.observe >= 4 && $anna.events.step == 3 && $shalina.events.bang != undefined>>
<<narrate>>Unknown music fills your mind followed by visions of your $anna.them dressed in red lingerie.<</narrate>>
<<vid "anna/dream04.mp4">>
<<think "mc">>Damn, these dreams are wild... and they feel so lucid.<</think>>
<<narrate>>You reach out to touch her, but you can't reach. She looks over her shoulder, licks her lips mischievously then steadily blurs into nothingness as you slowly wake.<</narrate>>
<<think "mc">>Again, dammit! Dreamworld $anna.refer is so much more pleasant to deal with!<</think>>
<<event "anna" "step" 4>>
<<set _who = 3>>
<<elseif $sophia.events.buff == 2 && $sophia.corruption > 64 && $shalina.events.bang != undefined>>
<<narrate>>Your vision fades from black and you find your rubbing your cock over your $sophia.them's pussy. The sensation feels so real.<</narrate>>
<<if $defaultRel == "family" || $defaulRel == "step">>
<<vid "sophia/dream02.mp4">>
<<say "sophia">>Ohh~ that's what mommy needs.<</say>>
<<else>>
<<vid "sophia/dream02b.mp4">>
<</if>>
<<think "mc">>Oh, shit this feels so good.<</think>>
<<narrate>>You reach out to grab her breasts but the dreamworld vanishes as she screams.<</narrate>>
<<say "sophia">>Nooo!<</say>>
<<think "mc">>Fuck, what a shitty ending.<</think>>
<<event "sophia" "buff" 3>>
<<set _who = 3>>
<<elseif $whitney.events.royal == 2 && $shalina.events.bang != undefined && $girlsavailable.includes('whitney') && $whitney.events.dream == undefined>>
<<narrate>>You open your eyes to a pair of gorgeous blue eyes staring up at you while devouring your manhood.<</narrate>>
<<vid "whitney/dream01.mp4">>
<<say mc>>Ohh~ fuck.<</say>>
<<narrate>>Though there's an eerie, almost otherworldly ambiance, the pleasure of having $whitney.name suck your cock far outweighs any concerns.<</narrate>>
<<say mc>>Fuck, that's good... bend over, brat, I'm gonna fuck you into submission. Let me show you just what spoiled little bitches get!<</say>>
<<narrate>>She looks at you horrified, and backs away, the dream fading away into nothingness as she does so.<</narrate>>
<<think mc>>Bah!<</think>>
<<event "whitney" "dream">>
<<set _who = 3>>
<<elseif $cassie.sex > 0 && $voice.events.firstsex == undefined>>
<<narrate>>You're awoken a few minutes later by a strange humming noise at the edge of your bed.<</narrate>>
<<set _s = voiceState()>>
<<set _img = "shalina/0"+_s+".jpg">>
<<set _blur = "blur"+_s>>
<<block _img "" "" _blur>>
<<say "voice">>I have no idea what you did today, but I felt a surge in power from a champion.<<if $lacy.sex > 0>> Two of them, in fact.<</if>><</say>>
<<say "mc">>Oh, hello to you too!<</say>>
<<narrate>>There's a brief silence.<</narrate>>
<<say "voice">>Yes, hello. I see you're more accustomed to the situation now if you're able to reprimand me like that.<</say>>
<<say "mc">>Hey, I meant nothing by it, just not used to voices suddenly appearing out of nowhere. Though, it certainly seems to be happening a lot lately.<</say>>
<<say "voice">>Indeed, so what did you do?<</say>>
<</block>>
<<think "mc">>I can't really just tell her we fucked, can I? Is that even likely to be the reason? It did come on after the gateway connected, but I don't want to come off as some sort of pervert, even if I am one, so probably best not to jump to conclusions... but still worth exploring the possibility.<</think>>
<<say "voice">>So...?<</say>>
<<say "mc">>Sorry, just trying to think back through the day. I certainly got closer to $cassie.name, could that be relevant?<</say>>
<<say "voice">>Ah, she's among those I know. Absolutely, I thought that much was already clear, but I had no idea how much power it would siphon. I was worried you were without enough power, and we'd be at this for centuries.<</say>>
<<say "mc">>Centuries? Wait. Among those you know? You don't know all your champions?<</say>>
<<say "voice">>Time I did not have. But the power reserves within you must be deeper than I had thought, we just need to help you unleash them.<</say>>
<<think "mc">>She seems to have ignored the champions questions, we'll definitely come back to that, though.<</think>>
<<say "mc">>Great, more mysteries. I really am starting to think I've fallen into a coma and this is some weird lucid dream.<</say>>
<<say "voice">>Well, whether you're doing it to wake up from your dream, to save yourself, or for any other reason for that matter, do whatever you did with $cassie.name with my other champions too. The sooner I gain power, the sooner I may help you more fully.<</say>>
<<narrate>>The humming slows and the coalescence dissipates until both are nothing but memory.<</narrate>>
<<think "mc">>Great, just what I need, yet more things that don't make sense! Can I even trust that voice? Having said that, sleeping with all her "champions" doesn't seem so bad, I can certainly think of ways to unleash my power in them...<</think>>
<<narrate>>You drift back to sleep thinking about the voice and what this means.<</narrate>>
<<set _who = 1>>
<<event "voice" "firstsex">>
<<elseif $lexi.young == true && checkUnlocks('movie', 'good', 'lexi') == true && $dreamer != undefined && !$dreamer.includes('lexi') && checkUnlocks('movie', 'd1', 'lexi') == false && $completeTasks.includes('shareddreams2')>>
<<narrate>>You open your eyes to find yourself in a pink room.<</narrate>>
<<think mc>>The hell is this?<</think>>
<<say lexi>>God, you look so fucking good...<</say>>
<<narrate>>You turn to see $lexi.name playing with herself.<</narrate>>
<<center "lexi/young/d101.jpg">>
<<say lexi>>You make me so horny, $name... it's so sinful... I am so bad!<</say>>
<<think mc>>I can feel her... we're connected. We're sharing this dream.<</think>>
<<say mc>>And bad girls get punished!<</say>>
<<narrate>>As you start to enjoy, the vision fades and your regular sleep returns.<</narrate>>
<<think mc>>Fuck... I guess I wasn't focused enough on it. But now I know she's open to it, I'll be more prepared next time.<</think>>
<<notice>>You can now focus your dreams on $lexi.name.<</notice>>
<<dreamer "lexi">>
<<set _who = 1>>
<<elseif _who == 1>>
<<if $voicedream == undefined>>
<<set $voicedream = 0>>
<</if>>
<<set $voicedream++>>
<<set _vd = $voicedream>>
<<if $voicedream > $maxvd>>
<<set _vd = random(1,$maxvd)>>
<</if>>
<<set _l = "dreams/shalina/"+_vd+".webp">>
<<center _l>>
<<switch _vd>>
<<case 1>>
<<think "mc">>Man, what a beauty. Wish she was sucking my dick for real.<</think>>
<<case 2>>
<<think "mc">>Seems familiar. God, even in my dream, this feels amazing.<</think>>
<<case 3>>
<<think "mc">>Oh, god, yes, suck it, bitch.<</think>>
<<think "mc">>I love dreaming about this whore.<</think>>
<<case 4>>
<<think "mc">>Take it down your throat, slut. You're my little cumslut!<</think>>
<<case 5>>
<<think "mc">>She brought a friend to my dream today?<</think>>
<<think "mc">>You sluts better take real good care of my dick.<</think>>
<<case 6>>
<<think "mc">>Oh yes, finally getting to fuck my literal dream girl!<</think>>
<<case 7>>
<<think "mc">>Fuck me, I love these dreams.<</think>>
<<case 8>>
<<think "mc">>Scream for me, whore!<</think>>
<<case 9>>
<<think "mc">>Who is my little anal slut?!<</think>>
<<say "shalina">>I think of nothing more than your cock! Fill my every hole!<</say>>
<<think "mc">>These dreams are becoming more lucid. Fuck yeah, I'll fill your every hole, slut!<</think>>
<<case 10>>
<<say "shalina">>Your dick is huge.<</say>>
<<think "mc">>And your ass is tight as hell, ride me hard you dirty fucking slut!<</think>>
<<case 11>>
<<say "shalina">>Destroy my ass. Make me your cumslave!<</say>>
<<think "mc">>You're gonna need help walking for a few days.<</think>>
<<case 12>>
<<if $voiceshare == undefined>>
<<think "mc">>Wait, I'm sharing her with someone?<</think>>
<<script>>
$(document).one(':passageend', function (ev) {
$('.sleepinterupt').addClass('noshow');
})
<</script>>
<<choices "Okay with this?" "yesno">>
<<link "Fuck, yeah">>
<<set $voiceshare = 1>>
<<toggleclass "#yesno" noshow>>
<<if $whitney.events.daysstay == 0 && $girlsavailable.includes('whitney')>>
<<toggleclass '#aftermorn2' 'noshow'>>
<<else>>
<<toggleclass '.sleepinterupt' 'noshow'>>
<</if>>
<</link>>
<br>
<<link "Fuck, no">>
<<set $voiceshare = 0>>
<<set $maxvd = 11>>
<<toggleclass "#yesno" noshow>>
<<if $whitney.events.daysstay == 0 && $girlsavailable.includes('whitney')>>
<<toggleclass '#aftermorn2' 'noshow'>>
<<else>>
<<toggleclass '.sleepinterupt' 'noshow'>>
<</if>>
<</link>>
<</choices>>
<<else>>
<<think "mc">>You like being passed around, you fucking whore?<</think>>
<<say "shalina">>Use me. I'm your fuck doll. Do whatever you want, I fucking crave it!<</say>>
<</if>>
<<case 13>>
<<think "mc">>You like it when we fuck your ass and pussy together?<</think>>
<<say "shalina">>I fucking love it. It's unreal, god, please don't stop!<</say>>
<<case 14>>
<<think "mc">>We're gonna destroy your holes. You're not gonna be able to get outta bed for days.<</think>>
<<say "shalina">>Do it, fill my holes with your cocks. Teach your cumslut why you're the boss.<</say>>
<<think "mc">>Scream my name, let everyone know who's your fucking master, bitch.<</think>>
<<set _n = $name.toUpperCase()>>
<<say "shalina" "" "(Shouting)" "shout">>_n!!! Fuck yes, $name, yes.<</say>>
<</switch>>
<<elseif _who == 2 && $completeTasks.includes('docs') && $tempvar != "armanibash">>
<<script>>
$(document).one(':passageend', function (ev) {
$('.sleepinterupt').addClass('noshow');
})
<</script>>
<div id="replace">
<<choices "As you fall to sleep, your thoughts drift to...">>
<div class="flex">
<<link '<div class="girlChoice hover"><img @src="setup.img+\'krissy/krissycrop.jpg\'"><br>
Your $krissy.them, $krissy.name
</div>'>>
<<replace "#replace">>
<<vid "krissy/dream03.mp4">>
<<narrate>>You dream you're fucking your $krissy.them, and she's loving it.<</narrate>>
<<if $tasks.libido == undefined && !$completeTasks.includes('libido')>>
<<think "mc">>Fuck, this is damn hot... but since I got here I'm just constantly horny, and I'd never thought about $krissy.refer like this before coming here. Maybe I should ask $kp.name or $voice.name about this...<</think>>
<<task "libido">>
<</if>>
<</replace>>
<<if $whitney.events.daysstay == 0 && $girlsavailable.includes('whitney')>>
<<toggleclass '#aftermorn2' 'noshow'>>
<<else>>
<<toggleclass '.sleepinterupt' 'noshow'>>
<</if>>
<</link>>
<<if $girlsmet.includes('sophia')>>
<<link '<div class="girlChoice hover"><img @src="setup.img+\'sophia/sophiacrop.jpg\'"><br>
Your $sophia.them, $sophia.name
</div>'>>
<<replace "#replace">>
<<vid "sophia/dream01.mp4">>
<<narrate>>You dream your $sophia.them is riding your cock and on the edge of an orgasm.<</narrate>>
<<if $tasks.libido == undefined && !$completeTasks.includes('libido')>>
<<think "mc">>Fuck, this is damn hot... but since I got here I'm just constantly horny, and I'd never thought about $sophia.refer like this before coming here. Maybe I should ask $kp.name or $voice.name about this...<</think>>
<<task "libido">>
<</if>>
<</replace>>
<<if $whitney.events.daysstay == 0 && $girlsavailable.includes('whitney')>>
<<toggleclass '#aftermorn2' 'noshow'>>
<<else>>
<<toggleclass '.sleepinterupt' 'noshow'>>
<</if>>
<</link>>
<</if>>
<<link '<div class="girlChoice hover"><img @src="setup.img+\'kenna/kennacrop.jpg\'"><br>
Your $kenna.them, $kenna.name
</div>'>>
<<replace "#replace">>
<<vid "kenna/dream01.mp4">>
<<narrate>>You dream your $kenna.them is riding your cock while screaming your name.<</narrate>>
<<if $tasks.libido == undefined && !$completeTasks.includes('libido')>>
<<think "mc">>Fuck, this is damn hot... but since I got here I'm just constantly horny, and I'd never thought about $kenna.refer like this before coming here. Maybe I should ask $kp.name or $voice.name about this...<</think>>
<<task "libido">>
<</if>>
<</replace>>
<<if $whitney.events.daysstay == 0 && $girlsavailable.includes('whitney')>>
<<toggleclass '#aftermorn2' 'noshow'>>
<<else>>
<<toggleclass '.sleepinterupt' 'noshow'>>
<</if>>
<</link>>
<<link '<div class="girlChoice hover"><img @src="setup.img+\'anna/annacrop.jpg\'"><br>
Your $anna.them, $anna.name
</div>'>>
<<replace "#replace">>
<<vid "anna/dream02.mp4">>
<<narrate>>You dream of your $anna.them, her lustful stare driving you wild as you thrust deep within her pussy.<</narrate>>
<<if $tasks.libido == undefined && !$completeTasks.includes('libido')>>
<<think "mc">>Fuck, this is damn hot... but since I got here I'm just constantly horny, and I'd never thought about $anna.refer like this before coming here. Maybe I should ask $kp.name or $voice.name about this...<</think>>
<<task "libido">>
<</if>>
<</replace>>
<<if $whitney.events.daysstay == 0 && $girlsavailable.includes('whitney')>>
<<toggleclass '#aftermorn2' 'noshow'>>
<<else>>
<<toggleclass '.sleepinterupt' 'noshow'>>
<</if>>
<</link>>
<<if $girlsmet.includes('theodora')>>
<<link '<div class="girlChoice hover"><img @src="setup.img+\'theodora/theodoracrop.jpg\'"><br>
Your $theodora.them, $theodora.name
</div>'>>
<<replace "#replace">>
<<vid "theodora/dream01.mp4">>
<<narrate>>You dream you're fucking your $theodora.them as she screams your name.<</narrate>>
<<if $tasks.libido == undefined && !$completeTasks.includes('libido')>>
<<think "mc">>Fuck, this is damn hot... but since I got here I'm just constantly horny, and I'd never thought about $theodora.refer like this before coming here. Maybe I should ask $kp.name or $voice.name about this...<</think>>
<<task "libido">>
<</if>>
<</replace>>
<<if $whitney.events.daysstay == 0 && $girlsavailable.includes('whitney')>>
<<toggleclass '#aftermorn2' 'noshow'>>
<<else>>
<<toggleclass '.sleepinterupt' 'noshow'>>
<</if>>
<</link>>
<</if>>
</div>
<</choices>>
</div>
<<elseif _who == 2>>
<<narrate>>You don't recall your dreams when you awake.<</narrate>>
<<else>>
<<narrate>>You have a vivid dream; it almost feels real.<</narrate>>
<<set _vd = random(1,69)>>
<<set _l = "dreams/"+_vd+".webp">>
<<center _l>>
<</if>>
<<else>>
<</if>>
<br>
<<if $kp.events.wait == 1>>
<<set delete $kp.events.wait>>
<</if>>
<<if $kp.events.wait == 2>>
<<set $kp.events.wait = 1>>
<</if>>
<<if $power < 3 && $girlsmet.includes('val') && $girlsmet.includes('harley') && $girlsmet.includes('whitney')>>
<<set $power = 3>>
<</if>>
<<if $power > 2 && $completeTasks.includes('harleyreturn') && $completeTasks.includes('bufferfin2') && !$girlsmet.includes('kp') && $mc.events.metinspector == undefined && !$girlsavailable.includes('harley') && $kp.events.wait == undefined>>
<<task "checkoffice">>
<<elseif $power > 2 && $completeTasks.includes('harleyreturn') && $completeTasks.includes('bufferfin2') && !$girlsmet.includes('kp') && $mc.events.metinspector == undefined && $girlsavailable.includes('harley') && $kp.events.wait == undefined>>
<<task "sendharleyhome">>
<</if>>
<<set _interupt = false>>
<<if $mc.events.kaylaconfess == 1 && $power > 5>>
<<set _interupt = true>>
<div id="aftermorn2" class="sleepinterupt">
<<narrate>>You hear your door slam open.<</narrate>>
<<block "kayla/confess01.jpg">>
<<say "kayla">>We've got trouble!<</say>>
<<say "mc">>What's wrong, $kayla.name?<</say>>
<<narrate>>You can't help but notice how damn hot she looks in that outfit.<</narrate>>
<<say "kayla">>It's all my fault! They don't believe me, they think you're a danger!<</say>>
<<say "mc">>Slow down. Tell me what's going on.<</say>>
<<say "kayla">>You know how I said I contacted the east to let them know you weren't looking to destroy them? Well they responded this morning, they don't agree.<</say>>
<</block>>
<<say "mc">>And what does that mean?<</say>>
<<say "kayla">>It means they're coming.<</say>>
<<say "mc">>Understood. Let me get dressed and we'll discuss with $armani.name and $moriah.name.<</say>>
</div>
<</if>>
<<if $harley == undefined>>
/*<<run checkChars()>>*/
<</if>>
<<if $harley.events.return > 1 && $harley.events.denied == undefined>>
<<set $harley.events.return-->>
<</if>>
<<if $harley.events.visit > 0 && $harley.events.denied == undefined>>
<<set $harley.events.visit-->>
<<if $harley.events.visit == 0>>
<<unavailable "harley">>
<<set $harley.events.visit = 7>>
<</if>>
<</if>>
<<if $valdays > 0>>
<<set $valdays-->>
<</if>>
<<if $anna.mnow != undefined>>
<<set $anna.mnow = undefined>>
<</if>>
<<if $kylie.follow != undefined>>
<<set $kylie.follow-->>
<<if $kylie.follow == 0>>
<<set $kylie.follow = undefined>>
<</if>>
<</if>>
<<if $maddy.events.unrelax != undefined && $maddy.events.unrelax == 1.5>>
<<event "maddy" "unrelax" 1.75>>
<</if>>
<<if $maddy.events.mats != undefined>>
<<if $maddy.events.mats == 7>>
<<set $matsFound += 2>>
<</if>>
<<set $maddy.events.mats-->>
<<if $maddy.events.mats == 0>>
<<set $maddy.events.mats = undefined>>
<<if $lacy.events.minigateway == 1>>
<<run queueMessage(2, 'lacy', 'mats')>>
<</if>>
<</if>>
<</if>>
<<if $matsFound >= 4 && $lacy.events.minigateway == 1>>
<<run newMessage("lacy", "nestart")>>
<</if>>
<<if $val.explorer == 1>>
<<available "val">>
<<explorer "val">>
<<run overrideSchedule('val', 8, 13, "games")>>
<<run overrideSchedule('val', 13, 24, "Off World")>>
<<set delete $val.explorer>>
<</if>>
<<if $whitney.events.daysstay > 0 && $girlsavailable.includes('whitney')>>
<<set $whitney.events.daysstay-->>
<</if>>
<<if $attractiveness >= 5>>
<<taskdone "attr5">>
<</if>>
<<if $attractiveness >= 5 && !$girlsmet.includes('harley') && $tasks.harley == undefined && ($girlsmet.includes('theodora') || $charlie.events.arrived != undefined) && $expeditions != undefined>>
<<task "harley">>
<</if>>
<<if $whitney.events.sentaway != undefined && !$girlsmet.includes('val') && $tasks.val == undefined && $expeditions != undefined>>
<<task "val">>
<</if>>
<<if $attractiveness < 5 && $girlsmet.includes('val') && $tasks.attr5 == undefined>>
<<task "attr5">>
<</if>>
<<if $tempvar == "armanibash">>
<<script>>
$(document).one(':passageend', function (ev) {
$('.sleepinterupt').addClass('noshow');
$('#armanibash').wiki(Story.get("armanibash").processText());
})
<</script>>
<div id="armanibash">
</div>
<<temp "">>
<</if>>
<<if _who == 2 && $completeTasks.includes('docs')>>
<<script>>
$(document).one(':passageend', function (ev) {
$('.sleepinterupt').addClass('noshow');
})
<</script>>
<</if>>
<<if $neweden == true && ($whitney.events.dream >= 2 && $whitney.events.dream <= 4)>>
<<set $whitney.events.dream++>>
<</if>>
<<if $whitney.events.dream == 5 && $monique.events.whitneytxt == undefined>>
<<run queueMessage(0, 'monique', 'whitney')>>
<</if>>
<<if $cassie.events.porno == 1>>
<<set $cassie.events.porno = 2>>
<</if>>
<<if $armani.events.buzzpeek != undefined && $armani.lust > 9 && $armani.events.fingerme == undefined>>
<<set _interupt = true>>
<<block "armani/morning01.jpg">>
<<narrate>>Your door suddenly swings open, slamming against the wall. Startled, you jump up and start looking for a weapon.<</narrate>>
<<say "armani">>What the fuck are you doing?<</say>>
<<say "mc">>I thought there was an intruder!<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "armani">>Ugh. Moron.<</say>>
<<narrate>>You sigh.<</narrate>>
<</block>>
<<say "mc">>What do you want?<</say>>
<<say "armani">>You're going to help me. In the lounge after 22:00.<</say>>
<<say "mc">>Help with what?<</say>>
<<say "armani">>Getting off.<</say>>
<<say "mc">>Sorry, what?<</say>>
<<narrate>>She's already strutting off.<</narrate>>
<<say "armani">>Don't be late!<</say>>
<<think "mc">>Shit, she scares the shit outta me but damn what I'd do to bury my dick in that ass.<</think>>
<<event "armani" "fingerme">>
<</if>>
<div id="aftermorn2" class="sleepinterupt">
<<if $tempvar == "theosex">>
<<set _interupt = true>>
<<narrate>>When you wake up, $theodora.name is gone, but you see $vanna.name at the door.<</narrate>>
<<say "vanna">>Gutted I missed it. But from seeing her face this morning, I'm pretty sure it all worked out.<</say>>
<<narrate>>You grin at her.<</narrate>>
<<say "vanna">>Now, there's something you can help me with in return. We'll talk later.<</say>>
<<temp "">>
<<elseif $whitney.events.daysstay == 0 && $girlsavailable.includes('whitney') && $whitney.events.dream != 1>>
<<set _interupt = true>>
<<narrate>>You hear someone tutting loudly. You try to turn over and ignore it, but it just gets louder.<</narrate>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#aftermorn').addClass('noshow');
})
<</script>>
<<say "mc">>God, who is it, what do you want?<</say>>
<<left2 "whitney/morning01.jpg">>
<<say "whitney">>Well, that's no way to speak to a lady, is it?<</say>>
<<say "mc">>What do you want?<</say>>
<<say "whitney">>I'm going home, will you send me?<</say>>
<<if $tempvar3 == "drunkkrissy">>
<<narrate>>She gives you a quizzical look when she notices $krissy.name sleeping on the floor.<</narrate>>
<<say whitney>>Why is your mother sleeping on your floor?<</say>>
<<say mc>>She had a little too much to drink last night.<</say>>
<</if>>
<div id="replaceme">
<<choices>>
<<link "Let the automation do it">>
<<replace "#replaceme">>
<<say "mc">>Just use the automated stuff, I'm going back to bed.<</say>>
<<say "whitney">>Seriously? You're certainly no gentleman!<</say>>
<<narrate>>She angrily stomps off, slamming the door behind her.<</narrate>>
<<unavailable "whitney">>
<<like "whitney" -2>>
<</replace>>
<<toggleclass "#aftermorn" noshow>>
<</link>>
<br>
<<link "Fine">>
<<replace "#replaceme">>
<<say "mc">>Yeah, yeah, just give me some time to get up. I'll meet you there at 10:00 okay?<</say>>
<<say "whitney">>Great, see you there!<</say>>
<<narrate>>She heads out with a skip in her gait.<</narrate>>
<<task "sendwhitney">>
<<like "whitney" 2>>
<</replace>>
<<toggleclass "#aftermorn" noshow>>
<</link>>
<</choices>>
</div>
<</if>>
</div>
<</if>>
<div id="aftermorn" class="sleepinterupt">
<<if $hm.here != undefined && $hm.here == true>>
<<set _interupt = true>>
<<if $hm.events.senthome != undefined>>
<<say hm>>Sorry to wake you, and I know you dislike doing this... but I need to go home as Dean.<</say>>
<<say mc>>Bah! Come on then.<</say>>
<<else>>
<<say "hm">>Sorry to wake you. I tried to go home... but I stayed in this, my original form.<</say>>
<<narrate>>She gestures to her own body.<</narrate>>
<<say "mc">>Looks pretty good to me...<</say>>
<<say "hm">>Ha! Stop it. But, I need to be Dean back there, I have an entire business, I don't want to start again, and I've only got a handful of traveling clients who'd understand.<</say>>
<<say "mc">>Ah... that sucks. I much prefer this version of you.<</say>>
<<say "hm">>Well, I'll always be this version when I come here, okay?<</say>>
<<say "mc">>Great, already looking forward to the next visit! Come on then, let's get you home.<</say>>
<<event "hm" "senthome">>
<</if>>
<<if $tempvar3 == "drunkkrissy">>
<<narrate>>She raises her eyebrow when she notices $krissy.name sleeping on the floor.<</narrate>>
<<say mc>>Too much to drink.<</say>>
<</if>>
<<narrate>>You escort her to the gateway, and against your own desires, change her back into Dean. You head back to bed, but you're unable to fall back asleep before your alarm goes off.<</narrate>>
<<set delete $hm.here>>
<</if>>
<<if $maddy.events.unrelax == 3.5>>
<<set _interupt = true>>
<<narrate>>You wake up to $maddy.name smiling at you.<</narrate>>
<<if $breakdone.hotel == undefined>>
<<set $breakdone.hotel = []>>
<</if>>
<<if !$breakdone.hotel.includes('beds')>>
<<say "maddy">>I had fun last night, but your beds need an upgrade.<</say>>
<<say "mc">>Oh? Have you gone into business mode again?<</say>>
<<say "maddy">>Just a little. I'll give $ember.name the details and when you're ready just give the construction crew the instruction. They'll buy the beds from me and install them.<</say>>
<<say "mc">>Ha! I'll think about it.<</say>>
<<say "maddy">>Well, I'm not staying here again until you've got better beds!<</say>>
<</if>>
<<say "mc">>Oh, so you'd like a repeat visit?<</say>>
<<say "maddy">>Absolutely! I'll be leaving at noon if you want anything before then.<</say>>
<<narrate>>She saunters off, swinging her ass in an exaggerated fashion as she goes.<</narrate>>
<<if !$breakdone.hotel.includes('beds')>>
<<notice>>Once you've improved the beds, you'll be able to invite $maddy.name to stay the night at Gateway B providing it's been four days since she last stayed over.<</notice>>
<</if>>
<<set $maddy.leaves = 12>>
<<set $maddy.cooldown = 5>>
<<event "maddy" "unrelax" 4>>
<<event "maddy" "beds">>
<<elseif $maddy.events.unrelax == 3>>
<<set $maddy.leaves = 12>>
<</if>>
<<if $tempvar2 == "drunk">>
<<set _interupt = true>>
<<narrate>>You awake, to your surprise, in your own bed.<</narrate>>
<<think "mc">>What a night. But I have no recollection of how I got back to my room.<</think>>
<<narrate>>You get up, expecting your head to be sore, yet you feel relatively fine. No hangover at all.<</narrate>>
<<think "mc">>Perks of this world, I guess.<</think>>
<<set $tempvar2 = "">>
<</if>>
<<if $tempvar == "cassiegone">>
<<set _interupt = true>>
<<narrate>>$cassie.name must have left during the night, as she's not there when you awake.<</narrate>>
<<temp "">>
<</if>>
<<if $tempvar == "mollystay">>
<<set _interupt = true>>
<<narrate>>You wake up to see $molly.name getting dressed. She gives you a kiss then skips off.<</narrate>>
<<temp "">>
<</if>>
<<if $tempvar == "aubreecaught" && $aubree.corruptmax < 40>>
<<set _interupt = true>>
<<narrate>>You awake to a knock at the door.<</narrate>>
<<say "aubree">>Uhhh, $name, we need to talk.<</say>>
<<narrate>>You let her in.<</narrate>>
<<say "mc">>Yeah we do, what the fuck was that last night?!<</say>>
<<narrate>>She slams herself down on your bed.<</narrate>>
<<center "aubree/bad01.jpg">>
<<say "aubree">>Listen, I know it looks bad, but I thought you weren't coming, you were thirty minutes late, so I figured I'd entertain myself.<</say>>
<<say "mc">>You make it sound like you called me there for me to do it for you! What the hell?<</say>>
<<say "aubree">>No, shit, I didn't mean it like that. I didn't mean for you to see or be involved at all. I just didn't think you were coming, so I thought it'd be safe.<</say>>
<<think "mc">>This is great, let's go for the killer.<</think>>
<<say "mc">>So why the hell did you shout for me as I was coming down the hall?<</say>>
<<think "aubree">>Shit, fuck, he heard me. What do I do? Fuuuuck!<</think>>
<<narrate>>She visibly squirms, she's nervous, and unsure how to proceed.<</narrate>>
<<say "aubree">>Shit, okay. You know what? I've been having indecent thoughts about you.<</say>>
<<say "mc">>The fuck?<</say>>
<<say "aubree">>I don't know. I didn't want to do anything about it, maybe it's because I like teasing you so much it's backfired, but after you caught me well, I kinda liked it.<</say>>
<<say "mc">>The hell is wrong with you? You're my $aubree.them!<</say>>
<<say "aubree">>I know, I've been super embarrassed about it since I've been having these feelings. Shit, I was trying to prove you were the perv, and look where it's gotten me.<</say>>
<<say "mc">>This is a lot to take in. I need some time, okay?<</say>>
<<think "mc">>Hook, line, and sinker!<</think>>
<<say "aubree">>Oh yeah, sure. You don't hate me, though, right?<</say>>
<<say "mc">>No, you're still my $aubree.them. I just need some time to process what you've told me.<</say>>
<<say "aubree">>Yeah, okay. I'll speak to you later then.<</say>>
<<narrate>>She leaves.<</narrate>>
<<think "mc">>This is amazing, she's managed to corrupt herself here! I should keep pushing.<</think>>
<</if>>
<<if $molly.events.swim == 1>>
<<set _interupt = true>>
<<set $molly.events.swim = 2>>
<<narrate>>As $molly.name promises, your swim trunks are waiting for you at the door.<</narrate>>
<<taskdone 'swimwear'>>
<</if>>
<<if $anna.events.maid == 1>>
<<set _interupt = true>>
<<set $anna.events.maid = 2>>
<<narrate>>You notice something on your dresser. Looks to be the maid outfit $molly.name promised with a sticky note on top.<</narrate>>
<center>
<div class="sticky-container">
<div class="sticky-outer">
<div class="sticky">
<svg width="0" height="0">
<defs>
<clipPath id="stickyClip" clipPathUnits="objectBoundingBox">
<path
d="M 0 0 Q 0 0.69, 0.03 0.96 0.03 0.96, 1 0.96 Q 0.96 0.69, 0.96 0 0.96 0, 0 0"
stroke-linejoin="round"
stroke-linecap="square"
/>
</clipPath>
</defs>
</svg>
<div class="sticky-content">
<em>Have fun<br>with it!</em>
</div>
</div>
</div>
</div>
</center>
<br><br>
<style>
/* Some positioning and ratios */
.sticky-container {
max-width: 270px;
position: relative;
}
.sticky-outer {
display: flex;
padding-top: 92.5925926%;
position: relative;
width: 100%;
}
.sticky {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
/* Shadow behind the sticky note */
.sticky:before {
box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, 0.5);
background-color: rgba(0, 0, 0, 0.25);
content: '';
width: 90%;
left: 5px;
height: 83%;
position: absolute;
top: 30%;
}
/* The sticky note itself */
.sticky-content {
background: linear-gradient(
180deg,
rgba(227, 255, 127, 1) 0%,
rgba(227, 255, 127, 1) 12%,
rgba(230, 246, 133, 1) 75%,
rgba(255, 255, 136, 1) 100%
);
color: blue;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Bradley hand', cursive;
font-size: 1rem;
clip-path: url(#stickyClip);
}
/* Add responsiveness */
@media screen and (min-width: 640px) {
.sticky:before {
height: 79%;
width: 90%;
}
.sticky-content {
font-size: 1.25rem;
}
}
@media screen and (min-width: 768px) {
.sticky:before {
height: 75%;
width: 90%;
}
.sticky-content {
font-size: 1.5rem;
}
}
@media screen and (min-width: 1024px) {
.sticky:before {
height: 73%;
width: 90%;
}
.sticky-content {
font-size: 1.875rem;
}
}
</style>
<</if>>
<<if $tempvar == "emberstay">>
<<set _interupt = true>>
<<narrate>>You awake to $ember.name staring at you.<</narrate>>
<<say "ember">>Good morning sleepyhead. Last night was fantastic; let's do it again soon.<</say>>
<<say "mc">>Any time.<</say>>
<<say "ember">>I'll hold you to that. Catch you later.<</say>>
<</if>>
<<if $aubree.events.roomcaught == 1>>
<<set _interupt = true>>
<<narrate>>As you're walking toward your wardrobe, you spot some small denim shorts on the desk beside your folded laundry.<</narrate>>
<<think "mc">>Huh, one of the other's laundry must have got mixed with mine, I guess.<</think>>
<<set $aubree.events.roomcaught = 2>>
<</if>>
<<if $tempvar == "aubreehere">>
<<set _interupt = true>>
<<narrate>>You awake to $aubree.name staring into your eyes.<</narrate>>
<<say "aubree">>I can't believe we did that.<</say>>
<<say "mc">>Then we'll have to do it again and again until you do!<</say>>
<<narrate>>She giggles, then gives you a kiss on the forehead.<</narrate>>
<<say "aubree">>I'm gonna go get ready for the day. Talk to you later.<</say>>
<<think "mc">>She's kinda cute after sex, but fucking dirty during. Best of both, I guess!<</think>>
<</if>>
<<if $twodays != undefined && $twodays > 0>>
<<set $twodays-->>
<</if>>
<<if $lacy.events.minigateway == 4>>
<<if $completeTasks.includes('roadtrip2')>>
<<unavailable "lexi">>
<<run unassignWork('lexi')>>
<<else>>
<<unavailable "kayla">>
<<run unassignWork('kayla')>>
<</if>>
<<run checkWorkRota()>>
<<event "lacy" "minigateway" 5>>
<<set $twodays = 2>>
<</if>>
<<if $lacy.events.minigateway == 3>>
<<set _interupt = true>>
<<narrate>>You awake to see $lacy.name getting dressed.<</narrate>>
<<left2 "lacy/morn01.jpg">>
<<say "mc">>How do you look so good even this early in the morning?<</say>>
<<say "lacy">>It's mostly good eating and healthy exercise.<</say>>
<<narrate>>You laugh at the earnest response.<</narrate>>
<<say "lacy">>Remember, $ember.name and I will be unavailable today. Though it's a simple procedure, it's still delicate so we can't be disturbed. And tomorrow, <<if $completeTasks.includes('roadtrip2')>>$lexi.name<<else>>$kayla.name<</if>> will also be unavailable as she'll join us in New Eden to set the other side up.<</say>>
<<say "mc">>Understood. Already counting down the minutes!<</say>>
<<narrate>>She gives you a kiss then hurries off. In the hallway, you can hear her talking to $ember.name, though their voices are muffled.<</narrate>>
<<say "lacy">>$ember.name, can you believe what we're about to do? It's going to be incredible. I'd never have thought $kayla.name held this kind of knowledge. I could tell she was intelligent for sure, but wow!<</say>>
<<think "mc">>Ha, she'll tell anyone who'll listen.<</think>>
<<unavailable "ember">>
<<unavailable "lacy">>
<<run unassignWork('lacy')>>
<<run unassignWork('ember')>>
<<run checkWorkRota()>>
<<event "lacy" "minigateway" 4>>
<</if>>
<<if $planets[6] != undefined && $planets[6].unlocked == true && $val.events.valjob == 4>>
<<set _interupt = true>>
<<narrate>>You awake noticing something purple on the sofa beside your bed.<</narrate>>
<<block "val/wake01.jpg">>
<<say "val">>Morning. I was just about to wake the sleeping beauty! Shit dude, just look at that thing this early.<</say>>
<<narrate>>She's staring at the tent you're pitching.<</narrate>>
<<say "mc">>Oh, hey sexy... you looking to make my morning sublime?<</say>>
<<say "val">>Ha! Dork. Unfortunately not, I have some errands I have to sort... but I'll make sure the shoot lives up to your expectations.<</say>>
<<say "mc">>Damn. Are you sure? This thing ain't going down while ever I'm looking at you.<</say>>
<<say "val">>You know I'd love to... but you have terrible morning breath and by the time you're showered and brushed your teeth, I'll be gone.<</say>>
<</block>>
<<say "mc">>Bah!<</say>>
<<narrate>>You gyrate your hips trying to entice her.<</narrate>>
<<say "val">>God, you're such a horndog! Listen, I spoke to my friend yesterday, she's up for negotiations.<</say>>
<<say "mc">>That's great news! How about we celebrate?<</say>>
<<say "val">>Absolutely, just not here, not right now. I'll meet you at the studio later, yeah?<</say>>
<<narrate>>She leaves you, dick left untouched.<</narrate>>
<<think "mc">>I really haven't seen her naked anywhere near enough recently.<</think>>
<<event "val" "valjob" 5>>
<<shoot "val" "valpool01">>
<<set $val.photos = true>>
<</if>>
<<if $harley.events.visit == 1 && $harley.events.denied == undefined && $festdays != 0>>
<<set _interupt = true>>
<<narrate>>You hear $harley.name calling through the door.<</narrate>>
<<say "harley">>Morning lazy bones. I'll be around for the day if you want to chat.<</say>>
<<available "harley">>
<<elseif $kylie.events.settled != undefined>>
<<set _interupt = true>>
<<narrate>>You hear a nervous voice calling you through the door.<</narrate>>
<<say "kylie">>Sorry, uhh, $armani.name said I should just come to your room. I wanted to let you know I'm ready to start working for you today.<</say>>
<<say "mc">>Great!<</say>>
<<narrate>>Before you can continue on, you hear her footsteps scurry away.<</narrate>>
<<think "mc">>I don't get why she's so nervous. She seemed so full of confidence previously. Maybe it's the thought of being in debt to me? If she gets over that, I'm sure she'll return to normal. Alternatively, I could also take advantage of it... we'll see.<</think>>
<<notice>>$kylie.name will now work for you.<</notice>>
<<set delete $kylie.events.settled>>
<<available "kylie">>
<<worker "kylie">>
<<elseif ($mc.events.kaylagone == "caught" || $mc.events.kaylagone == "confess") && $kayla.events.sorrytxt == undefined>>
<<run queueMessage(5, 'kayla', 'sorry')>>
<<run overrideSchedule('kayla', 8, 9, "gatewayb")>>
<<event "kayla" "sorrytxt">>
<<elseif $completeTasks.includes('kylie2') && $tasks.war != undefined>>
<<run queueMessage(4, 'armani', 'warmeet')>>
<</if>>
<<if $tasks.pairphone != undefined>>
<<think "mc">>I guess the first thing I should do before I go anywhere is pair my phone.<</think>>
<<button "Use Computer" computer>>
<<audio "startup" play>>
<<temp "phone">>
<</button>>
<<elseif $day >= 6 && $tasks.buildMS != undefined && ($constructionproject == undefined || $constructionproject.key != "lab") >>
<<narrate>>$lacy.name bursts into your room.<</narrate>>
<<say "lacy">>We need to get that monitoring station built, come on, we'll head to the construction facility together, and I'll help you out.<</say>>
<<button "Continue" housestuff>>
<<set $location = "office">>
<<temp "guidedcons">>
<</button>>
<<elseif $day >= 6 && $tasks.buildMS != undefined && (State.variables.dailyworking['Monday']['construction'] == undefined || State.variables.dailyworking['Monday']['construction']['13'] == undefined || State.variables.dailyworking['Monday']['construction']['17'] == undefined)>>
<<narrate>>$lacy.name bursts into your room.<</narrate>>
<<say "lacy">>Morning! Looks like you've started the station project, but not assigned $ember.name to work it! Let's head down to the facility and I'll show you what to do.<</say>>
<<button "Continue" mngconstruction>>
<<temp "guidedcons">>
<</button>>
<<elseif $day >= 7 && $tasks.lacybuiltMS != undefined>>
<<narrate>>$lacy.name bursts into your room.<</narrate>>
<<say "lacy">>Morning! Not letting you forget me today. Meet me at the monitoring station in 15 minutes!<</say>>
<<button "Continue" lacyanswers>>
<<temp "builtMS01">>
<</button>>
<<elseif $day >= 8 && $tasks.lexihere != undefined>>
<<set _interupt = true>>
<<narrate>>You hear a knock at the door.<</narrate>>
<<think "mc">>Ah, must be $lexi.name, $lacy.name did say she'd send her my way if I didn't get a chance to find out more first.<</think>>
<<say "mc">>Come in.<</say>>
<<say "lexi">>Good morning, $lexi.calls. $lacy.name said you wanted to speak to me?<</say>>
<<say "mc">>Yeah, I wanted to find more about how you got here.<</say>>
<<say "lexi">>Likewise.<</say>>
<<button "Continue" lexianswers>>
<<set $location = "lounge">>
<<temp "here">>
<</button>>
<<else>>
<<if $adria.events.borked != undefined && $adria.events.compfixed == undefined>>
<<think "mc">>I should ask $adria.name about fixing my computer.<</think>>
<</if>>
<<if $kleio.events.eat == 2>>
<<set _interupt = true>>
<<narrate>>You notice a note from $val.name on your bedside table.<</narrate>>
<<say "val" "Note">>Really sorry about yesterday. Give me a shout when you're free, I know exactly how to make it up to you.<</say>>
<<think "mc">>Yeah, I don't doubt she does!<</think>>
<<event "kleio" "eat" 3>>
<</if>>
<center>
<div id="goodmorningsunshine">
<<if $completeTasks.includes('meriyareconnect') && $kp.events.councildone == undefined>>
<<set _interupt = true>>
<<say "kp">>Good morning, $name. I'm back. I'll be stationed here for a while. Though I will need a few hours here and there to update the council. Come find me when you're ready, I'll explain the task ahead of you.<</say>>
<<set _c = $kenna.name.substr(0, 1)>>
<<say "mc">>And _c—<</say>>
<<say "kp">>And I'll tell you about $kenna.name. I'll speak to you soon.<</say>>
<<event "kp" "stay">>
<<event "kp" "councildone">>
<<available "kp">>
<<run overrideSchedule('kp', 10, 12, "Central")>>
<</if>>
<<if $kenna.events.kylie != undefined && $kylie.events.moved == undefined>>
<<set _interupt = true>>
<<say kylie>>Morning sleepyhead! I live here now! This is gonna be so great.<</say>>
<<narrate>>She skips off happily before you even have chance to reply.<</narrate>>
<<think mc>>Given she's as much of a pervert as me, if not more... I can only imagine what she'll get up– what we'll get up to now she's living here.<</think>>
<<event "kylie" "moved">>
<<set $kylie.altsched = true>>
<</if>>
<<if $katie.events.shower != undefined>>
<<set delete $katie.events.shower>>
<</if>>
<<if $girlsavailable.includes('katie') && $katie.events.step == undefined>>
<<think "mc">>Maybe I should see how $katie.name is setting in.<</think>>
<<event "katie" "step">>
<<task "katiesettle">>
<<elseif $girlsavailable.includes('waitress') && $waitress.events.step == undefined>>
<<think "mc">>I wonder how $waitress.name is getting on in her new home.<</think>>
<<event "waitress" "step">>
<<task "waitresssettle">>
<</if>>
<<if $katie.events.ne == 4>>
<<available "katie">>
<<set $katie.events.ne = 5>>
<</if>>
<<if $tour.events.meets > 1 && $tour.events.meets < 4>>
<<set $tour.events.meets++>>
<</if>>
<<if $molly.events.cosplaystart >= 9 && $molly.events.cosplaystart <= 11>>
<<set $molly.events.cosplaystart++>>
<</if>>
<<if $tour.events.emb == 1>>
<<set $tour.events.emb = 2>>
<<notice>>$sarge.name is now stationed at the New Eden Embassy in town.<</notice>>
<<task "visitsena">>
<</if>>
<<if $tour.events.meets == 1>>
<<notice>>The embassy office in New Eden is ready. Assign workers to it via the normal scheduling system.<</notice>>
<<set $buildings['neoffice'] = constructs['neoffice']>>
<<task eastfriends>>
<<event "tour" "meets" 2>>
<</if>>
<<if $kp.events.away == 1>>
<<available "kp">>
<<event "kp" "away" 2>>
<<notice>>$kp.name has returned to the hub.<</notice>>
<</if>>
<<if $maddy.events.market == 3>>
<<set $buildings.market = constructs.market>>
<<notice>>The market is now open.<</notice>>
<<event "maddy" "market" 4>>
<</if>>
<<if $geraldtimer != undefined && $geraldtimer != 4 && $geraldtimer > 0>>
<<set $geraldtimer-->>
<</if>>
<<if $kylie.altsched == true && $geraldtimer == undefined && $mc.events.geraldescape == undefined>>
<<set $geraldtimer = 6>>
<</if>>
<<if $skipping == true>>
<<goto skipping>>
<<else>>
<<set _txt = "GOOD MORNING SUNSHINE">>
<<if $tempvar3 == "nightmare">>
<<set _txt = "GOOD MORNING S̵̢̮͇̹̖͔͎̝̞̋̂̎̚̕͜ͅU̸͔̗͂̐̄̔̽̾N̶̟̙̲̊̀̀̈́̔̍̂̕̚͜͜͝͝͠Ṡ̵̡͔̜̤̝̮̦̫̭͒̈́H̶̫̒͊̈́̓͆͆̊̀̕̕I̵̘̺̝͕̱̗̼͙͉͎̎̊̉̔͜Ṅ̷̢̨̦̰̯̻̹̫̻̠̠̭̠̌͌͆́̍͐͜͜͝Ȩ̶̢̩̝͔͔͇͖̟̲̌̆̃͌͊̾̐̅̉͗̇͘̚͝">>
<</if>>
<<button _txt>>
<<if checkUnlocks('movie', 'fapcatch', 'theodora') == true && $theodora.events.theodoraproblemtxt == undefined && $theodora.messages.problem == undefined>>
<<run newMessage('theodora', 'problem')>>
<</if>>
<<if $lexi.events.workout != undefined>>
<<set delete $lexi.events.workout>>
<</if>>
<<if $lexi.events.fap != undefined>>
<<set delete $lexi.events.fap>>
<</if>>
<<if $lexi.sex != undefined && $lexi.sex > 0>>
<<run overrideSchedule('lexi', 18, 22, "pool")>>
<</if>>
<<if $lexi.events.easttrip != undefined>>
<<set $lexi.events.easttrip-->>
<</if>>
<<if $kleio.events.who >= 2>>
<<set $kleio.events.who-->>
<</if>>
<<if $kleio.events.waiting > 0>>
<<set $kleio.events.waiting-->>
<</if>>
<<if $mc.events.kaylagone == undefined && _day == 7>>
<<run overrideSchedule('kayla', 15, 18, "unavailable")>>
<<else>>
<<run overrideSchedule('kayla', 15, 18, "")>>
<</if>>
<<set $moriah.events.shower = undefined>>
<<set $adria.events.kristenvisit = undefined>>
<<if $nightvisitors != undefined>>
<<for _n range $nightvisitors>>
<<night _n>>
<</for>>
<<set $nightvisitors = undefined>>
<</if>>
<<if $vanna.events.theodora != undefined && $vanna.events.theodoratxt == undefined && $theodora.lust > 79 && $theodora.corruption > 99>>
<<run queueMessage(5, 'vanna', 'theodora')>>
<</if>>
<<if $maddy.events.market == undefined && $totalattractiveness > 14 && $maddy.events.initial != undefined && $completeTasks.includes('bufferfin3')>>
<<run queueMessage(7, 'cassie', 'maddy')>>
<</if>>
<<if $adria.events.kristenchat != undefined && $adria.events.kristenmsg == 2>>
<<run queueMessage(36, 'adria', 'kristen2')>>
<<event "adria" "kristenmsg" 3>>
<</if>>
<<if $adria.events.kristen == undefined && $adria.events.checkmsg == undefined && $girlsavailable.includes('kristen') && $adria.corruption > 29 && $adria.events.porno != undefined>>
<<run queueMessage(6, 'adria', 'kristen')>>
<</if>>
<<if $kylie.events.days != undefined>>
<<set $kylie.events.days-->>
<<if $kylie.events.days == 0>>
<<set delete $kylie.events.days>>
<</if>>
<</if>>
<<if $maddy.cooldown != undefined>>
<<if $maddy.cooldown == 5>>
<<set $maddy.leaves = 12>>
<</if>>
<<set $maddy.cooldown-->>
<<if $maddy.cooldown == 0>>
<<set delete $maddy.cooldown>>
<</if>>
<</if>>
<<if $aubree.events.soon != undefined>>
<<set $aubree.events.soon-->>
<</if>>
<<if $aubree.events.soon == 0>>
<<set $aubree.events.sparelax = 3>>
<<set delete $aubree.events.soon>>
<<run queueMessage(0, 'aubree', 'weneed')>>
<</if>>
<<if $charlie.events.arsehole == 4>>
<<event "charlie" "arsehole" 5>>
<</if>>
<<if $adria.events.carwash != undefined>>
<<set $adria.events.carwash-->>
<<if $adria.events.carwash == 0>>
<<set $adria.events.carwash = undefined>>
<</if>>
<</if>>
<<if $aubree.events.sparelax == 2 && $aubree.events.soon == undefined>>
<<set $aubree.events.soon = 2>>
<</if>>
<<if settings["savefreq"] == "Daily" || (settings["savefreq"] == "Every Second Day" && $day % 2 == 0) || (settings["savefreq"] == "Every Fourth Day" && $day % 4 == 0) || (settings["savefreq"] == "Weekly" && $day % 7 == 0)>>
<<script>>
Save.autosave.save("Day " + State.variables.day);
msg("Game Saved");
<</script>>
<</if>>
<<if $tempvar == "aubreecaught" && $aubree.corruptmax < 40>>
<<temp "">>
<<set $aubree.corruptmax = 40>>
<<corrupt "aubree" 1>>
<</if>>
<<if $aubree.docsread != undefined && $aubree.docsread.includes('notes02') && $buildings.spa != undefined && $aubree.lust >= 60 && $aubree.corruption >= 50 && $aubree.events.sparelax == undefined>>
<<run queueMessage(4, 'aubree', 'revenge')>>
<</if>>
<<set $molly.events.drink = 0>>
<<set $molly.events.knocked = undefined>>
<<set $vanna.events.sneaky = 0>>
<<set $vanna.events.massage = 0>>
/* messages */
<<if $kylie.events.settledin != undefined && $mc.events.recruit != undefined && $kylie.events.mom == undefined>>
<<run queueMessage(5, 'kylie', 'mom')>>
<</if>>
<<if $adria.events.blind == undefined && $adria.corruption >= 75>>
<<run queueMessage(6, 'adria', 'kristen3')>>
<<run queueMessage(6, 'adria', 'kristen4')>>
<</if>>
<<if $festdays == 0 && $festival.complete == undefined>>
<<temp "start">>
<<goto "festival">>
<<elseif $founder.countdown == 0>>
<<goto "founderdecision">>
<<elseif $kp.events.fest == 1>>
<<temp "stress">>
<<goto "kpsex">>
<<elseif $festdays == 5 && $kleio.events.olive == 1>>
<<temp "band">>
<<goto "kleiosex">>
<<elseif $krissy.relief == 4.3>>
<<temp "bartalk">>
<<goto "krissyanswers">>
<<elseif $tempvar3 == "krissydream">>
<<temp "shareddream">>
<<goto "krissyanswers">>
<<elseif $tempvar3 == "drunkkrissy">>
<<temp "drunkennight">>
<<goto "krissyanswers">>
<<elseif $cassie.events.peludocs == "1">>
<<goto "cassie-peludocs">>
<<elseif $tempvar3 == "nightmare">>
<<temp "founder">>
<<timed 0.1s>>
<<toggleclass ".passage" blurify>>
<<timed 0.5s>>
<<audio "zoop" play>>
<<goto "council">>
<</timed>>
<</timed>>
<<elseif $whitney.events.dream == 1>>
<<temp "morningleaver">>
<<goto "whitneyanswers">>
<<elseif $bob == 3>>
<<temp "bobdone">>
<<goto "festprep">>
<<elseif $twodays <= 0>>
<<temp "minidone">>
<<goto "lacyanswers">>
<<elseif $schedules.krissy != undefined && $schedules.krissy[2] == "Unavailable">>
<<temp "moved">>
<<goto "krissyanswers">>
<<elseif $kenna.events.spy == 2>>
<<temp "morningbj">>
<<goto "kennasex">>
<<elseif $completeTasks.includes('kpbrief') && $mc.events.councilbrief != 'taken' && $mc.events.councilbrief != 'taken2' && $mc.events.councilbrief != 'taken3' && ($tasks.azulsex != undefined || $completeTasks.includes('azulsex'))>>
<<temp "brief">>
<<goto "counciltasks">>
<<elseif $tempvar3 == "possessiongained">>
<<temp "possession">>
<<set $tempvar3 = "">>
<<goto lacyanswers>>
<<elseif $tour.events.meets == 4>>
<<temp "kira">>
<<goto gabs>>
<<elseif $mc.events.eastlocked != undefined && $mc.events.eastlocked == 1 && $mc.events.eastreturn == undefined>>
<<temp "morning">>
<<goto "departureeast">>
<<elseif $tasks.warmeet != undefined>>
<<temp "01">>
<<goto "warmeet">>
<<elseif $cassie.events.gatewayvisit is undefined>>
<<goto gatewayvisit>>
<<elseif $briefcase == 1 && !$girlsmet.includes('lexi')>>
<<goto othersbacksoon>>
<<elseif $harley.events.morning == 1 && $harley.events.denied == undefined>>
<<temp "morning">>
<<goto "harleysex">>
<<elseif $harley.events.return == 1 && $harley.events.denied == undefined && !$completeTasks.includes('harleyreturn')>>
<<temp "morning">>
<<goto harleymeet>>
<<elseif $tempvar3 == "kpwtf">>
<<temp "kpwtf">>
<<goto kpanswers>>
/* non-time critical below */
<<elseif ($geraldtimer == 4)>>
<<temp "gerald">>
<<goto "kylieanswers">>
<<elseif ($completeTasks.includes('roadtrip2') || $completeTasks.includes('eastcomms')) && $tasks.eastfriends0 != undefined && $lacy.events.minigateway == undefined>>
<<temp "neweden">>
<<goto "lacyanswers">>
<<elseif _interupt == false && $helena.events.step == 3>>
<<temp "morning01">>
<<goto "pristinesex">>
<<elseif $maddy.events.market == 2 && $completeTasks.includes('fyodr') && $anna.traits.includes('exhibitionist') && checkUnlocks('movie', 'maddy01', 'anna') == true && (getCurrentLocation('maddy') == "Off World" || getCurrentLocation('maddy') == planets[characterinfo['maddy'].home].name)>>
<<temp "market2">>
<<goto "maddyanswers">>
<<elseif $charlie.events.attempts >= 3 && $charlie.events.arsehole == 1>>
<<temp "breakfast">>
<<goto "charlie">>
<<elseif $anna.events.mature == 1>>
<<temp "mature">>
<<goto "annaanswers">>
<<elseif $anna.events.step == 4>>
<<temp "dream">>
<<goto "annaanswers">>
<<elseif $sophia.events.buff == 3>>
<<temp "dream">>
<<goto "sophiaanswers">>
<<elseif $kleio.events.waiting == 0 && (checkUnlocks('movie', 'morn', 'kleio') == false && $kleio.events.upset == undefined)>>
<<temp "waiting">>
<<goto "kleioanswers">>
<<elseif $mc.events.kaylaconfess == 1 && $power > 5>>
<<temp "eastwar">>
<<goto "kaylaanswers">>
<<elseif Object.keys(State.variables.buildings).length > 2 && $mc.events.recruit == undefined>>
<<temp "recruit">>
<<goto "emberanswers">>
<<elseif $mc.events.eastreturn != undefined && $lexi.events.studyspy == 4>>
<<temp "morning">>
<<goto "lexisex">>
<<else>>
<<if $mc.events.housemeet == 1>>
<<run delete $mc.events.housemeet>>
<<set $girlsavailable.pushUnique('cassie')>>
<<set $girlsavailable.pushUnique('armani')>>
<<set $girlsavailable.pushUnique('moriah')>>
<<set $girlsavailable.pushUnique('britt')>>
<<set $girlsavailable.pushUnique('lexi')>>
<<set $girlsavailable.pushUnique('monique')>>
<</if>>
<<if $whitney.events.sentaway != undefined && $whitney.events.retrieved is undefined && $tasks['whitney000'] is undefined >>
<<task 'whitney000'>>
<</if>>
<<if $harley.events.visit == 1>>
<<run delete $harley.events.garden01>>
<<run delete $harley.events.office>>
<<run delete $harley.events.garage>>
<<run delete $harley.events.pool01>>
<<run delete $harley.events.pool02>>
<<run delete $harley.events.lounge01>>
<<run delete $harley.events.garden01>>
<<run delete $harley.events.garden02>>
<</if>>
<<if $lexi.events.monique == 3 && $lexi.corruption >= 130>>
<<run queueMessage(3, 'monique', 'lexiy')>>
<</if>>
<<goto househub>>
<</if>>
<</button>>
<</if>>
</div></center>
<</if>>
</div>
<</if>><<if $rotaStorage == undefined>>
<<set $rotaStorage = {}>>
<<set $rotaNames = {0:"Slot 1",1:"Slot 2",2:"Slot 3",3:"Slot 4",4:"Slot 5"}>>
<</if>>
<table class="storage">
<<for _i = 0; _i < 5; _i++>>
<<capture _i>>
<tr>
<td>_i</td>
<td><<button "Store">><<set $rotaStorage[_i] = clone($dailyworking)>><<script>>Engine.play('manage');closeDialog();<</script>><</button>></td>
<td><<textbox "$rotaNames[_i]" $rotaNames[_i]>></td>
<td><<button "Load">>
<<set $dailyworking = $rotaStorage[_i]>>
<<script>>
let sv = State.variables;
sv.tempvar3 = "loaded";
if (Object.keys(sv.lockedSlots).length > 0) {
for (let day in sv.lockedSlots) {
for (let l in sv.lockedSlots[day]) {
for (let t in sv.lockedSlots[day][l]) {
if (sv.dailyworking[day][l] == undefined) sv.dailyworking[day][l] = {};
sv.dailyworking[day][l][t] = sv.dailyworking[day][l][t].concat(sv.lockedSlots[day][l][t].filter((value) => !sv.dailyworking[day][l][t].includes(value)));
if (l == 'sparelax') {
while (1 < sv.dailyworking[day][l][t].length) {
sv.dailyworking[day][l][t].shift();
sv.tempvar3 = "loadedsome";
}
} else {
while (sv.buildings[l].slots < sv.dailyworking[day][l][t].length) {
sv.dailyworking[day][l][t].shift();
sv.tempvar3 = "loadedsome";
}
}
}
}
}
}
Engine.play('manage');
closeDialog();
<</script>>
<<run checkWorkRota()>>
<</button>></td>
</tr>
<</capture>>
<</for>>
</table>
<style>
.storage {
border-spacing: 0;
width: 100%;
}
.storage td {
padding: .33em .33em;
}
</style><<nobr>>
<<switch $molly.events.swim>>
<<case 1>>
<<think "mc">>I need to wait until $molly.name has finished my trunks, then I can go swimming!<</think>>
<<link "Return" housestuff>><</link>>
<<case 2>>
<<narrate>>You swim!<</narrate>>
<<center "other/swimming.jpeg">>
<<set _replies = ['pervs on you.', 'is checking you out.', 'can\'t keep her eyes off you.', 'watches you intently.', 'sighs as you leave the pool.', 'watches you the entire time.', 'pretends not to notice you.']>>
<<for _v range $girlshere>>
<<set _n = State.variables[_v].name>>
<<set _r = either(_replies)>>
<<narrate>>_n _r<</narrate>>
<<lust _v 2>>
<</for>>
<<time 1>>
<<button "Continue" housestuff>><</button>>
<<default>>
<<narrate>>You need some swimming shorts to do this. Perhaps a tailor can help you?<</narrate>>
<<task 'swimwear' "Acquire swimwear">>
<<event 'molly' 'swim' 0>>
<<button "Continue" housestuff>><</button>>
<</switch>>
<</nobr>><<set _tennis = ['cassie']>>
<<if $active == undefined>>
<<choices "With who?">>
<div class="flex">
<<for _g range _tennis>>
<<capture _g>>
<<set _girl = State.variables[_g].name>>
<<if $working[_g] != undefined>>
<<if $working[_g][_shift] != undefined && $working[_g][_shift] != null>>
<div class="girlChoice" title="" @girl="_g"><img @src="setup.img+'/'+_g+'/'+_g+'crop.jpg'" style="width:200px"><br>
_girl - Unavailable<br>
<<if $working[_g][_shift] == "sparelax">>
Relaxing at the spa
<<else>>
<<set _where = constructs[$working[_g][_shift]].name.toLowerCase()>>
Working the _where
<</if>>
</div>
<<continue>>
<</if>>
<</if>>
<<link '
<div class="girlChoice" title="" @girl="_g"><img @src="setup.img+\'/\'+_g+\'/\'+_g+\'crop.jpg\'" style="width:200px"><br>
_girl
</div>' tennis>>
<<set $active = _g>>
<</link>>
<</capture>>
<</for>>
</div>
<<link "Never mind" housestuff>><</link>>
<</choices>>
<<elseif $active == "kylie">>
<<left2 "kylie/tennis02.jpg">>
<<say kylie>>Ready to get your ass kicked?<</say>>
<<think mc>>Fuck, maybe I should buy everyone a tennis kit! She's looks incredible.<</think>>
<<narrate>>She grins when she notices your gaze.<</narrate>>
<<say kylie>>You know what? Never mind about the tennis, you haven't even got changed yet and I've just thought of something else I want to do.<</say>>
<<narrate>>You can't help but feel disappointed.<</narrate>>
<<say kylie>>Wow, I can feel your disappointment from here. Don't worry, the thing I want to do, is you. Come on!<</say>>
<<set delete $active>>
<<elseif $active == "cassie">>
<<left2 "cassie/tennis02.jpg">>
<<if $cassie.events.tennis != undefined>>
<<say cassie>>I'm glad you want to play again, dear. I was worried after my poor performance last time, you wouldn't.<</say>>
<<say mc>>I just want to have a bit of fun, and you'll get better over time.<</say>>
<<else>>
<<say cassie>>I've been hoping we'd get to play together since I saw you built the courts!<</say>>
<<say mc>>Oh, you any good?<</say>>
<<say cassie>>Nope. Never played; this game doesn't exist where I'm from. But, I saw $sophia.name and $helena.name play, and it certainly looks fun!<</say>>
<<say mc>>Great, let's just pass it back and forth for now then, get a feel for it.<</say>>
<</if>>
<<think mc>>She looks incredibly enthusiastic...<</think>>
<<set delete $active>>
<<cont "cassiesex" "tennis01">>
<</if>><<nobr>>
<<switch $tempvar>>
<<case "collect">>
<<center "other/thoughts.jpg">>
<<choices "What do you want to think about?">>
<<if $aubree.docsread != undefined && $aubree.docsread.includes('notes01') && $aubree.events.aubrock01 != undefined & $aubree.events.relationship != 'full'>>
<<link "$aubree.name's Desires" thoughts>>
<<temp "aubree">>
<</link>>
<br>
<</if>>
<<if $theodora.events.relationship != undefined && $theodora.events.relationship == "platonic">>
<<link "$theodora.name relationship" thoughts>>
<<temp "theodora">>
<</link>>
<br>
<</if>>
<<if $adria.events.relationship != undefined && $adria.events.relationship == "friends">>
<<link "$adria.name relationship" thoughts>>
<<temp "adria">>
<</link>>
<br>
<</if>>
<<if $lexi.events.relationship != undefined && $lexi.events.relationship == "platonic">>
<<link "$lexi.name relationship" thoughts>>
<<temp "lexi">>
<</link>>
<br>
<</if>>
<<if $anna.events.relationship != undefined && $anna.events.relationship != "taboo">>
<<link "$anna.name relationship" thoughts>>
<<temp "anna">>
<</link>>
<br>
<</if>>
<<if $sophia.events.harem != undefined && $sophia.events.relationship != "taboo">>
<<link "$sophia.name relationship" thoughts>>
<<temp "sophia">>
<</link>>
<br>
<</if>>
<<if $krissy.events.dream != undefined && $krissy.events.relationship != "taboo">>
<<link "$krissy.name relationship" thoughts>>
<<temp "krissy">>
<</link>>
<br>
<</if>>
<<if $maddy.events.daddy != undefined && $maddy.events.daddy == 0>>
<<link "$maddy.name's Request" thoughts>>
<<temp "maddy">>
<</link>>
<br>
<</if>>
<<link "Return" bedroom>><</link>>
<</choices>>
<<case "krissy">>
<<center "krissy/think01.jpg">>
<<think mc>>$krissy.refer, she's definitely attractive, and apparently I'm her favorite. Do I wanna test just how much special treatment I can get from her?<</think>>
<div id="replace">
<<choices>>
<<link "Hell yeah">>
<<replace "#replace">>
<<think "mc">>Fuck it, why not. I've no idea where to start, but maybe I can use her rivalry with $kenna.name to my advantage.<</think>>
<<button "Sleep" sleep>>
<<event krissy "relationship" "taboo">>
<<if $kenna.sex != undefined && $kenna.sex > 0>>
<<set $krissy.tabooalt = true>>
<<elseif $krissy.events.kenna == "friends">>
<<set delete $krissy.events.kenna>>
<</if>>
<</button>>
<</replace>>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<think mc>>I can't take it that far, not with her. Not now.<</think>>
<<button "Sleep" sleep>>
<<event krissy "relationship" "friends">>
<</button>>
<</replace>>
<</link>><br>
<<link "Stick to watching">>
<<replace "#replace">>
<<think mc>>I absolutely get off on watching her, but I can't cross that boundary, not yet, maybe not ever.<</think>>
<<button "Sleep" sleep>>
<<event krissy "relationship" "peep">>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "maddy">>
<<center "maddy/think01.jpg">>
<<think "mc">>She wants me to try possessing her father so I can see if he wants her like she wants him... and if so, fuck her in his body.<</think>>
<<think "mc">>I guess in a way I'd be doing them a service. If he's really into it, I can help him move past his reluctance and make life better for the both of them. But... if he's not, I do nothing and she knows where she stands.<</think>>
<div id="replace">
<<choices "Help her fuck her dad?">>
<<link "Fuck yeah">>
<<possess "maddydaddy">>
<<replace "#replace">>
<<think "mc">>It might be hot fucking her as her father! It's worth a shot.<</think>>
<<button "Sleep" sleep>>
<<event "maddy" "daddy" 1>>
<</button>>
<</replace>>
<</link>><br>
<<link "Fuck no">>
<<replace "#replace">>
<<think "mc">>I can't do it. It just feels... wrong somehow.<</think>>
<<button "Sleep" sleep>>
<<event "maddy" "daddy" 0>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "sophia">>
<<center "sophia/think01.jpg">>
<<think "mc">>She walked in on me with $sophia.events.fuckaround. Whether it was intentional or not, she has mentioned she's seen me before. Am I okay with this? My $sophia.them watching me with other women? What if she ever wanted to join in?<</think>>
<<if $sophia.events.watched == undefined>>
<<set $sophia.events.watched = 0>>
<</if>>
<div id="replace">
<<choices>>
<<link "I guess">>
<<replace "#replace">>
<<think "mc">>Eh, why not? What's the harm. Not like she and I are fucking.<</think>>
<<button "Sleep" sleep>>
<<event "sophia" "relationship" "watch">>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Why stop there?">>
<<replace "#replace">>
<<think "mc">>Hell, why should she only watch when she could be enjoying my cock too! I'm sure it'll take some time, but with enough exposure I'm sure she'll want more eventually.<</think>>
<<button "Sleep" sleep>>
<<event "sophia" "relationship" "taboo">>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Nah">>
<<replace "#replace">>
<<think "mc">>No, it's not cool. I get walking in on it is accidental, but I'll make sure she knows to leave immediately.<</think>>
<<button "Sleep" sleep>>
<<event "sophia" "relationship" "friends">>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "adria">>
<<center "adria/think01.jpg">>
<<think "mc">>She's kinda cute. But she's my $adria.them. Do I wanna take it further?<</think>>
<div id="replace">
<<choices>>
<<link "Of course">>
<<replace "#replace">>
<<think "mc">>Fuck yeah. She was watching porn while masturbating the other night, and she's already asked me about my porn before... let's see if I can use that to get things rolling.<</think>>
<<button "Sleep" sleep>>
<<event "adria" "relationship" "taboo">>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Nah">>
<<replace "#replace">>
<<think "mc">>On second thought, I don't think it's appropriate to pursue to that kind of relationship with her.<</think>>
<<button "Sleep" sleep>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "anna">>
<<center "anna/think01.jpg">>
<<think "mc">>She's trying to manipulate me to get out of work... work she doesn't realize I never had any intention of making her do. She's proven happy to use sexual favors as a currency, so if she can get past me being her $anna.you, it really should be plain sailing. But, do I want to do that to my $anna.them?<</think>>
<div id="replace">
<<choices>>
<<link "Hell Yeah">>
<<replace "#replace">>
<<think "mc">>Fuck yeah. What hot-blooded male wouldn't? She's smoking hot.<</think>>
<<button "Sleep" sleep>>
<<event "anna" "relationship" "taboo">>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Hell Nah">>
<<replace "#replace">>
<<think "mc">>On second thought, I don't think it's appropriate to pursue to that kind of relationship with her.<</think>>
<<button "Sleep" sleep>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "lexi">>
<<center "lexi/think01.jpg">>
<<think "mc">>She's having the same perverted fantasies about me that I am her, and she wants to get it out of her system... I can probably lean into that. Do I want to fuck my $lexi.them?<</think>>
<div id="replace">
<<choices>>
<<link "Hell yeah">>
<<replace "#replace">>
<<think "mc">>I'll follow $vanna.name's advice, have a chat with her about our mutual fantasies, and pretend I'm trying to fight against the desires.<</think>>
<<button "Sleep" sleep>>
<<event "lexi" "relationship" "taboo">>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Hell Nah">>
<<replace "#replace">>
<<think "mc">>On second thought, I don't think it's appropriate to pursue to that kind of relationship with her.<</think>>
<<button "Sleep" sleep>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "theodora">>
<<center "theodora/think01.jpg">>
<<think "mc">>She seems fine with the idea of me perving over her so it probably won't take much of a push to progress things further forward. Do I want to try and corrupt and seduce my $theodora.them?<</think>>
<div id="replace">
<<choices>>
<<link "Fuck yeah">>
<<replace "#replace">>
<<think "mc">>She will be mine. She looked great in that blue bikini at the gym, I think I'll invite her to do a shoot wearing that.<</think>>
<<notice>>New shoot available for $theodora.name.<</notice>>
<<button "Sleep" sleep>>
<<event "theodora" "relationship" "taboo">>
<<shoot "theodora" "theoblue01">>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Nah">>
<<replace "#replace">>
<<think "mc">>Right now I think I'll leave things as they are. I can always revisit this decision later if I want to.<</think>>
<<button "Sleep" sleep>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "aubree">>
<<center "aubree/think01.jpg">>
<<think "mc">>Clearly she has something for me but feels it's too taboo to explore. The question is, should I push it? Do I want to get intimate with my $aubree.them?<</think>>
<div id="replaceme">
<<choices>>
<<link '<<step "Friends Only" "You won\'t be able to unlock any new lewds for her this way. You can change your decision later by recollecting your thoughts again.">>'>>
<<replace "#replaceme">>
<<think "mc">>I really shouldn't be even thinking about sleeping with my $aubree.them. I won't encourage her desires, and we'll remain friends.<</think>>
<<button "Sleep" sleep>>
<<event "aubree" "relationship" "friends">>
<</button>>
<</replace>>
<</link>>
<br>
<<link '<<step "Peep Only" "You can look at the menu without ordering, huh? You can change your decision later by recollecting your thoughts again.">>'>>
<<replace "#replaceme">>
<<think "mc">>They're my $aubree.them, so it'd be wrong to do anything, but there's no harm in just admiring her.<</think>>
<<button "Sleep" sleep>>
<<event "aubree" "relationship" "peep">>
<</button>>
<</replace>>
<</link>>
<br>
<<link '<<step "Push It" "You want everything, to hell with the taboo. This decision is final.">>'>>
<<replace "#replaceme">>
<<think "mc">>Her being my $aubree.them only makes it hotter! I'm going balls deep into this, both figuratively and hopefully literally!<</think>>
<<think "mc">>Now, the thing with $aubree.them is she likes to tease me about desiring her, so if I show disinterest, based on the fact she actually does want me to want her, it should make her try harder. I'll organize a new shoot.<</think>>
<<notice>>New shoot available for $aubree.name.<</notice>>
<<button "Sleep" sleep>>
<<event "aubree" "relationship" "full">>
<<shoot "aubree" "aubgarden01">>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<</switch>>
<</nobr>>
<<temp "">><<if $energy < 50 && _quiet == undefined>>
<<set $energy = 0>>
<<elseif _quiet == undefined>>
<<set $energy -= 50>>
<</if>>
<<debug>>
<<button "Unmeet $theodora.name" transform>>
<<run $girlsmet.delete('theodora')>>
<<temp "theodora">>
<</button>>
<<button "Unmeet $sophia.name" transform>>
<<run $girlsmet.delete('sophia')>>
<<temp "sophia">>
<</button>>
<</debug>>
<<set _n = false>>
<<if _quiet == undefined>>
<<narrate>>You feel a whoosh of air as the gateway opens with a menacing glaze of fire over its width.<</narrate>>
<</if>>
<<switch $tempvar>>
<<case "charlie">>
<<set _curr = $theodora.name>>
<<unavailable 'theodora'>>
<<set $charlie.lust = $theodora.lust>>
<<set $charlie.corruption = $theodora.corruption>>
<<set $charlie.like = $theodora.like>>
<<set $charlie.skills = $theodora.skills>>
<<set $charlie.fatigue = $theodora.fatigue>>
<<set $theodora.trackable = false>>
<<set $theodora.address = false>>
<<set delete $charlie.address>>
<<available 'charlie'>>
<<if $workers.includes('theodora')>>
<<worker "charlie">>
<</if>>
<<set delete $charlie.trackable>>
<<meet "charlie">>
<<script>>
$('.trackerselect').each(function() {
if ($(this).val() == "theodora") {
State.variables.tracker[$(this).attr('n')] = "charlie";
}
})
<</script>>
<<run switchWorkers("theodora", "charlie")>>
<<case "theodora">>
<<set _curr = $charlie.name>>
<<available 'theodora'>>
<<unavailable 'charlie'>>
<<if !$girlsmet.includes('theodora')>>
<<set _n = true>>
<</if>>
<<set $charlie.address = false>>
<<set delete $theodora.address>>
<<set $theodora.lust = $charlie.lust>>
<<set $theodora.corruption = $charlie.corruption>>
<<set $theodora.like = $charlie.like>>
<<set $theodora.skills = $charlie.skills>>
<<set $theodora.fatigue = $charlie.fatigue>>
<<set $charlie.trackable = false>>
<<set delete $theodora.trackable>>
<<script>>
$('.trackerselect').each(function() {
if ($(this).val() == "charlie") {
State.variables.tracker[$(this).attr('n')] = "theodora";
}
})
<</script>>
<<run switchWorkers("charlie", "theodora")>>
<<case "derek">>
<<set _curr = $sophia.name>>
<<set $sophia.address = false>>
<<set delete $derek.address>>
<<unavailable 'sophia'>>
<<available 'derek'>>
<<case "sophia">>
<<set _curr = $derek.name>>
<<set $derek.address = false>>
<<set delete $sophia.address>>
<<available 'sophia'>>
<<unavailable 'derek'>>
<<if !$girlsmet.includes('sophia')>>
<<set _n = true>>
<</if>>
<</switch>>
<<set _ret = State.variables[$tempvar]>>
<<if _quiet == undefined>>
<<narrate>>You're unsure how it works, but you see _curr being dragged across the sky toward the gateway. Whatever she was doing, she isn't doing it anymore. Remarkably, nobody else seems to notice this spectacle.<</narrate>>
<<if $completeTasks.includes('000R')>>
<<think mc>>It still blows my mind that everyone's perception of them will now just be altered to believe they were always like this.<</think>>
<</if>>
<<if _n == false>>
<<narrate>>They're sucked into the portal and a moment later _ret.name is floating back seemingly completely unaware anything is or has happened.<</narrate>>
<<button "Continue" gatewayb>><<time 0>><</button>>
<<else>>
<<narrate>>They're sucked into the portal and a moment later a female form gracefully floats back through the sky in the opposite direction, seemingly completely unaware anything is or has happened.<</narrate>>
<<set $keyrange = ["name", "them", "you", "refer", "calls"]>>
<<switch $tempvar>>
<<case "theodora">>
<<meet 'theodora'>>
<<choices "How does this change your relationship?">>
<<left2 "theodora/lounge01.jpg">>
She is $krissy.name's (your $krissy.them) daughter.<br>
Her name is <<textbox "$theodora.name" $theodora.name>> <br>
She is your <<textbox "$theodora.them" $anna.them>> <br>
You are her <<textbox "$theodora.you" $anna.you>><br>
You call her <<textbox "$theodora.refer" $theodora.refer>> <br>
She calls you <<textbox "$theodora.calls" $nickname>><br><br>
<br>
<<button "Confirm">>
<<set _fail = false>>
<<set $tempvar = "gender2">>
<<for _key, _value range $keyrange>>
<<set $theodora[_value] = $theodora[_value].trim()>>
<<if $theodora[_value] == "">><<set _fail = "true">><</if>>
<</for>>
<<set $theodora.name to $theodora.name.toUpperFirst()>>
<<if _fail == "true">>
<<replace "#name-error">>Please enter info in all boxes!<</replace>>
<<else>>
<<time 0>>
<<goto "gatewayb">>
<</if>>
<</button>><br>
<span id="name-error"></span>
<</choices>>
<<case "sophia">>
<div id="replace">
</div>
<<meet 'sophia'>>
<<choices "How does this change your relationship?">>
<<left2 "sophia/meet02.jpg">>
She is $krissy.name's (your $krissy.them) wife.<br>
Her name is <<textbox "$sophia.name" $sophia.name>><br>
She is your <<textbox "$sophia.them" $sophia.them>><br>
You are her <<textbox "$sophia.you" $derek.you>><br>
You call her <<textbox "$sophia.refer" $sophia.refer>><br>
She calls you <<textbox "$sophia.calls" $derek.calls>><br>
<br>
<<button "Confirm">>
<<set _fail = false>>
<<for _key, _value range $keyrange>>
<<set $sophia[_value] = $sophia[_value].trim()>>
<<if $sophia[_value] == "">><<set _fail = "true">><</if>>
<</for>>
<<set $sophia.name to $sophia.name.toUpperFirst()>>
<<if _fail == "true">>
<<replace "#name-error">>Please enter info in all boxes!<</replace>>
<<else>>
<<time 0>>
<<goto "gatewayb">>
<</if>>
<</button>><br>
<span id="name-error"></span>
<</choices>>
<</switch>>
<</if>>
<</if>><<scene>>
<<switch $tempvar>>
<<case "anna">>
<<left2 "anna/anna3.png">>
<<say "mc">>So, why'd you wanna transform again?<</say>>
<<say "anna">>God, your memory is as fucked as your face, isn't it?<</say>>
<<say "mc">>Oh, fuck off, then.<</say>>
<<narrate>>You turn to leave.<</narrate>>
<<say "anna">>No. Listen... reflex... I just wanna see if I'd be a hot MILF.<</say>>
<<say "mc">>I don't have time for your bullshit. You've been... better lately, so I thought I'd try, but I just can't be bothered anymore.<</say>>
<<say "anna">>Please! I'll... I'll... we can play at $kylie.name's again!<</say>>
<<say "mc">>Honestly, you're not worth the effort.<</say>>
<<think "anna">>Shit, shit, shit! I'm losing him.<</think>>
<<say "anna">>Sorry. Okay. I'm sorry. I'll try. Okay? Please.<</say>>
<<think "mc">>I don't think I've ever seen her beg... wow.<</think>>
<<say "mc">>Alright. But know how thin my patience is. I'm sick of giving you second chance after second chance just because you give great head.<</say>>
<<narrate>>She grins...<</narrate>>
<<say "anna">>Great head, huh?<</say>>
<<say "mc">>You really think I tolerate you for your personality?<</say>>
<<say "anna">>Okay, now who's being cruel?<</say>>
<<say "mc">>Fair. Come on, let's do this.<</say>>
<<button "Continue" transformation>>
<<temp "anna2">>
<</button>>
<<case "anna2">>
<<left2 "anna/mature/transform01.jpg" "" "" "focusimg">>
<<narrate>>The image projected by $anna.name is crystal clear, it's almost as if you knew what she wanted before she told you.<</narrate>>
<<think "mc">>Fuck, she's hot.<</think>>
<<think "mc">>My cock between those jugs, fuck yeah.<</think>>
<<think "mc">>The things I'm gonna do do to that bitch.<</think>>
<<think "mc">>Wait, isn't that the blonde MILF from my dream?<</think>>
<<think "mc">>Who gives a shit, I just wanna bang her.<</think>>
<<narrate>>Your thoughts ramble on. All this in a few seconds during transfer.<</narrate>>
<<button "Continue" transformation>>
<<temp "anna3">>
<</button>>
<<case "anna3">>
<<set $anna.mature = true>>
<<center "anna/tomature.gif">>
<<left2 "anna/mature/meet01.png">>
<<say "anna">>God I look good!<</say>>
<<say "mc">>I'll say.<</say>>
<<think "anna">>God, I feel so fucking horny.<</think>>
<<say "mc">>Everything okay?<</say>>
<<narrate>>She bites her lip and looks you up and down, then pulls herself back.<</narrate>>
<<say "anna">>Yeah, all good. No worries. Can you change me back now?<</say>>
<<think "anna">>I'm going to jump him if I don't. I'm way too horny like this, and I don't want to waste that currency.<</think>>
<<say "mc">>That's all you wanted? A few minutes in this form?<</say>>
<<say "anna">>Yeah, was just intrigued. Thanks.<</say>>
<<set $anna.mature = "seen">>
<<cont "transformation" "anna4">>
<<case "anna4">>
<<center "anna/mature/toanna.gif">>
<<say "anna">>Great, thanks, $anna.calls... is that still what you want me to call you?<</say>>
<<think "mc">>She gets weirder.<</think>>
<div id="replace">
<<temp "">>
<<choices>>
<<link "Yes">>
<<replace "#replace">>
<<say "mc">>Yeah, is... there a reason you shouldn't?<</say>>
<<narrate>>She shrugs.<</narrate>>
<</replace>>
<<toggleclass "#after" noshow>>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<say "mc">>Actually, maybe just <<textbox "$anna.calls" $nickname>> would be more appropriate now.<</say>>
<</replace>>
<<toggleclass "#after" noshow>>
<</link>>
<</choices>>
</div>
<div id="after" class="noshow">
<<say "anna">>Got it. Thanks for this, I'll catch you later.<</say>>
<<think "mc">>Is she finally learning? Eh... probably not. Maybe I should assign her to a shift, see if her reaction is any better than last time.<</think>>
<<button "Continue" gatewayb>>
<<event "anna" "mature" 3>>
<<like "anna" 10>>
<<corrupt "anna" 2>>
<<lust "anna" 6>>
<<time 1>>
<</button>>
</div>
<<case "kylie">>
<<narrate>>You arrive at Gateway B a little while later.<</narrate>>
<<say "kylie">>I know exactly what I wanna look like too, this is gonna be fun! You ready?<</say>>
<<say "mc">>Ha, not as much as you are apparently, but yeah, let's do it.<</say>>
<<narrate>>You open a connection to her world for no particular reason other than it seemed appropriate then concentrate on her as she steps through.<</narrate>>
<<think "mc">>Wow, the connection is so strong, it's like my mind is surrounding her consciousness.<</think>>
<<narrate>>You focus your power on the image she's projecting and...<</narrate>>
<<button "Continue" transformation>>
<<temp "kylie2">>
<</button>>
<<case "kylie2">>
<<narrate>>Unlike other transformations, this one feels clearer, more concise, perhaps because her connection to you as your champion.<</narrate>>
<<block "kylie/mature/meet01.jpg" "" "" "focusimg">>
<<narrate>>You concentrate on $kylie.name's projection, and the image of her mature-self comes into focus with ease.<</narrate>>
<<think "mc">>Fuck, that's hot..<</think>>
<<think "mc">>The things I'm going to do that body...<</think>>
<<narrate>>You can also feel $kylie.name's thoughts running wild, her desires every bit as lustful as your own.<</narrate>>
<<think "kylie">>Fuck this feels wild. I can't wait to test this body out.<</think>>
<<think "kylie">>I want him to pound me so hard he fucking rearranges my guts!<</think>>
<<narrate>>Both of your thoughts spiral further and further into depravity. All this in a few seconds during transfer.<</narrate>>
<<button "Continue" transformation>>
<<temp "kylie3">>
<<set $kylie.mature = true>>
<<trans "kylie" "mature">>
<</button>>
<</block>>
<<case "kylie3">>
<<center "kylie/tomature.gif">>
<<block "kylie/mature/meet02.jpg">>
<<say "kylie">>That was incredible... just a few seconds... it was like you were inside me. It felt... so fucking good.<</say>>
<<say "mc">>I've never felt someone's thoughts like during this, you're as every bit depraved as I am.<</say>>
<<say "kylie">>Of course. That's probably why I was so compatible as your champion... but enough talk, I want to feel you inside me again!<</say>>
<<say "mc">>Let's go.<</say>>
<<narrate>>Overcome by lust, the two of you head back to hers with haste, barely able to hold back your base desires.<</narrate>>
<<cont "kyliesex" "firstt">>
<</block>>
<<case "eastparty">>
<<set _who = State.variables[$awaypartyeast]>>
<<narrate>>You and _who.name meet at Gateway B.<</narrate>>
<<say "mc">>Ready for this?<</say>>
<<say $awaypartyeast>>Absolutely. I'll head through and jump back straight away.<</say>>
<<narrate>>You open a connection to your home world instinctively and concentrate on trying to feel _who.name as she travels through in the few seconds it takes her to reach her destination.<</narrate>>
<<think "mc">>There... I can feel her!<</think>>
<<narrate>>You focus your power on the image she's projecting and...<</narrate>>
<<button "Continue" transformation>>
<<event "mc" "eastgo" 2>>
<<temp "eastparty2">>
<<taskdone "awayeasttfrom">>
<</button>>
<<case "adria">>
<<set _img = "adria/mature/meet01.jpg">>
<<block _img "" "" "focusimg">>
<<narrate>>You concentrate on the image $adria.name is thinking of and gently it comes into focus. The colors in the background making complex patterns and dancing around as $adria.name's new form slowly constructs in your mind.<</narrate>>
<<think "mc">>I can feel it. The vision she has for herself, I'm beginning to visualize it!<</think>>
<<think "mc">>Wow. Holy shit.<</think>>
<<think "mc">>That's one sexy secretary.<</think>>
<<think "mc">>Man the things I want to do to that body!<</think>>
<<narrate>>Your thoughts ramble on. All this in a few seconds during transfer.<</narrate>>
<<button "Continue" transformation>>
<<temp "adria2">>
<<trans "adria" "mature">>
<<set $adria.mature = true>>
<</button>>
<</block>>
<<case "adria2">>
<<center "adria/tomature.gif">>
<<set _img = "adria/mature/meet01.png">>
<<left2 _img>>
<<say adria>>Look at me, $adria.calls, I'm a completely different person. I'm not your $adria.them anymore!<</say>>
<<say "mc">>I don't think that's—<</say>>
<<narrate>>You stop yourself.<</narrate>>
<<say adria>>Just look at this body!<</say>>
<<say "mc">>Oh, I've noticed!<</say>>
<<say adria>>Am... am I desirable?<</say>>
<<say mc>>Most definitely.<</say>>
<<say adria>>Amazing. And I feel so... hot.<</say>>
<<narrate>>She happily skips off.<</narrate>>
<<think "mc">>No idea what mental gymnastics she's doing to think she's not my $adria.them anymore just because she's in a different form, but I suspect that'll work in my favor.<</think>>
<<cont "gatewayb" "" 1>>
<<case "aubree">>
<<set _img = "aubree/mature/meet01.jpg">>
<<block _img "" "" "focusimg">>
<<narrate>>You concentrate on the image $aubree.name is projecting. Her new form gently occupies your mind as strands of color race through your thoughts.<</narrate>>
<<think "mc">>That's it, I can see what she wants!<</think>>
<<think "mc">>Pretty inviting image...<</think>>
<<think "mc">>I am definitely going to ravish her, holy shit.<</think>>
<<think "mc">>Fuck I just want to bend her over and...<</think>>
<<narrate>>Your thoughts ramble on. All this in a few seconds during transfer.<</narrate>>
<<button "Continue" transformation>>
<<temp "aubree2">>
<<trans "aubree" "mature">>
<<set $aubree.mature = true>>
<</button>>
<</block>>
<<case "aubree2">>
<<center "aubree/tomature.gif">>
<<set _img = "aubree/mature/meet01.png">>
<<run overrideSchedule('aubree', 22, 24, "docs")>>
<<left2 _img>>
<<say aubree>>Already perving on me, $aubree.calls?<</say>>
<<narrate>>She does a little spin, and jiggles her ass.<</narrate>>
<<say aubree>>Amazing body, huh? Fuck, I've got good taste!<</say>>
<<think "mc">>Does she love herself even more than normal in this form?<</think>>
<<say aubree>>I bet you're already thinking about all the naughty things you wish you could do to me, huh? Perv!<</say>>
<<narrate>>She walks off before you get a chance to say anything, but you can't help but notice the way she swings her hips.<</narrate>>
<<think mc>>That's definitely for my benefit...<</think>>
<<cont "gatewayb" "" 1>>
<<case "lexi">>
<<set _img = "lexi/young/meet01.jpg">>
<<block _img "" "" "focusimg">>
<<narrate>>Flashes of color dance in the background of your mind as $lexi.name focuses her thoughts. It only takes a moment for the vision to reach yours. <</narrate>>
<<think "mc">>Nice, I can feel what she's going for.<</think>>
<<think "mc">>Damn, look at those boobs...<</think>>
<<think "mc">>She's so fucking cute... but also so damn hot...<</think>>
<<think "mc">>I wish I could fuck her in both her forms at the same time.<</think>>
<<narrate>>Your thoughts ramble on. All this in a few seconds during transfer.<</narrate>>
<<button "Continue" transformation>>
<<temp "lexi2">>
<<trans "lexi" "young">>
<<set $lexi.young = true>>
<</button>>
<</block>>
<<case "lexi2">>
<<center "lexi/toyoung.gif">>
<<set _img = "lexi/young/meet01.png">>
<<run overrideSchedule('lexi', 16, 18, "ent")>>
<<left2 _img>>
<<say lexi>>What do you think, $lexi.calls?<</say>>
<<narrate>>She reaches on her tip toes while trying to look back at her own ass.<</narrate>>
<<say lexi>>I look good, huh? Don't get me wrong, I prefer my natural form, but it's certainly fun to try new things!<</say>>
<<say mc>>Oh, definitely, I'd be happy to help you... try new things.<</say>>
<<narrate>>She grins.<</narrate>>
<<say lexi>>Oh, I bet!<</say>>
<<narrate>>She heads back to the hotel, humming to herself.<</narrate>>
<<think mc>>Yeah... this is gonna be fun.<</think>>
<<cont "gatewayb" "" 1>>
<<case "monique">>
<<set _img = "monique/young/meet01.jpg">>
<<block _img "" "" "focusimg">>
<<narrate>>Ribbons of color float around and bob in behind the image $monique.name is sharing with you. As it comes into focus, you can't help but smirk.<</narrate>>
<<think "mc">>She knows exactly what she's doing... fuck.<</think>>
<<think "mc">>That ass...<</think>>
<<think "mc">>God, I feel so horny...<</think>>
<<think "mc">>I am gonna fuck the shit outta her.<</think>>
<<narrate>>Your thoughts ramble on. All this in a few seconds during transfer.<</narrate>>
<<button "Continue" transformation>>
<<temp "monique2">>
<<trans "monique" "young">>
<<set $monique.young = true>>
<</button>>
<</block>>
<<case "monique2">>
<<center "monique/toyoung.gif">>
<<set _img = "monique/young/meet01.png">>
<<run overrideSchedule('monique', 12, 16, "bus")>>
<<run overrideSchedule('monique', 16, 20, "gym")>>
<<left2 _img>>
<<say "monique">>God, this really does make you horny...<</say>>
<<narrate>>She looks at you expectantly.<</narrate>>
<<say "monique">>I'll be in my room...<</say>>
<<choices "Join her?">>
<<link "Follow her" moniquesex>>
<<temp "tfirst">>
<</link>><br>
<<link "Leave her" gatewayb>>
<<time 1>>
<</link>>
<</choices>>
<<case "eastparty2">>
<<if $awaypartyeast == "aubree" || $awaypartyeast == "adria">>
<<set _img = $awaypartyeast+"/mature/meet01.jpg">>
<<set State.variables[$awaypartyeast].mature = true>>
<<set _ex = "She's gone for something a little older, but I dig it.">>
<<else>>
<<set _img = $awaypartyeast+"/young/meet01.jpg">>
<<set State.variables[$awaypartyeast].young = true>>
<<set _ex = "She's gone for something a bit younger, but I dig it.">>
<</if>>
<<think "mc">>The image isn't vivid enough. It's just a bunch of colors. I need to focus!<</think>>
<<set _who = State.variables[$awaypartyeast]>>
<<block _img "" "" "focusimg">>
<<narrate>>You concentrate on the image _who.name is thinking of and gently it comes into focus. The colors in the background making complex patterns and dancing around as _who.name's new form slowly constructs in your mind.<</narrate>>
<<think "mc">>I can feel it. The vision she has for herself, I'm beginning to visualize it!<</think>>
<<think "mc">>_ex<</think>>
<<think "mc">>Just... just look that body. Wow.<</think>>
<<think "mc">>Shit, is it okay to be thinking like this right now?<</think>>
<<think "mc">>Crap, can she feel my desire?<</think>>
<<narrate>>Your thoughts ramble on. All this in a few seconds during transfer.<</narrate>>
<<button "Continue" transformation>>
<<temp "eastparty3">>
<</button>>
<</block>>
<<case "eastparty3">>
<<if $awaypartyeast == "aubree" || $awaypartyeast == "adria">>
<<center $awaypartyeast+"/tomature.gif">>
<<set _img = $awaypartyeast+"/mature/meet01.png">>
<<else>>
<<center $awaypartyeast+"/toyoung.gif">>
<<set _img = $awaypartyeast+"/young/meet01.png">>
<</if>>
<<block _img>>
<<say $awaypartyeast>>Oh, wow. This feels so... alien. I don't even recognize myself.<</say>>
<<say "mc">>Well, that's certainly what we were after I guess.<</say>>
<<say $awaypartyeast>>Just look at this body!<</say>>
<<think "mc">>Believe me, I haven't stopped staring at it for even a moment.<</think>>
<<say $awaypartyeast>>This is surreal, yet it feels so... I can't even explain it!<</say>>
<</block>>
<<narrate>>She looks at you lustfully.<</narrate>>
<<if $awaypartyeast == "monique" && $monique.events.truthwait == 3>>
<<think $awaypartyeast>>God, I am so horny right now. It's taking all my willpower not to jump him!<</think>>
<<say $awaypartyeast>>You know, we have a few hours. It might be fun to give this body a good, <i>deep</i>, and <b>thorough</b> test.<</say>>
<<say "mc">>Oh really, and what did you have in mind?<</say>>
<<narrate>>She runs her had over your cheek, stands on her tip toes and whispers in your ear.<</narrate>>
<<say $awaypartyeast "" "(Whispering in your ear)" "whisper">>There's a reason I'm wearing so little. I am so damn horny and I want you to be too. Meet me in my room; let's see what this body can do.<</say>>
<<narrate>>She backs off gently, caressing your chest as she blows you a kiss.<</narrate>>
<<say $awaypartyeast>>I'll be waiting.<</say>>
<<else>>
<<think $awaypartyeast>>God, I am so horny right now. I just... no! Concentrate! We've got to protect my friends back home before $gerald.name leads them or us to death.<</think>>
<<say "mc">>Everything okay there?<</say>>
<<say $awaypartyeast>>Sorry, just getting used to this body!<</say>>
<<say "mc">>Gotcha, I'll give you some time to get used to it. Meet me outside the front of hotel at 22:00, okay?<</say>>
<<say $awaypartyeast>>Uh, yeah, sure, see you later.<</say>>
<<think $awaypartyeast>>That should give me time to take care of it. I need to get back to my room, like now!<</think>>
<</if>>
<<run overrideSchedule($awaypartyeast, 16, 22, "bedrooms")>>
<<if $awaypartystray == "vanna" && $vanna.mature == true>>
<<say vanna>>Ha, I saw that look in your eye. Quite the horndog, huh?<</say>>
<<say mc>>Shit, $vanna.name, sorry!<</say>>
<<say vanna>>Don't worry about it. I was checking her out too. But, I guess you should transform me now, huh?<</say>>
<<narrate>>You nod.<</narrate>>
<<button "Continue" transforms>>
<<set $active = "vanna">>
<<unavailable "vanna">>
<<run checkSchedules()>>
<<lust $awaypartyeast 3>>
<<like $awaypartyeast 1>>
<<time 0.5>>
<</button>>
<<else>>
<<button "Continue" gatewayb>>
<<run checkSchedules()>>
<<lust $awaypartyeast 3>>
<<like $awaypartyeast 1>>
<<time 0.5>>
<</button>>
<</if>>
<<case "sorry">>
<<narrate>>You and $kayla.name head down to Gateway B.<</narrate>>
<<say "kayla">>This is going to be so much fun! I always wanted to try something like this!<</say>>
<<think "mc">>Honestly, I have no idea what to expect, but hey, I figure it's worth looking into. I can always change her back if it's not my thing.<</think>>
<<say "mc">>So do you know how this works or...?<</say>>
<<say "kayla">>Nope. I know what I wanna look like, you just gotta connect with that feeling while I travel.<</say>>
<<say "mc">>Great, that's super vague.<</say>>
<<say "kayla">>Let's just try it, okay? It's gonna be so fun to fuck in a different body.<</say>>
<<say "mc">>Well, when you put it like that...<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kayla">>Send me to any world, it doesn't matter, I'll be right back.<</say>>
<<narrate>>You open a connection to your home world instinctively and concentrate on trying to feel $kayla.name as she travels through in the few seconds it takes her to reach her destination.<</narrate>>
<<think "mc">>There... I can feel her!<</think>>
<<narrate>>You focus your power on the image she's projecting and...<</narrate>>
<<button "Continue" transformation>>
<<temp "sorry01">>
<</button>>
<<case "sorry01">>
<<center "kayla/tobimbo.gif">>
<<think "mc">>It worked! Now let's get a good look at her before I let her back through.<</think>>
<<narrate>>You focus your mind and the image $kayla.name was thinking of suddenly seems plain as day.<</narrate>>
<<block "kayla/bimbo/meet01.jpg">>
<<think "mc">>Damn, she looks good. I definitely understand the bimbo reference now.<</think>>
<<think "mc">>Shit, this is amazing.<</think>>
<<think "mc">>Wait, I can just switch her form whenever I feel like it? Surely not... is she really that willing?<</think>>
<<think "mc">>I can feel how damn horny she is. She wants my dick so bad right now.<</think>>
<<narrate>>Your thoughts ramble on. All this in a few seconds during transfer, but there's one thought that echoes through your mind, it's font-size making it unmissable.<</narrate>>
<<think "mc">><font style="font-size:200%">My dick is so fucking hard right now.</font><</think>>
<</block>>
<<narrate>>$kayla.name returns a second later.<</narrate>>
<<set $kayla.bimbo = true>>
<<say "kayla">>So, what do you think?<</say>>
<<say "mc">>I think we need to go somewhere. Now.<</say>>
<<narrate>>She looks at your crotch and smirks.<</narrate>>
<<say "kayla">>Fuck, yes we do.<</say>>
<<say "mc">>There are showers nearby.<</say>>
<<narrate>>You grab her hand and head rush over.<</narrate>>
<<button "Continue" kaylasex>>
<<temp "bimbo-first">>
<<set $transformation = 1>>
<<set $kayla.transforms = {bimbo: 1}>>
<</button>>
<<default>>
/* normal transform */
<<if $energy < 1>>
<<narrate>>You do not have enough energy to use this right now.<</narrate>>
<<link "Return" gatewayb>>
<</link>>
<<else>>
<<think "mc">>Hmm, so if I understand this correctly, unlike transformations through Central, the travelers undergo these changes consciously. Also, it doesn't warp anyone's perception of them, so those that knew the traveler previously, will still remember them as they were.<</think>>
<<think "mc">>I guess I need to get to know them better... or maybe corrupt them more... to get them willing to do this.<</think>>
<<set _avail = 0>>
<div class="flex">
<<set _mat = ['aubree', 'adria']>>
<<set _yng = ['lexi', 'monique']>>
<<set _bimbo = ['kayla']>>
<<set _manual = {}>>
<<for _g range $girlsavailable>>
<<capture _g>>
<<if _g == "vanna" && State.variables[_g].mature != true && $vanna.events.surprise == 7>>
<<set _manual.vanna = ['mature']>>
<</if>>
<<if State.variables[_g].transforms != undefined || ($mc.events.eastreturn == true && (_mat.includes(_g) && State.variables[_g].mature == true) || (_yng.includes(_g) && State.variables[_g].young == true)) || (_bimbo.includes(_g) && State.variables[_g].bimbo == true) || _manual[_g] != undefined>>
<<set _who = clone(State.variables[_g])>>
<<if _manual[_g] != undefined>>
<<if _who.transforms == undefined>><<set _who.transforms = {}>><</if>>
<<for _ex range _manual[_g]>>
<<capture _ex>>
<<set _who.transforms[_ex] = 1>>
<</capture>>
<</for>>
<</if>>
<<set _avail++>>
<div class="choices">
<h3>_who.name</h3>
<div class="flex">
<div class="tfr girlChoice" data-passage="transforms" data-setter="$active = _g, $tempvar = 'revert'"><<center _g+"/badge.jpg">><<if _g == "vanna">>Young<<else>>Original<</if>></div>
<<if _who.transforms != undefined>>
<<for _x, _v range _who.transforms>>
<<capture _x, _v>>
<div class="tfr girlChoice" data-passage="transforms" data-setter="$active = _g, $tempvar = _x"><<center _g+"/"+_x+"/badge.jpg">><<if _g == "vanna">>Original<<else>>_x<</if>></div>
<</capture>>
<</for>>
<</if>>
</div>
</div>
<</if>>
<</capture>>
<</for>>
</div>
<<if _avail == 0>>
<<think "mc">>I'll revisit this once someone has agreed to it.<</think>>
<</if>>
<<button "Cancel" gatewayb>><</button>>
<</if>>
<</switch>>
<style>
.tfr {
text-transform: capitalize;
}
.focusimg {
animation-duration: 8s;
animation-name: bluryeye;
}
@keyframes bluryeye {
0% {
filter: blur(10px);
}
100% {
filter: blur(0px);
}
}
</style><<set $energy-->>
<<set _tfr = ['bimbo', 'mature', 'young']>>
<<set _who = State.variables[$active]>>
<<if
($tempvar == "bimbo" && _who.bimbo == true) ||
($tempvar == "mature" && _who.mature == true) ||
($tempvar == "young" && _who.young == true) ||
($tempvar == "revert" && _who.bimbo != true && _who.young != true && _who.mature != true)
>>
<<set _img = getFolder($active) + "/" + $active + "crop.jpg">>
<center><img @src="setup.img+_img" width="450px"></center>
<<narrate>>They're already in this form.<</narrate>>
<<button "Back" transformation>>
<</button>>
<<else>>
<<set _f = $tempvar>>
<<if $tempvar == "revert">><<set _f = $active>><</if>>
<<set _timg = getFolder($active) + "/" + "to" + _f + ".gif">>
<<center _timg>>
<<set _o = true>>
<<for _t range _tfr>>
<<if _who[_t] == true>>
<<set State.variables[$active][_t] = "seen">>
<</if>>
<</for>>
<<if $tempvar != "revert">>
<<set State.variables[$active][$tempvar] = true>>
<</if>>
/* character specific stuff */
<<if $active == "kayla" && $tempvar == "bimbo">>
<<run overrideSchedule('kayla', 8, 9, "")>>
<</if>>
<<if $active == "kayla" && $tempvar == "revert">>
<<run overrideSchedule('kayla', 8, 9, "gatewayb")>>
<</if>>
<<if $active == "kylie" && $tempvar == "revert">>
<<run overrideSchedule('kylie', 14, 17, "gym")>>
<<if $girlsavailable.includes('maddy') && $power > 30>>
<<run overrideSchedule('kylie', 16, 19, "office")>>
<</if>>
<</if>>
<<if $active == "kylie" && $tempvar == "mature" && $anna.events.model >= 3>>
<<run overrideSchedule('kylie', 14, 17, "bedrooms")>>
<<run overrideSchedule('kylie', 17, 19, "")>>
<</if>>
<<if $active == "lexi" && $tempvar == "young">>
<<run overrideSchedule('lexi', 16, 18, "ent")>>
<</if>>
<<if $active == "lexi" && $tempvar == "revert">>
<<run overrideSchedule('lexi', 16, 18, "")>>
<</if>>
<<if $active == "monique" && $tempvar == "young">>
<<run overrideSchedule('monique', 12, 16, "bus")>>
<<run overrideSchedule('monique', 16, 20, "gym")>>
<<if $monique.events.truthwait == 3 && _quiet == undefined>>
<<say "monique">>God, this process makes me so horny...<</say>>
<<narrate>>She looks at you expectantly.<</narrate>>
<<say "monique">>I'll be in my room...<</say>>
<<choices "Join her?">>
<<link "Follow her" moniquesex>>
<<temp "tfirst">>
<</link>><br>
<<link "Leave her" gatewayb>>
<</link>>
<</choices>>
<<set _o = false>>
<</if>>
<</if>>
<<if $active == "monique" && $tempvar == "revert">>
<<run overrideSchedule('monique', 12, 16, "")>>
<<run overrideSchedule('monique', 16, 20, "")>>
<</if>>
<<if $active == "aubree" && $tempvar == "mature">>
<<run overrideSchedule('aubree', 22, 24, "docs")>>
<</if>>
<<if $active == "aubree" && $tempvar == "revert">>
<<run overrideSchedule('aubree', 22, 24, "")>>
<</if>>
<<if $active == "vanna" && $tempvar == "mature">>
<<run overrideSchedule('vanna', 16, 19, "office")>>
<<run overrideSchedule('vanna', 20, 21, "lounge")>>
<</if>>
<<if $active == "vanna" && $tempvar == "revert" && $vanna.events.skills != undefined>>
<<run overrideSchedule('vanna', 16, 19, "garden")>>
<<if $tempvar2 == "theodorafap" && _quiet == undefined>>
<<set _o = false>>
<<say vanna>>Great, thanks for this. Enjoy yourself later, okay?<</say>>
<<narrate>>She gives you a wink as she walks away.<</narrate>>
<<think mc>>Okay... she definitely knows I was planning something. Now... I was just about to look up those pics of $theodora.name...<</think>>
<<button "Continue" masturbate>>
<<set $tempvar = "">>
<</button>>
<</if>>
<</if>>
<<if _o == true && _quiet == undefined>>
<<cont "gatewayb" "">>
<</if>>
<</if>>
<<set delete $active>><<nobr>>
<<center "other/tv.jpeg">>
<<if $girlshere.includes('harley') && checkUnlocks('movie', 'loungebj', 'harley') == false && $harley.lust >= 30>>
<<narrate>>$harley.name puts on a show about bikers saving people from criminals and disasters. She's really getting into it.<</narrate>>
<<say "harley">>Damn! Look at those bikes, they're beautiful.<</say>>
<<say "mc">>Yeah, they look pretty cool.<</say>>
<<say "harley">>Man, imagine bending over the side on one of those, revving its engine, the vibrations pulsating through your body as your partner takes you from behind.<</say>>
<<say "mc">>I think I'll imagine the partner part.<</say>>
<<say "harley">>Mhhmm, just thinking about it gets me wet.<</say>>
<<think "mc">>Wow, I didn't expect this level of response! She keeps giving me the eye... should I stay?<</think>>
<<choices>>
<<link "Stay" harleysex>>
<<temp "loungebj">>
<</link>><br>
<<link "Leave" housestuff>>
<<time 0.5>>
<</link>>
<</choices>>
<<elseif $girlshere.includes('armani') && $girlshere.includes('cassie') && $cassie.events.sisterrivalry == undefined>>
<<narrate>>You sit down to watch TV with the sisters, but the two of them are in a heated debate and don't even notice you.<</narrate>>
<<center "cassie/convo01.jpg">>
<<say "armani">>Sis, you're insane, there's just no way.<</say>>
<<say "cassie">>I'm telling you, it's the real deal.<</say>>
<<think "mc">>Just what are they arguing about?<</think>>
<div id="toreplace">
<<choices>>
<<link "Interrupt">>
<<replace "#toreplace">>
<<narrate>>You walk over to them.<</narrate>>
<<say "mc">>Ladies, what's wrong? Can I help?<</say>>
<<say "armani">>Oh, you can fuck right off.<</say>>
<<say "cassie">>Now is not a good time, $name.<</say>>
<<say "mc">>Just worried about you is all, I'll leave you to it.<</say>>
<<say "armani">>Whatever.<</say>>
<<narrate>>The two of them go silent and watch the TV, clearly whatever is bothering them they do not wish to discuss in front of you.<</narrate>>
<<button "Continue" househub>>
<<time 0.5>>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Continue Listening">>
<<replace "#toreplace">>
<<say "armani">>You're reading into things too much. He wants to bang us all, I have no issue with that, but there's no romance there.<</say>>
<<say "cassie">>I don't disagree that he's clearly lusting after most, if not all, of us, but I genuinely feel he wants more than that.<</say>>
<<say "armani">>He's just a horn dog, and I'm fine with that. Hell, I wouldn't care if he's sleeping with his own mother, providing I get mine, but to think there's anything beyond lust is crazy.<</say>>
<<say "cassie">>Maybe that's because to him, you are just that, nothing more than a place to get his dick wet, but with me there are real feelings.<</say>>
<<center "cassie/convo02.jpg">>
<<narrate>>$armani.name is furious.<</narrate>>
<<say "armani">>Oh, fuck off. You know as well as I do you're reading far too much into it, and if he was catching feelings, it would certainly be for me.<</say>>
<<say "cassie">>Ha! Now who is talking nonsense? This isn't some high school drama, sister, the loud bitchy girl doesn't always get the cute guy, and even in those shows, she rarely keeps him.<</say>>
<<say "armani">>Fuck you.<</say>>
<<say "cassie">>You've always been the same, when you have nothing of substance to say you revert to swearing.<</say>>
<<say "armani">>Whatever, just you wait. I'm going to fuck his brains out and make you watch. You'll see just how much romance is involved then.<</say>>
<<think "mc">>Doesn't sound at all bad to me, but I should probably not get between them tonight. I'll chat to them in private. I'd love to make $armani.name's posturing a reality, though.<</think>>
<<narrate>>You sneak back out before they notice you.<</narrate>>
<<button "Continue" househub>>
<<time 0.5>>
<<event 'cassie' 'sisterrivalry'>>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Leave" housestuff>>
<</link>>
<</choices>>
</div>
<<else>>
<<set _l = $girlshere.length>>
<<if _l != 0>>
<<for _v range $girlshere>>
<<set _n = State.variables[_v].name>>
<<capture _v, _n>>
<<like _v 2>>
<</capture>>
<</for>>
<<set _replies = ['puts a crime documentary on..', 'is watching a soap opera.', 'is watching mech anime.', 'is enjoying an adult comedy cartoon.', 'puts a thriller on.', 'is singing along to a musical.', 'is laughing at a stand up.', 'is shouting out answers to a quiz show', 'is trying to put on a braveface while watching horror', 'is enjoying a slice of life anime.', 'is really engrossed in a fantasy epic.', 'is cheering on a sportsball team.']>>
<<set _w = State.variables[either($girlshere)].name>>
<<set _r = either(_replies)>>
<<narrate>>_w _r<</narrate>>
<<else>>
<<narrate>>You watch TV alone. Loser.<</narrate>>
<</if>>
<<time 1>>
<center><<link "Return" housestuff>><</link>></center>
<</if>>
<</nobr>><<if $gym == undefined>>
<<set $gym = {level:0, length:3}>>
<</if>>
<<if $tempvar == "train">>
<<narrate>>You take some time to focus and recreate the movements $sarge.name taught you as best as you're able.<</narrate>>
<<think mc>>Hmm, I'm slowly getting the hang of it, but I don't think she'll be pleased with this. Maybe <<who ds>> or $moriah.name could offer some pointers? I'll ask next time I see them in the gym.<</think>>
<<if $sarge.events.gym == 11>>
<<event sarge gym 12>>
<</if>>
<<narrate>>Others will react more positively toward you for a few hours.<</narrate>>
<<notice>>Lust ❤️ gains will be more potent.<</notice>>
<<button "Continue" housestuff>>
<<temp "">>
<<time 1>>
<<set $workout = $gym.length>>
<</button>>
<<elseif $gym.level == 0>>
<<narrate>>You fumble around with the machines and even the yoga mat, but you don't feel as though you've pushed yourself hard enough. Perhaps someone who uses the facility regularly may be able to instruct you.<</narrate>>
<<event 'mc' 'gym'>>
<<task "gym">>
<<button "Continue" housestuff>>
<<temp "">>
<<time 1>>
<<set $workout = $gym.length>>
<</button>>
<<elseif $girlshere.includes('sophia') && ($sophia.events.sense == "lexiseen" || $sophia.events.sense == "moniqueseen") && $sophia.events.buff == 1>>
<<vid "sophia/gym01.mp4">>
<<narrate>>You barely do anything productive as you're too busy perving on your $sophia.them working out.<</narrate>>
<<cont "sophiasex" "gymbj">>
<<else>>
<<center "other/workout.jpg">>
<<narrate>>You work out for an hour.<</narrate>>
<<if $girlshere.includes('aubree')>>
<<narrate>>You notice $aubree.name staring at you. She quickly looks away when you meet her gaze.<</narrate>>
<<corrupt "aubree" 1>>
<<lust "aubree" 3>>
<</if>>
<<narrate>>Others will react more positively toward you for a few hours.<</narrate>>
<<notice>>Lust ❤️ gains will be more potent.<</notice>>
<<event 'mc' 'gym'>>
<<button "Continue" housestuff>>
<<temp "">>
<<time 1>>
<<set $workout = $gym.length>>
<</button>>
<</if>><<nobr>>
Anchors are automatons built on the other side of the Gateway. You can build one per world and it will increase the throughput from that world, thus increasing overall attractiveness and power gained from your connection to said world.<br>
<br>
Their cost and benefit scales based on the planet and are intended to be low priority compared to hub facilities.
<center>
<<button "Close">>
<<run closeDialog()>>
<</button>>
</center>
<</nobr>><center>
It's getting late, best head to bed.
<<button "Head to bed" bedroom>>
<<script>>
closeDialog();
<</script>>
<</button>>
</center>Some tasks, like the one you've just been given, have multiple ways to complete. The ending for each solution may vary in how it impacts the story and your interactions with the other women.
It may be that multiple people can offer you the solution to a task, or that you find or do something else entirely that renders the initial task pointless, or morphs it into something else.
Don't be afraid to explore. Any tasks with a hard deadline will be made obvious. For example, the task you were just given will be completed today regardless, but the results will differ based on how it is completed.
The game can not be failed in the traditional sense, but decisions change how the game progresses, and directly influence people's opinions of you.
<center>
<<button "OK">>
<<script>>
closeDialog();
<</script>>
<</button>>
</center><<nobr>>
The computer hosts multiple apps enabling you to, among other things, check or edit character details or replay scenes.
<br><br>
Double click any to open them.
<br><br>
Windows can be resized and dragged around if you like. Icons can also be moved. Positions of neither are remembered once you shutdown, though. The feature was mostly added to make it feel more like a real computer.
<br><br>
When you're done hit the power icon in the bottom left.
<center>
<<button "Close">>
<<set $computer = 3>>
<<script>>
closeDialog();
<</script>>
<</button>>
</center>
<</nobr>><div id="div1">
The New Eden event uses unique mechanics compared to the rest of the game. Instead of managing resources, you have to manage your time.
You will begin each day by assigning party members to specific tasks. The tasks available will depend on actions you've already taken. $britt.name won't participate in this; her focus is on protecting you.
Next, you will roam the city and investigate on your own. Each day you will be able to complete five actions.
<center>
<<button "Continue">>
<<toggleclass "#div1" noshow>>
<<toggleclass "#div3" noshow>>
<</button>> <<button "Skip">>
<<script>>
closeDialog();
<</script>>
<</button>></center>
</div><div id="div3" class="noshow">
There are many threads to pull at in New Eden. Most event chains take place over multiple actions, and many actions are only available at certain times of day.
You will not be able to complete every event chain in a single playthrough, but there are multiple ways to complete this story arc favorably without having to explore all of them.
The choices you've made up until this point (who you brought, how you entered the city, and where you are staying) may let you skip steps in specific event chains or open up alternate methods of completion, or unlock a bonus lewd, but this story arc can be completed with any party composition.
<center>
<<button "Continue">>
<<toggleclass "#div3" noshow>>
<<toggleclass "#div4" noshow>>
<</button>> <<button "Skip">>
<<script>>
closeDialog();
<</script>>
<</button>></center>
</div><div id="div4" class="noshow">
The council meeting is in six days. Your goal is to convince them to stop the invasion at that meeting. The easiest way to do this is to secure a 1:1 meeting with Howard and/or $eva.name beforehand and make an ally out of them. They can help you convince the others. However, this is not the only way.
You can keep track of what you've learned on the right sidebar where your quick travel and tracker normally is.
Alternatively, you may use $kp.name's device to call the enforcer at any time. This will end the event immediately and the enforcer will use aggressive negotiations to resolve the situation. This isn't recommended; you will miss out on a lot of content available only during this event, and it may have repercussions for your game later on.
<center>
<<button "Continue">>
<<toggleclass "#div4" noshow>>
<<toggleclass "#div5" noshow>>
<</button>> <<button "Skip">>
<<script>>
closeDialog();
<</script>>
<</button>></center>
</div><div id="div5" class="noshow">
One final note: You are about to meet many new characters in New Eden. Some will be more useful (and more lewd) than others, but most of them will not feature in the game outside of New Eden.
Alright... time to set your party some tasks...
<center>
<<button "Continue">>
<<script>>
closeDialog();
<</script>>
<</button>>
</center>
</div>You're now in freeroam mode.
Here, you can visit several locations to progress side and main stories as you see fit. Simply click the location you want to visit and the options available in that location will be presented to you.
As the game progresses, you may unlock more women and more locations.
Right now, the freeroam has very little content. You need to to complete the two tasks you were just given first.
<center>
<<button "OK">>
<<script>>
closeDialog();
<</script>>
<</button>>
</center><<think mc>>I can't understand a word of it. The phone is basically useless for now.<</think>>
<center>
<<button "Close">>
<<script>>
closeDialog();
<</script>>
<</button>>
</center><<narrate>>$hm.name grins at you as she approaches.<</narrate>>
<<say mc>>Enjoy yourself?<</say>>
<<say hm>>it... was amazing! I don't know how I can ever repay you.<</say>>
<<say mc>>Don't worry about it, I had a lot of fun doing it.<</say>>
<<say hm>>Haha, I bet... well you know, me and sis will probably still come back once a week or so, it's nice to be in this body from time to time. So, we can definitely keep having fun together.<</say>>
<<say mc>>Oh, you can count on it!<</say>>
<<narrate>>She reaches up and kisses you on the cheek.<</narrate>>
<<say hm>>But do let me know if there's anything else I can do to repay the favor.<</say>>
<center>
<<button "Close">>
<<event "melody" "sis" 3>>
<<run overrideSchedule('hm', 8, 21, "Off World")>>
<<run overrideSchedule('hm', 21,24, "bedrooms")>>
<<run overrideSchedule('melody', 8, 21, "Off World")>>
<<run overrideSchedule('melody', 21,24, "bedrooms")>>
<<available "hm">>
<<available "melody">>
<<script>>
Engine.play(State.active.title, true);
closeDialog();
<</script>>
<</button>>
</center><<narrate>>$melody.name waves at you anxiously.<</narrate>>
<<say mc>>I figured you'd be here, I felt $hm.name a moment ago when I transformed her.<</say>>
<<say melody>>You felt my sister?<</say>>
<<say mc>>Who do you think transforms her when she travels here and back? What's up?<</say>>
<<say melody>>Yeah... I guess. Things between me and sis are still a little... awkward.<</say>>
<<say mc>>Can I help?<</say>>
<<narrate>>She nods enthusiastically.<</narrate>>
<<think mc>>God, she's cute.<</think>>
<<say melody>>We're gonna stay here tonight; $armani.name said it was okay. Sis feels more at ease here. But I was thinking...<</say>>
<<narrate>>There's a glint of desire in her eyes as she looks up at you.<</narrate>>
<<say melody>>...if she saw me with another man, shared you with me even, it might help. We'd get close sexually without actually having sex with each other.<</say>>
<<think mc>>Surely we'd all be having sex together... but I'm not going to pick holes in the logic when I'll be getting a threesome out of it!<</think>>
<<say melody>>Just... come by my room tonight if you want to try it. Don't worry if you're busy, we'll probably pop by every few days so we can chat where she feels most at ease anyway.<</say>>
<<narrate>>She skips off towards her bedroom before you can respond.<</narrate>>
<center>
<<button "Close">>
<<event "melody" "sis">>
<<run overrideSchedule('hm', 8, 21, "Off World")>>
<<run overrideSchedule('hm', 21,24, "bedrooms")>>
<<run overrideSchedule('melody', 8, 21, "Off World")>>
<<run overrideSchedule('melody', 21,24, "bedrooms")>>
<<available "hm">>
<<available "melody">>
<<script>>
Engine.play(State.active.title, true);
closeDialog();
<</script>>
<</button>>
</center><<narrate>>$maddy.name waves you down, a massive grin across her face.<</narrate>>
<<say maddy>>$name... I owe you... big time.<</say>>
<<say mc>>Everything went okay after I left then?<</say>>
<<say maddy>>He was a little... fuzzy on the details. When you disconnected there was a sudden change in him. As to be expected, he looked down at me and started apologizing, explaining he had no idea what came over him or why. He doesn't remember everything... he said it was like he was in a hazy dream.<</say>>
<<say mc>>Shit...<</say>>
<<say maddy>>No, listen, it's all good. I told him what happened, what I planned... and he almost seemed relieved. I won't bore you with the details, we're not gonna be fucking like rabbits, unfortunately, at least not yet. It's given him the push he needs, but he still needs time, I guess. Though I can't help but think he's looking at my sisters differently now too...<</say>>
<<say mc>>Yeah, you never mentioned that you had so many sisters... or that your father had a second family!<</say>>
<<say maddy>>It's... complicated. The rest of the family don't know.<</say>>
<<think mc>>I'm thinking I'd like to have some fun with all his daughters and wives!<</think>>
<<say maddy>>Anyway, I'm gonna get back. If you want to know anything else, we can discuss it next time I'm on the hub.<</say>>
<<narrate>>She gives you an unexpected hug, thanks you again, and heads out.<</narrate>>
<<think mc>>Well, I guess that worked out.<</think>>
<center>
<<button "Close">>
<<event "maddy" "daddy" 'done'>>
<<script>>
Engine.play(State.active.title, true);
closeDialog()
<</script>>
<</button>>
</center><<narrate>>You feel the expedition arriving back, among them Dean, who you agreed to revert back to their original form.<</narrate>>
<<narrate>>As you focus your energies on doing so, you can't help but notice how attractive she is.<</narrate>>
<<think "mc">>She'll be in the lounge when I'm ready to talk to her.<</think>>
<center>
<<button "Close">>
<<run delete $mount>>
<<event "melody" "step" 3.5>>
<<script>>
Engine.play(State.active.title, true);
closeDialog()
<</script>>
<</button>>
</center><<set _w = $melody.events.met>>
<<say _w>>Sorry, had to come find you as soon as I got back. Did you hear $melody.name mention Dean?<</say>>
<<say "mc">>That he's stalking her? Yeah.<</say>>
<<say _w>>I invited her to stay on the hub for a few days so she can let us deal with him, but she said she wouldn't let him rule her life.<</say>>
<<say "mc">>No reason we still can't give him a little fright.<</say>>
<<say _w>>Yeah, send me back, I wanna handle this one personally!<</say>>
<center>
<<button "Close">>
<<run delete $mount>>
<<event "melody" "step" 2>>
<<script>>
Engine.play(State.active.title, true);
closeDialog()
<</script>>
<</button>>
</center><<set _mount = $misty.events.lesson>>
<<say _mount>>Had to come and find you as soon as I got back. Figured you'd want to know what happened with $misty.name!<</say>>
<<say "mc">>Yeah, were you okay?<</say>>
<<say _mount>>Yeah, apparently the girl's name is <<textbox "$moody.name" Adeline>> and she's a big popstar on that world. Especially popular with the male populace and they believe it'd ruin her career if they find out she's lesbian.<</say>>
<<say "mc">>I see... did you manage to settle things?<</say>>
<<say _mount>>Yes, though it may not be a bad idea to remain friendly with them.<</say>>
<<say "mc">>Thanks. By the way, what's Asbakala?<</say>>
<<say _mount>>Oh, right, that threw me too. It's one of their moons.<</say>>
<center>
<<button "Close">>
<<run delete _mount>>
<<event "mc" "musiclesson" 3>>
<<script>>
Engine.play(State.active.title, true);
closeDialog()
<</script>>
<</button>>
</center><<say "lexi">>I'm home, $name!<</say>>
<<say "mc">>Glad you're back. Was everything okay?<</say>>
<<say "lexi">>The trip was fine. Come find me when you have some time and we can discuss the details.<</say>>
<<say "mc">>Thanks, $lexi.refer.<</say>>
<center>
<<button "Close">>
<<set delete $lexi.events.easttrip>>
<<taskdone "roadtrip1">>
<<available "lexi">>
<<script>>
Engine.play(State.active.title, true);
closeDialog()
<</script>>
<</button>>
</center><<say "gsec">>Ah, good. I was hoping I'd find you here. Sorry to interrupt but I had an old friend of Howard's come by Aegis recently.<</say>>
<<say "mc">>Oh? How can I help?<</say>>
<<say "gsec">>She's intrigued by $stripname. She'd like the opportunity to do a show there. I can vouch for her ability.<</say>>
<<say "mc">>If you're comfortable with her ability, it's fine by me.<</say>>
<<say "gsec">>Yes, that's not the awkward part, and this is why Howard suggest I pass it by you first. It's about $krissy.name...<</say>>
<<say "mc">>What does this have to do with her?<</say>>
<<say "gsec">>She wants to perform with $krissy.name. She's heard a lot about her from Howard, and how much $krissy.name used to love being watched.<</say>>
<<say "mc">>Wow... okay... yeah...<</say>>
<<say "gsec">>Would you be okay with your $krissy.them performing like that?<</say>>
<<say "mc">>I'm not sure it's my decision, nor is it really my place to speak to her about it. You mentioned it was Howard's old friend? Why doesn't he visit the hub and he can discuss with $krissy.name?<</say>>
<<say "gsec">>Good idea. I'll let him know.<</say>>
<center>
<<button "Close">>
<<event "gsec" "kyler">>
<<script>>
closeDialog()
<</script>>
<</button>>
</center><<set _w = State.variables[$matsDee]>>
<<narrate>>_w.name comes rushing over.<</narrate>>
<<say $matsDee>>Sorry to interrupt, but while searching that cache $dee.name showed us we found one of the materials $lacy.name wanted for her device.<</say>>
<<say 'mc'>>That's fantastic news, can you take it over to her?<</say>>
<<say $matsDee>>Of course, just wanted you to be the first to know.<</say>>
<<say 'mc'>>Thanks, _w.name.<</say>>
<center>
<<button "Close">>
<<set delete $matsDee>>
<<if $matsFound >= 4 && $lacy.events.minigateway == 1>>
<<run queueMessage(0, "lacy", "nestart")>>
<</if>>
<<script>>
closeDialog()
<</script>>
<</button>>
</center><<set _w = State.variables[$matsCee]>>
<<narrate>>_w.name waves you down.<</narrate>>
<<say $matsCee>>That was quite the trip, huh?<</say>>
<<say "mc">>I'll say! How'd it go after I left?<</say>>
<<say $matsCee>>I explained quite a bit to $sata.name. I think trading with them will be quite profitable. <<if $matsCee == 'val'>>She's like me, able to<<else>>She is quite unique though, she can<</if>> sense traveler energies, though she can't travel herself. They've been stationed there as it's where a lot of travelers cross.<</say>>
<<say 'mc'>>So why never offer any of the other travelers the same?<</say>>
<<say $matsCee>>Apparently their energies were weak, so they perceived no threat. Their orders were only to make contact if someone powerful appeared. Like you. She could even tell when your connection expired. Anyway, I'll go give this gemstone to $lacy.name.<</say>>
<<say 'mc'>>Thanks, _w.name. Though the whole thing still feels a little... cagey. Let's be friendly but also wary of them.<</say>>
<<say $matsCee>>Understood. By the way... their unique garb was based on what the invading travelers were wearing. I've explained quite a bit, so they should hopefully update their wardrobe to be a little more keeping with the rest of their world.<</say>>
<<think "mc">>That's a shame, she looked pretty hot in that outfit.<</think>>
<center>
<<button "Close">>
<<set delete $matsCee>>
<<if $matsFound >= 4 && $lacy.events.minigateway == 1>>
<<run queueMessage(0, "lacy", "nestart")>>
<</if>>
<<script>>
closeDialog()
<</script>>
<</button>>
</center>Here you can assign workers to shifts at your facilities. For now, you've only access to $ember.name and Construction. but get her assigned, choose a construction project and soon you'll have more.<br>
<br>
For rotas, a day is divided into four shifts.<br>
Morning 09:00 - 13:00<br>
Afternoon 13:00 - 17:00<br>
Evening 17:00 - 20:00<br>
Night 20:00 - 00:00<br>
<br>
To assign someone, click the circular slot for the appropriate facility and shift then pick a worker. On the worker menu you'll see their skill appropriate to the current facility as well as their fatigue level.<br>
<br>
Each facility is available at different times of the day. If there are no circular slots on the schedule, then it is closed during that shift.<br>
<br>
The base fatigue gain is 5 per shift, and overnight 7.5 fatigue is recovered. Every point of fatigue gained after 50 gives 2% chance for the worker to be unproductive during a shift.<br>
<br>
Workers will increase their skills by working a shift in a facility, however, not every worker can work in every facility, hover over their icon to view this info.<br>
<br>
You can also go into that facility to view more info or options, as well as manage the rota for that facility individually.<br>
<br>
Go ahead and assign $ember.name to construction then enter the facility to assign a construction project. The story will continue once the building is complete.<br>
<br>
<center>
<<button "Close">>
<<script>>
closeDialog()
<</script>>
<</button>>
</center><<nobr>>
If you have audio enabled, that noise [<<link "Play again">><<audio "notify" play>><</link>>], means you've got a message. Check your phone!
<br>
Messages allow another person to contact you even if you're not close. Mostly, people use it when they have something important to tell you, or want you meet up with them.
<br>
When you open the messaging app, new messages are in blue, read messages in green. It will auto scroll to the first new message, or the bottom of the page if nothing new.
<br>
On an unrelated note, you can now also use the tracker and quick travel options on the right menu. The ability to add/remove locations will come later.<br>
<center>
<<button "OK">>
<<script>>
closeDialog();
$('#story').css('margin-right', '20rem');
<</script>>
<</button>>
</center>
<</nobr>><<nobr>>
Every night after midnight, you'll usually head to bed. Though there will be exceptions to the rule on occasion.
<br><br>
You'll normally have a few options before you sleep. You can jack off, sneak around to try and peep on the others or just relax for a bit. <br><br>
If you relax, one of the other residents may come visit if you've met the criteria to trigger any during the day. The options may differ contextually, but broadly you'll be given three options when this happens. You can allow the event to play out, and usually night visits are lewd. You can ignore the visitor at a small reputation loss, you'll need to re-trigger the event for them to visit again - do note in the early game, some scenes are tied to tasks and can not be re-triggered again until later in the game. Or, you can refuse them entirely at a large reputation loss. You can not re-trigger a refused event until you unblock it, which it isn't available until later in the game.
<br><br>While your progress in the main story will influence what visits are available, the visits themselves are optional to the main story - though they may be important to a character's personal story.
<br><br>If you return to your room after 02:00, you will fall asleep immediately with no options at all.
<br><br>The time will be visible on the left sidebar tomorrow once you enter free roam mode.
<br><br>More options may unlock as you progress.
<center>
<<button "Close">>
<<script>>
closeDialog()
<</script>>
<</button>>
</center>
<</nobr>><center>
<<textbox "$savename" $savename>>
<br>
<label><<checkbox "$savedate" false true autocheck>> Suffix with default name</label>
<br>
<<button "Confirm">>
<<script>>
closeDialog();
SugarCube.UI.saves();
<</script>>
<</button>>
</center><<if window.online == false>>
This version adds an optional update checker option that will ping https://gateway.mom and alert you to any available updates whenever you load a save. <br>
<div id="updates">
Would you like to enable this?
<<button "Yes">>
<<replace "#updates">>
The game will now check for updates whenever you load a game. This can be disabled in the settings.
<</replace>>
<<script>>
settings['updateChecker'] = true;
<</script>>
<</button>> <<button "No">>
<<replace "#updates">>
The game will <b>not</b> check for updates. This can be changed in the settings.
<</replace>>
<<script>>
settings['updateChecker'] = false;
<</script>>
<</button>>
</div>
<</if>>
<center>
<<button "Close">>
<<script>>
closeDialog()
<</script>>
<</button>>
</center>You've upgraded to v0.1.3.
<br><br>
This updates fixes a lot of bugs and adds a number of features the players have requested - such as volume control.
<br><br>
Check the changelog for more info.
<br><br>
Thanks for playing.
<center>
<<button "Close">>
<<script>>
closeDialog()
<</script>>
<</button>>
</center>You've upgraded from build 3 to 4.
<br>
<br>
The rota system has been reworked, as a result, you will no longer have anyone assigned to the rota (sorry!).<br><br>
However, here are the benefits:<ul>
<li>More flexibility with schedules.</li>
<li>The ability to show the current locations in the trackers.</li>
<li>Option to set rotas differently each day of the week.</li>
</ul>
Depending on what screen you loaded into, currently displayed trackers may say "Off World". Once you move on to a new screen they'll display correctly.
<br><br>
Enjoy!
<center>
<<button "Close">>
<<script>>
if (State.variables.breakdone.bar != undefined && State.variables.breakdone.bar.includes('secondslot')) {
newMessage('ember', 'hiring2');
}
checkSchedules();
closeDialog()
<</script>>
<</button>>
</center>You've just unlocked staff facilities for the spa.
This upgrade allows you allocate staff to relax at the spa, even when it's normally closed to the travelers.
These slots appear a little differently on the rota and have a teal border. As exampled below.
<div style="width:fit-content;">
<div class="badge relax"><img @src="setup.img+'/monique/badge.jpg'"></div> <div class="badge relax empty"></div>
</div>
<br><br>
Assigning someone to one of these slots will mean they will spend a shift relaxing at the spa in order to recover 15 fatigue.
These slots will help you better manage your team.
<center>
<<button "OK">>
<<script>>
closeDialog()
<</script>>
<</button>>
</center>You've got your first task!
Tasks are given by other characters, or inferred through their actions/conversations.
A task tracker appears in the sidebar on the left.
Every task will have a little icon to the left of it in the tracker.
⭐ shows the task is required to progress the story.
★ shows the task is part of the primary story, but optional.
⭕ shows the task is for optional side content.
You can hide optional tasks by clicking them. You can unhide them once you have a computer.
Beside each task is a question mark icon that will reveal the solution(s) when you hover over it.
As a side note, you can also hover over most character's avatars to see contextual information.
<center>
<<button "OK">>
<<script>>
closeDialog()
<</script>>
<</button>>
</center><<nobr>>You've now completed your first facility that has an upkeep. Each night the upkeep value will be taken from your resources. The current upkeep value is displayed on the left with this icon 🔻. Some facilities, upgrades and future actions will provide an income to help offset this, but for now the primary way to ensure you have sufficient resources is to send people on expeditions.
<br><br>
Additionally, this is your first facility that introduces one of your most important stats - attractiveness 😍. This stat shows how attractive your hub is to potential travelers. The higher the score, the more travelers will spread the word of your hub. Increasing it high enough will trigger special events and advance the main story.
<br><br>
Thanks to $lacy.name's research, you do not need to service these travelers yourself. Though you can (and should) guide travelers yourself from time to time as you may meet new people or unlock additional content as your attractiveness score is increased.
<center>
<<button "Close">>
<<script>>
closeDialog()
<</script>>
<</button>>
</center>
<</nobr>><<nobr>>
<<set $scene = 0>>
<<set _img = getImg('adria')>>
<<if $mc.events.eastgo == 2 && $adria.events.transfap == undefined && $awaypartyeast == "adria">>
<<narrate>>You enter $adria.name's room, immediately spying the suitcase.<</narrate>>
<<think "mc">>Great, she's already started packing!<</think>>
<<narrate>>You then focus your vision behind that... when you notice $adria.name is writhing around on the ottoman with her panties around her knees. She hasn't noticed you.<</narrate>>
<<choices>>
<<link "Hide" adriasex>>
<<temp "tformpeep">>
<</link>><br>
<<link "Leave" housestuff>>
<</link>><br>
<<link "Come back when she's done" adria>>
<<event "adria" "transfap">>
<</link>>
<</choices>>
<<elseif $location == "bedrooms" && $adria.mature != true && $adria.events.blind == 6>>
<<narrate>>You knock on the door, but there's no answer.<</narrate>>
<<think mc>>Since when do I knock anyway?<</think>>
<<narrate>>You hear a faint murmuring from the other side.<</narrate>>
<<think mc>>I wonder, is she playing that game I got her?<</think>>
<<choices "Sneak Inside?">>
<<link "Yes" adriasex>>
<<temp "vr01">>
<</link>><br>
<<link "No" housestuff>>
<</link>>
<</choices>>
<<elseif $location != $currentlocations.adria && $location != "firstIntros" && $replay == false>>
<<say "adria">>I need to go. I'll speak to you later.<</say>>
<<follow adria>>
<<button "Continue" $return>>
<</button>>
<<elseif $location == "bedrooms" && $adria.mature != true && ($adria.events.bedroomsexy == undefined || $adria.events.sexy < 2) && $hour > 21>>
<<narrate>>She doesn't notice as you open the door, she's too busy engrossed in her phone.<</narrate>>
<<if $adria.events.bedroomsexy == undefined>>
<<think mc>>What is she doing?<</think>>
<<else>>
<<think mc>>Oh, she's at it again. Maybe this time I'll stay a little longer...<</think>>
<</if>>
<<vid "adria/photo01.mp4">>
<<think mc>>Holy shit...<</think>>
<<if $adria.events.blind >= 4>>
<<cont "adriasex" "photo02">>
<<else>>
<<narrate>>You stare for a moment longer then decide it's probably best to go out and knock, pretending you didn't see her.<</narrate>>
<<say adria>>Just a moment...<</say>>
<<say mc>>It's $name.<</say>>
<<narrate>>A few seconds of silence later...<</narrate>>
<<say adria>>Okay, come in.<</say>>
<<left2 _img>>
<<say adria>>What's up?<</say>>
<<event "adria" "bedroomsexy">>
<<choices "What do you want to discuss?" "topics" >>
<</choices>>
<</if>>
<<elseif $location == "garage" && $adria.corruption >= 40 && $adria.events.carwash == undefined && $adria.mature != true>>
<<narrate>>You hear the hose running.<</narrate>>
<<think "mc">>Sounds like she's washing the cars.<</think>>
<<choices>>
<<link "Watch her" adriaanswers>>
<<temp "carwash">>
<</link>><br>
<<link "Let her finish" adria>>
<<event "adria" "carwash">>
<</link>>
<</choices>>
<<elseif $location == "bedrooms" && ($adria.events.kristenmsg == 5 || $adria.events.kristenmsg == 7) && (getCurrentLocation('kristen') == "Off World" || getCurrentLocation('kristen') == planets[characterinfo['kristen'].home].name) && $adria.events.kristenvisit == undefined && $adria.mature != true>>
<<narrate>>She's currently hanging out with $kristen.name.<</narrate>>
<<choices>>
<<link "Spy" adriaanswers>>
<<event "adria" "kristenvisit">>
<<temp "kristenspy">>
<</link>><br>
<<link "Interrupt" adria>>
<<event "adria" "kristenvisit">>
<</link>><br>
<<link "Leave" housestuff>>
<</link>>
<</choices>>
<<else>>
<<if debug == true>>
<div class="debug">
<<button "Went to New Eden" adria>>
<<set $awaypartyeast = "adria">>
<</button>>
</div>
<</if>>
<<left2 _img>>
<<if $tempvar == "badflirt">>
<<narrate>>You start making an innuendo when she interrupts you.<</narrate>>
<<say "adria">>Gross, I'm your $adria.them, cut it out!<</say>>
<<think "mc">>She probably needs a bit more convincing before she responds differently.<</think>>
<<temp "">>
<<like "adria" -1>>
<<elseif $awaypartyeast == "adria" && ($adria.transforms == undefined || $adria.transforms.mature == undefined) && $neweden == true>>
<<say "adria">>Hey $adria.calls. Glad you're here! You know, it was kinda fun being in my other form. It was something different; exciting almost.<</say>>
<<say "mc">>I'd be happy to revisit the transformation.<</say>>
<<say "adria">>I think I'd like that, don't go out of your way for me... but maybe from time to time it might be fun.<</say>>
<<say "mc">>Works for me.<</say>>
<<say "adria">>I think my mom and $aubree.name were a bit jealous, though, so maybe see if they'd be interested too?<</say>>
<<say "mc">>Jealous of what?<</say>>
<<narrate>>She gives you a sarcastic look.<</narrate>>
<<think "mc">>I guess she's not going to spell it out.<</think>>
<<say "mc">>Maybe I should ask $lexi.refer, too.<</say>>
<<say "adria">>Good idea. What did you want to chat about anyway?<</say>>
<<notice>>You can now transform $adria.name into her older form at Gateway B.<</notice>>
<<if $adria.transforms == undefined>>
<<set $adria.transforms = {}>>
<</if>>
<<set $adria.transforms.mature = 1>>
<<else>>
<<say "adria">>Hey, $adria.calls.<</say>>
<<say "mc">>Hey, $adria.refer.<</say>>
<<if $adria.mature == true && $location == "lounge">>
<<think "mc">>Is she posing for me? She's hardly being subtle about it. I guess she really does feel more confident in this body.<</think>>
<</if>>
<<if $adria.events.kristenvisit == 1>>
<<say "kristen">>Oh, hey boss. I was just leaving. Catch you later okay?<</say>>
<<say "adria">>You don't have to leave on his account.<</say>>
<<say "kristen">>Nah, it's fine, I'll call you later, okay?<</say>>
<<narrate>>$adria.name looks back at you, a little annoyed.<</narrate>>
<<event "adria" "kristenvisit" 2>>
<</if>>
<<say "adria">>What's up?<</say>>
<</if>>
<<choices "What do you want to discuss?" "topics" >>
<</choices>>
<</if>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("adriadiscussions").processText());
})
<</script>>
<</nobr>><<scene>>
<<set _img = getImg('adria')>>
<<switch $tempvar>>
<<case "trip2">>
<<left2 _img>>
<<say mc>>You ready to head out?<</say>>
<<say adria>>Yes! Hell, yes!<</say>>
<<say mc>>Haha, so, where are we going?<</say>>
<<say adria>>Give me a few minutes to collect my things.<</say>>
<<cont "adriasex" "ne00">>
<<case "trip">>
<<left2 _img>>
<<say mc>>After reading your messages, I gave it some thought... how about we take a trip together?<</say>>
<<say adria>>Oh, I already know where. I've got everything planned!<</say>>
<<say mc>>You have?<</say>>
<<say adria>>Yeah, if I'm going to something...<</say>>
<<narrate>>She gives you a lustful grin.<</narrate>>
<<say adria>>...or someone, as it is in this case, I give it my all!<</say>>
<<say mc>>I'm loving this turnaround. What did you have in mind?<</say>>
<<say adria>>Yeah, well now that I know you're not just trying to wind me up... I feel a little more, I don't know, at ease? Anyway, I know this lovely secluded spot in New Eden just by the water. Pick me up between 8 and 11?<</say>>
<<say mc>>Sure, right after I grab some breakfast... unless you want to grab that together?<</say>>
<<say adria>>In the evening, silly.<</say>>
<<if $hour >= 20 && $hour < 23>>
<<say mc>>How about now?<</say>>
<<say adria>>Sounds good. Give me a few minutes to collect my things.<</say>>
<<cont "adriasex" "ne00">>
<<else>>
<<say mc>>It's a date!<</say>>
<<say adria>>Oh, I'm hoping we skip the date part and get right to dessert!<</say>>
<<say mc>>Fuck yeah!<</say>>
<<narrate>>She chuckles.<</narrate>>
<<button "Continue" $return>>
<<event "adria" "dreamed" 5>>
<<time 0.5>>
<</button>>
<</if>>
<<case "dreamed">>
<<left2 _img>>
<<say mc>>Man, what a wild dream!<</say>>
<<say adria>>Why, what did you dream about?<</say>>
<<say mc>>You... well, <b>we</b> dreamed...<</say>>
<<narrate>>Her face goes pale.<</narrate>>
<<say adria>>Your power... oh, my god, why didn't I realize?<</say>>
<<say mc>>It was amazing! I had no idea you were so filthy!<</say>>
<<say adria>>Oh, my god, no. That was a fantasy... you're not supposed to live your... no...<</say>>
<<narrate>>She starts breathing heavily, while looking at you in disbelief.<</narrate>>
<<say adria>>It was mine... it was private...<</say>>
<<say mc>>Whoa, whoa, holy shit. Calm down. Just take a moment.<</say>>
<<narrate>>It takes her a little while, but eventually her breathing returns to normal.<</narrate>>
<<say adria>>So... what does this mean?<</say>>
<<say mc>>It means we had some great sex, without the blindfold.<</say>>
<<say adria>>But not actually, because it was just a dream, right?<</say>>
<<say mc>>Did it feel like a dream? We were both there, every feeling was real, every desire true.<</say>>
<<say adria>>So... you really fucked my ass?<</say>>
<<say mc>>Hell yeah!<</say>>
<<say adria>>And you're okay with that? You don't care what anyone else thinks?<</say>>
<<say mc>>Since coming here, I've learned not to worry about old-fashioned taboos and traditions. You spent waaaay more time than that in New Eden and, from my understanding, very little is taboo there.<</say>>
<<say adria>>Yeah... but watching other people do that kinda thing is different to doing it yourself...<</say>>
<<say mc>>Listen. I don't want to play games. I don't care who knows what we're doing and, from my experience, they don't care that we're doing it anyway. Most will find it hot.<</say>>
<<if $krissy.sex > 0 || $anna.sex > 0 || $theodora.sex > 0 || $kenna.sex > 0 || $sophia.sex > 0>>
<<think mc>>And in comparison to what else I've been getting up to, this barely registers as unorthodox anyway.<</think>>
<</if>>
<<say adria>>So what now? I don't want to be just another girl you fuck around with.<</say>>
<<say mc>>Whoa, whoa. Every single one of the people living in this hotel are dear to me. I may be a lustful hooligan, but that doesn't change that I genuinely care about you and everyone else here. If I only thought you were only a sex object, why would I have gone to all this trouble?<</say>>
<<say adria>>I just... okay, I need some time... and I don't want others to know, not for now at least.<</say>>
<<if $krissy.sex > 0 || $anna.sex > 0 || $theodora.sex > 0 || $kenna.sex > 0 || $sophia.sex > 0>>
<<say mc>>Would it help you to know that I've slept with people that, in the old world, would be considered closer to me than you?<</say>>
<<say adria>>You've really adapted to this place, huh?<</say>>
<</if>>
<<think mc>>I don't really care who does or doesn't know, to be honest. But it looks like she's finally being true to herself, at least.<</think>>
<<say adria>>But, you know... that dream was... well... maybe we could...?<</say>>
<<narrate>>You grin at her wickedly and nod.<</narrate>>
<<button "Continue" "housestuff">>
<<set $location = "bedrooms">>
<<lust "adria" 3>>
<<event "adria" "dreamed" 2>>
<<corruptmax "adria" 200>>
<<corrupt "adria" 10>>
<<time 1>>
<<run queueMessage(16, 'adria', 'remote')>>
<<run queueMessage(16, 'adria', 'remote2')>>
<<run queueMessage(16, 'adria', 'remote3')>>
<</button>>
<<case "game">>
<<left2 _img>>
<<say mc>>I got you something...<</say>>
<<say adria>>What is it?<</say>>
<<say mc>>A VR game I picked up off world. The type that you and I particularly enjoy. A token of my appreciation for that porn you sent me.<</say>>
<<say adria>>So you sourced another way to get porn?<</say>>
<<say mc>>Come now, given this place, and everything else, did you really think you were the only way to get porn?<</say>>
<<say adria>>Well, no, but you seemed determined to have me get it for you before...<</say>>
<<say mc>>Well, I wanted to know what you were into, and get recommendations. You seemed like a connoisseur when we started talking about it.<</say>>
<<say adria>>I don't know, it's just the fantasies you can live through this medium are amazing... and VR porn is really intense. I'll give it a go. Thanks, $adria.calls.<</say>>
<<think mc>>Doesn't even blink an eye at discussing porn with me anymore...<</think>>
<<say mc>>There's a setting on there that lets you import photos to generate your partner. I don't know how good it is, but it's quite amazing how far tech has come since I left Earth.<</say>>
<<say adria>>Wow, really? Oh, my, this is gonna be fun!<</say>>
<<narrate>>She bites her bottom lip.<</narrate>>
<<say adria>>Oh, fuck, real fun!<</say>>
<<think mc>>Now, I just need to be there when she's having that fun!<</think>>
<<button "Continue" $return>>
<<event "adria" "blind" 6>>
<<lust "adria" 4>>
<<corrupt "adria" 4>>
<<like "adria" 15>>
<<item "vg" -1>>
<<time 1>>
<</button>>
<<case "great">>
<<left2 _img>>
<<say mc>>You know you're extremely sexy, right?<</say>>
<<say adria>>What the hell, $adria.calls, where did that come from?<</say>>
<<say mc>>It's not gone unnoticed how you've been acting recently... and I've certainly enjoyed watching you.<</say>>
<<say adria>>You can not say that! That's so wrong.<</say>>
<<say mc>>Is it?<</say>>
<<say adria>>I mean, yes!<</say>>
<<say mc>>So... you wouldn't wanna maybe play together some more?<</say>>
<<narrate>>Her eyes bulge wide.<</narrate>>
<<think adria>>Shit, shit, shit... it's like all my fantasies are starting to come true, but what do I do? What if this is just some weird prank or wind up?<</think>>
<<say adria>>This isn't the time to...<</say>>
<<narrate>>She starts ushering you out the door.<</narrate>>
<<say mc>>Wow, you even smell good...<</say>>
<<narrate>>Her face goes beet red.<</narrate>>
<<say adria>>Are you winding me up right now? Haha, very funny. Go on...<</say>>
<<narrate>>She pushes out the door and closes it promptly.<</narrate>>
<<think mc>>Huh, I know she wants it, I thought we'd done enough to overcome her silly objections by now. What's my next move?<</think>>
<<narrate>>You pace up and down, trying to figure it out.<</narrate>>
<<think mc>>Seriously, why is she making this so difficult, it's clear we're both into it...<</think>>
<<narrate>>The door creaks open.<</narrate>>
<<say adria>>What are you still doing here? You look like an idiot walking up and down...<</say>>
<<say mc>>I was just thinking about what just happened.<</say>>
<<say adria>>Yeah, yeah, make your $adria.them uncomfortable for a laugh. I'm done. I'm gonna go play a game; I just got a new VR headset I wanna try.<</say>>
<<think mc>>Ohh! We have a shared joy for porn, maybe I could get her a VR porn game for... both of us to enjoy.<</think>>
<<narrate>>A devilish grin appears over your face. She raises an eyebrow.<</narrate>>
<<say adria>>Weirdo.<</say>>
<<narrate>>She closes the door again.<</narrate>>
<<button "Continue" $return>>
<<event "adria" "blind" 5>>
<<lust "adria" 4>>
<<corrupt "adria" 4>>
<<like "adria" 4>>
<<time 1>>
<</button>>
<<case "blinded">>
<<left2 _img>>
<<say mc>>Hey, you think you could help me out with something?<</say>>
<<say adria>>You didn't break the computer jacking off to those images again, did you?<</say>>
<<say mc>>What happened to never mentioning that again, do I need to remind you of that webcam footage?<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say adria>>I'm not mentioning it to anyone else! Just us talking.<</say>>
<<say mc>>The walls have ears. Anyway. No. It's about $kristen.name.<</say>>
<<narrate>>She pauses for a moment.<</narrate>>
<<think adria>>Shit... shit... of course he's going to talk to her about it... and I never planned this with her, I bet she told him it wasn't her. Fuck...<</think>>
<<narrate>>You grin with a dark delight in seeing her nervousness.<</narrate>>
<<say mc>>We did the blindfold thing again...<</say>>
<<say adria>>Oh... hahaha... yeah... how was it? Good... I hope... yeah?<</say>>
<<say mc>>Are you okay, you seem nervous?<</say>>
<<say adria>>Nope, hahaha, I'm fine. Just a little weird talking about her and you, you know?<</say>>
<<say mc>>Didn't seem to bother you before... I just wanted you to know... It. Was. Great. I still find the blindfold a little off-putting, but otherwise, I had a great time. I appreciate the advice and the help.<</say>>
<<narrate>>She visibly relaxes.<</narrate>>
<<say adria>>Oh, It was my pleasure, believe me.<</say>>
<<think adria>>I can't risk that again. I know it was reckless, but I just... wanted it so bad!<</think>>
<<say mc>>I think next time we should do it without the blindfold.<</say>>
<<say adria>>I think that's kinda her thing.<</say>>
<<think mc>>Hmm, how do I move past this barrier... I probably could just tell her, but if what $kristen.name says is true, that may set us back too far, and I'm not a patient man. I guess the first step is to get her comfortable being sexy around me...<</think>>
<<button "Continue" housestuff>>
<<lust "adria" 4>>
<<corrupt "adria" 5>>
<<event "adria" "blind" 4>>
<<event "adria" "sexy" 0>>
<<shoot "adria" "adriared01">>
<<time 1>>
<</button>>
<<case "trans">>
<<set _w = State.variables[$awaypartyeast]>>
<<left2 _img>>
<<say "mc">>I was talking to _w.refer, and it occurred to me... would you be interested in trying out a transformation too?<</say>>
<<say "adria">>You mean into a different body, so I'd be like a different person?<</say>>
<<say "mc">>You'd still be you, but otherwise, yeah.<</say>>
<<say "adria">>But I would <i>look</i> like someone else. Yeah, let's do it.<</say>>
<<narrate>>You head to Gateway B together.<</narrate>>
<<say "adria">>So it might be cool to be someone a little older. Not like old, old, just like maybe ten years.<</say>>
<<say "mc">>Sure, just envision what you want as you step through and I'll concentrate on that.<</say>>
<<cont "transformation" "adria">>
<<case "planets">>
<<left2 _img>>
<<say "mc">>You used to travel before settling here, right?<</say>>
<<say "adria">>A little, but not overly much if I'm honest. It was mostly just with my mom, though $aubree.name and I did use to go clubbing on this one world...<</say>>
<<say "mc">>Can you try traveling there?<</say>>
<<say "adria">>Sure. Why not? Is there something you're wanting to learn?<</say>>
<<say "mc">>Just a task from the council to prove my worth.<</say>>
<<narrate>>You head to the gateway together.<</narrate>>
<<say "mc">>So just think of where you want to go, and the Gateway should translate it for me and allow me to connect.<</say>>
<<say "adria">>I really need to learn how this gateway works... maybe I should spend some more time with $lacy.name.<</say>>
<<say "mc">>Yeah, I'm sure she'd like that.<</say>>
<<say "adria">>Alright, here goes...<</say>>
<<narrate>>You feel something pulling at you, trying to sap at your energy, but then it dissipates and then nothing, you just feel a little light-headed.<</narrate>>
<<say "mc">>What... ugh...<</say>>
<<narrate>>Flashing text appears in your mind's eye.<</narrate>>
<div class="choices" style="margin:auto">
<center class="blink">SAFETY PROTOCOL ENGAGED.</center>
<center class="blink">TRAVELER POPULATION TOO LARGE FOR YOUR CURRENT POWER LEVEL.</center>
<center class="blink">REROUTING THROUGH THE EQUALIZER NETWORK.</center>
</div>
<<narrate>>The gateway splashes open, but you feel no connection to the other side. Nonetheless the attempt makes you feel lethargic.<</narrate>>
<<say "mc">>This isn't going to work, this is just like an automated transfer.<</say>>
<<say "adria">>How? What's wrong?<</say>>
<<say "mc">>The gateway stopped me connecting. Apparently the population of that world is too much for my current power level.<</say>>
<<say "adria">>I see...<</say>>
<<if $completeTasks.includes('safety')>>
<<say "mc">>It happens if I try to connect to a world beyond my power. The equalizers take over the transfer instead. It's a safety feature of the Gateway.<</say>>
<<say "adria">>So, you just need to become more powerful?<</say>>
<<say "mc">>Exactly!<</say>>
<<say "adria">>Interesting...<</say>>
<<elseif $tasks.safety == undefined>>
<<say "mc">>This has never happened before.<</say>>
<<say "adria">>Maybe it's something $kp.name, $kenna.name, or one of the other council members can explain?<</say>>
<<say "mc">>Maybe. I thought the task sounded too easy.<</say>>
<<say "adria">>Have you ever had difficulty connecting to a new world before?<</say>>
<<say "mc">>To be honest, it's extremely rare that I do, and even rarer that I discover it via an outgoing connection. It's nearly always been from incoming connection.<</say>>
<<say "adria">>Oh, now I'm even more curious! Is it some arbitrary rule set by the council, or does it have just cause?<</say>>
<<say "mc">>One way to find out!<</say>>
<<elseif $tasks.safety != undefined>>
<<say "mc">>It's not the first time, but it's strange it's suddenly happening so frequently.<</say>>
<<say "adria">>Maybe it's something $kp.name, $kenna.name, or one of the other council members can explain?<</say>>
<<say "mc">>My thoughts exactly.<</say>>
<</if>>
<<button "Continue" gatewayb>>
<<event "adria" "planets">>
<<task "safety">>
<<like "adria" 3>>
<<time 1>>
<</button>>
<<case "carwash">>
<<narrate>>You follow the sound to see $adria.name heading towards a pink car with a running hose.<</narrate>>
<<vid "adria/car01.mp4">>
<<think "mc">>Why is she washing it so provocatively? Actually, I don't care, I'm just gonna enjoy the show.<</think>>
<<if $adria.events.blind > 3>>
<<narrate>>You blow a wolf whistle, she immediately turns to you, looking flustered.<</narrate>>
<<say adria>>I was just washing the cars and I got thinking about and... well... I...<</say>>
<<say mc>>Don't stop on my account, I was just enjoying the view.<</say>>
<<narrate>>She stares at you for a moment.<</narrate>>
<<think adria>>Is he flirting with me? No... it's just banter... just ignore it.<</think>>
<<left2 "adria/car01.jpg">>
<<narrate>>She continues to wash the car proper, but every now and again, trying to make it seems like an accident, she'll mess with the hose, or squeeze the sponge over her chest, so the suds run down her body, then try to steal glances at you without noticing.<</narrate>>
<<think mc>>She's a terrible actor, but the more she gets used to me seeing her like this, the faster I can move things along.<</think>>
<<narrate>>When she's finished, she walks by you.<</narrate>>
<<say adria>>I can't believe you just stood and watched me struggle without even helping.<</say>>
<<say mc>>Oh, I saw no struggle, I just saw a sexy young woman having a wild time.<</say>>
<<narrate>>She blushes and scurries away without another word.<</narrate>>
<<button "Continue" housestuff>>
<<lust "adria" 3>>
<<corrupt "adria" 4>>
<<event "adria" "carwash" 2>>
<<set $adria.events.sexy++>>
<<time 1>>
<</button>>
<<else>>
<<narrate>>After a little while she starts actually washing the car.<</narrate>>
<<think "mc">>Bah, show's over I guess... was that show for me? The cars get washed every couple of days... hmm...<</think>>
<<button "Continue" housestuff>>
<<lust "adria" 1>>
<<corrupt "adria" 3>>
<<event "adria" "carwash" 2>>
<<time 0.5>>
<</button>>
<</if>>
<<case "tease">>
<<block _img>>
<<narrate>>As you're talking, you can't help but notice her eyes quickly dart away from your crotch.<</narrate>>
<<say "mc">>Can I ask you a sensitive question?<</say>>
<<narrate>>She looks at you guiltily.<</narrate>>
<<say "adria">>Uhh... what's up?<</say>>
<<say "mc">>It's about $kristen.name, things got a little weird with us recently.<</say>>
<<say "adria">>Oh?<</say>>
<</block>>
<<think "mc">>Okay. Now let's try and feign some modesty.<</think>>
<<say "mc">>I know we've both kinda got a thing going with her, which doesn't bother me, but are you comfortable talking about this kinda thing?<</say>>
<<narrate>>Her eyes are wide with excitement.<</narrate>>
<<say "adria">>Oh... uhh, yes, of course. What's up?<</say>>
<<say "mc">>It was incredible, we were role-playing or something, I don't know, it was her suggestion. But I was wearing a blindfold while she... can I be candid?<</say>>
<<narrate>>She nods.<</narrate>>
<<think "mc">>I think I'm getting the hang of playing this role!<</think>>
<<say "mc">>So, I was wearing a blindfold while she sucked me off. And wow, it was incredible, best head I've ever had probably. I was so turned on, she treated my dick like royalty... and well I wanted her, it took all my willpower not to throw her on the bed and ravage her... but when I suggested it she stormed off... which is just not like her.<</say>>
<<narrate>>$adria.name's expression goes from that of lustful pride to panic before settling on a cute grin.<</narrate>>
<<say "adria">>It was that good?<</say>>
<<think "mc">>Ha, I have an idea.<</think>>
<<say "mc">>$adria.refer, it was incredible. I've been thinking about it so much. It felt like she was someone else entirely. Don't tell her, but I was imagining she was that woman from the video you sent me.<</say>>
<<narrate>>She looks away momentarily. Her cheeks are rosy and she's barely able to keep eye contact as she replies.<</narrate>>
<<say "adria">>Haha, really? Uhmm... maybe you should try again? But you know... keep the blindfold on. I think she finds it a turn on. Probably just spooked her when you wouldn't play her game, you know?<</say>>
<<think "mc">>Wait... wait... is she saying what I think she is?<</think>>
<<say "adria">>I'll have a chat with her, leave it with me.<</say>>
<<think "mc">>At this stage, I just kinda wanna come out and say it, but given I nearly fucked it last time, I'd better just let her take the lead; see where it goes.<</think>>
<<say "mc">>Great, thanks $adria.refer!<</say>>
<<set _s = $adria.them+"s">>
<<say "adria">>Hey, what are _s for?<</say>>
<<narrate>>You give her a surprised look.<</narrate>>
<<say "adria">>Yeah, yeah. Okay, But we're both a little... different. Either way, I'll sort it. I'll let you know when's good.<</say>>
<<think "adria">>Shit, am I really ready for that? But it was so... fucking hot... and it's not like he'd ever know, and he's already fantasizing it's me even if he doesn't realize it's me he's fantasizing about. What would he say if he knew it was me? Shit... this is really fucked up, but he liked it right, so it's okay?<</think>>
<<say "mc">>You okay there? You're spacing out.<</say>>
<<say "adria">>Oh, right. Sorry, lost in thought. I'll let you know once I'm ready, okay? Uh, I mean, once I've spoken to $kristen.name.<</say>>
<<think "mc">>Ha!<</think>>
<<say "mc">>Alright, thanks $adria.refer.<</say>>
<<if $adria.corruption < 75>>
<<think "mc">>I don't think she's 100% on board despite her words. I don't think she plenty corrupt enough, though, probably just needs to be a little more... horny.<</think>>
<</if>>
<<button "Continue" housestuff>>
<<like "adria" 3>>
<<lust "adria" 2>>
<<corrupt "adria" 8>>
<<event "adria" "kristenmsg" 12>>
<</button>>
<<case "pornthanks">>
<<block _img>>
<<say "mc">>$adria.name... about that porn you sent me.<</say>>
<<say "adria">>Uh... yeah?<</say>>
<<think "adria">>Oh god, no. He noticed?! Why did I include myself in it?!<</think>>
<<say "mc">>Just wanted to thank you. Though, have you got anything longer, maybe with their faces in the frame?<</say>>
<<narrate>>You see her shoulders relax.<</narrate>>
<<think "adria">>Oh, thank god.<</think>>
<</block>>
<<say "adria">>Nothing you don't already have access to. I could probably ask $kristen.name to get some off world?<</say>>
<<say "mc">>No, no! I'd rather keep this between you and me. I don't think the others appreciate the art like we do.<</say>>
<<if $cassie.lustlvl >= 3>>
<<think "mc">>Well, not quite true... I know firsthand $cassie.name is into it.<</think>>
<</if>>
<<say "adria">>Oh, right, yeah, of course. I uhhh...<</say>>
<<think "mc">>Let's really lay it on thick!<</think>>
<<say "mc">>That second video was especially great. I know it's crass of me to say, but my god that pussy was incredible. Despite how short the clip was, I was enchanted by it. The things I'd do to that woman if I had the chance!<</say>>
<<narrate>>Her face goes bright red and she tries to avoid eye contact.<</narrate>>
<<say "adria">>Haha... yeah... yeah...<</say>>
<<say "mc">>I've been fantasizing over that pussy. Wow. Let me know if you get any more, yeah?<</say>>
<<say "adria">>Sure... sure...<</say>>
<<think "mc">>Ha! That was easy, just look how flustered she became. I don't think she'll need that big of a push before we can enact $kristen.name's plan.<</think>>
<<say "adria">>Anyway... I need to uhhh... take a shower. I'll talk to you later.<</say>>
<<think "mc">>Look how easily turned on she is. I suspect I know what she's doing in the shower... maybe I should go and enjoy the show.<</think>>
<<button "Continue" adriasex>>
<<like "adria" 3>>
<<lust "adria" 2>>
<<corrupt "adria" 1>>
<<temp "showerpeep">>
<</button>>
<<case "pornovid">>
<<think "mc">>Wow, she really sent me something. Doesn't look like too anything exciting from the thumbnails, but let's see.<</think>>
<<narrate>>You hit play on the first video.<</narrate>>
<<vid "adria/comp01.mp4">>
<<think "mc">>Heh, I wonder if this video is where she got the idea for the silver dildos from?<</think>>
<<think "mc">>Wait. It's only a few seconds long and her face is cropped out? Let's hope the second one is a bit longer.<</think>>
<<button "Continue" adriaanswers>>
<<temp "pornovid02">>
<</button>>
<<case "pornovid02">>
<<vid "adria/comp02.mp4">>
<<think "mc">>Huh. More of the same, just a different pussy. I guess it's not bad or anything I just expected more.<</think>>
<<think "mc">>Wait a minute. No way!<</think>>
<<narrate>>You zoom in on the hand in the image.<</narrate>>
<<center "adria/comp03.jpg">>
<<think "mc">>Holy shit, that tattoo. These videos didn't inspire the shared dildo use the other day, these are recordings of it.<</think>>
<<think "mc">>She can't have realized she'd be identifiable. Fucking hell, $adria.refer, you're nasty! Now I realize why the faces were cropped out.<</think>>
<<think "mc">>I am gonna have some fun with this!<</think>>
<<button "Continue" computer>>
<<if $adria.corruptmax < 60>>
<<set $adria.corruptmax = 60>>
<</if>>
<<if $adria.events.porno == 4>>
<<corrupt "adria" 5>>
<<event "adria" "porno" 5>>
<</if>>
<</button>>
<<case "pornovid1">>
<<vid "adria/comp01.mp4">>
<<button "Exit" computer>>
<</button>>
<<case "pornovid2">>
<<vid "adria/comp02.mp4">>
<<button "Exit" computer>>
<</button>>
<<case "pornreminder">>
<<block _img>>
<<say "mc">>Things between you and $kristen.name seem pretty good.<</say>>
<<say "adria">>Yeah, it's not like we're a couple or anything, but it's fun to hang out.<</say>>
<<say "mc">>So you'd say I held up my end pretty well then?<</say>>
<<narrate>>She looks at you quizzically.<</narrate>>
<<say "adria">>Huh?<</say>>
<</block>>
<<say "mc">>You remember asking for help?<</say>>
<<say "adria">>Yes, thank you so much!<</say>>
<<narrate>>You continue to look at her while she just returns a blank stare.<</narrate>>
<<say "mc">>And...?<</say>>
<<say "adria">>And, uhh, I'm super grateful?<</say>>
<<say "mc">>The porn, $adria.refer, the porn!<</say>>
<<say "adria">>Oh, yeah, of course, sorry. I've just been so busy. I'll get you something... special, in a day or two.<</say>>
<<say "mc">>Looking forward to it.<</say>>
<<button "Continue" housestuff>>
<<event "adria" "porno" 2>>
<<lust "adria" 2>>
<<like "adria" 2>>
<<corrupt "adria" 1>>
<<run queueMessage(24, 'adria', 'porno')>>
<<time 1>>
<</button>>
<<case "kristenspy">>
<<narrate>>You sneak into her room, careful to avoid not only their gaze, but also that of her webcam.<</narrate>>
<<if $adria.events.kristenmsg == 7>>
<<center "adria/two02.jpg">>
<<think "mc">>Now that's more like it!<</think>>
<<say "kristen">>God, your tits are great!<</say>>
<<say "adria">>I'd rather have yours.<</say>>
<<narrate>>$kristen.name smirks when she notices you.<</narrate>>
<<say "kristen">>Hey, wanna see something cool?<</say>>
<<narrate>>She pulls out her phone and shows her the picture she took of your dong.<</narrate>>
<<say "kristen">>This is the guy I was telling you about. Isn't it just the most delicious looking dick?<</say>>
<<say "adria">>The guy you're talking about is $name?<</say>>
<<narrate>>$kristen.name laughs as $adria.name covers her mouth looking embarrassed.<</narrate>>
<<think "mc">>God, she's good!<</think>>
<<block "adria/two03.jpg">>
<<say "kristen">>You've seen your $adria.you's dick? You perv. I love it.<</say>>
<<narrate>>$adria.name's face is bright red.<</narrate>>
<<say "adria">>N—No... it's not like that. It's just...<</say>>
<<say "kristen">>Girl. It's a fantastic cock. It's so damn tasty, have you tried it?<</say>>
<<say "adria">>They're my $adria.you! It's not happening.<</say>>
<<say "kristen">>Why?<</say>>
<</block>>
<<say "adria">>Because he's my $adria.you!<</say>>
<<say "kristen">>Lame excuse. So that's the only thing stopping you?<</say>>
<<say "adria">>What more does there need to be?<</say>>
<<say "kristen">>God, this is getting me so hot right now.<</say>>
<<narrate>>$adria.name looks confused as $kristen.name starts taking her shorts off.<</narrate>>
<<block "adria/two04.jpg">>
<<say "kristen">>How about a little more fun?<</say>>
<<say "adria">>You... you mean like eating each other out?<</say>>
<<say "kristen">>Not until you've sucked his cock. But for now how about this?<</say>>
<<narrate>>She pulls out a silver dildo and $adria.name's face lights up.<</narrate>>
<<say "adria">>Wait. Suck his dick?! Not gonna happen. No way. He'd never go for it.<</say>>
<<think "mc">>Score! I'd better not just whip it out here, but she's definitely getting my dick down her throat soon!<</think>>
<<say "kristen">>I've got an idea, but how about we enjoy ourselves right now?<</say>>
<</block>>
<<narrate>>She starts rubbing her vulva with the dildo as $adria.name watches on in astonishment.<</narrate>>
<<button "Continue" adriasex>>
<<temp "girlsfap">>
<</button>>
<<else>>
<<center "adria/two01.jpg">>
<<say "kristen">>Oh my god. It was like the tastiest cock ever.<</say>>
<<say "adria">>Seriously? And it was just out of the blue?<</say>>
<<say "kristen">>Yeah, this guy just turned up in the break room.<</say>>
<<say "adria">>And you didn't know them?<</say>>
<<say "kristen">>Kinda, but not well. I wanna know him a whole lot more, though!<</say>>
<<think "mc">>I know for sure that guy is up for getting to know you real well! But, I was expecting something a little more juicy between these two. Maybe I can talk to $kristen.name next time she's at work to see if she's willing to spice things up and expedite $adria.name becoming my plaything.<</think>>
<<button "Continue" housestuff>>
<<lust "adria" 2>>
<<event "adria" "kristenmsg" 6>>
<<time 1>>
<</button>>
<</if>>
<<case "kristen">>
<<block _img>>
<<say "adria">>Ah, good. So, you wanna help a girl out?<</say>>
<<think "mc">>I don't really need the porn, I'm just doing this to get her more comfortable with such topics when we're together. But, I guess it can't hurt to hear her out.<</think>>
<<say "mc">>What do you need?<</say>>
<<say "adria">>Have you seen the new girl?<</say>>
<<say "mc">>Huh?<</say>>
<</block>>
<<say "adria">>$kristen.name, the offworlder?<</say>>
<<say "mc">>Yeah, I hired her. Beautiful woman.<</say>>
<<say "adria">>On that we agree.<</say>>
<<say "mc">>Oh? I didn't realize you swung that way.<</say>>
<<say "adria">>Oh believe me, I much prefer cock, but there's just something about her.<</say>>
<<think "mc">>Phew! Thought I was wasting my time for a moment there!<</think>>
<<say "mc">>Well, go talk to her, see if she's into it too!<</say>>
<<say "adria">>Can you do it?<</say>>
<<say "mc">>Sorry, what?<</say>>
<<say "adria">>I just... I'm not used to talking to other women like that. Can you make sure she's okay with the idea before I make a fool of myself?<</say>>
<<say "mc">>And this gets me the porno?<</say>>
<<say "adria">>Oh, that. Uhh, yeah. I have the perfect thing for you.<</say>>
<<say "mc">>I guess it can't hurt.<</say>>
<<say "adria">>You're the best!<</say>>
<<narrate>>She runs up and gives you a peck on the lips with seemingly no hesitation at all.<</narrate>>
<<say "adria">>Thank you, thank you!<</say>>
<<think "mc">>Damn, if I were a bit faster I could have slipped her the tongue to see how she'd react.<</think>>
<<button "Continue" housestuff>>
<<lust "adria" 3>>
<<like "adria" 5>>
<<event "adria" "kristen">>
<<corrupt "adria" 2>>
<<time 1>>
<</button>>
<<case "porno2">>
<<if $adria.events.porno2 == undefined>>
<<left2 _img>>
<<say "mc">>So what kind of porn are you into?<</say>>
<<say "adria">>I told you, I'll let you know once I've got you something. God, this is a cursed conversation.<</say>>
<<say "mc">>Oh, I know. I'm just making conversation.<</say>>
<<say "adria">>About porn. With your $adria.them?<</say>>
<<say "mc">>Yeah, I mean if brothers can discuss it casually, why can't we?<</say>>
<<narrate>>She pauses for thought for a moment.<</narrate>>
<<say "adria">>Huh, yeah, I guess. I kinda like threesomes.<</say>>
<<say "mc">>Wow, you didn't take much convincing, huh?<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "adria">>And you?<</say>>
<<say "mc">>Incest porn.<</say>>
<<narrate>>She looks at you a little shocked.<</narrate>>
<<say "adria">>Seriously, you're just happy to announce that?<</say>>
<<say "mc">>Why not? It's all make believe, right?<</say>>
<<say "adria">>Uhh... yeah, I guess.<</say>>
<<say "mc">>Have you ever tried it?<</say>>
<<say "adria">>Well, if we're being honest, a few times, yeah. I get the turn on, the whole taboo aspect is quite fascinating. Like when the mom catches her son with his sister and joins in, wow, it makes my orgasm so much more intense.<</say>>
<<say "mc">>Wow, you really don't hold back once you start, huh?<</say>>
<<narrate>>She blushes.<</narrate>>
<<think "mc">>I know I enjoy porn, but she seems super into it. I wonder if she might be addicted? It takes only the smallest push for her to open up about it.<</think>>
<<button "Continue" housestuff>>
<<event "adria" "porno2">>
<<like "adria" 1>>
<<lust "adria" 2>>
<<corrupt "adria" 2>>
<<time 1>>
<</button>>
<<else>>
<<block _img>>
<<narrate>>The two of you spend some time discussing your favorite porn.<</narrate>>
<<think "mc">>I know I enjoy porn, but she seems super into it. I wonder if she might be addicted? It takes only the smallest push for her to open up about it.<</think>>
<<button "Continue" housestuff>>
<<like "adria" 1>>
<<lust "adria" 2>>
<<corrupt "adria" 2>>
<<time 1>>
<</button>>
<</block>>
<</if>>
<<case "porno">>
<<left2 _img>>
<<say "mc">>I have a somewhat inappropriate question to ask, but you're likely the only person to know the answer... and given the situation we don't talk about I suspect it's right up your alley.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say "mc">>What kind of porn are you watching?<</say>>
<<narrate>>She looks nervous for a moment.<</narrate>>
<<say "adria">>What do you mean? Haha! Just the normal kind, of course.<</say>>
<<say "mc">>Uhh... yeah, sure. But like, where can I get some?<</say>>
<<think "mc">>She's terrible at hiding things!<</think>>
<<say "adria">>Oh, right. Yeah. I guess that is kinda inappropriate to ask your $adria.them, but honestly, it doesn't bother me. We're all only human, right? And let's remember, I've seen what's on your computer.<</say>>
<<say "mc">>So...?<</say>>
<<say "adria">>Let me think about it. But surely the others have some? Haven't you caught anyone watching it?<</say>>
<<say "mc">>You'd mentioned it to me previously, so just figured you'd know.<</say>>
<<think "mc">>That, and I caught you watching porn starring me!<</think>>
<<say "adria">>I see. I'll message you when I've thought of something.<</say>>
<<say "mc">>Thought of something? Can't you just send me your collection?<</say>>
<<say "adria">>What?! No! God no. No way!<</say>>
<<say "mc">>Uhh?<</say>>
<<say "adria">>Go! I'll message you later.<</say>>
<<button "Continue" housestuff>>
<<event "adria" "porno">>
<<like "adria" 1>>
<<lust "adria" 3>>
<<corrupt "adria" 1>>
<</button>>
<<case "borked">>
<<narrate>>You click around the screen trying to solve the issue, but all you hear is a damn irritating noise with no actual error popups appearing on screen.<</narrate>>
<<think "mc">>Guess I'm just gonna have to force turn it off.<</think>>
<<timed 1s>><<audio "fail" play>><</timed>>
<<timed 2s>><<audio "fail" play>><</timed>>
<<timed 3s>><<audio "fail" play>><</timed>>
<<timed 4s>><<audio "fail" play>><</timed>>
<<narrate>>You hold down the power button until the computer is off, then turn it on again.<</narrate>>
<<button "Continue" adriaanswers>>
<<temp "borked2">>
<</button>>
<<case borked2>>
<<audio "startup" play>>
<<timed 3s>><<audio "fail" play>><</timed>>
<<narrate>>The computer starts up, and you can hear the startup sound followed by the error noise, but the monitor is completely blank.<</narrate>>
<<think "mc">>Shit. The computer is super useful I can't really do without it. I could probably get another from $moriah.name but then I'd have to customize it again and I don't think the photo shoot stuff is synced to my phone.<</think>>
<<narrate>>You sit pondering for a moment.<</narrate>>
<<think "mc">>$adria.name may be able to take a look. Tech support is probably a bit beneath her talents but I'm sure she won't mind. I should ask her ASAP.<</think>>
<<notice>>The computer will be unavailable until fixed.<</notice>>
<<button "Sleep" sleep>>
<<event "adria" "borked" $tempvar2>>
<</button>>
<<case "borked3">>
<<block _img>>
<<say "mc">>Sorry to ask, $adria.name, but my computer won't turn on.<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "adria">>It's like being back on Earth with my mom!<</say>>
<<say "mc">>I know. I know. But I didn't know who else to ask.<</say>>
<<say "adria">>Did you already try turning it off and on again?<</say>>
<</block>>
<<say "mc">>I did. It gives me the error message noise without actually displaying anything on the monitor.<</say>>
<<say "adria">>Huh. Okay. Is it on right now?<</say>>
<<narrate>>You nod.<</narrate>>
<<if $location != "bedrooms">>
<<say "adria">>Okay, let's head back to my room and I'll try connecting remotely.<</say>>
<<narrate>>You follow her to her room.<</narrate>>
<</if>>
<<say "adria">>Okay, give me two minutes.<</say>>
<<narrate>>She heads over to her desk, fiddles around on the screen for a few minutes and then stares at you.<</narrate>>
<<say "adria">>Something you want to tell me?<</say>>
<<say "mc">>I... I don't think so.<</say>>
<<say "adria">>What were you doing when it broke?<</say>>
<<narrate>>You face goes pale.<</narrate>>
<<think "mc">>Shit, I didn't even think. Of course she's gonna see what I was looking at. Fuck!<</think>>
<<say "mc">>I... uhhh... editing photos from a shoot.<</say>>
<<say "adria">>Bull shit. There's no way you'd need this many open, and there's no editing software even on your computer.<</say>>
<<say "mc">>Well, I was comparing them—<</say>>
<<say "adria">>You were getting off to these weren't you?<</say>>
<<say "mc">>I was just opening some images and must have opened them all at once by—<</say>>
<<narrate>>She faces her screen again, typing up a storm when suddenly a video of you jacking off appears on her screen. She looks back at you.<</narrate>>
<<set _who = State.variables[$adria.events.borked]>>
<<say "adria">>So this recording isn't you jacking to pictures of _who.name?<</say>>
<<say "mc">>What the fuck? Why do you have recordings of me? I thought I'd disabled the webcam!<</say>>
<<narrate>>Suddenly she gets on the defensive instead.<</narrate>>
<<say "adria">>I... uhhh... It's...<</say>>
<<say "mc">>Have you been spying on me?!<</say>>
<<say "adria">>No! Nothing like that, I keep recordings from everyone's webcam just in case.<</say>>
<<say "mc">>Everyone's?!<</say>>
<<narrate>>The two of you simply stare at each other for a while.<</narrate>>
<<say "adria">>Okay. I won't tell anyone what you've been doing if you don't tell anyone what I've done. Deal?<</say>>
<<say "mc">>And you'll disable the webcam on my computer?<</say>>
<<say "adria">>Fine!<</say>>
<<think "adria">>But not the others? I'm not gonna question that just in case he makes me turn theirs off too.<</think>>
<<say "mc">>But can you fix it?<</say>>
<<say "adria">>Just needs a new graphics card. I think this one was really low level, like extremely bad, so it couldn't handle so many images on screen. When you tried to restart, it reloaded into the same session you left. Pretty major flaw in the OS.<</say>>
<<narrate>>She sees your blank stare.<</narrate>>
<<say "adria">>Yes, I'll go fix it right now.<</say>>
<<say "mc">>Thanks, $adria.name. Then let's pretend this never happened.<</say>>
<<say "adria">>Just one question first. Why _who.name? Do you get off on it just because she's your _who.them?<</say>>
<<say "mc">>I... no. It's just... I'm a man and it's difficult enough taking photos of them without acting on my base instincts.<</say>>
<<say "adria">>I see.<</say>>
<<think "adria">>Hmm, is it weird I feel almost jealous of the situation?<</think>>
<<say "mc">>I get one question too then. Have you watched me with other women?<</say>>
<<say "adria">>I... okay. yes. But listen, it wasn't intentional. I just turn it on sometimes and there you are!<</say>>
<<think "mc">>"Sometimes" so it's plural? Meaning despite what she sees she continues to "just turn it on".<</think>>
<<narrate>>The two of you look at each other nervously for a moment.<</narrate>>
<<say "adria">>Yup. Okay, yeah, bye.<</say>>
<<say "mc">>Uh-huh, of course. Speak to you later.<</say>>
<<notice>>Your computer has been fixed.<</notice>>
<<button "Continue" housestuff>>
<<set $location = "bedrooms">>
<<event "adria" "compfixed">>
<<corrupt "adria" 10>>
<</button>>
<<case "snoop">>
<<if $adria.events.snooping != undefined>>
<<block _img>>
<<say "mc">>Manage to find anything?<</say>>
<<think "adria">>Just in case he hasn't already seen it I should probably leave out what I found on $aubree.name's computer. I know how she feels though...<</think>>
<<say "adria">>Yeah, someone has been accessing other people's computers from the office.<</say>>
<<say "mc">>Why is that noteworthy?<</say>>
<<say "adria">>Because they've been adding files to $moriah.name's computer. It could be $moriah.name herself working remotely, but here's the weird thing, she doesn't have any recent logins on the computer.<</say>>
<</block>>
<<say "mc">>Could she have wiped it?<</say>>
<<say "adria">>At the surface level, yes, but unless they did a full system restore, they couldn't delete it entirely. To be honest, even then, I could retrieve the information, just not quite so quickly.<</say>>
<<say "mc">>So who has logged in recently?<</say>>
<<say "adria">>You, $lexi.name, $monique.name, $cassie.name, $aubree.name and Administrator.<</say>>
<<say "mc">>Admin?<</say>>
<<say "adria">>Yeah, could be anyone.<</say>>
<<say "mc">>Could the other users be compromised?<</say>>
<<say "adria">>Possibly. But $aubree.name aside, none of them strike me as foolish enough to use dictionary-based passwords or dates of birth or whatever. And her login is too new to be relevant even if was compromised.<</say>>
<<say "mc">>Okay, thanks for looking, $adria.refer.<</say>>
<<say "adria">>No problem, let me know if you want me to check anything else.<</say>>
<<button "Continue" adria>>
<<event "adria" "snoop">>
<<event "adria" "foundevidence">>
<<like "adria" 3>>
<<corrupt "adria" 1>>
<<time 1>>
<</button>>
<<else>>
<<block _img>>
<<say "mc">>Do you think you could look into something discreetly for me?<</say>>
<<say "adria">>Oh, what is it?<</say>>
<<say "mc">>Are you able to snoop around on people's computers and see if there's anything suspicious?<</say>>
<<say "adria">>Can you be more specific?<</say>>
<<say "mc">>Not really. I don't want to cause any undue alarm, I'm just trying to make sure there's nothing awry.<</say>>
<</block>>
<<say "adria">>So you want me to invade people's privacy and risk alienating myself without any reason as to why?<</say>>
<<say "mc">>When you put it like that, it doesn't sound great, huh?<</say>>
<<say "adria">>Not in the slightest. So, are you going to tell me anything?<</say>>
<<say "mc">>Fine, but you must keep it to yourself. There may be a spy among us.<</say>>
<<say "adria">>A spy for whom?<</say>>
<<say "mc">>Uncertain, but $voice.name thinks it to be nefarious, I'm not so convinced right now.<</say>>
<<say "adria">>Okay, I'll look into it, but if anyone discovers me, you're taking the fall. It'll take me a couple of hours.<</say>>
<<say "mc">>Thanks, $adria.calls.<</say>>
<<say "adria">>I'll text you what I find.<</say>>
<<button "Continue" adria>>
<<event "adria" "snoop">>
<<like "adria" 3>>
<<set $mc.events.sus++>>
<<run queueMessage(2, 'adria', 'snooper')>>
<<time 1>>
<</button>>
<</if>>
<<case "champions">>
<<block _img>>
<<say "mc">>So, there's an extra champion, any ideas how to figure that out?<</say>>
<<say "adria">>What does that even mean?<</say>>
<<say "mc">>Sorry, only eight champions came through Gateway A, meaning one of the strays isn't a champion. I've no idea if there's anything foul afoot at this stage, but to be safe, I want to try and figure out who, and see if they are even aware they are different to the other stays.<</say>>
<<say "adria">>But it could be something nefarious?<</say>>
<<say "mc">>Yes, so I don't want to spook them and force them to do anything dangerous either.<</say>>
<<say "adria">>Understood, let's snoop around everyone's computers, see if we can't find anything.<</say>>
<</block>>
<<say "mc">>Sounds like a plan, can we access everyone's without them noticing?<</say>>
<<if $adria.events.nightcomp != undefined>>
<<say "adria">>Remember that networking app I enabled for you? It can do a lot more in the right hands. Come find me after you've spoken to $voice.name and I'll let you know what I find.<</say>>
<<else>>
<<say "adria">>You underestimate me, $adria.calls. I'll do some snooping, come find me after you've spoken to $voice.name and I'll let you know what I find..<</say>>
<</if>>
<<say "mc">>Thanks!<</say>>
<<button "Continue" adria>>
<<set $mc.events.eight = "adria">>
<<if $adria.events.snooping == undefined>>
<<event "adria" "snooping">>
<<like "adria" 3>>
<</if>>
<<time 1>>
<</button>>
<<case "computers">>
<<block _img>>
<<say "mc">>I remember you were studying computer science in the old world.<</say>>
<<say "adria">>That's right, actually finished a while before coming here.<</say>>
<<say "mc">>Any transferable skills?<</say>>
<<say "adria">>Loads! You'd be surprised how similar computers work in all the other worlds. Most even have the same ports, my guess is people developing the standards were travelers.<</say>>
<<say "mc">>I guess that makes sense.<</say>>
<</block>>
<<say "adria">>I enjoy automating processes and learning new stuff. If you want to throw me in the monitoring station, I'm more than happy to help.<</say>>
<<say "mc">>That sounds good. Is there anything else you could help me with?<</say>>
<<say "adria">>I mean, that's a very vague question. I know we don't have the Internet here, but computers still do a lot of work.<</say>>
<<say "mc">>Yeah, sorry. I guess I don't really know what I don't know, you know?<</say>>
<<narrate>>She cackles.<</narrate>>
<<say "adria">>Good answer. You should see some of the bozos I've dealt with the in the past who know a tiny bit and think they can tell you how to do your job.<</say>>
<<narrate>>You give her a nervous grin.<</narrate>>
<<say "adria">>Okay, I'll come by your room one night, and you can show me what software you're running, what you're using the computer for etc., and I'll see what I can do.<</say>>
<<set _uc = $adria.refer.toUpperFirst()>>
<<say "mc">>Great, thanks, _uc!<</say>>
<<say "adria">>And don't even try to hide your porn, I'll find it regardless.<</say>>
<<narrate>>You lurch forward a little, shocked by her comment.<</narrate>>
<<say "adria">>Oh, don't be surprised. We all watch it.<</say>>
<<say "mc">>Yeah, I guess.<</say>>
<<notice>>
$adria.name will now work for you.
<</notice>>
<<button "Continue" adria>>
<<if $adria.events.computer == undefined>>
<<event "adria" "computer">>
<<like 'adria' 3>>
<<lust 'adria' 1>>
<<corrupt 'adria' 1>>
<<worker 'adria'>>
<</if>>
<<run addNightEvent('adriacomp')>>
<<time 1>>
<</button>>
<<case "mom">>
<<block _img>>
<<say "mc">>So, about your mom...<</say>>
<<say "adria">>She's a handful, isn't she?<</say>>
<<say "mc">>And then some.<</say>>
<<say "adria">>They used to joke with us back home, well I guess this is my home now, but in the east, they joked me and $aubree.name had been switched as I was more like $lexi.name and her more like my mom.<</say>>
<<say "mc">>Wow, seriously? Though, I guess I can see that a little.<</say>>
<</block>>
<<say "adria">>Don't worry, I get it too. I'm more academic, like $lexi.name. I loved college.<</say>>
<<narrate>>Your mind begins to drift.<</narrate>>
<div id="fanta" class="choices">
<h3>Decision Time</h3>
<<link "Fantasize">>
<<toggleclass '#fanta' noshow>>
<<toggleclass '#fanta2' noshow>>
<<toggleclass '#fanta3' noshow>>
<<toggleclass '#nofanta' noshow>>
<<lust 'adria' 1>>
<<like 'adria' -1>>
<<ScrollTo "fanta2">>
<<event "adria" "fantasized">>
<</link>>
<br>
<<link "Focus">>
<<toggleclass '#fanta' noshow>>
<<toggleclass '#nofanta' noshow>>
<</link>>
</div>
<div class="noshow fantasy" id="fanta2">
<<block "adria/fantasy01.jpg">>
<<say "adria">>This grade... it's no good for me, perhaps I can persuade you to recheck it?<</say>>
<<narrate>>She flashes her ass at you.<</narrate>>
<<say "adria">>Oops, sorry, sir. Didn't mean to show you that.<</say>>
<<narrate>>She grabs your tie.<</narrate>>
<<say "adria">>Although, maybe if you treat me right, I might let you see a bit more.<</say>>
<<narrate>>She gently caresses your cheek.<</narrate>>
<</block>>
<<block "adria/fantasy02.jpg">>
<<say "adria">>You gave me a D! How about you give me the real D instead?<</say>>
<<narrate>>She starts stripping on your desk.<</narrate>>
<<say "adria">>Fair exchange, wouldn't you say?<</say>>
<<narrate>>She smiles at you, waiting a response.<</narrate>>
<<say "mc">>Get over that desk and I'll give you the D.<</say>>
<</block>>
</div>
<div class="noshow" id="fanta3">
<<say "adria">>What the hell?<</say>>
<<think "mc">>Shit shit shit! These thoughts get too real, and I lose myself in them. Fuck!<</think>>
<<narrate>>She stares angrily at you.<</narrate>>
<<say "adria">>Well?<</say>>
<<think "mc">>How the hell do I get out of this one?<</think>>
<<say "mc">>Sorry, a bad joke about college and $lexi.name I guess.<</say>>
<<narrate>>She looks puzzled at you for a moment.<</narrate>>
<<say "adria">>I don't understand the joke.<</say>>
<<say "mc">>You know, like $lexi.name punishing you with a bad grade?<</say>>
<<think "mc">>That makes no sense, but it's the best I can think of.<</think>>
<<say "adria">>I don't get your sense of humor at all!<</say>>
</div>
<div class="noshow" id="nofanta">
<<say "adria">>Anyway, my mom is not so academically talented.<</say>>
<<say "mc">>Yeah, I guess, though your mom certainly has other equally useful abilities.<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "adria">>I know, I wasn't having a dig. My mom is great at her own thing, but I don't know, I just don't feel like we're that close anymore. The shared feeling that brought us here is the closest I've felt to her in years, and it made me realize just how far we've drifted apart. We just kinda pursued other things with nothing in common.<</say>>
<<say "mc">>Have you spoken to her about this?<</say>>
<<say "adria">>I tried, but just couldn't find the words. I love her to bits and I don't want to upset her.<</say>>
<<say "mc">>Leave it with me, let me see if I can think of anything.<</say>>
<<narrate>>She runs up and tosses her arms around you, giving you a hug so tight you feel her breasts pressed against you.<</narrate>>
<<say "adria">>You're the best. Thanks, $adria.calls!<</say>>
<<say "mc">>No problem.<</say>>
<<if $monique.events.hadsex>>
<<think "mc">>I mean I've been <u>real</u> close with her mom, I wonder if I can be their common ground.<</think>>
<</if>>
<<button "Continue" adria>>
<<if $adria.events.mom is undefined>>
<<event 'adria' 'mom'>>
<<like 'adria' 2>>
<<lust 'adria' 2>>
<</if>>
<<time 1>>
<</button>>
</div>
<</switch>><<set $scene = 0>>
<<set _active = "adria">>
<<meet _active>>
<<set $return = returnLocation()>>
<<smallflirt _active>>
<<set _passage = _active+"answers">>
<<if $adria.events.dreamed == 5 && $hour >= 20 && $hour < 23>>
<<opt "New Eden Trip" _passage trip2>><</opt>>
<</if>>
<<if $adria.events.dreamed == 4>>
<<opt "Trip Together" _passage trip>><</opt>>
<</if>>
<<if $adria.events.dreamed == 1>>
<<opt "Wild Dream" _passage dreamed>><</opt>>
<</if>>
<<if $adria.events.blind == 5 && $items.vg > 0>>
<<opt "Give Game" _passage game>><</opt>>
<</if>>
<<if $adria.events.sexy >= 2 && $adria.events.blind == 4>>
<<opt "Looking Great" _passage great>><</opt>>
<</if>>
<<if $adria.events.blind == 3>>
<<opt "$kristen.name & Blindfolding" _passage blinded>><</opt>>
<</if>>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $adria.events.planets == undefined>>
<<link "Planets" adriaanswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if ($lexi.transforms != undefined || $aubree.transforms != undefined || $monique.transforms != undefined) && $adria.transforms == undefined>>
<<link "Transformation" adriaanswers>>
<<temp "trans">>
<</link>><br>
<</if>>
<<if $adria.events.kristenmsg == 9 && $adria.events.porno == 1>>
<<link "Porno Reminder" adriaanswers>>
<<temp "pornreminder">>
<</link>><br>
<</if>>
<<if $adria.events.porno == 5 && $adria.mature != true>>
<<link "Porno Thanks" adriaanswers>>
<<temp "pornthanks">>
<</link>><br>
<</if>>
<<if $adria.events.kristenmsg == 11>>
<<link "$kristen.name Advice" adriaanswers>>
<<temp "tease">>
<</link>><br>
<</if>>
<<if $adria.events.kristenmsg != undefined && $adria.events.kristen == undefined>>
<<link "You want help?" adriaanswers>>
<<temp "kristen">>
<</link>><br>
<</if>>
<<if $adria.events.porno != undefined && $adria.events.porno == 1>>
<<link "Porn Tastes" adriaanswers>>
<<temp "porno2">>
<</link>><br>
<</if>>
<<if $adria.events.relationship != undefined && $adria.events.relationship == "taboo" && $adria.events.porno == undefined>>
<<link "Porno" adriaanswers>>
<<temp "porno">>
<</link>><br>
<</if>>
<<if $adria.events.borked != undefined && $adria.events.compfixed == undefined>>
<<link "Broken Computer" adriaanswers>>
<<temp "borked3">>
<</link>><br>
<</if>>
<<if $tasks.eightchampsdetective != undefined && $adria.events.computer != undefined && $adria.events.snoop == undefined>>
<<link "Computer Snoop" adriaanswers>>
<<temp "snoop">>
<</link>>
<br>
<</if>>
<<if $tasks.eightchamps != undefined>>
<<link "Champions" adriaanswers>>
<<temp "champions">>
<</link>>
<br>
<</if>>
<<if $adria.events.computer == undefined>>
<<link "Computer Science" adriaanswers>>
<<temp "computers">>
<</link>>
<br>
<</if>>
<<if $adria.events.fantasized == undefined || $adria.events.mom == undefined>>
<<link $monique.name adriaanswers>>
<<temp "mom">>
<</link>>
<br>
<</if>>
<<link "Never mind" $return>><</link>><<scene>>
<<switch $tempvar>>
<<case "ne00">>
<<narrate>>The two of you head through the gate to New Eden.<</narrate>>
<<say adria>>Okay, come with me!<</say>>
<<narrate>>She grabs your hand and starts heading out of town. Just before reaching the walls, she takes you down a secluded alley that eventually leads out to a body of water.<</narrate>>
<<say adria>>Nobody ever comes here!<</say>>
<<say mc>>What is this place?<</say>>
<<left2 "adria/ne01.jpg">>
<<say adria>>Do you really care? We're alone...<</say>>
<<say mc>>No... I guess not. It's such a nice view, though...<</say>>
<<narrate>>She lays her hand on your crotch.<</narrate>>
<<say adria>>I think you might be looking at the wrong thing.<</say>>
<<narrate>>You grin darkly.<</narrate>>
<<say mc>>Perhaps you could help correct that?<</say>>
<<say adria>>Ha! You know... I think I can.<</say>>
<<narrate>>She pulls down your jeans. Her face lights up as she sees your erect cock spring out toward her.<</narrate>>
<<say adria>>God, just look how beautiful it is...<</say>>
<<narrate>>She wraps her hand around your shaft. The fresh breeze blowing over your exposed helmet causes you to quiver under her touch.<</narrate>>
<<say adria>>The cold air making you a little sensitive, huh? I'd better get you warmed up...<</say>>
<<cont "adriasex" "ne01">>
<<case "ne01">>
<<narrate>>She lowers her head to your crotch while maintaining a lustful eye contact.<</narrate>>
<<vid "adria/ne01.mp4">>
<<narrate>>She licks your shaft from top to bottom before engulfing your cock in her warm mouth.<</narrate>>
<<say mc>>Oh... fuck yes...<</say>>
<<say adria>>This feels so naughty... it's so good!<</say>>
<<cont "adriasex" "ne02">>
<<case "ne02">>
<<vid "adria/ne02.mp4">>
<<narrate>>She toys with your tip for a moment before devouring your dick whole.<</narrate>>
<<narrate>>She holds her head still while your throbbing cock kisses the back of her throat.<</narrate>>
<<say mc>>Fuck, that is good!<</say>>
<<narrate>>Moments later, she gasps for air and looks at you with a prideful grin.<</narrate>>
<<say adria>>But now you see... I'm getting cold too...<</say>>
<<narrate>>She bites her lip as she pushes down her panties and shimmies out of them.<</narrate>>
<<say adria>>Maybe there's a way we can both be warm?<</say>>
<<cont "adriasex" "ne03">>
<<case "ne03">>
<<narrate>>She bends over, kneeling on the grass, presenting her ass to you.<</narrate>>
<<say mc>>Fuck, that's an invite!<</say>>
<<vid "adria/ne03.mp4">>
<<narrate>>She squeals with delight as you enter her. A sense of release washing over both of you.<</narrate>>
<<say adria>>Finally! Yes! Oh, my god... fuck!<</say>>
<<cont "adriasex" "ne04">>
<<case "ne04">>
<<vid "adria/ne04.mp4">>
<<say adria>>Oh, my god, baby.<br>Yes, yes, yeah!<</say>>
<<narrate>>As she bounces on your cock, an uncontrollable urge rises from within you. You start thrusting your hips upwards violently as she moans and gasps with pleasure.<</narrate>>
<<say adria>>Oh, my god, baby you're gonna make me fucking cum!<</say>>
<<cont "adriasex" "ne05">>
<<case "ne05">>
<<vid "adria/ne05.mp4">>
<<narrate>>You rub her clit while pistoning into her. A mad fury consumes you as you chase your crescendo.<</narrate>>
<<say adria>>Oh, my god, yea~<</say>>
<<say adria>>Make my little fucking pussy cum, make my little fucking pussy cum.<</say>>
<<narrate>>Her face becomes increasingly red as she screams her command at you.<</narrate>>
<<say adria>>Oh, fuck, oh, my god!<</say>>
<<narrate>>As her grip tightens around your cock, you feel the pleasure inside you speeding toward its release.<</narrate>>
<<say mc>>Holy fuck, I'm gonna cum!<</say>>
<<narrate>>She gets on her knees, causing you some confusion, until she holds out her tongue.<</narrate>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<narrate>>You stand up and jerk your final moments over her face.<</narrate>>
<<vid "adria/ne06.mp4">>
<<say mc>>Yes, take my filthy seed! Take it!<</say>>
<<narrate>>You frost her smiling face. As you pump your last drop, she enthusiastically takes your cock back into her mouth, cleaning your bell end off with her tongue.<</narrate>>
<<say adria>>So, what do you think of the spot?<</say>>
<<say mc>>Great choice... great fucking choice. Wow.<</say>>
<<narrate>>She giggles.<</narrate>>
<<unlock "adria" "ne">>
<<cont "adriasex" "ne06">>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "ne06">>
<<lust adria 6>>
<<corrupt adria 6>>
<<narrate>>The two of you clean up and collect your belongings. Just as you're about to reach the gate, someone calls out to $adria.name.<</narrate>>
<<say "sideg" "???">>$adria.name? Is that you? I thought it was! How are you?<</say>>
<<narrate>>A sudden look of worry comes over $adria.name's face.<</narrate>>
<<say adria>>Oh, hi... yeah, I'm good, thanks.<</say>>
<<say "sideg" "???">>It's good to see you, I was worried you were part of the mass exodus when the Gateway came back.<</say>>
<<say adria>>Oh, no, I'm still here, I just live <<if $hubname == undefined>>near the gateway<<else>>in $hubname<</if>> now. Listen, I can't stick around, but it was good to see you.<</say>>
<<say "sideg" "???">>Of course, don't be a stranger!<</say>>
<<narrate>>She hurries you through the gate and back home.<</narrate>>
<<say mc>>What was that about?<</say>>
<<say adria>>I was so concerned about family or someone I knew here seeing me, I hadn't even considered someone from New Eden. Shit, we need to be more careful!<</say>>
<<say mc>>Was it really that bad?<</say>>
<<say adria>>I don't want people to see me as just another one of your harem. I know you care for every single one of your companions, but people don't know that from the outside.<</say>>
<<think mc>>Like I give a shit what they think, but probably not the best time...<</think>>
<<say adria>>Maybe we need to think of a better location... leave it with me, I'll think of something.<</say>>
<<think mc>>I'm starting to think she kinda gets off on the cloak and dagger, but not on the idea of getting caught.<</think>>
<<button "Continue" townhub>>
<<event "adria" "dreamed" 6>>
<<time 2>>
<</button>>
<<case "dream02">>
<<narrate>>She lets the hoop fall and clatter to the ground, then throws herself onto a sofa you're pretty sure didn't exist a moment ago.<</narrate>>
<<vid "adria/dream02.mp4">>
<<narrate>>She plays with herself while looking you directly in the eyes.<</narrate>>
<<say adria>>The way you look at me, I see the lust in your eyes, it's so wrong, but I want it so bad.<</say>>
<<say mc>>One should not deny themselves such pleasures.<</say>>
<<say adria>>Mhmm... bring that filthy cock over here, I want to feel it pounding the back of my throat!<</say>>
<<think mc>>Holy shit...<</think>>
<<cont "adriasex" "dream03">>
<<case "dream03">>
<<narrate>>Eagerly, you pull out you cock and stand at the side of the sofa, fully erect.<</narrate>>
<<vid "adria/dream03.mp4">>
<<narrate>>She crawls over, grabs your cock and licks the shaft up and down.<</narrate>>
<<say mc>>Yes... show me just how filthy you are.<</say>>
<<narrate>>As she takes your manhood into her mouth, an intrusive thought claims victory, you grab her head, and thrust wildly.<</narrate>>
<<say mc>>Yes, fucking take it. Take my cock, you dirty bitch!<</say>>
<<narrate>>As she gasps for air, she looks up at you and smiles darkly.<</narrate>>
<<if $adria.events.dream != undefined && $replay == false>>
<<say adria>>This fucking place is incredible... oh, god I fucking love it!<</say>>
<<else>>
<<say adria>>This feels so real, like I'm in full control. A lucid dream... I fucking love it. <<uf $adria.calls>>, I want, no, command you to eat my ass!<</say>>
<<say mc>>Oh, it's more than lucid.<</say>>
<</if>>
<<cont "adriasex" "dream04">>
<<case "dream04">>
<<narrate>>You push her back on to the sofa.<</narrate>>
<<vid "adria/dream04.mp4">>
<<narrate>>You ram your tongue between her butt cheeks, jabbing into her anus as she squirms with delight.<</narrate>>
<<say adria>>Oh... my gaaaawd... oh, fuuuck!<</say>>
<<say adria>>Plunge that tongue deep in my ass!<</say>>
<<narrate>>You stand up with such a start, she looks shocked.<</narrate>>
<<say mc>>I think it's time we turned this dream up to 11.<</say>>
<<narrate>>She frowns, seemingly confused. The moment passes when you place your cock on her ass cheeks.<</narrate>>
<<say adria>>Oh, yes! Yes! FUCK MY ASS, <<uc $adria.calls>>!<</say>>
<<cont "adriasex" "dream05">>
<<case "dream05">>
<<vid "adria/dream05.mp4">>
<<narrate>>You push into her tight ass as she screams with pleasure.<</narrate>>
<<say adria>>Ohhh~ fuck! Ohhh~ yeah!<</say>>
<<narrate>>Quickly gaining the rhythm, the two of you are fully in sync as you pound away.<</narrate>>
<<say adria>>Ohh....yes, harder, faster, fucking use me like a toy!<</say>>
<<narrate>>Though a little taken aback, you're not one to let a chance like this slip by.<</narrate>>
<<cont "adriasex" "dream06">>
<<case "dream06">>
<<vid "adria/dream06.mp4">>
<<narrate>>You hold her down on the sofa and go to town on her ass, completely engrossed in your own pleasure.<</narrate>>
<<say adria>>Ohhhh~ myyy god! Ohhh fuck!<</say>>
<<narrate>>She screams and moans with delight as you pound away, her face a picture of rapturous joy.<</narrate>>
<<say mc>>Fucking yes! I'll fucking destroy your ass!<</say>>
<<say adria>>Rip it a-fucking-part, do it!<</say>>
<<narrate>>She nods with excitement as you increase the tempo further, her eyes begging for more as you continue to chase your climax.<</narrate>>
<<cont "adriasex" "dream07">>
<<case "dream07">>
<<narrate>>Dripping in sweat and out of breath, you sit back on to the sofa for a moment of respite.<</narrate>>
<<vid "adria/dream07.mp4">>
<<narrate>>Insatiable, she gives you no such luck, and she's quickly on your lap bouncing on your cock within seconds.<</narrate>>
<<say adria>>Cum in my ass! Fill your $adria.them up with your dirty fucking goo!<</say>>
<<narrate>>Unable to hold back, you explode inside her, and she howls as you both climax together.<</narrate>>
<<say adria>>Yes... oh, my fucking god. Yes!<</say>>
<<say mc>>Fucking, yes, you fucking like that? Fuuuck!<</say>>
<<narrate>>You both lay on the sofa, sticky and tired.<</narrate>>
<<if $adria.events.dream != undefined && $replay == false>>
<<say adria>>I love it when you dream about me... fuck, I love it!<</say>>
<<say mc>>Ha! It's me coming... sorry <b>cumming</b>... into your dream.<</say>>
<<else>>
<<say adria>>Holy shit, best dream ever. I can't believe how fucking real that was...<</say>>
<<narrate>>Before you can correct her, she vanishes and the shared experience comes to an end.<</narrate>>
<<think mc>>She knows about my power, is she just playing dumb?<</think>>
<<event "adria" "dreamed">>
<</if>>
<<button "Continue" sleep>>
<<unlock "adria" "dream1">>
<<corrupt "adria" 10>>
<<lust "adria" 5>>
<<temp "focused">>
<</button>>
<<case "vr01">>
<<think mc>>Jackpot!<</think>>
<<vid "adria/vr01.mp4">>
<<narrate>>You watch with glee as she pulls her panties to one side and starts pleasuring herself.<</narrate>>
<<say adria>>Yes... $name, take me!<</say>>
<<think mc>>Oh, she took the bait alright! This is gonna be good!<</think>>
<<cont "adriasex" "vr02">>
<<case "vr02">>
<<vid "adria/vr02.mp4">>
<<narrate>>You stand at the side of the bed watching her.<</narrate>>
<<think mc>>Fuck, she's hot.<</think>>
<<narrate>>You pull down your trousers and start stroking, trying to match the pace of her movements.<</narrate>>
<<say adria>>Oh... yes... just like that!<</say>>
<<cont "adriasex" "vr03">>
<<case "vr03">>
<<vid "adria/vr02.mp4">>
<<narrate>>Her movements become faster, so you too pick up the pace. There's something exciting about wanking over her while she's there, completely unaware.<</narrate>>
<<say adria>>Yes, $name, yes!<</say>>
<<narrate>>As she brings herself to climax, you decide now is the time to reveal yourself.<</narrate>>
<<say mc>>Yes, $adria.name, that's so good!<</say>>
<<narrate>>You rub more furiously, aiming to cum just at the right time.<</narrate>>
<<say adria>>That sounds so real... wait... no!<</say>>
<<narrate>>She pauses, and takes off the headset just as you explode onto her leg.<</narrate>>
<<unlock "adria" "vr">>
<<cont "adriasex" "vr04">>
<<case "vr04">>
<<center "adria/vr01.jpg">>
<<say adria>>Oh, my god. $name?! What the hell?<</say>>
<<say mc>>That was fucking hot...<</say>>
<<say adria>>What are you doing in here?<</say>>
<<say mc>>Well, the door was ajar, and I heard you shouting my name... were you not inviting me to see this?<</say>>
<<say adria>>Oh, my god, I was sure I closed... oh god... you heard... oh, no.<</say>>
<<say mc>>Honestly, I am so into this... it's so hot.<</say>>
<<narrate>>She just stares at you blankly.<</narrate>>
<<say adria>>You don't think this is fucked up?<</say>>
<<say mc>>Oh, it is, and I fucking love it.<</say>>
<<say adria>>I... uh... no. Let's just pretend this didn't happen, please.<</say>>
<<think mc>>Okay... now or never.<</think>>
<<say mc>>We're beyond that... you should know that blindfold wasn't really opaque.<</say>>
<<narrate>>Her eyes widen and her face reddens.<</narrate>>
<<say mc>>That's right... I've just been trying to help you come true to yourself, without pushing too hard.<</say>>
<<say adria>>And you don't think jizzing all over my leg while I watch porn is pushing too hard?<</say>>
<<narrate>>You laugh.<</narrate>>
<<say mc>>I've just been trying to ease you into your own feelings, make you more comfortable being yourself around me...<</say>>
<<say adria>>This is fucked. You're fucked. You can't do this!<</say>>
<<say mc>>You literally sneaked into my room and fucked me while pretending to be $kristen.name. I think you pushed way harder than me... not that I had any issue with it.<</say>>
<<say adria>>No... no... this, what would mom say? Oh, god.<</say>>
<<if $monique.sex > 0>>
<<say mc>>$monique.name would probably be down for a threesome... I recall you saying you're into those.<</say>>
<<else>>
<<say mc>>I doubt she'd have any problem at all, you <i>have</i> met your mom, right?<</say>>
<</if>>
<<say adria>>Are you fucking serious right now? I'm erasing this from my memory, I'm gonna pretend it never happened.<</say>>
<<say mc>>Why? We could be fucking like rabbits right now, I know you want to just as much as I do.<</say>>
<<say adria>>You can't just come into a girl's room, fucking jizz on her leg and expect her to want to fuck you!<</say>>
<<say mc>>But the blindfold thing was okay?<</say>>
<<say adria>>Oh, my god, just go!<</say>>
<<think mc>>Did I push too far? Though what I said really wasn't untrue, she pushed so much further than I did simply because she didn't think I knew...<</think>>
<<narrate>>You stand outside scratching your chin.<</narrate>>
<<if $completeTasks.includes('shareddreams2')>>
<<think mc>>Maybe she'd open up in the dreamscape...<</think>>
<<else>>
<<think mc>>She says she's going to act as if this never happened, we'll see. I'm sure a solution will present itself to me if I keep the pressure up...<</think>>
<</if>>
<<set _w = "housestuff">>
<<set _t = "Continue">>
<<if $hour < 8>>
<<set _w = "sleep">>
<<set _t = "Sleep">>
<</if>>
<<button _t _w>>
<<set $location = "bedrooms">>
<<lust "adria" 3>>
<<like "adria" -3>>
<<event "adria" "blind" 7>>
<<corruptmax "adria" 150>>
<<corrupt "adria" 10>>
<<dreamer "adria">>
<<if $hour >= 8>>
<<time 1>>
<</if>>
<</button>>
<<case "photo02">>
<<think mc>>She'll notice me any moment, I'm sure. But I want her to!<</think>>
<<vid "adria/photo02.mp4">>
<<narrate>>As she pans the phone camera around, she notices you on the screen.<</narrate>>
<<say adria>>$adria.calls! Fuck!<</say>>
<<say mc>>Hey...<</say>>
<<narrate>>She scrambles to cover herself up.<</narrate>>
<<say mc>>No need to do that on my behalf, I thought you were putting a little show on for me.<</say>>
<<say adria>>No, no, no... that would be...<</say>>
<<say mc>>Absolutely fucking hot?<</say>>
<<say adria>>Just go! Fuck!<</say>>
<<narrate>>As you leave, you hear a muffled noise as she screams into her pillow.<</narrate>>
<<think mc>>Huh, that sounded more like excitement than it did frustration.<</think>>
<<button "Continue" "housestuff">>
<<set $location = "bedrooms">>
<<lust "adria" 3>>
<<corrupt "adria" 4>>
<<event "adria" "bedroomsexy">>
<<set $adria.events.sexy++>>
<<time 0.5>>
<</button>>
<<case "blindfoldsex">>
<<narrate>>You unlock the door then put the blindfold on, your vision barely impaired.<</narrate>>
<<think "mc">>I wonder just how far she's willing to take this...<</think>>
<<narrate>>The door squeaks open a little, while you can't quite make it out but you see someone's hair through the crack.<</narrate>>
<<think "mc">>A voyeur or a visitor?<</think>>
<<narrate>>A moment later, the door swings open wide and $adria.name confidently struts in, closing the door behind her.<</narrate>>
<<think "mc">>I guess she was checking I had the blindfold on. Wait, no $kristen.name? I did not expect her to be <b>this</b> brazen.<</think>>
<<say "mc">>$kristen.name?<</say>>
<<say "adria">>Shhhh.<</say>>
<<narrate>>$adria.name pushes her finger over your lips, while shushing you but otherwise staying silent.<</narrate>>
<<think "mc">>I can't believe she actually came on her own. I thought she wanted the safety net $kristen.name provides her? Does she want to get caught... no, best not to think too much of it. Let's just sit back and enjoy whatever she's offering. I can decide what to do next later.<</think>>
<<narrate>>She draws circles with her fingers around your stomach while kissing your pecs.<</narrate>>
<<think "mc">>Wow.<</think>>
<<narrate>>Slowly she moves herself down your torso, showering you with gentle kisses as she does so. Each one making you harder and harder.<</narrate>>
<<narrate>>Her hair tickles your stomach as she goes. The stimuli causing you to clench your butt cheeks. Sensing the motion, she looks up at you with a prideful grin.<</narrate>>
<<think "mc">>This feels incredible.<</think>>
<<narrate>>With one last look, she brings her lips around your cock and gently lowers her head.<</narrate>>
<<cont "adriasex" "blindsex01">>
<<case "blindsex01">>
<<vid "adria/blindsex01.webm">>
<<narrate>>She can barely contain the happiness in her face as she starts servicing your cock.<</narrate>>
<<say "mc">>Holy fuck.<</say>>
<<narrate>>Looking up at you as her head bobs up and down your shaft, she grins.<</narrate>>
<<narrate>>After a few wonderful minutes, she releases your dick, letting it slam against your belly.<</narrate>>
<<say "mc">>But—<</say>>
<<say "adria">>Shhh.<</say>>
<<narrate>>A huge smile creep across her face as she moves herself up the bed and lowers herself steadily onto your manhood.<</narrate>>
<<vid "adria/blindsex02.webm">>
<<think "mc">>My fucking god. I have no idea what made her so bold, but I'm here for it.<</think>>
<<cont "adriasex" "blindsex02">>
<<case "blindsex02">>
<<narrate>>She whimpers with joy as she bounces on your cock.<</narrate>>
<<vid "adria/blindsex03.webm">>
<<say "adria" "" "(Whispering)" "whisper">>Fuuuck.<</say>>
<<cont "adriasex" "blindsex03">>
<<case "blindsex03">>
<<narrate>>She shifts around on your cock, her gentle approach long gone.<</narrate>>
<<vid "adria/blindsex04.webm">>
<<narrate>>Her moans and squeals fill the room as she pursues her climax with fervent determination.<</narrate>>
<<say "mc">>I'm close!<</say>>
<<narrate>>She quickly dismounts and brings her face back to your cock, greedily taking you back into her mouth.<</narrate>>
<<vid "adria/blindsex05.webm">>
<<narrate>>Her cute expression while her lips are wrapped around your dick only help you meet your crescendo more hastily. You unleash your fury into her mouth and she gleefully accepts every last drop.<</narrate>>
<<narrate>>Once she finishes cleaning your knob off, she seems confused for a moment. You see her hesitate as she moves her hand toward your face, presumably debating whether to reveal it was her or not. She then snaps her hand back, gets up and collects her things.<</narrate>>
<<say "mc">>That was incredible.<</say>>
<<narrate>>She remains silent as she gets dressed then leaves.<</narrate>>
<<think "mc">>Well that certainly escalated faster than I expected. I wonder what made her so bold. But now that's happened, I can't imagine it's going to take much to lose the blindfold now.<</think>>
<<button "Sleep" sleep>>
<<unlock "adria" "blindsex">>
<<corruptmax "adria" 100>>
<<lust "adria" 5>>
<<corrupt "adria" 10>>
<<like "adria" 3>>
<<event "adria" "blind" 3>>
<</button>>
<<case "blindfoldbj">>
<<narrate>>You unlock the door then put the blindfold on, your vision barely impaired. A moment later, you hear $kristen.name through the door.<</narrate>>
<<say "kristen" "" "(Whispering through the door)" "whisper">>I'll be five minutes. Get yourself hard. And when it's started, be careful what you say. We don't want her catching on just yet.<</say>>
<<say "mc">>See you soon.<</say>>
<<narrate>>You barely need to touch your dick and it's hard. The thought of $adria.name's lips around your cock is turn on enough.<</narrate>>
<<think "mc">>I'm laying naked and erect in bed with the door open and a fake blindfold on... god, I hope someone else doesn't walk in.<</think>>
<<narrate>>A few minutes later the door opens and you watch as a nervous looking $adria.name is shooed in to the room by $kristen.name.<</narrate>>
<<say "mc">>$kristen.name? This is such an odd sensation, I am so turned on. My cock's waiting for you.<</say>>
<<narrate>>You almost chuckle as you see $adria.name panic and look over at $kristen.name who is glaring at you angrily.<</narrate>>
<<say "kristen">>Oh, don't worry, boss, I've been looking forward to tasting you all day.<</say>>
<<narrate>>She motions $adria.name back towards your cock. Your eyes now used to the blindfold, you barely notice the fabric covering the view.<</narrate>>
<<narrate>>$adria.name crawls between your legs, her eyes full of desire. She peers up at you multiple times until she's convinced you're unaware it's her. You struggle to contain your excitement. Both of you getting off on the thought the other doesn't know what's happening.<</narrate>>
<<narrate>>You flinch as her soft hands start rubbing your cock. You let out a murmur of excitement as she continues on.<</narrate>>
<<vid "adria/blind01.mp4">>
<<narrate>>Her gaze constantly darts back to your blindfold, her excitement almost palpable as she looks upon you with lust.<</narrate>>
<<say "mc">>Oh, god yes! That's good.<</say>>
<<narrate>>She smiles brightly at the encouragement, and opens her mouth to reply before realizing her situation and promptly looking guilty. Not that it lasts for long as she continues to play with your cock.<</narrate>>
<<say "kristen">>I'm gonna blow you now.<</say>>
<<narrate>>$adria.name throws her hair back and almost giggles to herself as she brings her mouth over to your glans.<</narrate>>
<<cont "adriasex" "blindfoldbj02">>
<<case "blindfoldbj02">>
<<narrate>>She slowly works her lips around your cock.<</narrate>>
<<vid "adria/blind02.mp4">>
<<narrate>>She appears deep in concentration as she tastes your dick, her tongue insatiable as it explores every part of your knob.<</narrate>>
<<narrate>>She gazes back up at you and, still under the impression you can't see her, she grins. Her eyes stare brightly at you as her salacious appetite runs wild.<</narrate>>
<<set _f = $adria.name.substring(0, 2).toUpperFirst()>>
<<say "mc">>Yes, _f—$kristen.name, that's so damn good.<</say>>
<<cont "adriasex" "blindfold03">>
<<case "blindfold03">>
<<vid "adria/blind03.mp4">>
<<narrate>>She continues to slowly and passionately service your cock.<</narrate>>
<<think "mc">>This is too much. I just want to ravish her right here and now... fuck it.<</think>>
<<say "mc">>I can't take it anymore, I need your pussy, I need to—<</say>>
<<narrate>>She notices you reach for the blindfold and gasps, smacks your hand away then climbs off the bed.<</narrate>>
<<narrate>>She gives $kristen.name a look of panic and bolts for the door, $kristen.name opens it quietly allowing $adria.name to escape.<</narrate>>
<<say "kristen">>You pushed it too quickly. You should not have gone for the blindfold.<</say>>
<<say "mc">>But her eyes, she wanted it so bad... and it felt so good.<</say>>
<<say "kristen">>Ugh. Let me go do some damage control. Sorry, but you're gonna have to finish yourself off.<</say>>
<<narrate>>She leaves to catch up with $adria.name.<</narrate>>
<<think "mc">>For fuck's sake. Blue-balled myself. But I wonder, would she have fucked me if I hadn't gone for the blindfold? Maybe I should ask her for her advice on what I did wrong with "$kristen.name".<</think>>
<<notice>>Flirting with $adria.name is now more effective at increasing her lust and corruption.<</notice>>
<<button "Sleep" sleep>>
<<unlock "adria" "blindbj">>
<<corrupt "adria" 6>>
<<lust "adria" 3>>
<<event "adria" "kristenmsg" 11>>
<</button>>
<<case "showerpeep">>
<<narrate>>You leave it a few minutes then head to her room. The door isn't locked and you hear the shower running.<</narrate>>
<<think "mc">>Not even locking her door?<</think>>
<<narrate>>You creep inside, your heart beating.<</narrate>>
<<think "mc">>I've caught her fapping before, but this feels so much worse.<</think>>
<<vid "adria/shower01.mp4">>
<<narrate>>As you approach the door and see her standing in the shower, she turns it off. As you turn to leave, you notice she goes to sit down and reaches for something off the shelf.<</narrate>>
<<think "mc">>Oh, never mind. Looks like the show's just starting...<</think>>
<<cont "adriasex" "showerpeep02">>
<<case "showerpeep02">>
<<vid "adria/shower02.mp4">>
<<narrate>>You crouch down at the side of the door and peer through as she uses the toy to rub her clit.<</narrate>>
<<say "adria">>$name, yes, $name!<</say>>
<<narrate>>She screams your name as she continues to pleasure herself.<</narrate>>
<<think "mc">>Well, shit. $kristen.name was definitely right. She's into me. Now, just to get her to admit that. Maybe $kristen.name's plan isn't so crazy after all.<</think>>
<<narrate>>You creep into the room, the thrill of the situation throwing all reason to the side.<</narrate>>
<<narrate>>Her moans grow wilder and you can tell she's about to orgasm.<</narrate>>
<<set _uc = $name.toUpperCase()>>
<<say "adria">>_uc! RIGHT THERE. I'M CUMMING!<</say>>
<<think "mc">>Holy shit. If I didn't think it'd completely fuck things up, I'd be in that shower like a bee to honey.<</think>>
<<narrate>>She sits panting on the shower bench. Feeling the show is over, you decide to make your escape.<</narrate>>
<<think "mc">>I've spied her fapping so many times now... I need to progress things. I should visit $kristen.name next time she's working.<</think>>
<<button "Continue" househub>>
<<unlock "adria" "shower">>
<<event "adria" "porno" 6>>
<<corrupt "adria" 5>>
<<lust "adria" 3>>
<<if $adria.corruptmax < 80>>
<<set $adria.corruptmax = 80>>
<</if>>
<<time 1>>
<</button>>
<<case "tformpeep">>
<<narrate>>You duck into her bathroom and peer around the corner.<</narrate>>
<<vid "adria/tpeep01.mp4">>
<<narrate>>You watch with absolute fascination as she plays with herself.<</narrate>>
<<think "mc">>This place really has blessed me!<</think>>
<<narrate>>Her moans grow louder as she brings herself to climax.<</narrate>>
<<think "mc">>Shit, I've left it too late; she's gonna catch me!<</think>>
<<narrate>>As you begin to panic, she starts moaning again, her fingers fast at work once more.<</narrate>>
<<narrate>>You sneak out while she's distracted.<</narrate>>
<<if $hour >= 0 && $hour < 8>>
<<set _where = "sleep">>
<<set _what = "Sleep">>
<<else>>
<<set _where = "housestuff">>
<<set _what = "Continue">>
<</if>>
<<button _what _where>>
<<unlock "adria" "tpeep">>
<<lust "adria" 3>>
<<corrupt "adria" 2>>
<<event "adria" "transfap">>
<<temp "">>
<<if $hour >= 8>><<time 1>><</if>>
<</button>>
<<case "girlsfap">>
<<vid "adria/two01.mp4">>
<<narrate>>$adria.name doesn't take long to come around, and she lies fingering herself while watching $kristen.name enjoy the dildo.<</narrate>>
<<say "adria">>Oh god this feels so wrong.<</say>>
<<say "kristen">>Yet so hot, right? I'm just imagining $name is here. God I wanna fuck him so bad.<</say>>
<<narrate>>$adria.name bites her lip and says nothing, but you notice her fingers start moving a little faster.<</narrate>>
<<say "kristen">>Your turn.<</say>>
<<say "adria">>With your dildo?<</say>>
<<say "kristen">>Too good to share?<</say>>
<<say "adria">>N-no... it just feels so intimate.<</say>>
<<button "Continue" adriasex>>
<<temp "girlsfap02">>
<</button>>
<<case "girlsfap02">>
<<vid "adria/two02.mp4">>
<<narrate>>Despite her initial protests she's on her back rubbing the toy over her clit in next to no time.<</narrate>>
<<say "kristen">>God, that's hot. Just picture your $adria.you's cock!<</say>>
<<say "adria">>Ohhhh~<</say>>
<<say "kristen">>It's such a tasty cock, you're gonna love it. Imagine if he saw you now. Just think about him watching you as you bring yourself to completion.<</say>>
<<narrate>>$adria.name's movements become faster and she writhes on the bed, struggling to contain her building pleasure.<</narrate>>
<<say "adria">>Oh, $name, yes, I want it. I want your cock!<</say>>
<<say "kristen">>That's it, let your true desires free!<</say>>
<<say "adria">>I want it! I want $adria.calls's cock!<</say>>
<<narrate>>Her body quivers as the shockwaves of pleasure flow through her.<</narrate>>
<<think "mc">>Fuck me. That's hot, now how do I get her to reveal that same thing to me?<</think>>
<<button "Continue" adriasex>>
<<unlock "adria" "girlfap">>
<<unlock "kristen" "girlfap">>
<<temp "girlsfap03">>
<</button>>
<<case "girlsfap03">>
<<narrate>>As she recovers and it dawns on her what she just said, $adria.name starts to frown.<</narrate>>
<<say "adria">>No, I didn't mean it.. it's not like that.<</say>>
<<block "adria/two05.jpg">>
<<say "kristen">>Really? It sounded exactly like that to me.<</say>>
<<narrate>>$adria.name tries to protest but $kristen.name is having none of it.<</narrate>>
<<say "kristen">>He's got an amazing dick; there's no reason not to suck it. Listen, do you trust me?<</say>>
<<say "adria">>I... I guess.<</say>>
<<say "kristen">>Then be honest, would you suck his dick if you could?<</say>>
<</block>>
<<say "adria">>Y-Yeah...<</say>>
<<say "kristen">>Great. I'll make it happen.<</say>>
<<think "mc">>You deserve a massive bonus, $kristen.name!<</think>>
<<say "adria">>But, he'd never—<</say>>
<<say "kristen">>He'll think it's me.<</say>>
<<say "adria">>Wait, what?<</say>>
<<say "kristen">>Trust me. I just need a little time to set it up.<</say>>
<<say "adria">>Yeah... yeah, okay.<</say>>
<<think "mc">>I think that's my cue to leave before $adria.name spots me. I'll catch up with $kristen.name when she's next working.<</think>>
<<button "Continue" homehub>>
<<lust "adria" 4>>
<<corrupt "adria" 5>>
<<event "adria" "kristenmsg" 8>>
<<time 1>>
<</button>>
<<case "games">>
<<if $adria.events.gamespeep != undefined>>
<<narrate>>You leave it a few minutes as you have previously, then return hoping to see her having fun again.<</narrate>>
<<else>>
<<narrate>>You're walking through the lobby when a thought occurs to you.<</narrate>>
<<think "mc">>That was kinda fun, maybe I should see if she wants to do like a games night or something with a bunch of the others.<</think>>
<<narrate>>You decide to head back to the games room.<</narrate>>
<</if>>
<<narrate>>As you approach you notice you hear her moaning.<</narrate>>
<<if $adria.events.gamespeep != undefined>>
<<think "mc">>Great, sounds like she's having fun again!<</think>>
<<else>>
<<think "mc">>No way... is she really?<</think>>
<</if>>
<<narrate>>You wait for your moment then duck in behind the air hockey table.<</narrate>>
<<button "Continue" adriasex>>
<<temp "games01">>
<</button>>
<<case "games01">>
<<vid "adria/pool01.mp4">>
<<narrate>>She's sat brazenly on the pool table pleasuring herself with the outside doors wide open.<</narrate>>
<<think "mc">>My $adria.them is so damn dirty!<</think>>
<<narrate>>She falls backwards as she starts rubbing her clit vigorously.<</narrate>>
<<say "adria">>Ohhh~<</say>>
<<button "Continue" adriasex>>
<<temp "games02">>
<</button>>
<<case "games02">>
<<narrate>>She kneels up on the pool table, ass in the air and resumes fingering herself.<</narrate>>
<<vid "adria/pool02.mp4">>
<<say "adria">>Yes, $name, do whatever you want with my body! The winner takes it all.<</say>>
<<think "mc">>Holy fucking shit.<<if $adria.sex == 0>> Don't you worry, I'll get you to be true to your feelings soon enough.<</if>><</think>>
<<narrate>>You watch for a bit longer, struggling to stop yourself from going over there, then decide to slink out before you're caught.<</narrate>>
<<button "Continue" homehub>>
<<unlock "adria" "pooltable">>
<<event "adria" "gamespeep">>
<<corrupt "adria" 3>>
<<lust "adria" 3>>
<<temp "">>
<<time 1.5>>
<</button>>
<</switch>><<tracker "adria" 1>>
<<if $adria.events.computer == undefined>>
<<step "What was she studying?" "Discuss computer science with her">>
<<elseif $adria.events.nightcomp == undefined>>
<<step "Relax at night." "Relax before bed.">>
<<elseif $adria.events.networked == undefined>>
<<step "Use networking app." "On the computer in your room, open the networking app">>
<<elseif $adria.events.mom == undefined>>
<<step "Discuss her mom." "Ask her about her mom">>
<<elseif $aubree.events.aubrock01 == undefined && $theodora.events.theored01 == undefined>>
<<step "Progress other substories" `"Progress with either " + $aubree.name +" or " + $theodora.name + "."`>>
<<elseif $adria.events.borked == undefined>>
<<step "Shoot Fapper" "Masturbate at night while thinking of someone you've done a photoshoot with.">>
<<elseif $adria.events.compfixed == undefined>>
<<step "Tech Support" "Ask her to fix your computer.">>
<<elseif $adria.events.peep == undefined>>
<<step "Night Spy" "Check up on her at night.">>
<<elseif $adria.events.relationship == "friends">>
<<step "End of friendship content" "Collect your thoughts at night to pursue a different type of relationship.">>
<<elseif $adria.corruption < 20>>
<<step "She's not corrupt enough" "20 needed. How to increase?<ul>
<li>Peep on her.</li>
<li>Flirt after accumulating 10 corruption.</li>
<li>Discuss porn with her.</li>
<li>Explore discussion topics.</li>
<li>Occasionally when relaxing at the spa together.</li>
</ul>">>
<<elseif $adria.events.gamespeep == undefined>>
<<step "Fun & Games" "Play a game with her while she's in the games room.">>
<<elseif $adria.events.porno == undefined>>
<<step "Porn Connoisseur" "Ask her about porn.">>
<<elseif $mc.events.recruit == undefined>>
<<step "Progress the story" "The next step will be available once the story advances.">>
<<elseif $adria.corruption < 30>>
<<step "She's not corrupt enough" "30 needed. How to increase?<ul>
<li>Peep on her.</li>
<li>Flirt after accumulating 10 corruption.</li>
<li>Discuss porn with her.</li>
<li>Explore discussion topics.</li>
<li>Occasionally when relaxing at the spa together.</li>
<li>Play with her in the games room.</li>
</ul>">>
<<elseif !$girlsavailable.includes('kristen')>>
<<step "Now Hiring" "Hire off world workers.">>
<<elseif $adria.events.kristenmsg == undefined>>
<<step "Wait on her" "She'll message you when she's ready.">>
<<elseif $adria.events.kristenmsg == 1>>
<<step "Check Messages" "Check your phone messages.">>
<<elseif $adria.events.kristen == undefined>>
<<step "A Fair Trade" "Chat to her to see what's she's after in return.">>
<<elseif $adria.events.kristenchat == undefined>>
<<step "$kristen.name Chat" `"Talk to "+$kristen.name+" while she's working."`>>
<<elseif $adria.events.kristenmsg < 4>>
<<step "Wait" "Wait until they've had their date.">>
<<elseif $adria.events.kristenmsg == 4>>
<<step "Check Messages" "Check your phone messages.">>
<<elseif $adria.events.kristenmsg == 5>>
<<step "Just Hanging" `"Check up on her while she's hanging out with "+$kristen.name+" in her room. They won't hang out if either of them are scheduled to work."`>>
<<elseif $adria.events.kristenmsg == 6>>
<<step "Spice it up" `"Talk to "+$kristen.name+" while she's working."`>>
<<elseif $adria.events.kristenmsg == 7>>
<<step "Frequent Visitor" `"Check up on her while she's hanging out with "+$kristen.name+". They won't hang out if either of them are scheduled to work."`>>
<<elseif $adria.events.kristenmsg == 8>>
<<step "$kristen.name's Plan" `"Talk to "+$kristen.name+" while she's working."`>>
<<elseif $adria.events.porno == 1>>
<<step "Unforgotten" "Remind her about the porno.">>
<<elseif $adria.events.porno == 2>>
<<step "Have a little patience" "Wait.">>
<<elseif $adria.events.porno == 3>>
<<step "Check Messages" "Check your phone messages.">>
<<elseif $adria.events.porno == 4>>
<<step "Private Viewer" "Watch the videos she saved in the private folder on your computer.">>
<<elseif $adria.events.porno == 5>>
<<step "Thanks" "Thank her for the porn.">>
<<elseif $adria.events.kristenmsg == 9>>
<<step "$kristen.name's Plan" `"Talk to "+$kristen.name+" while she's working."`>>
<<elseif $adria.events.kristenmsg == 10>>
<<step "Bedtime Relaxation" `"Relax at night"`>>
<<elseif $adria.corruption < 50>>
<<step "She's not corrupt enough" `"50 needed. How to increase?<ul>
<li>Peep on her.</li>
<li>Flirt after accumulating 10 corruption.</li>
<li>Explore discussion topics.</li>
<li>Occasionally when relaxing at the spa together.</li>
<li>Play with her in the games room.</li>"+
($adria.corruption > 49 ? "<li>Watch her wash cars.</li>" : "")+
"
</ul>"`>>
<<elseif $adria.events.kristenmsg == 11>>
<<step "Her Advice" `"Seek her advice on what happened."`>>
<<elseif $adria.corruption < 75>>
<<step "She's not corrupt enough" "75 needed. How to increase?<ul>
<li>Peep on her.</li>
<li>Flirt after accumulating 10 corruption.</li>
<li>Explore discussion topics.</li>
<li>Occasionally when relaxing at the spa together.</li>
<li>Play with her in the games room.</li>
<li>Watch her wash cars.</li>
</ul>">>
<<elseif $adria.events.blind == undefined>>
<<step "Standby" "She'll send a text message soon.">>
<<elseif $adria.events.blind == 1>>
<<step "Check Messages" "Read her text message.">>
<<elseif $adria.events.blind == 2>>
<<step "Blind Relaxation" "Relax at night and wear the blindfold.">>
<<elseif $adria.events.blind == 3>>
<<step "Fantastic Sex" `"Tell her just how good sex with <em>"+$kristen.name+"</em> was."`>>
<<elseif $adria.events.sexy < 2>>
<<step "Perfectly Natural $adria.events.sexy/2" `"Find instances where she's dressed or acting provocatively and make your presence known.<br>Options<ul><li>Car Wash</li><li>Photoshoot</li><li>Before Bed</li></ul>"`>>
<<elseif $adria.events.blind == 4>>
<<step "Looking Good" `"Talk to her, explain it's okay to be sexy."`>>
<<elseif $adria.events.blind == 5 && $items.vg == 0>>
<<step "Purchase Game" `"You can buy games on "+$planets[3].name+"."`>>
<<elseif $adria.events.blind == 5 && $items.vg > 0>>
<<step "Gift Her" `"Give her the game."`>>
<<elseif $adria.events.blind == 6>>
<<step "Virtually Yours" `"Peep on her when she's in her bedroom playing her VR game, or sneak around at night."`>>
<<elseif !$completeTasks.includes('shareddreams2')>>
<<step "Progress the story" "This will trigger automatically if you continue to follow the story tasks.">>
<<elseif $adria.events.dreamed == undefined>>
<<step "Special Dreams" `"Focus your dreams on her."`>>
<<elseif $adria.events.dreamed == 1>>
<<step "Reality Check" `"Talk to her about the dream."`>>
<<elseif $adria.events.dreamed == 2>>
<<step "Getting to Grips" `"Give her a little time to process."`>>
<<elseif $adria.events.dreamed == 3>>
<<step "Message Alert" `"Check your phone messages."`>>
<<elseif $adria.events.dreamed == 4>>
<<step "Somewhere Faraway" `"Suggest an excursion together."`>>
<<elseif $adria.events.dreamed == 5>>
<<step "Getting Away" `"Meet with her between 20:00 and 23:00 to go on a trip together."`>>
<<else>>
<<movielist adria>>
<</if>>
<</tracker>>
/*
Excursion to outskrits of New Eden. Outdoor sex.
As leaving someone says hello to her.
Suggests if you come back to NE for 'fun' you do so when she's transformed.
*/<<nobr>>
<<set $scene = 0>>
<<if $location != $currentlocations.anna && $location != "firstIntros" && $replay == false>>
<<say "anna">>Got to go. Byeeee!<</say>>
<<follow anna>>
<<button "Continue" $return>>
<</button>>
<<elseif ($location == "bedrooms" && $anna.events.relationship == undefined && $anna.events.gatewayguide != undefined) || ($replay == true && $tempvar == "peeper")>>
<<narrate>>The door to her room is open, so you let yourself in. Very quickly you hear the vibrating and notice what she's doing. You stand up against her cupboard.<</narrate>>
<<vid "anna/vibes01.mp4">>
<<think "mc">>Shit, did she forget she wanted to speak to me? What do I do? She's definitely hot, but am I really okay with peeping on my bitchy $anna.them?<</think>>
<<if $replay == true>>
<<think "mc">>Damn, she looks good. And her moans are so fucking cute.<</think>>
<<narrate>>You make your exit after you accidentally bang into her door.<</narrate>>
<<think "mc">>Shit. I hope she didn't notice me.<</think>>
<<button "Continue" housestuff>>
<<unlock "anna" "peeper">>
<</button>>
<<else>>
<<unlock "anna" "peeper">>
<<event "anna" "step">>
<div id="replace">
<<choices "Peep... or more?">>
<<link "Yup">>
<<event "anna" "relationship" "peep">>
<<replace "#replace">>
<<narrate>>You stick around and enjoy the show.<</narrate>>
<<think "mc">>Damn, she looks good. And her moans are so fucking cute.<</think>>
<<narrate>>You make your exit after you accidentally bang into her door.<</narrate>>
<<think "mc">>Shit. I hope she didn't notice me.<</think>>
<center><b>Back in her room...</b></center>
<<think "anna">>Right. Well, that didn't feel as weird as I expected. Now I know he's like any other straight man, my life is going to be easy here.<</think>>
<<button "Continue" housestuff>>
<<lust "anna" 4>>
<<corrupt "anna" 5>>
<<time 1>>
<</button>>
<<event "mc" "collect">>
<</replace>>
<</link>><br>
<<link "Nope" housestuff>>
<<event "anna" "relationship" "friend">>
<<event "mc" "collect">>
<</link>><br>
<<link "Why stop there?">>
<<event "anna" "relationship" "taboo">>
<<replace "#replace">>
<<narrate>>You stick around and enjoy the show.<</narrate>>
<<think "mc">>Damn, she looks good. And her moans are so fucking cute.<</think>>
<<think "mc">>Hmm, it should be pretty easy to corrupt her to be honest. She's already made it plain as day she's willing to suck cock to get out of work. That should be pretty easy to exploit. Manipulate the manipulator.<</think>>
<<narrate>>You make your exit after you accidentally bang into her door.<</narrate>>
<<think "mc">>Shit. I hope she didn't notice me.<</think>>
<center><b>Back in her room...</b></center>
<<think "anna">>Right. Well, that didn't feel as weird as I expected. Now I know he's like any other straight man, my life is going to be easy here.<</think>>
<<button "Continue" housestuff>>
<<lust "anna" 4>>
<<corrupt "anna" 5>>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<</choices>>
<<notice>>If you choose against peeping, or to peep only, you can collect your thoughts at night and change your mind later.<</notice>>
</div>
<</if>>
<<else>>
<<set _img = getImg('anna')>>
<<block _img>>
<<if $tempvar == "badflirt">>
<<say "anna">>Eww, gross. No.<</say>>
<<elseif $tempvar == "semibadflirt">>
<<narrate>>She actually cracks a smile as you deliver a cheesy line.<</narrate>>
<<say "anna">>Well, I am hot so it's only to be expected you'd try. But I'm way out of your league!<</say>>
<<think "mc">>Uh-huh, the smile on your face says you really don't mind, $anna.refer!<</think>>
<<elseif $anna.corruptmax < 40>>
<<narrate>>She looks up at you with disdain.<</narrate>>
<<say "anna">>Yeah, what do you want?<</say>>
<<else>>
<<say "anna">>$anna.calls! What's up?<</say>>
<</if>>
<<if $worklocation == true && $working != undefined && $working.anna != undefined && $working.anna[$hour] == $location>>
<<think mc>>She's really letting her inner exhibitionist out!<</think>>
<</if>>
<div class="choices" id="topics">
<h3>What do you want to discuss?</h3>
</div>
<</block>>
<</if>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("annadiscussions").processText());
})
<</script>>
<</nobr>><<scene>>
<<set _img = getImg('anna')>>
<<switch $tempvar>>
<<case "planets">>
<<left2 _img>>
<<say "mc">>You traveled before coming to this world, didn't you?<</say>>
<<say "anna">>A little bit with mom... what do you want?<</say>>
<<say "mc">>Think you can take me to any of those planets?<</say>>
<<say "anna">>Ha! No!<</say>>
<<narrate>>She catches your wicked glance, and sighs.<</narrate>>
<<say "anna">>I literally can't, mom took care of everything. I can't even remember what they were called.<</say>>
<<say "mc">>You remember none of them at all?<</say>>
<<say "anna">>What did I care? It's not like she was taking me anywhere interesting. It was boring as fuck. Go pester her.<</say>>
<<think "mc">>Why did I even bother asking her?<</think>>
<<button "Continue" housestuff>>
<<like "anna" 2>>
<<event "anna" "planets">>
<</button>>
<<case "worker2">>
<<set $location = "office">>
<<narrate>>Within a few minutes of issuing the schedules you hear angry heels getting louder and louder as they approach the office. You take a deep breath as she grasps the door handle.<</narrate>>
<<think "mc">>This is it. No more chances. How you act now is going to decide everything, $anna.refer.<</think>>
<<left2 "anna/what01.jpg">>
<<say "anna">>I've been assigned to the schedule... but I thought we'd come to an arrangement?<</say>>
<<think "mc">>Huh, no swearing, no insults...<</think>>
<<say "mc">>Me too, I thought after working at $kylie.name's place you were okay with it?<</say>>
<<say "anna">>Yeah, when it's like that, but I didn't think you were going to assign me to just normal work. I thought you understood my conditions!<</say>>
<<think "mc">>Okay... what? But still, while she's resistant to work, she's not being an <b>absolute</b> bitch about it like last time.<</think>>
<<say "mc">>Conditions?<</say>>
<<say "anna">>Yeah, like at $kylie.name's place.<</say>>
<<say "mc">>Uhh...<</say>>
<<think "mc">>I am so confused. Does she just want to keep cleaning $kylie.name's home?<</think>>
<<say "anna">>So, can I do it my way?<</say>>
<<say "mc">>Do what your way?<</say>>
<<say "anna">>The shift!<</say>>
<<think "mc">>Wait, she'll still do the work? I think I'm little unclear on the conditions, but I'm sure it's fine.<</think>>
<<say "mc">>Yeah, sure, go ahead. I just assumed you would, uhh... after $kylie.name's.<</say>>
<<say "anna">>Phew. You had me worried there. Great, I'll get on it, boss... hahaha!<</say>>
<<think "mc">>The fuck is going on? What the hell did I miss?<</think>>
<<if $tempvar2 == "notbar">>
<<say "anna">>Oh, actually...<</say>>
<<think "mc">>Oh... here we go...<</think>>
<<say "anna">>I can only really do it properly at the bar or the waiting area, so can you change my shift?<</say>>
<<think "mc">>I really want to ask what... but also don't want to ruin this relatively pleasant conversation... where she's willing to work, of all things!<</think>>
<<say "mc">>Yeah, no problem.<</say>>
<</if>>
<<notice>>$anna.name will now work for you... to your complete incomprehension.<</notice>>
<<button "Continue" housestuff>>
<<like "anna" 3>>
<<worker "anna">>
<<event "anna" "important" 2>>
<<time 1>>
<</button>>
<<case "maid">>
<<narrate>>You take a deep breath, readying yourself for the oncoming argument.<</narrate>>
<<block _img>>
<<say "mc">>I've got you something.<</say>>
<<narrate>>You hand her the maid's uniform and her face lights up.<</narrate>>
<<think "anna">>Ha! He may have been a dick the other night, but clearly his words meant fuck all.<</think>>
<<say "anna">>This is great, thank you... I can't wait to put it on!<</say>>
<<think "mc">>What?<</think>>
<<say "mc">>I... uhh... didn't expect you to be so happy about it.<</say>>
<<say "anna">>Are you kidding, after the other night I was a little worried. Clearly we're on the same page after all!<</say>>
<</block>>
<<think "mc">>I'm not if sure we are. Let's try to make it clear.<</think>>
<<say "mc">>So there's this house on the edge of town I'd like you to...<</say>>
<<narrate>>You pause, expecting your next words to be met with resistance.<</narrate>>
<<say "mc">>...clean. There'll be someone there to watch.<</say>>
<<narrate>>She looks at you, almost coyly.<</narrate>>
<<say "anna">>Sounds good, let's go, as you put it, clean.<</say>>
<<narrate>>She grabs your hand, seemingly excited about the prospect.<</narrate>>
<<think "mc">>The fuck? Did she get a personality transplant or something?<</think>>
<<cont "annaanswers" "maid02">>
<<case "maid02">>
<<narrate>>You arrive at $kylie.name's a few minutes later.<</narrate>>
<<block "kylie/mature/home02.jpg">>
<<say "kylie">>You must be the maid.<</say>>
<<think "mc">>Wow, why is she wearing so little? Actually, I don't mind one bit.<</think>>
<<narrate>>She gives $anna.name a look of contempt.<</narrate>>
<<say "anna">>Yes, I'm looking forward to this!<</say>>
<<narrate>>$kylie.name is as surprised as you.<</narrate>>
<<say "mc">>Why don't you go and get changed? Bathroom's just down the hall.<</say>>
<<narrate>>She skips away seemingly happy.<</narrate>>
<</block>>
<<say "kylie">>What's going on?<</say>>
<<say "mc">>Honestly, I have no idea. I gave her the outfit, told her you'd be here to watch over her, and she seemed... excited about it.<</say>>
<<say "kylie">>Yeah... something's not right.<</say>>
<<narrate>>$anna.name interrupts from the other side of the room.<</narrate>>
<<block "anna/maid01.jpg">>
<<say "anna">>You ready?<</say>>
<<say "mc">>You look...<</say>>
<<narrate>>$kylie.name bursts out laughing. $anna.name looks at her confused.<</narrate>>
<<say "kylie">>I see what's happened now. <i>That's</i> the maid uniform?<</say>>
<<say "anna">>I look so hot, right?<</say>>
<<say "kylie">>Incredible. But...<</say>>
<</block>>
<<think "mc">>I know it's a little more revealing than I expected, but I don't see why it's a laughing matter.<</think>>
<<say "kylie">>Okay, shall we get started then?<</say>>
<<narrate>>$anna.name giggles.<</narrate>>
<<think "mc">>I am so confused.<</think>>
<<say "anna">>Can... can I do a bit of role play first?<</say>>
<<narrate>>$kylie.name, seemingly now aware of what's really happening, simple grins and gestures for her to begin.<</narrate>>
<<cont "annasex" "maid01">>
<<case "mature">>
<<narrate>>$anna.name comes bounding in to your room.<</narrate>>
<<left2 "anna/yourroom01.jpg">>
<<think "mc">>For fuck's sake, not this early.<</think>>
<<say "mc">>What do you want?<</say>>
<<say "anna">>Wow, that's no way to greet your super hot $anna.them!<</say>>
<<narrate>>You roll your eyes and reply sarcastically.<</narrate>>
<<say "mc">>Oh, my dear beautiful goddess, a true princess among women, what does thou desire of me, your humble servant?<</say>>
<<say "anna">>That's more like it! So, you know when we were at $kylie.name's?<</say>>
<<think "mc">>She did pick up that was sarcasm... right? Whatever, it's too early.<</think>>
<<say "mc">>Uh-huh. It was a pretty good day, all things considered. It certainly brought us closer together.<</say>>
<<say "anna">>Yeah, sure, sure, sure. Can I try it too?<</say>>
<<think "mc">>It? Does... does she mean my dick? Fuck, it's not too early for that!<</think>>
<<say "mc">>We can do it right now if you want.<</say>>
<<narrate>>You throw the blanket to one side revealing your morning wood. She stares at it for a moment, her eyes full of temptation, but otherwise doesn't move.<</narrate>>
<<say "anna">>Great, I'll meet you there.<</say>>
<<say "mc">>Wait, what?<</say>>
<<say "anna">>At the Gateway... or can you do it here?<</say>>
<<say "mc">>Sorry. What are you wanting me to do?<</say>>
<<say "anna">>Same thing you did for $kylie.name. Turn me into a hot MILF. I want to know I'm still going to be hot when I'm older... but I also don't want to get old. Euwww. So... what did you think I meant?<</say>>
<<think "mc">>Fuck it, I think I'm past playing games.<</think>>
<<say "mc">>I thought you wanted to ride my dick.<</say>>
<<say "anna">><i style="font-size:60%">Maybe a little.</i> What? No. Gross. God, is that all you think about? Well, I guess it's only natural, just look at me. And here I am, offering to spend some time with you, I'm such a good $anna.them.<</say>>
<<think "mc">>She is unreal... and just what did she whisper just then? Fuck, I don't care.<</think>>
<<say "mc">>Fine. Whatever, I'll meet you there.<</say>>
<<think "mc">>When I can be bothered.<</think>>
<<event "anna" "mature" 2>>
<<cont "homehub" "" 0.5>>
<<case "dream">>
<<narrate>>You open your door to leave to find $anna.name looking uncharacteristically nervous at your door.<</narrate>>
<<block "anna/dream01.jpg">>
<<think "mc">>Holy shit, is that what she wears to bed? There's no way... fuck she looks good.<</think>>
<<say "anna">>...can we try that?<</say>>
<<narrate>>You realize you weren't even listening to her.<</narrate>>
<<say "mc">>Sorry... uhhh... early morning can you repeat that.<</say>>
<<narrate>>She grins, clearly aware of the real reason you weren't paying attention.<</narrate>>
<<say "anna">>I was speaking to $aubree.name and thought maybe I should try modeling. I wouldn't need to work then, right?<</say>>
<</block>>
<<narrate>>She does a little twist then sticks out her ass at you while leaning on the rail.<</narrate>>
<<block "anna/dream02.jpg">>
<<think "mc">>Wasn't she wearing something similar in my dream?<</think>>
<<say "anna">>Well? You gonna say something or just stare at my ass?<</say>>
<<say "mc">>So it was $aubree.name's idea?<</say>>
<<say "anna">>Not really. But I'm way hotter than her, right? And last night I dreamed about doing some modeling for you. So I figured it was worth a shot. I found the matching outfit this morning and here I am.<</say>>
<<if $completeTasks.includes('shareddreams2')>>
<<think mc>>Fuck, I do love these dreams.<</think>>
<<elseif $completeTasks.includes('shareddreams')>>
<<think "mc">>Another shared dream, huh? I wish I could control these!<</think>>
<<else>>
<<think "mc">>Hold on... she had the same dream as me?! I should probably find out more about that.<</think>>
<<task "shareddreams">>
<</if>>
<</block>>
<<say "mc">>There's a lot to unpack here.<</say>>
<<if $theodora.events.theored01 != undefined && $girlsavailable.includes('theodora')>>
<<say "anna">>You let my sister do it, and I'm way hotter than her! This way we both get we want, right?<</say>>
<<else>>
<<say "anna">>Like what? I'm hot and I want to model. This way we both get what we want, right?<</say>>
<</if>>
<<think "mc">>This may be the most amicable conversation I've ever had with her. Not a single insult.<</think>>
<<say "mc">>They get a bit risqué; you okay with that?<</say>>
<<say "anna">>Don't be a fucking idiot. Look at how I'm dressed right now... and don't think I haven't noticed that boner. I don't give a shit you're my $anna.you. If you wanna jack off to me or whatever go for it, I just don't wanna work in one of your god-forsaken facilities, okay?<</say>>
<<think "mc">>Still... pretty polite for her.<</think>>
<<say "mc">>I'll think about it.<</say>>
<<if $buildings.studio == undefined>>
<<think "mc">>Though I don't currently have an appropriate facility for this. I'd better figure that out first.<</think>>
<<say "anna">>What's there to think about? Look at me; I'm hot as fuck. Go buy a camera or whatever and let me know when you're ready.<</say>>
<<else>>
<<say "anna">>What's there to think about? Look at me; I'm hot as fuck. Go prepare the studio or whatever and let me know when you're ready.<</say>>
<</if>>
<<narrate>>She struts off while your eyes remain firmly on her ass.<</narrate>>
<<button "Continue" homehub>>
<<event "anna" "step" 5>>
<<lust "anna" 3>>
<<corrupt "anna" 5>>
<<task "photo">>
<<time 0.5>>
<</button>>
<<case "model">>
<<say "mc">>You ready for this?<</say>>
<<say "anna">>Yeah, yeah, whatever fuckface. How hard is looking hot?<</say>>
<<say "mc">>Oh, I am not in the mood for—<</say>>
<<narrate>>As if realizing she may have pushed the wrong button.<</narrate>>
<<say "anna">>Yeah, okay. I'll tone it down.<</say>>
<<say "mc">>Holy shit. You feeling ill?<</say>>
<<say "anna">>No. I just know things are different here and you're actually fucking important. As much as that pisses me off, I need to come to terms with it.<</say>>
<<think "mc">>Eh, it's kind of progress... maybe?<</think>>
<<say "mc">>Alright, let's go inside and—<</say>>
<<say "anna">>Let's do it out here. It's a lovely day, after all.<</say>>
<<say "mc">>Someone might see you working.<</say>>
<<narrate>>You hear a passion in her voice you've never heard before. She seems excited about the prospect.<</narrate>>
<<say "anna">>Yeah, no, that's fine!<</say>>
<<think "mc">>Thinking back to the state she was in when I got her from the buffer... maybe I shouldn't be so surprised.<</think>>
<<narrate>>You pass her a blue dress you brought for the shoot and head inside to grab some equipment.<</narrate>>
<<cont "annaanswers" "model2">>
<<case "model2">>
<<narrate>>You return a few minutes later to find she's already changed.<</narrate>>
<<say "mc">>I didn't hear you come in to get changed.<</say>>
<<say "anna">>I just did it here!<</say>>
<<think "mc">>Again... that excitement in her voice.<</think>>
<<say "mc">>Right, let's get started then.<</say>>
<<narrate>>You try to get on with the shoot, but it's difficult to get her to pose appropriately, she doesn't follow instructions well, and it doesn't seem to come naturally to her at all.<</narrate>>
<center>
<img @src="setup.img+'/shoots/annaout01/01.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/annaout01/02.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/annaout01/03.jpg'" class="shootimg">
</center>
<<narrate>>You manage to get some decent shots regardless, but she seems more interested in her surroundings, constantly looking to see if anyone is about.<</narrate>>
<<think "mc">>Is she really that desperate for someone to see her?<</think>>
<<say "mc">>How are you feeling?<</say>>
<<say "anna">>Good. We done? Great, then I can—<</say>>
<<say "mc">>What? No. We've barely any good shots.<</say>>
<<say "anna">>What? Are you crazy? You should have got loads of shots by now!<</say>>
<<say "mc">>Yes, but most aren't usable.<</say>>
<<say "anna">>Ugh. Gross. I see what you want. If it gets me outta working in one of your shitholes I'll do it.<</say>>
<<say "mc">>What do—<</say>>
<<narrate>>You shut up when she reveals her nipple to you.<</narrate>>
<center>
<img @src="setup.img+'/shoots/annaout01/04.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/annaout01/05.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/annaout01/06.jpg'" class="shootimg">
</center>
<<narrate>>You struggle a little less to get decent photos this time. But it's still not smooth.<</narrate>>
<<think "mc">>Yeah, that underwear totally fits the exhibitionist vibes I've been getting.<</think>>
<<say "anna">>So now are we done?<</say>>
<<say "mc">>Listen... you look great, but you struggle with instructions and your poses need a little—<</say>>
<<say "anna">>Are you trying to negg me? Fuck off...<</say>>
<<say "mc">>No, will you just listen to me, please?<</say>>
<<say "anna">>Oh, I know. You really like my ass, right? Watch me!<</say>>
<<narrate>>You're not foolish enough to miss the shot, even if you were trying to reason with her.<</narrate>>
<<center "shoots/annaout01/07.jpg">>
<<narrate>>She looks satisfied with herself.<</narrate>>
<<say "anna">>I can tell by your boner you enjoyed that! So, we good?<</say>>
<<cont "annaanswers" "model3">>
<<case "model3">>
<<say "kylie">>With just that? C'mon girl, you're hotter than the sun. You can do better!<</say>>
<<narrate>>$anna.name smile widens and she spreads her legs almost instinctively.<</narrate>>
<<say "anna">>You were watching?<</say>>
<<say "kylie">>You think I wouldn't notice the bombshell in the middle of town? But... here, let me show you a few poses.<</say>>
<<say "anna">>Wait... what?<</say>>
<<narrate>>She shoos $anna.name along who just looks bewildered. She poses for a few shots. You get several great pics in no time at all.<</narrate>>
<center>
<img @src="setup.img+'/shoots/annaout01/08.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/annaout01/09.jpg'" class="shootimg">
<img @src="setup.img+'/shoots/annaout01/10.jpg'" class="shootimg">
</center>
<<think "mc">>Damn, this is a good day!<</think>>
<<say "kylie">>See? You just gotta really sell it. Look at the cameraman like you want him to pin you against a wall and fuck your brains out. Don't be looking around all the time like you were... and if you're unsure what to do, follow $name's instructions.<</say>>
<<say "anna">>What? No, I'm way hotter than you. There's no way he got better shots of you in such a small amount of time.<</say>>
<<narrate>>You show her the images on the camera screen and you can see her grimacing.<</narrate>>
<<say "anna">>That doesn't make any sense. Look at me. Just fucking look at me! I saw your boner, I know you were hard for me.<</say>>
<<say "mc">>I mean, that doesn't just naturally make you a good model. It's still skilled work.<</say>>
<<say "anna">>The fuck? How much longer do we need to do this then?<</say>>
<<say "mc">>With the rate you're going, probably a couple of hours.<</say>>
<<say "anna">>And if it were her?<</say>>
<<say "mc">>Less than an hour.<</say>>
<<say "anna">>No... this is bullshit. Fuck you guys... you know what, I know I'm hotter. Just look at his cock. He's so hard for me right now.<</say>>
<<think "mc">>I mean, she certainly roused it, but $kylie.name kinda stole its attention.<</think>>
<<narrate>>$kylie.name rolls her eyes.<</narrate>>
<<say "kylie">>It's not a competition, I was just trying to help, give you some advice, y'know?<</say>>
<<narrate>>She gives you a mischievous wink.<</narrate>>
<<say "kylie">>And you're right, his cock probably is hard for you. You should probably take care of it, huh?<</say>>
<<think "mc">>There's no way she's ready for that...<</think>>
<<say "anna">>What? No. Gross. Not his ugly ass. He's not worth it!<</say>>
<<narrate>>$kylie.name cackles.<</narrate>>
<<say "kylie">>The patron... the ruler of this <b style="font-weight: 600">entire</b> <b style="font-weight: 1000">world</b> isn't fucking worth it? Are you delusional?<</say>>
<<think "mc">>I know she doesn't mean that how it sounds... but it really makes me out to be something I'm not.<</think>>
<<narrate>>$anna.name remains silent clearly deep in thought.<</narrate>>
<<say "anna">>Hmm... and is modeling always this demanding?<</say>>
<<say "mc">>We barely scratched the surface.<</say>>
<<think "mc">>Truthfully, I don't think that's it. It's just not for everyone. But saying that right now is not gonna help the situation, though.<</think>>
<<say "anna">>For fuck's sake. Fine. Meet me after everyone's asleep and we'll discuss the alternative.<</say>>
<<say "kylie">>Sounds like a plan.<</say>>
<<say "anna">>Not you. Fucking coming in here trying to one up! Girl, look in a mirror, you are a skank!<</say>>
<<say "kylie">>Wow. You're a delight. I was just trying to help.<</say>>
<<say "anna">>Whatever. Just remember he's my $anna.you!<</say>>
<<narrate>>$kylie.name gives you a look, shrugs and heads out. $anna.name turns back to you.<</narrate>>
<<say "anna">>Ugh. Can you believe her? Fucking bitch. See you later.<</say>>
<<think "mc">>Well, that was a fucking whirlwind.<</think>>
<<button "Continue" homehub>>
<<event "anna" "model">>
<<lust "anna" 5>>
<<corrupt "anna" 5>>
<<time 2>>
<</button>>
<<case "aubreemodel">>
<<narrate>>You hear a ball bouncing and decide to check it out.<</narrate>>
<<center "aubree/out00.jpg">>
<<say "mc">>Wow, I never knew you were into basketball.<</say>>
<<say "aubree">>You have only known me for like ten percent of my life!<</say>>
<<say "mc">>Yeah, feels weird when you say it like that.<</say>>
<<say "aubree">>Ha! It <b><i>is</i></b> weird! Anyway, yeah, an ex told me I couldn't do it because I was short, so obviously I had to prove them wrong. Didn't go well... I'm terrible at it, but it's a good workout and I enjoy it when I'm not feeling the gym.<</say>>
<<say "anna">>Cuuuz~!<</say>>
<<say "aubree">>Oh, god... do you think she'll notice if we run?<</say>>
<<say "mc">>Haha, I think it's too late.<</say>>
<<block "anna/anna2.png">>
<<say "anna">>Oh. You're here too. Can you like leave me alone for just like a minute? God. Stalker.<</say>>
<<narrate>>You chuckle as she ushers $aubree.name to the other side of the wall.<</narrate>>
<<say "anna">>So, you don't work at any of <i>his</i> dirty facilities do you?<</say>>
<<narrate>>Over her shoulder, $aubree.name silently mouths "help me" back to you.<</narrate>>
<<think "mc">>Ha! Like she needs any help, she can be just as terrible when she gets going or is in a mood.<</think>>
<<cont "annaanswers" "aubreemodel2">>
<</block>>
<<case "aubreemodel2">>
<<block "aubree/out01.jpg">>
<<say "aubree">>No, I don't. What do you want, $anna.name?<</say>>
<<say "anna">>So, like, how do you get away with that? Are you sucking someone's cock or something?<</say>>
<<if $aubree.corruptmax >= 60>>
<<narrate>>$aubree.name looks over at you with briefly and quickly turns back to $anna.name when your eyes meet.<</narrate>>
<</if>>
<<say "aubree">>What? No. Jesus $anna.name.<</say>>
<<say "anna">>Then what's your secret?<</say>>
<</block>>
<<if $aubree.events.aubrock01 == undefined>>
<<say "aubree">>Well, I guess I never offered. But I see your point; I probably should, huh? I had to work back east so it shouldn't be any different here.<</say>>
<<say "anna">>What? No. Ewww. Gross. Work. Didn't you used to model? Just strutting around looking hot all day, just do that again.<</say>>
<<say "aubree">>It really isn't that simple—<</say>>
<<else>>
<<say "aubree">>I've been doing some modeling here, so I guess that kinda covers it.<</say>>
<<say "anna">>You get to show off your body and that's it? You know what, I'm hotter than you, I could totally do that. Can't exactly be hard, right?<</say>>
<<say "aubree">>Hotter than...? Never mind. It really isn't that simple—<</say>>
<</if>>
<<say "anna">>Great, that's settled then. We're a pair of hot bitches that don't need to work! Thanks Cuz!<</say>>
<<narrate>>After $anna.name's far enough away, you approach $aubree.name.<</narrate>>
<<block "aubree/out02.jpg">>
<<say "aubree">>She is so draining. <<if $aubree.events.aubrock01 != undefined>>Hotter than me? The fuck she talking about?<</if>><</say>>
<<say "mc">>Tell me about it, I used to live with her... well I guess I still do, but you know what I mean.<</say>>
<<say "aubree">>But the work stuff; I probably should pitch in a bit more.<</say>>
<<say "mc">>The help would certainly be appreciated, but I'm not gonna force you.<</say>>
<</block>>
<<say "aubree">>Yeah, fuck it. If just to prove I'm not like her if nothing else.<</say>>
<<think "mc">>To be fair, you've had your moments when you're just as bad!<</think>>
<<say "aubree">>Don't give me that look, I've never been that fucking bad!<</say>>
<<say "mc">>I said nothing!<</say>>
<<say "aubree">>But you were thinking it.<</say>>
<<notice>>$aubree.name will now work for you.<</notice>>
<<button "Continue" housestuff>>
<<worker "aubree">>
<<like "aubree" 2>>
<<event "anna" "modelchat">>
<<set $anna.events.observe++>>
<<time 1>>
<</button>>
<<case "armaniwhat">>
<<narrate>>$anna.name is in the garden, stood not far from the door as if she's waiting for someone. She steps forward as you open the door, a big smile on her face. It's lost as soon as she realizes it's you.<</narrate>>
<<say "anna">>Oh, it's you.<</say>>
<<say "mc">>Expecting someone else?<</say>>
<<say "anna">>The world doesn't revolve around you!<</say>>
<<say "mc">>Pot calling kettle black!<</say>>
<<say "anna">>What's that's supposed to mean?!<</say>>
<<narrate>>The door starts to rattle and she gestures you away no longer interested in arguing with you.<</narrate>>
<<block "anna/gardenalt01.jpg">>
<<narrate>>She puts back on her sweet smile.<</narrate>>
<<think "mc">>Interesting... let's see what this is about.<</think>>
<<narrate>>The door swings open and clatters against the wall as $armani.name struggles out holding a mop and some cleaning materials.<</narrate>>
<<say "armani">>Bollocks!<</say>>
<<say "anna">>$armani.name, great to see you!<</say>>
<<think "mc">>Oh, this should be good!<</think>>
<<narrate>>$armani.name carries on walking as if she didn't even notice $anna.name.<</narrate>>
<</block>>
<<say "anna">>$armani.name! How are you?<</say>>
<<say "armani">>Huh? What do you want?<</say>>
<<say "anna">>I was wondering— wait... what are you carrying?<</say>>
<<cont "annaanswers" "armaniwhat01">>
<<case "armaniwhat01">>
<<block "armani/clean01.jpg">>
<<say "armani">>Cleaning materials, what does it look like? A purple dinosaur?<</say>>
<<say "anna">>Haha... no... who are they for?<</say>>
<<say "armani">>What do you mean?<</say>>
<<narrate>>You can tell $armani.name is already irritated with by the conversation.<</narrate>>
<<say "anna">>Who are you giving them to do the cleaning?<</say>>
<<say "armani">>Nobody, I'm doing it myself. Heading to the pool. Do you need me for anything?<</say>>
<</block>>
<<say "anna">>Wait, wait, I didn't think you did any work. I was gonna—<</say>>
<<say "armani">>Don't do any work?! How fucking dare you! Who do you think keeps this place clean and organized? Who do you think changes your goddamn sheets? And that doesn't even get into ensuring we have ample water, energy, and fucking organizing all the expeditions $name needs. You think I sit around with my thumb up my ass all day like you? Fucking hell girlie, grow up.<</say>>
<<narrate>>She storms off while $anna.name just looks in shock.<</narrate>>
<<think "mc">>Wow!<</think>>
<<say "mc">>You really shouldn't piss her off. You really thought she did nothing?<</say>>
<<say "anna">>You're still here? Fuck. She doesn't work in your facilities and doesn't go on expeditions... I thought I wanted to be like her...<</say>>
<<say "mc">>You thought she did nothing? She's the glue holding this place together.<</say>>
<<think "mc">>Although, maybe she could do with a maid or something... I know she was just angry with $anna.name, but she really does have a lot more to do since I arrived, and all I do is keep adding to her workload.<</think>>
<<say "anna">>Ugh. Whatever. I'll ask someone else.<</say>>
<<say "mc">>If you're looking for someone who sits around doing nothing for weeks on end you'll not find them here.<</say>>
<<narrate>>She flips you the bird as she walks off. You chuckle.<</narrate>>
<<button "Continue" housestuff>>
<<event "anna" "cleanchat">>
<<set $anna.events.observe++>>
<<time 1>>
<</button>>
<<case "lexihelp">>
<<narrate>>You notice $anna.name looking uncharacteristically nervous outside of $lexi.name's door and decide to see what she's up to.<</narrate>>
<<think "mc">>Is she building herself up for something?<</think>>
<<narrate>>After a moment she seems to make a decision and opens $lexi.name's door.<</narrate>>
<<say "anna">>Auuuunty $lexi.name!<</say>>
<<if $lexi.young == true>>
<<block "anna/lexiyoung01.jpg">>
<<say "lexi">>Hey honey, what's up? I'm just making the bed.<</say>>
<<say "anna">>Oh, you're like that...<</say>>
<<say "lexi">>Huh?<</say>>
<<say "anna">>Uhh... you know making your bed first thing in the morning.<</say>>
<<say "lexi">>Well, we hardly have a maid service here, do we? So what did you want, sweetie?<</say>>
<</block>>
<<say "anna">>Oh, it doesn't matter, I'll leave you to it. Speak to you later.<</say>>
<<narrate>>$lexi.name just looks confused as $anna.name scurries away.<</narrate>>
<<think "mc">>She seemed put off by $lexi.name younger form. Maybe she'd say more if $lexi.refer was in her usual form?<</think>>
<<cont "housestuff">>
<<else>>
<<block "anna/lexi00.jpg">>
<<say "lexi">>Hey honey, what's up? I'm just getting dressed.<</say>>
<<say "anna">>I'm boooored! Do you wanna hang out?<</say>>
<<say "lexi">>Of course honey, anything for my little sweetie pie. Let me get some clothes and I'll meet you in the lounge.<</say>>
<<if $lexi.events.relationship == "taboo">>
<<think "mc">>Please, not on my account!<</think>>
<</if>>
<<say "anna">>I'll just wait here with you.<</say>>
<</block>>
<<say "lexi">>No problem, just close the door, will you?<</say>>
<<think "mc">>
<<if $lexi.events.relationship == "taboo">>
Bah, just as I was managing to get a decent view too!
<</if>>
Well, guess I'm heading to the lounge. She's always had a good relationship with $lexi.refer, she kinda spoiled her. So I probably shouldn't be surprised she's acting differently around her, but still, I'm quite intrigued what she's after.
<</think>>
<<narrate>>You head down to the lounge.<</narrate>>
<<cont "annaanswers" "lexihelp1">>
<</if>>
<<case "lexihelp1">>
<<set $location = "lounge">>
<<run presentCompany($location)>>
<<if $girlshere.length > 1>>
<<set _w = either($girlshere)>>
<<set _who = State.variables[_w]>>
<<set $tempvar2 = _who.name>>
<<narrate>>_who.name watches as you enter the lounge and look around rapidly.<</narrate>>
<<set _i = _w+"/lounge01.jpg">>
<<block _i>>
<<say _w>>Lost something?<</say>>
<<narrate>>You jump, startled.<</narrate>>
<<say "mc">>You made me jump! I'm uhh... just looking for somewhere to hide.<</say>>
<<say _w>>Huh?<</say>>
<<say "mc">>$anna.name's on her way.<</say>>
<<say _w>>Coward. Behind the sofa.<</say>>
<</block>>
<<narrate>>She laughs as she points out one of the sofas.<</narrate>>
<<say "mc">>Thanks!<</say>>
<</if>>
<<narrate>>You nestle yourself behind a sofa, hoping to be out of view. A little while later $lexi.name and $anna.name arrive mid-conversation.<</narrate>>
<<say "anna">>...always been my favorite aunt, yeah? And I was wondering if you could talk to $name for me?<</say>>
<<say "lexi">>About what exactly?<</say>>
<<say "anna">>Well, he's just been super mean to me! I even tried to be nice to him and he was such a fu— uh, he wasn't very nice!<</say>>
<<think "mc">>Her language is so different to normal, and she's even holding back from swearing.<</think>>
<<say "lexi">>Oh, I'm sure he meant nothing by it, sweetie. He's got a lot on his plate running this place, after all. You leave it with me, I'll talk to him.<</say>>
<<narrate>>You hit the radiator with your head causing a loud bang.<</narrate>>
<<think "mc">>Shit...<</think>>
<<cont "annaanswers" "lexihelp2">>
<<case "lexihelp2">>
<<narrate>>You emerge from behind the sofa.<</narrate>>
<<say "mc">>Fuck that hurt, dropped my phone back there and I managed to bang my head on the radiator.<</say>>
<<say "lexi">>Quite the bang too!<</say>>
<<block "anna/lexi01.jpg">>
<<say "anna">>Were you there this entire time?!<</say>>
<<say "mc">>Oh, didn't see you there, $anna.refer. Entire time? I've been in the lounge maybe 15 minutes?<</say>>
<<say "anna">>Behind the sofa?!<</say>>
<<say "mc">>No, no, of course not. That's just now when I dropped my phone.<</say>>
<<say "lexi">>Well, I'm glad you're here, $lexi.calls. I wanted to talk to you.<</say>>
<</block>>
<<say "mc">>Oh?<</say>>
<<say "lexi">>You need to be nicer to your $anna.them. I know you've always had your differences but in this world you need to make an effort.<</say>>
<<block "anna/lexi02.jpg">>
<<say "mc">>Of course, $lexi.refer. Only the other day I gave her a guided tour of the place.<</say>>
<<say "lexi">>And were you courteous throughout? I heard you were quite rude to her. I know you're dealing with a Herculean task at the moment, but that doesn't give you the right to be a jerk!<</say>>
<<narrate>>$anna.name just smirks at you.<</narrate>>
<<think "mc">>She really does have $lexi.refer around her little finger, huh?<</think>>
<<say "lexi">>We're here together after all this time. We should appreciate the time we have together and you should treat her with the same respect you do everyone else.<</say>>
<<think "mc">>Wait... that's the perfect setup!<</think>>
<</block>>
<<say "mc">>Sorry, $lexi.refer. You're right. I'm sorry $anna.name. I'll start treating you like the others. Tell you what, you come down to the office and I'll even get you a job, just like everyone else.<</say>>
<<narrate>>You see her face drop. That's not what she wanted and she's clearly unsure how to get out of this without looking bad in front of $lexi.name.<</narrate>>
<<say "lexi">>That's more like it. She'll be thrilled to pitch in, won't you honey?<</say>>
<<if $girlshere.length > 1>>
<<narrate>>You notice $tempvar2 with her hand on her mouth trying to hide a laugh.<</narrate>>
<</if>>
<<say "anna">>Uh, yeah, of course... but what if he just gives me all the shi— bad jobs he doesn't want to do?<</say>>
<<say "lexi">>Then he'll have me to answer to! Don't you worry, I'll make sure he treats you appropriately.<</say>>
<<narrate>>$anna.name laughs nervously.<</narrate>>
<<say "anna">>Yeah... yeah, thanks Aunty. Anyway, I need to go. Talk to you later.<</say>>
<<say "lexi">>Aww, she's such a sweet girl, and you're such a lovely young man. It always pains me to see you two fight. Hopefully staying in this world together will bring you closer.<</say>>
<<narrate>>You chuckle.<</narrate>>
<<say "mc">>Hopefully.<</say>>
<<event "anna" "llonge">>
<<set $tempvar2 = "">>
<<set $anna.events.observe++>>
<<cont "housestuff" "" 1>>
<<case "vannamaturegym">>
<<narrate>>$anna.name is just staring at $vanna.name, seemingly annoyed.<</narrate>>
<<say vanna>>Everything okay, $anna.name?<</say>>
<<say anna>>Uh yeah... I was gonna see if you wanted to work out, but now you're old, I guess it doesn't matter.<</say>>
<<narrate>>She turns away and walks to the other side of the room, while $vanna.name just looks on in disbelief.<</narrate>>
<<think mc>>Wow...<</think>>
<<cont $return "">>
<<case "vannaworkout">>
<<narrate>>You peer around the corner, wondering if $anna.name is capable of playing nice.<</narrate>>
<<vid "anna/vgym01.mp4">>
<<narrate>>To your surprise they're actually working out together.<</narrate>>
<<think "mc">>The fuck? Has $vanna.name somehow tamed her? Or does $anna.refer just want something from her?<</think>>
<<narrate>>Your surprise is quickly replaced by perversion when you notice how tight their panties are.<</narrate>>
<<think "mc">>Holy shit, no way that's proper gym gear... and just look how sweaty they are getting.<</think>>
<<cont "annaanswers" "vannaworkout02">>
<<case "vannaworkout02">>
<<vid "anna/vgym02.mp4">>
<<think "mc">>Wow. White was not a wise choice... actually no, it was the best choice.<</think>>
<<narrate>>You grin to yourself.<</narrate>>
<<think "mc">>Still, perversion aside, just how did $vanna.name manage to keep her quiet for so long?<</think>>
<<narrate>>A few minutes later the two finish up. You walk into the room, as if you'd only just arrived.<</narrate>>
<<say "mc">>Working hard I see.<</say>>
<<block "anna/vgym01.jpg">>
<<say "vanna">>Bodies like ours take a lot of work. I know you appreciate the results though.<</say>>
<<say "anna">>Oh, for fuck's sake. I was just starting to like this place and you fucking turn up.<</say>>
<<say "vanna">>Now, now, $anna.name. Let's not jump to conclusions. We're hot, he's male, he's probably just come to check us out. No need to let it ruin your day.<</say>>
<<narrate>>$anna.name smiles sweetly at $vanna.name.<</narrate>>
<<say "anna">>Oh my god, you are so right. We're too hot to be worrying about what he wants!<</say>>
<</block>>
<<think "mc">>What is going on?<</think>>
<<say "vanna">>Well, not quite. He's one of the reasons I want to look hot, after all.<</say>>
<<narrate>>She gives you a wink.<</narrate>>
<<say "anna">>What? But you're so fucking hot. Why would you want <i>him</i> to notice you?<</say>>
<<say "vanna">>Same reason I suspect you do.<</say>>
<<narrate>>She looks over at you then scowls.<</narrate>>
<<say "anna">>Whatever. Move outta the way fuckface, I need to go shower.<</say>>
<<narrate>>She storms past you, purposefully knocking against your shoulder. You simply roll your eyes and $vanna.name stifles a giggle.<</narrate>>
<<say "mc">>$vanna.name, just how—<</say>>
<<narrate>>You're interrupted by $anna.name calling back from the doorway to the changing rooms.<</narrate>>
<<say "anna">>$vanna.name, let's do this again, I had a lot of fun.<</say>>
<<say "vanna">>I'd love to!<</say>>
<<narrate>>$anna.name smiles and hops away into the changing room.<</narrate>>
<<say "mc">>Anyway, just how did you do that? How did you make her so... friendly toward you?<</say>>
<<say "vanna">>She's me twenty odd years ago. Super hot and used to getting her own way. It took me a long time to grow out of that because men - and a good number of women too to be honest - just gave me what I wanted all the time. Having $lacy.name helped change my outlook on life. Maybe you can help her evolve a little quicker than I did.<</say>>
<<say "mc">>So how does that explain her personality shift when she's with you?<</say>>
<<say "vanna">>She's used to being the most popular girl in any given situation and when she's not, she'll find who she thinks is and try to befriend them, likely with the intention of backstabbing them later if she can become the queen bee, as it were.<</say>>
<<say "mc">>And she chose you?<</say>>
<<say "vanna">>Not exactly, I suspect she's gonna try it with several of us until she's got it worked out for herself. But, doesn't mean we can't have fun in the meantime.<</say>>
<<narrate>>She draws you in closer, her sweaty body sticking to your cotton top.<</narrate>>
<<say "vanna" "" "(Whispering)" "whisper">>I hope you enjoyed the show, because I intend to make it so much hotter next time! The white panties were no mistake. Once I get her a little more lustful, I'll make sure we put on a fantastic show for you!<</say>>
<<narrate>>She gives you a kiss on the cheek then carries on with her workout.<</narrate>>
<<think "mc">>Well, fuck, this I want to see.<</think>>
<<event "anna" "vgym">>
<<set $anna.events.observe++>>
<<cont "housestuff" "" 1>>
<<case "townguide">>
<<block "anna/$location02.jpg">>
<<say "mc">>Come on, I'm taking you into town.<</say>>
<<say "anna">>Wait. Town? Like shopping and clubs and—<</say>>
<<say "mc">>Afraid not, it's mostly abandoned. There are just a few buildings I've renovated.<</say>>
<<say "anna">>You?<</say>>
<<say "mc">>Well, the staff under my guidance.<</say>>
<</block>>
<<say "anna">>Huh... okay.<</say>>
<<think "mc">>Surprisingly civil...<</think>>
<<say "anna">>Let's get this stupid fucking thing over with, then.<</say>>
<<think "mc">>There we go!<</think>>
<<narrate>>You take her out front and walk into the town.<</narrate>>
<<if $buildings.studio != undefined>>
<<say "mc">>So there we have the photo studio.<</say>>
<<say "anna">>What like professional modeling?<</say>>
<<say "mc">>Yeah.<</say>>
<<say "anna">>You think I'm hot enough for that?<</say>>
<<say "mc">>Sure, we can try it out if you ever want.<</say>>
<<say "anna">>Yeah... maybe.<</say>>
<<narrate>>You move on.<</narrate>>
<</if>>
<<if $buildings.docs != undefined>>
<<say "mc">>We don't suffer illness really, but there may still be the odd injury or whatever. So $kp.name visits twice a week and sets up surgery here.<</say>>
<<narrate>>She yawns.<</narrate>>
<<say "mc">>Just remember where this place is if you ever need medical help, okay?<</say>>
<<say "anna">>Yeah, yeah. Though a nail salon seems like something I'm more likely to need!<</say>>
<<narrate>>You roll your eyes.<</narrate>>
<</if>>
<<say "mc">>The homes are still usable, albeit they need some TLC.<</say>>
<<if $kylie.events.settledin != undefined>>
<<say "kylie">>Hey, $name! How's it going?<</say>>
<<say "mc">>I'm doing good, just showing my $anna.them around the place.<</say>>
<<set _kl = getCurrentLocation('kylie')>>
<<if _kl != "Home" && _kl != "Off World" && _kl != planets[characterinfo['kylie'].home].name>>
<<say "mc">>Aren't you meant to be working?<</say>>
<<say "kylie">>Forgot my phone!<</say>>
<<elseif _kl == "Off World" || _kl == planets[characterinfo['kylie'].home].name>>
<<say "mc">>I thought you were off world?<</say>>
<<say "kylie">>Forgot my phone!<</say>>
<</if>>
<<narrate>>$kylie.name looks her up and down appraisingly.<</narrate>>
<<say "anna">>What's she doing?<</say>>
<<say "kylie">>You're pretty damn hot, you know that right?<</say>>
<<say "anna">>I know, right! I am so fucking hot!<</say>>
<<say "kylie">>Can't disagree. If you want to hang later, you know where I live now.<</say>>
<<narrate>>$kylie.name says her goodbyes then leaves.<</narrate>>
<<say "anna">>I like her. She gets me.<</say>>
<<think "mc">>You exchanged two sentences... but $kylie.name definitely liked what she saw.<</think>>
<</if>>
<<say "anna">>So I could live here instead of the hotel with <i>you</i>?<</say>>
<<say "mc">>Of course, but then you'd have to take care of maintenance, cleaning, and well everything yourself. Including the initial renovation.<</say>>
<<say "anna">>Ugh. Hassle.<</say>>
<<say "mc">>Okay, last stop is Gateway A.<</say>>
<<narrate>>You guide her to the ruins.<</narrate>>
<<button "Continue" annaanswers>>
<<temp "gatewaya">>
<</button>>
<<case "gatewaya">>
<<say "mc">>And this is Gateway A.<</say>>
<<say "anna">>What, this pile of rubble is a Gateway?<</say>>
<<set _sl = getCurrentLocation('shalina')>>
<<if _sl == "Gateway A">>
<<block "shalina/gatewaya01.jpg">>
<<say "shalina">>I know my gateway is a little dilapidated, but it's still my home!<</say>>
<<say "anna">>What the fuck. Where the hell did she come from?<</say>>
<<say "mc">>$shalina.name, meet my $anna.them, $anna.name. $anna.name, $shalina.name is another patron.<</say>>
<<say "anna">>Two patrons? Wait, she's the real patron isn't she? You're just her tour guide.<</say>>
<<say "shalina">>No, we're both patrons. It's a... weird situation.<</say>>
<</block>>
<<say "anna">>But who is in charge?<</say>>
<<say "shalina">>Him. I have no interest in revisiting the full duties of a patron right now, and he is doing an excellent job here. I have... other things I need to deal with.<</say>>
<<say "anna">>Well, holy shit. You are important.<</say>>
<<if $shalina.events.returned == undefined>>
<<say "shalina">>Sorry, I must leave you now. I can only hold corporeal form for a short period of time.<</say>>
<<narrate>>She dissipates into smoke.<</narrate>>
<<say "anna">>Holy shit.<</say>>
<</if>>
<<elseif $shalina.events.bang != undefined && $shalina.events.returned == undefined>>
<<say "mc">>There's a patron here but... let's say dormant at the moment.<</say>>
<<say "anna">>Looks like they've been dormant for years. Jeez.<</say>>
<<say "mc">>Indeed. Let's move on.<</say>>
<<think "mc">>Not sure why I showed her this Gateway while $voice.name is dormant... maybe subconsciously hoped $voice.name would magically return and it'd be back to old times.<</think>>
<<else>>
<<set _s = voiceState()>>
<<set _img = "shalina/0"+_s+".jpg">>
<<set _blur = "blur"+_s>>
<<block _img "" "" _blur>>
<<say "voice">>I know my gateway is a little dilapidated, but it's still my home!<</say>>
<<say "anna">>Why is that cloud of smoke talking?<</say>>
<<say "voice">>You can perceive me? Interesting. Who are you?<</say>>
<<say "anna">>The fuck is going on here?<</say>>
<<say "mc">>$voice.name, meet my $anna.them, $anna.name. $anna.name, $voice.name is another patron.<</say>>
<</block>>
<<say "anna">>Two patrons? Wait, she's the real patron isn't she? You're just her tour guide.<</say>>
<<say "voice">>No, we're both patrons. It's a... weird situation.<</say>>
<<say "anna">>But who is in charge?<</say>>
<<say "voice">>Him. I have no interest in revisiting the full duties of a patron right now, and he is doing an excellent job here. I have... other things I need to deal with.<</say>>
<<say "anna">>Well, holy shit. You are important.<</say>>
<</if>>
<<say "mc">>Right, so that's basically the town.<</say>>
<<say "anna">>Shit, I might really have to suck your dick after all.<</say>>
<<narrate>>She laughs.<</narrate>>
<<say "anna">>Sorry, bad joke? Listen, I know we got off on the wrong foot. I'm just trying to lighten the moment. But I'm sure we can work this out, yeah?<</say>>
<<say "mc">>Of course.<</say>>
<<think "mc">>I see she's slowly starting to realize. Just need to watch out for her attempts to manipulate me.<</think>>
<<say "anna">>I mean, I'm way too hot to work, right?<</say>>
<<say "mc">>Let's visit my Gateway and the surrounding facilities, then we talk about that.<</say>>
<<think "mc">>Do I want to do that now, or should I meet up with her later?<</think>>
<<choices>>
<<link "Gateway B" annaanswers>>
<<like "anna" 10>>
<<lust "anna" 3>>
<<corrupt "anna" 3>>
<<temp "gatewayguide">>
<<event "anna" "townguide">>
<<set $tempvar2 = "notime">>
<</link>><br>
<<link "Another Time" townhub>>
<<like "anna" 10>>
<<lust "anna" 3>>
<<corrupt "anna" 3>>
<<event "anna" "townguide">>
<<time 2>>
<</link>>
<</choices>>
<<case "gatewayguide">>
<<narrate>>You take her to the garage, get in a car and head down to Gateway B.<</narrate>>
<<say "anna">>Wow, this is a nice car!<</say>>
<<narrate>>You arrive a few minutes later.<</narrate>>
<<say "mc">>Okay, so there's really too much to go into here. But you can explore later. Let me just show you the basics.<</say>>
<<if $buildings.bar != undefined>>
<<say "anna">>Uh-huh.<</say>>
<<say "mc">>$anna.name?<</say>>
<<say "anna">>Sorry, what's that over there?<</say>>
<<narrate>>You look at where she's pointing.<</narrate>>
<<say "mc">>Oh, that's the bar.<</say>>
<<say "anna">>Oh, fuck yes!<</say>>
<<say "mc">>Glad we've found something to interest you.<</say>>
<<say "anna">>Finally. I need some fucking entertainment, oh my god.<</say>>
<</if>>
<<say "mc">>Right, the Gateway itself. You came through here when stuck in the buffer. Just nearby we have the monitoring station, where the clever people...<</say>>
<<narrate>>You can tell she's no longer paying attention.<</narrate>>
<<say "mc">>$anna.name? What are you paying attention to?<</say>>
<<say "anna">>I'm... just in shock.<</say>>
<<say "mc">>Of what?<</say>>
<<say "anna">>All these people. And all the staff greeting you, thanking you, being <i>genuinely</i> nice to you.<</say>>
<<think "mc">>Finally, it looks like the penny has dropped.<</think>>
<<say "anna">>Like, you are <i>really</i> important. Shit. This complicates things.<</say>>
<<say "mc">>It does, how?<</say>>
<<say "anna">>Uh, nothing. Let me mull it over. Shall we head back? I think I understand enough now.<</say>>
<<think "anna">>It's just a means to an end. Yeah... I think I can do it.<</think>>
<<say "mc">>Sure.<</say>>
<<say "anna">>Great, come find me in my room later, okay?<</say>>
<<think "mc">>I'll leave her to her thoughts for now and catch up with her later.<</think>>
<<button "Continue" housestuff>>
<<if $anna.corruptmax < 40>>
<<set $anna.corruptmax = 40>>
<</if>>
<<like "anna" 10>>
<<lust "anna" 3>>
<<corrupt "anna" 3>>
<<event "anna" "gatewayguide">>
<<if $tempvar2 == "notime">>
<<time 3>>
<<else>>
<<time 2>>
<</if>>
<</button>>
<<case "hub">>
<<block _img>>
<<say "mc">>So, ready to talk?<</say>>
<<say "anna">>Yes, fine. Let's get it over with.<</say>>
<<say "mc">>Promise you'll pay attention this time?<</say>>
<<say "anna">>Fuck, just tell me before I change my mind.<</say>>
<<narrate>>You briefly explain what's happening here and what you're trying to achieve as a patron.<</narrate>>
<<say "anna">>Fucking hell. This whole thing is real? You, my damn $anna.you, are the fucking ruler of this world?<</say>>
<</block>>
<<say "mc">>I mean when you put—<</say>>
<<say "anna">>Wait, no. Actually this is great! It means I don't have to do anything. You're not gonna make your hot $anna.them slave away are you?<</say>>
<<say "mc">>Hot?<</say>>
<<say "anna">>Naturally. Well. I'm glad that's settled. I was thinking about checking out the pool. Ciao!<</say>>
<<say "mc">>Wait. No. That's not it.<</say>>
<<narrate>>Her shoulders drop.<</narrate>>
<<say "anna">>What do you want? Please just let me relax and enjoy this place! Who knows if we'll ever get home. Who knows if my friends are even still alive? I'm too emotional to handle this right now!<</say>>
<<think "mc">>Wow, that's a scary thought I hadn't considered. But I know her, and she doesn't give a fuck. She's using it to try and manipulate me. Not today!<</think>>
<<say "mc">>You can't avoid it forever. How about this? I promise not to put you to work for the next week, if you let me take you around a few places and tell you how things work.<</say>>
<<say "anna">>So, like a guided tour?<</say>>
<<say "mc">>Yes, and it'd be helpful for you to know where stuff is too.<</say>>
<<think "mc">>Truth be told, I'd never have forced her to work unless she agreed to it anyway. I just wanted to prove a point... but now I feel like she needs to learn the value of hard work.<</think>>
<<say "anna">>Fine. Now?<</say>>
<<say "mc">>No. I'll come find you when I'm ready.<</say>>
<<narrate>>She gives you two thumbs up and a sarcastic smile.<</narrate>>
<<say "anna">>Super looking forward to it, $anna.calls.<</say>>
<<narrate>>She rolls her eyes then walks off.<</narrate>>
<<button "Continue" housestuff>>
<<like "anna" 4>>
<<event "anna" "hub">>
<<time 1>>
<</button>>
<<case "settled">>
<<block _img>>
<<say "mc">>So how are you settling in?<</say>>
<<say "anna">>Oh my god. Gross. No way.<</say>>
<<say "mc">>Huh?<</say>>
<<say "anna">>Listen. I know I'm hot, but you're nobody important. It's not going to happen.<</say>>
<<say "mc">>I'm also your $anna.you.<</say>>
<</block>>
<<say "anna">>Yeah, whatever. Just leave me alone.<</say>>
<<say "mc">>All I wanted to know is if you were settling in for crying out loud.<</say>>
<<say "anna">>Ugh! You're so needy! I'm fine. Go talk to one of the ugly bitches, yeah?<</say>>
<<think "mc">>Fucking hell. Did she become <i>more</i> of a bitch somehow? She can fuck right off, I need to think of something...<</think>>
<<narrate>>You ponder while walking away.<</narrate>>
<<think "mc">>I'm the goddamn fucking patron of an entire hub world. Manage and lead a whole raft of people... a-hah! She's not just gonna listen to me and she's too self-centered to pay attention to those around her. But if I put her on the work schedule, she'll have something to say about it, I'm sure.<</think>>
<<button "Continue" housestuff>>
<<event "anna" "settle">>
<<time 0.5>>
<</button>>
<<case "worker">>
<<narrate>>A few minutes after the schedules have been sent out you hear an angry voice calling your name.<</narrate>>
<<think "mc">>Wow, that didn't take long at all.<</think>>
<<block "anna/what01.jpg">>
<<say "anna">>The fuck is this?!<</say>>
<<say "mc">>What the fuck is what?<</say>>
<<say "anna">>This fucking thing? Some dickhead assigning me to work here.<</say>>
<<say "mc">>You don't want to work?<</say>>
<<say "anna">>Ugh. Why am I even talking to you? Just tell me where the hub manager or whatever is.<</say>>
<</block>>
<<say "mc">>Why, what are you going to do?<</say>>
<<say "anna">>I'm gonna make him my bitch, that's what. Now stop wasting my time.<</say>>
<<say "mc">>You've found him.<</say>>
<<say "anna">>What? Where?<</say>>
<<say "mc">>It's me.<</say>>
<<narrate>>She cackles.<</narrate>>
<<say "anna">>Ha! Yeah, right. Now you're trying to be someone half-important? My god that's sad, $anna.calls.<</say>>
<<say "mc">>Listen, I don't give a shit what you do or do not think. But if you want to stay here, you need to contribute somehow.<</say>>
<<say "anna">>God. Whatever, just tell me who the hub manager is. I'll sort it out.<</say>>
<<say "mc">>I told you. It's me.<</say>>
<<say "anna">>Oh fuck off. I'll ask one of those skanky ass ugly bitches instead.<</say>>
<<narrate>>She storms off.<</narrate>>
<<think "mc">>She's not gonna last long as she is now. It's a wonder one of the others hasn't thumped her already.<</think>>
<<button "Continue" homehub>>
<<event "anna" "important">>
<<event "anna" "eavesdrop" 0>>
<</button>>
<<case "sophia">>
<<block "anna/$location02.jpg">>
<<say "anna">>Can you believe this shit?<</say>>
<<say "sophia">>What is it, kid?<</say>>
<<say "anna">>Ugh, I hate it when you call me that. Anyway, can you tell me who the hub manager is?<</say>>
<<say "sophia">>I don't think there really is anyone under that title. Best to ask your $anna.you, really.<</say>>
<<say "anna">>Yuck. No. He's no help.<</say>>
<</block>>
<<say "sophia">>If there's a hub manager, he'll know.<</say>>
<<say "anna">>Well, he won't tell me.<</say>>
<<say "sophia">>Probably isn't one. I had assumed he handles it himself.<</say>>
<<say "anna">>Eh?<</say>>
<<say "sophia">>Did he not tell you when you came through?<</say>>
<<say "anna">>He was chatting some shit, I didn't really pay attention.<</say>>
<<think "mc">>I didn't think she was. Not that she'd have believed me even if she had.<</think>>
<<say "sophia">>You should probably ask him about it.<</say>>
<<say "anna">>Whatever.<</say>>
<<button "Continue" housestuff>>
<<event "anna" "sophiachat">>
<<set $anna.events.eavesdrop++>>
<<time 1>>
<</button>>
<<case "armani">>
<<block "anna/$location02.jpg">>
<<say "anna">>You seem important. Are you the hub manager?<</say>>
<<say "armani">>Do you mean the patron? No, I handle logistics.<</say>>
<<say "anna">>Oh, the patron handles hub management themselves? Can you tell me where to find them?<</say>>
<<say "armani">>Haven't you already spoken to your $anna.you?<</say>>
<<say "anna">>Yeah, but he was no help.<</say>>
<</block>>
<<say "armani">>You do realize who he is, right?<</say>>
<<say "anna">>A pest.<</say>>
<<say "armani">>Uhh, no. Well, sometimes. But, I really think you should speak to him.<</say>>
<<button "Continue" housestuff>>
<<event "anna" "armanichat">>
<<set $anna.events.eavesdrop++>>
<<time 1>>
<</button>>
<<case "aubree">>
<<block "anna/$location02.jpg">>
<<say "anna">>Cuz! Hey girl!<</say>>
<<say "aubree">>What do you want?<</say>>
<<say "anna">>Why so cold?<</say>>
<<say "aubree">>Because you only greet me warmly when you're after something.<</say>>
<<say "anna">>Fine. I need to know who the hub manager or whatever is.<</say>>
<</block>>
<<say "aubree">>The hub manager? I don't think there's anyone with that job. He just does it himself.<</say>>
<<say "anna">>He? You mean the patron?<</say>>
<<say "aubree">>Uhh, yeah?<</say>>
<<say "anna">>Great, where can I speak to him?<</say>>
<<narrate>>She gives $anna.name a quizzical look.<</narrate>>
<<say "aubree">>I don't know what game you're trying to pull here, but I'm not interested in playing.<</say>>
<<say "anna">>No games. I just need to figure this shit out before I have to work!<</say>>
<<say "aubree">>Ah, there's the self-centered bitch I remember. Let me guess. You weren't paying attention when $name welcomed you here? Well then, you'd best go crawling back to him begging for a redo.<</say>>
<<say "anna">>Ugh, the fuck? $aubree.name. God. Bitch!<</say>>
<<narrate>>$aubree.name rolls her eyes and moves on.<</narrate>>
<<button "Continue" housestuff>>
<<event "anna" "aubreechat">>
<<set $anna.events.eavesdrop++>>
<<time 1>>
<</button>>
<<case "britt">>
<<block "anna/$location02.jpg">>
<<say "anna">>OMG gurrrrl, you're looking fine!<</say>>
<<say "britt">>Eh? You comin' on to me?<</say>>
<<say "anna">>Uh, no. Just talent appreciating talent, amirite?<</say>>
<<narrate>>$britt.name just looks back at her confused.<</narrate>>
<<say "anna">>So from one hot bitch to another, can you tell me where I can find the hub manager?<</say>>
<<say "britt">>Ain't one, at least not by that title. Ya wanna chat t' $name.<</say>>
<</block>>
<<say "anna">>Really? Okay, maybe it's the wrong title. Who does schedules?<</say>>
<<say "britt">>Yeah, you definitely need to speak to $name.<</say>>
<<say "anna">>I get it. I get it, I'm no threat, I swear. I won't take away whatever arrangement you have.<</say>>
<<say "britt">>What? Actually, sorry I gotta go deal with uhhh, something.<</say>>
<<narrate>>She escapes before $anna.name is able to continue on.<</narrate>>
<<button "Continue" housestuff>>
<<event "anna" "brittchat">>
<<set $anna.events.eavesdrop++>>
<<time 1>>
<</button>>
<<case "vanna">>
<<block "anna/$location02.jpg">>
<<say "anna">>Wow! You're super fit.<</say>>
<<say "vanna">>Thank you. It's a lot of work. How are you settling in?<</say>>
<<say "anna">>I am doing so well. Like nobody asks, though!<</say>>
<<say "vanna">>Strange. Doesn't sound like them. I'd have expected $name especially to check on you.<</say>>
<<say "anna">>Nope. Nothing. But actually, there is one thing maybe you can help with?<</say>>
<</block>>
<<think "mc">>Lying bitch.<</think>>
<<say "vanna">>I can try.<</say>>
<<say "anna">>Who is the hub manager?<</say>>
<<say "vanna">>You'll want to talk to $name.<</say>>
<<say "anna">>Right, right. But can't you just tell me who it is.<</say>>
<<say "vanna">>$name.<</say>>
<<say "anna">>Ugh. Whatever, I'll find him myself.<</say>>
<<narrate>>$vanna.name calls her as she storms off.<</narrate>>
<<say "vanna">>$anna.name?<</say>>
<<say "anna">>Yes?<</say>>
<<say "vanna">>Let me know if you ever want to work out together, it might be fun.<</say>>
<<narrate>>$anna.name holds her hands up to the air and walks off.<</narrate>>
<<button "Continue" housestuff>>
<<event "anna" "vannachat">>
<<set $anna.events.eavesdrop++>>
<<time 1>>
<</button>>
<</switch>><<set $scene = 0>>
<<set _active = "anna">>
<<meet _active>>
<<set $return = returnLocation()>>
<<smallflirt _active>>
<<set _passage = _active+"answers">>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $anna.events.planets == undefined>>
<<link "Planets" annaanswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if $anna.events.settle == undefined>>
<<link "Getting Settled?" annaanswers>>
<<temp "settled">>
<</link>><br>
<</if>>
<<if $anna.events.important >= 4 && $anna.mnow == undefined && $anna.mature == true>>
<<link "My Room" annasex>>
<<temp "room">>
<</link>><br>
<</if>>
<<if $anna.events.maid == 2 && $anna.events.model == 3 && $kylie.mature == true && $girlsavailable.includes('kylie')>>
<<link "Maid Work" annaanswers>>
<<temp "maid">>
<</link>><br>
<</if>>
<<if $anna.events.hub == undefined && $anna.events.manager != undefined>>
<<link "Hub" annaanswers>>
<<temp "hub">>
<</link>><br>
<</if>>
<<if $anna.events.townguide == undefined && $anna.events.hub != undefined>>
<<link "Town Guide" annaanswers>>
<<temp "townguide">>
<</link>><br>
<</if>>
<<if $anna.events.gatewayguide == undefined && $anna.events.townguide != undefined>>
<<link "Gateway Guide" annaanswers>>
<<temp "gatewayguide">>
<</link>><br>
<</if>>
<<link "Never mind" $return>><</link>><<scene>>
<<set _img = getImg('anna')>>
<<switch $tempvar>>
<<case "festloo01">>
<<narrate>>Your lust and annoyance ready to burst, as soon as you're in the door you push her against the wall, throw off her jacket and hold her there.<</narrate>>
<<say mc>>I'm gonna fuck you so damn hard.<</say>>
<<vid "anna/f01.mp4">>
<<narrate>>You viciously pull down her dress.<</narrate>>
<<say anna>>Oh my god. Fuck, I need it.<</say>>
<<narrate>>You lift her up, slapping her ass as you do.<</narrate>>
<<say anna>>Yes! Spank me. Yes, spank me good!<</say>>
<<cont "annasex" "festloo02">>
<<case "festloo02">>
<<narrate>>You let her loose and bend before, pull her panties violently away and teasing her clit with your fingers.<</narrate>>
<<vid "anna/f02.mp4">>
<<say anna>>Ohhh~ fucking shit, that's sooo good.<</say>>
<<narrate>>She writhes and moans under your touch, and as your tongue meets her labia, she visibly quivers with anticipation.<</narrate>>
<<say anna>>Oh my god, that's so fucking good. Yeah, just like that.<</say>>
<<cont "annasex" "festloo03">>
<<case "festloo03">>
<<narrate>>You step back to disrobe, but as soon as your cock is free, she's on her knees.<</narrate>>
<<vid "anna/f03.mp4">>
<<say mc>>Fucking yes, bitch, that's it!<</say>>
<<narrate>>You hold her head still as your cock rubs against the back of her throat.<</narrate>>
<<say anna>>Yes, use me like a good little fucking whore tonight.<</say>>
<<narrate>>You put your fingers under her chin and pull her up to her full height.<</narrate>>
<<say mc>>Yeah, fucking slut. That's exactly what I'm gonna fucking do.<</say>>
<<narrate>>You twist her round and push her back toward the wall.<</narrate>>
<<cont "annasex" "festloo04">>
<<case "festloo04">>
<<narrate>>You enter her with a determined and almost angry thrust.<</narrate>>
<<vid "anna/f04.mp4">>
<<say anna>>Yes, yes, yes!<</say>>
<<narrate>>He moans and grunts are carnal and raw, every movement wild and animalistic.<</narrate>>
<<say anna>>Oh my god, fuck, that's good!<</say>>
<<cont "annasex" "festloo05">>
<<case "festloo05">>
<<vid "anna/f07.mp4">>
<<narrate>>She lets out a deep, visceral groan as you continue to piston furiously into her.<</narrate>>
<<say anna>>Oh, my god, that's so fucking good!<</say>>
<<say mc>>Yeah, you like that, $anna.refer, you fucking like that?!<</say>>
<<cont "annasex" "festloo06">>
<<case "festloo06">>
<<narrate>>Almost as an act of rebellion, she pushes you back on to the toilet and lowers herself on to your dick.<</narrate>>
<<vid "anna/f05.mp4">>
<<say mc>>Yeah, ride that cock, dirty fucking whore-bitch!<</say>>
<<narrate>>Manically, she bounces up and down, every bit as wild as you were to her.<</narrate>>
<<say anna>>Ohh fuck.<</say>>
<<narrate>>Eager to regain control, you push upwards and grab her, almost throwing her over onto the sink.<</narrate>>
<<cont "annasex" "festloo07">>
<<case "festloo07">>
<<vid "anna/f06.mp4">>
<<say anna>>Oh, my god!<</say>>
<<narrate>>You feel a wave of anger as you gaze into her eyes, and you reach out your hand to pin her down by her neck. This only seems to fuel her lust.<</narrate>>
<<say anna>>You're gonna make me cum. I'm gonna cum all over that fucking dick. I'm gonna cum all over...!<</say>>
<<narrate>>You feel yourself growing ever closer to the end, her lustful, dirty eyes and her grateful moans only hastening your end.<</narrate>>
<<say anna "" "(Whispering)" "whisper">>Yes, right there... right there...<</say>>
<<narrate>>Her pussy tightens around you, and she lets out an almost blood-curling howl as she succumbs to her orgasm.<</narrate>>
<<say mc>>On your fucking knees, $anna.refer!<</say>>
<<narrate>>You've past your limit too.<</narrate>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "anna/f08.mp4">>
<<narrate>>You jerk your final moments, taking great pleasure in covering her face with your spunk.<</narrate>>
<<say mc>>Yeah, you like your $anna.you's warm goo all over your face? Fucking dirty perverted bitch!<</say>>
<<say anna>>I fucking love it. Give it to me, give it to me!<</say>>
<<narrate>>With her regular bitchy expression, she scoops the cum off her her face and into her mouth.<</narrate>>
<<say anna>>>Fuuuck, just imagine doing that on stage, in front of tens of thousands of people... ohhhh...<</say>>
<<narrate>>She starts flicking her bean, deciding you lack the stamina for another aggressive session like that, you get dressed and leave her to it.<</narrate>>
<<set $horny = 0>>
<<set $festival.anna = 2>>
<<unlock "anna" "loo">>
<<cont "festival" $festival.next 3>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "atask">>
<<say mc>><<uf $anna.refer>> is a bit of an exhibitionist, so I suspect she'll be down for this more than I am.<</say>>
<<say azul>>I like the sound of her already.<</say>>
<<say mc>>She's also a grade A bitch.<</say>>
<<narrate>>She shrugs.<</narrate>>
<<say mc>>Meet me in my room in ten minutes?<</say>>
<<say azul>>Sure.<</say>>
<<narrate>>You head out to grab $anna.name.<</narrate>>
<<say mc>>My room. Right now. We've got to a show to put on.<</say>>
<<say anna>>The fuck? Who do you think you're talking to?<</say>>
<<say mc>>I thought we were past that by now. Let me clear. I wanna fuck, and $azul.name wants to watch us fuck.<</say>>
<<narrate>>A wicked grin creeps across her face.<</narrate>>
<<say anna>>Why didn't you start with that? Knob!<</say>>
<<narrate>>You roll your eyes and gesture her to go first.<</narrate>>
<<cont "annasex" "atask01">>
<<case "atask01">>
<<narrate>>She busts your bedroom door open, bounds onto the bed and starts stripping.<</narrate>>
<<vid "anna/atask01.mp4">>
<<say anna>>You're gonna be sat in a puddle when he's done fucking me!<</say>>
<<say azul>>Oh, I like you.<</say>>
<<narrate>>$anna.name scrunches her nose up and bites her bottom lip while nodding at $azul.name.<</narrate>>
<<think mc>>She's fucking awful, but fuck she's hot and damn is she a good lay. But maybe I'll tease her a bit... just for my revenge.<</think>>
<<cont "annasex" "atask02">>
<<case "atask02">>
<<vid "anna/atask02.mp4">>
<<say "anna">>So... what do you wanna do to me now?<</say>>
<<narrate>>You lick your fingers and she instinctively spreads her legs. Gently you rub around her clit, aiming to delay the fuck until she's begging for it.<</narrate>>
<<say "anna">>It's always better when somebody else does it.<</say>>
<<cont "annasex" "atask03">>
<<case "atask03">>
<<vid "anna/atask03.mp4">>
<<say "anna">>Fuck. Fuck, fuck, fuck, that's so good. Yes, yes, yes, just like that.<</say>>
<<say "anna">>Just fucking like that. Spread that pussy wide open for me.<</say>>
<<say "anna">>Oh, my god, yes.<</say>>
<<narrate>>Your rock hard cock screaming for release from your pants, you realize the only person you're fully teasing is yourself. <</narrate>>
<<cont "annasex" "atask04">>
<<case "atask04">>
<<narrate>>You pull your cock and she quickly reaches out for it.<</narrate>>
<<vid "anna/atask04.mp4">>
<<narrate>>But, she doesn't suck it... she starts stroking while looking up at you with a wicked grin.<</narrate>>
<<think mc>>Fuck, she's reversed it on me, now she's teasing me...<</think>>
<<say anna>>It feels so fucking good. So nice and hard.<</say>>
<<narrate>>She slaps it against her face as you grow increasingly impatient.<</narrate>>
<<cont "annasex" "atask05">>
<<case "atask05">>
<<narrate>>A little more merciful than you, it's not long before your cock is hitting the back of her throat.<</narrate>>
<<vid "anna/atask05.mp4">>
<<say mc>>Fuck me that tongue of yours is dangerous.<</say>>
<<narrate>>A chuckle briefly interrupts her gagging.<</narrate>>
<<say anna>>It's so good.<</say>>
<<cont "annasex" "atask06">>
<<case "atask06">>
<<narrate>>Neither one of you is able to hold back any longer, and you both say nothing as your eyes lock and she buries your sword.<</narrate>>
<<vid "anna/atask06.mp4">>
<<say anna>>Oh, my god, that's so fucking good. Yeah, the way you just slide in n outta me.<</say>>
<<say mc>>Yes, ride me, $anna.refer, fucking ride me!<</say>>
<<say anna>>Fuck, yes, yes, yeah... oh, my god, that's so fucking good.<</say>>
<<cont "annasex" "atask07">>
<<case "atask07">>
<<vid "anna/atask07.mp4">>
<<say anna>>My god...<</say>>
<<say azul>>You two certainly fit well together... I'm drowning here.<</say>>
<<say anna>>Ohh~ yes, yes, yes, yes.<</say>>
<<cont "annasex" "atask08">>
<<case "atask08">>
<<vid "anna/atask08.mp4">>
<<say anna>>Fuck yes. Spread that pussy a little for you. Slide that cock right in.<</say>>
<<say anna>>Yes, yes, yes, just like that!<</say>>
<<narrate>>You race for your end while holding her waist and pounding away.<</narrate>>
<<say azul>>Yes, that's it. Fucking do it!<</say>>
<<narrate>>Spurred on by your audience, you go into overdrive, your movements ferocious and primal. It takes only a few more moments until you feel the orgasm building inside you.<</narrate>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<say anna>>Cum inside me. Fucking let it all out!<</say>>
<<vid "anna/atask09.mp4">>
<<narrate>>You let out a deep, bellowing growl as you fill up her pussy with your seed.<</narrate>>
<<say mc>>Yes, fuck, yes! Fucking bitch, take it!<</say>>
<<say anna>>Fill me up, you fucking twat!<</say>>
<<if checkUnlocks('movie', 'atask', 'anna') == true>>
<<say azul>>I do enjoy watching you two hatefuck, let's do this again soon.<</say>>
<<else>>
<<say azul>>Wow....<</say>>
<<unlock "anna" "atask">>
<<cont "annasex" "atask09">>
<</if>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "atask09">>
<<say azul>>Well, you two certainly have a love-hate relationship. I could sense the animosity between you, especially at the end there.<</say>>
<<say anna>>He's a good fuck, but he's a miserably human being.<</say>>
<<say mc>>I have little tolerance for her bitchy attitude... but when my cock is inside her, I just get a deep satisfaction I struggle to describe.<</say>>
<<narrate>>$azul.name bursts out laughing.<</narrate>>
<<say azul>>Nothing wrong with a good hatefuck, but wow, you two have got down pat. Lust doesn't understand love and hate, after all.<</say>>
<<say anna>>As long as I keep getting that cock, and he doesn't get too fucking big for his boots, I can tolerate him.<</say>>
<<say mc>>Ha! Big for my boots... look who's talking. Fucking hell...<</say>>
<<say azul>>Okay, okay, before you start fucking your hate away again, I really do need to go. But really loved the show!<</say>>
<<narrate>>You and $anna.name give each other a dirty look then leave.<</narrate>>
<<button "Continue" housestuff>>
<<set $location = "bedrooms">>
<<lust "anna" 7>>
<<time 2>>
<</button>>
<<case "room">>
<<left2 _img>>
<<say "mc">>My room. Fifteen minutes.<</say>>
<<narrate>>She looks you up and down.<</narrate>>
<<say "anna">>Who the fuck do you think you're talking to? What the—<</say>>
<<say "mc">>What's your favorite thing about me? It's on offer right now.<</say>>
<<say "anna">>...hell do you...<</say>>
<<narrate>>She trails off, almost looking embarrassed.<</narrate>>
<<say "anna">>Well? Why are you still standing around!<</say>>
<<think "mc">>Quickly changed her tune!<</think>>
<<if $anna.mature == true>>
<<cont "annasex" "milfroom01">>
<<else>>
<<cont "annasex" "regroom01">>
<</if>>
<<case "milfroom01">>
<<narrate>>As soon as she's in the door you grab the back of her head and pull her over to the bed, pushing her head down on to your engorged penis.<</narrate>>
<<vid "anna/mature/mnow01.mp4">>
<<say "mc">>Yeah, that's stuff. Choke on that dick, you fucking whore!<</say>>
<<cont "annasex" "milfroom02">>
<<case "milfroom02">>
<<narrate>>You quickly shed your clothes, then bend her over the edge of the bed, thrusting hard as soon as she's in position.<</narrate>>
<<vid "anna/mature/mnow02.mp4">>
<<say "anna">>Aaa~ yeah.<</say>>
<<narrate>>You pull her hair back and start thrusting hard, channeling all your anger and frustration caused by her over the years.<</narrate>>
<<cont "annasex" "milfroom03">>
<<case "milfroom03">>
<<vid "anna/mature/mnow03.mp4">>
<<narrate>>Loving the feeling of being in control you keep thumping hard into her, eager to satisfy your angry lust.<</narrate>>
<<say "mc">>You like that? You like it when your $anna.you fucks your tight little pussy?<</say>>
<<narrate>>Her passionate screams answer for her.<</narrate>>
<<cont "annasex" "milfroom04">>
<<case "milfroom04">>
<<narrate>>You push her further on to the bed and grab her neck as you pound away mercilessly.<</narrate>>
<<vid "anna/mature/mnow04.mp4">>
<<say "mc">>You like it when I choke you, bitch?<</say>>
<<cont "annasex" "milfroom05">>
<<case "milfroom05">>
<<vid "anna/mature/mnow05.mp4">>
<<say "mc">>Call my name. Call my name, bitch!<</say>>
<<set _uc = $name.toUpperCase()>>
<<say "anna">>Yes, $name... yes, _uc! Fuck your $anna.them's dirty fucking pussy! Fill me up!<</say>>
<<say "mc">>Oh~ fuck yes, $anna.refer, fucking bitch yeees!<</say>>
<<narrate>>You unload inside her, and fall back on to the bed, spent.<</narrate>>
<<say "anna">>That was intense... I fucking loved it. My god... your cock...<</say>>
<<button "Continue" yourroom>>
<<unlock "anna" "mnow">>
<<event "anna" "maturefuck">>
<<lust "anna" 6>>
<<corrupt "anna" 4>>
<<set $anna.mnow = 1>>
<<time 2>>
<</button>>
<<case "firstt">>
<<narrate>>$anna.name is checking herself out in your mirror.<</narrate>>
<<left2 "anna/yourroom03.jpg">>
<<say "mc">>Fuck me...<</say>>
<<say "anna">>I know, I look fucking incredible, don't I?<</say>>
<<say "mc">>And you're modest too.<</say>>
<<say "anna">>That shift... it was fucking amazing. All those dirty lecherous commoners looking at me.<</say>>
<<narrate>>She shudders with excitement.<</narrate>>
<<say "anna">>All of them wanting to be me... or inside me, and not one those fucking ugly cunts having a chance in hell.<</say>>
<<think "mc">>Well, I guess at least the bitchiness isn't directed at me for once.<</think>>
<<say "anna">>It makes me so fucking horny.<</say>>
<<think "mc">>Now we're talking!<</think>>
<<say "mc">>I think I can—<</say>>
<<say "anna">>Shut your ugly face and get that beautiful dick in mine!<</say>>
<<think "mc">>You know what, given the situation, I think I'll let that one slide.<</think>>
<<cont "annasex" "firstt01">>
<<case "firstt01">>
<<narrate>>Almost ravenous, as you undress she pushes you down on to the bed, quick to wrap her lips around your cock.<</narrate>>
<<vid "anna/firstt01.mp4">>
<<say "anna">>You taste so fucking good.<</say>>
<<narrate>>She pauses for a moment and looks you dead in the eye.<</narrate>>
<<say "anna">>This beautiful fucking cock. I need it inside me. Be grateful, I'm gonna let you fuck your hot $anna.them despite that face!<</say>>
<<think "mc">>Yeah... we both know you'll be just grateful.<</think>>
<<cont "annasex" "firstt02">>
<<case "firstt02">>
<<vid "anna/firstt02.mp4">>
<<say "anna">>Oh my god. Yes!<</say>>
<<narrate>>With a dark grin you give her a couple of spanks, leaving large red marks on her bouncing ass.<</narrate>>
<<say "mc">>That's what bad fucking bitches get!<</say>>
<<narrate>>He ass bounces faster still, so you spank some more, letting out much of your frustration.<</narrate>>
<<say "mc">>Fucking take it, bitch!<</say>>
<<cont "annasex" "firstt03">>
<<case "firstt03">>
<<narrate>>You watch as your $anna.them thrusts herself back and forth on your dick, her insatiable greed driving you crazy.<</narrate>>
<<vid "anna/firstt04.mp4">>
<<say "anna">>Oh, my god, yes. Just like that, please.<</say>>
<<narrate>>You start thrusting back violently.<</narrate>>
<<say "mc">>Dirty fucking bitch. You like your $anna.you's dick?<</say>>
<<narrate>>Her orgasm tells you exactly what you want to know.<</narrate>>
<<cont "annasex" "firstt04">>
<<case "firstt04">>
<<narrate>>She recovers a moment later and signals for you to lie down again before lowering herself onto your rod.<</narrate>>
<<vid "anna/firstt03.mp4">>
<<say "anna">>Yes, yes, yes. Oh, my god, yes.<</say>>
<<say "mc">>Look me in the eye as I blow my load for you, bitch!<</say>>
<<say "anna">>Let me taste it, I love the fucking taste!<</say>>
<<say "mc">>Fuuuck! That's it, I'm gonna—<</say>>
<<vid "anna/firstt05.mp4">>
<<say "mc">>Uhhh~ take every fucking last drop you slutty fucking bitch!<</say>>
<<say "anna">>Fuck... your cock really is the best.<</say>>
<<say "mc">>Is that a compliment?<</say>>
<<say "anna">>For your dick, not you!<</say>>
<<narrate>>You give her a look of confusion.<</narrate>>
<<say "anna">>You get real fucking nasty when you're inside me... not that I hate it.<</say>>
<<narrate>>You chuckle.<</narrate>>
<<say "mc">>Warming up to me, huh?<</say>>
<<say "anna">>Ugh. Whatever. You got a good dick, don't let it go to your head! Anyway, I wanna try this in as a MILF too!<</say>>
<<think "mc">>Huh, is she already addicted?<</think>>
<<say "mc">>Sounds good to me.<</say>>
<<if $replay == false>>
<<notice>>$anna.name can now be willingly transformed at Gateway B.<</notice>>
<<trans "anna" "mature">>
<</if>>
<<button "Sleep" sleep>>
<<unlock "anna" "firstt">>
<<event "anna" "important" 4>>
<<corruptmax "anna" 125>>
<<corrupt "anna" 12>>
<<lust "anna" 4>>
<<like "anna" 5>>
<</button>>
<<case "vgym">>
<<narrate>>You peer into the gym to see what $vanna.name and $anna.name are up to.<</narrate>>
<<vid "anna/vgym04.mp4">>
<<think "mc">>Why the hell do they have their boobs out... actually, why do I care? $vanna.name did promise me a good show after all...<</think>>
<<cont "annasex" "vgym01">>
<<case "vgym01">>
<<vid "anna/vgym05.mp4" 1>>
<<say "vanna">>That was a really good workout.<</say>>
<<say "anna">>Yeah, it was great.<</say>>
<<think "mc">>That's it? Is $anna.name horny enough yet?<</think>>
<<narrate>>As you're about to turn and leave, a little disappointed, $vanna.name reaches over to $anna.name, grabs her by the chin and kisses her passionately.<</narrate>>
<<think "mc">>That's more like it!<</think>>
<<say "vanna">>How about we finish the workout in my room?<</say>>
<<say "anna">>I thought you'd never ask!<</say>>
<<narrate>>$vanna.name holds her hand up with her fingers spread apart, then points up.<</narrate>>
<<think "mc">>Upstairs, five minutes... got it.<</think>>
<<narrate>>You wait a few minutes then head to $vanna.name's room, the door left ajar, you step inside to enjoy the show.<</narrate>>
<<cont "annasex" "vgym02">>
<<case "vgym02">>
<<vid "anna/vgym06.mp4">>
<<narrate>>The two are already embraced and $anna.name's fingers inside $vanna.name when you arrive.<</narrate>>
<<think "mc">>Fuck, yeah. I have no idea how $vanna.name manages this... but I'm certainly going to enjoy it.<</think>>
<<cont "annasex" "vgym03">>
<<case "vgym03">>
<<vid "anna/vgym07.mp4">>
<<narrate>>As the two continue, you can't help but think $anna.name is stealing glances in your direction, yet she says nothing... not even when you pull out your cock and start stroking in sync with their movements.<</narrate>>
<<think "mc">>Must be my imagination... if she'd seen me, I'm sure there would be hell to pay!<</think>>
<<cont "annasex" "vgym04">>
<<case "vgym04">>
<<vid "anna/vgym08.mp4">>
<<think "mc">>Yes, fucking suck that bitch's clit, show her who's boss!<</think>>
<<cont "annasex" "vgym05">>
<<case "vgym05">>
<<vid "anna/vgym09.mp4">>
<<narrate>>You manage to sneak closer when they sixty-nine, the warmth of their lovemaking only fueling your desires.<</narrate>>
<<think "mc">>She might be a bitch but fucking hell she's hot.<</think>>
<<cont "annasex" "vgym06">>
<<case "vgym06">>
<<vid "anna/vgym10.mp4">>
<<narrate>>As their intensity picks up, so too does yours. You blow your load unexpectedly when $anna.name glances in your direction, sending a huge spike of pleasure through your body.<</narrate>>
<<think "mc">>Oh, fuck... looks like she didn't actually notice me, though.<</think>>
<<narrate>>Leaving a small puddle of cum on $vanna.name's rug, you retreat back to the doorway for the rest of the show.<</narrate>>
<<cont "annasex" "vgym07">>
<<case "vgym07">>
<<vid "anna/vgym11.mp4">>
<<narrate>>The two race for the finish line, lost in their own desires.<</narrate>>
<<say "anna">>YES, FUCK YES! HOLY FFFFFFFFF~<</say>>
<<narrate>>$anna.name starts slapping at the bed as the pleasure of the orgasm flows through her.<</narrate>>
<<narrate>>They lay on the bed catching their breath as you make your exit.<</narrate>>
<center><b style="font-size: 120%">After you're gone...</b></center>
<<narrate>>$anna.name steps off the bed, her foot landing in the cum you left behind.<</narrate>>
<<say "anna">>Oh my god... did he not even clean up after himself?<</say>>
<<say "vanna">>Ha! Men. Obviously he enjoyed the performance, and you fucking loved playing up to it, huh?<</say>>
<<narrate>>$anna.name simple shrugs and grins sarcastically.<</narrate>>
<<button "Continue" housestuff>>
<<set $location = "bedrooms">>
<<unlock "anna" "vgym">>
<<unlock "vanna" "vgym">>
<<lust "anna" 6>>
<<lust "vanna" 6>>
<<like "vanna" 4>>
<<corrupt "anna" 5>>
<<time 2>>
<</button>>
<<case "foot">>
<<narrate>>You sneak down to the lounge, intrigued by what $anna.name wants to discuss, cautiously optimistic, but also very aware of the kind of person she is.<</narrate>>
<<think "mc">>I doubt she's given up trying to manipulate me yet, and given she purposefully wants to be away from $kylie.name it's clear she thinks I'm an easier target when alone.<</think>>
<<narrate>>She's sat on the chair positioned in front of the sofa when you arrive. She gestures for you to sit.<</narrate>>
<<say "anna">>So modeling's a no-go. I'm not spending hours on end like that. It's boring as fuck. Posing for my 'gram was never that hard!<</say>>
<<say "mc">>Hello to you too.<</say>>
<<say "anna">>Ugh. Get over it. So, like you're in charge and I've tried working now so I think you should cut me some slack. I've always been good to you, after all.<</say>>
<<think "mc">>The fuck? Oh, no... I never intended to make her work... but always been good to me? Now she's fucking working. Bitch...<</think>>
<<say "mc">>Always good to me? What fucking reality are you living in? You and <<if $girlsavailable.includes('theodora')>>$theodora.name<<else>>$charlie.name<</if>> made my life a living hell growing up! $kenna.name was my only solace.<</say>>
<<say "anna">>Are you fucking high or something? I—<</say>>
<<say "mc">>Shut up. <<if $girlsavailable.includes('theodora')>>$theodora.name changed since coming here, she's a lot more grounded. <<else>>$charlie.name is still a dick, but nowhere near the same level as you.<</if>> Maybe because they arrived before you... maybe <b>you've</b> always been the fucking problem.<</say>>
<<say "anna">>Fucking hell. Fine. Jesus. No need to cry about it. We'll do this your way.<</say>>
<<cont "annasex" "foot00">>
<<case "foot00">>
<<say "mc">>The fuck? We need to work together here in the hub, or you can just fuck off to another—<</say>>
<<vid "anna/nv01.mp4">>
<<say "anna">>You wanna work with me in a different way?<</say>>
<<narrate>>Your tirade is interrupted when she rests her foot on your cock. Your anger replaced by confusion as your dick takes over the driver's seat.<</narrate>>
<<say "mc">>What... the... I...<</say>>
<<narrate>>She smiles at you sweetly.<</narrate>>
<<think "anna">>I've got him this time!<</think>>
<<vid "anna/nv02.mp4">>
<<narrate>>She retreats for a moment to show off her boobs. Your anger quickly becoming a distant memory as you focus on the seductress before you.<</narrate>>
<<cont "annasex" "foot01">>
<<case "foot01">>
<<vid "anna/nv03.mp4">>
<<say "anna">>I mean... maybe we should just get it out then.<</say>>
<<narrate>>You look at her in stunned silence as she unzips your trousers.<</narrate>>
<<say "anna">>Oh my god. Look at this thing.<</say>>
<<narrate>>There's genuine shock and excitement in her face, and you recall how she couldn't take her eyes off it when she saw you in the shower.<</narrate>>
<<say "anna">>Get it nice and slippery.<</say>>
<<think "mc">>This ain't gonna atone for her wrongdoings... but it's definitely a start.<</think>>
<<say "anna">>And the bottoms of my feet too.<</say>>
<<cont "annasex" "foot02">>
<<case "foot02">>
<<vid "anna/nv04.mp4">>
<<narrate>>She grips your dick between her feet and with impressive finesse starts stroking.<</narrate>>
<<say "anna">>Oh my god look at that; it's so fucking big.<</say>>
<<think "mc">>She seems more into this than I am...<</think>>
<<narrate>>She releases her grasp and grins at you.<</narrate>>
<<think "mc">>Ah, here it is. Let me guess... I can only get more if I treat her well and let her slack off?<</think>>
<<narrate>>She moves closer to you.<</narrate>>
<<cont "annasex" "foot03">>
<<case "foot03">>
<<narrate>>Subverting your expectations there's no bitchy remarks or requests. Instead, she grabs your cock and holds it to her face.<</narrate>>
<<vid "anna/nv05.mp4">>
<<say "anna">>It's as big as my fucking face.<</say>>
<<narrate>>Seemingly impressed, she toys with it for a second before running her lips up your shaft and taking your bellend into her mouth.<</narrate>>
<<say "mc">>Fucking hell!<</say>>
<<narrate>>She quickly starts bouncing her head on your cock, and as you feel the back of her throat, you can't help but wonder what the hell happened.<</narrate>>
<<say "anna">>God, that's so good.<</say>>
<<cont "annasex" "foot04">>
<<case "foot04">>
<<vid "anna/nv06.mp4">>
<<narrate>>Her motions become faster and sloppier as she greedily works every part of your cock.<</narrate>>
<<say "anna">>This fucking cock is so nice.<</say>>
<<think "mc">>Fuck, it's like she's a different person and I'm here for it!<</think>>
<<cont "annasex" "foot05">>
<<case "foot05">>
<<vid "anna/nv07.mp4">>
<<say "anna">>Your cock is so fucking good.<</say>>
<<narrate>>She ups the ante, her motions become faster and more deliberate. She's pushing for your climax.<</narrate>>
<<say "mc">>Oh, fuck... I'm gonna—<</say>>
<<say "anna">>Yes, $anna.calls, fill your $anna.them's mouth with your dirty fucking seed!<</say>>
<<narrate>>Her words tip you over the edge and you explode into her mouth, leaving her spluttering as she tries to handle your load.<</narrate>>
<<say "mc">>Holy fucking shit you're good at that.<</say>>
<<narrate>>She grins at you, swallows, then sits back on the chair, seemingly content with herself.<</narrate>>
<<say "anna">>I'm the fucking best.<</say>>
<<button "Continue" annasex>>
<<unlock "anna" "foot">>
<<temp "foot06">>
<</button>>
<<case "foot06">>
<<narrate>>She watches your cock silently, seemingly enjoying watching it shift as you finally return to a flaccid state.<</narrate>>
<<say "anna">>So, can we maybe work together this way instead?<</say>>
<<think "mc">>Fucking hell, she ruins every moment, huh?<</think>>
<<say "mc">>Listen, I never said anything about work, you just—<</say>>
<<say "anna">>Are you fucking kidding me? I just fucking sucked your dick. I did exactly what you wanted, and you still want to turn me into one of your slaves?<</say>>
<<narrate>>All the anger she'd drained away by diverting attention to your cock comes flooding back.<</narrate>>
<<say "mc">>At what fucking point did I ask you to suck my goddamn dick? At what point did I ever suggest this would get you out of work... and what fucking—<</say>>
<<say "anna">>Oh, fuck off. Your cock may be good but it's a shame it's attached to you. I'm gonna fucking tell everyone I sucked your dick. Your fucking $anna.them sucked your cock. How'd do you think they'll react?<</say>>
<<narrate>>You laugh, which takes her by surprise.<</narrate>>
<<say "mc">>Tell whoever you fucking like. They won't give a shit, they'll just think it's hot.<</say>>
<<think "mc">>There may be some exceptions to that, but I think I've grown to understand most of these women now. The irony of all this is that I never had any intention of making her work and I was literally about to tell that when she interrupted me. But now... now she can fucking work!<</think>>
<<say "anna">>I... the... UGGGHH!<</say>>
<<narrate>>She storms off, angry, but with a belly full of cum.<</narrate>>
<<think "mc">>Seems like the only time she's tolerable is when she's got something in her mouth.<</think>>
<<narrate>>You laugh to yourself, the anger gently subsiding.<</narrate>>
<<think "mc">>I saw that $armani.name probably needs some help... I wouldn't wish $anna.name on her, but maybe if I train her first. Probably not wise to use $krissy.refer's place, but maybe $kylie.name's? Maybe I should really sell it and get her a maid uniform too...<</think>>
<<button "Sleep" sleep>>
<<event "anna" "model" 2>>
<<corruptmax "anna" 70>>
<<lust "anna" 10>>
<<corrupt "anna" 15>>
<<like "anna" -5>>
<</button>>
<<case "maid01">>
<<narrate>>She bends down and starts dusting.<</narrate>>
<<vid "anna/maid01.mp4">>
<<think "mc">>Holy shit!<</think>>
<<say "kylie">>Mmm, yeah, that's it honey, give it a real good dust.<</say>>
<<narrate>>She nudges you while grinning.<</narrate>>
<<set _uc = $anna.refer.toUpperFirst()>>
<<say "mc">>_uc... what do you think I brought you here for?<</say>>
<<block "anna/maid02.jpg">>
<<say "anna">>To apologize for being such a twat the other night.<</say>>
<<think "mc">>Let it go for now... $name... let it go...<</think>>
<<say "mc">>And how do think this is an apology?<</say>>
<<narrate>>She blushes.<</narrate>>
<<say "anna">>Well, look at this thing...<</say>>
<</block>>
<<narrate>>She gestures at her outfit.<</narrate>>
<<say "anna">>... I'm bound to get everyone's attention! No need to do a boring photo shoot when I'm there in person, right?<</say>>
<<think "mc">>Huh?<</think>>
<<say "mc">>So you don't think this is work?<</say>>
<<say "anna">>Well, it's not like that stuff you've got all those other skanks doing. I guess you really did wanna look out for me.<</say>>
<<say "mc">>Right... right... I'm just gonna talk to my friend here for a moment.<</say>>
<<narrate>>You take $kylie.name aside.<</narrate>>
<<block "kylie/mature/home02.jpg">>
<<say "mc">>Am I going fucking insane? Why is she happily cleaning... without wearing any underwear. I know she's a bit of an exhibitionist but... wow.<</say>>
<<say "kylie">>It all makes sense. She still thinks she's manipulating you. Giving you a dirty peep show and only half-assing her work.<</say>>
<<say "mc">>So she is actually working?<</say>>
<<say "kylie">>I mean... kinda... but honestly, looking at her like that, I just wanna eat her right up.<</say>>
<<narrate>>You pinch the bridge of your nose.<</narrate>>
<<say "mc">>Go. If she's into it, have fun.<</say>>
<</block>>
<<say "kylie">>And you'll watch?<</say>>
<<say "mc">>Obviously!<</say>>
<<think "mc">>This really isn't the point I was trying to make to $anna.name, but if she's actually working, and thinks she's winning... I still get to reap the benefits. And it's the most tolerable she's been in... well, ever. So I guess it's win-win... sort of.<</think>>
<<narrate>>You shake your head, shrug, and head back into the living room.<</narrate>>
<<cont "annasex" "maid02">>
<<case "maid02">>
<<center "anna/maid03.jpg">>
<<narrate>>$anna.name's feigns surprise when you walk in on $kylie.name lifting her skirt.<</narrate>>
<<think "mc">>She wasted no time.<</think>>
<<say "mc">>Is... is this what you expected, $anna.refer?<</say>>
<<narrate>>She grins, almost looking cute, and nods.<</narrate>>
<<think "mc">>Well... holy shit. It was this easy all along? Just give her an audience?<</think>>
<<say "kylie">>And this...?<</say>>
<<narrate>>$kylie.name pushes $anna.name back toward the wall.<</narrate>>
<<cont "annasex" "maid03">>
<<case "maid03">>
<<vid "anna/maid02.mp4">>
<<think "mc">>$kylie.name really is the best!<</think>>
<<say "kylie">>That feels so good.<</say>>
<<narrate>>You sit back and enjoy the show as $anna.name gleefully unclothes what little modesty $kylie.name had left.<</narrate>>
<<vid "anna/maid03.mp4">>
<<say "anna">>Does it turn you on watching your $anna.them with another woman?<</say>>
<<say "mc">>Does it turn you on having me watch?<</say>>
<<say "kylie">>Less talking, more licking.<</say>>
<<cont "annasex" "maid04">>
<<case "maid04">>
<<vid "anna/maid04.mp4">>
<<narrate>>Naturally, you whip out your dick and start stroking.<</narrate>>
<<say "kylie">>Oh my god.<</say>>
<<cont "annasex" "maid05">>
<<case "maid05">>
<<vid "anna/maid05.mp4">>
<<narrate>>$anna.name paws at $kylie.name's bra.<</narrate>>
<<say "kylie">>Ohhh~<</say>>
<<narrate>>$kylie.name stands up, beckoning you over.<</narrate>>
<<vid "anna/maid06.mp4">>
<<narrate>>As she goes to remove your clothes, $anna.name starts eating her ass, causing her to stumble into you.<</narrate>>
<<say "kylie">>I think that dirty tool there needs some polishing from the maid.<</say>>
<<narrate>>You need no further encouragement, your clothes are on the floor in a jiffy. The two women laugh as both get to their knees.<</narrate>>
<<cont "annasex" "maid06">>
<<case "maid06">>
<<vid "anna/maid07.mp4">>
<<say "anna">>My god it's so big.<</say>>
<<narrate>>Your $anna.them shows no reluctance in sucking your cock in front of $kylie.name, in fact, she appears to take pleasure in it.<</narrate>>
<<cont "annasex" "maid07">>
<<case "maid07">>
<<vid "anna/maid08.mp4">>
<<narrate>>The two of them kiss over the tip of your penis, sending a tingle of excitement down your shaft and causing a ticking sensation in your groin.<</narrate>>
<<say "kylie" "" "Whispering to $anna.name" "whisper">>You wanna fuck your $anna.you?<</say>>
<<narrate>>She stops servicing you for a moment, clearly thinking about something.<</narrate>>
<<think "mc">>Why'd she stop... what did $kylie.name just whisper to her?<</think>>
<<say "anna" "" "Whispering to $kylie.name" "whisper">>Not yet... can you...?<</say>>
<<say "kylie" "" "Whispering to $anna.name" "whisper">>Honey, any day of the week.<</say>>
<<narrate>>$kylie.name backs off on to the sofa, presenting herself to you.<</narrate>>
<<vid "anna/maid09.mp4">>
<<cont "annasex" "maid08">>
<<case "maid08">>
<<vid "anna/maid10.mp4">>
<<say "kylie">>Oh my god. Fuck.<</say>>
<<narrate>>$anna.name stays on her knees and keeps close as you pound away at $kylie.name's pussy.<</narrate>>
<<say "kylie">>I'm gonna cum.<</say>>
<<narrate>>$anna.name's hand wanders over $kylie.name's ass and pussy, occasionally tickling your balls as you thump away. Her pleading, lustful eyes looking up at you, you don't last long until you're ready to pop.<</narrate>>
<<say "mc">>I'm gonna... take it, $anna.refer!<</say>>
<<vid "anna/maid11.mp4">>
<<narrate>>You pull out just at the very last second, leaving a trail of cum droplets as you move your cock to $anna.name for your big finish.<</narrate>>
<<unlock "anna" "maid">>
<<unlock "kylie" "maid">>
<<cont "annasex" "maid09">>
<<case "maid09">>
<<narrate>>The three of you are left sweaty and breathless. You decide to remain silent, hoping that $anna.name does too, as not to ruin the moment.<</narrate>>
<<say "kylie">>Well, shit, that was... amazing. You can come clean for me any time.<</say>>
<<say "anna">>Yeah... that wasn't so bad, $kylie.name.<</say>>
<<narrate>>You look at $kylie.name and widen your eyes briefly.<</narrate>>
<<say "anna">>You didn't think I knew it was her? This is her house, you can transform people and suddenly there's this hot mature woman going in and out? It doesn't take a fucking rocket scientist.<</say>>
<<say "mc">>Haha, yeah, true. I just didn't expect you to be okay with all... this.<</say>>
<<say "anna">>Listen, you've got a great cock, okay? Let's just forget everything else.<</say>>
<<narrate>>You shrug.<</narrate>>
<<button "Continue" townhub>>
<<lust "kylie" 5>>
<<lust "anna" 4>>
<<like "kylie" 3>>
<<like "anna" 15>>
<<event "anna" "maid" 4>>
<<corruptmax "anna" 100>>
<<corrupt "anna" 15>>
<<run overrideSchedule('kylie', 14, 16, "bedrooms")>>
<<time 2>>
<</button>>
<<case "pat01">>
<<if checkUnlocks('movie', 'pat01', 'anna') == false>>
<<narrate>>You message $anna.name to meet you at $stripname.<</narrate>>
<<say anna>>The fuck do you want now?<</say>>
<<say mc>>Lovely to see you too, $anna.refer.<</say>>
<<say anna>>Whatever. The fuck you want?<</say>>
<<say mc>>Remember us talking at the Glitter Box? You wanted to perform...?<</say>>
<<narrate>>Her face lights up.<</narrate>>
<<say anna>>Fuck yeah, bend over and destroy me in front of everyone! Let's go.<</say>>
<<say mc>>No... not me... not yet at least.<</say>>
<<say anna>>$kylie.name...?<</say>>
<<say mc>>$genvoy.name will work for us three times a week, but only if you perform with her first.<</say>>
<<say anna>>Sign me the fuck up!<</say>>
<<else>>
<<narrate>>$anna.name comes bounding into the room before you've even had chance to call for her.<</narrate>>
<<say anna>>Today's one of $genvoy.name's available days isn't it?<</say>>
<<narrate>>You grin and nod at her.<</narrate>>
<<say anna>>Fuck yeah, come on, I want you watch your filthy $anna.them with that hot piece of ass, you fucking perv.<</say>>
<</if>>
<<narrate>>The room $genvoy.name had prepared is almost like an interrogation room. You watch as $anna.name takes in her surroundings, and the growing audience where the fourth wall should be.<</narrate>>
<<say anna>>Holy shit...<</say>>
<<say genvoy>>You've got some explaining to do young lady.<</say>>
<<say anna>>What the fuck are you talking about?<</say>>
<<narrate>>$genvoy.name reaches out and grabs $anna.name's hand.<</narrate>>
<<center "east/genvoy/anna01.jpg">>
<<say genvoy>>I'm talking about all the theft... but... I can help it all go away.<</say>>
<<say anna>>I just... I can't help myself. Please, I'll do anything.<</say>>
<<think mc>>I'm quite impressed how well she got in character.<</think>>
<<say genvoy>>You won't be needing that skirt.<</say>>
<<say anna>>What? What do you mean?<</say>>
<<say genvoy>>I won't ask again, bad girls rarely get a second chance.<</say>>
<<narrate>>$anna.name's sultry smile sends the crowd wild as she unbuttons her skirt and shimmies in the chair until it lands at her ankles.<</narrate>>
<<cont "annasex" "pat02">>
<<case "pat02">>
<<say genvoy>>Mmm, yes. Maybe we can make a good girl of you yet.<</say>>
<<vid "east/genvoy/anna01.mp4">>
<<narrate>>She pulls $anna.name up on to the table, pulls her face in close and kisses her to the cheers of the audience.<</narrate>>
<<narrate>>$genvoy.name's hands wander down over $anna.name's abs, while $anna.name's cup and massage $genvoy.name's breast.<</narrate>>
<<say genvoy>>Oh, yes, good girl. Show me just how much you want my help.<</say>>
<<cont "annasex" "pat03">>
<<case "pat03">>
<<narrate>>She casts away her top as $anna.name's tongue toys with her nipple.<</narrate>>
<<vid "east/genvoy/anna02.mp4">>
<<narrate>>$genvoy.name gasps with surprised delight as $anna.name forces her hand down $genvoy.name's panties.<</narrate>>
<<say genvoy>>Oh, yes, yes, that's it... but I want more!<</say>>
<<narrate>>The two of them hastily disrobe, eager to get back to each other's body.<</narrate>>
<<cont "annasex" "pat04">>
<<case "pat04">>
<<vid "east/genvoy/anna03.mp4">>
<<narrate>>$genvoy.name's breaths become shorter and shorter as $anna.name hungrily laps at her pussy.<</narrate>>
<<say genvoy>>Oh, you're so beautiful.<</say>>
<<narrate>>She holds $anna.name's head to her pussy as the pleasure continues to build inside her.<</narrate>>
<<cont "annasex" "pat05">>
<<case "pat05">>
<<vid "east/genvoy/anna04.mp4">>
<<narrate>>Forcing her back on to the table, $anna.name brings $genvoy.name to the brink with her fingers.<</narrate>>
<<say genvoy>>Ooh~ god, yeah!<</say>>
<<narrate>>As the orgasm takes control she writhes and wriggles on the table, her senses unable to fully process the pleasure.<</narrate>>
<<say genvoy>>Good girl....<</say>>
<<cont "annasex" "pat06">>
<<case "pat06">>
<<narrate>>The dynamic changes as $genvoy.name manhandles $anna.name, swinging her around and back on to the table as she demonstrates just who is in charge.<</narrate>>
<<vid "east/genvoy/anna05.mp4">>
<<narrate>>Almost worshiping $anna.name's body as she runs her hands over her, then sensually kisses her stomach and thighs, teasing her until she finally lays her tongue on $anna.name's vulva.<</narrate>>
<<say anna>>Yeah... oh, fuck!<</say>>
<<cont "annasex" "pat07">>
<<case "pat07">>
<<narrate>>She again tosses $anna.name around like a ragdoll, perhaps as a show of force, until $anna.name is sitting on her face.<</narrate>>
<<vid "east/genvoy/anna06.mp4">>
<<say anna>>You're gonna make me cum! You're gonna— I'm gonna cum on your face.<</say>>
<<say anna>>Oh, my god, right there, please, please, please.<</say>>
<<narrate>>$anna.name twerks on $genvoy.name's face as $genvoy.name's tongue rapidly delivers joy.<</narrate>>
<<say anna>>Oh, my god, I'm cumming! Fuck!<</say>>
<<narrate>>As her hips convulse there's a roar from the audience.<</narrate>>
<<say genvoy>>Oh, we're not done yet...<</say>>
<<cont "annasex" "pat08">>
<<case "pat08">>
<<narrate>>The din of the crowd is curtailed as the two sweaty performers continue.<</narrate>>
<<vid "east/genvoy/anna07.mp4">>
<<say anna>>Just like that. Yeah, yeah, uhmm.<</say>>
<<narrate>>$genvoy.name lets her spittle slowly ooze down on to their pussies as she grinds against $anna.name.<</narrate>>
<<say anna>>Just like that. Yes!<</say>>
<<narrate>>$genvoy.name asserts her dominance, controlling the pace while pushing her fingers inside $anna.name's mouth.<</narrate>>
<<say genvoy>>You're so fucking beautiful.<</say>>
<<narrate>>The pace quickens as $genvoy.name runs her hands over $anna.name, her wild lust screaming for release.<</narrate>>
<<say anna>>Yes please. Yes please!<</say>>
<<cont "annasex" "pat09">>
<<case "pat09">>
<<vid "east/genvoy/anna08e.mp4">>
<<narrate>>Her movements become faster and faster, as their moans become louder and louder.<</narrate>>
<<narrate>>There's a brief moment of respite, the calm before the storm, and then $genvoy.name chases the crescendo.<</narrate>>
<<say anna>>Yeah, yes, yes, yes, yes, yes!<</say>>
<<say genvoy>>Hnng~ So good!<</say>>
<<say anna>>Your pussy feels so good against mine!<</say>>
<<narrate>>There's a standing ovation from the crowd as the two of them collapse into each, lying on the table, sweaty, hearts racing, and out of breath.<</narrate>>
<<perform "genvoy" "anna">>
<<unlock "anna" "pat01">>
<<unlock "genvoy" "anna01">>
<<button "Continue" mngbrothel>>
<<lust "anna" 10>>
<<like "anna" 5>>
<<corrupt "anna" 5>>
<<time 2>>
<</button>>
<</switch>>/*
CHANGE semibadflirt threshold to event-based once she's accepted she's okay with you flirting to get what she wants.
*/
<<tracker "anna" 1>>
<<if $anna.events.settle == undefined>>
<<step "Settling" "Ask how well she's settling in.">>
<<elseif $anna.events.important == undefined>>
<<step "Work her" "Assign her to work a facility.">>
<<elseif $anna.events.eavesdrop < 3>>
<<step "Eavesdrop $anna.events.eavesdrop/3" "Visit her while she's outside her room and with others outside at anywhere else in the hotel.">>
<<elseif $anna.events.manager == undefined>>
<<step "Waiting on you" "Visit your room while she's in hers.">>
<<elseif $anna.events.hub == undefined>>
<<step "Serious Chat" "Re-explain things to her and talk about your role in the hub.">>
<<elseif $anna.events.townguide == undefined>>
<<step "Guided Tour #1" "Speak to her and take her for a tour around town.">>
<<elseif $anna.events.gatewayguide == undefined>>
<<step "Guided Tour #2" "Speak to her and take her for a tour around Gateway B.">>
<<elseif $anna.events.relationship == undefined>>
<<step "Bedroom Chat" "Visit her in her room.">>
<<elseif $anna.events.relationship != "taboo">>
<<step "Think about it" "Collect your thoughts at night and decide to pursue a taboo relationship with her. Other routes currently have no content.">>
<<elseif $shalina.events.bang == undefined>>
<<step "Progress the story" "Follow the main story tasks to unlock the next hint.">>
<<elseif $anna.events.step == 1>>
<<step "Sleep on it" "Sleep until you dream of her.">>
<<elseif $anna.events.step == 2>>
<<step "Stepping Out" "Head into town.">>
<<elseif $anna.events.observe < 4>>
<<set $anna.events.observe = 0>>
<<if $anna.events.llonge != undefined>>
<<set $anna.events.observe++>>
<</if>>
<<if $anna.events.cleanchat != undefined>>
<<set $anna.events.observe++>>
<</if>>
<<if $anna.events.modelchat != undefined>>
<<set $anna.events.observe++>>
<</if>>
<<if $anna.events.vgym != undefined>>
<<set $anna.events.observe++>>
<</if>>
<<step "Observe with others $anna.events.observe/4" `"See how she interacts with others. How?<br><ul>
"+($anna.events.llonge == undefined ? "<li>When she and "+$lexi.name+" are in their rooms.</li>" : "")+"
"+($anna.events.vgym == undefined ? "<li>When she and "+$vanna.name+" are in the gym together.</li>" : "")+"
"+($anna.events.cleanchat == undefined ? "<li>When she and "+$armani.name+" are in the garden together.</li>" : "")+"
"+($anna.events.modelchat == undefined ? "<li>When she and "+$aubree.name+" are in the garden together.</li>" : "")+"
</ul>"`>>
<<elseif $anna.events.step == 3>>
<<step "Sleep on it" "Sleep until you dream of her.">>
<<elseif $buildings.studio == undefined>>
<<step "Get a photo studio" `"Discuss photography with "+$vanna.name+" or "+$aubree.name+" then assign someone to work the studio project in the monitoring station. After assign someone to build it in the construction facility."`>>
<<elseif $anna.events.model == undefined>>
<<step "Model Employee" "Call her over to the studio for a shoot.">>
<<elseif $anna.events.model == 1>>
<<step "After Dark Meetup" "Sneak around at night to meet her.">>
<<elseif $molly.events.tailor == undefined>>
<<step "Progress with $molly.name" `"Progress "+$molly.name+"'s substory to unlock the next hint."`>>
<<elseif $anna.events.maid == undefined>>
<<step "Tailored Assistance" `"Ask "+$molly.name+" to make a maid's uniform."`>>
<<elseif $anna.events.model == 2>>
<<step "A Little Help" `"Ask "+$kylie.name+" for help."`>>
<<elseif $anna.events.maid == 1>>
<<step "Overnight Shipping" `"Wait for "+$molly.name+" to deliver the mad uniform."`>>
<<elseif $anna.events.model == 3 && $kylie.mature != true && $anna.events.maid == 2>>
<<step "Mature Aid" `$kylie.name+" needs to be in her mature form."`>>
<<elseif $anna.events.model == 3 && $kylie.mature == true && $anna.events.maid == 2>>
<<step "Working Girl" `"Talk to "+$anna.name+" about maid work while "+$kylie.name+" is on world and not working."`>>
<<elseif $anna.corruption < 80>>
<<step "She's not corrupt enough" `"80 needed. How to increase?<ul>
<li>Flirt after accumulating 10 corruption.</li>
<li>Watch her workout with "+$vanna.name+".</li>
<li>Watch her afternoon meetup with mature "+$kylie.name+".</li>
"+($maddy.unrelax >= 2 ? "<li>Watch her at night with "+$maddy.name+"</li>" : "")+"
<li>Explore discussion topics.</li>
<li>Occasionally when relaxing at the spa together.</li>
</ul>"`>>
<<elseif $anna.events.mature == undefined>>
<<step "Morning Kerfuffle" "Wait until she contacts you.">>
<<elseif $anna.events.mature == 2>>
<<step "MILFy" "Go to Gateway B and transform her.">>
<<elseif $anna.events.mature == 3 && $anna.events.important == 1>>
<<step "Work her" "Assign her to work a facility.">>
<<elseif $anna.events.important == 2>>
<<step "Shift Assist" "Assign her to work then assist her with the shift.">>
<<elseif $anna.events.important == 3>>
<<step "Thankful Bitch" "Wait on her.">>
<<else>>
<<movielist anna>>
<</if>>
<</tracker>><<nobr>>
<<set $scene = 0>>
<<if $location != $currentlocations.armani && $location != "firstIntros" && $replay == false>>
<<say "armani">>I can't sit around talking to you all day, I have things I need to do.<</say>>
<<follow armani>>
<<button "Continue" $return>>
<</button>>
<<elseif ($location == "lounge" && $hour >= 22 && $armani.events.fingerme != undefined && $armani.events.fingerme < 2) || $tempvar == "replayfinger">>
<<block "armani/recover03.jpg">>
<<say "armani">>Finally! You're not a complete buffoon after all.<</say>>
<<narrate>>You sigh.<</narrate>>
<<say "mc">>You wanted a hand?<</say>>
<<say "armani">>Ah, glad you understand.<</say>>
<<set _i = 0>>
<<set $girlshere.delete('armani')>>
<<if $girlshere.length > 0>>
<<for _g range $girlshere>>
<<set _i++>>
<<if _i == 1>>
<<set _who = State.variables[_g].name>>
<<elseif _i == $girlshere.length>>
<<set _who += " & " + State.variables[_g].name>>
<<else>>
<<set _who += ", " + State.variables[_g].name>>
<</if>>
<</for>>
<<say "armani">><<if _i == 1>>_who<<else>>Ladies<</if>>, could you give us the room?<</say>>
<<narrate>>_who get<<if _i == 1>>s<</if>> up and leave<<if _i == 1>>s<</if>> the room, there's an air of annoyance, but otherwise they leave without any protest.<</narrate>>
<</if>>
<<set $girlshere.pushUnique('armani')>>
<<say "mc">>So, you've got me alone, what now?<</say>>
<<narrate>>She tosses her top over at you, it lands on your face.<</narrate>>
<</block>>
<<say "armani">>You come over here and show me what those fingers can do.<</say>>
<<think "mc">>Eh, not my first hope, but let's see where it leads.<</think>>
<<narrate>>She beckons you beside her while she kicks off her shoes and sheds the rest of her clothes.<</narrate>>
<<say "armani">>Do it.<</say>>
<<narrate>>You bend down in front of her and start gently caressing her pussy.<</narrate>>
<<button "Continue" armanisex>>
<<temp "fingerbang">>
<</button>>
<<elseif $cassie.events.sisterrivalry != undefined && $armani.events.fingerme == 3 && $cassie.events.sisterbitch == 2 && $armani.events.what == undefined && $completeTasks.includes('azulsex2')>>
<<set _img = getImg('armani')>>
<<left2 _img>>
<<narrate>>As you approach, you can't help but notice her take a deep breath.<</narrate>>
<<if $armani.dominance < -10>>
<<say armani>>Master, I was thinking...<</say>>
<<say mc>>That's dangerous territory for you.<</say>>
<<else>>
<<say armani>>Good, my little fuckdoll is here. I've been thinking...<</say>>
<<say mc>>Yes, mistress, what is it?<</say>>
<</if>>
<<narrate>>She shakes her head.<</narrate>>
<<say armani>>Actually, no, fuck our fun little roleplay for a minute. What's going on with us? It's just sex, right?<</say>>
<<say mc>>I don't think I understand the question, the sex is fire, but we're a bit more than fuck buddies wouldn't you say?<</say>>
<<narrate>>She pulls a face.<</narrate>>
<<say armani "" "(Under her breath)" "whisper">>Fuck, was my sister right?<</say>>
<<say mc>>What was that?<</say>>
<<say armani>>Nothing. I get we're not like just fuck buddies, and we work together, live together, and whatnot. But that's just circumstance; what you and I do together... well, it's just sex. You'd fuck entire worlds if you could.<</say>>
<<say mc>>Only if those worlds were full of women amazing as those here.<</say>>
<<say armani>>Yeah, yeah, so it's just sex, like I thought. Good... good...<</say>>
<<think mc>>I'm not really used to seeing this side of her. Is it because of that argument with $cassie.name?<</think>>
<<narrate>>Before you can question anything or respond, she moves on to making small talk about another subject.<</narrate>>
<<think mc>>Hmm, clearly she doesn't want to open up. I guess, like with most people here, we skipped a few steps thanks to my lust aspect. Maybe taking her on a date wouldn't be so bad.
<<if !checkUnlocks('tech', 'restaurant')>>
<<tech "restaurant">>
Maybe I should look into getting a hub for the restaurant?
<<elseif $buildings.restaurant == undefined>>
I really should get that restaurant built.
<</if>>
<</think>>
<<if !checkUnlocks('tech', 'restaurant')>>
<<notice>>New research available.<</notice>>
<</if>>
<<event "armani" "what">>
<<button "Continue" $return>>
<<like armani 3>>
<<time 0.5>>
<</button>>
<<elseif $location == "lounge" && $mc.events.eastreturn != undefined && $armani.events.fingerme == 2 && $armani.lust >= 50>>
<<left2 "armani/lounge04.jpg">>
<<say armani>>I was just thinking about you.<</say>>
<<say mc>>Oh?<</say>>
<<say armani>>Just reminiscing about the first time we had... fun in here.<</say>>
<<think mc>>Hmm, she seems unusual, but perhaps an invitation to revisit old ground?<</think>>
<div id="replace">
<<choices "Try your luck?">>
<<link "Of course!">>
<<replace "#replace">>
<<if $armani.dominance < -10>>
<<say mc>>Clothes off. Get your ass on that sofa.<</say>>
<<say armani>>What? No, I was just—<</say>>
<<say mc>>You wish to disobey me?<</say>>
<<narrate>>She grins.<</narrate>>
<<say armani>>No... no, I'm sorry! I'll do it right away.<</say>>
<<narrate>>She hurries out of her clothes; leaving only her stockings.<</narrate>>
<<cont "armanisex" "l01">>
<<else>>
<<say mc>>I'd be happy to revisit the event for my mistress.<</say>>
<<narrate>>She grins darkly.<</narrate>>
<<say armani>>Oh, I bet you would. You sick perv! Yeah? You'd get off on it, wouldn't you?<</say>>
<<narrate>>Despite her words, she's already undressing.<</narrate>>
<<say mc>>I wish only to please my mistress.<</say>>
<<narrate>>She lies on the sofa, her legs spread apart.<</narrate>>
<<say armani>>Then please her.<</say>>
<<cont "armanisex" "l01">>
<</if>>
<</replace>>
<</link>><br>
<<link "Another time">>
<<replace "#replace">>
<<say armani>>Anyway, what did you want?<</say>>
<<think mc>>I guess she moved it along for me.<</think>>
<<choices "What do you want to discuss?" "topics">>
<</choices>>
<</replace>>
<<script>>
$('#topics').wiki(Story.get("armanidiscussions").processText());
<</script>>
<</link>>
<</choices>>
</div>
<<else>>
<<set _img = getImg('armani')>>
<<left2 _img>>
<<if ($armani.events.poolperv ?? 0) == 5 && $mc.events.eastreturn == true && $cassie.events.sisterbitch == undefined>>
<<say armani>>You know, maybe you've got some redeeming qualities after all.<</say>>
<<say mc>>What do you mean by that?<</say>>
<<say armani>>You might not be the brightest spark, but you've got a fucking beautiful cock.<</say>>
<<if $armani.dominance > 10>>
<<say mc>>As long as I can please you, mistress.<</say>>
<<say armani>>Mhmm, there's that word I love.<</say>>
<<else>>
<<say mc>>Exuse me?<</say>>
<<say armani>>You heard me.<</say>>
<</if>>
<<narrate>>She stares at you.<</narrate>>
<<say armani>>So, what did you want?<</say>>
<<if $armani.dominance < -10>>
<<say mc>>Is that anyway to speak to your master?<</say>>
<<else>>
<<say mc>>I just want to do everything I can to please you, mistress.<</say>>
<<narrate>>She grins darkly, then shakes her head.<</narrate>>
<</if>>
<<say armani>>Listen, that's hot when we're fooling around. But during a normal conversation? Give it a fucking rest. You really are a dumb fuck. There's a time and a place.<</say>>
<<think mc>>Okay, what the fuck? She's so hot and cold sometimes. Maybe $cassie.name can help me deal with her.<</think>>
<<say armani>>So, you had something you wanted to discuss, or are you just gonna look at me with that gormless face all day?<</say>>
<<event "cassie" "sisterbitch">>
<<else>>
<<if $armani.dominance < -30>>
<<narrate>>She looks around to see if anyone is within earshot; then looks back to you, almost guiltily.<</narrate>>
<<say armani>>Is there anything I can do to please you, master?<</say>>
<<elseif $armani.dominance > 30>>
<<say armani>>What the fuck do you want?<</say>>
<<else>>
<<say "armani">>What do you want?<</say>>
<</if>>
<</if>>
<<choices "What do you want to discuss?" "topics">>
<</choices>>
<<debug>>
Dominance <<textbox "$armani.dominance" $armani.dominance>>
<</debug>>
<</if>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("armanidiscussions").processText());
})
<</script>>
<</nobr>><<nobr>>
<<narrate>>You open the door slightly and are immediately rewarded with the view of $armani.name pleasuring herself.<</narrate>>
<<vid "armani/peekingon.mp4">>
<<narrate>>Perhaps if you knew $armani.name better, you could do more.<</narrate>>
<<button "Sleep" firstAwake>>
<<end>>
<<unlock 'armani' 'peek01'>>
<<lust 'armani' 1>>
<<event 'armani' 'buzzpeek'>>
<</button>>
<</nobr>><<nobr>>
<<scene>>
<<if debug == true>>
<div class="debug">
<<set _loop = ['gatewaya', 'Expeditions']>>
<<for _v range _loop>>
<<capture _v>>
<button data-passage="armanianswers" data-setter="$tempvar = _v">
_v
</button>
<</capture>>
<</for>>
<br>
</div>
<</if>>
<<set _img = getImg('armani')>>
<<if $replay == true>>
<<set $location ="pool">>
<</if>>
<<switch $tempvar>>
<<case "date">>
<<left2 _img>>
<<if $armani.dominance < -10>>
<<say mc>>Go get dressed into something fancy and meet me in the lounge in fifteen minutes.<</say>>
<<say armani>>What, why?<</say>>
<<say mc>>Because <b>I</b> told you to. And put on some sexy lingerie too.<</say>>
<<narrate>>She looks at you confused.<</narrate>>
<<say mc>>Well, hurry the fuck up. Time's ticking.<</say>>
<<think armani>>I hate taking orders, but goddamn it's hot to get them.<</think>>
<<say armani>>Yes, master.<</say>>
<<narrate>>She scurries away, confused but smiling.<</narrate>>
<<cont "armanisex" "d01">>
<<else>>
<<say mc>>Mistress, would you like to go down Gateway together?<</say>>
<<say armani>>And do what? No, I've got plenty to do here.<</say>>
<<say mc>>I was thinking we could go to the restaurant?<</say>>
<<narrate>>She cackles.<</narrate>>
<<say armani>>I think you've got the wrong sister, $name.<</say>>
<<say mc>>Right... of course, I understand...<</say>>
<<narrate>>You start moping away, dramatically. She rolls her eyes.<</narrate>>
<<say armani>>Ugh. Fine. Don't give me that shitty little face. I'll give you a little reward for your obedience. Meet me in the lounge in fifteen.<</say>>
<<narrate>>Despite her words, she scurries away with a giant grin on her face.<</narrate>>
<<cont "armanisex" "d01">>
<</if>>
<<case "issue">>
<<left2 _img>>
<<say mc>>About your text message...<</say>>
<<say armani>>Yeah, what about it?<</say>>
<<if $armani.dominance > 10>>
<<say mc>>Have I done something that upsets you, mistress? How do Put it right?<</say>>
<<say armani>>Yeah you've fucked me off. Do I have to spell everything out?<</say>>
<<narrate>>You stay silent hoping she'll continue. She shrugs with annoyance.<</narrate>>
<<say armani>>I enjoy our games, $name, but you're fucking dense.<</say>>
<<say mc>>I'm sorry mistress, how can I do better?<</say>>
<<narrate>>She takes a deep sigh.<</narrate>>
<<say armani>>I do live it when you call me that... perhaps you'll remember that next time your perving on me at the pool.<</say>>
<<narrate>>As you being to speak, she shushes you.<</narrate>>
<<say armani>>Leave me. I've had enough of your drivel.<</say>>
<<button "Continue" $return>>
<<stat "armani" 10 "dominance">>
<<event "armani" "poolperv" 9>>
<<time 1>>
<</button>>
<<else>>
<<say mc>>What was that about?<</say>>
<<say armani>>Your inability to fucking pick a lane.<</say>>
<<say mc>>Huh?<</say>>
<<say armani>>Stop acting like a fucking idiot.<</say>>
<<think mc>>What the hell am I missing here?<</think>>
<<say armani>>Either take what you want from me, or let me take what I want from you. There's no in between.<</say>>
<<say mc>>I'm not sure.<</say>>
<<say armani>>Ugh. Why are you so frustrating sometimes? Absolutely clueless.<</say>>
<<narrate>>She turns her back to you, indicating the conversation is over.<</narrate>>
<<think mc>>Based on our previous interactions, all I can think of is how I talk to her... do I need to more authoritative... or let her take that role?<</think>>
<<button "Continue" $return>>
<<event "armani" "poolperv" 9>>
<<time 1>>
<</button>>
<</if>>
<<case "gem">>
<<left2 _img>>
<<say mc>>Why did you let $krissy.refer take your room?<</say>>
<<say armani>>it's just a room and I've only gone a few doors down. She seemed to really want it. In her words, close enough to see who is going in and out, but far enough away not to have to listen to it.<</say>>
<<say mc>>Right... and you really don't mind?<</say>>
<<say armani>>Not really.<</say>>
<<event "armani" "krissyroom">>
<<if $armani.dominance < -10>>
<<say mc>>And you thought to make such a decision without checking with your master?<</say>>
<<say armani>>Who the fuck do you think...<</say>>
<<narrate>>She trails off.<</narrate>>
<<say mc>>What was that?<</say>>
<<say armani>>Sorry master, please, let me make it up to you. I've been a bad girl.<</say>>
<<say mc>>Let me give that some thought... I'll visit you one night when I've decided on your penance.<</say>>
<<say armani>>Of course. I'm looking forward to it...<</say>>
<<button "Continue" $return>>
<<lust "armani" 4>>
<<stat "armani" -5 "dominance">>
<<time 1>>
<</button>>
<<elseif $armani.dominance > 10>>
<<narrate>>She looks you up and down with disgust.<</narrate>>
<<say armani>>And what business is it of my slave anyway?<</say>>
<<narrate>>You grin.<</narrate>>
<<say mc>>Right, yes, sorry, of course.<</say>>
<<say armani>>Of course, what?<</say>>
<<say mc>>Of course, mistress.<</say>>
<<say armani>>Good boy. I'll leave my bedroom open at night, you can come make it up to me then.<</say>>
<<button "Continue" $return>>
<<lust "armani" 4>>
<<stat "armani" 5 "dominance">>
<<time 1>>
<</button>>
<<else>>
<<say mc>>Hmm, I just didn't expect you to be so easily moved.<</say>>
<<say armani>>Why not? It's really not that big of a deal.<</say>>
<<think mc>>I guess so...<</think>>
<<say armani>>Why don't you come see my new room one night? See for yourself.<</say>>
<<think mc>>See what for myself? Eh, what do I care, we both know what she really means.<</think>>
<div id="replace">
<<choices>>
<<link "Dominant Response">>
<<replace "#replace">>
<<say mc>>I will do so if I see fit. But make sure you're ready and waiting for me.<</say>>
<<say armani>>Excuse me?<</say>>
<<say mc>>You heard. Get yourself nice and wet, and if you're lucky, I might stop by.<</say>>
<<narrate>>You walk off before she can respond.<</narrate>>
<<button "Continue" housestuff>>
<<lust "armani" 4>>
<<stat "armani" -10 "dominance">>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<link "Submissive Response">>
<<replace "#replace">>
<<say mc>>Yes of course, mistress, anything you say.<</say>>
<<narrate>>She shivers with excitement at the word mistress.<</narrate>>
<<say armani>>Yes! Oh, good boy, I'll be sure to reward you later.<</say>>
<<button "Continue" housestuff>>
<<lust "armani" 4>>
<<stat "armani" 10 "dominance">>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<</if>>
<<case "planets">>
<<left2 _img>>
<<say "mc">>Have you ever thought about your home world?<</say>>
<<say "armani">>What kind of question is that? Of course I have.<</say>>
<<say "mc">>Would you ever want to revisit?<</say>>
<<say "armani">>Are you trying to get rid of me?<</say>>
<<say "mc">>No, no. Not at all. Just wondered if you'd like to see it again, is all.<</say>>
<<say "armani">>Before you arrived it was never really an option, it's something my sister and I had long stopped considering a possibility. But are you suggesting it is? We didn't know we were travelers before we were brought here, how will we know the address or whatever?<</say>>
<<say "mc">>I'd love to tell you how it works, but the Gateway doesn't need an exact set of coordinates, I'd guess it's probably like a database of aliases... but far more complicated.<</say>>
<<say "armani">>That seems awfully convenient... okay, I have no intention of staying there, everything and everyone I knew will be long gone... but it might be interesting to see how the world has changed.<</say>>
<<say "mc">>Great, let's go.<</say>>
<<say "armani">>Wait. Let me get $cassie.name, too. I'll meet you there.<</say>>
<<cont "armanianswers" "planets2">>
<<case "planets2">>
<<narrate>>You meet them both at the gateway.<</narrate>>
<<left2 "cassie/gway02.png">>
<<say "cassie">>I am quite intrigued, I never thought we'd get to see our world again. I wonder if our old house still stands.<</say>>
<<say "armani">>That old shithole? I doubt it!<</say>>
<<narrate>>The gateway opens up, but the pleasurable feeling you've come to expect from new worlds barely registers.<</narrate>>
<<think "mc">>Huh, maybe it's because I've grown in power since and the world has low requirements or something?<</think>>
<<say "armani">>We'll pop our head in, and be back in thirty to let you know if we want to stick around a bit longer.<</say>>
<<say "mc">>No problem.<</say>>
<<narrate>>$armani.name and $cassie.name step through.<</narrate>><<notice>>
<ul>
<li>$armani.name's & $cassie.name's home world is now available for expeditions.</li>
<li>You gained so little power from it, it doesn't even register.</li>
</ul>
<</notice>>
<<set $planets[7].unlocked = true>>
<<narrate>>You decide to wait around for them, making small talk with people in the waiting area. They return thirty minutes later looking sullen.<</narrate>>
<<say "cassie">>It's... gone. Everything, collapsed buildings, ruins... barely any people at all.<</say>>
<<say "mc">>What happened? Is it the right world?<</say>>
<<say "armani">>Yeah... they destroyed themselves. The population is a fraction of what it was. We met with a handful of survivors who assumed we'd got amnesia or something. But in short, greedy governments having drained their own lands of resources went to war for more... and well, destroyed most of the world in the process.<</say>>
<<say "mc">>That sounds awful.<</say>>
<<say "cassie">>It's certainly shocking, they had no such technology when we were there. I expected things to be different, but not like this.<</say>>
<<say "mc">>I'm sorry.<</say>>
<<say "armani">>What's done is done, and while I feel empathy towards those left, I do not feel any personal loss, I've long considered this hub my home.<</say>>
<<say "cassie">>I feel the same. But maybe we can send some expeditions out to this world to help the survivors from time to time?<</say>>
<<say "mc">>I think that can be arranged.<</say>>
<<button "Continue" gatewayb>>
<<like "armani" 4>>
<<like "cassie" 6>>
<<event "armani" "planets">>
<<time 2>>
<</button>>
<<case "jeast">>
<<block _img>>
<<say "mc">>I'm ready to head out East.<</say>>
<<say "armani">>Understood. I can't say I'm happy about it, but I'll get everything prepared for you.<</say>>
<<say "mc">>Anything I can do to help?<</say>>
<<say "armani">>You'd be more hindrance than help. You just chat to the party members tomorrow morning; I'll sort everything else out.<</say>>
<<say "mc">>Uh, right okay.<</say>>
<</block>>
<<say "armani">>Just before I stay up all night preparing everything, are you entirely sure you want to go tomorrow?<</say>>
<div id="replace">
<<choices>>
<<link "I'm ready">>
<<replace "#replace">>
<<say "mc">>Yes, I'm ready.<</say>>
<<say "armani">>Alright, everything will be ready for you tomorrow.<</say>>
<<button "Continue" housestuff>>
<<event "mc" "eastlocked">>
<<taskdone "departure">>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<link "Hold off">>
<<replace "#replace">>
<<say "mc">>Actually, I've got a few more things I need to do. Let me come back to you.<</say>>
<<narrate>>She holds her hands up in an annoyed gesture.<</narrate>>
<<say "armani">>Then why are you wasting my time? Talk to me when you're ready.<</say>>
<<button "Continue" housestuff>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
<br>
<<say "info" "Information">>
Once you decide to go, you'll be unable to interact with the hub or anyone left behind for quite some time. This is required to move the story forward, but it's important to ensure you've got your schedules setup and that there's nothing else you want to achieve before you go. It's recommended you take a separate save here, especially if you want to revisit with a different party. You will have some time tomorrow, but it will be limited.
<</say>>
</div>
<<case "awayparty">>
<<block _img>>
<<say "armani">>Ready to choose your away party?<</say>>
<<say "mc">>I guess, but other than an Eastlander, hasn't it really already been decided?<</say>>
<<say "armani">>Only that $britt.name and $krissy.name will accompany you. You need to choose an Eastlander and we've decided we want you to take another stray, though myself, $cassie.name and $moriah.name already have other duties.<</say>>
<<say "mc">>So you just need to know which of them I'm going to take?<</say>>
<<say "armani">>Correct, everyone has their own talents and knowledge. Hopefully you've gotten to know everyone well enough to make this decision.<</say>>
<</block>>
<<narrate>>She ushers you over to a nearby table and pulls out her phone.<</narrate>>
<<say "armani">>These devices are wonderful, by the way. So, here's what I have so far.<</say>>
<<narrate>>She shows you the phone.<</narrate>>
<div class="flex">
<div class="girlChoice hover upgraded"><img @src="setup.img+'britt/brittcrop.jpg'"><br>Security Detail - $britt.name</div>
<div class="girlChoice hover upgraded"><img @src="setup.img+'krissy/krissycrop.jpg'"><br>City Expert - $krissy.name</div>
</div>
<<say "armani">>So those are two we know are going. I don't really know $krissy.name, but she sounds like she will be extremely helpful. $britt.name we know will protect you and the others. There's no one more capable than her.<</say>>
<<button "Continue" armanianswers>>
<<temp "awayparty2">>
<</button>>
<<case "awayparty2">>
<<if $awaypartyeast != undefined>>
<<say "armani">>Changed your mind, huh? Who do you want to take instead?<</say>>
<<else>>
<<say "armani">>Which of the Eastlanders would you like to take? Their knowledge and connections may be of use to you.<</say>>
<</if>>
<div class="flex">
<<link '<div class="girlChoice hover upgraded"><img @src="setup.img+\'lexi/lexicrop.jpg\'"><br>$lexi.name</div>' armanianswers>>
<<temp "awayparty3">>
<<set $awaypartyeast = "lexi">>
<</link>>
<<link '<div class="girlChoice hover upgraded"><img @src="setup.img+\'monique/moniquecrop.jpg\'"><br>$monique.name</div>' armanianswers>>
<<temp "awayparty3">>
<<set $awaypartyeast = "monique">>
<</link>>
<<link '<div class="girlChoice hover upgraded"><img @src="setup.img+\'aubree/aubreecrop.jpg\'"><br>$aubree.name</div>' armanianswers>>
<<temp "awayparty3">>
<<set $awaypartyeast = "aubree">>
<</link>>
<<link '<div class="girlChoice hover upgraded"><img @src="setup.img+\'adria/adriacrop.jpg\'"><br>$adria.name</div>' armanianswers>>
<<temp "awayparty3">>
<<set $awaypartyeast = "adria">>
<</link>>
</div>
<<case "awayparty3">>
<<say "armani">>Great, and which of the remaining strays will you take?<</say>>
<<if $awaypartystray == undefined>>
<<say "mc">>Is another necessary? I already feel like the group is much bigger than I had planned. Five people is going to be a lot more difficult to hide than the three I originally planned!<</say>>
<<say "armani">>It is necessary. You are so much more than just our leader. All of us want to be there with you. But, we understand that's not feasible. This is the best compromise you are getting. <<if $mc.events.kaylagone != "no">>Obviously $kayla.name will need to sit this one out. Even in her transformed state there's still a small risk.<</if>><</say>>
<<narrate>>You sigh.<</narrate>>
<<say "mc">>Understood.<</say>>
<</if>>
<div class="flex">
<<link '<div class="girlChoice hover upgraded"><img @src="setup.img+\'molly/mollycrop.jpg\'"><br>$molly.name</div>' armanianswers>>
<<temp "awayparty4">>
<<set $awaypartystray = "molly">>
<</link>>
<<link '<div class="girlChoice hover upgraded"><img @src="setup.img+\'lacy/lacycrop.jpg\'"><br>$lacy.name</div>' armanianswers>>
<<temp "awayparty4">>
<<set $awaypartystray = "lacy">>
<</link>>
<<link '<div class="girlChoice hover upgraded"><img @src="setup.img+\'ember/embercrop.jpg\'"><br>$ember.name</div>' armanianswers>>
<<temp "awayparty4">>
<<set $awaypartystray = "ember">>
<</link>>
<<link '<div class="girlChoice hover upgraded"><img @src="setup.img+\'vanna/vannacrop.jpg\'"><br>$vanna.name</div>' armanianswers>>
<<temp "awayparty4">>
<<set $awaypartystray = "vanna">>
<</link>>
</div>
<<case "awayparty4">>
<<say "armani">>Okay. I'll get everyone prepared. If you do change your mind, come talk to me any time before you depart.<</say>>
<<say "mc">>Okay, and I guess I should let you know when I'm ready to depart?<</say>>
<<say "armani">>Yes, the night before, you'll set off about 22:00 the following day.<</say>>
<<say "mc">>Why so late?<</say>>
<<say "armani">>You'll arrive a few hours later when most people are sleeping. There will be some people out enjoying the nightlife, but that should mostly be in the city center; you'll be on the outskirts.<</say>>
<<say "mc">>Great, thanks $armani.name.<</say>>
<<say "armani">>No problem. Just remember to remove anyone from the work schedule that'll be accompanying you once you're ready to depart.<</say>>
<<narrate>>You nod.<</narrate>>
<<button "Continue" housestuff>>
<<if $tasks.partyselect != undefined >>
<<like "armani" 5>>
<<taskdone "partyselect">>
<</if>>
<<task "departure">>
<<time 1>>
<</button>>
<<case "war">>
<<block _img>>
<<say "armani">>I think it's time we let everyone know what's going on.<</say>>
<<say "mc">>I agree. Most are broadly aware, but they need the full details before things progress. Can you gather all residents tomorrow morning?<</say>>
<<say "armani">>Uhh... yeah. That's why I messaged you!<</say>>
<<narrate>>She seems to think for a moment.<</narrate>>
<<say "armani">>But I need to clarify something first.<</say>>
<<say "mc">>Of course.<</say>>
<</block>>
<<if $mc.events.kaylagone != "no">>
<<say "armani">>You're happy for $kayla.name to be present?<</say>>
<<say "mc">>Yes, we've worked through her misguided actions and she may have valuable information to help us. Everyone is aware of her actions, and to my knowledge have forgiven her. We can decide on more formal punishment once the current situation has been dealt with.<</say>>
<<say "armani">>Absolutely, I agree. I just expected I'd have to convince you.<</say>>
<<say "mc">>Anyone else?<</say>>
<</if>>
<<if $kylie.events.homeless != undefined>>
<<say "armani">>$kylie.name. I have no security concerns, but she's also not of our world. It may not be a comforting thing for her to reveal we're at war when she's only just settled here.<</say>>
<<say "mc">>She deserves to know if her home is in danger, though. I don't expect her to fight with us, but she should be informed.<</say>>
<<say "armani">>Understood.<</say>>
<<say "mc">>Anyone else?<</say>>
<</if>>
<<say "armani">>The Eastlanders.<</say>>
<<say "mc">>You mean the people I've known my entire life?<</say>>
<<narrate>>She shifts uncomfortably, but nods.<</narrate>>
<<say "mc">>I think they've more than proven that they're trustworthy. Had they been relaying information back to the East the same as $kayla.name, then $britt.name or $moriah.name would have caught it. They've been watched like a hawk ever since they got here. $kayla.name didn't have the same supervision.<</say>>
<<say "armani">>True.<</say>>
<<say "mc">>Anyone else you're worried about?<</say>>
<<say "armani">>No, I'll gather them together tomorrow; come to the lounge as soon as you wake.<</say>>
<<say "mc">>Thanks, $armani.name.<</say>>
<<button "Continue" househub>>
<<like "armani" 4>>
<<taskdone "warmeet01">>
<</button>>
<<case "dildo">>
<<block _img>>
<<say "mc">>I have a present for you, $armani.name.<</say>>
<<say "armani">>Is it that dildo you're trying to hide behind your back?<</say>>
<<narrate>>You bring it round into full view.<</narrate>>
<<say "armani">>Well aren't you a dirty boy! Need to get you cleaned right up.<</say>>
<<if $location == "bedrooms">>
<<narrate>>She grabs you by the collar and pulls you into the bathroom.<</narrate>>
<<else>>
<<say "armani">>Come with me.<</say>>
<<narrate>>You follow her back to her room. As soon as you are in the door, she grabs you by the collar and pulls you into the bathroom.<</narrate>>
<</if>>
<</block>>
<<say "armani">>We're gonna get you cleaned right up!<</say>>
<<say "mc">>Sure thing!<</say>>
<<narrate>>She runs the bath and starts undressing. You stand there admiring the visuals.<</narrate>>
<<center "armani/dildo01.jpg">>
<<if $armani.dominance > 0>>
<<say "armani">>Get naked. Now.<</say>>
<<else>>
<<say "armani">>Perhaps you'd also like to get naked?<</say>>
<</if>>
<<say "mc">>Don't mind me, just admiring the magnificence before me.<</say>>
<<narrate>>Your clothes are on the floor within a second.<</narrate>>
<<say "armani">>Mhhm, yes, that's more like it. Shall we?<</say>>
<<narrate>>You both step into the bathtub.<</narrate>>
<<center "armani/dildo02.jpg">>
<<narrate>>Your stiff cock comically pokes out the middle of the foam.<</narrate>>
<<say "armani">>Oh, you filthy boy, let me take care of that!<</say>>
<<narrate>>She points at a towel on the edge of the tub.<</narrate>>
<<if $armani.dominance > 0>>
<<say "armani">>Sit there and look at me. Not a word.<</say>>
<<else>>
<<say "armani">>Will you sit there for me while I take care of you?<</say>>
<</if>>
<<button "Continue" armanisex>>
<<temp "bathroombj">>
<<item "dildo" -1>>
<</button>>
<<case "champions">>
<<block _img>>
<<say "mc">>$armani.name, I think we have a mole, or an impostor or something like that.<</say>>
<<say "armani">>Explain yourself.<</say>>
<<say "mc">>There are nine strays, but there are only eight champions.<</say>>
<<say "armani">>I see. A mole for who?<</say>>
<<say "mc">>No idea, on my way to Gateway A now to get more information.<</say>>
<</block>>
<<say "armani">>Then lead on.<</say>>
<<say "mc">>I didn't think you could perceive her?<</say>>
<<say "armani">>Probably not, but worth trying. If what you told us previous is true about bonds, surely she's grown in power, no?<</say>>
<<say "mc">>I guess.<</say>>
<<say "armani">>Besides, I can be there should you do something stupid again.<</say>>
<<button "Continue" voiceanswers>>
<<temp "eight">>
<<like "armani" 2>>
<<set $mc.events.eight = "armani">>
<</button>>
<<case "meditogether">>
<<block "armani/garden02.jpg">>
<<say "mc">>Do you want to meditate together?<</say>>
<<say "armani">>I'm not really in the mood. My shoulder is killing me. I must have slept funny.<</say>>
<<say "mc">>How about a massage, then?<</say>>
<<say "armani">>Ha! There's no way a dunce like you knows how to massage effectively.<</say>>
<<say "mc">>Care to find out?<</say>>
<</block>>
<<say "armani">>Fine, but you make it worse and I'll bury you beneath the pansies.<</say>>
<<narrate>>You roll your eyes, a common reaction to $armani.name's conversation.<</narrate>>
<div id="replaceme">
<<button "Massage">>
<<replace "#replaceme">>
<<left2 "armani/gardenmassage.mp4" v>>
<<narrate>>You place your hands on her shoulders and slowly work your thumbs.<</narrate>>
<<say "armani">>Ah, mhhhm.<</say>>
<<say "mc">>Believe me now?<</say>>
<<say "armani">>Seems you have a use after all.<</say>>
<<say "mc">>I was always a great masseuse, learned from my aunt.<</say>>
<<say "armani">>How about a full body massage?<</say>>
<<if $armani.oral == 0>>
<<think "mc">>She blue-balled me in the lounge last time, but I think it's worth the risk.<</think>>
<<narrate>>Before you can say anything she pipes up.<</narrate>>
<<say "armani">>Don't worry, I've not forgotten our agreement. I won't be <i>entirely</i> selfish this time.<</say>>
<</if>>
<<say "mc">>Okay, let's do it.<</say>>
<<narrate>>She almost seems giddy at the prospect, a very unusual sight to behold in $armani.name.<</narrate>>
<<say "armani">>Let's go!<</say>>
<<say "mc">>You don't want to do it here?<</say>>
<<narrate>>She doesn't answer; she simply drags you to her room.<</narrate>>
<<if $buildings.spa != undefined>>
<<think "mc">>We have a fully functional spa facility with masseuses far more skilled than I. I think it's clear she's just using this as an excuse.<</think>>
<</if>>
<<button "Continue" armanisex>>
<<temp "gardenmassage">>
<</button>>
<</replace>>
<</button>>
</div>
<<case 'gatewaya'>>
<<left _img>>
<<right>>
<<say "mc">>I need to speak with the voice at the gateway. But it's best I don't do it alone, would you come with me?<</say>>
<<say "armani">>What the hell are you on about?<</say>>
<<say "mc">>I know there's a lot to process there, but basically there is a voice I can perceive when close to the gateway. But it drains me.<</say>>
<<think 'armani'>>Wait, is he just trying to get me alone?<</think>>
<<say "armani">>Why me?<</say>>
<<say "mc">>I trust you. While we may not be best friends, I can see you care about this place, and having spoken to you, certainly know a lot. I can think of nobody better to be with.<</say>>
<<think 'armani'>>The horn dog really does just want me alone... maybe if I play this right...<</think>>
<<say "armani">>Yeah, okay. But you'll owe me one.<</say>>
<<say "mc">>Fantastic, thank you. Let's go!<</say>>
<<narrate>>She blushes.<</narrate>>
<<say "armani">>This very second? You're very bold today.<</say>>
<<narrate>>You raise your eyebrow at her but think nothing else of it.<</narrate>>
<<say "armani">>Lead on.<</say>>
<<button "Continue" voicetalk>>
<<like "armani" 1>>
<<lust "armani" 2>>
<<set $mc.events.gatewayacompanion = 'armani'>>
<</button>>
<</right>>
<<case 'east'>>
<<left _img>>
<<right>>
<<say "mc">>You mentioned we trade with the people for food, but what do we provide them?<</say>>
<<say "armani">>Honestly, not a lot. Despite my distaste for the twats, they don't actually ask much of us in return for the food. They've made it clear we're not welcome, but, I don't know, it's almost like they fear us. It sometimes feels more like we're receiving a tribute than we are trading with them, though. We generally just give them whatever dregs have managed to come through the gateway, but I think it's more just a token gesture. Given the gateway provides fewer and smaller items as time passes, I daresay we'll find out soon enough.<</say>>
<<say "mc">>So you think it's sort of a bribe to stop you integrating into their society? Why not just let you starve.<</say>>
<<say "armani">>Your guess is as good as mine. They could easily have poisoned it too. Maybe it's just that they aren't quite so completely heartless as to just kill us off. There's probably a reason they formed trade links with us, but I've never bothered enough to find out.<</say>>
<<button "Continue" armani>>
<<if $armani.events.tradertalk is undefined>>
<<like "armani" 1>>
<<set $armani.events.tradertalk = 1>>
<</if>>
<<time 1>>
<</button>>
<</right>>
<<case "peepme">>
<<block _img>>
<<say "mc">>You know, I was just thinking about our situation.<</say>>
<<say "armani">>Go on, fill my head with your useless drivel.<</say>>
<<narrate>>You roll your eyes.<</narrate>>
<<say "mc">>Play it up in front of everyone all you like, but we both know who you're thinking of when you're alone at night.<</say>>
<<say "armani">>I think you've got that backwards.<</say>>
<</block>>
<<think "mc">>Hmm, how do I turn this about.<</think>>
<<say "mc">>What and who I think of in my room at night is none of your damn business, not like you can see what's going on behind closed doors anyway.<</say>>
<<think "armani">>Ah, is he finally starting to understand? Not the best attempt, but I guess I'll find out tonight.<</think>>
<<say "armani">>Ugh, whatever, I've got stuff to do.<</say>>
<<think "mc">>Did I pull it off? God knows, I'll find out tonight.<</think>>
<<button "Continue" armani>>
<<like "armani" 3>>
<<lust "armani" 1>>
<<run addNightEvent('armaniroombj')>>
<<time 1>>
<</button>>
<<case 'peek'>>
<<left _img>>
<<right>>
<<say "mc">>You know I don't mind attractive women peeking on me at night.<</say>>
<<narrate>>You shock even yourself after the brazen words have left your lips. $armani.name looks flustered for a moment, but quickly regains her composure.<</narrate>>
<<say "armani">>What are you blabbering on about?<</say>>
<<say "mc">>I think we both know exactly what I'm talking about.<</say>>
<<say "armani">>I'm I supposed to be telepathic now? Are you accusing me of something? Listen, if you want to leave your door ajar, so people can watch, that's your business. Leave me out of it.<</say>>
<<say "mc">>Oh, I get it. Yeah, back at you.<</say>>
<<say "armani">>What the fuck does that mean? Just— you know what? I don't care.<</say>>
<<think 'armani'>>God, he's dense.<</think>>
<<button "Continue" armani>>
<<if $armani.events.peektalk is undefined>>
<<like 'armani' 1>>
<<lust 'armani' 1>>
<<set $armani.events.peektalk = 1>>
<</if>>
<<time 1>>
<</button>>
<</right>>
<<case 'pool'>>
<<left _img>>
<<right>>
<<say "mc">>Wanna grab some rays by the pool?<</say>>
<<narrate>>$armani.name chuckles.<</narrate>>
<<think 'armani'>>I knew it! Perv!<</think>>
<<say "armani">>No. I go to the pool in the evenings.<</say>>
<<say "mc">>Right, sorry, yeah. Maybe I'll see you there.<</say>>
<<say "armani">>What? Are you going to come perv on me?<</say>>
<<think "mc">>Yup.<</think>>
<<say "mc">>No, just want to get to know you better.<</say>>
<<say "armani">>Yeah, sure. Evenings. Get some swim gear from $molly.name if you don't have anything.<</say>>
<<button "Continue" armani>>
/*<<time 0.25>>*/
<<task 'swimwear'>>
<<if $molly.events.swim == undefined>>
<<event "molly" "swim" 0>>
<</if>>
<</button>>
<</right>>
<<case 'long'>>
<<left _img>>
<<right>>
<<say "mc">>How long have you and $cassie.name been here?<</say>>
<<narrate>>$armani.name stares at you, seemingly debating something in her mind.<</narrate>>
<<say "armani">>Long enough to see empires rise and fall, short enough to still be surprised.<</say>>
<<say "mc">>What does that even mean? Is that something to do with the east?<</say>>
<<say "armani">>No. I was trying to give a polite answer to a rude question. But given that clearly doesn't work with you, let me use a simpler approach - none of your damn business.<</say>>
<<think "mc">>Clearly a touchy subject, I'd best let that one lie for now.<</think>>
<<button "Continue" armani>>
<<event "armani" "long">>
<<time 1>>
<</button>>
<</right>>
<<case 'Expeditions'>>
<<left _img>>
<<right>>
<<say "mc">>I was thinking about sending out some expeditions through the gateway.<</say>>
<<say "armani">>Oh? Why's that?<</say>>
<<say "mc">>We're going to need resources to improve the hub. I need to serve more travelers in order to gain more power.<</say>>
<<say "armani">>Seems logical. Why are you asking me?<</say>>
<<say "mc">>The others mentioned I should talk to you about logistics.<</say>>
<<say "armani">>Absolutely. Are you sure it's safe?<</say>>
<</right>>
<<say "mc">>I've sent travelers through, and it seems to be.<</say>>
<<say "armani">>Okay, if the others will go through, I'll allow it. However, the condition is we send something through on a rope and bring it back to ensure it's safe before anyone steps foot in there. Got it?<</say>>
<<say "mc">>Absolutely. Safety first.<</say>>
<<say "armani">>It goes without saying, if any of them wish to stay off world, this is not a prison, they of course are welcome to. I want that to be made clear ahead of time so none of them go through and run off without telling us. I want them to be comfortable to let us know they are safe and moved on, so we're not worrying something's happened.<</say>>
<<say "mc">>Makes sense.<</say>>
<<say "armani">>And we don't force anyone. Not everyone will want to go through. Likewise, there should always be at least two people going, so they can cover each other and if anything does go awry, hopefully one of them can return for backup.<</say>>
<<say "mc">>Understood.<</say>>
<<if $explorercount >= 2>>
<<say "armani">>Some of the others have already let me know they're interested, so meet me at the gateway when you're ready.<</say>>
<<say "mc">>Great, see you there soon!<</say>>
<<else>>
<<say "armani">>Very good, once you've got two willing participants - I am not one of them - meet me at the gateway.<</say>>
<<think "mc">>Great, I just need to ask the others if they are interested.<</think>>
<</if>>
<<taskdone "armaniexp">>
<<button "Continue" armani>>
<<like 'armani' 2>>
<<set $expeditions = 1>>
<<if $explorercount < 2>>
<<task "twoexp">>
<</if>>
<<time 1>>
<</button>>
<<case 'dislikeeast'>>
<<block _img>>
<<say "mc">>How come you dislike the Eastlanders so much when it seems to be they are the ones providing food?<</say>>
<<say "armani">>It's not that simple. Sure, I am grateful they share their food with us, but why did they abandon us to begin with? Most of the strays weren't here when the Eastlanders lived here, too. They shunned us, kept us at arms length. Never physically cruel and always ensured we had food and water, but they wouldn't interact, it's as if we were a burden they wanted nothing to do with, but were forced.<</say>>
<<say "mc">>So why did you stay with them?<</say>>
<<say "armani">>We arrived here, in an unknown place, just like you, with no knowledge of travelers, gateways or anything. We stayed with them, and that's a broad use of the term, for what scraps of information we may learn, and because we had no idea if we could get food anywhere else.<</say>>
<</block>>
<<say "mc">>I guess I can understand that.<</say>>
<<say "armani">>And their leader? She's a piece of work. The look of disgust she gave us when walking down the street, the feeling of being lower than dirt in her mind, it was aggravating. If not for $cassie.name, I probably would have punched her in her haughty face.<</say>>
<<say "mc">>Well, she sounds like a barrel of laughs.<</say>>
<<narrate>>$armani.name rolls her eyes.<</narrate>>
<<say "armani">>Just know that should you ever meet her, she's dangerous. Anyway, when they moved out east, they didn't even invite us, they packed up, well, barely anything to be honest, then left. The first we knew was seeing their convoy off in the distance. Scared, we thought to follow them, but then the gateway sprang to life and out came $britt.name. We decided not to let anyone else have the same fate as us, and we settled here proper. It was actually $britt.name's idea to try trading with the Eastlanders when food was becoming scarce.<</say>>
<<say "mc">>Thanks, $armani.name, I think I understand a bit better now.<</say>>
<<button "Continue" armani>>
<<if $armani.events.dislikeeast is undefined>>
<<like 'armani' 3>>
<<event 'armani' 'dislikeeast'>>
<</if>>
<<time 1>>
<</button>>
<<case 'flowers'>>
<<block _img>>
<<say "mc">>How come we can't grow food, but there are plenty of flowers around here?<</say>>
<<say "armani">>We did grow some vegetables here, but there wasn't that many, and let's just say there was some unpleasant digestive issues whenever we tried. No idea if there's something in the soil here or what, but we decided it just wasn't worth the risk.<</say>>
<<narrate>>She holds and sniffs a nearby flower.<</narrate>>
<<say "mc">>But the flowers are safe?<</say>>
<<say "armani">>Probably not if you ingest them. You know, I was allergic to pollen in my world, but I've always admired flowers. The transfer granted me this boon, curing me of the allergy. I'll sometimes come out here, and just meditate, surrounded by a small piece of nature.<</say>>
<<think "mc">>She's been unusually open about herself today. Let's see if I can get on her good side a little.<</think>>
<</block>>
<<say "mc">>You know the flowers aren't the most beautiful thing in the garden, right?<</say>>
<<say "armani">>What do you mean?<</say>>
<<say "mc">>They don't hold a candle to you. You are prettier, and more appealing, than any flower.<</say>>
<<say "armani">>Ha! Go blow smoke up someone else's ass, yeah?<</say>>
<<think "mc">>Well, that's certainly not what I expected.<</think>>
<<narrate>>Despite the rude response, she's grinning ear to ear.<</narrate>>
<<button "Continue" armani>>
<<if $armani.events.flowers is undefined>>
<<lust 'armani' 3>>
<<like 'armani' 3>>
<<event 'armani' 'flowers'>>
<</if>>
<<time 1>>
<</button>>
<<case "meditate">>
<<block _img>>
<<say "mc">>I've been trying to meditate, but I just can't seem to clear my thoughts. You mentioned you sometimes come out here to do it. Would you be able to help me?<</say>>
<<narrate>>She lets out a heavy sigh.<</narrate>>
<<say "armani">>Fine, come here.<</say>>
<<narrate>>She helps you with breathing exercises and focusing on peace in the first instance before clearing your mind.<</narrate>>
<<narrate>>It really helps! You're now more in tune with yourself. You feel like you'll be able to connect with people more easily as a result.<</narrate>>
<<button "Continue" househub>>
<<taskdone "meditate">>
<<event 'armani' 'meditate'>>
<<time 1>>
<</button>>
<</block>>
<<case "perv">>
<<say "mc">>I'm just gonna catch some sun.<</say>>
<<narrate>>She nods and lays back down on the pool chair.<</narrate>>
<<narrate>>You walk a little way then lay on the pool chair with a direct line of sight to $armani.name sunbathing.<</narrate>>
<<think "mc">>Damn, she has a killer body.<</think>>
<<narrate>>She shifts about on to a stool, spreading her legs directly in your direction as if putting on a show.<</narrate>>
<<center "armani/pool02.jpg">>
<<think "mc">>Shit, is that for me? No, there's no way, she'd kill me if she knew I was perving.<</think>>
<<narrate>>You try to be a little more discrete just in case, but can't help but notice she shifts into another alluring position a few moments later, and again, is facing your direction.<</narrate>>
<<center "armani/pool03.jpg">>
<<think "mc">>Hopefully I'm understanding the signals correctly. Let's test this out...<</think>>
<<if ($armani.events.poolperv == 4 || $armani.events.poolperv == 9) && $armani.dominance > 10>>
<<say mc>>Perhaps you need some help, mistress?<</say>>
<<say armani>>Say that again.<</say>>
<<say mc>>Perhaps you need some help, mistress?<</say>>
<<narrate>>She shivers at the words.<</narrate>>
<<say armani>>I fucking love it when you call me that. Come with my my lounger. Now. I need a good oiling.<</say>>
<<say mc>>Of course, anything for you... <i>mistress</i>.<</say>>
<<narrate>>She grins darkly.<</narrate>>
<<cont "armanisex" "p01">>
<<else>>
<<narrate>>You get up to head over to her, but as you do, someone calls her in from the kitchen.<</narrate>>
<<if $armani.events.poolperv ?? false>>
<<think mc>>Every goddamn time!<</think>>
<</if>>
<<if ($armani.events.poolperv == 4 || $armani.events.poolperv == 9) && $armani.dominance < -10>>
<<cont "armanisex" "p01">>
<<else>>
<<think "mc">>Dammit! Maybe I can get a bit further one day when nobody else is around.<</think>>
<<button "Continue" househub>>
<<lust 'armani' 3>>
<<event 'armani' 'poolperv'>>
<<time 1>>
<<run queueMessage(1, "armani", "beaman")>>
<<run queueMessage(1, "armani", "beaman2")>>
<<run queueMessage(1, "armani", "beaman3")>>
<</button>>
<</if>>
<</if>>
<<case "armaniPool">>
<<think mc>>
<<if $armani.dominance < -10>>
Who the hell does she think she is? I need to remind her she's my little sextoy and that she treats her master with respect! Next time I see her at pool, I don't give a shit who calls her, I'll remind her she listens to me first!
<<elseif $armani.dominance > 10>>
Shit, I pissed her off... how? I should talk to her. I don't want to upset my mistress.
<<else>>
Huh? What crawled up her butt? I guess I ought to find out.
<</if>>
<</think>>
<center>
<<button "Close">>
<<event "armani" "poolperv" 4>>
<<script>>
closeDialog();
<</script>>
<</button>>
</center>
<<default>>
Not written.
<<button "Continue" armani>>
<</button>>
<</switch>>
<</nobr>><<block "armani/concern.jpg">>
<<narrate>>You awake to see $armani.name staring at you with a concerned face.<</narrate>>
<<say "armani">>Oh, thank fuck you're awake! I dragged your sorry ass back here and just couldn't leave without making sure you came to.<</say>>
<<say "mc">>What the fuck, $armani.name?<</say>>
<</block>>
<<say "armani">>I know, I know. I'm sorry. I just got carried away in the moment. I like to be in charge, and you denying me so close to my orgasm just threw me for a loop.<</say>>
<<say "mc">>You've got fucking anger issues.<</say>>
<<say "armani">>I'm working on it, I hope this doesn't hurt our relationship, I won't tell you it won't happen again, but I'll try.<</say>>
<<think "mc">>She's fucking crazy.<</think>>
<div id="replaceme">
<<choices>>
<<link "Chastise Her">>
<<replace "#replaceme">>
<<say "mc">>You know what? No. Suck my dick.<</say>>
<<narrate>>She stares at you for a moment, then nods.<</narrate>>
<<say "armani">>That seems fair.<</say>>
<<say "mc">>What?<</say>>
<<narrate>>She slinks off the bed, throws her top off into the air and brings her face down to your cock.<</narrate>>
<<say "armani">>This is my apology.<</say>>
<<narrate>>She grabs your dick and guides the tip into her mouth.<</narrate>>
<div id="replaceme2">
<<button "Continue">>
<<replace "#replaceme2">>
<<vid "armani/sorry02.mp4">>
<<say "mc">>Oh yeah, just like that, fuck.<</say>>
<<narrate>>She continues to slurp down on your cock, all while occasionally glancing at you with a look of contempt.<</narrate>>
<<say "mc">>Shit.<</say>>
<<narrate>>She picks up the pace and begins massaging your balls. The feeling of her throat hitting your bellend sends spikes of pleasure reverberating down your penis.<</narrate>>
<<narrate>>She continues her relentless pursuit until you're struggling to contain your orgasm.<</narrate>>
<<say "mc">>Shit, I'm about to pop.<</say>>
<<narrate>>She doesn't stop, but instead starts massaging your glans with her tongue as she strokes your shaft.<</narrate>>
<<say "armani">>Give it to me. All of it.<</say>>
<<narrate>>You explode into her mouth, her eyes open wide as it hits the back of her throat, and you can see her struggling not to cough.<</narrate>>
<<say "mc">>Swallow it!<</say>>
<<narrate>>You hold her head on your dick, forcing her to comply before she can move away. You feel her swallowing with your dick still in her mouth, an odd sensation as her tongue pushes against you.<</narrate>>
<<say "mc">>Fuck, that was good.<</say>>
<<narrate>>You release her.<</narrate>>
<<say "armani">>Now we're even.<</say>>
<<narrate>>She picks up her top and storms off.<</narrate>>
<<if $armani.oral == 2>>
<<think "mc">>Well it's certainly a weird one with $armani.name, but I think it's going well. I'll try pushing things further with her.<</think>>
<<set $armani.lustlvl = 2>>
<</if>>
<<unlock "armani" "sorry">>
<<if $replay == false>>
<<toggleclass "#aftermorn" noshow>>
<<else>>
<<button "Continue" armani>>
<<unlock "armani" "sorry">>
<</button>>
<</if>>
<</replace>>
<</button>>
</div>
<</replace>>
<<stat "armani" -10 "dominance">>
<<lust "armani" 2>>
<</link>>
<br>
<<link "Forgive Her">>
<<replace "#replaceme">>
<<say "mc">>Shit happens, don't worry about it.<</say>>
<<think "mc">>After all I was peeping on her to start with.<</think>>
<<narrate>>Her demeanor changes from concern to pride.<</narrate>>
<<say "armani">>Glad to see you know your place. I'll speak to you later.<</say>>
<<narrate>>She struts off.<</narrate>>
<<think "mc">>The fuck?<</think>>
<<stat "armani" 10 "dominance">>
<<lust "armani" 2>>
<</replace>>
<<if $replay == false>>
<<toggleclass "#aftermorn" noshow>>
<<else>>
<<button "Continue" armani>>
<<unlock "armani" "sorry">>
<</button>>
<</if>>
<</link>>
<</choices>>
</div><<set $scene = 0>>
<<set _active = "armani">>
<<meet _active>>
<<set $return = returnLocation()>>
<<smallflirt _active>>
<<set _passage = _active+"answers">>
<<if $krissy.events.hotel != undefined && $armani.events.krissyroom == undefined>>
<<link "$krissy.name's Room" armanianswers>>
<<temp "gem">>
<</link>><br>
<</if>>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $armani.events.planets == undefined>>
<<link "Home World" armanianswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if $tasks.partyselect != undefined >>
<<link "Away Party" armanianswers>>
<<temp "awayparty">>
<</link>><br>
<</if>>
<<if $completeTasks.includes('partyselect') && !$completeTasks.includes('departure')>>
<<link "Away Party" armanianswers>>
<<temp "awayparty2">>
<</link>><br>
<</if>>
<<if $armani.events.what == 1 && $buildings.restaurant != undefined && $hour >= 12 && $hour < 20>>
<<opt "Date" _passage date>><</opt>>
<</if>>
<<if $armani.events.poolperv == 4 && $armani.dominance > -10>>
<<opt "Her Problem" _passage issue>><</opt>>
<</if>>
<<if task('departure') == true>>
<<link "Journey East" armanianswers>>
<<temp "jeast">>
<</link>><br>
<</if>>
<<if $tasks.warmeet01 != undefined >>
<<link "War Meeting" armanianswers>>
<<temp "war">>
<</link>><br>
<</if>>
<<if $items != undefined && $items.dildo > 0 && $armani.oral > 0 && $armani.events.dildo == undefined>>
<<link "Give Dildo" armanianswers>>
<<temp "dildo">>
<</link>><br>
<</if>>
<<if $tasks.eightchamps != undefined>>
<<link "Champions" armanianswers>>
<<temp "champions">>
<</link>>
<br>
<</if>>
<<if $armani.lust > 19 && $armani.events.meditate != undefined && $location == "garden">>
<<link "Meditate together" armanianswers>>
<<temp "meditogether">>
<</link>>
<br>
<</if>>
<<if $armani.lust > 29 && $armani.sex > 0 && $location == "garden">>
<<link "Outdoor Fun" armanisex>>
<<if $girlshere.includes('sophia') && $sophia.events.buff > 1>>
<<temp "garden-invite">>
<<else>>
<<temp "garden">>
<</if>>
<</link>>
<br>
<</if>>
<<if $armani.lust > 19 && $armani.events.peektalk != undefined>>
<<link "Alone at Night" armanianswers>>
<<temp "peepme">>
<</link>>
<br>
<</if>>
<<if $tasks.armaniexp isnot undefined>>
<<link "Expeditions" armanianswers>>
<<set $tempvar = "Expeditions">>
<</link>>
<br>
<</if>>
<<if $tasks.voicetalk isnot undefined>>
<<link "Gateway A visit" armanianswers>>
<<set $tempvar = "gatewaya">>
<</link>>
<br>
<</if>>
<<if $armani.events.tradertalk == undefined>>
<<link "Eastlanders Trade" armanianswers>>
<<set $tempvar = "east">>
<</link>>
<br>
<</if>>
<<if $armani.events.tradertalk isnot undefined && $location != "firstIntros" && $armani.events.dislikeeast == undefined>>
<<link "Eastlanders Dislike?" armanianswers>>
<<set $tempvar = "dislikeeast">>
<</link>>
<br>
<</if>>
<<if $armani.events.long == undefined>>
<<link "Time here" armanianswers>>
<<set $tempvar = "long">>
<</link>>
<br>
<</if>>
<<if $location != "pool" && $molly.events.swim is undefined && $location != "firstIntros">>
<<link "Pool hangout" armanianswers>>
<<set $tempvar = "pool">>
<</link>>
<br>
<</if>>
<<if $armani.events.buzzpeek isnot undefined && $armani.events.peektalk == undefined>>
<<link "Peeking" armanianswers>>
<<set $tempvar = "peek">>
<</link>>
<br>
<</if>>
<<if $location is "garden">>
<<if $armani.events.flowers == undefined>>
<<link "Flowers" armanianswers>>
<<set $tempvar = "flowers">>
<</link>>
<br>
<</if>>
<<if $armani.events.flowers == 1 && $tasks.meditate != undefined>>
<<link "Meditation" armanianswers>>
<<set $tempvar = "meditate">>
<</link>>
<br>
<</if>>
<</if>>
<<if $location is "pool" && (($armani.events.poolperv ?? 0) < 5 || ($armani.events.poolperv ?? 0) == 9)>>
<<link "Perv" armanianswers>>
<<set $tempvar = "perv">>
<</link>>
<br>
<</if>>
<<link "Never mind" $return>><</link>><<nobr>>
<<vid "/armani/bj01.mp4">>
<<narrate>>She grabs your cock and strokes while your bellend is pleasured in her warm mouth.<</narrate>>
<<narrate>>Every now and again, she gives you a dirty look, as if annoyed you're here and not just your cock.<</narrate>>
<<say "mc">>Fuck that's good. Who knew such a cocksucker was behind the ice queen's mask?<</say>>
<<narrate>>She stops and gives you the stink eye.<</narrate>>
<<say "armani">>Fuck you.<</say>>
<<think "mc">>Shit, is that it?<</think>>
<<say "armani">>Apologize.<</say>>
<<say "mc">>Huh?<</say>>
<<say "armani">>Apologize to your master or I'm done.<</say>>
<<think "mc">>The fuck?<</think>>
<<say "mc">>Sorry, $armani.name.<</say>>
<<narrate>>She returns her attention to your dick, the entire situation clearly having an effect on her, as she starts being more rough. It doesn't take long until you're about to explode.<</narrate>>
<<say "mc">>I'm gonna cum.<</say>>
<<say "armani">>Give it to me. Let me slurp that shit up.<</say>>
<<narrate>>You unload down her throat, the moment of pleasure quickly replaced with confusion.<</narrate>>
<<think "mc">>I can't work this woman out!<</think>>
<<if $tempvar2 != "empower">>
<<narrate>>She regains her composure relatively quickly.<</narrate>>
<<say "armani">>Well, I've a meeting to prepare for.<</say>>
<<narrate>>You watch with bemusement as she gets dressed and storms off.<</narrate>>
<</if>>
<<button "Continue" househub>>
<<unlock 'armani' 'gatewaya'>>
<<if $mc.events.lacysaidno is 1 || $tempvar2 == "empower">>
<<time 2.5>>
<<else>>
<<time 4.5>>
<</if>>
<</button>>
<</nobr>><<nobr>>
<<switch $tempvar>>
<<case 'doggy'>>
<<narrate>>You flip her over to try and exert some control.<</narrate>>
<<vid "/armani/loungesex02.mp4">>
<<say "mc">>Yeah, you like that bitch?<</say>>
<<say "armani">>Aaaa, god, fuck you cunt, I love it.<</say>>
<<narrate>>Matching her tone, you decide to thrust more violently.<</narrate>>
<<button "Continue" armaniloungesex>>
<<temp "reverse">>
<</button>>
<<case 'reverse'>>
<<vid "/armani/loungesex03.mp4">>
<<narrate>>She tries to take back some control, but purposefully looks away from you as she gets back atop your cock.<</narrate>>
<<say "armani">>Fuck fuck fuck. That's it. Give it to me. Give my twat your cock, you twat!<</say>>
<<say "mc">>The fuck, $armani.name?<</say>>
<<say "armani">>Just shut up and fuck me.<</say>>
<<narrate>>The two of you thrust against each other, angrily trying to force the other to climax first.<</narrate>>
<<say "armani">>Fuuuuck!<</say>>
<<narrate>>She starts thumping her left leg, and you feel her pussy tightening around you.<</narrate>>
<<say "mc">>My turn.<</say>>
<<narrate>>As her orgasm consumes her, you throw her back over and wank over her stomach. She looks at you with a mixture of lust and anger.<</narrate>>
<<center "armani/loungecum.jpg">>
<<narrate>>The two of you catch your breath on the sofa.<</narrate>>
<<say "armani">>That was a one-off, okay. Don't go thinking there's anything else in it. I was simply horny and you were there.<</say>>
<<say "mc">>I'm happy to be close by next time you're horny.<</say>>
<<if $tempvar2 == "empower">>
<<say "armani">>Whatever. I'm done here.<</say>>
<<else>>
<<say "armani">>Whatever. I've got a meeting to get ready for.<</say>>
<</if>>
<<think "mc">>Have I made any progress with her or not? Fuck knows!<</think>>
<<button "Continue" househub>>
<<unlock 'armani' 'gatewaya'>>
<<lust "armani" 2>>
<<if $mc.events.lacysaidno is 1 || $tempvar2 == "empower">>
<<time 3>>
<<else>>
<<time 5>>
<</if>>
<</button>>
<<default>>
<<narrate>>She straddles you, lowering herself on to your dick gently.<</narrate>>
<<vid "/armani/loungesex01.mp4">>
<<say "armani">>Fuck your cock is good.<</say>>
<<narrate>>She starts thrusting against you, almost angrily.<</narrate>>
<<button "Continue" armaniloungesex>>
<<temp "doggy">>
<</button>>
<</switch>>
<</nobr>><<nobr>>
<<switch $tempvar>>
<<case 'jeansbj'>>
<<vid "armani/jeansbj.mp4">>
<<narrate>>She greedily takes your bellend into her mouth, while every now and again shooting you daggers.<</narrate>>
<<narrate>>The contrary emotions from her only adds to your pleasure. She speeds up, trying hard to bring you to finish.<</narrate>>
<<narrate>>In an attempt to make the pleasure last a bit longer, you splutter out some words half coherently...<</narrate>>
<<say "mc">>Fuck your tits.<</say>>
<<say "armani">>You wanna fuck my titties? You fucking perv!<</say>>
<<narrate>>Despite that, moments later your cock is nestled between them.<</narrate>>
<<vid "armani/jeansbj01.mp4">>
<<say "armani">>You like that, you perv?!<</say>>
<<say "mc">>I fucking love it, slut.<</say>>
<<narrate>>She gives you an angry stare, but otherwise continues.<</narrate>>
<<narrate>>She senses your dick twitching... and stops.<</narrate>>
<<say "armani">>You do not call me slut. What do you say?<</say>>
<<think "mc">>What the fuck? She's holding my orgasm hostage because I called her a slut?<</think>>
<<if $armani.events.mistress is undefined>>
<div class="choices" id="opts1">
<h3>What to do?</h3>
<<link "Apologize">>
<<run updateStat('armani', 'dominance', 3)>>
<<toggleclass '#opts1' noshow>>
<<toggleclass '#sorry' noshow>>
<</link>>
<br>
<<link "Finish me off, SLUT.">>
<<run updateStat('armani', 'dominance', -3)>>
<<toggleclass '#opts1' noshow>>
<<toggleclass '#finish' noshow>>
<</link>>
</div>
<</if>>
<<if $armani.events.mistress != 'mistress'>>
<<set _mistress = "noshow">>
<</if>>
<<if $armani.events.mistress != 'slut'>>
<<set _slut = "noshow">>
<</if>>
<div id="sorry" @class="_mistress">
<<say "mc">>Sorry, I thought you'd enjoy dirty talk.<</say>>
<<say "armani">>From now on, you'll only speak when spoken to.<</say>>
<<narrate>>She lies on the sofa.<</narrate>>
<<say "armani">>Now fuck my tits until I'm covered in your seed!<</say>>
<<think "mc">>What the hell is going on?<</think>>
<<narrate>>Driven by lust, you think nothing more of it and fuck her tits until completion.<</narrate>>
<img @src="setup.img+'/armani/jeansfin.jpg'" class="centerimg">
<<say "armani">>You'll call me mistress from now on.<</say>>
<<narrate>>She picks up her clothes and leaves while you're trying to figure out what the hell just happened.<</narrate>>
<<if $armani.oral == 2>>
<<think "mc">>Well it's certainly a weird one with $armani.name, but I think it's going well. I'll try pushing things further with her.<</think>>
<<set $armani.lustlvl = 2>>
<</if>>
<<button "Sleep" sleep>>
<<like 'armani' 2>>
<<lust 'armani' 2>>
<<set $armani.events.mistress = 'mistress'>>
<<unlock "armani" "gatewaya2">>
<</button>>
</div>
<div id="finish" @class="_slut">
<<say "mc">>Get on your back, I'm going to fuck your tits until I finish, <em><b>slut</b></em>.<</say>>
<<narrate>>Her mouth opens and closes several times as she tries to comprehend your actions.<</narrate>>
<<say "armani">>Fuck it, I'm hornier than a two peckered billy-goat.<</say>>
<<think "mc">>That worked?! I half expected to be wanking myself off to completion, but there's no way I'm apologizing.<</think>>
<<narrate>>To your surprise, she's quickly on the sofa, sticking out her tongue waiting to catch your seed.<</narrate>>
<<narrate>>Fucking her tits while her sexy face is pleading for your cum drives you to completion.<</narrate>>
<img @src="setup.img+'/armani/jeansfin.jpg'" class="centerimg">
<<say "mc">>OH FUCK ME, YES!<</say>>
<<say "armani">>Ha! Maybe next time. Listen... I didn't think I'd like being told what to do... but, well, it wasn't awful. I'd be willing to try it again... but absolutely not a word to anyone else, or I will cut it off.<</say>>
<<say "mc">>For fuck's sake, $armani.name!<</say>>
<<narrate>>She gives you a sloppy kiss before you can protest further, grabs her clothes and abandons your room while you sit in shock.<</narrate>>
<<think "mc">>Next time, she's getting a good fuck!<</think>>
<<if $armani.oral == 2>>
<<think "mc">>Well it's certainly a weird one with $armani.name, but I think it's going well. I'll try pushing things further with her.<</think>>
<<set $armani.lustlvl = 2>>
<</if>>
<<button "Sleep" sleep>>
<<unlock "armani" "gatewaya2">>
<<like 'armani' 2>>
<<lust 'armani' 2>>
<<set $armani.events.mistress = 'slut'>>
<</button>>
</div>
<<case 'bj'>>
<<think "mc">>Not the first time she's spied on me. Honestly, it's kinda hot.<</think>>
<<narrate>>You try to undress sexily, but lacking any expertise, you look like you're simply struggling with the concept of clothing and flailing wildly.<</narrate>>
<<narrate>>There's a chuckle from the other side of the door.<</narrate>>
<<think "mc">>Here's my chance!<</think>>
<<say "mc">>Oh, and I suppose you can do better?<</say>>
<<narrate>>There's a brief moment of silence while you assume she's considering her next move.<</narrate>>
<<think 'armani'>>Screw it!<</think>>
<<block "armani/jeans01.jpg">>
<<say "armani">>Sit back and watch!<</say>>
<<narrate>>She bursts through the door and pushes you down on to the sofa.<</narrate>>
<<say "armani">>This is how you do it!<</say>>
<<think "mc">>Hell yes!<</think>>
<<narrate>>She very deliberately runs her hands through her hair, gives you a sly wink, then runs her hands down her body until they're resting atop her jeans.<</narrate>>
<<narrate>>Blowing you a kiss, she playfully pulls at her waistband before moving her hands back up to her breasts, squeezing them together while staring into your eyes seductively.<</narrate>>
<</block>>
<<block "armani/jeans02.jpg">>
<<narrate>>She then begins untying her top. At this point your dick is rock hard, and given you're sat in your underwear, is entirely noticeable.<</narrate>>
<<say "armani">>Well, the audience is certainly enjoying itself.<</say>>
<<narrate>>She throws her top on to the floor.<</narrate>>
<<say "mc">>It's definitely an enjoyable show, but what about unforgettable?<</say>>
<<down>>
<</block>>
<<block "armani/jeans03.jpg">>
<<narrate>>A cheeky grin appears on her face, and she sits on the chair opposite you, with her back facing you.<</narrate>>
<<narrate>>She looks back over her shoulder at you.<</narrate>>
<<say "armani">>You tell anyone and you're dead.<</say>>
<<say "mc">>Ah, there's the $armani.name I'm used to!<</say>>
<<narrate>>She rolls her eyes, but looks greedily at your crotch before crawling over to you.<</narrate>>
<<say "armani">>Get those off. I need your cock in my mouth already!<</say>>
<<button "Continue" armaninightvisits>>
<<set $tempvar = 'jeansbj'>>
<</button>>
<</block>>
<<case 'refuse'>>
<<narrate>>You wordlessly close the door. On the other side you hear a gasp.<</narrate>>
<<narrate>>There's a bang on the other side of your wall as if someone angrily kicked it.<</narrate>>
<<like "armani" -4>>
<<lust "armani" -4>>
<<button "Continue" bedroom>><</button>>
<</switch>>
<</nobr>><<nobr>>
<<scene>>
<<switch $tempvar>>
<<case "d01">>
<<narrate>>You head to the lounge twenty minutes later, figuring she'd need more than fifteen minutes to get ready. To your surprise, she's waiting for you.<</narrate>>
<<left2 "armani/date01.jpg">>
<<if $armani.dominance < -10>>
<<say mc>>Good. Red was a great choice. Come on, we're heading to the restaurant.<</say>>
<<say armani>>Yes, of course!<</say>>
<<else>>
<<say armani>>You're late.<</say>>
<<say mc>>Yes... sorry mistress, I thought you may want some additional time to get ready.<</say>>
<<say armani>>I don't care what you thought, I said fifteen minutes.<</say>>
<<think mc>>Yet she can't stop smiling!<</think>>
<<say armani>>Let's go before I change my mind. We're going to the restaurant; you're treat.<</say>>
<<say mc>>Of course!<</say>>
<</if>>
<<narrate>>She happily grabs your hand as you help her up.<</narrate>>
<center><em>A little white later...</em></center>
<<narrate>>As the night progresses, she shares more and more stories of her life with $cassie.name, what her home world was like, and all the adversity and complexities of coming to the hub and being shunned by the people here.<</narrate>>
<<say mc>>You really have been through so much...<</say>>
<<say armani>>What about you? Look at just how far you've come since coming here. Tell me what was your home world like?<</say>>
<<say mc>>Oh, I'm more interested in you.<</say>>
<<narrate>>She takes little encouragement to continue on, but you notice how much she enjoys talking about $cassie.name and how without her, she'd never have managed to adapt to living here.<</narrate>>
<<say mc>>I suspect that feeling is mutual. You two are a lot closer than I thought.<</say>>
<<say armani>>We're not that close, really. We both keep ourselves busy with work, of which there's been no shortage since you arrived!<</say>>
<<say mc>>Ah, sorry about that!<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say armani>>No, no. It's great, I love to be kept busy.<</say>>
<<think mc>>It's like she's a completely different person. No defense, completely open with me, and there's not even any role play. Is this the genuine $armani.name when she lets her hair down?<</think>>
<<narrate>>After dessert, you head back to the hotel.<</narrate>>
<<say armani>>That really was lovely, I haven't let my hair down like that for... I don't even know how long. Thank you.<</say>>
<<think mc>>I want to make a sarcastic comment right now, but I really don't want to spoil it.<</think>>
<<say armani>>Let me show you how much I appreciate it.<</say>>
<<think mc>>Glad I kept my mouth shut! Though I think we both knew how this date was going to end.<</think>>
<<narrate>>She ushers you to a room you're unfamiliar with at the far side of the hotel.<</narrate>>
<<say armani>>We had such a lovely time... it'd be a shame to end it there. Give me two minutes.<</say>>
<<narrate>>She opens the door a notch, slides inside and closes it, disallowing you to see anything inside.<</narrate>>
<<if $armani.dominance < -10>>
<<think mc>>I did tell her to wear some sexy lingerie...<</think>>
<</if>>
<<cont "armanisex" "d02">>
<<case "d02">>
<<narrate>>A few moments later, she opens the door.<</narrate>>
<<left2 "armani/date02.jpg">>
<<say mc>>Whoa...<</say>>
<<narrate>>She grins.<</narrate>>
<<say armani>>Definitely the reaction I wanted.<</say>>
<<narrate>>She tugs you by the hand toward the sofa.<</narrate>>
<<say armani>>It was obvious how this night would end...<</say>>
<<narrate>>You smile.<</narrate>>
<<say mc>>Oh, my, whatever do you mean?<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say armani>>I'd better take control before you ruin the moment.<</say>>
<<narrate>>She greedily pulls at your trousers.<</narrate>>
<<say mc>>I think I like where this is going...<</say>>
<<narrate>>She frees your cock, and watches with satisfaction it steadily grow in size as your thoughts run wild with anticipation.<</narrate>>
<<say armani>>I never get tired of that thing.<</say>>
<<narrate>>She licks the tip, sending a tremble of excitement up your spine.<</narrate>>
<<say armani>>And it always tastes so good...<</say>>
<<narrate>>She wraps her lips around your cock.<</narrate>>
<<cont "armanisex" "d03">>
<<case "d03">>
<<vid "armani/d01.mp4">>
<<narrate>>She rocks her head back and forth while sucking your cock.<</narrate>>
<<say mc>>Oh, fuck!<</say>>
<<narrate>>As she pauses to catch her breath, her hand slides up and down your shaft, not allowing you to go unattended for even a moment.<</narrate>>
<<narrate>>After nuzzling into your balls, she looks up at you.<</narrate>>
<<say armani>>No games today, I just want you to feel you inside me. I want you to fuck me hard, and I want you to fuck me good.<</say>>
<<narrate>>You grin.<</narrate>>
<<say mc>>I think we're on the same page.<</say>>
<<narrate>>She bends over on the sofa facing away from you, then grasps her ass cheeks and pulls them apart, stretching out her ass.<</narrate>>
<<think mc>>Okay... <b>now</b> we're on the same page.<</think>>
<<cont "armanisex" "d04">>
<<case "d04">>
<<vid "armani/d02.mp4">>
<<narrate>>You push inside her. She clenches around you as you hold your dick still for a moment.<</narrate>>
<<say armani>>Ahhh~ wow...<</say>>
<<narrate>>You start moving your hips back and forth, slowly at first, but encouraged by her passionate moans you quickly speed up.<</narrate>>
<<say armani>>Yes, yes, yes, yes, just right there!<</say>>
<<narrate>>Somehow the sex feels different, almost like your more connected than normal.<</narrate>>
<<say armani>>Oh, fuck, yes, yes! Ohhh~ that's so good!<</say>>
<<cont "armanisex" "d05">>
<<case "d05">>
<<vid "armani/d03.mp4">>
<<narrate>>Unused to this feeling, you slow down for a moment. You pull back too much, causing your next thrust to slide your cock over her pussy.<</narrate>>
<<say armani>>Ohh~ fuck. Get it back in there.<</say>>
<<narrate>>You pound away, something inside calling you, with increasingly greater urgency, to cum inside her.<</narrate>>
<<say armani>>Oh, yeah, just like that. Oh, my god. You're so hot!<</say>>
<<narrate>>You can tell even she's feeling it. Her words seem different to usual and filled with what you can only describe as awe.<</narrate>>
<<cont "armanisex" "d06">>
<<case "d06">>
<<vid "armani/d04.mp4">>
<<say armani>>Yes, ohhh~!<</say>>
<<narrate>>Her moans become increasingly frequent as you both grow closer to climax.<</narrate>>
<<say armani>>Ohhh~ fuck. Yes, yes. It's so fucking good. Right there!<</say>>
<<cont "armanisex" "d07">>
<<case "d07">>
<<vid "armani/d05.mp4">>
<<say armani>>Ohh~ yeah, just like that.<</say>>
<<narrate>>You feel more connected to her than you ever have. Almost like her emotions are connected to your own. The feeling scares you almost.<</narrate>>
<<say armani>>Fuck, yes, yes, yes, yes!<</say>>
<<narrate>>Despite everything, your lust still fuels you and as she screams, you feel yourself about to blow. An overwhelming desire inside you screaming to cum inside her.<</narrate>>
<<say mc>>Fuck, fuck, here it comes!<</say>>
<<say armani>>Yes, yes, cum inside me!<</say>>
<<think mc>>What the hell is this feeling?<</think>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<narrate>>Confused by the feeling, you decide not to risk it. You push her back to the sofa.<</narrate>>
<<say armani>>You can cum inside me... it's fine...<</say>>
<<vid "armani/d06.mp4">>
<<narrate>>You finish on her ass as she shouts for your seed.<</narrate>>
<<say mc>>Fucking hell, fuck!<</say>>
<<narrate>>As you both sit recovering, she questions you.<</narrate>>
<<say armani>>Why didn't you cum inside? I wanted to feel your warmth within me.<</say>>
<<say mc>>I wanted to, I really did. But it was like there was something inside me, calling me to do so, trying to control me... it was alarming.<</say>>
<<say armani>>I felt it... I felt so connected to you. For a brief moment, I felt like we were one. It felt more natural than anything I've ever felt.<</say>>
<<say mc>>But what if it's some weird lust aspect thing? I didn't want to risk it.<</say>>
<<narrate>>She scowls at you.<</narrate>>
<<say armani>>Yeah, way to ruin the mood. Fuck!<</say>>
<<narrate>>She storms off.<</narrate>>
<<think mc>>What the fuck? That wasn't normal, why did she want me to cum inside her so badly? Why did I want to? Those experiments $azul.name did, is this what she was looking for?<</think>>
<<button "Continue" homehub>>
<<event "armani" "what" 2>>
<<unlock "armani" "date">>
<<lust "armani" 8>>
<<like "armani" 4>>
<<time 2>>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "l01">>
<<vid "armani/l01s.mp4">>
<<narrate>>She grins, almost smugly, as you move your hand closer to her pussy.<</narrate>>
<<say armani>>You can play with it, don't be shy.<</say>>
<<if $armani.dominance < -10>>
<<say mc>>I'll do as I please, as will you.<</say>>
<<narrate>>She bites her lip.<</narrate>>
<<say mc>>Good girl.<</say>>
<<else>>
<<say mc>>Yes, mistress, of course!<</say>>
<</if>>
<<narrate>>She gasps with anticipation as you start to rub her clit.<</narrate>>
<<cont "armanisex" "l01d">>
<<case "l01d">>
<<vid "armani/l01d.mp4">>
<<say armani>>Just like old times...<</say>>
<<if $armani.dominance < -10>>
<<say mc>>Only this time, you obey me.<</say>>
<<narrate>>Wide-eyed, she nods in obeyance.<</narrate>>
<<say mc>>Good girl.<</say>>
<<else>>
<<say mc>>I aim to please.<</say>>
<</if>>
<<say armani>>You really know what you're doing there, huh?<</say>>
<<if $armani.dominance < -10>>
<<say mc>>Now, as I recall last time you blue balled me here.<</say>>
<<narrate>>You begins unbuttoning your jeans.<</narrate>>
<<say mc>>That won't happen this time.<</say>>
<<narrate>>Her face lights up with glee.<</narrate>>
<<say armani>>Yes, please master, I've been a good girl!<</say>>
<<else>>
<<say armani>>And you've been such a good boy, I think we both deserve a reward.<</say>>
<<narrate>>She begins unbuttoning your jeans.<</narrate>>
<<say mc>>Thank you mistress!<</say>>
<</if>>
<<cont "armanisex" "l02">>
<<case "l02">>
<<vid "armani/l02.mp4">>
<<say armani>>Ahh~ there you go.<</say>>
<<narrate>>From the moment of sliding inside, you're already fighting the urge to pound as hard as you can.<</narrate>>
<<say armani>>Fuck, your dick is big!<</say>>
<<narrate>>As her moans become louder, you're becoming increasingly bold.<</narrate>>
<<say armani>>Fuck! Keep going, fuck me good!<</say>>
<<cont "armanisex" "l03">>
<<case "l03">>
<<vid "armani/l03.mp4">>
<<say armani>>Slap my ass! Yeah, give it a nice little slap.<</say>>
<<say armani>>Ohh, yeah, just like that!<</say>>
<<cont "armanisex" "l04">>
<<case "l04">>
<<vid "armani/l04.mp4">>
<<say armani>>Ohh~ fuck!<</say>>
<<narrate>>You feel the desire congealing inside you, growing larger, and looking to escape.<</narrate>>
<<say armani>>You're so fucking deep... and your cock's so fucking big.<</say>>
<<cont "armanisex" "l05">>
<<case "l05">>
<<vid "armani/l05.mp4">>
<<say armani>>Oohhh~ just like that.<</say>>
<<narrate>>Her moans become almost deafening as she screams out in ecstasy.<</narrate>>
<<say armani>>Ahh! Yeah, just like that, just like that.<</say>>
<<narrate>>You can take no more, you're mere moments away from exploding.<</narrate>>
<<if $armani.dominance < -10>>
<<say mc>>Fuck, oh, shit. On your knees! I'm cumming.<</say>>
<<else>>
<<say mc>>Fuck, I can't hold it in, I'm cumming mistress!<</say>>
<</if>>
<<button "Cum" armanisex>>
<<temp "l06">>
<</button>>
<<case "l06">>
<<narrate>>She perches before you, hear face level with your cock as your jerk your desire free.<</narrate>>
<<vid "armani/l06.mp4">>
<<say mc>>Holy fucking <span style="font-size: 100%;">s</span><span style="font-size: 107.14%;">h</span><span style="font-size: 114.28%;">h</span><span style="font-size: 121.42%;">i</span><span style="font-size: 128.57%;">i</span><span style="font-size: 135.71%;">i</span><span style="font-size: 142.85%;">t</span><span style="font-size: 150%;">!</span><</say>>
<<narrate>>You shoot your load into her mouth with a surprising degree of accuracy, as she gratefully accepts.<</narrate>>
<<if $armani.dominance < -10>>
<<say mc>>You've definitely learned your place. Good girl.<</say>>
<<think mc>>Though she still loses herself in the moment sometimes, it's the foreplay that matters.<</think>>
<<else>>
<<say armani>>You treat me well, and obey, and there'll be more rewards like this.<</say>>
<<say mc>>Yes, mistress, I look forward to it.<</say>>
<</if>>
<<button "Continue" housestuff>>
<<unlock "armani" "l">>
<<event "armani" "fingerme" 3>>
<<lust "armani" 4>>
<<time 1.5>>
<</button>>
<<case "p01">>
<<if $armani.dominance > 10>>
<<narrate>>She follows you to her sun lounger.<</narrate>>
<<say armani>>Sit.<</say>>
<<narrate>>You follow her command obediently.<</narrate>>
<<say armani>>Good boy!<</say>>
<<left2 "armani/pool04.jpg">>
<<narrate>>There's an almost uncontrollable grin on her face as she pulls down her bikini top.<</narrate>>
<<say armani>>A little reward.<</say>>
<<narrate>>You notice her eyes dart to the sun lounger, you follow to see a bottle of oil. She steps back and bites her lip.<</narrate>>
<<say armani>>On your knees, I want you to crawl over to me with that oil.<</say>>
<<say mc>>I uhh...<</say>>
<<say armani>>I didn't ask for a commentary. Bring it to me.<</say>>
<<narrate>>You get on your hands and knees, grab the bottle and crawl over to her... a whole 2 meters away.<</narrate>>
<<think mc>>Well, it's the act that counts, not the distance.<</think>>
<<else>>
<<narrate>>As she starts walking away, you grab her wrist and stop her.<</narrate>>
<<say mc>>Where do you think you're going?<</say>>
<<say armani>>The fuck? You deaf or something?<</say>>
<<say mc>>I'm your master, not them.<</say>>
<<narrate>>Her eyes grow wide and she bites her lip.<</narrate>>
<<say armani>>Of course, master... I didn't mean anything by it.<</say>>
<<say mc>>You've got some atonement to do, <b>girl</b>.<</say>>
<<narrate>>She bites her lip even harder and sighs.<</narrate>>
<<say mc>>Strip for me.<</say>>
<<narrate>>She looks around.<</narrate>>
<<say mc>>Don't look around to see who is here; it doesn't matter because I've given you a command.<</say>>
<<left2 "armani/pool04.jpg">>
<<narrate>>There's an almost uncontrollable grin on her face as she pulls down her bikini top.<</narrate>>
<<say mc>>That's it, good girl.<</say>>
<<narrate>>You notice her eyes dart to the sun lounger, you follow to see a bottle of oil.<</narrate>>
<<say mc>>Oh, good idea! Let's see those titties oiled up.<</say>>
<</if>>
<<cont "armanisex" "p02">>
<<case "p02">>
<<if $armani.dominance > 10>>
<<narrate>>She reaches down and grabs it from you.<</narrate>>
<<say armani>>You really are being a good little boy today. Mhmmm... I'm feeling especially generous today.<</say>>
<<vid "armani/p01.mp4">>
<<think mc>>Noice!<</think>>
<<say armani>>I'm feeling the urge to have my little plaything pleasure me. You think you can do that for your mistress?<</say>>
<<narrate>>She starts lowering her bottoms.<</narrate>>
<<vid "armani/p02.mp4">>
<<think mc>>This is gonna be good...<</think>>
<<say armani>>Because I'm dripping wet, and I need someone to clean all that up.<</say>>
<<narrate>>She lays back on the lounger.<</narrate>>
<<vid "armani/p03.mp4">>
<<say armani>>Bring that filthy tongue of yours over here and show your mistress why she tolerates you.<</say>>
<<narrate>>As you start moving, someone shouts $armani.name from the kitchen. You pause.<</narrate>>
<<say armani>>For fuck's sake. They can wait, back to your—<</say>>
<<narrate>>The voice shouts again, a sense of urgency behind the words.<</narrate>>
<<say armani>>Oh, for crying out loud! Every goddamn time.<</say>>
<<narrate>>She sighs, calls back, and starts putting her bikini back on.<</narrate>>
<<think mc>>This is bullshit!<</think>>
<<say armani>>You. My room. Wait there with your cock out until I get there. I'm going to need a release after dealing with this.<</say>>
<<say mc>>How long will you be?<</say>>
<<say armani>>It doesn't matter, if I'm two minutes or five fucking years, you go do as I tell you!<</say>>
<<say mc>>Yes, of course, sorry mistress.<</say>>
<<cont "armanisex" "p03s">>
<<else>>
<<vid "armani/p01.mp4">>
<<say mc>>Quite the obedient one today, aren't you? Still not naked, though.<</say>>
<<say armani>>I'll fix that right away.<</say>>
<<narrate>>Someone calls $armani.name's again from the kitchen. This time, she doesn't so much as flinch, and maintains eye contact with you while pulling off her top and flinging it to one side.<</narrate>>
<<vid "armani/p02.mp4">>
<<say mc>>Oh, very nice. On the lounger. I think you've earned a reward.<</say>>
<<vid "armani/p03.mp4">>
<<narrate>>You grin darkly as a thought occurs.<</narrate>>
<<think mc>>I'm not man enough? I'm going to leave you begging for my cock! Ha!<</think>>
<<say mc>>Uh, hands off your pussy, I never said you could touch yourself.<</say>>
<<narrate>>She looks confused.<</narrate>>
<<say armani>>But I thought...<</say>>
<<say mc>>That's the problem. Don't think. Just follow my orders. Stay there, just like that. Not another word until I say.<</say>>
<<narrate>>She nods, her eyes growing increasingly lustful.<</narrate>>
<<think mc>>Hmmm, I could just fuck her, I definitely want to. But I'm trying to remind her I'm the master here.<</think>>
<<narrate>>You return to your own lounger and say nothing more to her.<</narrate>>
<<say armani>>Uhh.... master?<</say>>
<<say mc>>I thought I told you to be quiet?! Go wait in your room, I'll come play with you when, and only when, I'm good and ready.<</say>>
<<think armani>>Why is this such a turn on?<</think>>
<<narrate>>She starts collecting her things.<</narrate>>
<<say mc>>Leave everything here.<</say>>
<<say armani>>You want me to go through the hotel naked?<</say>>
<<say mc>>Do you have a problem with that?<</say>>
<<say armani>>N... No. I'll wait for you, master!<</say>>
<<think mc>>Okay, I just started ad-libbing there, I really didn't think she'd let me take it this far... I'll give her fifteen minutes just to prove the point, but I'm obviously not going to deny myself this pleasure.<</think>>
<<cont "armanisex" "p03d">>
<</if>>
<<case "p03s">>
<<narrate>>You head to her room, unsure if she'll turn up, but horny enough to try.<</narrate>>
<<think mc>>Is it weird I get turned on when barks commands at me?<</think>>
<<narrate>>You lay on her bed, and remembering her words, lower your trousers and let your cock flop out.<</narrate>>
<<think mc>>How long do I wait?<</think>>
<<narrate>>Your patience is rewarded around ten minutes later when she walks through the door.<</narrate>>
<<say armani>>Very good. Just as I asked.<</say>>
<<narrate>>She pulls off her bikini and flings it into the corner of the room.<</narrate>>
<<say armani>>Oh, look it at growing, I've got my little pet all excited, haven't I?<</say>>
<<think mc>>Pet? Whatever, I'm getting laid.<</think>>
<<narrate>>She leans over you and grabs your cock.<</narrate>>
<<center "armani/p02.jpg">>
<<say armani>>This is my fucking cock, you know that? I'm happy to share it with whoever, but this is my fucking cock, you hear that?<</say>>
<<narrate>>Her squeeze tightens when you don't answer immediately.<</narrate>>
<<say mc>>Yes! Of course!<</say>>
<<narrate>>She tightens her grip again.<</narrate>>
<<say armani>>Yes, what?<</say>>
<<say mc>>Yes, mistress!<</say>>
<<narrate>>You sigh with relief as she removes her hand.<</narrate>>
<<say armani>>Now, I'm going to use this cock until I'm satisfied, and you're gonna do your damnedest not to displease me. Got it?<</say>>
<<say mc>>Yes, mistress, anything you say!<</say>>
<<cont "armanisex" "p04s">>
<<case "p04s">>
<<stat "armani" 10 "dominance">>
<<narrate>>She wastes little time, bouncing vigorously on your cock almost immediately.<</narrate>>
<<vid "armani/p04s.mp4">>
<<say armani>>Ohh, it's so good.<</say>>
<<say armani>>Play with the clit while I jump on your cock. Mm-hmm. Like a good boy.<</say>>
<<narrate>>You feel a pang of excitement as she calls you a good boy.<</narrate>>
<<cont "armanisex" "p05">>
<<case "p03d">>
<<narrate>>You head to her room, unsure if you pushed it too far or not.<</narrate>>
<<narrate>>As you push into her room, you see her lying naked on the bed, she gives you a thin smile but says nothing more.<</narrate>>
<<center "armani/p01.jpg">>
<<think mc>>Holy shit...<</think>>
<<narrate>>She stares, saying nothing.<</narrate>>
<<say mc>>Now this deserves a reward...<</say>>
<<narrate>>You start unbuckling your belt.<</narrate>>
<<say armani>>I can't take it anymore!<</say>>
<<narrate>>She drags you down to the bed and frees your hard cock from its metaphorical shackles.<</narrate>>
<<say armani>>I've been so good... I just need that cock. Let me fucking ride it, please... master!<</say>>
<<narrate>>You grin.<</narrate>>
<<say mc>>Take your reward.<</say>>
<<narrate>>She lowers herself on to your cock with a quiver of excitement and a sigh of relief as she impales herself.<</narrate>>
<<cont "armanisex" "p04d">>
<<case "p04d">>
<<stat "armani" -10 "dominance">>
<<narrate>>She wastes little time, bouncing vigorously on your cock almost immediately.<</narrate>>
<<vid "armani/p04d.mp4">>
<<say armani>>Oh yeah~ just like that.<</say>>
<<narrate>>The two of you grunt and moan as you both work out your frustrations.<</narrate>>
<<say armani>>Ohh~ You are good with your fingers.<</say>>
<<say mc>>Yes, fucking ride that dick, show me what you're good for!<</say>>
<<cont "armanisex" "p05">>
<<case "p05">>
<<vid "armani/p05.mp4">>
<<say armani>>Oh yes! Uh-huh!<</say>>
<<say armani>>It's so fucking good. Fuck!<</say>>
<<cont "armanisex" "p06">>
<<case "p06">>
<<vid "armani/p06.mp4">>
<<say armani>>Oh, yes, just like that!<</say>>
<<narrate>>Letting the pent frustrations of the last hour or so go wild, you keep thrusting, faster and faster, harder and harder, until you're nearing your end.<</narrate>>
<<say armani>>Just like that!<</say>>
<<cont "armanisex" "p07">>
<<case "p07">>
<<vid "armani/p07.mp4">>
<<say armani>>Oh, fuck, that's so deep.<</say>>
<<narrate>>Her screams become louder and more vocal as she also races closer to climax.<</narrate>>
<<say armani>>Oh, my god, yes, yes, yes, yes!<</say>>
<<say armani>>Yeah, grab it. Yeah-huh, ohh~ just like that! Oh, yeah.<</say>>
<<narrate>>As her passionate screams echo around the room, you meet your limit.<</narrate>>
<<say mc>>Fuck, I'm cumming!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<narrate>>Still recovering from her own orgasm she kneels for you as you stroke your way to victory.<</narrate>>
<<vid "armani/p08.mp4">>
<<say mc>>Oh, my god, yes, fuck, yes!<</say>>
<<narrate>>You explode on to her face, a huge relief coming over you as your sticky goo drips down her nose.<</narrate>>
<<say armani>>Shit... I think we both needed that.<</say>>
<<narrate>>You flop back on to her bed.<</narrate>>
<<if $armani.dominance < -10>>
<<say armani>>Let me make sure I got every drop, master!<</say>>
<<narrate>>She licks your shaft up and down, ensuring she captures every drop of cum.<</narrate>>
<<else>>
<<say armani>>What the fuck do you think you're doing? I've got what I wanted from you, now you can leave. I'll call my little fuck doll back when it's wanted.<</say>>
<<say mc>>Yes, of course, mistress. Sorry.<</say>>
<<narrate>>You collect your things and scurry away.<</narrate>>
<</if>>
<<unlock "armani" "p">>
<<button "Continue" housestuff>>
<<set $location = "bedrooms">>
<<event "armani" "poolperv" 5>>
<<lust "armani" 6>>
<<time 2>>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "anal01">>
<<narrate>>You head down to her room, the lights are on and it sounds like she's already enjoying the night...<</narrate>>
<<vid "armani/room01.mp4">>
<<say mc>>Looks like someone's enjoying themselves.<</say>>
<<if $armani.dominance < -10>>
<<say armani>>Yes master... just the thought of you coming here tonight...<</say>>
<<say mc>>I think it's time my little cockslave got a reward.<</say>>
<<elseif $armani.dominance > 10>>
<<say armani>>Did I say you could speak?<</say>>
<<say mc>>Sorry mistress, the look of your pussy... I just couldn't help myself.<</say>>
<<else>>
<<say armani>>Even thinking about you turns me on.<</say>>
<<say mc>>Likewise, perhaps we can help each other...<</say>>
<</if>>
<<if $armani.events.dildo != undefined>>
<<say armani>>Recognize this toy? You got it for me...<</say>>
<<think mc>>Fucking bargain!<</think>>
<</if>>
<<if $armani.dominance < -10>>
<<say mc>>Make room. I want you to ride my cock. I want to feel every inch of your pussy clench my shaft as you scream my name.<</say>>
<<say armani>>Yes, sir, yes!<</say>>
<<elseif $armani.dominance > 10>>
<<say armani>>Lay down. I'm going ride my little slave until I'm satisfied.<</say>>
<<say mc>>Of course, mistress.<</say>>
<<else>>
<<say armani>>Lay on the bed, I'm going to ride you like an animal.<</say>>
<<say mc>>Fuck yes.<</say>>
<</if>>
<<cont "armanisex" "anal02">>
<<case "anal02">>
<<vid "armani/room02.mp4">>
<<narrate>>You're barely inside her for a second before you just let loose, full throttle from the get go.<</narrate>>
<<say "armani">>Oh, fuck yes!<</say>>
<<narrate>>She screams and moans under the onslaught.<</narrate>>
<<say armani>>My pussy's good... but I've been training my ass for that dick.<</say>>
<<think mc>>You don't need to tell me twice.<</think>>
<<cont "armanisex" "anal03">>
<<case "anal03">>
<<vid "armani/room03.mp4">>
<<narrate>>You slowly side your cock into her ass, gently rocking back and forth allowing her to get used to the feeling.<</narrate>>
<<say armani>>Yes, fuck... yes... you can go a little faster now.<</say>>
<<cont "armanisex" "anal04">>
<<case "anal04">>
<<vid "armani/room04.mp4">>
<<say armani>>Yes, that's so fucking good, you're so deep. Fuck, I love your cock.<</say>>
<<say armani>>It's so fucking good. Fuck, right there!<</say>>
<<cont "armanisex" "anal05">>
<<case "anal05">>
<<vid "armani/room05.mp4">>
<<say armani>>Oh, my god. Right there.<</say>>
<<say armani>>I'm gonna cum. I'm cumming. Oh~ I'm cumming, I'm cumming.<</say>>
<<cont "armanisex" "anal06">>
<<case "anal06">>
<<vid "armani/room06.mp4">>
<<say armani>>Oh fuck, right there. Just like that, just like that.<</say>>
<<narrate>>Her moans and voice become ever more high-pitched as the orgasm takes hold.<</narrate>>
<<say armani>>I'm gonna cum. I'm gonna cum again. Cum with me!<</say>>
<<say armani>>Oh fuck, I'm cumming. Cum for me! Cum with me. Fuck, fuck, fuck! Oh, my god, I'm cumming, I'm cumming, I'm cumming!<</say>>
<<say mc>>Oh, fuck, fuck, fuck.<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "armani/room07.mp4">>
<<say mc>>Yes, $armani.name, yes, fuck!<</say>>
<<narrate>>You explode on her stomach while she just happily grins at you.<</narrate>>
<<say armani>>That was... holy shit...<</say>>
<<say mc>>Yeah...<</say>>
<<narrate>>You both giggle at one another, but her denouement changes a moment later.<</narrate>>
<<if $armani.dominance < 0>>
<<say armani>>I hope I pleased you tonight.<</say>>
<<say mc>>Oh, very much so. You should be looking forward to my next visit.<</say>>
<<else>>
<<say armani>>You did well. You've pleased your mistress. But you shouldn't become complacent, I expect to see you back here soon.<</say>>
<<say mc>>Oh, yes... of course.<</say>>
<</if>>
<<button "Sleep" sleep>>
<<unlock "armani" "nanal">>
<<lust "armani" 4>>
<<like "armani" 4>>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "garden-invite">>
<<think "mc">>Hmm, $sophia.name is here too... should I see if she wants to watch?<</think>>
<<choices>>
<<link "Yes" sophiaanswers>>
<<temp "aud-armani">>
<</link>><br>
<<link "No" armanisex>>
<<temp "garden">>
<</link>>
<</choices>>
<<case "garden">>
<<narrate>>You reach over and whisper in $armani.name's ear.<</narrate>>
<<if $armani.dominance > 0>>
<<say "mc" "" "(Whispering)" "whisper">>Mistress, is there anything I can do that may please you?<</say>>
<<narrate>>She grins.<</narrate>>
<<say "armani">>Good boy! You know, I think there is.<</say>>
<<narrate>>She begins to undress.<</narrate>>
<<say "armani">>Get your cock out and fuck your mistress until she cums!<</say>>
<<say "mc">>As you say, mistress.<</say>>
<<if $sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Garden">>
<<narrate>>You notice $sophia.name at the other side of the garden.<</narrate>>
<<think "mc">>Let's see how long she sticks around for the show!<</think>>
<</if>>
<<button "Continue" armanisex>>
<<temp "garden02">>
<</button>>
<<else>>
<<say "mc" "" "(Whispering)" "whisper">>Suck my dick. Now.<</say>>
<<narrate>>She noticeably shivers.<</narrate>>
<<say "armani">>Yes, of course master!<</say>>
<<if $sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Garden">>
<<narrate>>You notice $sophia.name at the other side of the garden.<</narrate>>
<<think "mc">>Let's see how long she sticks around for the show!<</think>>
<</if>>
<<button "Continue" armanisex>>
<<temp "garden01">>
<</button>>
<</if>>
<<case "garden01">>
<<vid "armani/garden02.mp4">>
<<narrate>>Within seconds she's at your feet with your cock in her mouth.<</narrate>>
<<say "mc">>Oh fuck yes. I love it, slut!<</say>>
<<narrate>>You feel a brief sensation in your dick, like she was about to bite down then thought better of it.<</narrate>>
<<think "mc">>I guess she's still herself after all, even if a bit more submissive. Thank god she stopped herself.<</think>>
<<button "Continue" armanisex>>
<<temp "garden02">>
<</button>>
<<case "garden02">>
<<narrate>>She throws your shirt on the floor then bends over in front of you.<</narrate>>
<<vid "armani/garden03.mp4">>
<<narrate>>The warmth of her pussy compared to the cold air leaves you with goosebumps.<</narrate>>
<<say "armani">>Aaaah, fuck!<</say>>
<<narrate>>She pushes back as you thrust, hungry for more. You fall back on to the grass, but she doesn't let your dick free for even a moment as she shuffles her body back in time with you.<</narrate>>
<<button "Continue" armanisex>>
<<temp "garden03">>
<</button>>
<<case "garden03">>
<<vid "armani/garden04.mp4">>
<<narrate>>You push upwards, harder and faster, eager to finish her off.<</narrate>>
<<say "armani">>I'm gonna cum. I'm gonna cum!<</say>>
<<narrate>>Her left leg goes into spasm as the pleasure takes over. With your own crescendo at hand, you feel yourself explode as her cries carry across the garden.<</narrate>>
<<say "mc">>Holy fucking shit yes, $armani.name! Yes!<</say>>
<<narrate>>The two of you lay in the grass for a moment, sweaty and exhausted.<</narrate>>
<<if $armani.dominance > 0>>
<<say "armani">>Go on then, fuck off before anyone sees me with your sorry ass.<</say>>
<<narrate>>You grin.<</narrate>>
<<say "mc">>Of course, mistress.<</say>>
<<think "mc">>I don't mind playing this game, but she does realize we've made no attempt to hide this, right?<</think>>
<<else>>
<<say "armani">>Did I please you, master?<</say>>
<<say "mc">>That you did. I hope to make use of your holes again soon.<</say>>
<<say "armani">>Excuse me? My holes? Sorry... I mean, yes master. Of course.<</say>>
<<narrate>>You can't help but laugh. She just gives you a dirty look and grabs her clothes.<</narrate>>
<</if>>
<<if $sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Garden">>
<<think "mc">>I was a little engrossed so I'm not sure how long $sophia.name was watching.<</think>>
<</if>>
<<if $tempvar3 == "sophiawatch">>
<<think "mc">>Looks like $sophia.refer enjoyed the show too.<</think>>
<</if>>
<<button "Continue" housestuff>>
<<unlock "armani" "gardenfun">>
<<if ($sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Garden") || $tempvar3 == "sophiawatch">>
<<set $sophia.events.watched++>>
<<corrupt "sophia" 2>>
<<lust "sophia" 3>>
<<set $tempvar3 = "">>
<</if>>
<<lust "armani" 3>>
<<like "armani" 3>>
<<temp "">>
<<time 1.5>>
<</button>>
<<case "pensive">>
<<vid "armani/pensive01.mp4">>
<<narrate>>You grab her tits as she bounces up and down on your dick.<</narrate>>
<<say "mc">>This is just what I needed. Fuck yes!<</say>>
<<narrate>>Her moans grow louder as the headboard bangs against the wall.<</narrate>>
<<button "Continue" armanisex>>
<<temp "pensive02">>
<</button>>
<<case "pensive02">>
<<narrate>>You shift about on the bed, getting comfortable ready to fuck her hard.<</narrate>>
<<vid "armani/pensive02.mp4">>
<<say "armani">>Oooaaa, yeah.<</say>>
<<narrate>>You furiously and repeatedly thrust your hips upwards, as if channeling your frustrations into her pussy.<</narrate>>
<<say "mc">>God fucking yes.<</say>>
<<narrate>>You shrug her off you, get on your knees, then grab her ass and continue pounding.<</narrate>>
<<button "Continue" armanisex>>
<<temp "pensive03">>
<</button>>
<<case "pensive03">>
<<vid "armani/pensive03.mp4">>
<<narrate>>She claws at the sheets as she tries to contain her pleasure.<</narrate>>
<<say "armani">>Show me how much you like it!<</say>>
<<narrate>>Encouraged by her words, you go into a lust overdrive. You become increasingly rougher and faster each time your thighs thump against her ass.<</narrate>>
<<say "armani">>Oh, shit!<</say>>
<<narrate>>As she bites the pillow, your frustrations erupt inside her.<</narrate>>
<<set _c = $armani.name.toUpperCase()>>
<<say "mc">>Fuck, yes, _c! YES!<</say>>
<<narrate>>You lay back on the bed, exhausted, your mind now clear and free, you fall asleep almost instantly.<</narrate>>
<<button "Sleep" sleep>>
<<temp "relaxdream">>
<<event "armani" "pensive">>
<<lust "armani" 4>>
<<like "armani" 4>>
<<unlock "armani" "pensive">>
<</button>>
<<case "gardenmassage">>
<<say "armani">>Let's see what you can really do with those hands.<</say>>
<<narrate>>She vanishes into the bathroom for a moment, returning with just a towel on.<</narrate>>
<<say "armani">>It's so great that you're not useless after all.<</say>>
<<say "mc">>Listen, I'm not just gonna—<</say>>
<<narrate>>She drops her towel.<</narrate>>
<<block "armani/massage01.jpg">>
<<say "armani">>Sorry, what was that?<</say>>
<<say "mc">>Nothing, just admiring the view.<</say>>
<<say "armani">>Whatever, just get massaging.<</say>>
<<narrate>>She lays down on the bed, face up.<</narrate>>
<<say "mc">>You want to me start on the front?<</say>>
<<say "armani">>Well, you said you liked the view. Get on with it then.<</say>>
<</block>>
<<think "mc">>To hell with it.<</think>>
<<narrate>>You oil up your hands and gently start rubbing her stomach.<</narrate>>
<<vid "armani/massage01.mp4">>
<<say "armani">>Mhhhmm, that's good. Don't forget my tits, though.<</say>>
<<think "mc">>Well, not like I'm going to give that chance up, huh?<</think>>
<<narrate>>You grab her breasts and continue to knead.<</narrate>>
<<say "armani">>Mhhmm, yes, that feels good.<</say>>
<<narrate>>She grabs your hand.<</narrate>>
<<say "armani">>Let's not forget, it's meant to be a full body massage.<</say>>
<<narrate>>She pushes your hand down to her pussy.<</narrate>>
<<say "armani">>Get it right up in there.<</say>>
<<button "Continue" armanisex>>
<<temp "gardenmassage01">>
<</button>>
<<case "gardenmassage01">>
<<vid "armani/massage02.mp4">>
<<say "armani">>Mhhhm, yes. There you go.<</say>>
<<narrate>>Your oily fingers slip in and out with ease while her groans continue to escalate. The noise of your wet palms slapping against her only serves to inflate your lust, and you feel your cock fighting to be unleashed.<</narrate>>
<<say "armani">>Fuck, that's good. Keep going, keep going.<</say>>
<<narrate>>You pick up the pace as your dick continues to seek freedom.<</narrate>>
<<say "armani">>Yes, fuck god. Yes $name!<</say>>
<<narrate>>Her mouth clamps down on your free hand, biting it as her left leg spasms and her moans echo across the room.<</narrate>>
<<say "mc">>The fuck? That fucking hurt!<</say>>
<<say "armani">>Shit, that was good. Don't be a baby.<</say>>
<<narrate>>She glances at your crotch.<</narrate>>
<<say "armani">>Looks like someone's excited.<</say>>
<<narrate>>While you're still checking your hand to see if she drew blood, she deftly pulls down your shorts and grabs your cock.<</narrate>>
<<say "armani">>Are you seriously looking at your hand right now?!<</say>>
<<narrate>>She gets off the bed, grunting angrily before pushing you down on to it.<</narrate>>
<<say "armani">>I'll make it up to you, just stop being so pathetic.<</say>>
<<narrate>>Almost angry, she grabs your dick and gobbles it down, all while scornfully looking into your eyes.<</narrate>>
<<button "Continue" armanisex>>
<<temp "gardenmassage02">>
<</button>>
<<case "gardenmassage02">>
<<vid "armani/massage03.mp4">>
<<narrate>>She works your shaft with her hand while massaging the tip with her tongue.<</narrate>>
<<say "armani">>You like that, huh?<</say>>
<<say "mc">>I fucking love it.<</say>>
<<narrate>>She cackles while your dick is in her mouth, sending a strange sensation reverberating through your groin and into your stomach.<</narrate>>
<<say "mc">>Shit, fuck me.<</say>>
<<narrate>>She picks up the pace, taking you further and harder each time she bobs her head up and down.<</narrate>>
<<narrate>>Occasionally as her hair whips across your abs, you feel tingles of pleasure race down your body, and you feel yourself clenching your ass and throwing your hips upwards.<</narrate>>
<<say "armani">>Mhhhm, someone's getting excited.<</say>>
<<narrate>>She starts pumping you even harder. You feel your passion conjugating in your dick, ready to burst.<</narrate>>
<<say "mc">>Fuck me, I'm gonna burst.<</say>>
<<narrate>>She holds your cock in her mouth and furiously strokes as you dump your cum directly down her throat.<</narrate>>
<<say "mc">>Shit a brick, fuuck.<</say>>
<<narrate>>You hear her swallow as you lay back and relax in the aftermath of your pleasure.<</narrate>>
<<say "armani">>Soon forgot about your boo-boo, huh?<</say>>
<<narrate>>You laugh together for a moment before she gives you a serious look.<</narrate>>
<<say "armani">>Alright, get your shit and go now.<</say>>
<<say "mc">>What the fuck?<</say>>
<<say "armani">>You heard me, fuck off.<</say>>
<<narrate>>You pull your pants back up and leave.<</narrate>>
<<think "mc">>What the hell is her problem? I can't cope with these mixed signals.<</think>>
<<if $armani.oral == 2>>
<<think "mc">>That said, I think we've got along quite well recently despite it, maybe I should try pushing things further forward.<</think>>
<<set $armani.lustlvl = 2>>
<</if>>
<<button "Continue" housestuff>>
<<lust "armani" 2>>
<<like "armani" 3>>
<<unlock "armani" "gardenmassage">>
<<time 1>>
<</button>>
<<case "fingerbang">>
<<vid "armani/finger01.mp4">>
<<narrate>>As you continue to rub her clit, she starts barking orders at you.<</narrate>>
<<say "armani">>That's good, put your fingers in.<</say>>
<<narrate>>Using two fingers you comply, pushing in and out, faster and faster as her moans increase in volume. Your cock twitches with every repetition.<</narrate>>
<<say "armani">>Mhhhm, fuck yeah.<</say>>
<<narrate>>With your other hand, you start unbuckling your belt.<</narrate>>
<<say "armani">>What the fuck do you think you're doing?<</say>>
<<say "mc">>Uh, getting my dick out?<</say>>
<<say "armani">>And who said you could do that. Focus on my pleasure.<</say>>
<<think "mc">>I don't know if this is some sort of mind game, but I can wait a bit longer.<</think>>
<<narrate>>You increase the intensity, and she stops ordering you about for a moment.<</narrate>>
<<say "armani">>Mhhhhm, that's good, fuck yeah.<</say>>
<<narrate>>You reach around with your other hand and vigorously rub her clit, determined to take her to the edge quickly, so you can get yours.<</narrate>>
<<say "armani">>Yes, fuck GOD YES!<</say>>
<<narrate>>She grabs your hand and squeezes hard as her left leg starts shaking. She lets out an almighty exclamation of pleasure as you bring her to orgasm.<</narrate>>
<<say "armani">>OH, FUUUUCK.<</say>>
<<block "armani/finger01.jpg">>
<<narrate>>She lies on the couch still for a moment as she catches her breath.<</narrate>>
<<say "armani">>That wasn't bad. Aright. You can go now.<</say>>
<<say "mc">>The fuck?<</say>>
<<say "armani">>I'm done. You're no longer needed.<</say>>
<div id="togo">
<<choices>>
<<link "Stand Ground">>
<<replace "#togo">>
<<say "mc">>No! You can fuck right off.<</say>>
<<narrate>>She looks at you, her eyes full of lust.<</narrate>>
<<say "armani">>Fine. I get it, but not tonight. I'll be more amicable in the future.<</say>>
<</replace>>
<<replace "#replaceme">>
<<say "mc">>You better fucking be, if you blue ball me twice, you ain't getting shit ever again.<</say>>
<<think "armani">>Fuck, it's actually kinda hot to be spoken to like that.<</think>>
<<narrate>>You storm off.<</narrate>>
<<button "Continue" househub>>
<<stat "armani" -10 "dominance">>
<<lust "armani" 3>>
<<like "armani" 1>>
<<if $armani.lustlvl == 0>>
<<set $armani.lustlvl = 1>>
<</if>>
<<unlock "armani" "finger">>
<<event "armani" "fingerme" 2>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Leave">>
<<replace "#togo">>
<<arr>>
<</replace>>
<<replace "#togo">>
<<say "mc">>You know what, fuck this!<</say>>
<<narrate>>You storm off.<</narrate>>
<<think "armani">>Hmmm, I guess next time I should let him get a bit further before I lose my pet.<</think>>
<<button "Continue" househub>>
<<stat "armani" 10 "dominance">>
<<lust "armani" 3>>
<<if $armani.lustlvl == 0>>
<<set $armani.lustlvl = 1>>
<</if>>
<<unlock "armani" "finger">>
<<event "armani" "fingerme" 2>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<</block>>
<div id="replaceme">
</div>
<<case "bathroombj">>
<<narrate>>With a gleeful lust in her eye she starts 'washing' your cock.<</narrate>>
<<vid "armani/dildo01.mp4">>
<<say "armani">>Y'know...<</say>>
<<narrate>>She looks up at you while squashing her tits together.<</narrate>>
<<if $armani.dominance > 0>>
<<say "armani">>Put your dick between my tits, dog.<</say>>
<<else>>
<<think "mc">>Ah, I see what she's hinting at.<</think>>
<<say "mc">>Fuck my cock with your tits, slut!<</say>>
<</if>>
<<center "armani/dildo03.jpg">>
<<narrate>>She fails to contain her grin as she wraps her beautiful soft breasts around your cock.<</narrate>>
<<button "Continue" armanisex>>
<<temp "bathroombj02">>
<</button>>
<<case "bathroombj02">>
<<left2 "armani/dildo02.mp4" v>>
<<narrate>>She rubs her soapy tits up and down your shaft.<</narrate>>
<<say "armani">>You like that, huh?<</say>>
<<narrate>>She stares into your eyes while she continues.<</narrate>>
<<say "armani">>But it's not enough.<</say>>
<<narrate>>She sinks, her breasts releasing your dick, only to be replaced by her lips.<</narrate>>
<<button "Continue" armanisex>>
<<temp "bathroombj03">>
<</button>>
<<case "bathroombj03">>
<<vid "armani/dildo03.mp4">>
<<narrate>>She skillfully sucks on your cock. As the pleasure pulsates through your body you can already feel it starting to overcome you.<</narrate>>
<<say "mc">>Oh fuck, yes.<</say>>
<<narrate>>She strokes your stomach while working your cock, sending a shiver of excitement throughout your entire body.<</narrate>>
<<say "mc">>Fuuuuck, $armani.name, shit!<</say>>
<<narrate>>She doesn't stop as you unload down her throat. You writhe under her touch as she continues.<</narrate>>
<<say "mc">>Oh god, no.<</say>>
<div id="replace">
<<choices "Let her continue?">>
<<link "Yes">>
<<replace "#replace">>
<<narrate>>As your dick starts to soften, she starts massaging your bellend with her tongue, causing it to quickly stiffen once more.<</narrate>>
<<say "mc">>Fuuuck.<</say>>
<<narrate>>The pleasure is unbearable as she greedily continues. Your post-nut sensitivity causing a mix of both pleasure and unease in you until finally you are overwhelmed, and your second orgasm explodes down her throat.<</narrate>>
<<say "armani">>Two for one.<</say>>
<<say "mc">>Holy fuck, that was... hard.<</say>>
<<narrate>>She looks at your cock.<</narrate>>
<<say "armani">>I'll say.<</say>>
<</replace>>
<<stat "armani" 5 "dominance">>
<<toggleclass "#hidden" noshow>>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<narrate>>You grab her head.<</narrate>>
<<say "mc">>No more... I can't take it.<</say>>
<<narrate>>She releases her hold, but looks a little annoyed.<</narrate>>
<<say "armani">>Understood.<</say>>
<</replace>>
<<stat "armani" -5 "dominance">>
<<toggleclass "#hidden" noshow>>
<</link>>
<</choices>>
</div>
<div id="hidden" class="noshow">
<<narrate>>She gets out of the tub and looks at you through the mirror.<</narrate>>
<<say "armani">>Don't think I've forgotten about the dildo, I just craved the taste of the real thing just now.<</say>>
<<block "armani/dildo04.jpg">>
<<if $armani.dominance > 0>>
<<say "armani">>You should know how we do this by now. Get cleaned up, then fuck off.<</say>>
<<else>>
<<say "armani">>I'll leave you to get clean.<</say>>
<</if>>
<<narrate>>Sweat dripping down your brow, you simply fall back into the water, completely exhausted.<</narrate>>
<<think "mc">>Fuck, that was intense.<<if $armani.dominance < 0>> Even in her somewhat submissive state, she can't fully release control.<<else>> I guess it's her way of reminding me who is in charge.<</if>><</think>>
<<button "Continue" housestuff>>
<<temp "">>
<<set $location = "bedrooms">>
<<like "armani" 4>>
<<lust "armani" 4>>
<<unlock "armani" "dildo">>
<<event "armani" "dildo">>
<<time 1.5>>
<</button>>
<</block>>
</div>
<</switch>>
<</nobr>><<tracker "armani">>
<<if $armani.events.buzzpeek == undefined>>
<<step "Check up on her at night." "Sneak around and spy on her before bed.">>
<<elseif $armani.events.peek == undefined>>
<<step "Think of her at night." "Masturbate at night while thinking about her">>
<<elseif $armani.events.peektalk == undefined>>
<<step "Confront her." "Discuss peeking with her">>
<<elseif $armani.lust < 10>>
<<step "She doesn't desire you enough." "10 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.<br>Peep on her.">>
<<elseif $armani.events.fingerme == undefined>>
<<step "Sleep on it." "She'll contact you in the morning.">>
<<elseif $armani.events.fingerme == 1>>
<<step "Lounging around." "Meet her in the lounge after 22:00">>
<<elseif $armani.events.flowers == undefined>>
<<step "Flowers." "Talk to her about flowers in the garden">>
<<elseif $armani.events.meditate == undefined>>
<<step "Relax in the garden." `"Try to meditate in the garden then ask "+$armani.name+" for help when she's in the garden."`>>
<<elseif $armani.lust < 20>>
<<step "She doesn't desire you enough." "20 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.<br>Peep on her.">>
<<elseif $armani.oral < 3>>
<<step "Oral Favors $armani.oral/3" "<b>Where?</b><br>Peep at night & take over<br>Peep at night & leave<br>Meditate together in the garden<br>Discuss \"alone at night\" with her then relax before bed.">>
<<elseif $armani.events.poolperv == undefined>>
<<step "Observe her in the pool" "Perv on her in the pool">>
<<elseif $armani.events.poolperv == 1>>
<<step "Thinking..." "Give it a moment">>
<<elseif $armani.events.poolperv == 2>>
<<step "Check Messages" "She's sent you a text message.">>
<<elseif $armani.events.poolperv == 3 || $armani.events.poolperv == 4>>
<<if $armani.dominance < -10>>
<<step "Pool Boss" "At the pool, remind her who is in charge.">>
<<else>>
<<step "Her Problem" "Talk to her to find out what the problem is.">>
<</if>>
<<elseif $armani.events.poolperv == 9>>
<<if Math.abs($armani.dominance) < 10>>
<<step "Fetish Locator" `"Work toward being more dominant with her, or more submissive. You're currently favoring "+($armani.dominance < 0 ? "dominance" : "submission")+" slightly."`>>
<<elseif $armani.dominance < -10>>
<<step "Pool Boss" "At the pool, remind her who is in charge.">>
<<elseif $armani.dominance > 10>>
<<step "Pool Boy" "At the pool, submit to her desires.">>
<</if>>
<<elseif $mc.events.eastreturn == undefined>>
<<step "Progress the story" "Follow the story tasks to continue this substory">>
<<elseif $cassie.events.sisterbitch == undefined>>
<<step "Once a bitch..." `"Talk to her, she's got something to say."`>>
<<elseif $cassie.events.sisterbitch == 1>>
<<step "The Friendlier Sister" `"Ask "+$cassie.name+" about "+$armani.name+"'s bitchy behavior."`>>
<<elseif $cassie.events.sisterrivalry == undefined>>
<<step "Watch TV with the sisters" `"Watch TV when "+$cassie.name+" & "+$armani.name+" are both in the room"`>>
<<elseif $armani.lust < 50>>
<<step "She doesn't desire you enough." "50 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.<br>Peep on her.<br>Sleep with her.">>
<<elseif $armani.events.fingerme == 2>>
<<step "Lounge Nostalgia" "Talk to her while she's in the lounge">>
<<elseif !$completeTasks.includes('azulsex2')>>
<<step "Progress the story" "Follow the story tasks to continue this substory">>
<<elseif $armani.events.what == undefined>>
<<step "What am I?" "She has something she wants to say...">>
<<elseif $buildings.restaurant == undefined>>
<<step "Restaurant" `"Research how to run a restaurant at the monitoring station, then build one at the construction facility."`>>
<<elseif $armani.events.what == 1>>
<<step "Stepping Out" `($armani.dominance < -10 ? "Command her to go on a date with you." : "Suggest she takes you on a date.") + "<br>The restaurant opens from 13:00 to 20:00."`>>
<<elseif $sector == "or" && $side != "own" && $azul.events.night != "ne">>
<<movielist armani>>
<<elseif $azul.events.champions == undefined>>
<<step "Strange Feelings" `"Talk to "+$azul.name+" about what you felt. " +($sector == "or" ? ($side != "own" && $azul.events.night != "ne" ? "You can't complete this step in this sector." : "") : "You can still call her from the Doctor's surgery.")`>>
<<else>>
<<movielist armani>>
<</if>>
<</tracker>><<set $scene = 0>>
<<if $mc.events.eastgo == 2 && $aubree.events.transfap == undefined && $awaypartyeast == "aubree">>
<<narrate>>As you push open $aubree.name's door to reveal her sat almost naked on the bed. She doesn't appear to notice you.<</narrate>>
<<think "mc">>Shit. I probably should have knocked. Now what?<</think>>
<<choices>>
<<link "Hide" aubreesex>>
<<temp "tformpeep">>
<</link>><br>
<<link "Leave" housestuff>>
<</link>><br>
<<link "Come back when she's dressed" aubree>>
<<event "aubree" "transfap">>
<</link>>
<</choices>>
<<elseif $location != $currentlocations.aubree && $location != "firstIntros" && $replay == false>>
<<say "aubree">>Catch you later, $aubree.calls.<</say>>
<<follow aubree>>
<<button "Continue" $return>>
<</button>>
<<else>>
<<if debug == true>>
<div class="debug">
<<button "Went to New Eden" aubree>>
<<set $awaypartyeast = "aubree">>
<</button>>
</div>
<</if>>
<<set _img = getImg('aubree')>>
<<left2 _img>>
<<if $tempvar == "badflirt">>
<<narrate>>You start making an innuendo when she interrupts you.<</narrate>>
<<say "aubree">>Ha, I knew it! Gonna have to stop you there, though. I'm not into it.<</say>>
<<think "mc">>She probably needs a bit more convincing before she responds differently.<</think>>
<<temp "">>
<<like "aubree" -1>>
<<elseif $location == "docs" && $aubree.mature == true>>
<<say "mc">>$aubree.refer, what are you doing here?<</say>>
<<say "aubree">>Not enjoying the view, perv?<</say>>
<<if $aubree.corruption >= 100>>
<<say "mc">>You seem a little...<</say>>
<<narrate>>You look around, clicking your fingers as if trying to find the word.<</narrate>>
<<say "mc">>...overdressed to me.<</say>>
<<narrate>>She grins.<</narrate>>
<<else>>
<<think "mc">>I'm not falling for her bait.<</think>>
<<say "mc">>Anyway...<</say>>
<<narrate>>She frowns.<</narrate>>
<</if>>
<<elseif $awaypartyeast == "aubree" && ($aubree.transforms == undefined || $aubree.transforms.mature == undefined) && $neweden == true>>
<<say "aubree">>Hey perv, what did you think of my older form?<</say>>
<<if $aubree.corruption >= 100>>
<<say "mc">>Hot as fuck.<</say>>
<<else>>
<<think "mc">>Another attempt to bait me?<</think>>
<<say "mc">>You did a great job, thanks for your help back there.<</say>>
<<narrate>>She stares at you.<</narrate>>
<<say "aubree">>That's not what I meant. How'd I look?<</say>>
<<say "mc">>You looked fine.<</say>>
<</if>>
<<narrate>>She grins.<</narrate>>
<<say "aubree">>I think it'd be fun to use that form from time to time, y'know?<</say>>
<<say "mc">>Sure, I can handle that.<</say>>
<<say "aubree">>$adria.name was asking about it too, I think she'd be interested in seeing what it's like.<</say>>
<<say "mc">>I'm surprised your mom hasn't mentioned it, she seemed a little annoyed I didn't take her to New Eden.<</say>>
<<say "aubree">>I think she'd definitely be down, you may as well ask Aunt $lexi.name too, then! So you just come to perv, or did you want something?<</say>>
<<notice>>You can now transform $aubree.name into her older form at Gateway B.<</notice>>
<<if $aubree.transforms == undefined>>
<<set $aubree.transforms = {}>>
<</if>>
<<set $aubree.transforms.mature = 1>>
<<elseif $location == "pool" && $aubree.mature != true>>
<<think "mc">>Damn, just look at what she's wearing. That can't be a mistake.<</think>>
<<set _u = $aubree.calls.toUpperFirst()>>
<<say "aubree">>You okay there, _u? Your jaw appears to be on the floor.<</say>>
<<say "mc">>Oh, right, sorry. You got a few minutes?<</say>>
<<say "aubree">>What, so you can perv on me while I'm enjoying the pool? Fine, what do you want?<</say>>
<<if $aubree.corruption >= 100>>
<<say "mc">>I think we both know you're just as perverted as me.<</say>>
<<narrate>>She grins and shrugs.<</narrate>>
<<elseif $aubree.corruption >= 40>>
<<say "mc">>Really, you think I'm the perv after everything you've done?<</say>>
<<say "aubree">>You only think that because you're the perv really!<</say>>
<<think "mc">>What? That makes no sense. It doesn't matter either way, it's obvious she's wearing that to wind me up. Doesn't mean I can't enjoy it, though.<</think>>
<<else>>
<<think "aubree">>Ha, he's so fun to tease!<</think>>
<</if>>
<<else>>
<<say "mc">>Hey, $aubree.refer.<</say>>
<<set _u = $aubree.calls.toUpperFirst()>>
<<say "aubree">>_u, great to see you!<</say>>
<<say "mc">>You busy?<</say>>
<<say "aubree">>Not anymore.<</say>>
<</if>>
<<choices "What do you want to discuss?" "topics">><</choices>>
<</if>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("aubreediscussions").processText());
})
<</script>><<scene>>
<<set _img = getImg('aubree')>>
<<switch $tempvar>>
<<case "neweden">>
<<left2 _img>>
<<say mc>>Now New Eden is so easily accessible, would you like to go back?<</say>>
<<say aubree>>I'll probably go see my friend I told you about.<</say>>
<<say mc>>Oh, I never actually met her... wanna introduce me?<</say>>
<<narrate>>She looks at the clock.<</narrate>>
<<say aubree>>Sure. Let's go now in fact. It might be fun. I haven't seen that slut in ages! Real party animal. If you're looking to get absolutely wasted in the entertainment district, she'll make sure you have fun getting there.<</say>>
<<say mc>>Well, after that intro, how can I not want to meet her?<</say>>
<<if $location == "pool">>
<<say aubree>>Let me get changed and I'll meet you ate the gate.<</say>>
<</if>>
<<set $tempvar2 = "ne">>
<<cont "east-ent" "hollymeet">>
<<case "trans">>
<<left2 _img>>
<<set _w = State.variables[$awaypartyeast]>>
<<say "mc">>I was talking to _w.refer about her transformation in New Eden, and I wondered, did you want to try it too?<</say>>
<<say "aubree">>Yup, let's go!<</say>>
<<narrate>>Saying nothing more, she practically drags you to the gateway.<</narrate>>
<<say "aubree">>So I just step through and come back?<</say>>
<<say "mc">>And concentrate on what you want to look like.<</say>>
<<say "aubree">>Great! Try not perv on me too much, okay?<</say>>
<<cont "transformation" "aubree">>
<<case "drink">>
<<left2 _img>>
<<say "mc">>Ready to show me how much of a light weight you are at the bar?<</say>>
<<say "aubree">>Ha! I know you're game, you just want to get me drunk and take advantage, don't you?<</say>>
<<if $aubree.events.firstsex != undefined>>
<<say "mc">>I don't think I need to get you drunk to have my way with you, do I?<</say>>
<<narrate>>She grins.<</narrate>>
<<say "aubree">>Let's go grab that drink.<</say>>
<<button "Continue" aubreesex>>
<<temp "drunk">>
<</button>>
<<else>>
<<say "mc">>Hey, you're the one who said they could drink me under the table.<</say>>
<<say "aubree">>Maybe, but I don't think it's wise. Maybe another time.<</say>>
<<think "mc">>Reading between the lines, I'm guessing she doesn't trust herself, or me, when we're drunk... I should probably work on our relationship before revisiting this.<</think>>
<<button "Continue" housestuff>>
<<like "aubree" 2>>
<<lust "aubree" 1>>
<<event "aubree" "bartalk">>
<</button>>
<</if>>
<<case "planets">>
<<left2 _img>>
<<set _uc = $aubree.refer.toUpperFirst()>>
<<say "mc">>_uc, did you do much traveling before coming here?<</say>>
<<say "aubree">>Not really... why?<</say>>
<<say "mc">>Know any planets worth visiting?<</say>>
<<say "aubree">>Wow, it's been so long, uhmm... there was this one place me and $adria.name used to go clubbing. $kenna.name was the one who actually told us about it.<</say>>
<<say "mc">>Would you mind taking me there?<</say>>
<<say "aubree">>You want to go clubbing? I didn't think you could leave?<</say>>
<<say "mc">>I can't, I just want to add it to my address book, so to speak.<</say>>
<<say "aubree">>Try $adria.name. I was wasted for most of those trips! I remember having a great time... but I have no idea on the details.<</say>>
<<say "mc">>Can't handle your liquor?<</say>>
<<say "aubree">>I can drink you under the table!<</say>>
<<say "mc">>That sounds like a challenge to me!<</say>>
<<say "aubree">>Name the time and place, $aubree.calls!<</say>>
<<event "aubree" "planets">>
<<if $buildings.bar != undefined>>
<div id="replace">
<<choices>>
<<if $hour < 21>>
<<link "Right Now">>
<<replace "#replace">>
<<say "mc">>Let's go, right now.<</say>>
<<say "aubree">>Okay, I know what I just said, but it's a bit too early for me. Neither one us is going to be in a fit state after this. How about you come find me after 21:00?<</say>>
<<say "mc">>I'll hold you to that.<</say>>
<<button "Continue" housestuff>>
<<like "aubree" 2>>
<<lust "aubree" 1>>
<<event "aubree" "bartalk">>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<<elseif $aubree.events.firstsex != undefined>>
<<link "Right Now" aubreesex>>
<<temp "drunk">>
<</link>>
<<else>>
<<link "Right Now">>
<<replace "#replace">>
<<say "mc">>Let's go, right now.<</say>>
<<say "aubree">>Yeah, right. You just want to take advantage your drunken $aubree.them!<</say>>
<<say "mc">>Hey, you're the one who said they could drink me under the table.<</say>>
<<say "aubree">>Maybe, but I don't think it's wise. Maybe another time.<</say>>
<<think "mc">>Reading between the lines, I'm guessing she doesn't trust herself, or me, when we're drunk... I should probably work on our relationship before revisiting this.<</think>>
<<button "Continue" housestuff>>
<<like "aubree" 2>>
<<lust "aubree" 1>>
<<event "aubree" "bartalk">>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</if>>
<br>
<<link "Soon">>
<<replace "#replace">>
<<say "mc">>I'll let you know. You're doing down!<</say>>
<<say "aubree">>Ha! You wish I were.<</say>>
<<button "Continue" housestuff>>
<<like "aubree" 3>>
<<lust "aubree" 2>>
<<event "aubree" "bartalk">>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<else>>
<<think "mc">>Challenge aside, maybe I should look into building a bar in the hub?<</think>>
<<tech "bar">>
<<button "Continue" housestuff>>
<<like "aubree" 3>>
<<lust "aubree" 1>>
<<event "aubree" "bartalk">>
<</button>>
<</if>>
<<case "weneed">>
<<center "aubree/private01.jpg">>
<<narrate>>As you walk in, she stares at you, almost menacingly.<</narrate>>
<<think "mc">>Well, I guess I pushed too hard and this is where it ends, huh?<</think>>
<<say "mc">>You wanted to talk?<</say>>
<<say "aubree">>Yeah, about the spa.<</say>>
<<narrate>>You decide to simply nod and let her say her piece before you start defending yourself.<</narrate>>
<<say "aubree">>So I've done some thinking about what happened there.<</say>>
<<think "mc">>Hmm, can I spin this one? Can I still have some fun here? Let's think.<</think>>
<<say "aubree">>And you're right. I didn't realize it, but I was leading you on not just to tease you, but because I wanted it.<</say>>
<<think "mc">>Maybe if I tell her I felt trapped or... wait, what?!<</think>>
<<narrate>>You face drops.<</narrate>>
<<block "aubree/private02.jpg">>
<<say "aubree">>Please, say something.<</say>>
<<say "mc">>Wow. So what does that mean exactly?<</say>>
<<say "aubree">>I think my teasing all these years has just been my way of masking my feelings for you. I don't know why, but the place just really brought them out to the surface.<</say>>
<<think "mc">>Hooooooly shiiiiit.<</think>>
<<say "mc">>Wow. This is not what I expected.<</say>>
<</block>>
<<say "aubree">>I know you're my $aubree.you, but I just don't think I can control these feelings. I know you've got a full harem of beautiful women at your beck and call already, but... but I think I want to be part of that.<</say>>
<<say "mc">>I don't know what to say. You know what you're saying, right?<</say>>
<<think "mc">>This doesn't feel like a wind up, but I need to tread carefully.<</think>>
<<narrate>>She nods.<</narrate>>
<<say "aubree">>To hell with the taboo. I want you.<</say>>
<<say "mc">>How can I say no to my cute little $aubree.them?<</say>>
<<say "aubree">>I'm older than you!<</say>>
<<say "mc">>So what happens now?<</say>>
<<say "aubree">>I still need to work through my feelings, but I'm no longer ashamed.<</say>>
<<think "mc">>I think I can probably help her with those feelings.<</think>>
<<say "mc">>Nothing to be ashamed about, we're both adults here, and we've already crossed the line of taboo. Why stop now?<</say>>
<<narrate>>She looks relieved.<</narrate>>
<<say "aubree">>God, this feels good. Cathartic, even. I'm still gonna tease you, you know?<</say>>
<<say "mc">>Wouldn't have it any other way.<</say>>
<<say "aubree">>I'm not quite ready to make the final step with you, but I will be soon.<</say>>
<<think "mc">>I guess I just need to push her a little more, and she'll be screaming my name.<</think>>
<<notice>>$aubree.name will now gain additional corruption and lust when flirting.<</notice>>
<<button "Continue" housestuff>>
<<corrupt "aubree" 5>>
<<lust "aubree" 5>>
<<like "aubree" 5>>
<<event "aubree" "sparelax" 5>>
<<time 1>>
<</button>>
<<case "eightchamps">>
<<narrate>>As you turn to leave, you notice $aubree.name waving you over. You meet her in the hall.<</narrate>>
<<say "mc">>What's up?<</say>>
<<block "aubree/flag.jpg">>
<<say "aubree">>You need to go see mom, she's not happy.<</say>>
<<say "mc">>Why?<</say>>
<<say "aubree">>Because you didn't tell her about the extra champion.<</say>>
<<say "mc">>I asked you not to tell anyone!<</say>>
<<say "aubree">>I didn't think that included family!<</say>>
<</block>>
<<narrate>>You sigh and head to $lexi.name's room.<</narrate>>
<<button "Continue" aubreeanswers>>
<<temp "eightlexi">>
<</button>>
<<case "eightlexi">>
<<narrate>>You go straight into her room only to find her in the middle of getting changed.<</narrate>>
<<block "lexi/angry.jpg">>
<<say "mc">>Whoa, sorry $lexi.refer.<</say>>
<<say "lexi">>It's fine, well, it's not, but I'm decent enough, and we have bigger fish to fry.<</say>>
<<say "mc">>Oh, right...<</say>>
<<say "lexi">>So, what the hell is going on?<</say>>
<<narrate>>You can't help but be distracted by her ample bosom.<</narrate>>
<<say "lexi">>Well...?<</say>>
<</block>>
<<say "mc">>So, $voice.name informed me there are eight champions, but she can't confirm who without them going to the gateway.<</say>>
<<narrate>>You continue to relay what you and $voice.name discussed a moment ago.<</narrate>>
<<say "lexi">>I think she might be right, it's just the thing the leaders would have done, send someone here as a mole.<</say>>
<<say "mc">>So you think we're in danger?<</say>>
<<say "lexi">>I don't know. We— sorry, the east perceive the champions as a threat, but have never been hostile before. If they sent a mole, I suspect it was more to keep an eye on things and warn of any pending threats. If it were anything like an assassin, they'd have made their move decades ago. However, if they know $voice.name is regaining power, that may change things... same if they know about you. Who has access to send information back and forth to the east? Let's start there.<</say>>
<<say "mc">>I will, but I need to handle this alone, whether it's something dangerous or something innocent, I don't want to spook anyone. If you're also poking your nose around, it's going to raise too much suspicion. I'm still fairly new to this world and can get away with some questions others can't.<</say>>
<<say "lexi">>When did my $lexi.you become so dependable? Ok, but you come speak to me if you need help with anything, even if just a sounding board.<</say>>
<<say "mc">>Thanks, $lexi.refer, I will.<</say>>
<<think "mc">>I should probably head back to $voice.name and review the current information I have.<</think>>
<<think "lexi">>I'm sure he was looking at my chest that entire time... but for some reason, that just made me want to tease him more instead of getting dressed. Maybe I've been spending too much time with my daughter.<</think>>
<<button "Continue" housestuff>>
<<set $location = "bedrooms">>
<<like "lexi" 1>>
<<lust "lexi" 1>>
<<corrupt "lexi" 1>>
<<time 1>>
<</button>>
<<case "champions">>
<<block _img>>
<<say "mc">>How well do you think you've got to know the people here?<</say>>
<<say "aubree">>Pretty well, especially $vanna.name. Why do you ask?<</say>>
<<say "mc">>One of them isn't who they say they are, or maybe just not who they think they are.<</say>>
<<say "aubree">>What?<</say>>
<<say "mc">>Sorry, $voice.name said she only has eight champions, but there are nine strays. Either one is an impostor or doesn't realize they are unlike the others.<</say>>
<</block>>
<<say "aubree">>Wow, not seen anything to suggest any of them are pretending, but $ember.name does seem the most likely to be here by mistake. She's a bit, how do I put it...<</say>>
<<say "mc">>Gullible?<</say>>
<<say "aubree">>Exactly!<</say>>
<<say "mc">>If anything does come to mind, please let me know.<</say>>
<<say "aubree">>Sure, $aubree.calls.<</say>>
<<say "mc">>And please don't say anything to anyone, I don't want to cause any panic!<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "aubree">>Yeah, yeah.<</say>>
<<button "Continue" voiceanswers>>
<<like "aubree" 2>>
<<set $mc.events.eight = "aubree">>
<<time 1>>
<</button>>
<<case "workout">>
<<block _img>>
<<say "mc">>So, you wanted a workout partner?<</say>>
<<think "aubree">>I'm gonna prove you're such a perv! You'll be drooling over my body in no time, and then I'm gonna call you out for being so disgusting!<</think>>
<<say "aubree">>Yeah, would be great to have some help. Think you can keep up?<</say>>
<<say "mc">>Oh, I think I can do more than that.<</say>>
<<say "aubree">>Let's put a wager on that, shall we?<</say>>
<</block>>
<<think "mc">>Ah, clearly she's after something.<</think>>
<<say "mc">>What do you want?<</say>>
<<say "aubree">>You'll be my slave for the day.<</say>>
<<say "mc">>So if I win, you'll be mine?<</say>>
<<think "mc">>Now that sounds far more inviting than the alternative.<</think>>
<<say "aubree">>Sure, not like you're gonna win.<</say>>
<<say "mc">>And we can make our slave do anything?<</say>>
<<think "aubree">>Got him!<</think>>
<<narrate>>She gives you a sly smirk.<</narrate>>
<<say "aubree">><b>Any</b>thing.<</say>>
<<think "mc">>Got her!<</think>>
<<button "Continue" aubreeanswers>>
<<temp workout01>>
<</button>>
<<case "workout01">>
<<say "mc">>So, what are we doing?<</say>>
<<think "aubree">>Let's get this show on the road. I'm going to make you so uncomfortable for perving on me!<</think>>
<<center "aubree/workout01.jpg">>
<<think "mc">>Holy shit, $aubree.refer!<</think>>
<<say "aubree">>Just doing a warm-up, then we'll use the bikes.<</say>>
<<say "mc">>Yeah, sure.<</say>>
<<think "mc">>Though she's still not clarified what the actual competition is!<</think>>
<<think "aubree">>Nothing?<</think>>
<<narrate>>The two of you do some stretches, and then she gets up on to the bike.<</narrate>>
<<center "aubree/workout02.jpg">>
<<say "aubree">>Get ready to eat my dust!<</say>>
<<narrate>>She wiggles her ass ever so slightly in your direction as she taunts you. It takes all your willpower not to stare at it.<</narrate>>
<<say "mc">>You realize these bikes don't actually go anywhere, right?<</say>>
<<narrate>>She lets out an angry tut, then starts peddling.<</narrate>>
<<narrate>>Determined not to lose, you follow suit.<</narrate>>
<<think "aubree">>Shit, this is the wrong position. His bike needs to be behind me.<</think>>
<<say "aubree">>How's it going, struggling yet?<</say>>
<<say "mc">>Nah, it's a walk in the park.<</say>>
<<narrate>>She suddenly stops peddling, forcing you to look over out of concern.<</narrate>>
<<center "aubree/workout03.jpg">>
<<say "aubree">>I'm so confident, I'm gonna take a quick break. A little sweaty, let me just get some air in here.<</say>>
<<narrate>>She tries to flap the bottom of her top as if trying to fan herself off. She looks ridiculous.<</narrate>>
<<think "mc">>It's clear she's trying to distract me. If I keep ignoring it, maybe she'll go even further.<</think>>
<<say "mc">>You're sweating from so little? I've got this in the bag!<</say>>
<<think "aubree">>Not even a glimmer? I don't think I can tease him any further without me looking like the perv. Shit! I'll get him next time.<</think>>
<<say "aubree">>I'm bored. We're done. I won.<</say>>
<<say "mc">>Sorry, what? What did you win?<</say>>
<<say "aubree">>I did more than you.<</say>>
<<say "mc">>Are you sure?<</say>>
<<say "aubree">>Eh, whatever, I'm no longer interested. See you later.<</say>>
<<narrate>>She heads to the showers.<</narrate>>
<<say "mc">>Hey, what about the– eh, never mind, she's gone.<</say>>
<<think "mc">>Though this is good, I think if I keep pushing her into similar situations, she'll eventually break and get start trying even harder to get a rise out of me.<</think>>
<<button "Continue" homehub>>
<<if $aubree.events.workout == undefined>>
<<event "aubree" "workout">>>
<</if>>
<<lust 'aubree' 2>>
<<like 'aubree' 1>>
<<corrupt 'aubree' 2>>
<<time 1>>
<</button>>
<<case "meeting">>
<<block _img>>
<<say "mc">>You can't believe how happy I am you're here.<</say>>
<<narrate>>She snorts.<</narrate>>
<<say "aubree">>Ha! I bet, perv!<</say>>
<<say "mc">>Me? What about you?<</say>>
<<say "aubree">>What do you mean?<</say>>
<<think "aubree">>Shit, did he catch me?<</think>>
<</block>>
<<say "mc">>At the meeting! The way you greeted me then sat on my lap!<</say>>
<<think "aubree">>Phew!<</think>>
<<say "aubree">>Gross! I was just excited to see you. How the hell did you read that wrong?<</say>>
<<say "mc">>Really? It seemed a bit more than that.<</say>>
<<think "aubree">>I need to be careful, I know I like to tease him, but I can't let it go too far.<</think>>
<<say "aubree">>What, did you go back to your room and fap about it? Perv! You were always into me. It's wholly inappropriate.<</say>>
<<say "mc">>If you say so. Listen, you've always been a tease and I never thought anything of it, but I don't know, it just felt different.<</say>>
<<say "aubree">>Tease? Me? Whatever do you mean?<</say>>
<<narrate>>She puts her hands under her chin, cocks her head to her side and flutters her eyelashes as if pretending to be innocent.<</narrate>>
<<say "mc">>Fine, you play dumb.<</say>>
<<think "aubree">>I'm in control here!<</think>>
<<say "aubree">>Whatever, you wanna help me with something?<</say>>
<<say "mc">>What with?<</say>>
<<say "aubree">>I need a workout partner in the gym.<</say>>
<<think "aubree">>Where I'm going to prove who the damn perv is!<</think>>
<<say "mc">>Sure, I'll look out for you when I'm next in there.<</say>>
<<say "aubree">>Great, just try to keep it in your pants, yeah?<</say>>
<<narrate>>You roll your eyes.<</narrate>>
<<say "mc">>Sure, whatever.<</say>>
<<button "Continue" aubree>>
<<if $aubree.events.sitting == undefined>>
<<event "aubree" "sitting">>>
<<like 'aubree' 2>>
<<lust 'aubree' 1>>
<<corrupt 'aubree' 1>>
<</if>>
<<time 1>>
<</button>>
<<case "model">>
<<block _img>>
<<say "mc">>Back in our home world, you were just getting into modeling, how'd that go?<</say>>
<<think "mc">>I know she's my $aubree.them, but I certainly had some sweaty nights looking at her portfolio!<</think>>
<<say "aubree">>I did pretty well, and it was a fun experience.<</say>>
<<say "mc">>Did you carry it on here?<</say>>
<<say "aubree">>A bit from time to time, but nothing particularly in depth. It's a bit different when in a small community. Now the gateway is active again, maybe I could do something off world, though.<</say>>
<</block>>
<<say "mc">>Makes sense. So, what kinda modeling did you do?<</say>>
<<narrate>>For a moment she seems nervous, then continues on.<</narrate>>
<<say "aubree">>Oh, you know, just stuff for catalogs. Nothing too exciting.<</say>>
<<think "mc">>Ha, I remember those catalogs. As an adolescent boy, they were very exciting!<</think>>
<<say "mc">>I think I saw you in some if I remember correctly. You looked great.<</say>>
<<think "aubree">>I only did like two catalog shoots, I was too short for it. I'd best not tell him where the real work came from.<</think>>
<<say "aubree">>I had a great time doing them, but now I know my $aubree.you was perving on me, I'm not sure what to think.<</say>>
<<say "mc">>What? Oh, come on. It wasn't like that.<</say>>
<<think "mc">>It was.<</think>>
<<say "mc">>I just wanted to see what a great job my $aubree.them was doing!<</say>>
<<say "aubree">>Ha! Whatever, we both know what you were doing up in your room all alone.<</say>>
<<say "mc">>Eh, you know what, you looked fantastic, I was going through puberty and yeah, I had a fun time with your pictures.<</say>>
<<say "aubree">>Holy shit, I can't believe you just admitted that! Perv!<</say>>
<<say "mc">>Hey, you know what puberty is like.<</say>>
<<say "aubree">>Sure. Sure. So if I send you some pics later, you won't do the same?<</say>>
<<say "mc">>Only one way to find out.<</say>>
<<say "aubree">>Ha!<</say>>
<<button "Continue" housestuff>>
<<if $aubree.events.model == undefined>>
<<event "aubree" "model">>>
<<like 'aubree' 2>>
<<lust 'aubree' 1>>
<<corrupt 'aubree' 1>>
<</if>>
<<set $aubree.photos = true>>
<<time 1>>
<</button>>
<<case "photo">>
<<block _img>>
<<set _uc = $aubree.refer.toUpperFirst()>>
<<say "mc">>_uc, did you ever pick up on any photography skills or equipment knowledge when you were modeling?<</say>>
<<say "aubree">>Ha, let me guess, want to jack off to photos of me later?<</say>>
<<say "mc">>If the thought of that turns you on, let's just say yes.<</say>>
<<say "aubree">>Whatever!<</say>>
<<think "aubree">>But... kinda.<</think>>
<</block>>
<<say "aubree">>I know a little, but I'm no expert.<</say>>
<<say "mc">>Enough to point me in the right direction?<</say>>
<<say "aubree">>Maybe, but unless anyone else here knows the rest, I'm not sure how you can finish the puzzle.<</say>>
<<say "mc">>The monitoring station.<</say>>
<<say "aubree">>Yeah, I don't get how that works. How can it know anything?<</say>>
<<say "mc">>Oh, it doesn't. It just monitors the gateway, so it's great for research into the gateway specifically, but certainly can't help with stuff like photography.<</say>>
<<say "aubree">>Then how does it get shit done?<</say>>
<<say "mc">>Well, it lets us know when travelers are passing through. Outside a few projects, most stuff is literally word of mouth from asking travelers.<</say>>
<<say "aubree">>Wow, and here I thought it was some super magnificent computer.<</say>>
<<say "mc">>Well it is, just not for the reasons you thought. Though one day I hope we can connect to the Internets through the gateway, but that's just a pipe dream for now.<</say>>
<<say "aubree">>Shit, now that sounds a bit more impressive. Okay, I'll upload what I know, and hopefully it's enough to get the workers asking the right questions.<</say>>
<<say "mc">>Thanks, _uc.<</say>>
<<button "Continue" housestuff>>
<<event "aubree" "photo">>
<<taskdone "photo">>
<<like 'aubree' 2>>
<<lust 'aubree' 1>>
<<corrupt 'aubree' 1>>
<<tech "studio">>
<<time 1>>
<</button>>
<</switch>><<nobr>>
<<if $aubree.answered is undefined>>
<<set $aubree.answered to []>>
<</if>>
<<set $return = returnLocation()>>
<<smallflirt "aubree">>
<<if !$girlsmet.includes('holly') && $neweden == true>>
<<link "New Eden" aubreeanswers>>
<<temp "neweden">>
<</link>><br>
<</if>>
<<if ($lexi.transforms != undefined || $adria.transforms != undefined || $monique.transforms != undefined) && $aubree.transforms == undefined>>
<<link "Transformation" aubreeanswers>>
<<temp "trans">>
<</link>><br>
<</if>>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $aubree.events.planets == undefined>>
<<link "Planets" aubreeanswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if $buildings.bar != undefined && $aubree.events.bartalk != undefined && $hour >= 21 && $aubree.mature != true>>
<<link "Drink?" aubreeanswers>>
<<temp "drink">>
<</link>><br>
<</if>>
<<if $tasks.eightchamps != undefined>>
<<link "Champions" aubreeanswers>>
<<temp "champions">>
<</link>>
<br>
<</if>>
<<if $aubree.events.sitting == undefined>>
<<link "The Meeting" aubreeanswers>>
<<temp "meeting">>
<</link>>
<br>
<<elseif $location == "gym" && $aubree.mature != true>>
<<link "Workout Together" aubreeanswers>>
<<temp "workout">>
<</link>>
<br>
<</if>>
<<if $aubree.events.model == undefined>>
<<link "Modeling" aubreeanswers>>
<<temp "model">>
<</link>>
<br>
<</if>>
<<if $tasks.photo != undefined && $aubree.events.model != undefined && $aubree.events.photo == undefined>>
<<link "Photography" aubreeanswers>>
<<temp "photo">>
<</link>>
<br>
<</if>>
<<link "Never mind" $return>><</link>>
<</nobr>><<switch $tempvar>>
<<case "drunk">>
<<narrate>>The two of you head to the bar together. Shot after shot, you both keep pace with each other.<</narrate>>
<<say "aubree">>You know what I like to do after a good drink?<</say>>
<<say "mc">>Hmm?<</say>>
<<say "aubree">>Have my pussy destroyed by a big fat cock.<</say>>
<<say "mc">>You win. You can drink more than me, let's get back to the hotel. Now.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "aubree">>I always get my way!<</say>>
<<narrate>>As soon as you're in the hotel, she's clawing at your trousers. Knowing you're not going to make it back to your room, you push her into the lounge and give her ass a little slap.<</narrate>>
<<cont "aubreesex" "bar01">>
<<case "bar01">>
<<narrate>>Within moments she's freed your cock and sits on the floor with her head rubbing against your shaft.<</narrate>>
<<vid "aubree/bar01.mp4">>
<<script>>
setup.scriptpromise.then(function () {
if (settings['loopVid'] == true) {
var video = $('video')[0];
video.addEventListener("timeupdate", midloop);
function midloop() {
if (video.duration - video.currentTime < 0.5){
video.currentTime = 6.5;
}
}
}
});
<</script>>
<<say "aubree">>I could worship your cock all night.<</say>>
<<cont "aubreesex" "bar02">>
<<case "bar02">>
<<narrate>>She sits herself upon your lap, rubbing herself along your length.<</narrate>>
<<vid "aubree/bar02.mp4">>
<<say "aubree">>I'm gonna pull my panties to the side... I'm bad...<</say>>
<<say "aubree">>It feels so good. You like that pussy grinding all over your shaft?<</say>>
<<cont "aubreesex" "bar03">>
<<case "bar03">>
<<vid "aubree/bar03.mp4">>
<<say "aubree">>You think I've teased you enough? Should I put it in? Yeah?<</say>>
<<say "aubree">>You ready for this? I want you to tell my how tight my pussy is.<</say>>
<<say "aubree">>Can you feel it squeezing your cock?<br>
Ohhh~ Oh, my god.<</say>>
<<cont "aubreesex" "bar04">>
<<case "bar04">>
<<vid "aubree/bar04.mp4">>
<<say "aubree">>Oh, my god.<</say>>
<<say "aubree">>This is fun! Wouldn't you say?<</say>>
<<cont "aubreesex" "bar06">>
<<case "bar06">>
<<narrate>>You push her down on the floor. She pushes her hips into the air and slaps her own ass seductively.<</narrate>>
<<vid "aubree/bar06.mp4">>
<<say "aubree">>Fuuuck!<</say>>
<<cont "aubreesex" "bar07">>
<<case "bar07">>
<<narrate>>Teasing you again, she stops you for a moment, gesturing you to lie before her.<</narrate>>
<<vid "aubree/bar07.mp4">>
<<say "aubree">>I'm gonna put you right there.<br>Maybe I'll put them in your mouth later.<</say>>
<<cont "aubreesex" "bar08">>
<<case "bar08">>
<<vid "aubree/bar08.mp4">>
<<narrate>>She twerks up and down on your cock.<</narrate>>
<<say "aubree">>Ohh~ shit.<</say>>
<<say "aubree">>I wonder how massive of a load you're gonna have... all over my pretty face<</say>>
<<button "Cum" aubreesex>>
<<temp "bar09">>
<</button>>
<<case "bar09">>
<<narrate>>As if summoning your cum, her words take you over the brink.<</narrate>>
<<vid "aubree/bar09.mp4">>
<<narrate>>She vigorously strokes your cock with both hands and practically begs for your seed.<</narrate>>
<<say "aubree">>Oh, fuck. I want you to cum so fucking bad. Yes. Please, please, please give it to me.<br>Oh, fuck yes, cum for me.<</say>>
<<say "mc">>Yes, fucking, yes. Take my goo you damn cumslut!<</say>>
<<narrate>>Still feeling the effects of the booze, the two of you giggle and joke for a few minutes before drifting off to sleep, still in the lounge.<</narrate>>
<<button "Sleep" sleep>>
<<lust "aubree" 4>>
<<corrupt "aubree" 10>>
<<like "aubree" 2>>
<<unlock "aubree" "bar">>
<<set $tempvar2 = "drunk">>
<<time 4>>
<</button>>
<<case "tformpeep">>
<<narrate>>You duck behind her wardrobe, eager to take in as much of the beauty before you as you can.<</narrate>>
<<vid "aubree/tpeep01.mp4">>
<<narrate>>She gently runs her hands down her body, then pulls her panties down and over her feet.<</narrate>>
<<think "mc">>Jackpot!<</think>>
<<narrate>>She sits back on the bed, and her hand wanders down to her pussy.<</narrate>>
<<button "Continue" aubreesex>>
<<temp "tformpeep02">>
<</button>>
<<case "tformpeep02">>
<<vid "aubree/tpeep02.mp4">>
<<think "mc">>Ha! I guess she's <i>really</i> getting used to this body!<</think>>
<<narrate>>You watch with in fascination as she continues to rub herself.<</narrate>>
<<think "mc">>Now this is a good show.<</think>>
<<narrate>>As she starts to take shorter and shorter breaths you decide to leave while she's at the height of her distraction.<</narrate>>
<<if $hour >= 0 && $hour < 8>>
<<set _where = "sleep">>
<<set _what = "Sleep">>
<<else>>
<<set _where = "housestuff">>
<<set _what = "Continue">>
<</if>>
<<button _what _where>>
<<lust "aubree" 3>>
<<corrupt "aubree" 2>>
<<event "aubree" "transfap">>
<<temp "">>
<<unlock "aubree" "tpeep">>
<<if $hour >= 8>><<time 1>><</if>>
<</button>>
<<case "first">>
<<if $aubree.events.firstsex == undefined>>
<<run newMessage('aubree', 'gethere')>>
<<run newMessage('aubree', 'gethere2')>>
<<run forceRead("aubree")>>
<</if>>
<<block "aubree/first01.jpg">>
<<say "aubree">>You call for me.<</say>>
<<say "mc">>We've played around enough. I can't wait any longer.<</say>>
<<say "aubree">>I've been waiting for this moment.<</say>>
<<narrate>>You look her up and down, really taking in her outfit.<</narrate>>
<<say "mc">>Damn, you came prepared.<</say>>
<</block>>
<<narrate>>She leans over to you, grabs your chin, lifting you off the chair before passionately kissing you.<</narrate>>
<<narrate>>Still naked from the waist down from your wanking session, your hard cock slaps against her thighs.<</narrate>>
<<say "aubree">>Mhhmm, god, your cock is fucking beautiful.<</say>>
<<narrate>>You wrestle her top off in a fit of passion. She screams with excitement.<</narrate>>
<<say "aubree">>Oh god, I didn't know how much I wanted this. Needed this. That day you caught my masturbating in your bed... you have no idea how much I wanted to suck your cock right there and then!<</say>>
<<say "mc">>It's never too late.<</say>>
<<block "aubree/first02.jpg">>
<<narrate>>She hops on to the bed, her hand gesturing for you to follow.<</narrate>>
<<say "mc">>Damn, just look at you.<</say>>
<<say "aubree">>I knew you'd like it.<</say>>
<<narrate>>She again gestures you closer.<</narrate>>
<<say "aubree">>"It's never too late," he says, then keeps talking instead of shoving his cock down my throat!<</say>>
<<narrate>>You chuckle as you try to sensually walk over to her. She giggles at how poorly you pull it off, but never once takes her eyes off your cock.<</narrate>>
<<narrate>>As soon as you're in range, she grabs your cock and hungrily pulls it to her mouth.<</narrate>>
<<button "Continue" aubreesex>>
<<temp "first01">>
<</button>>
<</block>>
<<case "first01">>
<<vid "aubree/first01.mp4">>
<<narrate>>With some unknown sense of urgency, she quickly starts working your shaft.<</narrate>>
<<say "mc">>Oh, fucking, yes, $aubree.refer.<</say>>
<<narrate>>Each time she gasps for airs, her eyes bulge with lust as she surveys your cock.<</narrate>>
<<say "aubree">>God, I love this dick.<</say>>
<<button "Continue" aubreesex>>
<<temp "first02">>
<</button>>
<<case "first02">>
<<narrate>>She pushes you away playfully, then swivels on the bed, waggling her ass at you.<</narrate>>
<<vid "aubree/first02.mp4">>
<<say "aubree">>Your dick is delicious, but I want more.<</say>>
<<narrate>>She pulls her panties down below her ass and winks at you.<</narrate>>
<<say "mc">>There's no going back from this.<</say>>
<<say "aubree">>Shut up and fuck me.<</say>>
<<button "Continue" aubreesex>>
<<temp "first03">>
<</button>>
<<case "first03">>
<<narrate>>You pull her to the edge of the bed and slide your hard cock into her dripping pussy.<</narrate>>
<<vid "aubree/first03.mp4">>
<<say "aubree">>Yes, yes!<</say>>
<<narrate>>You feel a sense of achievement as the clap of her ass cheeks echoes through your room.<</narrate>>
<<think "mc">>I'm fucking my goddamn $aubree.them. My adolescent self would be so fucking proud.<</think>>
<<say "aubree">>Harder! Stop playing around and fuck me!<</say>>
<<button "Continue" aubreesex>>
<<temp "first04">>
<</button>>
<<case "first04">>
<<vid "aubree/first04.mp4">>
<<narrate>>You grab her waist for purchase and start hammering her.<</narrate>>
<<say "aubree">>That's it, that's it! Fuck yes!<</say>>
<<narrate>>The euphoria you feel from fucking your $aubree.them starts to catch up with you.<</narrate>>
<<say "mc">>Your pussy is out of this world. Fuck me.<</say>>
<<narrate>>In an attempt to stow off your orgasm, you take a brief respite to shed your top and flip her over.<</narrate>>
<<say "mc">>I want to look into your pretty face as I fuck your brains out.<</say>>
<<button "Continue" aubreesex>>
<<temp "first05">>
<</button>>
<<case "first05">>
<<narrate>>After a brief respite you regain your composure and quickly get back up to speed.<</narrate>>
<<vid "aubree/first05.mp4">>
<<say "aubree">>Oh, fuck, goooood. Yes.<</say>>
<<narrate>>Her body starts to quiver, her eyes roll back, and she can barely keep her head upright as her orgasm takes control.<</narrate>>
<<button "Continue" aubreesex>>
<<temp "first06">>
<</button>>
<<case "first06">>
<<vid "aubree/first06.mp4">>
<<narrate>>Feeling your own climax building, you start pounding her harder and harder, faster and faster.<</narrate>>
<<say "aubree">>Just like that, you're gonna make me cum again.<</say>>
<<narrate>>As the bed springs shriek in agony, and she yet again screams in ecstasy, you explode deep into her pussy, filling her with your warm goo.<</narrate>>
<<set _uc = $aubree.name.toUpperCase()>>
<<say "mc">>Fuck, fuck, yes! _uc, YES!<</say>>
<<narrate>>You fall on to the bed and lay next to her.<</narrate>>
<<say "aubree">>That was fucking unreal. I can't believe we waited so long.<</say>>
<<say "mc">>Well, we'll just have to make up for lost time, eh?<</say>>
<<narrate>>The two of you giggle and play fight in the bed for a few minutes before you drift off to sleep in each other's arms.<</narrate>>
<<button "Sleep" sleep>>
<<if $aubree.corruptmax < 100>>
<<set $aubree.corruptmax = 100>>
<</if>>
<<event "aubree" "firstsex">>
<<corrupt "aubree" 5>>
<<lust "aubree" 5>>
<<like "aubree" 5>>
<<temp "aubreehere">>
<<unlock "aubree" "first">>
<</button>>
<<case "sparelax">>
<<block "aubree/massage01.jpg">>
<<say "aubree">>Hey, $aubree.calls, glad you took me up on the offer. I was just getting ready.<</say>>
<<think "mc">>My god, look at her, at this stage I wonder who is trying to corrupt who!<</think>>
<<say "mc">>No worries, it'll be nice to unwind.<</say>>
<<say "aubree">>You said it. Give me two minutes, okay?<</say>>
<<say "mc">>Sure.<</say>>
<</block>>
<<narrate>>She ducks behind a screen to get changed.<</narrate>>
<<say "mc">>How come there's only one table out?<</say>>
<<narrate>>You hear her shuffling off her underwear as she responds.<</narrate>>
<<say "aubree">>Why would we need more?<</say>>
<<say "mc">>For my massage?<</say>>
<<say "aubree">>Huh? I thought you were gonna massage me?<</say>>
<<think "mc">>Ah, so that's the game she's playing, guess it was obvious.<</think>>
<<say "mc">>You didn't tell <b>me</b> that!<</say>>
<<button "Continue" aubreesex>>
<<temp "sparelax01">>
<</button>>
<<case "sparelax01">>
<<narrate>>She comes out from behind the screen barely holding a towel to her body.<</narrate>>
<<block "aubree/massage02.jpg">>
<<say "aubree">>Is it an issue?<</say>>
<<think "mc">>Shit, I'm getting played. What does she have in mind? I'll go with it for now, I'll find some way to turn it to my advantage.<</think>>
<<say "mc">>Nah, it's fine, just unexpected. I thought I'd be getting one too.<</say>>
<<say "aubree">>It just didn't feel right to ask my aunt, y'know?<</say>>
<<think "mc">>But your $aubree.you is fine?<</think>>
<<say "mc">>I get it, lay down on the table for me.<</say>>
<</block>>
<<narrate>>She adjusts the towel and lies on the table.<</narrate>>
<<say "mc">>Okay, we'll go for a full body massage, yeah?<</say>>
<<say "aubree">>Whatever you say, $aubree.calls.<</say>>
<<think "mc">>Assert dominance!<</think>>
<<narrate>>You grab her thigh as you pour oil.<</narrate>>
<<center "aubree/massage03.jpg">>
<<say "aubree">>Watch it!<</say>>
<<narrate>>You look back at her quizzically.<</narrate>>
<<say "mc">>If you don't like my style, you're welcome to ask $monique.refer.<</say>>
<<think "aubree">>Shit, if I want my revenge I can't quibble the small stuff, I need him in deep!<</think>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "aubree">>You've got cold hands, is all.<</say>>
<<say "mc">>You gonna sit like that for the duration?<</say>>
<<say "aubree">>Oh, right yeah...<</say>>
<<narrate>>She flips over.<</narrate>>
<<vid "aubree/massage01.mp4">>
<<say "mc">>I guess we'll start with your back instead, then.<</say>>
<<narrate>>You roll down her towel, revealing her perky ass.<</narrate>>
<<vid "aubree/massage02.mp4">>
<<think "aubree">>That's it, perv, look at my ass!<</think>>
<<narrate>>You kneel on the table behind her, gleefully checking out her ass as you massage her back.<</narrate>>
<<think "mc">>Is this it? She just wants to tease me again? Fine, I'll let her, so how far she's wiling to go. But, not without some teasing of my own.<</think>>
<<say "mc">>Let's move on to your thighs proper.<</say>>
<<vid "aubree/massage03.mp4">>
<<narrate>>You tease her a little, massaging her upper thigh.<</narrate>>
<<think "aubree">>Holy shit, his hands are so close to my pussy. I didn't expect it to feel this good. God, this is hot.<</think>>
<<say "aubree">>Wait no, fuck. What am I doing?<</say>>
<<say "mc">>Huh, something wrong?<</say>>
<<think "aubree">>Shit, I got flustered and blurted that out.<</think>>
<<say "aubree">>Uhhh... just, you're a bit close, okay?<</say>>
<<say "mc">>Should I stop?<</say>>
<<say "aubree">>N-no... carry on.<</say>>
<<think "aubree">>Shit! What am I saying?!<</think>>
<<say "mc">>Alright, flip over.<</say>>
<<narrate>>She complies, not even attempting to cover her breasts.<</narrate>>
<<vid "aubree/massage04.mp4">>
<<think "mc">>That reaction, I've got her. There's no turning back from this.<</think>>
<<narrate>>You gentle start rubbing under her towel to gauge her reaction further.<</narrate>>
<<vid "aubree/massage05.mp4">>
<<think "aubree">>Oh god, I want this. Forget revenge, forget that he's my $aubree.you, I need this!<</think>>
<<narrate>>She lets out a sultry whisper, pleading for more.<</narrate>>
<<say "aubree">>Lower.<</say>>
<<think "mc">>Let's see how she handles this.<</think>>
<<narrate>>You remove her towel, expecting her to call you out and get her so-called revenge... but she says nothing.<</narrate>>
<<button "Continue" aubreesex>>
<<temp "sparelax03">>
<</button>>
<<case "sparelax03">>
<<narrate>>You gently massage around her pussy as she writhes beneath your touch, then slowly and deliberately start working her vulva, expecting this to be her stopping point.<</narrate>>
<<vid "aubree/massage06.mp4">>
<<narrate>>To your surprise, she continues to enjoy the moment, not once even suggesting you should stop.<</narrate>>
<<say "aubree">>Mhhhm, that's good, right there.<</say>>
<<think "aubree">>I don't even care anymore, this just feels too good!<</think>>
<<narrate>>Completely lost in the pleasure, she's like putty in your hands.<</narrate>>
<<think "mc">>This is so fucking hot. Let's see how far we can push this!<</think>>
/*<<vid "aubree/massage07.mp4" 1>>*/
<<narrate>>You reposition her and bring your face to her pussy. The anticipation on her face telling you all you need to know.<</narrate>>
<<button "Continue" aubreesex>>
<<temp "sparelax04">>
<</button>>
<<case "sparelax04">>
<<vid "aubree/massage08.mp4">>
<<narrate>>You greedily lap at her clit, determined to leave her wanting more.<</narrate>>
<<button "Continue" aubreesex>>
<<temp "sparelax05">>
<</button>>
<<case "sparelax05">>
<<vid "aubree/massage09.mp4">>
<<narrate>>She spreads her lips for you.<</narrate>>
<<think "mc">>Holy shit, she's way more into this than I expected.<</think>>
<<say "aubree">>Mhhhmm, yeah, I'm so wet.<</say>>
<<button "Continue" aubreesex>>
<<temp "sparelax06">>
<</button>>
<<case "sparelax06">>
<<vid "aubree/massage10.mp4">>
<<narrate>>Her moans grow more intense as you continue to massage her clit.<</narrate>>
<<say "aubree">>Please make me cum!<</say>>
<<narrate>>Her body starts to convulse, and her moans are briefly interrupted as she holds her breath.<</narrate>>
<<button "Continue" aubreesex>>
<<temp "sparelax07">>
<</button>>
<<case "sparelax07">>
<<narrate>>She lays back on the table, looking pleased with herself.<</narrate>>
<<center "aubree/massage04.jpg">>
<<say "aubree">>I can't believe you just did that.<</say>>
<<think "mc">>Oh no you don't!<</think>>
<<say "mc">>I thought it's what you wanted, you kept hinting at it, and given what you've been exposing me to lately I figured I didn't really have any choice. Maybe now you've got what you want, you'll stop.<</say>>
<<think "aubree">>Wait, what? WHAT THE FUCK?!<</think>>
<<say "aubree">>The fuck?<</say>>
<<narrate>>She angrily gets off the table and stomps behind the screen.<</narrate>>
<<say "mc">>What's wrong?<</say>>
<<narrate>>You're met with silence. You wait patiently for her to get changed, but she just walks past you, avoiding eye contact.<</narrate>>
<<think "mc">>Shit, did I push too far? I'll give her some space for now.<</think>>
<<button "Continue" mngspa>>
<<lust "aubree" 5>>
<<corrupt "aubree" 10>>
<<if $aubree.corruptmax < 80>>
<<set $aubree.corruptmax = 80>>
<</if>>
<<fatigue "aubree" -5>>
<<unlock "aubree" "massage01">>
<<event "aubree" "sparelax" 2>>
<<run skillup('massage', 'mc', 3)>>
<</button>>
<<case "caughtinroom">>
<<say "mc">>Strip for me.<</say>>
<<say "aubree">>What?!<</say>>
<<say "mc">>You're always teasing me, so now I want a little revenge on my terms.<</say>>
<<think "aubree">>You little bastard!<</think>>
<<narrate>>She scowls at you... but then starts doing as she's told.<</narrate>>
<<left2 "aubree/strip01.mp4" v>>
<<say "aubree">>How does teasing you more help get your revenge?<</say>>
<<say "mc">>Oh, that's not the revenge, this is.<</say>>
<<narrate>>You whip out your dick and start stroking. She simply stares at your cock with a mixture of lust, confusions and disgust.<</narrate>>
<<think "aubree">>Shit, he wasn't ever meant to catch me, and this is the second time. I need to play it off as just teasing, otherwise he won't believe me. I can jump to his tune for a little bit while he strokes his big cock.<</think>>
<<say "aubree">>Ugh, whatever.<</say>>
<<say "mc">>Keep going. How do you like it when you see someone else fapping?<</say>>
<<think "aubree">>Why am I enjoying this?! What the hell is wrong with me?!<</think>>
<<vid "aubree/strip02.mp4">>
<<say "mc">>Damn, look at that ass.<</say>>
<<narrate>>You imitate a chef's kiss with your free hand.<</narrate>>
<<say "aubree">>You like my ass? Perv?<</say>>
<<say "mc">>I love your ass, but now I wanna see your tits.<</say>>
<<narrate>>With no hesitation, she flings her top off on to the dresser.<</narrate>>
<<say "aubree">>Is watching your dirty $aubree.them strip turning you on, perv?<</say>>
<<think "mc">>Holy shit, she's got really into this!<</think>>
<<narrate>>She intently watches you stroke your cock.<</narrate>>
<<say "aubree">>God, I wish he'd let me stroke it for him.<</say>>
<<say "mc">>Go ahead. If you're trying to tease me back here, I ain't gonna bite. Go on, do it.<</say>>
<<think "aubree">>Shit, I didn't mean to say that out loud, what the fuck do I do now?<</think>>
<<narrate>>After a brief moment of inner turmoil, she nervously starts brushing her hand over your cock.<</narrate>>
<<vid "aubree/stroke01.mp4">>
<<think "mc">>Holy shit, I underestimated her! I mean her technique is awful, it's like she's never touched a cock before, but wow, this is not what I expected.<</think>>
<<say "mc">>Have you never touched a cock before?<</say>>
<<say "aubree">>Oh, fuck you, I'll show you just what I can do with a cock!<</say>>
<<narrate>>She looks you straight in the eyes and licks bottom-to-top the length of your penis.<</narrate>>
<<center "aubree/cock01.jpg">>
<<say "mc">>Holy fuck!<</say>>
<<narrate>>She maintains eye contact with you while her tongue sits on your bellend<</narrate>>
<<set _uc = $aubree.refer.toUpperFirst()>>
<<say "mc">>Go on. Do it, _uc.<</say>>
<<narrate>>She jumps back suddenly.<</narrate>>
<<say "aubree">>N-no... we can't, this is too far.<</say>>
<<think "mc">>Shit, did I push her too far too quickly... I got this.<</think>>
<<narrate>>You burst out laughing.<</narrate>>
<<say "mc">>Ha! Your face! I got you back good! Now, let's consider us even, yeah?<</say>>
<<think "aubree">>Even? You bastard, we're not even, I'll get you back for this!<</think>>
<<say "aubree">>Haha, yeah, sure.<</say>>
<<narrate>>She stares at you angrily while she collects her clothes and leaves.<</narrate>>
<<think "mc">>That went better than expected! And there's no way she'll be happy to stay even. Just a little more under this pretense and she'll be mine.<</think>>
<<notice>>
Existing photo shoots are now less effective at increasing $aubree.name's corruption.
<</notice>>
<<button "Continue" yourroom>>
<<if $aubree.corruptmax < 60>>
<<set $aubree.corruptmax = 60>>
<</if>>
<<event "aubree" "roomcaught" 3>>
<<lust "aubree" 5>>
<<corrupt "aubree" 5>>
<</button>>
<<case "rockpeep">>
<<think "mc">>Something feels off; let's see what she's hiding.<</think>>
<<narrate>>You follow behind her, and as you head into the halls, she challenges you.<</narrate>>
<<say "aubree">>Following me? Didn't you see enough at the shoot?<</say>>
<<say "mc">>Ha! Now whose wishing? Nah, I'm just heading to my room.<</say>>
<<say "aubree">>Right, yeah, of course.<</say>>
<<think "mc">>Not the usual confident or sarcastic response you get from her.<</think>>
<<narrate>>You get up to your door, make a point of waving at her and go into your room, you leave it a few minutes then head down the hall to her room.<</narrate>>
<<think "mc">>I wonder what had her suddenly in such a rush to get out.<</think>>
<<narrate>>You arrive at her door, and there's nobody else about. It's closed, but you decide to use your master key card to silently push it ajar and look in.<</narrate>>
<<think "mc">>No risk, no reward!<</think>>
<<button "Continue" aubreesex>>
<<temp "rockpeep01">>
<</button>>
<<case "rockpeep01">>
<<vid "aubree/rockpeep01.mp4">>
<<think "mc">>Well, this is definitely not what I expected. Did modeling really turn her on that much?<</think>>
<<narrate>>You watch as she continues to pleasure herself, with increasing ferocity.<</narrate>>
<<say "aubree">>Oh, god, $aubree.calls, take me now!<</say>>
<<think "mc">>Shit, did she really just call me? There's no way she knows I'm watching. Damn, this is hot.<</think>>
<<narrate>>She puts in another finger and continues moaning.<</narrate>>
<<say "aubree">>I want your cock. Give it to me. This fantasy is just so wrong, but the thought of it... fuuuck.<</say>>
<<narrate>>Stating it out loud apparently was enough to put her over the edge, she falls back on the bed and screams into her pillow as the pleasure consumes her.<</narrate>>
<<think "mc">>That's my cue to leave! Damn, do I want to make her fantasies a realty?<</think>>
<<button "Continue" househub>>
<<unlock "aubree" "rockpeep01">>
<<lust "aubree" 2>>
<<corrupt "aubree" 1>>
<<time 0.5>>
<</button>>
<</switch>><<tracker "aubree" 1>>
<<if $aubree.events.sitting == undefined>>
<<step "Meeting greeting" "Discuss the meeting with her.">>
<<elseif $aubree.events.workout == undefined>>
<<step "Workout together" "When she's in the gym ask if she wants to workout together">>
<<elseif $aubree.events.model == undefined>>
<<step "Previous career" "Talk to her about modeling">>
<<elseif !$girlsmet.includes('theodora') && $charlie.events.arrived == undefined>>
<<step "Progress the story." "This will trigger automatically if you continue to follow the story tasks.">>
<<elseif !$girlsmet.includes('theodora')>>
<<step "Send $charlie.name to 0-0-0." "Go to Gateway B, connect to 0-0-0 and select genderswap">>
<<elseif $theodora.events.photo == undefined>>
<<step "Progress with $theodora.name." `"Progress "+$theodora.name+"'s individual story."`>>
<<elseif $buildings.studio == undefined>>
<<step "Get a studio." "Research it - Go to the monitoring station, select the photography project and assign a worker to the rota.<br>Build it - Go to the construction facility, select the studio project and assign a worker to the rota.">>
<<elseif $aubree.events.aubrock01 == undefined>>
<<step "First shoot." "Go to the photo studio in town (exit the hotel), select photo shoot and chose her.">>
<<elseif $adria.events.nightcomp == undefined>>
<<step "Progress with $adria.name." `"Progress "+$adria.name+"'s individual story."`>>
<<elseif $aubree.docsread == undefined>>
<<step "Networking." "Open the networking app on your computer and connect to her computer.">>
<<elseif !$aubree.docsread.includes('notes01')>>
<<step "Networking." "Open the networking app on your computer, connect to her computer and read her notes.">>
<<elseif $aubree.events.relationship == undefined>>
<<step "Think on it" "Before bed, collect your thoughts.">>
<<elseif $aubree.corruptmax < 40>>
<<switch $aubree.events.relationship>>
<<case "friends">>
<<step "End of current content for this route." "Collect your thoughts at night should you decide to change your relationship.">>
<<case "peep">>
Peep on her
<<case "full">>
<<if $aubree.corruption < 20>>
<<step "She's not corrupt enough" "20 needed. How to increase?<ul>
<li>Do photo shoots.</li>
<li>Flirt after accumulating 10 corruption.</li>
<li>Workout while she's in the gym.</li>
<li>Explore discussion topics.</li>
<li>Occasionally when relaxing at the spa together.</li>
</ul>
">>
<<elseif $aubree.events.aubgarden01 == undefined>>
<<step "Next shoot" "Go to the photo studio in town (exit the hotel), select photo shoot, chose her and do the garden shoot.">>
<<else>>
<<step "Night Invite" "Visit her at night.">>
<</if>>
<</switch>>
<<elseif $aubree.corruption < 30>>
<<step "She's not corrupt enough" "30 needed. How to increase?<ul>
<li>Peep on her.</li>
<li>Do photo shoots.</li>
<li>Flirt after accumulating 10 corruption.</li>
<li>Workout while she's in the gym.</li>
<li>Explore discussion topics.</li>
<li>Occasionally when relaxing at the spa together.</li>
</ul>">>
<<elseif $aubree.events.roomcaught == undefined>>
<<step "Room invader" "Go to your room while she's in hers.">>
<<elseif $aubree.events.aubgames01 == undefined>>
<<step "Games Shoot" "Go to the photo studio in town (exit the hotel), select photo shoot and chose her to do the games room shoot.">>
<<elseif $aubree.corruption < 40>>
<<step "She's not corrupt enough" "40 needed. How to increase?<ul>
<li>Peep on her.</li>
<li>Do photo shoots.</li>
<li>Flirt after accumulating 10 corruption.</li>
<li>Workout while she's in the gym.</li>
<li>Explore discussion topics.</li>
<li>Occasionally when relaxing at the spa together.</li>
</ul>">>
<<elseif $aubree.lust < 40>>
<<step "She doesn't desire you enough." "40 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>bake for her.<br>Do photoshoots together.">>
<<elseif $aubree.events.roomcaught == 2>>
<<step "Another room invasion" "Go to your room while she's in hers.">>
<<elseif !$aubree.docsread.includes('notes02')>>
<<step "Networking." "Open the networking app on your computer, connect to her computer and read her new notes.">>
<<elseif $buildings.spa == undefined>>
<<step "Progress with $monique.name or $whitney.name" `"Progress either substory until you've built a spa."`>>
<<elseif $aubree.lust < 60>>
<<step "She doesn't desire you enough." "60 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Bake for her.<br>Do photoshoots together.<br>Relax together.">>
<<elseif $aubree.corruption < 50>>
<<step "She's not corrupt enough" "50 needed. How to increase?<ul>
<li>Peep on her.</li>
<li>Do photo shoots.</li>
<li>Flirt after accumulating 10 corruption.</li>
<li>Workout while she's in the gym.</li>
<li>Explore discussion topics.</li>
<li>Occasionally when relaxing at the spa together.</li>
</ul>">>
<<elseif $aubree.events.sparelax == undefined>>
<<step "Wait on her" "She'll text you soon.">>
<<elseif $aubree.events.sparelax == 1>>
<<step "Spa day" `"Relax with "+$aubree.name+" at the spa."`>>
<<elseif $aubree.events.sparelax == 2>>
<<step "Give her space" `"She needs a couple of days to process."`>>
<<elseif $aubree.events.sparelax == 3>>
<<step "Check your messages" `"Read her text message."`>>
<<elseif $aubree.events.sparelax == 4>>
<<step "Studio Meetup" `"Meet her at the photo studio."`>>
<<elseif $aubree.lust < 80>>
<<step "She doesn't desire you enough." "80 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Workout when she's in the gym.<br>Peep on her her at night.">>
<<elseif $aubree.corruption < 80>>
<<step "She's not corrupt enough" "80 needed. How to increase?<ul>
<li>Peep on her.</li>
<li>Do photo shoots.</li>
<li>Flirt after accumulating 10 corruption.</li>
<li>Workout while she's in the gym.</li>
<li>Explore discussion topics.</li>
<li>Occasionally when relaxing at the spa together.</li>
</ul>">>
<<elseif $aubree.events.firstsex == undefined>>
<<step "Fap" "Before bed, masturbate while thinking about her.">>
<<else>>
<<movielist aubree>>
<</if>>
<</tracker>>
/* pre-sex
<<elseif $breakdone.toilets.lockers == undefined>>
<<step "Locker room" "Using the construction facility, upgrade the public toilets to include a locker room.">>
<<elseif $aubree.events.vannachat == undefined>>
<<step "Nighttime Spy" "Peep on her at night.">>
<<elseif $aubree.lust < 70>>
<<step "She isn't lustful enough." "70 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>bake for her.<br>Do photoshoots together.">>*/<<nobr>>
<<set $scene = 0>>
<<if $location != $currentlocations.britt && $location != "firstIntros" && $replay == false>>
<<say "britt">>I gotta go. Let's chat again soon.<</say>>
<<follow britt>>
<<button "Continue" $return>>
<</button>>
<<else>>
<<set _img = getImg('britt')>>
<<block _img>>
<<narrate>>She nods at you.<</narrate>>
<<if $tasks.hooded != undefined && $britt.events.kyler == undefined>>
<<say britt>>How was your evenin' wi' $kyler.name?<</say>>
<<say mc>>What do you mean?<</say>>
<<narrate>>She taps her nose and grins.<</narrate>>
<<say britt>>Ha! I see how it is. I got ya. So, what d'ya need?<</say>>
<<think mc>>What on earth is she talking about?<</think>>
<<event "britt" "kyler">>
<<else>>
<<say "britt">>Heyup.<</say>>
<<say "mc">>Hey, $britt.name, you free?<</say>>
<<if $britt.events.buzzpeek != undefined>>
<<say "britt">>For mah fave peeper? F'sure!<</say>>
<<say "mc">>You knew I was watching?<</say>>
<<say "britt">>Total turn on.<</say>>
<<set delete $britt.events.buzzpeek >>
<<lust "britt" 1>>
<<like "britt" 1>>
<<else>>
<<say "britt">>Aye, I can be for you.<</say>>
<</if>>
<</if>>
<div class="choices" id="topics">
<h3>What do you want to discuss?</h3>
</div>
<</block>>
<</if>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("brittdiscussions").processText());
})
<</script>>
<</nobr>><<nobr>>
<<scene>>
<<if $britt.lustlvl == 0>>
<<set $britt.lustlvl = 1>>
<</if>>
<<if $replay == true>>
<<set $location ="lounge">>
<</if>>
<<set _img = getImg('britt')>>
<<switch $tempvar>>
<<case "planets">>
<<left2 _img>>
<<say "mc">>Do you remember much of your home world, $britt.name?<</say>>
<<say "britt">>Yeah, boss. I wo' a solider back there.<</say>>
<<say "mc">>Ever wanted to go back?<</say>>
<<say "britt">>Nah. It's way better 'ere.<</say>>
<<say "mc">>You'd not even want to see what it's like now?<</say>>
<<say "britt">>Nah. Why d'ya ask?<</say>>
<<say "mc">>I'm just looking for more worlds to connect to. Every new world helps me grow.<</say>>
<<say "britt">>Why din't ya say so? C'mon, let's go now.<</say>>
<<narrate>>You arrive at the gateway a little later, $britt.name basically dragging you out of the car when you arrive.<</narrate>>
<<say "britt">>Alright, ya ready?<</say>>
<<narrate>>You nod. The gateway splashes open with a green hue.<</narrate>>
<<say "britt">>Never thought I'd see the old world again... eh, not that I cared.<</say>>
<<narrate>>As she steps through you are overcome with pleasure. All other senses dull as it consumes you. You sit at the foot of the gateway screaming with joy while onlookers scurry passed you, eager to avoid the crazy person. After a few minutes, it subsides.<</narrate>>
<<say "britt">>Fuck, it really does send you wild, huh?<</say>>
<<say "mc">>You have no idea, I didn't even notice you step back through. It's like my entire being becomes a conduit of overwhelming pleasure. For those few moments it's unbearably euphoric, like I'm in a constant state of an extremely heightened orgasm. It's quite difficult to put into words.<</say>>
<<notice>>
<ul>
<li>Your power has increased.</li>
<li>Your max energy has increased.</li>
<li>$britt.name's home world is now available for expeditions.</li>
</ul>
<</notice>>
<<button "Continue" gatewayb>>
<<like "britt" 5>>
<<lust "britt" 3>>
<<set $planets[12].unlocked = true>>
<<set $power += 1>>
<<set $maxenergy += 10>>
<<event "britt" "planets">>
<<time 2>>
<</button>>
<<case "dildo">>
<<block _img>>
<<say "mc">>I got you a gift.<</say>>
<<say "britt">>Oh, ya really shouldn't 'av.<</say>>
<<narrate>>You pass her the dildo and she starts laughing.<</narrate>>
<<say "britt">>Ha! This is more for you than it is me, isn't it?<</say>>
<<say "mc">>Whatever do you mean?<</say>>
<</block>>
<<say "britt">>Ha! Yeah, sure. Come to my room one night and watch me shove it in my pussy.<</say>>
<<narrate>>You nearly choke on your own spittle.<</narrate>>
<<say "britt">>Not like you to be so coy. You get off watching me get off, yeah?<</say>>
<<think "mc">>Noice!<</think>>
<<say "mc">>I'll see you at the show.<</say>>
<<button "Continue" housestuff>>
<<lust "britt" 4>>
<<like "britt" 3>>
<<event "britt" "dildo">>
<<item "dildo" -1>>
<<time 0.5>>
<</button>>
<<case "champions">>
<<block _img>>
<<say "mc">>I'm on my way to speak to $voice.name, she says there's only eight champions.<</say>>
<<say "britt">>What does that mean exactly, like she brought us all here but only deputized or whatever, eight of us?<</say>>
<<say "mc">>No, it means she only brought eight people here.<</say>>
<<say "britt">>Understood. I'll speak to $moriah.name while ya dealing with $voice.name. We'll set up interrogations to figure it out.<</say>>
<<say "mc">>Wait no! I don't know that it's anything sinister at this stage, it might just be a stray by other means or someone who didn't want to go east. And if it is, we don't want to spook them. Besides, what if it's $moriah.name?<</say>>
<</block>>
<<say "britt">>It's not 'er. I can vouch for $moriah.name and $armani.name for that matter. There's no way they'd act the way they have in ensuring our survival and comfort if they were working with the enemy.<</say>>
<<say "mc">>What enemy? And maybe that's what they want you to think! Not saying it is them of course, I have no idea at this stage.<</say>>
<<say "britt">>Then why are ya trustin' me, by that logic I'm a suspect too.<</say>>
<<say "mc">>I figured with your background you literally could have killed everyone by now if you had wanted.<</say>>
<<say "britt">>I think you overestimate me, or underestimate them.<</say>>
<<say "mc">>Just... don't say anything okay?<</say>>
<<say "britt">>Fine. But I'm coming with you.<</say>>
<<button "Continue" voiceanswers>>
<<set $mc.events.eight = "britt">>
<<like "britt" 3>>
<<time 1>>
<</button>>
<<case "trans">>
<<block _img>>
<<say "mc">>You know how $vanna.name got twenty years younger through the Gateway, what about you, did you get anything?<</say>>
<<say "britt">>Nothin' like 'er, but I did use to be a brunette.<</say>>
<<say "mc">>Wild, I can't imagine you brown!<</say>>
<<say "britt">>I know, right? Blonde suits me!<</say>>
<<say "mc">>I'll say!<</say>>
<</block>>
<<narrate>>She gives your tushie a squeeze.<</narrate>>
<<say "britt">>Why'd ya ask, anyhow?<</say>>
<<say "mc">>Just intrigued.<</say>>
<<say "britt">>Yeah, but why now?<</say>>
<<think "mc">>Uhhh...<</think>>
<<say "mc">>Was talking to $vanna.name the other day and just sort of got me pondering.<</say>>
<<say "britt">>Eh, don't chill the small stuff, jus' enjoy what ya got, y'know?<</say>>
<<say "mc">>Uhh, right, yeah, thanks $britt.name.<</say>>
<<button "Continue" britt>>
<<event "britt" "trans">>
<<like "britt" 3>>
<<lust "britt" 2>>
<<time 1>>
<</button>>
<<case "girls">>
<<block _img>>
<<think "mc">>Probably best not to mention I was spying on her...<</think>>
<<say "mc">>Given you like to watch $molly.name even before I was involved, does that mean you like girls too?<</say>>
<<say "britt">>Nothin' compares to a cock, but I enjoy gettin' intimate with other women, yeah.<</say>>
<<say "mc">>Any women in particular?<</say>>
<<say "britt">>$molly.name f'sure, ya got somethin' in mind?<</say>>
<<narrate>>She presses her hand against your chest and on her tip toes brings her mouth to your ear.<</narrate>>
<</block>>
<<say "britt" "" "(Whisper)" "whisper">>'Avin' you rail us both together sounds super hot... n' dun worry, you can watch me n' $ember.name whenever ya like.<</say>>
<<say "mc">>Ah, you noticed me then?<</say>>
<<say "britt">>'Ard not to notice the tall man at the door jerkin' off. Why do ya think we put on such a good show?<</say>>
<<say "mc">>Well, I certainly enjoyed it!<</say>>
<<say "britt">>I bet ya did, now imagine how much more fun it'd be if you were involved. I'll set somethin' up wi' $molly.name, you jus' gotta come see us at the right time. She'll need a bit more convincin' than me, too, so be sure not to neglect her needs.<</say>>
<<narrate>>She slaps your ass then walks off.<</narrate>>
<<think "mc">>Shit, this sounds too good to be true!<</think>>
<<button "Continue" housestuff>>
<<if $britt.events.girls == undefined>>
<<lust "britt" 3>>
<<like "britt" 3>>
<<event "britt" "girls">>
<</if>>
<<time 1>>
<</button>>
<<case "debrief">>
<<block _img>>
<<say "mc">>How was the expedition?<</say>>
<<say "britt">>It was great! Can't wait to get back out there.<</say>>
<<say "mc">>What was it like?<</say>>
<<say "britt">>Hmm, as a mission it was just like any other, just in a different location with different people.<</say>>
<<say "mc">>Then why so excited?<</say>>
<</block>>
<<say "britt">>Because outside of it being a mission, it wa' jus' fun. Completely new people, entirely new scenery, and even jus' being able to interact with people was fantastic.<</say>>
<<say "mc">>How did those people feel about you being from another world?<</say>>
<<say "britt">>Never came up, just explained we were passing through and needed some supplies. We also found some abandoned commercial buildings we were able to scavenge stuff from, too. The best find was pop, though. I've even made some ice lollies from it.<</say>>
<<say "mc">>Really, that was your favorite thing? <</say>>
<<narrate>>She nods enthusiastically.<</narrate>>
<<say "britt">>I love sweet things, and especially ice lollies!<</say>>
<<say "mc">>Great, you up for doing more?<</say>>
<<say "britt">>Any time boss!<</say>>
<<say "mc">>Boss, huh?<</say>>
<<narrate>>She blushes.<</narrate>>
<<say "britt">>Sorry, it just kinda slipped, but you kinda are now I guess.<</say>>
<<say "mc">>I hadn't really thought about it.<</say>>
<<say "britt">>Anyway, I'm gonna go find $molly.name, get 'er up to speed!<</say>>
<<button "Continue" housestuff>>
<<event 'britt' 'debrief'>>
<<lust 'britt' 2>>
<<like 'britt' 5>>
<</button>>
<<case 'fighter'>>
<div class="leftbit">
<img @src="setup.img+'britt/'+$location+'01.jpg'" class="leftimg">
</div>
<div class="rightbit">
<<say "mc">>So you're generally in charge of the trade teams?<</say>>
<<say "britt">>
Aye, $armani.name put me in charge as I have an eye for danger and a ways to prevent it.
<</say>>
<<say "mc">>What kind of danger do you face out there?<</say>>
<<say "britt">>
Mostly bugger all to be honest, but the odd time we get some strange weather, or even more rarely a hungry creature.
<</say>>
<<say "mc">>Wait, there are creatures out there?<</say>>
</div>
<<say "britt">>Yeah, bears, deer, backalope and all sorts of weird and wonderful creatures that wandered in from the many worlds.<</say>>
<<say "mc">>A backalope?<</say>>
<<say "britt">>Guess you don't 'av 'em on your world. They're nasty critters, big orange fuckers with hind legs strong enough to topple a castle. Tasty meat, though.<</say>>
<<say "mc">>And you fight these things?<</say>>
<<say "britt">>Those things we fight at range. You ain't a chance close up. Just pray you never see one.<</say>>
<<say "mc">>Yeah. Anything else I should be looking out for?<</say>>
<<say "britt">>Just steer clear of anything living out there to be safe. And when we're out there, you do as I say at all times, got it?<</say>>
<<say "mc">>Got it.<</say>>
<<say "britt">>But when we're here, I'm all yours to command.<</say>>
<<button "Continue" britt>>
<<if $britt.events.fight is undefined>>
<<lust "britt" 1>>
<<like "britt" 2>>
<<event 'britt' 'fight'>>
<</if>>
<<time 1>>
<</button>>
<<case "watch">>
<<block _img>>
<<say "mc">>Do you always enjoy watching, or is it specifically $molly.name?<</say>>
<<say "britt">>I like to get off, watchin' others gettin' off gets me off, really that simple.<</say>>
<<say "mc">>So you prefer watching to joining in?<</say>>
<<say "britt">>Hell no, much rather be in on the action.<</say>>
<<say "mc">>You seem content watching me and $molly.name in the lounge, though.<</say>>
<</block>>
<<say "britt">>That's time for you n' 'er. You let me watch. I'd let 'er watch us, too.<</say>>
<<say "mc">>Makes sense. So if you and I can have some time in the lounge...?<</say>>
<<say "britt">>Then she can pull up a chair and watch as I show 'er 'ow it's really done.<</say>>
<<say "mc">>Fighting words!<</say>>
<<narrate>>She slaps your ass.<</narrate>>
<<say "britt">>Just bein' real.<</say>>
<<think "mc">>Let's test that theory in the lounge when it's just them two!<</think>>
<<button "Continue" britt>>
<<like "britt" 1>>
<<lust "britt" 1>>
<<event "britt" "thirdwheel">>
<<time 1>>
<</button>>
<<case "catchup">>
<<say "mc">>Hey, you mentioned wanting to catch up? Now a good a time?<</say>>
<<if $britt.lust < 20 || $britt.like < 15>>
<<block _img>>
<<think "britt">>Oh, I absolutely do, but I'm not as forward as $vanna.name, and you've barely even tried to get to know me so far!<</think>>
<<say "britt">>Yeah, love to. So tell me about ya'self!<</say>>
<<think "mc">>Heh, not exactly where I was hoping to go with this. Guess I need to put a little extra work in first.<</think>>
<<narrate>>The two of you spend the time exchanging stories and getting to know each better, flirting occasionally.<</narrate>>
<<button "Continue" britt>>
<<like "britt" 3>>
<<lust "britt" 1>>
<<time 1>>
<</button>>
<</block>>
<<else>>
<<block _img>>
<<if $britt.events.sawmolly != undefined>>
<<think "britt">>After what I saw you and $molly.name up to in the lounge, I've been waiting for my chance!<</think>>
<</if>>
<<say "britt">>Yeah, mhhhm, tell me, what you got in mind?<</say>>
<<say "mc">>Why don't you sit on my lap, and we'll see what pops up?<</say>>
<<narrate>>She snorts.<</narrate>>
<<say "britt">>How about we jump straight to a topic?<</say>>
<<think "mc">>Ah, maybe I misread this.<</think>>
<<narrate>>With almost no hesitation, she's on her knees before you, clawing at your belt buckle.<</narrate>>
<</block>>
<<think "mc">>Nope, guess I was spot on!<</think>>
<<say "britt">>Shit, look at that thing.<</say>>
<<narrate>>Her eyes fixate on your dick as she tosses off her clothes.<</narrate>>
<<say "britt">>I want ya to look at my body as I suck ya dick.<</say>>
<<button "Continue" brittsex>>
<<temp "catchup">>
<</button>>
<</if>>
<<case 'trade'>>
<div class="leftbit">
<img @src="setup.img+'britt/'+$location+'01.jpg'" class="leftimg">
</div>
<div class="rightbit">
<<say "mc">>What do you trade with the Eastlanders?<</say>>
<<say "britt">>Whatever $armani.name instructs. I ain't too interested in all that, I'm there to ensure everyone gets there and back safely.<</say>>
<<say "mc">>Right, gotcha.<</say>>
<<say "britt">>Honestly, I'm more interested in what you've to offer than the Eastlanders.<</say>>
<<say "mc">>What do you mean?<</say>>
</div>
<<say "britt">>Oh, don't be coy. You're an attractive fella, and I wanna know more about ya.<</say>>
<<say "mc">>Not much to tell you that I haven't already, at least nothing interesting.<</say>>
<<say "britt">>Doubt that very much. I just need to get to know ya.<</say>>
<<if $britt.lust < 30 && $britt.like < 20>>
<<think "britt">>As much as I want to catch up with others, I think I need to get to know him before I get to <b><u>really</u></b> know him.<</think>>
<<else>>
<<say "britt">>And I think I know exactly how to do that.<</say>>
<<narrate>>She gives you a wink then slaps your ass as she walks past.<</narrate>>
<<say "britt">>Later.<</say>>
<</if>>
<br>
<<button "Continue" housestuff>>
<<if $britt.events.trade == undefined>>
<<like "britt" 2>>
<<lust "britt" 1>>
<<set $britt.events.trade = 1>>
<</if>>
<<run addNightEvent('brittnightvisit')>>
<<time 1>>
<</button>>
<<case "hang">>
<<block _img>>
<<say "mc">>I was thinking...<</say>>
<<narrate>>She looks at you patiently.<</narrate>>
<<say "mc">>Sometimes I get awfully lonely at night.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "britt">>If only you 'ad someone to keep ya company, eh?<</say>>
<<say "mc">>Exactly. Do you know anyone that might like to join me?<</say>>
<</block>>
<<say "britt">>I'm sure I can think o' someone. Maybe you'll see 'em one night very soon?<</say>>
<<say "mc">>I sure hope so.<</say>>
<<button "Continue" housestuff>>
<<run addNightEvent('brittnightvisit')>>
<<time 1>>
<</button>>
<<case 'exp'>>
<div class="leftbit">
<img @src="setup.img+'britt/'+$location+'01.jpg'" class="leftimg">
</div>
<div class="rightbit">
<<say "mc">>Would you be interested in heading through the gateway on missions?<</say>>
<<say "britt">>Yeah, I'm game. I'll let $armani.name know, and I have a good idea on how you can reward me.<</say>>
<<say "mc">>Oh?<</say>>
<<if $tasks.armaniexp is undefined && $expeditions is undefined>>
<<think "mc">>I guess that was a subtle way of telling me expeditions need to be organized by $armani.name.<</think>>
<<task "armaniexp">>
<</if>>
<<if $britt.lust >= 10>>
<<say "britt">>Told you before, I'm a lover not a fight. Come see me after an expedition.<</say>>
<<else>>
<<say "britt">>You treat me well, and I'll treat you well.<</say>>
<</if>>
<<notice>>$britt.name can now be sent on expeditions.<</notice>>
<br>
<<button "Continue" britt>>
<<explorer "britt">>
<<if $britt.events.exp is undefined>>
<<like "britt" 1>>
<<lust "britt" 1>>
<<set $britt.events.exp = 1>>
<</if>>
<</button>>
</div>
<</switch>>
<</nobr>><<set $scene = 0>>
<<set _active = "britt">>
<<meet _active>>
<<set $return = returnLocation()>>
<<set _passage = _active+"answers">>
<<set $girl = "britt">>
<<smallflirt "britt">>
<<if $britt.events.krissy == 1 && $girlsavailable.includes('krissy') && checkUnlocks('movie', 'bwatch', 'krissy') == false>>
<<opt "Watching $krissy.name" krissysex brittwatch>><</opt>>
<</if>>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $britt.events.planets == undefined>>
<<link "Home World" brittanswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if $items != undefined && $items.dildo > 0 && $britt.sex > 0 && $britt.events.dildo == undefined && $britt.lust > 29 && $britt.like > 29>>
<<link "Give Dildo" brittanswers>>
<<temp "dildo">>
<</link>><br>
<</if>>
<<if $tasks.eightchamps != undefined>>
<<link "Champions" brittanswers>>
<<temp "champions">>
<</link>>
<br>
<</if>>
<<if $tasks.eightchampsdetective != undefined && $britt.events.trans == undefined>>
<<link "Transformation" brittanswers>>
<<temp "trans">>
<</link>>
<br>
<</if>>
<<if $britt.events.emberles != undefined && $britt.events.girls == undefined>>
<<link "Other Women" brittanswers>>
<<temp "girls">>
<</link>>
<br>
<</if>>
<<if $location == "lounge" && $britt.events.thirdwheel != undefined && $girlshere.includes('molly') && $girlshere.length == 2>>
<<link "Put on a show" brittsex>>
<<temp "mollyshow">>
<</link>>
<br>
<</if>>
<<if $location == "bedrooms">>
<<link "Catch up" brittanswers>>
<<temp "catchup">>
<</link>>
<Br>
<</if>>
<<if $britt.events.sawmolly != undefined && $britt.lustlvl >= 1 && $britt.events.thirdwheel == undefined>>
<<link "Watching" brittanswers>>
<<temp "watch">>
<</link>>
<Br>
<</if>>
<<if $britt.events.expeditions != undefined && $britt.events.debrief == undefined>>
<<link "How was the expedition?" brittanswers>>
<<temp "debrief">>
<</link>>
<br>
<</if>>
<<if $britt.events.fight == undefined>>
<<link "Fighter" brittanswers>>
<<set $tempvar = "fighter">>
<</link>>
<br>
<</if>>
<<if $britt.events.trade == undefined>>
<<link "Trade" brittanswers>>
<<set $tempvar = "trade">>
<</link>>
<br>
<<elseif !$blockedNightEvents.includes('brittnightvisit') && !$nightEvents.includes('brittnightvisit')>>
<<link "Lonely Nights" brittanswers>>
<<set $tempvar = "hang">>
<</link>>
<br>
<</if>>
<<if !$explorers.includes('britt')>>
<<link "Expeditions" brittanswers>>
<<set $tempvar = "exp">>
<</link>>
<br>
<</if>>
<<link "Never mind" $return>><</link>><<nobr>>
<<switch $tempvar>>
<<case "know01">>
<<narrate>>You let her in. She promptly sprawls out on your bed.<</narrate>>
<<say "britt">>Gotta say, dude, I'm a bit jel.<</say>>
<<say "mc">>Sorry, what?<</say>>
<<say "britt">>The others all got a few days to know you before I did. I don't wanna be left behind, y'know?<</say>>
<<say "mc">>I'm not sure I do, no. But I'm happy to hang.<</say>>
<<say "britt">>S'bit chilly, can I have one of your blankets?<</say>>
<<narrate>>You pass her a blanket and she covers up her legs.<</narrate>>
<<say "mc">>So, what do you want to know?<</say>>
<<narrate>>The two of you chat a little, but throughout you can't help but feel she's not fully concentrating.<</narrate>>
<<say "britt">>Ooaa! Yeah, uhhh, that's great.<</say>>
<<say "mc">>You okay?<</say>>
<<say "britt">>Oh, god yes!<</say>>
<<narrate>>You notice movement in the blanket you'd given her, and her face is visibly quite flustered.<</narrate>>
<<say "mc">>Are you...?<</say>>
<<narrate>>The moans increase, and she's no longer trying to hide it as she looks directly at you.<</narrate>>
<<button "Continue" brittnightvisits>>
<<lust "britt" 1>>
<<set $tempvar = "coverfap">>
<</button>>
<<case "coverfap">>
<<vid "britt/coverfap.mp4">>
<<narrate>>You pull the blankets away from her, revealing her fingering herself.<</narrate>>
<<narrate>>She moans in delight, her body shaking, the act of being caught finally putting her over the edge.<</narrate>>
<<say "britt">>Oh, fuck, that was good!<</say>>
<<say "mc">>You were masturbating while we were talking?<</say>>
<<say "britt">>What can I say, dude? You're hot! God, that was such a turn on when you realized, though.<</say>>
<<think "mc">>I mean, once I knew what was going on, it was kinda hot.<</think>>
<<say "britt">>Don't worry, I'll repay the favor.<</say>>
<<say "mc">>What do you mean?<</say>>
<<narrate>>She crawls down the bed to you and with an unexpected amount of strength pulls your trousers down, revealing your engorged penis.<</narrate>>
<<if $replay == true && $britt.lust > 14>>
<<button "Continue (Longer BJ Route)" brittnightvisits>>
<<set $tempvar = "know02">>
<<set $tempvar2 = "bj">>
<</button>><br>
<<button "Continue (BJ then Sex Route)" brittnightvisits>>
<<set $tempvar = "know02">>
<</button>>
<<else>>
<<button "Continue" brittnightvisits>>
<<lust 'britt' 2>>
<<set $tempvar = "know02">>
<</button>>
<</if>>
<<case "know02">>
<<vid "britt/hangbj01.mp4">>
<<narrate>>Her technique is a little unorthodox, she's slow, but thorough, her tongue doing most of the work. She wraps it around your tip, her tongue piercing adding unexpected points of more condensed pleasure as it wraps around your helm.<</narrate>>
<<narrate>>She hums to a rhythm of sorts, that sends a vibration down your dick, further adding to your pleasure.<</narrate>>
<<think "mc">>Well, this is certainly different. Very pleasurable, but it's building to a slow release. I think I can take my time and just enjoy.<</think>>
<<narrate>>Sensing your content, she releases your dick.<</narrate>>
<<if $britt.lust > 14 && $tempvar2 != 'bj'>>
<<say "britt">>This ain't no pleasure cruise!<</say>>
<<narrate>>Baffled by her seemingly random idiom you stare at her in confusion, she answers by pulling you down on to the bed, shifting her leg over yours and sitting on your dick.<</narrate>>
<<say "britt" "" "(Whispering in your ear)" "whisper">>I'm gonna ride you so hard you'll be unable to walk tomorrow.<</say>>
<<button "Continue" brittnightvisits>>
<<set $tempvar = "knowsex01">>
<</button>>
<<else>>
<<say "britt">>We ain't got time for no wild snakes.<</say>>
<<think "mc">>What the fuck does that even mean?<</think>>
<<say "mc">>Huh?<</say>>
<<narrate>>She pulls you down on to the bed with such force you're worried she's broken the bed. She grabs your dick and takes it into her mouth once again.<</narrate>>
<<button "Continue" brittnightvisits>>
<<set $tempvar = "knowbj02">>
<</button>>
<</if>>
<<case "knowsex01">>
<<vid "britt/hangsex01.mp4">>
<<unlock 'britt' 'hang'>>
<<narrate>>She moans ever louder and frequent as she slams her pussy repeatedly over your cock.<</narrate>>
<<think "mc">>Fucking hell, she doesn't do anything normally, does she?<</think>>
<<narrate>>Her moans echo around the room, and her thrusts only get more vigorous. The bed starts to bang against the wall. As you're nearing your completion, you grab her waist to pause her for a moment, but she shrugs you off and just goes at it harder.<</narrate>>
<<say "mc">>Fuck, $britt.name, I'm gonna cum any second.<</say>>
<<narrate>>She keeps going, unfazed, and between moans tries to communicate.<</narrate>>
<<say "britt">>Ooooh!! Cum... yeees, ohhh, inside.<</say>>
<<narrate>>Even if you wanted to, you're pretty sure there's no way to stop her. Despite her delicate look, her strength is inhuman.<</narrate>>
<<narrate>>The wall banging stops abruptly as you release your load inside her. She simply lets out a heavy moan.<</narrate>>
<<say "mc">>Fuuuuuuck.<</say>>
<<say "britt">>Mhhhm, a lovely creampie for my trouble. You keep my panties; I'm out. 'Night.<</say>>
<<narrate>>She leaves without getting dressed, brazenly strutting down the hallway bottomless, your cum dripping down her thigh.<</narrate>>
<<think "mc">>Shit, she's fucking crazy.<</think>>
<<button "Sleep" sleep>>
<<set $britt.sex = true>>
<<lust "britt" 5>>
<<like "britt" 3>>
<</button>>
<<case "knowbj02">>
<<vid "britt/hangbj02.mp4">>
<<unlock 'britt' 'hang'>>
<<narrate>>Unlike last time, she goes for a more traditional approach, but not without her own flair, as her head bobs up and down your dick, she continues to hum, sending the vibrations through your entire shaft.<</narrate>>
<<narrate>>She speeds up, eager to bring your to your climax. The humming grows almost continuous as she races for the finish.<</narrate>>
<<say "mc">>Fucking hell, $britt.name!<</say>>
<<narrate>>You feel her mouth constrict slightly as she unconsciously tries to smile with your dick in her throat.<</narrate>>
<<narrate>>As you reach the crescendo she holds her mouth for around your cock, trying to stop a single drop of your cum escaping.<</narrate>>
<<say "britt">>Enjoy that didja?<</say>>
<<say "mc">>Abso-fucking-lutely.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "britt">>Am I caught up yet?<</say>>
<<say "mc">>There's no race, $britt.name, let's just enjoy ourselves.<</say>>
<<say "britt">>Yeah, yeah. You keep my panties; I'm out. 'night.<</say>>
<<narrate>>She leaves without getting dressed, brazenly strutting down the hallway bottomless.<</narrate>>
<<think "mc">>Shit, I wonder how far I could take it if she was more turned on.<</think>>
<<button "Sleep" sleep>>
<<lust "britt" 3>>
<<like "britt" 2>>
<</button>>
<<case 'refuse'>>
<<say "mc">>I don't think you did.<</say>>
<<say "britt">>Well, whatever, I'm 'ere now, Let me in.<</say>>
<<narrate>>She rattles the door knob again.<</narrate>>
<<say "mc">>Not tonight, $britt.name.<</say>>
<<say "britt">>The fuck dude?<</say>>
<<narrate>>She storms off.<</narrate>>
<<like "britt" -4>>
<<lust "britt" -4>>
<<button "Continue" bedroom>><</button>>
<</switch>>
<</nobr>><<scene>>
<<switch $tempvar>>
<<case "nurse">>
<<if $replay == false && checkUnlocks('movie', 'nurse', 'britt') == false>>
<<run newMessage("britt", "nurse")>>
<<run newMessage("britt", "nurse2")>>
<<run forceRead('britt')>>
<<say "mc">>Apparently she's already been thinking along the same lines. She wants to meet in her room.<</say>>
<<say "azul">>Well, we'd better not disappoint her!<</say>>
<</if>>
<<narrate>>You head to $britt.name's room with $azul.name.<</narrate>>
<<narrate>>Upon opening the door your eyes are immediately drawn to $britt.name laying on the bed, her legs spread wide.<</narrate>>
<<left2 "britt/nurse01.jpg">>
<<say "britt">>Hey, ya ready to see—<</say>>
<<narrate>>She claps her legs together at the sight of $azul.name.<</narrate>>
<<say "britt">>What the hell?<</say>>
<<say "azul">>Oh, don't mind me. I'm just a keen observer.<</say>>
<<say "mc">>Right, sorry, $britt.name I didn't mention on the text...<</say>>
<<narrate>>$britt.name shrugs, and once again opens her legs.<</narrate>>
<<say "britt">>If you're cool with it, I deffo am. Come, sit wi' me.<</say>>
<<narrate>>You unbutton and step out of your jeans then hand them to $azul.name who raises an eyebrow then tosses them to the floor.<</narrate>>
<<cont "brittsex" "docs01">>
<<case "docs01">>
<<narrate>>Your cock already erect, she applies some lube and gently starts massaging with her feet.<</narrate>>
<<vid "britt/nurse01.mp4">>
<<narrate>>She giggles to herself.<</narrate>>
<<say "britt">>Lay back, let the nurse tek care o' ya.<</say>>
<<cont "brittsex" "docs02">>
<<case "docs02">>
<<narrate>>She mounts you and slowly slides her pussy down your cock, biting her lip and looking you directly in the eye as she does so.<</narrate>>
<<vid "britt/nurse02.mp4">>
<<narrate>>She moans with delight as you reach for her tits.<</narrate>>
<<think "mc">>Her smile is almost as addictive as her pussy.<</think>>
<<cont "brittsex" "docs03">>
<<case "docs03">>
<<narrate>>You're almost saddened to lose sight of her smile when she spins around on your cock.<</narrate>>
<<vid "britt/nurse03.mp4">>
<<narrate>>The feeling is quickly thwarted when she starts bouncing on your cock again.<</narrate>>
<<say "mc">>Fuck, I love your pussy.<</say>>
<<narrate>>She gets up and leans over the desk, waggling her ass at you.<</narrate>>
<<say "britt">>What about my ass?<</say>>
<<say "mc">>Fuck, yeah.<</say>>
<<cont "brittsex" "docs04">>
<<case "docs04">>
<<narrate>>She quivers with excitement as you push your dick inside her ass.<</narrate>>
<<vid "britt/nurse04.mp4">>
<<narrate>>She groans with joy as you push forward, slowly increasing the pace as she becomes accustomed to the interloper.<</narrate>>
<<say "britt">>My legs...<</say>>
<<narrate>>She flops on the bed, grabbing her ass cheek and inviting you to continue.<</narrate>>
<<cont "brittsex" "docs05">>
<<case "docs05">>
<<vid "britt/nurse05.mp4">>
<<narrate>>Seeing her smile again as you thrust into her tight hole heightens your pleasure as you feel you're not far from the end.<</narrate>>
<<say "azul">>Why don't you finish inside her?<</say>>
<<narrate>>$azul.name bends down beside, holding your leg for stability and bringing your dick and $britt.name's ass to her eye level.<</narrate>>
<<say "mc">>Oh shit, fucking hell!<</say>>
<<button "Cum" brittsex>>
<<temp "docs06">>
<</button>>
<<case "docs06">>
<<narrate>>Unable to contain it anymore, you bust your load inside $britt.name's ass.<</narrate>>
<<set _uc = $britt.name.toUpperCase()>>
<<say "mc">>YES, FUCKING, YES, _uc!<</say>>
<<vid "britt/nurse06.mp4">>
<<narrate>>She holds herself open, letting you and $azul.name get a good view of her goo-filled asshole.<</narrate>>
<<say "britt">>Look at all that!<</say>>
<<say "azul">>Nice.<</say>>
<<say "mc">>Well, I think that treatment went splendidly!<</say>>
<<say "britt">>Ha!<</say>>
<<say "azul">>Do let me know if you ever need more... observation.<</say>>
<<button "Continue" housestuff>>
<<unlock "britt" "nurse">>
<<set $location = "bedrooms">>
<<event "azul" "haremobs">>
<<lust "britt" 6>>
<<like "britt" 3>>
<<time 2>>
<</button>>
<<case "east">>
<<if $mc.events.eastentry == 'pipe'>>
<<narrate>>You're the last to grab a shower. When you return to the lounge, $britt.name is waiting for you, with nothing but a towel on.<</narrate>>
<<else>>
<<narrate>>$britt.name stalls behind while everyone else heads to their rooms.<</narrate>>
<</if>>
<<say "britt">>Boss, I was thinkin'.<</say>>
<<say "mc">>Hmm?<</say>>
<<say "britt">>You 'ad a nap on the way 'ere, right? And I'm not too tired...<</say>>
<<say "mc">>Right... but you really do need to get some rest. Who knows what we'll encounter tomorrow.<</say>>
<<say "britt">>Uh-huh. Ya, fer sure. But, maybe we jus' need to tire each other out a lil' more?<</say>>
<<narrate>>You grin.<</narrate>>
<<say "britt">>A bit of 'ard exercise before bed?<</say>>
<<if $mc.events.eastentry == 'pipe'>>
<<narrate>>She lets her towel drop to the floor.<</narrate>>
<<else>>
<<narrate>>She starts to get undressed.<</narrate>>
<</if>>
<div id="replace">
<<choices>>
<<link "Sleep">>
<<replace "#replace">>
<<say "mc">>Now is not the time. Go get some sleep, we need to be well rested and on high-alert while we're here.<</say>>
<<say "britt">>Boss, really? Fuck. Fine.<</say>>
<<narrate>>She heads to her room, clearly disappointed.<</narrate>>
<<button "Sleep" eastsleep>>
<</button>>
<</replace>>
<</link>><br>
<<link "Have some Fun">>
<<replace "#replace">>
<<say "mc">>A little workout might help us sleep, huh?.<</say>>
<<narrate>>She nods enthusiastically while removing the last of the clothes.<</narrate>>
<<say "britt">>Oh, yeah, Fer sure.<</say>>
<<narrate>>She lies on the sofa and looks up at you.<</narrate>>
<<center "britt/east02.jpg">>
<<say "britt">>I want you, boss. I'm so wet. Just stick it in!<</say>>
<<narrate>>You grunt as you climb on the sofa, grab her thigh and thrust into her. Her wet pussy greedily accepting you.<</narrate>>
<<button "Continue" brittsex>>
<<temp "east01">>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "east01">>
<<vid "britt/east01.mp4">>
<<narrate>>You pound away at her pussy, letting out all your frustration at the situation.<</narrate>>
<<say "britt">>Ohh yeah!<</say>>
<<narrate>>Her squeals fill the room.<</narrate>>
<<say "mc">>Shh, they'll hear us!<</say>>
<<say "britt">>Let 'em watch!<</say>>
<<button "Continue" brittsex>>
<<temp "east02">>
<</button>>
<<case "east02">>
<<narrate>>She pushes back on you and you fall to the sofa; within a second she's on your lap.<</narrate>>
<<vid "britt/east02.mp4">>
<<narrate>>Her moans only slightly muted she bounces up and down your dick with a lust-fueled enthusiasm.<</narrate>>
<<say "britt">>Destroy my pussy, boss. Please!<</say>>
<<button "Continue" brittsex>>
<<temp "east03">>
<</button>>
<<case "east03">>
<<vid "britt/east03.mp4">>
<<narrate>>Her impassioned cries return to full volume, but you're on the cusp of your orgasm and all reason has long fled your mind.<</narrate>>
<<say "britt">>Yes, boss! Yes! Fuck me!<</say>>
<<say "mc">>You dirty little whore. Take it, take my fucking dick, slut!<</say>>
<<say "britt">>Holy shit. Boss. YES!<</say>>
<<narrate>>You surprise yourself with your words, but she only starts pushing against you harder. Your end is nigh.<</narrate>>
<<button "Continue" brittsex>>
<<temp "east04">>
<</button>>
<<case "east04">>
<<narrate>>She quickly recovers from her orgasm and gets on her hands and knees before you.<</narrate>>
<<say "mc">>Look at me as I paint your pretty little face!<</say>>
<<vid "britt/east04.mp4">>
<<narrate>>As the two of you settle down, you notice a figure out of the corner of your eye.<</narrate>>
<<say "krissy">>Great, can't keep it in your pants for even one night, huh? Some of us are trying to sleep!<</say>>
<<think "krissy">>Crap, is this how <<if $girlsavailable.includes('sophia')>>$sophia.name<<else>>$derek.name<</if>> used to feel when they'd watch me?<</think>>
<<button "Sleep" eastsleep>>
<<unlock "britt" "east">>
<<lust "britt" 3>>
<<like "britt" 3>>
<<corrupt "krissy" 1>>
<<temp "">>
<</button>>
<<case "mollyshow">>
<<block "molly/lounge01.jpg">>
<<say "mc">>How about another show?<</say>>
<<narrate>>$molly.name preemptively starts undressing.<</narrate>>
<<say "molly">>I love our time in the lounge!<</say>>
<<say "mc">>How about today, $britt.name is the star?<</say>>
<<say "britt">>Ah, no worries, you guys do you.<</say>>
<<narrate>>You see $molly.name thinking it over for a moment.<</narrate>>
<</block>>
<<say "molly">>That sounds super fun. I'd like to see her tackle your cock!<</say>>
<<narrate>>$britt.name almost chokes on her drink.<</narrate>>
<<say "britt">>Well, can't back down from that challenge, can I?<</say>>
<<narrate>>Oddly eager about the situation, $molly.name paws at $britt.name's clothes.<</narrate>>
<<say "molly">>Get them off!<</say>>
<<narrate>>You look at $britt.name laying naked on the sofa, looking a bit perplexed at $molly.name's actions.<</narrate>>
<<say "mc">>Wow, you look good enough to eat.<</say>>
<<narrate>>She smirks.<</narrate>>
<<say "mc">>You know what...<</say>>
<<button "Continue" brittsex>>
<<temp "mollyshow01">>
<</button>>
<<case "mollyshow01">>
<<left2 "britt/lounge01.mp4" v>>
<<narrate>>You grab her by the thighs and push her further back on to the sofa.<</narrate>>
<<say "britt">>What are ya—<</say>>
<<narrate>>As your tongue gently strokes her clit, she lets out a cute little squeak.<</narrate>>
<<say "britt">>Oh, god, that's good.<</say>>
<<say "molly">>Looks tasty!<</say>>
<<narrate>>You'd almost forgotten $molly.name was even here. You speed up, running your tongue the full height of her delicious pussy, trying to put on a good show for the audience.<</narrate>>
<<say "britt">>Holy fuck $name.<</say>>
<<narrate>>She grits her teeth, and you feel her body quake under your touch as her moans fill the room.<</narrate>>
<<set _u = $name.toUpperCase()>>
<<say "britt">>SHIT! FUCK! _u, MY GOD!<</say>>
<<narrate>>She rests still for a moment as you admire your handiwork.<</narrate>>
<<say "molly">>That was hot.<</say>>
<<narrate>>$britt.name puts her panties back on and reaches for her bra when $molly.name slaps at her hands.<</narrate>>
<<say "molly">>We're not done yet, you need to return the favor! Show me how you suck cock!<</say>>
<<think "mc">>Best wingman ever!<</think>>
<<button "Continue" brittsex>>
<<temp "mollyshow02">>
<</button>>
<<case "mollyshow02">>
<<vid "britt/lounge02.mp4">>
<<narrate>>Determined to show her skills to $molly.name, she quickly takes your cock into her mouth.<</narrate>>
<<say "mc">>Mhhhm, that's it. Show her how it's done.<</say>>
<<narrate>>She works your shaft with slow, deliberate movements, trying to bring as much pleasure for as long as possible.<</narrate>>
<<say "mc">>Shit that's good.<</say>>
<<narrate>>She giggles with your cock in her mouth, causing her to back off and cough a little.<</narrate>>
<<say "molly">>Ha! Maybe I'm the better cocksucker after all!<</say>>
<<narrate>>$britt.name gives her the dead eye then gets back to your dick, with more fierce, faster motions, working her hand in unison as she takes you as far back into her throat as she can.<</narrate>>
<<say "mc">>That's it; show her who's boss!<</say>>
<<narrate>>As you feel your end draw closer, she increases the swiftness of her motions, causing you to nut down her throat without any warning.<</narrate>>
<<say "mc">>Yes, $britt.name, fuck yes!<</say>>
<<narrate>>You see her eyes bulge with surprise as the cum fills her mouth and throat. But she holds steady, clearly not wanting to show weakness to $molly.name again.<</narrate>>
<<narrate>>A moment later, she pulls her head back, a small drop of cum slowly oozes down her chin.<</narrate>>
<<say "britt">>And that, $molly.name, is how it's done.<</say>>
<<say "molly">>Yeah, yeah. So who did it better, $name?<</say>>
<<think "mc">>Hell no!<</think>>
<<say "mc">>Uhh, the current sample size is a bit too small, I think we'll need to do it a bit more to choose a clear winner.<</say>>
<<narrate>>They both cackle as if you've told the most hilarious joke in the world.<</narrate>>
<<say "britt">>Whenever you want.<</say>>
<<narrate>>The three of you exchange banter for a few minutes before you head to your room to clean up.<</narrate>>
<<button "Continue" yourroom>>
<<unlock "britt" "watcher">>
<<if $britt.lustlvl == 1>>
<<set $britt.lustlvl = 2>>
<</if>>
<<lust "britt" 3>>
<<like "britt" 3>>
<<lust "molly" 1>>
<<time 1.5>>
<</button>>
<<case "catchup">>
<<vid "britt/catchup01.mp4">>
<<narrate>>She skillfully gobbles your tip as she strokes your shaft with one hand and cups your balls with the other.<</narrate>>
<<say "mc">>I think you're more eager than me!<</say>>
<<narrate>>She giggles and gives you a wink while continuing to show her expertise.<</narrate>>
<<say "mc">>Christ on a stick.<</say>>
<<narrate>>She tenderly rubs your thigh as she continues, then stops abruptly.<</narrate>>
<<say "britt">>Lay on the bed, I wanna look at your face properly as you cum down mah throat.<</say>>
<<think "mc">>Score.<</think>>
<<button "Continue" brittsex>>
<<temp "catchup02">>
<</button>>
<<case "catchup02">>
<<narrate>>You fall on to the bed, and she almost immediately pounces on after you, placing herself between your legs and quickly bringing your cock back into her mouth.<</narrate>>
<<vid "britt/catchup02.mp4">>
<<say "mc">>Mhhhm, that's so fucking good.<</say>>
<<narrate>>Her hair strokes against your thighs as she continues, causing a tickling sensation to ripple through to your groin.<</narrate>>
<<say "britt">>Ah, this is a good dick. Let's finish this.<</say>>
<<narrate>>She quickens her pace, and brings you deeper, her tongue-piercing running along the underside of your dick giving a strange sensation as you draw close to your climax.<</narrate>>
<<say "mc">>Shit, I'm coming. Take it. Swallow it all.<</say>>
<<narrate>>She holds steady as you unload down her throat.<</narrate>>
<<say "mc">>Yes! Fuuuck!<</say>>
<<narrate>>You hold her head down on your dick as you finish, when you let go, she holds out her tongue to show her mouth is empty.<</narrate>>
<<say "britt">>Enjoy that as much as I did?<</say>>
<<say "mc">>I daresay more. Let me know if you ever need another catch up.<</say>>
<<narrate>>She lays in your arms with her head on your chest for a while, and you chat about nonsense while you run your fingers through her hair.<</narrate>>
<<button "Continue" housestuff>>
<<unlock "britt" "catchup">>
<<event "britt" "catchup">>
<<lust "britt" 3>>
<<like "britt" 4>>
<<time 1.5>>
<</button>>
<<case "lolly">>
<<center "britt/lolly01.jpg">>
<<narrate>>$britt.name & $molly.name are sat on the bed giggling while eating ice lollies.<</narrate>>
<div id="replace">
<<choices "Go in?">>
<<link "Yes">>
<<replace "#replace">>
<<narrate>>You knock, then enter before either has a chance to respond.<</narrate>>
<<say "mc">>You appear to have made a bit of a mess.<</say>>
<<narrate>>They look at the stains on each other and just giggle more.<</narrate>>
<<say "britt">>Total mess, eh? Wanna help us clean up, boss?<</say>>
<<say "mc">>Cleaning ain't my thing, sorry.<</say>>
<<narrate>>She looks dejected.<</narrate>>
<<say "molly">>Eh, don't listen to him, come on, $britt.name, let's go clean up in the bathroom.<</say>>
<<think "mc">>Huh, what did I say wrong?<</think>>
<<narrate>>$molly.name grabs $britt.name by the hand and leads her to the bathroom.<</narrate>>
<<choices "Spy on them?">>
<<link "Yes" brittsex>>
<<temp "lollybathroom">>
<</link>>
<<if $replay == false>>
<br>
<<link "No" housestuff>>
/*<<time 0.25>>*/
<</link>>
<</if>>
<</choices>>
<</replace>>
<</link>>
<<if $replay == false>>
<br>
<<link "No" housestuff>>
<</link>>
<</if>>
<</choices>>
</div>
<<case "lollybathroom">>
<<if debug == true>>
<div class="debug">
<<button "$britt.name Lust/Like +20" brittsex>>
<<lust 'britt' 20>>
<<like 'britt' 20>>
<</button>>
<<button "$molly.name Lust/Like +20" brittsex>>
<<lust 'molly' 20>>
<<like 'molly' 20>>
<</button>>
</div>
<</if>>
<<narrate>>You leave it a minute then creep up to the door at $molly.name's bathroom, luckily unlocked, and push it slightly open to peep.<</narrate>>
<<center "britt/lolly02.jpg">>
<<think "mc">>Hell, yeah.<</think>>
<<say "britt">><<if $britt.lust < 40 || $britt.like < 30>> I don't think I'm ready yet, but I'm not ruling it out once we're closer.<<else>> I'm totally up for it.<</if>> But, what d'ya think?<</say>>
<<if $molly.lust < 55 || $molly.like < 30>>
<<say "molly">>No, not just yet. I think he needs to earn it first.<</say>>
<<else>>
<<say "molly">>Oh, I'm game. It sounds like sooooo much fun!<</say>>
<</if>>
<<if $molly.lust < 55 || $molly.like < 30 || $britt.lust < 40 || $britt.like < 30>>
<<say "britt">>Okay, well once we're both comfortable let's all hang out again.<</say>>
<<think "mc">>Guess that's my cue to leave before they spot me, if I get to know them better, perhaps this would turn out differently.<</think>>
<<button "Continue" housestuff>>
<<like 'britt' 1>>
<<like 'molly' 1>>
<<lust 'britt' 1>>
<<lust 'molly' 1>>
<<time 0.5>>
<</button>>
<<else>>
<<narrate>>$britt.name leans over to $molly.name and whispers in her ear.<</narrate>>
<<say "britt" "" "(Whispering)" "whisper">>
You know he's at the door, right?
<</say>>
<<say "molly" "" "(Whispering)" "whisper">>Yeah, let's give him a show.<</say>>
<<vid "britt/lolly01.mp4">>
<<think "mc">>Damn, right place, right time!<</think>>
<<say "britt">>Enjoying the view, boss?<</say>>
<<say "mc">>I uhhh...<</say>>
<<say "molly">>Why don't you go wait on my bed... get comfortable? We'll be two minutes.<</say>>
<<say "britt">>Get <i>real</i> comfortable, boss.<</say>>
<<think "mc">>Holy shit, is this real?<</think>>
<<narrate>>You scurry back to $molly.name's bed with the biggest grin on your face.<</narrate>>
<<narrate>>A few moments later, the girls return.<</narrate>>
<<say "molly">>You know the two of us fool around, right? You wanna join in?<</say>>
<<narrate>>She starts stroking your dick through your shorts.<</narrate>>
<<center "britt/lolly03.jpg">>
<<say "britt" "" "(Whispering)" "whisper">>You take the balls, I'll take the head.<</say>>
<<narrate>>$britt.name maintains eye contact as tugs your shorts past your knees where $molly.name then pulls them fully off and tosses them aside.<</narrate>>
<<say "britt">>I fucking love this cock.<</say>>
<<button "Continue" brittsex>>
<<temp "lollybj">>
<</button>>
<</if>>
<<case "lollybj">>
<<vid "britt/lolly02.mp4">>
<<if $britt.events.molly == 1>>
<center><<choices>>
<<button "Cum" brittsex>>
<<temp "lollycum">>
<</button>>
<<button "$britt.name Prone" brittsex>>
<<temp "lollybritt01">>
<</button>>
<<button "$britt.name Butterfly " brittsex>>
<<temp "lollybritt02">>
<</button>>
<<button "$molly.name Cowgirl" brittsex>>
<<temp "lollymolly01">>
<</button>>
<<button "$molly.name Butterfly " brittsex>>
<<temp "lollymolly02">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" brittsex>>
<<temp "lollymolly01">>
<</button>>
<</if>>
<<case "lollymolly01">>
<<vid "britt/lollymolly02.mp4">>
<<if $britt.events.molly == 1>>
<center><<choices>>
<<button "Cum" brittsex>>
<<temp "lollycum">>
<</button>>
<<button "Blowjob " brittsex>>
<<temp "lollybj">>
<</button>>
<<button "$britt.name Prone" brittsex>>
<<temp "lollybritt01">>
<</button>>
<<button "$britt.name Butterfly " brittsex>>
<<temp "lollybritt02">>
<</button>>
<<button "$molly.name Butterfly " brittsex>>
<<temp "lollymolly02">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" brittsex>>
<<temp "lollybritt01">>
<</button>>
<</if>>
<<case "lollybritt01">>
<<vid "britt/lollybritt01.mp4">>
<<if $britt.events.molly == 1>>
<center><<choices>>
<<button "Cum" brittsex>>
<<temp "lollycum">>
<</button>>
<<button "Blowjob " brittsex>>
<<temp "lollybj">>
<</button>>
<<button "$britt.name Butterfly " brittsex>>
<<temp "lollybritt02">>
<</button>>
<<button "$molly.name Cowgirl" brittsex>>
<<temp "lollymolly01">>
<</button>>
<<button "$molly.name Butterfly " brittsex>>
<<temp "lollymolly02">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" brittsex>>
<<temp "lollymolly02">>
<</button>>
<</if>>
<<case "lollymolly02">>
<<vid "britt/lollymolly01.mp4">>
<<if $britt.events.molly == 1>>
<center><<choices>>
<<button "Cum" brittsex>>
<<temp "lollycum">>
<</button>>
<<button "Blowjob " brittsex>>
<<temp "lollybj">>
<</button>>
<<button "$britt.name Prone" brittsex>>
<<temp "lollybritt01">>
<</button>>
<<button "$britt.name Butterfly " brittsex>>
<<temp "lollybritt02">>
<</button>>
<<button "$molly.name Cowgirl" brittsex>>
<<temp "lollymolly01">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" brittsex>>
<<temp "lollybritt02">>
<</button>>
<</if>>
<<case "lollybritt02">>
<<vid "britt/lollybritt02.mp4">>
<<event "britt" "molly">>
<center><<choices>>
<<button "Cum" brittsex>>
<<temp "lollycum">>
<</button>>
<<button "Blowjob " brittsex>>
<<temp "lollybj">>
<</button>>
<<button "$britt.name Prone" brittsex>>
<<temp "lollybritt01">>
<</button>>
<<button "$molly.name Cowgirl" brittsex>>
<<temp "lollymolly01">>
<</button>>
<<button "$molly.name Butterfly " brittsex>>
<<temp "lollymolly02">>
<</button>>
<</choices>></center>
<<case "lollycum">>
<<vid "britt/lollycum.mp4">>
<<button "Continue" housestuff>>
<<set $britt.sex = true>>
<<set $molly.sex = true>>
<<unlock 'britt' 'lolly'>>
<<unlock 'molly' 'lolly'>>
<<lust 'britt' 4>>
<<lust 'molly' 4>>
<<like 'molly' 3>>
<<like 'britt' 3>>
<<time 2>>
<</button>>
<</switch>><<tracker "britt">>
<<if $britt.events.fight == undefined>>
<<step "Lover or a fighter?" "Talk to her about being a fighter.">>
<<elseif $britt.lust < 20>>
<<step "She doesn't desire you enough." `"20 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.<br>Have fun with "+$molly.name+" in the lounge while she's present."`>>
<<elseif $britt.events.catchup == undefined>>
<<step "Catch her up" "Discuss catching up with her while she's in her bedroom. 15 like and 20 lust needed.">>
<<elseif $britt.events.sawmolly == undefined>>
<<step "The Watcher" `"She needs to be present in the lounge while "+$molly.name+" gives you a hand job or blow job."`>>
<<elseif $britt.events.thirdwheel == undefined>>
<<step "Third Wheel" "Discuss how she feels about watching.">>
<<elseif $britt.lustlvl == 1>>
<<step "Her Turn" `"Head to the lounge when her and "+$molly.name+" are the only ones present and ask her if she wants to put on a show. You may need assign other people to work or go on expeditions."`>>
<<elseif $britt.events.expeditions == undefined>>
<<step "Send her on an expedition." "Go to Gateway B and send her on an expedition.">>
<<elseif $britt.events.debrief == undefined>>
<<step "Debrief" "Ask her how the expedition was.">>
<<elseif $britt.lust < 30>>
<<step "She doesn't desire you enough." `"30 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.<br>Have fun with "+$molly.name+" in the lounge while she's present."`>>
<<elseif $britt.events.emberles == undefined>>
<<step "Night Wanderer" "Sneak around and night and explore the hotel.">>
<<elseif $britt.events.girls == undefined>>
<<step "She likes women?" "Question her about liking other women.">>
<<elseif $britt.lust < 40>>
<<step "She doesn't desire you enough." `"40 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.<br>Have fun with "+$molly.name+" in the lounge while she's present.<br>Watch her and "+$ember.name+" at night."`>>
<<elseif $britt.like < 30>>
<<step "She doesn't like you enough." "30 needed. Some ways to increase like.<br>Discuss available topics.<br>Make small talk.<br>Watch TV with her.">>
<<elseif $britt.events.molly == undefined>>
<<step `"She mentioned chatting to "+$molly.name+"."` `"Check the bedrooms when both "+$molly.name+" and "+$britt.name+" are available.<br>Note: "+$molly.name+" needs 55 lust and 30 like to complete this scene."`>>
<<else>>
<<movielist britt>>
<</if>>
<</tracker>><<nobr>>
<<set $scene = 0>>
<<if $location != $currentlocations.cassie && $location != "firstIntros" && $replay == false>>
<<say "cassie">>I'm sorry, dear. I need to go. Perhaps we can speak again later?<</say>>
<<follow cassie>>
<<button "Continue" $return>>
<</button>>
<<elseif $location == "lounge" && ($girlshere.length == 1 || ($girlshere.length == 2 && $girlshere.includes('armani'))) && $cassie.events.porno == undefined && $cassie.lust >= 30>>
<<if $girlshere.includes('armani') >>
<<narrate>>As you get closer to the lounge, you see $armani.name at the door to the room, looking shocked.<</narrate>>
<<block "cassie/fluster.jpg">>
<<say "mc">>Everything okay?<</say>>
<<narrate>>She jumps at the sound of your voice.<</narrate>>
<<say "armani">>Don't just sneak up on someone like that!<</say>>
<<say "mc">>I literally walked here normally, what's got you so flustered?<</say>>
<<say "armani">>Nothing. Whatever. I'm leaving. Enjoy the show.<</say>>
<<narrate>>She storms off.<</narrate>>
<</block>>
<<think "mc">>The fuck was that?<</think>>
<</if>>
<<narrate>>You begin to open the door when you hear wet slapping sounds and then loud moans.<</narrate>>
<<think "mc">>Is someone fucking in there?<</think>>
<<narrate>>You slowly push the door open only to see porn playing on the massive TV.<</narrate>>
<center>
<div class="tv">
<div class="tvborder">
<<center "cassie/porn.webp">>
</div>
<span class="tvlogo">SAMESUNG</span>
</div>
</center>
<br>
<<think "mc">>Holy crap, someone is watching porn!<</think>>
<<narrate>>You gingerly push the door open, hoping they don't notice you.<</narrate>>
<<button "Continue" cassiesex>>
<<temp "porno">>
<</button>>
<<else>>
<<if $location == "firstIntros">>
<<set _img = "cassie/office01.jpg">>
<<else>>
<<set _img = getImg('cassie')>>
<</if>>
<<left2 _img>>
<<say "cassie">>What can I do for you, dear?<</say>>
<<choices "What do you want to discuss?" "topics">>
<</choices>>
<</if>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("cassiediscussions").processText());
})
<</script>>
<</nobr>><<nobr>>
<<scene>>
<<set _img = getImg('cassie')>>
<<if $cassie.kissed > 2 && $cassie.lustlvl == 0>>
<<set $cassie.lustlvl = 1>>
<</if>>
<<set _charliereply = "Okay... now just need to set something up. I'd kinda like to see $cassie.name's stern side... I sort of imagine her like a hot substitute teacher...">>
<<switch $tempvar>>
<<case "peluwar">>
<<left2 _img>>
<<set _p = planets[7]>>
<<say mc>>Have you learned anything about _p.name?<</say>>
<<say cassie>>Yes, I appreciate you giving me the time to look into it. It's pretty bleak, but I think we expected that.<</say>>
<<narrate>>Her face darkens.<</narrate>>
<<say cassie>>This is a long story, are you sure you have time, dear? I will try to keep it broad.<</say>>
<div id="replace">
<<choices>>
<<link "Yes">>
<<replace "#replace">>
<<say cassie>>It started with strained diplomacy in two bordering nations as they each accused the other of hoarding resources when the world as a whole needed them. Things escalated more and more as the resources of the world nations become increasingly scarce. Whether as scapegoats originally, alliance loyalty, or a genuine belief that one of these nations truly did have enough resources to share, other world leaders started backing one nation or the other. Unsurprisingly this only increased animosity between the nations. But war was avoided for quite some time.<</say>>
<<say cassie>>Then seemingly out of nowhere a previously unknown weapons manufacturer offered both governments technology way beyond anything they'd previously seen. Unbeknownst to them, the manufacturer was playing both sides, supplying them both with this technology. On both sides of the war, the governments invested heavily, taking their own natural resources further into scarcity in their hope to launch an attack and claim the proverbial promised land for their own.<</say>>
<<say cassie>>Both kept this technology hidden from the other side, though I am unsure how they managed to defend it from espionage, neither knew the other was gearing up the same as them. So, when the first nation finally attacked, they were met with a resistance they did not expect. They expected to roll into the capital, show the world their might, claim victory and end the war as quickly as it started. That of course wasn't the case, both sides were equally well-armed.<</say>>
<<say cassie>>Counterattack after counterattack, cities leveled, billions of lives lost. Yet, the governments kept going, neither one willing to back down. The leadership saw their subjects as cannon fodder, and nothing more than the means to ensure their own selfish longevity and wealth. When there were no more soldiers, and their own personal resources dried up, the war simply faded away with no clear winner, and everyone a loser.<</say>>
<<say cassie>>The people that remained created communities and settlements in the old cities. Forged together to survive in what remains of the world. It's heart-wrenching really. They live by scavenging and finding what little arable land they can.<</say>>
<<say mc>>Greed. Absolute greed. Those people shouldn't have been in power! Why didn't the people rise up, revolt?<</say>>
<<say cassie>>I can't say, and we weren't there so what little I have learned isn't necessarily entirely accurate either. But my assumption is they were fed lies and used as pawns. The governments likely restricted information, and used propaganda to control the masses.<</say>>
<<say mc>>And this weapons manufacturer presumably hoarded all the wealth of these nations? What happened to them?<</say>>
<<say cassie>>I have no idea, I've been trying to find out. I did manage to find they had a base of operations not too far from the gateway's exit though.<</say>>
<<say mc>>Shall we check it out?<</say>>
<<say cassie>>I was hoping you'd say that. I don't know we'll find anything, it's probably been picked apart and scavenged to death by now but there's something I want to check for myself.<</say>>
<<say mc>>Great, I'll let you know when the expedition is ready.<</say>>
<<button "Continue" cassie>>
<<influence "peluwar1">>
<<set $library.done.pushUnique('peluhistory')>>
<<like "cassie" 10>>
<<time 2>>
<</button>>
<</replace>>
<</link>><br>
<<link "Another time" cassie>>
<</link>>
<</choices>>
</div>
<<case "bitch">>
<<left2 _img>>
<<say mc>>I don't mean to sound rude, but your sister can be a real bitch sometimes.<</say>>
<<narrate>>She gives you a stern look.<</narrate>>
<<say cassie>>Whether you intend it or not, dear, you are being very rude. My sister can be difficult sometimes, yes, but there's no need to speak so poorly of her.<</say>>
<<say mc>>Sorry, $cassie.name. I didn't mean to offend, I was rather hoping you might help me deal with her.<</say>>
<<say cassie>>"Deal with?" You're not using your vocabulary very well today, are you? That's my sister, whom I love dearly.<</say>>
<<think mc>>Shit, this has gone sideways quickly.<</think>>
<<say mc>>Let me start again. I'm having some uhh... communication issues with your sister, she seems to be a little hot and cold with me at times, and I was hoping to get some advice from you.<</say>>
<<say cassie>>See? That wasn't so hard, was it? She can definitely be controlling at times, and a little difficult. But, she's certainly softened since you arrived here.<</say>>
<<think mc>>Has she?<</think>>
<<say cassie>>She shows her desires in... ways perhaps unusual to us, and may act like you're nothing more than a penis with legs, but I assure you, she cares for you.<</say>>
<<say mc>>She told you that?<</say>>
<<say cassie>>No, but I know my sister. She may fool herself, but she doesn't fool me.<</say>>
<<say mc>>But some of the stuff she's done...<</say>>
<<say cassie>>Yet you still care for her, so why is it so hard to believe the opposite is not true?<</say>>
<<say mc>>Yeah, I guess...<</say>>
<<say cassie>>For instance, look at how she calmed you the night before we met to discuss New Eden.<</say>>
<<say mc>>Hmm, true... wait, she told you about that?<</say>>
<<say cassie>>Not at all, dear.<</say>>
<<say mc>>Then how do you know about it?<</say>>
<<narrate>>She looks embarrassed.<</narrate>>
<<say cassie>>Well, I had the same idea, only when I opened your door, she was already riding you, and then when you bent her over and screwed away your frustrations...<</say>>
<<narrate>>She trails off.<</narrate>>
<<think mc>>Sounds like she stuck around for the full show!<</think>>
<<say cassie>>Anyway, point is, she wouldn't have done that if she didn't care. Just remember she's more than a fuck buddy, okay?<</say>>
<<narrate>>You nod.<</narrate>>
<<event "cassie" "sisterbitch" 2>>
<<cont "cassie" "" 1>>
<<case "neideas">>
<<if $buildings.lib != undefined && $buildings.brothel != undefined>>
<<taskdone "cassieideas">>
<</if>>
<<left2 _img>>
<<say "mc">>I've been thinking about what new facilities might be useful, and took some inspiration from New Eden. Do you have some time to discuss?<</say>>
<<if $location == "gym">>
<<say "cassie">>I don't mean to sound rude, dear, but perhaps the gym isn't the most appropriate place for that?<</say>>
<<say "mc">>Of course. Apologies.<</say>>
<<say "cassie">>I'd be happy to discuss after my workout in the office, though.<</say>>
<<cont "cassie">>
<<elseif $location == "office">>
<<say "cassie">>Oh, what do you have in mind, dear?<</say>>
<div class="flex">
<<set _ideas = 0>>
<<if $buildings.lib == undefined && ($constructs.lib == undefined || $constructs.lib.unlocked == false)>>
<<if ($east.matilda != undefined || $lib.events.step != undefined)>>
<<set _ideas++>>
<<link '<div class="girlChoice"><<center "locations/lib.jpeg">>Library</div>' cassieanswers>>
<<temp "faclib">>
<</link>>
<<else>>
<div class="girlChoice"><<center "other/qm.jpg">><<step "???" "Visit the library in New Eden">></div>
<</if>>
<</if>>
<<if $buildings.brothel == undefined && ($constructs.brothel == undefined || $constructs.brothel.unlocked == false)>>
<<if ($genvoy.events.step != undefined || $east.gerald != undefined)>>
<<set _ideas++>>
<<link '<div class="girlChoice"><<center "locations/brothel.jpeg">>Strip Club</div>' cassieanswers>>
<<temp "facstrip">>
<</link>>
<<else>>
<div class="girlChoice"><<center "other/qm.jpg">><<step "???" `"Follow the events in Aegis or with "+$coffee.name+" in New Eden"`>></div>
<</if>>
<</if>>
<<if $cassie.events.batting == undefined>>
<<if checkUnlocks('movie', 'bat', 'sec') == true>>
<<set _ideas++>>
<<link '<div class="girlChoice"><<center "locations/batting.jpeg">>Batting Fields</div>' cassieanswers>>
<<temp "facbat">>
<</link>>
<<else>>
<div class="girlChoice"><<center "other/qm.jpg">><<step "???" `"Get to know "+$sec.name+" better in New Eden"`>></div>
<</if>>
<</if>>
</div>
<<if _ideas == 0>>
<<say "mc">>Oh, sorry, nothing specific right now.<</say>>
<<think "mc">>Maybe I should explore New Eden for some ideas?<</think>>
<<cont "cassie" "">>
<<else>>
<center><<link "Never mind" cassie>><</link>></center>
<</if>>
<<else>>
<<say "cassie">>Sorry, dear. Can we discuss that in the office another time?<</say>>
<<say "mc">>Of course.<</say>>
<<cont "cassie">>
<</if>>
<<case "facbat">>
<<center "cassie/office05.jpg">>
<<say "mc">>What about some batting fields? They seemed popular back in New Eden.<</say>>
<<say "cassie">>I think that would be better suited to a permanent community that has teams and people visiting regularly. Maybe in the future, but right now, the number of permanent residents is low, and I doubt we have the exposure to spare resources on a facility to host games for traveler sports teams, if they even exist.<</say>>
<<say "mc">>Hmm, something to look at again in the future, should we ever grow large enough then.<</say>>
<<narrate>>She nods.<</narrate>>
<<button "Continue" cassie>>
<<event "cassie" "batting">>
<<time 0.5>>
<</button>>
<<case "facstrip">>
<<center "cassie/office05.jpg">>
<<narrate>>She grins at you.<</narrate>>
<<say "cassie">>Honestly, dear, I'm surprised that given your... personality, you didn't build one on day one!<</say>>
<<say "mc">>Well, with most travelers being female, I didn't think it would attract much attention. But given its popularity even among the female residents in New Eden, I figured why not.<</say>>
<<say "cassie">>And of course you'll enjoy it too.<</say>>
<<narrate>>You grin.<</narrate>>
<<say "mc">>Maybe... I was also thinking of possibly even doing something like the Platinum Lounge. I was going to ask Dave or $genvoy.name about it.<</say>>
<<say "cassie">>Okay, so what is it you need from me, dear?<</say>>
<<say "mc">>I just want to run the idea past you, get your thoughts.<</say>>
<<say "cassie">>Seems like a no-brainer to me. It will attract more people to the hub and give you another outlet for your desires. It may even help improve New Eden relations.<</say>>
<<say "mc">>Great! It's not just my lust aspect pushing the idea, then!<</say>>
<<say "cassie">>What would you call it?<</say>>
<<say "mc">>I hadn't really thought about it... hmm... what about <<textbox "$stripname" "Velvet Pleasures">>?<</say>>
<<say "cassie">>Very good. Rather than us spending time researching how to properly run and maintain a club, might I suggest you ask your friends in New Eden?<</say>>
<<say "mc">>Good idea.<</say>>
<<button "Continue" cassie>>
<<task "strip">>
<<time 1>>
<</button>>
<<case "faclib">>
<<center "cassie/office04.jpg">>
<<narrate>>She sits back on her chair and regards your idea.<</narrate>>
<<say "cassie">>Why a library?<</say>>
<<say "mc">>It was something $lacy.name said about gaining knowledge from travelers. Then, after seeing the library in New Eden it got me thinking... we interact with so many worlds, and so many people, just imagine the collective knowledge we could accumulate.<</say>>
<<say "cassie">>I bet $lacy.name and $adria.name would especially be very positive toward it, and I don't think it really needs any research.<</say>>
<<say "mc">>Not initially, but perhaps we could research ways to improve it later.<</say>>
<<say "cassie">>So, you want to attract great minds and store and share knowledge of various worlds?<</say>>
<<say "mc">>Pretty much. It will be an open space for all, it won't need staffing in the traditional sense, just upkeep to maintain the computers, I'd also like to look into backing up the data in Central, should the council allow it, in case of catastrophe or failure.<</say>>
<<say "cassie">>But presumably you would still schedule your team to the library from time to time to exchange knowledge themselves?<</say>>
<<say "mc">>Of course.<</say>>
<<say "cassie">>I think it's a great idea.<</say>>
<<notice>>You can now build the library. The library has the following benefits:
<ul>
<li>Improves wisdom for any characters assigned, which affects how quickly someone improves their skills.</li>
<li>Fatigue gain in the library is half that of a normal facility.</li>
<li>May unlock new traits for some characters.</li>
<li>Can unveil new interests for characters, expanding their skillset and allowing them to work at more facilities.</li>
<li>Potential to discover new events and locations offworld.</li>
</ul>
<</notice>>
<<button "Continue" cassie>>
<<build "lib">>
<<like "cassie" 10>>
<<like "lacy" 4>>
<<like "adria" 4>>
<<time 1>>
<</button>>
<<case "planets">>
<<left2 _img>>
<<say "mc">>Do you recall much of your home world?<</say>>
<<say "cassie">>A little, but it's not really a subject we like to talk about much. There's no going back after all.<</say>>
<<say "mc">>Maybe not before...<</say>>
<<say "cassie">>I appreciate the sentiment, dear, but I'd already considered that when we discovered what you could do. But forgetting I do not know the coordinates, I really have made a home here. My old world will have changed since I was last there.<</say>>
<<say "mc">>Understood. But I'd be happy to try it if you'd like to see what's become of it.<</say>>
<<say "cassie">>Hmm, well it might be interesting to see how it's grown at least. It didn't even have half the technology I've become accustomed to here. You know what, sure, let's do it. But, not without my sister. I'll meet you there.<</say>>
<<say "mc">>Of course.<</say>>
<<cont "armanianswers" "planets2">>
<<case "charlieopt2">>
<<left2 _img>>
<<say mc>>You know we were talking about $charlie.name?<</say>>
<<say cassie>>Yes, dear...<</say>>
<div id="replace">
<<choices>>
<<link "Never mind">>
<<replace "#replace">>
<<say mc>>Ah, never mind.<</say>>
<<narrate>>She gives you a confused look.<</narrate>>
<<button Continue cassie>>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<if $charlie.events.cassie != "all" && $charlie.events.cassie != "sex">>
<<link "Suggest she sleeps with him">>
<<replace "#replace">>
<<say mc>>Would you like to do more with him?<</say>>
<<if $charlie.events.cassie == "possess">>
<<event "charlie" "cassie" "all">>
<<else>>
<<event "charlie" "cassie" "sex">>
<</if>>
<<say cassie>>Dear, you provide me everything I need... but if you have an interest in seeing me with another man, providing it's for your entertainment I'd be willing to perform for you.<</say>>
<<think mc>>_charliereply<</think>>
<<button Continue cassie>>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<</if>>
<<if $charlie.events.cassie != "all" && $charlie.events.cassie != "possess">>
<<link "$charlie.name Possession">>
<<replace "#replace">>
<<if $charlie.events.cassie == "sex">>
<<event "charlie" "cassie" "all">>
<<else>>
<<event "charlie" "cassie" "possess">>
<</if>>
<<say cassie>>Honestly, dear, I'm not sure how I feel about it... but if it's something you want to try, I think I'd be willing to give it a go.<</say>>
<<think mc>>_charliereply<</think>>
<<button Continue cassie>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</if>>
<</choices>>
</div>
<<case "othermen2">>
<<left2 _img>>
<<say cassie>>What's up, dear?<</say>>
<<think mc>>We previously discussed her sleeping with other men and agreed
<<switch $cassie.othermen>>
<<case true>>
it would be okay.
<<case false>>
it would not be okay.
<<case "group">>
it would only be okay in a group situation, such as swinging or sharing.
<</switch>>
Do I want to change my stance on that?<</think>>
<div id="replace">
<<choices>>
<<link "Never mind" cassie>><</link>><br>
<<if $cassie.othermen != true>>
<<link "Suggest it's okay she sleeps with other men">>
<<set $cassie.othermen = true>>
<<replace "#replace">>
<<say mc>>I think it might be cool to watch you sleep with other men.<</say>>
<<say cassie>>If that's what you want, dear, I'll certainly give it some thought. Let's speak again when the potential arises.<</say>>
<</replace>>
<<toggleclass "#alldone" noshow>>
<</link>><br>
<</if>>
<<if $cassie.othermen != "group">>
<<link "Group situation are okay">>
<<set $cassie.othermen = "group">>
<<replace "#replace">>
<<say mc>>I think there should only be another man involved when we're engaged in group sex.<</say>>
<<say cassie>>Where did that come from? But if that's what you want, I have no complaints.<</say>>
<</replace>>
<<toggleclass "#alldone" noshow>>
<</link>><br>
<</if>>
<<if $cassie.othermen != false>>
<<link "No other men">>
<<set $cassie.othermen = false>>
<<replace "#replace">>
<<say mc>>I'm not comfortable you sleeping with other men.<</say>>
<<say cassie>>That's fine dear, I'd only ever sleep with someone you wanted me to anyway.<</say>>
<</replace>>
<<toggleclass "#alldone" noshow>>
<</link>><br>
<</if>>
<</choices>>
</div>
<div id="alldone" class="noshow">
<<button Continue cassie>>
<<time 1>>
<</button>>
</div>
<<case "othermen">>
<<left2 _img>>
<<say mc>>So after the events with Salim, and him taking a shine to you... I did wonder. What are your feelings on sleeping with other men? You obviously know I sleep with other women.<</say>>
<<say cassie>>You provide me everything I need. I can't say I'm not flattered when other men show interest, but I have no intention of straying from you.<</say>>
<<narrate>>She looks at you and smiles.<</narrate>>
<<say cassie>>That said, if watching me with another man is something that turns you on, I think I'd be willing to give it a go.<</say>>
<<think mc>>Hmm, I need a moment to think this through... am I okay with her sleeping with other men?<</think>>
<div id="replace">
<<choices>>
<<link "Yes">>
<<set $cassie.othermen = true>>
<<replace "#replace">>
<<say "mc">>Don't you think it's hot to watch sometimes?<</say>>
<<say "cassie">>It seems very different from porn.<</say>>
<<say "mc">>It is, you'd be the star and I'd be your biggest fan!<</say>>
<<say "cassie">>I'm willing to consider it, it's just not something I would have expected you to suggest.<</say>>
<<think mc>>Okay, well, at least we both know where we stand now.<</think>>
<</replace>>
<<toggleclass "#alldone" noshow>>
<</link>><br>
<<link "No">>
<<set $cassie.othermen = false>>
<<replace "#replace">>
<<say "mc">>Nah, it's not my thing.<</say>>
<<say "cassie">>Then why approach the subject?<</say>>
<<say mc>>Just wanted to know what you desired.<</say>>
<<say cassie>>Just you, dear.<</say>>
<<think mc>>if I ever change my mind, I guess I can approach the subject again.<</think>>
<</replace>>
<<toggleclass "#alldone" noshow>>
<</link>><br>
<<link "Group Only">>
<<set $cassie.othermen = 'group'>>
<<replace "#replace">>
<<say "mc">>Honestly, I don't think I'd want to watch you with another man as such... but if I were involved too, like in a group situation, I think I could get behind that... and you.<</say>>
<<if $cassie.sex < 2>>
<<say 'cassie'>>I see. Well you'll need to work a bit harder before I let you... get behind me, as you say.<</say>>
<<think 'mc'>>Shit, yeah, I haven't even slept with her since the Gateway filled her with lust...<</think>>
<</if>>
<<narrate>>She chuckles.<</narrate>>
<<say "cassie">>And I certainly wouldn't be opposed to you being behind me, dear.<</say>>
<</replace>>
<<toggleclass "#alldone" noshow>>
<</link>>
<</choices>>
</div>
<div id="alldone" class="noshow">
<<button Continue cassie>>
<<time 1>>
<</button>>
</div>
<<case "charlieopt">>
<<left2 _img>>
<<say mc>>Has $charlie.name remained the gentleman with you?<</say>>
<<say cassie>>He has... though I see his lecherous eyes over my body each time we speak.<</say>>
<<say mc>>I'll have a word!<</say>>
<<say cassie>>Oh, no, don't. I find it complimentary, and you trust me, yes?<</say>>
<<say mc>>Of course.<</say>>
<<say cassie>>I have no intention of doing anything with him.<</say>>
<<if $cassie.othermen == undefined>>
<<think mc>>Hmm, she certainly likes the attention but says she's not into doing anything else. I wonder if I said otherwise, she'd go for it?<</think>>
<div id="replace">
<<choices>>
<<link "Leave it be">>
<<event "charlie" "cassie" "friends">>
<<replace "#replace">>
<<say mc>>Okay, just let me know if he ever makes you feel uncomfortable or does something inappropriate.<</say>>
<<say cassie>>You don't think I can handle it myself?<</say>>
<<say mc>>I'm certain you can, but if he steps out of line, I want to deal with as well.<</say>>
<<say cassie>>Very well, dear.<</say>>
<<button Continue $return>>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<link "Suggest she changes her intent">>
<<replace "#replace">>
<<say mc>>So you wouldn't like to do more with him?<</say>>
<<say cassie>>Like what?<</say>>
<<say mc>>Well... you know...<</say>>
<<if $cassie.lust > 100 && $cassie.events.relationship != undefined>>
<<event "charlie" "cassie" "sex">>
<<set $cassie.othermen = true>>
<<say cassie>>Dear, you provide me everything I need... but if you have an interest in seeing me with another man, providing it's for your entertainment I'd be willing to perform for you.<</say>>
<<think mc>>_charliereply<</think>>
<<else>>
<<event "charlie" "cassie" "unready">>
<<say cassie>>I'm sorry dear, I know we're close, but I don't think our relationship has developed enough that I'd be willing to let you watch me with another man.<</say>>
<<think mc>>I guess I can revisit this discussion once she and I have explored our own relationship a little more.<</think>>
<</if>>
<<button Continue $return>>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<if $possess >= 2 >>
<<link "$charlie.name Possession">>
<<replace "#replace">>
<<say mc>>What about if I possessed him?<</say>>
<<say cassie>>So it'd be you in his body?<</say>>
<<narrate>>She thinks for a moment.<</narrate>>
<<if $cassie.lust > 100 && $cassie.events.relationship != undefined>>
<<event "charlie" "cassie" "possess">>
<<say cassie>>Honestly, dear, I'm not sure how I feel about it... but if it's something you want to try, I think I'd be willing to give it a go.<</say>>
<<think mc>>_charliereply<</think>>
<<else>>
<<event "charlie" "cassie" "unready">>
<<say cassie>>Hmm, I am unsure how I feel about that, dear. But until you and I have grown closer, I'm not sure I'd even like to consider it.<</say>>
<<think mc>>I guess I can revisit this discussion once she and I have explored our own relationship a little more.<</think>>
<</if>>
<<button Continue $return>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</if>>
<</choices>>
</div>
<<else>>
<<switch $cassie.othermen>>
<<case true>>
<<think mc>>I've suggested she sleep with other men before and she was okay with it if it was for my enjoyment... should I push her to sleep with $charlie.name I wonder...<</think>>
<div id="replace">
<<choices>>
<<link "Yes">>
<<replace #replace>>
<<say mc>>What about if it was for me to watch?<</say>>
<<narrate>>She grins.<</narrate>>
<<if $cassie.lust > 100 && $cassie.events.relationship != undefined>>
<<event "charlie" "cassie" "sex">>
<<say cassie>>If that turns you on, dear, I am more than happy to comply.<</say>>
<<think mc>>_charliereply<</think>>
<<else>>
<<event "charlie" "cassie" "unready">>
<<say cassie>>I'm sorry dear, I know we're close, but I don't think our relationship has developed enough that I'd be willing to let you watch me with another man.<</say>>
<<think mc>>I guess I can revisit this discussion once she and I have explored our own relationship a little more.<</think>>
<</if>>
<<button Continue $return>>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<link "No">>
<<event "charlie" "cassie" "friends">>
<<replace "#replace">>
<<say mc>>Okay, just let me know if he ever makes you feel uncomfortable or does something inappropriate.<</say>>
<<say cassie>>You don't think I can handle it myself?<</say>>
<<say mc>>I'm certain you can, but if he steps out of line, I want to deal with as well.<</say>>
<<say cassie>>Very well, dear.<</say>>
<<button Continue $return>>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<link "$charlie.name Possession">>
<<replace "#replace">>
<<say mc>>What about if I possessed him?<</say>>
<<say cassie>>So it'd be you in his body?<</say>>
<<narrate>>She thinks for a moment.<</narrate>>
<<if $cassie.lust > 100 && $cassie.events.relationship != undefined>>
<<event "charlie" "cassie" "possess">>
<<say cassie>>Honestly, dear, I'm not sure how I feel about it... but if it's something you want to try, I think I'd be willing to give it a go.<</say>>
<<think mc>>_charliereply<</think>>
<<else>>
<<event "charlie" "cassie" "unready">>
<<say cassie>>Hmm, I am unsure how I feel about that, dear. But until you and I have grown closer, I'm not sure I'd even like to consider it.<</say>>
<<think mc>>I guess I can revisit this discussion once she and I have explored our own relationship a little more.<</think>>
<</if>>
<<button Continue $return>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case false>>
<<event "charlie" "cassie" "friends">>
<<think mc>>We've previously discussed her sleeping with other men and said it's not something we're interested in. However... what about if I was possessing him?<</think>>
<<case "group">>
<<event "charlie" "cassie" "friends">>
<<think mc>>We've previous discussed her sleeping with other men and agreed it would during group sex only... but what about possessing him?<</think>>
<</switch>>
<<if $cassie.othermen == false || $cassie.othermen == "group">>
<div id="replace">
<<choices "Suggest you possess $charlie.name">>
<<link "Yes">>
<<replace "#replace">>
<<say mc>>What about if I possessed him?<</say>>
<<say cassie>>So it'd be you in his body?<</say>>
<<narrate>>She thinks for a moment.<</narrate>>
<<if $cassie.lust > 100 && $cassie.events.relationship != undefined>>
<<event "charlie" "cassie" "possess">>
<<say cassie>>Honestly, dear, I'm not sure how I feel about it... but if it's something you want to try, I think I'd be willing to give it a go.<</say>>
<<think mc>>_charliereply<</think>>
<<else>>
<<event "charlie" "cassie" "unready">>
<<say cassie>>Hmm, I am unsure how I feel about that, dear. But until you and I have grown closer, I'm not sure I'd even like to consider it.<</say>>
<<think mc>>I guess I can revisit this discussion once she and I have explored our own relationship a little more.<</think>>
<</if>>
<<button Continue $return>>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<link "No" $return>>
<<event "charlie" "cassie" "friends">>
<<time 1>>
<</link>>
<</choices>>
</div>
<</if>>
<</if>>
<<case "salimcassie">>
<<narrate>>You meet $cassie.name outside the gateway.<</narrate>>
<<left2 "cassie/gway01.png">>
<<say "cassie">>You ready, dear?<</say>>
<<say "mc">>Yes. Are you sure you want to do this?<</say>>
<<say "cassie">>Let's just go!<</say>>
<<narrate>>You connect to central. Salim grins as soon as he sees you and $cassie.name.<</narrate>>
<<say "cassie">>Is that him?<</say>>
<<say "mc">>Yes, but just be weary of what he says he's not—<</say>>
<<say "cassie">>You leave him to me!<</say>>
<<narrate>>She storms off.<</narrate>>
<<say "mc">>Wait—<</say>>
<<narrate>>As before, the room divides in two and you're left alone in the dark while $cassie.name is alone with Salim.<</narrate>>
<<think "mc">>Shit, I didn't think she'd be forced to be alone with him...<</think>>
<<say "councilb" "Council Member B">>I don't think it's our time to play yet. What's my little doll doing here?<</say>>
<<think "mc">>Where is that voice coming from?<</think>>
<<say "mc">>I uhh... what? Never mind. Salim is with $cassie.name.<</say>>
<<left2 "council/shadow.jpg">>
<<think "mc">>That shadow... it's almost creepy.<</think>>
<<say "councilb" "Council Member B">>Oh, fun! Let's watch!<</say>>
<<narrate>>You hear the click of fingers and then you're hovering above an image of $cassie.name and Salim talking.<</narrate>>
<<say "mc">>$cassie.name!<</say>>
<<say "councilb" "Council Member B">>She can't hear you and you can't hear them. I only say watch, after all!<</say>>
<<say "mc">>What the hell?<</say>>
<<say "councilb" "Council Member B">>I don't care for the man, but I must admit I'm intrigued, and I do love a good show! Now, be quiet!<</say>>
<<narrate>>You try to speak, but you make no noise. After ten minutes, the two are still just talking, though you have no idea what either are saying.<</narrate>>
<<say "councilb" "Council Member B">>This is getting boring, they're just talking!<</say>>
<<narrate>>$cassie.name leans in and hugs Salim.<</narrate>>
<<say "councilb" "Council Member B">>Ah, here we go!<</say>>
<<narrate>>After the hug, she turns and heads away, you notice the rooms start to converge and Salim vanishes.<</narrate>>
<<say "councilb" "Council Member B">>The hell? Ugh. Waste of my time.<</say>>
<<narrate>>You hear another click, and you're back where you started, $cassie.name heading toward you.<</narrate>>
<<say "councilb" "Council Member B">>Booooring! Try to find something more entertaining next time, yes?<</say>>
<<narrate>>Though you can't be sure, you get the feeling she's gone just as $cassie.name reaches you.<</narrate>>
<<left2 "cassie/gway02.png">>
<<say "cassie">>$name. I talked things out with Salim, thank you for giving us space. He's actually quite the gentleman.<</say>>
<<say "mc">>What... he is?<</say>>
<<say "cassie">>Yes, though I get he is being firm with you, he apologized for the indecent proposal and explained it was a way to judge your character. We talked it out and I vouched for you, explained you were a good person, stuck in a horrendous situation and trying to think about the greater good, your family, the other strays... everything.<</say>>
<<say "mc">>I uhh... thanks... this is really not how I expected this meeting to go.<</say>>
<<say "cassie">>No, I expected to be doing a lot more shouting! As to our earlier conversation about other men...<</say>>
<<narrate>>You raise an eyebrow.<</narrate>>
<<switch $cassie.othermen>>
<<case true>>
<<say "cassie">>I would consider it, perhaps even with him, in time. But, I think you and I still have plenty of room for our own growth before we consider that.<</say>>
<<case false>>
<<say "cassie">>He does not interest me that way.<</say>>
<<case "group">>
<<say "cassie">>I'm not sure if he'd be an ideal match for anything you might have in mind but I'm willing to consider a threesome with other men if that's really want you want. But... maybe after we've experienced a little more of just us first.<</say>>
<</switch>>
<<say "mc">>I understand. So what now, did he give you any info about my task?<</say>>
<<say "cassie">>He'll be along in a moment.<</say>>
<<button "Continue" counciltasks>>
<<taskdone "salimcassie2">>
<<like "cassie" 2>>
<<lust "cassie" 3>>
<<temp "salimfail2">>
<</button>>
<<case "salim">>
<<think "mc">>Shit, how do I even approach this?<</think>>
<<left2 _img>>
<<say "cassie">>Why do you suddenly seem so pensive, dear?<</say>>
<<say "mc">>I... uhh... do you ever want to sleep with other men?<</say>>
<<narrate>>She looks shocked.<</narrate>>
<<if $cassie.sex > 1>>
<<say "cassie">>No. You are all the man I need.<</say>>
<<else>>
<<say "cassie">>You are the only man I have slept with for... some time. Whether we do that again or not... we shall see.<</say>>
<</if>>
<<say "mc">>I see. What if I was okay with it?<</say>>
<<say "cassie">>I have no desire for other men.<<if $cassie.sex < 2>> Besides, our relationship hasn't moved to that stage yet anyway.<</if>> Would you like me to be with other men?<</say>>
<div id="replace">
<<set _rest = "
<<say 'mc'>>One of the council member's has taken a shine to you.<</say>>
<<narrate>>She stays silently, patiently waiting for you to continue.<</narrate>>
<<say 'mc'>>He did try and trap me, get me to pimp you out, not that I would. But, it got me thinking if you'd ever even want to sleep with other men.<</say>>
<<say 'cassie'>>I see. Right, how do I meet this slime ball? I'm going to give a piece of my mind!<</say>>
<<say 'mc'>>Uh... we'd need to go to Central.<</say>>
<<say 'cassie'>>Very well, meet me at Gateway B when you're ready.<</say>>
<<button 'Continue' housestuff>>
<<taskdone 'salimcassie'>>
<<time 1>>
<</button>>
">>
<<choices>>
<<link "Yes">>
<<set $cassie.othermen = true>>
<<replace "#replace">>
<<say "mc">>I mean... kinda. Don't you think it's hot to watch sometimes?<</say>>
<<say "cassie">>It seems very different from porn.<</say>>
<<say "mc">>It is, you'd be the star and I'd be your biggest fan!<</say>>
<<say "cassie">>I'm willing to consider it, it's just not something I would have expected you to suggest.<</say>>
_rest
<</replace>>
<</link>><br>
<<link "No">>
<<set $cassie.othermen = false>>
<<replace "#replace">>
<<say "mc">>No. Absolutely not.<</say>>
<<say "cassie">>Then why approach the subject?<</say>>
_rest
<</replace>>
<</link>><br>
<<link "Group Only">>
<<set $cassie.othermen = 'group'>>
<<replace "#replace">>
<<say "mc">>Honestly, not entirely... but if I were involved too, like in a group situation, I think I could get behind that... and you.<</say>>
<<if $cassie.sex < 2>>
<<say 'cassie'>>I see. Well you'll need to work a bit harder before I let you... get behind me, as you say.<</say>>
<<think 'mc'>>Shit, yeah, I haven't even slept with her since the Gateway filled her with lust...<</think>>
<</if>>
<<say "cassie">>What's brought this on all of a sudden?<</say>>
_rest
<</replace>>
<</link>>
<</choices>>
</div>
<<case "cover">>
<<block "cassie/office01.jpg">>
<<say "mc">>You wanted to talk about the management of the hub in my absence?<</say>>
<<say "cassie">>Yes. I think I know you well enough by now to understand you'll want this place to run as normal.<</say>>
<<narrate>>You nod.<</narrate>>
<<say "mc">>I think you're more than capable of handling it in my absence.<</say>>
<<say "cassie">>I appreciate your trust in my abilities, but I think it may be more prudent to plan ahead.<</say>>
<<say "mc">>Oh?<</say>>
<</block>>
<<say "cassie">>As we don't know how long you'll be gone, I would firstly advise you schedule people over several days, rather than a single day at a time.<</say>>
<<say "mc">>Using a weekly schedule?<</say>>
<<say "cassie">>Yes. If you're confident the workers won't get fatigued working the same schedule day in day out, you don't have to do that, of course. But, my biggest concern is you taking able-bodied workers with you.<</say>>
<<say "mc">>Yeah, I guess I'm going to leave a gap in the work force.<</say>>
<<say "cassie">>Luckily, we've recently had five off world candidates apply.<</say>>
<<say "mc">>Oh? Any decent candidates?<</say>>
<<say "cassie">>All of them. However, I'm fully aware you have a penchant for only employing women, of which there are three.<</say>>
<<say "mc">>Who? Me?<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "cassie">>Yes, we're not blind to see that there's an abundance of women you find attractive working here. That said, you do nonetheless pick capable workers. You'll find the details of the candidates on the computer. It's your call whether you hire them, of course. But I would suggest that you do.<</say>>
<<say "mc">>Anything I should know about them?<</say>>
<<say "cassie">>They are strong candidates, but as such they just won't work anywhere. Your hub will need to be attractive enough to, well, attract them.<</say>>
<<say "mc">>Understood. Hopefully I won't be gone too long, but I get the need to be prudent.<</say>>
<<say "cassie">>You don't need to depart yet, so take your time and ensure you've set up everything and achieved everything you want to before you head out there.<</say>>
<<say "mc">>Thanks, $cassie.name.<</say>>
<<say "cassie">>$armani.name will also send people out on expeditions while you're away to maintain trade links as appropriate.<</say>>
<<say "mc">>Sounds like you've thought of everything!<</say>>
<<taskdone "organisation">>
<<choices "Review Candidates?">>
<<link "Review" recruit>>
<<like "cassie" 3>>
<<lust "cassie" 2>>
<<time 1>>
<</link>><br>
<<link "Later" housestuff>>
<<like "cassie" 3>>
<<lust "cassie" 2>>
<<time 1>>
<</link>>
<</choices>>
<<case "champs">>
<<narrate>>You walk back to the office to speak to $cassie.name.<</narrate>>
<<block "cassie/office01.jpg">>
<<say "cassie">>How'd it go?<</say>>
<<say "mc">>She's convinced it's a traitor, I'm still not so sure.<</say>>
<<say "cassie">>Any closer to who it is?<</say>>
<<say "mc">>It's one of five. $britt.name, $molly.name $ember.name, $kayla.name or $moriah.name.<</say>>
<<say "cassie">>Okay, that should make it a bit easier. I had a thought. I'm fairly certain it's nothing sinister and there's nothing you've said to make me fear otherwise. What do you feel about gathering them together and explaining the situation?<</say>>
<</block>>
<<think "mc">>I don't think $voice.name would approve, but it may be a quick way to resolve this. If they are a potential enemy though, it could go very wrong.<</think>>
<div id="replace">
<<choices "Gather everyone?">>
<<link "Yes" cassieanswers>><<temp "champsgather">><</link>><br>
<<link "No">>
<<replace "#replace">>
<<say "mc">>While I still think it likely nothing nefarious, it's still a possibility so I think it best I investigate quietly.<</say>>
<<say "cassie">>Understood, dear.<</say>>
<<think "mc">>Perhaps I should start by talking to $voice.name and checking the information I already have.<</think>>
<<button "Continue" househub>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "champsgather">>
<<say "cassie">>Okay, let me text them all.<</say>>
<<narrate>>Fifteen minutes later everyone has gathered.<</narrate>>
<<say "moriah">>What's this about, where's everyone else?<</say>>
<<say "britt">>Do you two want us to watch? I'm totally down for that!<</say>>
<<say "cassie">>Sorry to gather you without warning, but there's something we need to discuss.<</say>>
<<say "kayla">>With just us?<</say>>
<<say "cassie">>Correct.<</say>>
<<say "mc">>Last night, $voice.name spoke to me. Her power has grown thanks to my bonds with you.<</say>>
<<say "ember">>That's great!<</say>>
<<say "mc">>However, she revealed there are only eight champions during that conversation. She doesn't know exactly who isn't a champion, but from what she told us we've narrowed it down to you five.<</say>>
<<say "moriah">>So one of us is just a normal stray?<</say>>
<<say "mc">>Yes. $voice.name thinks it's something nefarious, I think it innocent, hence gathering you all. If we go over to the gateway, she can sense her champions in close proximity and we can—<</say>>
<<narrate>>$kayla.name starts sobbing.<</narrate>>
<<say "kayla" "" "(Through tears)">>It's me. I'm the traitor!<</say>>
<<say "mc">>Traitor?<</say>>
<<say "kayla" "" "(Through tears)">>I am so sorry everyone, but the Eastlanders left me here to be an informant, to watch over you and let them know if you ever posed any danger. You never have. I've always loved hanging with you guys and always felt like one of you.<</say>>
<<narrate>>$moriah.name hugs her.<</narrate>>
<<say "moriah">>You are one of us. So what if you came here through different means, you never actually betrayed us.<</say>>
<<narrate>>$kayla.name her sobbing turns into full-on crying.<</narrate>>
<<say "kayla" "" "(Through tears)">>No, I don't deserve it. I have betrayed you. Especially you, $moriah.name. Until $name got here it's all been fine, never reported back anything to cause concern. But when $name arrived I thought he was dangerous and I told them. I thought he might hurt you guys too! Then, because I was scared he may find out, I planted evidence on your computer $moriah.name. I am so sorry, I know I was wrong. I'm ashamed. Once I got to know $name, I realized my error and I've sent a message back to them to state it was a false alarm and that he poses no danger.<</say>>
<<narrate>>Everyone in the room is looking at $kayla.name shocked.<</narrate>>
<<think "mc">>Shit, am I going to have break up a fight here?<</think>>
<<narrate>>To your surprise they all join in the hug.<</narrate>>
<<say "ember">>I get it, you thought you were protecting everyone. You acted too quickly, but if he was dangerous you may have saved us.<</say>>
<<say "moriah">>Just how have you been communicating with them?<</say>>
<<say "kayla">>There are underground cables going all the way out east.<</say>>
<<say "mc">>And what did they say when you told them I was no danger?<</say>>
<<say "kayla">>They haven't replied yet.<</say>>
<<say "mc">>I'll leave this to you guys, I trust your judgment.<</say>>
<<think "mc">>Perhaps I'm still a little skeptical, but I'm still worried this is an act.<</think>>
<<narrate>>You leave them to it.<</narrate>>
<<button "Continue" househub>>
<<taskdone "eightchampsdetective">>
<<event "mc" "kaylaconfess">>
<<event "mc" "kaylagone" "confess">>
<<time 2>>
<</button>>
<<case "champions">>
<<block _img>>
<<say "mc">>$voice.name spoke to me last night, we may have an issue.<</say>>
<<say "cassie">>What is it, dear?<</say>>
<<say "mc">>One of the strays isn't actually a champion.<</say>>
<<say "cassie">>Who?<</say>>
<<say "mc">>I don't know. I'm on my way to the gateway to discuss it now.<</say>>
<</block>>
<<say "cassie">>Any idea what it means?<</say>>
<<say "mc">>My assumption is it's innocent, and they are truly a stray just by other means. Though I get the impression $voice.name feels it something more sinister.<</say>>
<<say "cassie">>I'd have expected it if something sinister they'd have made their move by now. Let me mull this one over, come find me once you've spoken to $voice.name and we can agree on a plan of action.<</say>>
<<say "mc">>Thanks $cassie.name.<</say>>
<<say "cassie">>And, dear, don't say anything to anyone else for now. While I agree it's likely nothing sinister, we don't want to cause an undue panic.<</say>>
<<narrate>>You nod.<</narrate>>
<<button "Continue" gatewaya>>
<<like "cassie" 3>>
<<set $mc.events.eight = "cassie">>
<<time 1>>
<</button>>
<<case "relationship">>
<<block _img>>
<<say "mc">>You know, I've grown rather fond of you.<</say>>
<<say "cassie">>Believe me, it's mutual.<</say>>
<<say "mc">>That's great to hear. How do you feel about taking it to the next level?<</say>>
<<narrate>>You see the mental cogs whirring and click in to place as she finally realizes what you mean.<</narrate>>
<<if $cassie.lust > 69>>
<<think "cassie">>He has worked hard to woo me since my... transgression, and I can't say I don't desire it.<</think>>
<<say "cassie">>I think I might like that, dear. I'll meet you tonight.<</say>>
<<think "mc">>Finally!<</think>>
<<button "Continue" cassie>>
<<night "cassieroomsex">>
<<time 1>>
<</button>>
<<else>>
<<switch $cassie.lustlvl>>
<<case 0>>
<<think "cassie">>He's barely even attempted anything romantic since we had sex!<</think>>
<<case 1>>
<<think "cassie">>I mean we've kissed a little since my mistake, but I wouldn't say we're ready for anything else yet.<</think>>
<<case 2>>
<<think "cassie">>He's certainly putting the effort in, but I'm not quite ready.<</think>>
<<case 3>>
<<think "cassie">>It's hard to say no, I almost want to pounce on him here. He's done so much already. Just a little more and I'll be ready.<</think>>
<</switch>>
<<if $cassie.lustlvl < 3>>
<<say "cassie">>I'm afraid I'm not ready to open myself to you again like that.<</say>>
<<narrate>>Her words are very matter-of-factly and not laced with the usual pleasantness that comes with $cassie.name's voice.<</narrate>>
<<think "mc">>I guess I haven't done enough to win her over yet.<</think>>
<<else>>
<<say "cassie">>We've grown a lot closer, and I'm nearly ready to take that plunge, but not quite there yet, dear.<</say>>
<<think "mc">>Okay, doesn't sound like she's too far away, if I can get feeling a bit more lustful I think we can finally move forward.<</think>>
<</if>>
<<button "Continue" cassie>>
<<time 1>>
<</button>>
<</if>>
<</block>>
<<case "quick">>
<<block _img>>
<<say "mc">>How about a repeat of the other day after our trip to the gateway?<</say>>
<<narrate>>You lift your eyebrows up and down quickly.<</narrate>>
<<narrate>>She stares back at you dumbfounded for a moment.<</narrate>>
<<say "cassie">>Listen, dear, I know my actions back then gave the wrong impression, but I'm not some common tart you can just pick up and put down whenever you want.<</say>>
<<say "mc">>No, I didn't mean anything like that, I just thought—<</say>>
<<say "cassie">>Yes, I know what you thought, and it's mostly my fault. I let the lust overcome me, and it's given you a rather inaccurate depiction of me.<</say>>
<</block>>
<<think "mc">>What the fuck is going on? I thought this was a sure thing.<</think>>
<<say "cassie">>The truth is, and call me old-fashioned, I'd like a bit of romance first, woo me, make me feel special - without your penis.<</say>>
<<think "mc">>Eh, I'll play it off for now, I can choose whether to invest my time on her whenever I like after all.<</think>>
<<say "mc">>Ah, sorry, truth be told, I'd prefer a little of that too. But I'm still a man stuck here with a group of beautiful women, so the lust sometimes does take the lead. I'll try to make a special effort to win your heart.<</say>>
<<say "cassie">>That's sweet, dear. And honestly, you can do whatever you like with any of the others, that's between you and them, but for me, I'd like our connection to be something more than purely sexual.<</say>>
<<think "mc">>Sounds like a bit of effort, but there's nothing forcing me to pursue her, of course. But off the top of my head, I could make maybe do her breakfast or dinner, maybe watch a movie together or even see if I can find some flowers.<</think>>
<<button "Continue" cassie>>
<<set $cassie.kissed = 0>>
<<event "cassie" "comeon">>
<<time 1>>
<</button>>
<<case "armanifight">>
<<say "mc">>Is everything okay between you and $armani.name?<</say>>
<<say "cassie">>Of course, why do you ask?<</say>>
<<say "mc">>I heard raised voices from the living room, sounded like you were fighting.<</say>>
<<say "cassie">>We're sisters, sometimes we have disagreements, but I assure you, everything is fine, dear.<</say>>
<<say "mc">>Is it anything I can help you with?<</say>>
<<think "cassie">>You have no idea!<</think>>
<<if $cassie.like < 20>>
<<say "cassie">>No, I don't think so. But I appreciate the sentiment.<</say>>
<<think "cassie">>Clearly, she's not ready to open up yet. I should approach the subject again once we're closer.<</think>>
<<button "Continue" cassie>>
<<time 0.5>>
<</button>>
<<else>>
<<say "cassie">>To be honest, we were discussing you.<</say>>
<<think "mc">>Did not expect her to be so open!<</think>>
<<say "mc">>Oh? Anything I should be aware of?<</say>>
<<say "cassie">>The jury is out on that one. Let's just say we both have very different opinions on your actions.<</say>>
<<say "mc">>What do you mean?<</say>>
<<say "cassie">>With regard to love versus lust. Neither of us are prudes, and we see no shame in sharing you with others, but to what extent do we hold a place in your heart?<</say>>
<<think "mc">>Crap, I did not expect her to be so forward.<</think>>
<<say "cassie">>The question is rhetorical, don't worry. I do not wish you to answer. Your actions will tell the tale for you.<</say>>
<<narrate>>Before you can respond, she's changed the subject.<</narrate>>
<<think "mc">>Maybe I should approach the subject with $armani.name, too.<</think>>
<<button "Continue" cassie>>
<<if $cassie.events.sisterrivalry != 2>>
<<event 'cassie' 'sisterrivalry' 2>>
<<lust 'cassie' 1>>
<<like 'cassie' 1>>
<<time 1>>
<</if>>
<</button>>
<</if>>
<<case "leader">>
<<block _img>>
<<say "mc">>Who is actually in charge here? I thought you were originally, but at the house meeting it felt $armani.name took charge.<</say>>
<<say "cassie">>Amazing, isn't she? I wish I were half the woman she was.<</say>>
<<say "mc">>She's certainly impressive, but I don't know, I just can't picture her as the leader.<</say>>
<<say "cassie">>And that's because she's not, and nor am I. We have no leader as such, we each have our own skills and talents, things we know better than others. $armani.name is good at logistics and planning, thus she takes charge of the expeditions.<</say>>
<<say "mc">>And that's why $britt.name calls her boss?<</say>>
<</block>>
<<say "cassie">>Yes, $britt.name comes from a military background, so she sees $armani.name as her ranking officer. However, despite that, she is still very much equal to the rest of us. We defer to each other's abilities and settle disagreements by vote.<</say>>
<<say "mc">>Sounds like a fair democracy.<</say>>
<<say "cassie">>It's hardly a government, there's only nine of us, well was. But even your arrival and the others doesn't exactly bring enough numbers to start a constitution. However, what you've told us did change things.<</say>>
<<say "mc">>Oh, what do you mean?<</say>>
<<say "cassie">>You have a task, the briefcase and the voices all guiding your hand. But for that you need help - our skills. I think it's clear that you will be leading us very soon.<</say>>
<<say "mc">>That's not really my intention, I don't want to usurp or force anyone.<</say>>
<<say "cassie">>While sometimes there will be tough calls you have to make, leadership isn't about forcing people to do anything. It's inspiring your team, motivating them and making the best use of their talents, recognizing their personalities differ and treating everyone fairly, but differently based on their individualism. But, most importantly, it's trust. Once you have earned the trust of your team or followers, they will run into hell, should you wish it.<</say>>
<<say "mc">>That seems like a heavy burden.<</say>>
<<say "cassie">>The responsibility carries a heavy weight indeed. But I don't need a crystal ball to understand that is what the situation is evolving into. But, I have no concerns, I do not trust easy, few of us here do, and yet all of us have grown to trust you in a very small amount of time. There is no doubt in my mind, dear, that you will lead us, if not now, very soon.<</say>>
<<say "mc">>I am honored you'd put such faith in me.<</say>>
<<say "cassie">>Of course, and to that end, call on me should you need. I will happily help however you request, just direct me.<</say>>
<<say "mc">>Thanks, $cassie.name<</say>>
<<notice>>
$cassie.name will now work for you.
<</notice>>
<<button "Continue" cassie>>
<<if $cassie.events.leader == undefined>>
<<worker "cassie">>
<<like 'cassie' 3>>
<<lust 'cassie' 1>>
<<event 'cassie' 'leader'>>
<<run queueMessage(8, 'cassie', 'leadership')>>
<<time 1>>
<</if>>
<</button>>
<<case "gym-invite">>
<<think "mc">>Hmm, $sophia.name is here too... should I see if she wants to watch?<</think>>
<<choices>>
<<link "Yes" sophiaanswers>>
<<temp "aud-cassie">>
<</link>><br>
<<link "No" cassieanswers>>
<<temp "gym">>
<</link>>
<</choices>>
<<case "gym">>
<<say "mc">>You think you could help me improve my fitness?<</say>>
<<if $cassie.lust > 49>>
<<narrate>>She bites her lip and looks you up and down as if appraising you.<</narrate>>
<<think "cassie">>There's definitely a way we could both get sweaty together...<</think>>
<<if $cassie.like < 15>>
<<narrate>>She blinks a little suddenly and shakes her head backwards as trying to remove an unwanted thought.<</narrate>>
<<say "cassie">>Sorry, dear, perhaps some other time, I'm trying to work on my own routine at the moment.<</say>>
<<say "mc">>Oh, okay.<</say>>
<<think "mc">>I think perhaps she needs to know me a little better first.<</think>>
<<if $tempvar3 == "krissy">>
<<narrate>>$krissy.name smirks.<</narrate>>
<<think krissy>>Yeah, you didn't have to balls to carry through with it, huh? I knew your were bluffing!<</think>>
<<set $tempvar3 = "">>
<</if>>
<<button "Continue" cassie>>
<<time 0.5>>
<</button>>
<<else>>
<<say "cassie">>I think we can help each other, dear.<</say>>
<<narrate>>She hands you a stop watch.<</narrate>>
<<say "cassie">>Pay close attention to my routine, so you may mimic it yourself later, and time me as you do.<</say>>
<<say "mc">>Great!<</say>>
<<narrate>>She gets down on to a mat and bends over, the view of her ass in her tight shorts leaving nothing to your imagination.<</narrate>>
<<say "cassie">>First, you can help me with my stretches. Hold my waist for me, won't you, dear? Tight.<</say>>
<<narrate>>You grab her waist, your now semi-erect penis only 30 or so centimeters from her ass. You're struggling to concentrate.<</narrate>>
<<center "cassie/workout01.jpg">>
<<say "cassie">>You feel my muscles tensing and stretching?<</say>>
<<think "mc">>It's not the only thing stretching!<</think>>
<<say "mc">>Uh, yeah. I guess you're saying I need to stretch more, huh?<</say>>
<<say "cassie">>Let's move on. Hold these, I'm going to kick you.<</say>>
<<narrate>>She hands you some focus mitts while she gloves up.<</narrate>>
<<say "mc">>Uhh, what should I—<</say>>
<<narrate>>She kicks at your mitts. Seemingly playfully, but still with enough force to take you by surprise.<</narrate>>
<<say "cassie">>Hold them together at waist height, and stand steady.<</say>>
<<vid "cassie/kick.mp4">>
<<narrate>>Despite the mitts and $cassie.name clearly not giving it her entire force, you can still feel a tremendous power behind them.<</narrate>>
<<say "cassie">>That should be enough to help you with warming up. Now, I think perhaps I should show you some other tricks.<</say>>
<<narrate>>You learned some decent warm-ups you can now try out solo.<</narrate>>
<<narrate>>She moves over to the fitness trampoline, and kneels on to it, holding the bar with her hands.<</narrate>>
<<say "cassie">>What do you think of with this position?<</say>>
<<think "mc">>I think I want to pull down your shorts and fuck you hard.<</think>>
<<narrate>>You decide to test your luck and gently grab her waist before slipping your hand in her gym shorts.<</narrate>>
<<say "cassie">>Mhhmm, someone feeling a bit frisky?<</say>>
<<narrate>>She grips on to the trampoline as your fingers continue to explore her vulva.<</narrate>>
<<say "cassie">>I think these shorts might be in the way...<</say>>
<<narrate>>You violently pull down her shorts, revealing her juicy, wet pussy.<</narrate>>
<<if $sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Gym">>
<<narrate>>You notice $sophia.name working out on a machine at the other end of the gym.<</narrate>>
<<think "mc">>Let's see how long she sticks around for the show!<</think>>
<</if>>
/*
<<narrate>>Even though you hadn't dare say it out loud, you can feel the arousal of the situation overwhelming you and in your gym shorts, the erection is hard to miss.<</narrate>>
<<say "cassie">>Oh, my.<</say>>
<<narrate>>Her eyes narrow on to your crotch, her eyes hungrily scanning.<</narrate>>
<<say "cassie">>It's okay dear, I think I understand. I think perhaps there's a way we can help each other...<</say>>
<<narrate>>She pulls down her shorts revealing her firm round ass then looks back over her shoulder at you.<</narrate>>
<<say "cassie">>I think I need to work up a large sweat with a deep, thorough workout. Do you have the right equipment for the job?<</say>>
<<say "mc">>You won't forget this workout for a while, you'll be sore in the morning!<</say>>
<<narrate>>You grab her waist and she holds tighter on the trampoline. You playfully tap the tip of your cock against her clit.<</narrate>>
<<say "cassie">>Don't toy with me. Put it in. Now, hard.<</say>>
<<narrate>>Not one to back away from a challenge you thrust hard into her as she lets out a moan of pleasure.<</narrate>>
<<say "cassie">>Yes, that's it. Now let's really get this workout underway.<</say>>
*/
<<button "Continue" cassiesex>>
<<temp "workoutoral">>
<</button>>
<</if>>
<<else>>
<<think "cassie">>I don't think I'm ready to let him see this side of me so freely just yet.<</think>>
<<say "cassie">>Perhaps another time, dear.<</say>>
<<say "mc">>Oh, okay.<</say>>
<<if $tempvar3 == "krissy">>
<<narrate>>$krissy.name smirks.<</narrate>>
<<think krissy>>Yeah, you didn't have to balls to carry through with it, huh? I knew your were bluffing!<</think>>
<<set $tempvar3 = "">>
<</if>>
<<button "Continue" cassie>>
<<time 0.5>>
<</button>>
<</if>>
<<case "explorer">>
<<say "mc">>Would you be interested in exploring the other worlds, gathering additional resources and that kind of thing?<</say>>
<<say "cassie">>What a thorough and detailed pitch.<</say>>
<<say "mc">>Sorry, I'm just itching to get out there, but instinctively I know I'm unable to pass through my own gateway.<</say>>
<<say "cassie">>I understand, dear.<</say>>
<<if $cassie.like > 14>>
<<think "cassie">>I think I know $name pretty well at this point, and while I've no interest in relocating, it would be good to see some different scenery.<</think>>
<<say "cassie">>I'd love to. Seeing new sights, broadening my horizons, it sounds like fun! Count me in!<</say>>
<<say "mc">>Great, thanks $cassie.name. I'll let you know when we're moving out!<</say>>
<<say "cassie">>Looking forward to it.<</say>>
<<explorer "cassie">>
<<notice>>$cassie.name can now be sent on expeditions.<</notice>>
<<else>>
<<think "cassie">>I've no interest in relocating, but I'd love to see some different scenery. But, I just don't feel like I know him well enough yet. I'm pretty sure he has good intentions, but I'd prefer to know him better before I risk it all.<</think>>
<<say "cassie">>I like the thought of it, but I think I'd like to get to know you better first.<</say>>
<<say "mc">>Understood.<</say>>
<<think "mc">>I should ask again once she likes me more.<</think>>
<</if>>
<<button "Continue" cassie>>
<<time 0.5>>
<</button>>
<<case "buffer">>
<<left _img>>
<<right>>
<<if $tempvar2 != "nobuff">>
<<say "mc">>What do you know about gateway buffers?<</say>>
<<say "cassie">>Basically nothing. I know they exist as a means to transport travelers, but that's about the extent of my knowledge. Perhaps one of the Eastlanders could help?<</say>>
<<say "mc">>Yeah, maybe, but I didn't think we trusted them yet?<</say>>
<<else>>
<<say "mc">>I've been thinking of $lexi.name and it's getting hard to hold the truth from her.<</say>>
<</if>>
<<say "cassie">>I have a good feeling about them, and you know $lexi.name and $monique.name from before - and I don't think that's coincidence.<</say>>
<<if $monique.events.trueid != undefined>>
<<say "mc">>True, $lexi.name is my $lexi.them, and $monique.name my $monique.them - though that came as a bit of a shock - but it's not just my secret to share, is it? If it were, I'd be happy to tell them.<</say>>
<<else>>
<<say "mc">>Well, $lexi.name is my $lexi.them, I didn't know $monique.name, though. Besides, it's not just my secret to share, is it? If it were, I'd be happy to tell her.<</say>>
<</if>>
<</right>>
<<say "cassie">>Honestly, it's your call, dear. I feel you're undervaluing yourself though, you are seemingly key to so many things. You've brought new hope into our lives. None of us particularly want to go home, but we do want to be safe here. An active gateway offers us that chance. You are the key to our future, and while it may sound dramatic, we're all likely to follow you anywhere.<</say>>
<<say "mc">>That's a lot to put on my shoulders, but I think I understand. I'll try to live up to your expectations.<</say>>
<<say "cassie">>In the short time I've known you, you've exceeded them at every stage. I have no doubt.<<if $tempvar2 != "nobuff">> I might add, $lacy.name may also offer some input if you're not yet ready to put your faith in $lexi.name.<</if>><</say>>
<<say "mc">>Thanks, $cassie.name. I'll give it some thought.<</say>>
<<say "cassie">>Anything for you, dear.<</say>>
<<button "Continue" cassie>>
<<if $cassie.events.lexitruth == undefined>>
<<event 'cassie' 'lexitruth'>>
<<task "lexitruth">>
<<lust 'cassie' 2>>
<<like 'cassie' 3>>
<</if>>
<<event "cassie" "bufferchat">>
<<time 1>>
<</button>>
<<case 'gatewaya'>>
<<left _img>>
<<right>>
<<say "mc">>I need to speak to the voice at the first Gateway again. Will you join me?<</say>>
<<say "cassie">>Of course dear, I would caution you not to go all together based on what happened last time, but I can see the determination in your eyes.<</say>>
<<say "mc">>Thank you.<</say>>
<<say "cassie">>Anything I should prepare for?<</say>>
<<say "mc">>I shouldn't think so, please just pull me out if need be.<</say>>
<<say "cassie">>Of course, shall we?<</say>>
<<button "Continue" voicetalk>>
<<like 'cassie' 2>>
<<lust 'cassie' 1>>
<<set $mc.events.gatewayacompanion = 'cassie'>>
<</button>>
<</right>>
<<case 'sister'>>
<<left "cassie/office01.jpg">>
<<right>>
<<say "mc">>How come your sister seems to dislike me so much?<</say>>
<<narrate>>$cassie.name snorts.<</narrate>>
<<say "cassie">>Believe me, dear, nothing is further from the truth. She just needs to warm up to you.<</say>>
<<button "Continue" cassie>>
<<if $cassie.events.sisterlike is undefined>>
<<like "cassie" 1>>
<<set $cassie.events.sisterlike = 1>>
<</if>>
<<time 0.5>>
<</button>>
<</right>>
<<case 'long'>>
<<left "cassie/office01.jpg">>
<<right>>
<<say "mc">>How long have you and $armani.name been here?<</say>>
<<narrate>>$cassie.name's face drops.<</narrate>>
<<say "cassie">>Let's just say long enough, shall we?<</say>>
<<think "mc">>A subject I obviously shouldn't push for now.<</think>>
<<button "Continue" cassie>>
<<event "cassie" "long">>
/*<<time 0.25>>*/
<</button>>
<</right>>
<<case 'east'>>
<<left "cassie/office01.jpg">>
<<right>>
<<say "mc">>What's the deal with the Eastlanders?<</say>>
<<say "cassie">>I've already told you a little, but they are just normal people, from various realms, that while traveling decided this halfway house could serve them a more permanent residence. Apparently it was a lot more bountiful back then.<</say>>
<<say "mc">>So, not the almost barren wasteland it is today?<</say>>
<<say "cassie">>Not at all, the gateway provided everything for them. It was almost like a deity, in fact from my understanding some of them did in fact worship it as such. When it went dormant, things slowly started to wither. $armani.name and I arrived a little time after this, we were, like yourself, completely disorientated. Only the then-locals were not accommodating at all. While they allowed us the necessities to live and even shared many material luxuries, they did not interact with us socially nor make any attempt to know us. What little I know of their history is from the books and journals they left behind.<</say>>
<</right>>
<<say "mc">>And they labeled you as strays?<</say>>
<<say "cassie">>Correct, whether purposefully meant to cause us discomfort or not I can't say, but it certainly did. We never felt part of their society, not for lack of trying, but for them simply not allowing us. And as I say, they provided for us to live safe lives, they just didn't want any part in it.<</say>>
<<say "mc">>So why did they leave?<</say>><<say "cassie">>They never really told us, and while earlier I told you we decided to stay to help any future strays, the truth is we were never invited, and I don't think they would have allowed us to follow if we tried.<</say>>
<<say "mc">>They sound a bit elitist.<</say>>
<<say "cassie">>Something like that, they certainly always made us feel less than them, and excluded us, but also never allowed us to go hungry or without clothing.<</say>>
<<button "Continue" cassie>>
<<if $cassie.events.easttalk is undefined>>
<<like 'cassie' 1>>
<<set $cassie.events.easttalk = 1>>
<</if>>
<<time 1>>
<</button>>
<<case 'others'>>
<<left "cassie/office01.jpg">>
<<right>>
<<say "mc">>Tell me about the others?<</say>>
<<say "cassie">>There's three more of us out trading.<</say>>
<<narrate>>She lays out some photos on the table.<</narrate>>
<<say "cassie">>I'll quickly tell you who's who, then you let me know if you have any questions, okay?<</say>>
<</right>>
<<left "britt/brittcrop.jpg">>
<<right>>
<<say "cassie">>This is <<textbox "$britt.name" $britt.name>>, a total badass despite her innocent looks. You really don't want to mess with her, but we know she'll always have our back when needed. She's leading the away party at the moment.<</say>>
<</right>>
<<left "ember/embercrop.jpg">>
<<right>>
<<say "cassie">>This is <<textbox "$ember.name" $ember.name>>, a lovable rogue, I think is the appropriate phrase. A lot of fun, but can sometimes go a bit far with her pranks.<</say>>
<</right>>
<<left "vanna/vannacrop.jpg">>
<<right>>
<<say "cassie">>You've met $lacy.name, and you're aware her mother is here too. However, you're probably not expecting this. I think it best I just show you. This is her mom, <<textbox "$vanna.name" $vanna.name>>.<</say>>
<</right>>
<<say "mc">>Wow, but she looks so young.<</say>>
<<say "cassie">>Don't let appearances fool you, you won't age in this place, one of the reasons I suspect the original residents settled here. But she also gained quite the boon on entry, the gateway sometimes transforms the traveler, usually very subtly, but for her, she became twenty-something years younger. <</say>>
<<say "mc">>So she's been here a while?<</say>>
<<say "cassie">>Some of us won't feel comfortable talking about that topic. It's also difficult to properly compare, we aren't all from the same world, heavens know how we all speak the same language, presumably something else this place provides, but a year to me may mean something very different to you. <</say>>
<<say "mc">>Wait, so you're not all from my world?<</say>>
<<say "cassie">>Some of us are definitely from different worlds. It's possible some of us are from your world but in all honesty I'm not sure. We used to speak about our home worlds on occasion but it became difficult to relate to the fundamental differences between cultures, technology, and history. Our home worlds have become somewhat of a rare topic; the hub is our home now.<</say>>
<<say "mc">>Wow. I don't even know where to go from here.<</say>>
<<say "cassie">>Well, now I've told you about $lacy.name's mother perhaps you'd want to talk to her.<</say>>
<<say "cassie">>But otherwise, beyond what I've told you, it's not really my place to go into anything personal on behalf of the others. As you get to know them better, I'm sure they'll open up about the more personal topics.<</say>>
<<say "mc">>Yeah, I guess that makes sense. I've just realized though, are all the strays women?<</say>>
<<say "cassie">>Correct. While there are male Eastlanders none have come through as strays.<</say>>
<<say "mc">>Do you think there's a reason for that?<</say>>
<<say "cassie">>I haven't the faintest idea. It may simply be blind luck, or that statistically there are more women in the various worlds. It's clear men have used the gateway given those in the east, so it's not like it's a female-only entrance. But any theories on the subject are moot, as we have no way of proving them true or false.<</say>>
<<think "mc">>Hmmm, perhaps ending up here in a house filled with beautiful women isn't such a bad thing.<</think>>
<<say "cassie">>Once you're introduced to everyone, come back to me, and I'll tell you what I've got planned for tomorrow. <</say>>
<<button "Continue" cassie>>
<<set $cassie.events.others = 1>>
<<taskdone "othersintro">>
<<task "lacymom">>
<<task "cassietomorrow">>
<</button>>
<</switch>>
<</nobr>><<if !$girlsmet.includes('dee')>>
<<think cassie>>We've helped these people quite a bit, while being careful not to make them reliant on us. I'm sure we can find someone who would be willing help guide us.<</think>>
<<think mc>>I thought you knew where you wanted to go?<</think>>
<<think cassie>>Roughly, but it'd be better to get a local to assist. Let's head to the closest settlement for now, help out and see if we can find anyone.<</think>>
<<temp "matsDee0">>
<<set $tempvar3 = "cwar">>
<<include "riding">>
<<else>>
<<narrate>>You direct her to the camp you met $dee.name, hoping she'll act as guide. There's an unfamiliar woman there when you arrive.<</narrate>>
<<meet "tk">>
<<left2 "offworld/tk/meet01.jpg">>
<<say "tk" "???">>Who are you?<</say>>
<<say cassie>>We were looking for $dee.name.<</say>>
<<say "tk" "???">>What do you want with my wife?<</say>>
<<narrate>>You feel a hand on $cassie.name's shoulder.<</narrate>>
<<say dee>>It's okay <<textbox "$tk.name" $tk.name>>, these are the ones I told you about. The travelers.<</say>>
<<narrate>>She rolls her eyes and leaves the room.<</narrate>>
<<say cassie>>We were hoping you could help us locate an old base not far from here, belonged to a weapons manufacturer.<</say>>
<<say dee>>I'm not aware of anything like that... unless you're talking about that cache from before?<</say>>
<<say cassie>>No, I don't think so. I know its rough location, can you take me here?<</say>>
<<narrate>>She shows her a map and $dee.name screws her face.<</narrate>>
<<say dee>>I can take you, but it's pretty barren there. That part of the city was hit pretty bad.<</say>>
<<think mc>>Might be a dead end, but still wanna check it out?<</think>>
<<think cassie>>Yeah, there's something bothering me...<</think>>
<<say cassie>>That'd be great if you could, thanks.<</say>>
<<narrate>>$dee.name starts collecting her things while you and $cassie.name talk in thought.<</narrate>>
<<think mc>>What's bothering you?<</think>>
<<think cassie>>I don't want to jump to any conclusions, so let's just see what we find.<</think>>
<<narrate>>Once ready, $dee.name guides you to the location.<</narrate>>
<<say cassie>>Are there any doorways or archways around here that seem out of place?<</say>>
<<say dee>>Hmm, there's a monument that's still standing in a ruined building.<</say>>
<<say cassie>>That could be it.<</say>>
<<say dee>>Oh, you like a collector of art or something?<</say>>
<<say cassie>>Excuse me?<</say>>
<<say dee>>I assume it used to be an art installation and that's the only piece still standing... why else would there be something like in the middle of what used to be a room?<</say>>
<<say cassie>>Oh, no. If it's what I think it is, it's something much more...<</say>>
<<think mc>>Wait, I think I'm starting to understand your suspicions...<</think>>
<<narrate>>She guides you to the monument.<</narrate>>
<<say cassie>>Can you channel some of your power into it through me?<</say>>
<<say dee>>Huh?<</say>>
<<say cassie>>Sorry, talking to $name.<</say>>
<<say dee>>Ah, yeah, the possession thing... what's he like, $name?<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>I think he's pretty cool. Very handsome. Amazing guy. The best!<</say>>
<<say dee>>That was him, wasn't it?<</say>>
<<narrate>>$cassie.name chuckles.<</narrate>>
<<say cassie>>Yeah. He doesn't have much time left on the connection, but perhaps we can arrange a proper meeting after this?<</say>>
<<say dee>>Yeah, that'd be good.<</say>>
<<say cassie>>Go ahead and channel your power, dear.<</say>>
<<if $planets[7].power >= 4>>
<<include "cassie-powershare">>
<<else>>
<<narrate>>You try to focus your power into the archway. You struggle to focus, in the end you're unable to power it, but it feels like the arch wants to accept your power.<</narrate>>
<<think mc>>I can't do it... but I think your hunch was right. I can definitely tell it <b>can</b> be powered, I just can't do it.<</think>>
<<think cassie>>Perhaps you need to strengthen your connection to this world?<</think>>
<<think mc>>Worth a shot!<</think>>
<<narrate>>Your connection fades.<</narrate>>
<<set _p = planets[7]>>
<<think mc>>So, I guess I need to use power control at the Gateway to strengthen my connection with _p.name.<</think>>
<<notice>>A level 4 connection is required.<</notice>>
<</if>>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<if $planets[7].power < 4>>
<<influence "pelupower">>
<</if>>
<<eventdone "peluwar1">>
<<time 2>>
<</button>>
<</if>><<narrate>>$cassie.name returns to the archway, $dee.name, curious and not wanting to miss out on anything, invites herself along.<</narrate>>
<<say cassie>>Go ahead and channel your power, dear.<</say>>
<<include "cassie-powershare">>
<<button "Continue" yourroom>>
<<like $mount 4>>
<<lust $mount 2>>
<<run delete $mount>>
<<eventdone "pelupower">>
<<time 2>>
<</button>><<narrate>>You try to focus your power into the archway. You struggle to focus, but you're able to channel a small amount in thanks to your strong connection with this world.<</narrate>>
<<narrate>>The Gate springs to life, though it's design and size is different to that of the New Eden gate, it's blindly obvious it has a similar function.<</narrate>>
<<say dee>>What the fuck is that?!<</say>>
<<say cassie>>A gate to another location. Someone has traveled here before and seemingly left their mark, someone with greater technology then this world should have.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>The weapons manufacturer?!<</say>>
<<say dee>>I... what... huh?<</say>>
<<say cassie>>I'll be right back.<</say>>
<<narrate>>As she steps through the gate, your connection fades.<</narrate>>
<<think mc>>I hope everything is okay...<</think>>
<<event "mc" "pelupower">><<narrate>>$cassie.name excitedly approaches you.<</narrate>>
<<left2 "cassie/work01.jpg">>
<<say cassie>>You won't believe what we found, dear!<</say>>
<<say mc>>I'm just glad you're okay. What did you find?<</say>>
<<say cassie>>A treasure trove. The Gate lead to an island, plenty of arable land outside and resources for the people to thrive.<</say>>
<<say mc>>That's fantastic news.<</say>>
<<say cassie>>There's more. Quite a bit more. It's already got infrastructure, homes, power, seeds even.<</say>>
<<say mc>>But nobody lives there?<</say>>
<<say cassie>>No, that's where it's really fascinating. I was able to go through some documents in the town hall there. It seems it was built as a retreat, a fallback if the war tore the homes from specific people in leadership. I should note, it's not a small island, it's big enough to house an entire nation of millions, though the town built there is only suitable for a few thousand, but we didn't exactly explore much of it... it's about 300,000 square kilometers based on the maps I found.<</say>>
<<say mc>>A secret paradise they could hide in and weather the storm comfortably?<</say>>
<<say cassie>>Exactly. My suspicion is that the Gate was created in some sort of deal with this weapon manufacturer so it could be used as a quick escape if needed.<</say>>
<<say mc>>But nobody lives there?<</say>>
<<say cassie>>No, there are a few remnants of people being there beyond the construction, but it looks like it was basically to keep the place maintained and store documents for if the worst happened.<</say>>
<<say mc>>Right... so why didn't the relevant people who had access ship their loved ones here as a matter of precaution from the start?<</say>>
<<say cassie>>I don't know for sure, but having checked the monitoring station on my way back the island is in a very remote part of the world, traveling there would be difficult, especially in a world at war. And using the gate means relying on the mystery traveler, who could easily use it as a bargaining chip, they could even have used their loved ones as hostages.<</say>>
<<say mc>>Hmm, I guess...<</say>>
<<say cassie>>But, I wasn't there. Certainly relations between the two nations were poor when I was living on the world, but other nations were trying to broker peace to prevent... well exactly what happened.<</say>>
<<say mc>>I'm sorry, $cassie.name.<</say>>
<<say cassie>>Oh, don't be, dear. It's not something I could have any control over even if I were there, and $hubname has been my home much longer. I am however intrigued about the history and this mysterious traveler, so I'll keep studying if you'll allow me.<</say>>
<<say mc>>Of course. What did you tell $dee.name and the others?<</say>>
<<say cassie>>Everything I learned basically, you should have seen the looks on their faces when she came through the Gate and saw the island.<</say>>
<<say mc>>Wait, they could pass through the Gate?<</say>>
<<say cassie>>Yes, dear.<</say>>
<<say mc>>But they aren't travelers.<</say>>
<<say cassie>>I can't profess to understand it, but I would assume it's because they are traveling using your power, rather than their own. Sort of like a portal. I don't know if the same principle could be applied to the Gateway, though.<</say>>
<<say mc>>Certainly something we can look into once things here are a little less tumultuous.<</say>>
<<say cassie>>They've actually invited me for dinner, a few days for them to explore and settle into the new land.<</say>>
<<say mc>>Wow, they're already moving in?<</say>>
<<say cassie>>Well, I only spoke to $dee.name, but she said at the very least her and $tk.name would definitely make the jump, and they'd invite the rest of the settlement. We can't help everyone on that world, but we've helped a good number with this discovery.<</say>>
<<say mc>>That's great!<</say>>
<<say cassie>>I'll let you know when it's time, you'll join me, right?<</say>>
<<say mc>>of course!<</say>>
<<think cassie>>And they way $dee.name was flirting with me, I daresay they'll be an enjoyable show if he wants it...<</think>>
<<button "Continue" $return>>
<<event "mc" "pelupower" 3>>
<<lust "cassie" 1>>
<<like "cassie" 8>>
<<time 1>>
<<run queueMessage(60, 'cassie', 'pelu')>>
<</button>><<think mc>>Wow... this place is really something.<</think>>
<<left2 "offworld/tk/meet02.jpg">>
<<say tk>>Ah, good. You're here. This place is a paradise. We really can't thank you enough.<</say>>
<<say cassie>>I'd love to take credit, but it was luck more than anything.<</say>>
<<say tk>>Whatever it was. You made it happen. My wife is waiting on the bench outside, you can change in the second room on the right.<</say>>
<<say cassie>>Change?<</say>>
<<think mc>>I guess you weren't expecting this...<</think>>
<<think cassie>>I should have, it's just been so long.<</think>>
<<say tk>>Yes, once I've finished preparing our meal, I'll join you.<</say>>
<<narrate>>She sees $cassie.name's blank stare.<</narrate>>
<<say tk>>Hmm, maybe it's different on your world?<</say>>
<<say cassie>>This is my home world...<</say>>
<<say tk>>Oh, good. I took the liberty of leaving a bikini in there just in case.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>Looks like things are looking up!<</say>>
<<say cassie>>$name!<</say>>
<<narrate>>$tk.name laughs.<</narrate>>
<<say tk>>Oh, yes, they are. Very much so!<</say>>
<<think cassie>>I'd forgotten this... in some of the countries it's customary to eat outside when the weather is nice.<</think>>
<<think mc>>So I get to see all three of you in skimpy outfits? It's almost a curse I'm not there in person!<</think>>
<<narrate>>She heads to the room to change. You influence her to make rude gestures and whistle at herself as she takes off her clothes.<</narrate>>
<<think cassie>>Cheeky!<</think>>
<<cont "cassie-three2">><<narrate>>$dee.name is sat at a table outside waiting for you. She smirks as $cassie.name sits down.<</narrate>>
<<center "offworld/dee/para01.jpg">>
<<say dee>>I'm a little of jealous of how great you look.<</say>>
<<say cassie>>Oh, it's nothing but a shadow compared to you.<</say>>
<<narrate>>The two chuckle.<</narrate>>
<<say dee>>You really are from this world. Tell me where from?<</say>>
<<narrate>>$cassie.name brushes over the details of living here, briefly mentioning her country and instead gushing about how much she loves living on $hubname now.<</narrate>>
<<say dee>>It sounds like a wonderful place. I'd love to see it one day. Maybe one day we can redirect the Gate there.<</say>>
<<say tk>>Dinner's ready! I hope you like asparagus!<</say>>
<<narrate>>You can't help but notice she's put on some makeup and jewelry.<</narrate>>
<<say $mount $name "(Possession)" "" "" "possessed">>Wow, you look incredible.<</say>>
<<narrate>>$tk.name and $dee.name look at each and smirk. $tk.name then sits down next to $cassie.name.<</narrate>>
<<say cassie>>You are a fantastic good, $tk.name.<</say>>
<<say dee>>She's got magic fingers.<</say>>
<<center "offworld/dee/para02.jpg">>
<<say tk>>It's all thanks to you, $cassie.name, and your patron, $name. It's a shame we might never meet him. There's little we can do to repay you for all this, but we wanted to show our gratitude.<</say>>
<<say cassie>>Really, it's nothing. It was purely luck and a byproduct of me seeking answers.<</say>>
<<narrate>>$tk.name places her hand on $cassie.name's thigh.<</narrate>>
<<say tk>>Be that as it may, whatever the cause, you are the reason it happened. Once we've properly explored the surrounding area we intend to go out to the other settlements and invite them here.<</say>>
<<narrate>>$tk.name starts gently massaging $cassie.name's thigh. You can feel the movement, you can feel $cassie.name's libido rising.<</narrate>>
<<say dee>>But you know, forgetting all that we just enjoyed your company. You're an alluring woman, $cassie.name.<</say>>
<<narrate>>$dee.name's foot rubs gently over $cassie.name's leg. You feel the warmth growing inside her.<</narrate>>
<<think cassie>>I think their intentions are clear, $name... what would you like to do?<</think>>
<<eventdone "cassiethree">>
<div id="replace">
<<choices>>
<<link "Let's have some fun">>
<<replace "#replace">>
<<say $mount $name "(Possession)" "" "" "possessed">>I think I'd rather like to see you sandwiched between them.<</say>>
<<narrate>>The women laugh.<</narrate>>
<<say dee>>Well, it's clear our actions are not lost on $name.<</say>>
<<say tk>>It's such a curiosity, having someone inside you like that. Tell me how does it feel?<</say>>
<<say cassie>>It can sometimes feel strange when he takes control unexpectedly, but otherwise it feels calming... intimate even.<</say>>
<<narrate>>$tk.name stands up, and takes $cassie.name's hand.<</narrate>>
<<say tk>>Let's see how it compares to the feeling of me inside you.<</say>>
<<think mc>>Now this is a show I want to see!<</think>>
<<say tk>>Come, let's head inside and get changed into something a little more appropriate for desert.<</say>>
<<think mc>>Changed? You're about to be naked anyway!<</think>>
<<think cassie>>It's just how things are done here, pomp and pageantry. I suspect they're more heavily playing into tradition and old roles now they've suddenly got the means to do so. You'll enjoy it, don't worry.<</think>>
<<cont "cassiesex" "peluethree01">>
<</replace>>
<</link>><br>
<<link "Disconnect, but encourage her to enjoy herself">>
<<replace "#replace">>
<<think mc>>I think I'll leave the three of you two it.<</think>>
<<think cassie>>You don't want to watch?<</think>>
<<think mc>>I want to take part, not be a bystander... but please, I want you to enjoy the moment.<</think>>
<<button "Disconnect" $return>>
<<like $mount 4>>
<<lust $mount 4>>
<<run delete $mount>>
<<time 2>>
<</button>>
<</replace>>
<</link>><br>
<<link "Leave">>
<<replace "#replace">>
<<think mc>>Let's leave.<</think>>
<<think cassie>>Understood.<</think>>
<<say cassie>>Sorry ladies, I think there's a misunderstanding here, I apologize if I gave the wrong signals. We're more than happy to help and assist, and you flatter me with your advances, but I'm afraid I can't partake.<</say>>
<<say tk>>I told you she was straight, honey!<</say>>
<<say dee>>I certainly misread that one. Sorry if we're put you in a predicament.<</say>>
<<say cassie>>Don't be, I'm sure if $name were able to be here physically, he'd jump at the chance.<</say>>
<<say tk>>Sharing cock with my wife is among our greatest pleasures in life, I'm sure he'd find us more than accommodating.<</say>>
<<say cassie>>Oh, my.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>Now there's a reason for a man reason to find a way.<</say>>
<<narrate>>They chuckle.<</narrate>>
<<say dee>>It is a shame, $cassie.name, you are an alluring woman, but we're not ones to force ourselves where we are not wanted, and we do not wish to harm our friendship with you and $name, nor the support provided.<</say>>
<<say cassie>>Of course, no harm done.<</say>>
<<button "Continue" $return>>
<<like $mount 2>>
<<lust $mount 2>>
<<run delete $mount>>
<<time 2>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div><<left2 "cassie/gway02.png">>
<<say cassie>>Good morning, dear.<</say>>
<<say mc>>Morning.<</say>>
<<say cassie>>These documents from my world are fascinating... the resources $founder.name wanted weren't used on my world, they were seen as trash, so the governments lapped it up when that's what she wanted as payment.<</say>>
<<say mc>>But why did she want it? What did she do with it?<</say>>
<<say cassie>>I honestly don't know. I asked $lacy.name, and she said it was similar to the Gate, and it's likely she was using them for something related to that. But we have nothing to go on for her side, and we only have documents from one of the nations here.<</say>>
<<say mc>>Hmmm... but with her power, why not just take what she needed? Why instigate this war?<</say>>
<<say cassie>>This is pure conjecture, but I'd guess her power not enough to control entire worlds. Manufacturing the war ensured their reliance on her, and that they continued to gather the resources she wanted.<</say>>
<<say mc>>She'd only need to control a few people in power, though...<</say>>
<<say cassie>>Maybe, either way, we can't be sure. Maybe she wasn't as powerful then, or maybe it was just easier to do this? I doubt she'd tell you if you asked.<</say>>
<<say mc>>No, I don't think she would. But it does make me wonder what else she's been up to.<</say>>
<<say cassie>>I'm sure if we keep looking, we'll find out.<</say>>
<<event "cassie" "peludocs" 2>>
<<cont "househub">><<nobr>>
<<set $scene = 0>>
<<set _active = "cassie">>
<<set _passage = _active+"answers">>
<<set $girlsmet.pushUnique('cassie')>>
<<set $return = returnLocation()>>
<<smallflirt "cassie">>
<<if $tasks.festival4 != undefined && $cassie.events.camp == undefined>>
<<opt "Festival Campgrounds" festprep cassiecamp>><</opt>>
<</if>>
<<run console.log($library)>>
<<if $library != undefined && $library.discovered.includes('peluhistory') && !$library.done.includes('peluhistory')>>
<<opt `planets[7].name + "'s War"` _passage peluwar>><</opt>>
<</if>>
<<if $cassie.events.sisterbitch == 1>>
<<opt "Bitchy Sister" _passage bitch>><</opt>>
<</if>>
<<if $tasks.cassieideas != undefined>>
<<link "Facility Ideas" cassieanswers>>
<<temp "neideas">>
<</link>><br>
<</if>>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $armani.events.planets == undefined>>
<<link "Home World" cassieanswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if $tasks.organisation != undefined && $location == "office">>
<<link "Work Schedules" cassieanswers>>
<<temp "cover">>
<</link>>
<br>
<</if>>
<<if ($tasks.salimpower != undefined || $completeTasks.includes('salimpower')) && $charlie.events.cassie == undefined && $girlsavailable.includes('charlie')>>
<<opt $charlie.name "cassieanswers" "charlieopt">><</opt>>
<<elseif $charlie.events.cassie != "all" && $girlsavailable.includes('charlie') && $cassie.lust >= 100>>
<<opt $charlie.name "cassieanswers" "charlieopt2">><</opt>>
<</if>>
<<if ($tasks.salimpower != undefined || $completeTasks.includes('salimpower')) && $cassie.othermen == undefined>>
<<opt "Other Men" "cassieanswers" "othermen">><</opt>>
<</if>>
<<if $cassie.othermen != undefined>>
<<opt "Other Men" "cassieanswers" "othermen2">><</opt>>
<</if>>
<<if $tasks.salimcassie != undefined>>
<<link "Salim's Offer" cassieanswers>>
<<temp "salim">>
<</link>>
<br>
<</if>>
<<if $tasks.eightchamps != undefined>>
<<link "Champions" cassieanswers>>
<<temp "champions">>
<</link>>
<br>
<</if>>
<<if $location == "lounge" && $cassie.events.comeon != undefined>>
<<link "Movie?" cassieromance>>
<<temp "movie">>
<</link>>
<br>
<</if>>
<<if $cassie.like > 49>>
<<link "Relationship" cassieanswers>>
<<temp "relationship">>
<</link>>
<br>
<</if>>
<<if $hour >= 10 && $location == "office" && $cassie.lust > 49>>
<<link "Brunch?" cassiesex>>
<<temp "brunch">>
<</link>>
<br>
<</if>>
<<if $hour >= 17 && $hour <= 20 && $cassie.events.comeon != undefined>>
<<link "Dinner?" cassieromance>>
<<temp "dinner">>
<</link>>
<br>
<</if>>
<<if $hour < 9 && $mc.events.breakfast == 1>>
<<link "Breakfast in Bed" cassieromance>>
<<temp "breakfast">>
<</link>>
<br>
<</if>>
<<if $mc.events.flowers == 1>>
<<link "Give Flowers" cassieromance>>
<<temp "flowers">>
<</link>>
<br>
<</if>>
<<if $cassie.events.comeon == undefined && $cassie.lust > 9>>
<<link "Proposition Her" cassieanswers>>
<<temp "quick">>
<</link>>
<br>
<</if>>
<<if $expeditions isnot undefined && !$explorers.includes('cassie')>>
<<link "Expeditions" cassieanswers>>
<<set $tempvar = "explorer">>
<</link>>
<br>
<</if>>
<<if $tasks.bufferR isnot undefined && $cassie.events.bufferchat == undefined && $lexi.events.lexitruth == undefined>>
<<link "Buffer" cassieanswers>>
<<set $tempvar = "buffer">>
<</link>>
<br>
<</if>>
<<if $cassie.events.sisterrivalry == 1>>
<<link "$armani.name Argument" cassieanswers>>
<<temp 'armanifight'>>
<</link>>
<br>
<</if>>
<<if $lexi.events.lexitruth == undefined && $tasks.lexitruth == undefined && $tasks.bufferR is undefined && $day > 5 && $lexi.events.here != undefined>>
<<link "$lexi.name Truth" cassieanswers>>
<<temp "buffer">>
<<set $tempvar2 = "nobuff">>
<</link>>
<br>
<</if>>
<<if $girlsmet.includes('lexi') && $cassie.events.leader == undefined>>
<<link "Leadership" cassieanswers>>
<<temp "leader">>
<</link>>
<br>
<</if>>
<<if $tasks.voicetalk isnot undefined>>
<<link "Gateway A visit" cassieanswers>>
<<set $tempvar = "gatewaya">>
<</link>>
<br>
<</if>>
<<if $tasks['cassietomorrow'] isnot undefined && $tasks['othersintro'] is undefined && $tasks['kaylaintro'] is undefined && $tasks['lacyintro'] is undefined && $tasks['mollyintro'] is undefined && $tasks['moriahintro'] is undefined>>
<<link "Tomorrow" cassietomorrow>>
<</link>>
<br>
<</if>>
<<if $location == "gym">>
<<link "Gym Help" cassieanswers>>
<<if $girlshere.includes('sophia') && $sophia.events.buff > 1>>
<<temp "gym-invite">>
<<else>>
<<temp "gym">>
<</if>>
<</link>>
<br>
<</if>>
<<if $cassie.events.easttalk == undefined && ($location == "office" || $location == "firstIntros")>>
<<link "Eastlanders" cassieanswers>>
<<set $tempvar = "east">>
<</link>>
<br>
<</if>>
<<if $cassie.events.others is undefined>>
<<link "Others" cassieanswers>>
<<set $tempvar = "others">>
<</link>>
<br>
<</if>>
<<if $cassie.events.sisterlike == undefined>>
<<link "Sister's dislike" cassieanswers>>
<<set $tempvar = "sister">>
<</link>>
<br>
<</if>>
<<if $cassie.events.long == undefined && ($location == "office" || $location == "firstIntros")>>
<<link "Time here" cassieanswers>>
<<set $tempvar = "long">>
<</link>>
<br>
<</if>>
<<link "Never mind" $return>><</link>>
<</nobr>><<nobr>>
<<switch $tempvar>>
<<case 'roomsex01'>>
<<vid "cassie/nightsex01.mp4">>
<<narrate>>You gently enter her, slowly, trying to tease her as payback.<</narrate>>
<<narrate>>It fails entirely; you feel her entire body quiver as you penetrate, and her moans show just how much she wants this.<</narrate>>
<<say "cassie">>Fuck yes, harder!<</say>>
<<narrate>>You're unable to contain your lust, your want to tease her completely overridden by your base desires.<</narrate>>
<<narrate>>You speed up, putting more and more thrust into each, in turn her moans become louder and louder.<</narrate>>
<<say "cassie">>Just like that! Yes!<</say>>
<<narrate>>You can feel yourself getting close, but you're not ready to end yet.<</narrate>>
<<say "mc">>I want to take you from behind.<</say>>
<<narrate>>She shifts into position and waggles her ass at you, eager to continue.<</narrate>>
<<button "Continue" cassienightvisits>>
<<temp "roomsex02">>
<<like "cassie" 1>>
<<lust "cassie" 2>>
<</button>>
<<case 'roomsex02'>>
<<vid "cassie/nightsex02.mp4">>
<<narrate>>You grab her waist and thrust like a maniac.<</narrate>>
<<say "cassie">>God yes, just like that, fuck me!<</say>>
<<narrate>>Her screams of passion only encouraging you to go harder.<</narrate>>
<<say "mc">>Your pussy is fucking amazing.<</say>>
<<say "cassie">>Show me. Fuck me hard, show me you appreciate it.<</say>>
<<narrate>>You speed up, but her words have already triggered your end. You pull out seconds later and cover her ass in spunk.<</narrate>>
<<vid "cassie/nightsex03.mp4">>
<<say "mc">>Fuck, that was good.<</say>>
<<narrate>>Your sweaty bodies just collapse on to the bed.<</narrate>>
<<say "mc">>God, it was.<</say>>
<<narrate>>You both lay there silently for a few minutes before you drift off to sleep.<</narrate>>
<<button "Sleep" sleep>>
<<event "cassie" "relationship">>
<<unlock 'cassie' 'night01'>>
<<set $tempvar = 'cassiegone'>>
<<like 'cassie' 2>>
<<lust 'cassie' 3>>
<</button>>
<<case 'roomsex'>>
<<say "cassie">>I wanted to talk about what happened at your gateway after the first time we went there.<</say>>
<<narrate>>You can see she's anxious about approaching the subject.<</narrate>>
<<say "mc">>Don't worry about it, I know it was just a spur of the moment thing.<</say>>
<<block "cassie/night01.jpg">>
<<say "cassie">>Indeed, but while that was the case, I think you and I have grown closer since.<</say>>
<<narrate>>She sits downs on the other side of your bed and looks back at you, awaiting a response.<</narrate>>
<div class="choices" id="opts1">
<h3>What to do?</h3>
<<link "Flirt">>
<<lust "cassie" 2>>
<<toggleclass '#opts1' noshow>>
<<toggleclass '#flirt' noshow>>
<</link>>
<br>
<<link "Just Chat">>
<<toggleclass '#opts1' noshow>>
<<toggleclass '#chat' noshow>>
<</link>>
</div>
<</block>>
<div id="flirt" class="noshow">
<<say "mc">>
Oh, whatever do you mean?
<</say>>
<<narrate>>She grins from ear to ear.<</narrate>>
<<say "cassie">>Perhaps it's best if I just show you?<</say>>
<<block "cassie/night02.jpg">>
<<narrate>>She begins to undress, first sliding her dress straps down over her shoulders.<</narrate>>
<<say "cassie">>Is it becoming clearer?<</say>>
<<say "mc">>
Not at all, I think I need more help to understand.
<</say>>
<<narrate>>Despite rolling her eyes, you can tell she's enjoying this. She continues by dragging her dress down over her ample bosom.<</narrate>>
<<narrate>>As if to tease you, she stands up and faces away from you as just as her breasts were about to be revealed.<</narrate>>
<</block>>
<<block "cassie/night03.jpg">>
<<say "mc">>
Wh—
<</say>>
<<narrate>>The dress continues to get lower, and before you protest, the vision of her beautiful round butt takes up all your thoughts.<</narrate>>
<<say "cassie">>Starting to understand?<</say>>
<<say "mc">>
Oh, I think I'm getting there, but perhaps one last push?
<</say>>
<<say "cassie">>Cheeky!<</say>>
<<narrate>>She completely disrobes and crawls onto the bed, lays in front of you and spreads her legs.<</narrate>>
<<say "cassie">>Enough games, take me!<</say>>
<<button "Continue" cassienightvisits>>
<<set $tempvar = 'roomsex01'>>
<</button>>
<</block>>
</div>
<div id="chat" class="noshow">
<<say "mc">>Let's chat for a bit, I want to get to <i>know</i> you.<</say>>
<<narrate>>She looks at you bemused.<</narrate>>
<<block "cassie/night04.jpg">>
<<say "cassie">>After what we've already done? Do you not find me desirable?<</say>>
<<say "mc">>Of course, but I feel I should know you better.<</say>>
<<say "cassie">>I am no prude. Sex is sex. What better way to know me than to let our bodies merge?<</say>>
<<say "cassie">>I am drawn to you and no longer wish to fight these urges. Will you help me or not?<</say>>
<<think "mc">>This is not what I was expecting. She's not going to like it if I deny her, but do I exact some revenge for her denying my advances previously?<</think>>
<</block>>
<div class="choices" id="opts2">
<h3>What to do?</h3>
<<link "Fuck" cassienightvisits>>
<<set $tempvar = 'roomsex01'>>
<</link>>
<<if $replay == false>>
<br>
<<link "Romance">>
<<toggleclass '#opts2' noshow>>
<<toggleclass '#romance' noshow>>
<<set $cassie.events.romance = 1>>
<</link>>
<</if>>
</div>
<div id="romance" class="noshow">
<<think "mc">>Ah, time for some payback.<</think>>
<<say "mc">>I find you extremely desirable, but perhaps I'm the prude, I want a little romance.<</say>>
<<say "cassie">>This does not preclude sex! But I understand.<</say>>
<<think "cassie">>Is this how he felt when I said the same to him? Wait, is that why he's doing this?<</think>>
<<say "mc">>I'd appreciate that.<</say>>
<<say "cassie">>Another time, then.<</say>>
<<narrate>>Evidently unhappy, she leaves without another word. Her lust goes unsatisfied, but you expect she'll try harder to win your affection going forward.<</narrate>>
<<button "Sleep" sleep>>
<<like 'cassie' -8>>
<</button>>
</div>
</div>
<<case 'refuse'>>
<<say "mc">>Sorry $cassie.name, not in the mood.<</say>>
<<say "cassie">>Oh... uhhh, alright dear.<</say>>
<<narrate>>She's unable to hide the disappointment in her voice.<</narrate>>
<<like "cassie" -4>>
<<lust "cassie" -4>>
<<button "Continue" bedroom>><</button>>
<</switch>>
<</nobr>><<scene>>
<<set _img = getFolder('cassie') + "/$location01.jpg">>
<<switch $tempvar>>
<<case "dinner">>
<<block _img>>
<<say "mc">>How would you like to join me for dinner?<</say>>
<<say "cassie">>That would be lovely. What time?<</say>>
<<say "mc">>Meet me in the kitchen in 30?<</say>>
<<say "cassie">>Looking forward to it.<</say>>
<<button "Continue" cassieromance>>
<<temp "dinner01">>
<</button>>
<</block>>
<<case "dinner01">>
<<narrate>>A little while later...<</narrate>>
<<narrate>>The two of you share stories from your past.<</narrate>>
<<block "cassie/dinner.jpg">>
<<say "cassie">>Oh my gosh, and you just let the neighbor keep the wig?<</say>>
<<say "mc">>I mean, what else was I meant to do? I couldn't tell her about the cricket match, after all!<</say>>
<<say "cassie">>That's hilarious, ha!<</say>>
<<narrate>>The two of you laugh for a few moments more while you finish your meal.<</narrate>>
<<say "cassie">>I had a lovely evening tonight, thank you.<</say>>
<</block>>
<<say "mc">>Me too, it was great to just let loose and talk like that. Been a while since I've been on a date.<</say>>
<<say "cassie">>Believe me, me too.<</say>>
<<narrate>>You get up to help her up and pull her chair out.<</narrate>>
<<say "cassie">>A gentleman, I see.<</say>>
<<narrate>>As she stands up, she pulls you close to her.<</narrate>>
<div id="replaceme">
<<button "Continue">>
<<replace "#replaceme">>
<<left2 "cassie/kiss02.mp4" v>>
<<say "cassie">>That's for a lovely evening.<</say>>
<<narrate>>She leaves you speechless for a moment.<</narrate>>
<<say "mc">>We'll have to do it more often.<</say>>
<<narrate>>She gives you a wink.<</narrate>>
<<say "cassie">>You know where to find me.<</say>>
<<narrate>>She brushes your cheek as she walks away.<</narrate>>
<<if $cassie.kissed == 2>>
<<think "mc">>I think she's grown quite fond of me recently, I should be able to progress things.<</think>>
<<if $cassie.lustlvl == 0>>
<<set $cassie.lustlvl = 1>>
<</if>>
<</if>>
<<button "Continue" housestuff>>
<<like "cassie" 3>>
<<lust "cassie" 3>>
<<set $cassie.kissed++>>
<<set $location = "kitchen">>
<<time 1.5>>
<</button>>
<</replace>>
<</button>>
</div>
<<case "flowers">>
<<block _img>>
<<narrate>>With your hands behind your back, you draw closer to $cassie.name.<</narrate>>
<<say "cassie">>Everything okay, dear?<</say>>
<<narrate>>She looks at you quizzically.<</narrate>>
<<say "mc">>Everything's fine, just wanted to put a smile on the face of a beautiful woman.<</say>>
<<narrate>>You bring around the flowers from your back, presenting them to her.<</narrate>>
<div id="replaceme">
<<button "Continue">>
<<replace "#replaceme">>
<<narrate>>She grabs your chin and looks you in the eyes for a moment.<</narrate>>
<</replace>>
<<replace "#afterblock">>
<<vid "cassie/kiss04.mp4">>
<<say "mc">>Well, had I known flowers had that power, I'd have picked more.<</say>>
<<narrate>>She giggles.<</narrate>>
<<say "cassie">>That was very sweet, dear, thank you.<</say>>
<<narrate>>She gives you a peck on the cheek.<</narrate>>
<<say "cassie">>Perhaps don't mention to $armani.name you've picked her flowers, though.<</say>>
<<narrate>>The two of you chat & flirt for a while before you leave.<</narrate>>
<<if $cassie.kissed == 2>>
<<think "mc">>I think she's grown quite fond of me recently, I should be able to progress things.<</think>>
<<if $cassie.lustlvl == 0>>
<<set $cassie.lustlvl = 1>>
<</if>>
<</if>>
<<button "Continue" housestuff>>
<<like "cassie" 3>>
<<lust "cassie" 3>>
<<set $cassie.kissed++>>
<<set $mc.events.flowers = 0>>
<<time 0.75>>
<</button>>
<</replace>>
<</button>>
</div>
<</block>>
<div id="afterblock">
</div>
<<case "movie">>
<<say "mc">>Want to watch a movie together?<</say>>
<<say "cassie">>That would be lovely! What do you want to watch?<</say>>
<<choices "What movie?">>
<<link "Sleepless in San Diego (Romance)" cassieromance>>
<<temp "watched">>
<<set $tempvar2 = "rom">>
<</link>>
<br>
<<link "Baron of the Necklaces (Fantasy Adventure)" cassieromance>>
<<temp "watched">>
<<set $tempvar2 = "fan">>
<</link>>
<br>
<<link "Trekking Stars (Sci-fi)" cassieromance>>
<<temp "watched">>
<<set $tempvar2 = "sci">>
<</link>>
<br>
<<link "Duck Ball (Comedy)" cassieromance>>
<<temp "watched">>
<<set $tempvar2 = "com">>
<</link>>
<br>
<<if $cassie.lustlvl > 1 && $cassie.lust > 49>>
<<link "Tension (Porno)" cassiesex>>
<<temp "pornomovie">>
<</link>>
<</if>>
<</choices>>
<<case "watched">>
<<narrate>>The two of you enjoy the film together.<</narrate>>
<<switch $tempvar2>>
<<case "rom">>
<<narrate>>By the end of it, $cassie.name is in tears.<</narrate>>
<<say "mc">>Are you okay?<</say>>
<<say "cassie">>It was... it was just so beautiful. What a wonderful love they shared.<</say>>
<<narrate>>She snuggles closer to you on the couch then turns to look at you.<</narrate>>
<<left2 "cassie/kiss01.mp4" v>>
<<say "cassie">>I really enjoy that, thank you.<</say>>
<<say "mc">>Not as much as I enjoyed <i>that</i>.<</say>>
<<narrate>>She giggles while grabbing your arm and snuggling next to you more closely.<</narrate>>
<<if $cassie.kissed == 2>>
<<think "mc">>I think she's grown quite fond of me recently, I should be able to progress things.<</think>>
<<if $cassie.lustlvl == 0>>
<<set $cassie.lustlvl = 1>>
<</if>>
<</if>>
<<narrate>>You stay together for a few minutes before she gets up.<</narrate>>
<<say "cassie">>Let's do it again some time.<</say>>
<<case "fan">>
<<narrate>>$cassie.name is engrossed in the movie.<</narrate>>
<<say "mc">>So what do you think of—<</say>>
<<say "cassie">>Shhh!<</say>>
<<narrate>>You chuckle to yourself then continue watching the movie.<</narrate>>
<<narrate>>As the movie credits roll $cassie.name starts to stir.<</narrate>>
<<say "cassie">>That was epic!<</say>>
<<case "sci">>
<<narrate>>A few minutes into the movie you see $cassie.name fidgeting and barely paying any attention to the screen.<</narrate>>
<<say "mc">>Everything okay?<</say>>
<<say "cassie">>Oh, yeah, it's fine.<</say>>
<<think "cassie">>It's just boring!<</think>>
<<narrate>>You continue to watch the movie and as the credits roll you suddenly hear a loud guttural sound beside you.<</narrate>>
<<narrate>>$cassie.name has fallen asleep and is snoring. Clearly the movie didn't interest her.<</narrate>>
<<think "mc">>Wow, wonder how much of that she slept through? I'll let her rest I guess.<</think>>
<<case "com">>
<<narrate>>As the movie develops, $cassie.name's cackles and cheers get louder and more flamboyant.<</narrate>>
<<say "mc">>Enjoying it?<</say>>
<<say "cassie">>It's hilarious! How have I never seen this movie! It's just so stupid... yet funny!<</say>>
<<narrate>>She moves closer to you on the coach while continuing to laugh at each ridiculous scene.<</narrate>>
<<say "cassie">>That was amazing, I haven't laughed like that for a while. Thanks $name.<</say>>
<<narrate>>She gives you a peck on the cheek before heading out.<</narrate>>
<</switch>>
<<button "Continue" househub>>
<<switch $tempvar2>>
<<case "rom">>
<<lust "cassie" 3>>
<<like "cassie" 3>>
<<set $cassie.kissed++>>
<<case "fan">>
<<like "cassie" 4>>
<<case "com">>
<<lust "cassie" 1>>
<<like "cassie" 5>>
<</switch>>
<<time 2>>
<</button>>
<<case "breakfast">>
<<say "mc">>I brought you breakfast in bed.<</say>>
<<narrate>>Her eyes light up.<</narrate>>
<<block "other/bbed.jpeg">>
<<say "cassie">>Oh my gosh, dear, that's so thoughtful. Do you want to share it?<</say>>
<<narrate>>You snuggle in beside her.<</narrate>>
<<say "cassie">>Mhhhm, this is good.<</say>>
<<narrate>>The two of you flirt and laugh as you devour the breakfast.<</narrate>>
<<say "cassie">>That was delicious, thank you so much.<</say>>
<div id="buttonnomore">
<<button "Continue">>
<<replace "#buttonnomore">>
<</replace>>
<<replace "#replaceme">>
<<left2 "cassie/kiss03.mp4" v>>
<<say "cassie">>A token of my gratitude.<</say>>
<<say "mc">>I obviously need to give you food more often!<</say>>
<<say "cassie">>Best way to a lady's heart.<</say>>
<<if $cassie.kissed == 2>>
<<think "mc">>I think she's grown quite fond of me recently, I should be able to progress things.<</think>>
<<if $cassie.lustlvl == 0>>
<<set $cassie.lustlvl = 1>>
<</if>>
<</if>>
<<narrate>>You joke together for a bit longer before you take the dishes to the kitchen to wash up.<</narrate>>
<<button "Continue" housestuff>>
<<like "cassie" 3>>
<<lust "cassie" 3>>
<<set $mc.events.breakfast = 0>>
<<set $cassie.kissed++>>
<<set $location = "kitchen">>
<<time 0.75>>
<</button>>
<</replace>>
<</button>>
</div>
<</block>>
<div id="replaceme">
</div>
<</switch>><<nobr>>
<<switch $tempvar>>
<<case "peluethree01">>
<<narrate>>After what seemed like an eternity to you, the three women gather together.<</narrate>>
<<think mc>>Finally!<</think>>
<<think cassie>>Patience, dear, the fruit is all the sweeter for having it ripened.<</think>>
<<vid "offworld/dee/t01.mp4">>
<<narrate>>$tk.name and $cassie.name caress one another while $dee.name looks on.<</narrate>>
<<say dee>>Enjoy the show, $name. The four of us are going to have some real fun.<</say>>
<<cont "cassiesex" "peluethree02">>
<<case "peluethree02">>
<<narrate>>Toying with $cassie.name's pussy, $tk.name grins at $dee.name.<</narrate>>
<<vid "offworld/dee/t02.mp4">>
<<say dee>>My wife has such... caring hands, doesn't she?<</say>>
<<narrate>>$tk.name starts rubbing $cassie.name's vulva as $dee.name starts rubbing her own.<</narrate>>
<<say dee>>Yet she seems to be doing <em>all the work</em>.<</say>>
<<cont "cassiesex" "peluethree03">>
<<case "peluethree03">>
<<narrate>>$cassie.name grins and pulls $tk.name forward, and slides aside her lingerie.<</narrate>>
<<vid "offworld/dee/t03.mp4">>
<<narrate>>$tk.name moans with delight as $cassie.name's tongue laps at her pussy.<</narrate>>
<<say tk>>Ahhh~ right there.<</say>>
<<cont "cassiesex" "peluethree04">>
<<case "peluethree04">>
<<say tk>>I think it's time my wife stops playing the voyeur.<</say>>
<<narrate>>$dee.name grins and moves sultrily toward them.<</narrate>>
<<vid "offworld/dee/t04.mp4">>
<<narrate>>$cassie.name and $tk.name pull her in close, removing her clothing as their hands explore her body.<</narrate>>
<<say tk>>Yes, go on. Show our guest here a little of your hospitality, dear.<</say>>
<<cont "cassiesex" "peluethree05">>
<<case "peluethree05">>
<<narrate>>She lowers her head to $cassie.name's crotch.<</narrate>>
<<vid "offworld/dee/t05.mp4">>
<<narrate>>$cassie.name moans under the sensation.<</narrate>>
<<say cassie>>That's good... yes!<</say>>
<<say tk>>My wife is the best.<</say>>
<<say cassie>>Allow me to return the favor.<</say>>
<<cont "cassiesex" "peluethree06">>
<<case "peluethree06">>
<<narrate>>$cassie.name is unexpectedly rough as she pulls $dee.name in towards her and then maneuvers around her.<</narrate>>
<<vid "offworld/dee/t06.mp4">>
<<narrate>>$dee.name squeals with delight as $cassie.name's fingers enter her.<</narrate>>
<<say dee>>Ahhh, yeah!<</say>>
<<say tk>>Oh, let me get in on that!<</say>>
<<cont "cassiesex" "peluethree07">>
<<case "peluethree07">>
<<vid "offworld/dee/t07.mp4">>
<<narrate>>A slave to her desires, $dee.name can do nothing more than moan and scream in rapturous delight as $cassie.name and $tk.name finger fuck her pussy together.<</narrate>>
<<say tk>>Yes, yes, yes, yes!<</say>>
<<narrate>>You lose count at how many times they make her climax, but they keep going as her screams become louder and her wriggling more intense.<</narrate>>
<<cont "cassiesex" "peluethree08">>
<<case "peluethree08">>
<<say tk>>I think we should finish by... finishing out guest.<</say>>
<<narrate>>Finally, they move on, attention returning to $cassie.name.<</narrate>>
<<vid "offworld/dee/t08.mp4">>
<<narrate>>$tk.name manhandles $dee.name into position under $cassie.name, who promptly lowers her dripping pussy.<</narrate>>
<<say tk>>Send her off with a bang, dear.<</say>>
<<narrate>>$cassie.name screams the place down as $dee.name's tongue takes her to climax.<</narrate>>
<<say tk>>Yes, dear, do it. Do it!<</say>>
<<narrate>>The three of them sit spent and out of breath, but grinning at one another.<</narrate>>
<<unlock "cassie" "pelu01">>
<<unlock "dee" "pelu01">>
<<unlock "tk" "pelu01">>
<<cont "cassiesex" "peluethree09">>
<<case "peluethree09">>
<<say tk>>That was amazing...<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>God yes... what a show! I only wish I was there to partake.<</say>>
<<say dee>>Can you not possess one of our men?<</say>>
<<say tk>>Oh, yes, I think you'd find me and my wife very.... accommodating were you to visit us that way.<</say>>
<<if $possess == 3>>
<<say $mount $name "(Possession)" "" "" "possessed">>If there's someone you have in mind, I think we can work something out.<</say>>
<<narrate>>The two grin at each other.<</narrate>>
<<say dee>>Leave it with us; we know just the man. Come back soon, okay?<</say>>
<<notice>>New possession event available.<</notice>>
<<else>>
<<say $mount $name "(Possession)" "" "" "possessed">>I don't yet have the power to do that. But, I'm working on it!<</say>>
<<say tk>>Could you not just possess one of the men from your hub?<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>Possibly, but I don't really work with many men.<</say>>
<<narrate>>They chuckle.<</narrate>>
<<say tk>>No prizes for guessing the reason for that.<</say>>
<<say dee>>Well, be sure to let us be the first to test out your full capabilities once you've figured it out.<</say>>
<</if>>
<<button "Disconnect" $return>>
<<like cassie 4>>
<<lust cassie 12>>
<<possess "peluthree01">>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case "tennis01">>
<<vid "cassie/tennis01.mp4">>
<<think mc>>It's almost cute how much she celebrates when she hits the ball.<</think>>
<<cont "cassiesex" "tennis02">>
<<case "tennis02">>
<<vid "cassie/tennis02.mp4">>
<<think mc>>But she is terrible at this... I'm getting most of my exercise by fetching her foul balls!<</think>>
<<cont "cassiesex" "tennis03">>
<<case "tennis03">>
<<vid "cassie/tennis03.mp4">>
<<think mc>>Still can't argue with that outfit and the ass wiggle.<</think>>
<<say cassie>>This is much harder than it looks...<</say>>
<<say mc>>We can play again another time if you like?<</say>>
<<say cassie>>Yeah, maybe.<</say>>
<<think mc>>She seems a little defeated.<</think>>
<<event "cassie" "tennis">>
<<if $cassie.lust > 100 && $cassie.events.relationship != undefined>>
<<say cassie>>But you know, there are some balls I'm great at playing with...<</say>>
<<narrate>>She gives you a wink.<</narrate>>
<<say cassie>>How about we head back to my room, dear, and clean off?<</say>>
<div id="replace">
<<choices>>
<<link "Yes">>
<<replace "#replace">>
<<think mc>>Fuck yeah!<</think>>
<<narrate>>You're barely in the door before you strip each other naked. She pushes you on to the bed.<</narrate>>
<<say cassie>>Time to earn a little redemption...<</say>>
<<cont "cassiesex" "tennis04">>
<</replace>>
<</link>><br>
<<link "Another time">>
<<replace "#replace">>
<<say mc>>You go on ahead, I'm going to play a little longer.<</say>>
<<narrate>>She furrows her brow, but leaves without saying anything else.<</narrate>>
<<cont "townhub" "" 1>>
<</replace>>
<</link>>
<</choices>>
</div>
<<else>>
<<say cassie>>This is just not my game, dear. I'm going to head back to the hotel, you keep playing.<</say>>
<<think mc>>Hmm, if our relationship were a bit better defined, I might try and see if I could join her.<</think>>
<<cont "townhub" "" 1>>
<</if>>
<<case "tennis04">>
<<vid "cassie/tennis04.mp4">>
<<say cassie>>Has anyone ever told you that... mhmm... your cock tastes amazing?<</say>>
<<narrate>>You grin at her.<</narrate>>
<<say cassie>>It does~<</say>>
<<cont "cassiesex" "tennis05">>
<<case "tennis05">>
<<vid "cassie/tennis05.mp4">>
<<say cassie>>You think it's time for a little bit of... adventure. Hmm, yeah?<</say>>
<<narrate>>You have no idea what she's got in store, but you nod.<</narrate>>
<<say cassie>>Because I think it's the perfect timing.<</say>>
<<cont "cassiesex" "tennis06">>
<<case "tennis06">>
<<narrate>>She lowers herself onto your rod, and shivers with excitement as you slide inside her. She sits still for a moment, your twitching cock inside her, begging for more.<</narrate>>
<<say cassie>>Mhmm, yes, a sexy adventure; just the two of us.<</say>>
<<vid "cassie/tennis06.mp4">>
<<narrate>>She starts moving up and down, slowly and deliberately.<</narrate>>
<<say cassie>>Ohh~ yes. Ohh god! That is so good.<</say>>
<<cont "cassiesex" "tennis07">>
<<case "tennis07">>
<<vid "cassie/tennis07.mp4">>
<<narrate>>She increases the rhythm as she turns away from you.<</narrate>>
<<say cassie>>Yes, ohh~ it feels so good.<</say>>
<<narrate>>She looks back over her shoulder at you, a lustful grin over her face as she rides you.<</narrate>>
<<cont "cassiesex" "tennis08">>
<<case "tennis08">>
<<vid "cassie/tennis08.mp4">>
<<say cassie>>Yes, ohh~ yes.<</say>>
<<narrate>>She writhes under your touch as you gently take her from behind.<</narrate>>
<<say cassie>>Fuck, yes!<</say>>
<<cont "cassiesex" "tennis09">>
<<case "tennis09">>
<<vid "cassie/tennis09.mp4">>
<<narrate>>Rapidly massaging her clit, she moans and screams as you both draw closer to climax.<</narrate>>
<<say cassie>>Yes, yeah, yeah!<</say>>
<<narrate>>The slow, gentle fucking has you built up, you feel the release growing slowly inside you until it's overwhelming.<</narrate>>
<<say mc>>I'm getting close, holy fucking it feels like I'm going to explode, I can keep going it feels so overpowering!<</say>>
<<say cassie>>I want to drink it all up, let me! You taste incredible.<</say>>
<<button "Cum" cassiesex>>
<<temp "tennis10">>
<</button>>
<<case "tennis10">>
<<vid "cassie/tennis10.mp4">>
<<say mc>>Oh, my fucking... holy... gaaah!<</say>>
<<narrate>>You grimace and clench as you explode over her face, half your jizz oozing down between her breasts.<</narrate>>
<<say cassie>>You taste so good, dear.<</say>>
<<narrate>>She scoops the fallen cum from her torso and licks at her fingers like she's just eaten fried chicken.<</narrate>>
<<say cassie>>How is it so delicious?<</say>>
<<narrate>>You chuckle.<</narrate>>
<<say mc>>Thankfully, I've got you a supply on tap whenever you're hungry.<</say>>
<<narrate>>She grins mischievously.<</narrate>>
<<unlock "cassie" "tennis">>
<<button "Continue" housestuff>>
<<set $location = "bedrooms">>
<<lust 'cassie' 3>>
<<like 'cassie' 3>>
<<time 2>>
<</button>>
<<case "charlie00">>
<<if checkUnlocks('movie', 'charlie', 'cassie') == false>>
<<run newMessage("cassie", "charlie")>>
<<run newMessage("cassie", "charlie2")>>
<<run forceRead('cassie')>>
<</if>>
<<narrate>>She arrives a few minutes later.<</narrate>>
<<left2 "cassie/teach01.jpg">>
<<say cassie>>Oh, is he not here yet?<</say>>
<<say mc>>He'll probably a few minutes.<</say>>
<<say cassie>>And you'll just sit here on one of the open desks?<</say>>
<<say mc>>No, no, there'd be no fun in that, I'll stay hidden.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say cassie>>Very well dear.<</say>>
<<narrate>>You get yourself in position and wait for $charlie.name to arrive.<</narrate>>
<<say charlie>>You wanted to see me, $cassie.name?<</say>>
<<set _possess = "
<<narrate>>You possess him only a few moments later. At first, you are just a passenger while $cassie.name leans in to kiss you. As your tongues massage one another, you slowly start gaining more and more control, moving your hands over her body and around her waist. You pull her closer to you as you take over fully.<</narrate>>
<<say cassie>>This feels so similar yet... so different.<</say>>">>
<<set _sex = "
<<say cassie>>Yes, $charlie.name. Don't think I haven't noticed your salacious glances.<</say>>
<<say charlie>>Salacious?<</say>>
<<say cassie>>Lustful. You desire me, don't you?<</say>>
<<narrate>>She rubs her hand over his thigh.<</narrate>>
<<say charlie>>But what about $name?<</say>>
<<say cassie>>He is okay with this, I would not partake without his word.<</say>>
<<narrate>>He doesn't hesitate for a moment. His pants are around his ankles before she even finished her sentence. She laughs.<</narrate>>
<<say cassie>>You're certainly eager. I like that.<</say>>">>
<<set _after = "
<<narrate>>She starts undressing, revealing her lacy underwear.<</narrate>>
<<left2 'cassie/teach02.jpg'>>
<<say cassie>>We're going to have quite a bit of fun, you and I. Whatever teacher wants, teacher gets.<</say>>
<<think mc>>This is gonna be good...<</think>>
<<narrate>>She throws off her bra, and drops to her knees.<</narrate>>
<<button 'Continue' cassiesex>>
<<temp 'charlie01'>>
<</button>>">>
<<if ($cheats != undefined && $cheats.movies != undefined && $cheats.movies == 1) || $charlie.events.cassie == "all" || ($replay == true && $movies.cassie.charlie.variants.includes('possess') && $movies.cassie.charlie.variants.includes('charlie'))>>
<div id="replace">
<<choices "Possess him or watch?">>
<<link "Possess">>
<<replace "#replace">>
_possess
_after
<</replace>>
<<set $tempvar2 = "possess">>
<</link>><br>
<<link "Watch">>
<<replace "#replace">>
_sex
_after
<</replace>>
<<set $tempvar2 = "watch">>
<</link>>
<</choices>>
</div>
<<elseif ($charlie.events.cassie == "sex" && $replay == false) || ($replay == true && !$movies.cassie.charlie.variants.includes('possess') && $movies.cassie.charlie.variants.includes('charlie'))>>
_sex
_after
<<if $replay == true>>
<br>
<<notice>>To unlock the possession variant option, you need to suggest $cassie.name fucks you while you're possessing $charlie.name then invite her to study when both of them are available.<</notice>>
<</if>>
<<set $tempvar2 = "watch">>
<<elseif ($charlie.events.cassie == "possess" && $replay == false) || ($replay == true && $movies.cassie.charlie.variants.includes('possess') && !$movies.cassie.charlie.variants.includes('charlie'))>>
_possess
_after
<<if $replay == true>>
<br>
<<notice>>To unlock the voyeurism variant option, you need to suggest $cassie.name sleeps with $charlie.name then invite her to study when both of them are available.<</notice>>
<</if>>
<<set $tempvar2 = "possess">>
<</if>>
<<case "charlie01">>
<<vid "cassie/teach01.mp4">>
<<if $tempvar2 == "possess">>
<<narrate>>She grins while stroking your cock.<</narrate>>
<<else>>
<<narrate>>She looks in your direction and gives you a wink while stroking $charlie.name's cock.<</narrate>>
<</if>>
<<say cassie>>Naughty, naughty boy.<</say>>
<<if $tempvar2 == "possess">>
<<narrate>>In one fluid motion, she devours your cock and starts masterfully sucking, paying special attention to your tip.<</narrate>>
<<else>>
<<narrate>>She takes $charlie.name's cock to her mouth as he gasps with a mixture of relief and pleasure.<</narrate>>
<</if>>
<<if $tempvar2 == "possess">>
<<cont "cassiesex" "charlie03">>
<<else>>
<<cont "cassiesex" "charlie02">>
<</if>>
<<case "charlie02">>
<<vid "cassie/teach02c.mp4">>
<<narrate>>To your surprise, $charlie.name pushes her onto the desk, steps out of his pants and lowers himself to her pussy, slightly lowering her panties and kissing just above her vagina.<</narrate>>
<<say cassie>>Oh~<</say>>
<<narrate>>He runs up her body, kissing her stomach before taking her tit into his mouth while massaging the other.<</narrate>>
<<think mc>>I didn't expect him to be so tender!<</think>>
<<narrate>>He gets back on his knees, pulls her panties down fully and buries his head in her pussy.<</narrate>>
<<cont "cassiesex" "charlie03">>
<<case "charlie03">>
<<if $tempvar2 == "possess">>
<<narrate>>You throw her down on to the table as she yelps with happy surprise.<</narrate>>
<</if>>
<<vid "cassie/teach03.mp4">>
<<if $tempvar2 == "possess">>
<<narrate>>She moans with delight as you run your tongue over her vulva.<</narrate>>
<<else>>
<<narrate>>She moans with delight as $charlie.name's tongue explores her pussy.<</narrate>>
<</if>>
<<say cassie>>Ohh~ yes.<</say>>
<<if $tempvar2 == "possess">>
<<narrate>>She starts rubbing her breasts as you turn your attention to her clit.<</narrate>>
<<else>>
<<narrate>>As she plays with her breasts she looks in your direction and blows you a kiss.<</narrate>>
<</if>>
<<say cassie>>Take me!<</say>>
<<cont "cassiesex" "charlie04">>
<<case "charlie04">>
<<vid "cassie/teach04.mp4">>
<<if $tempvar2 == "possess">>
<<narrate>>You enter her slowly, gradually picking up the pace as the two of your bodies become increasingly comfortable with one another.<</narrate>>
<<else>>
<<narrate>>He enters slowly and deliberately, wanting to savor every moment of first penetration.<</narrate>>
<</if>>
<<say cassie>>Oh, fuck!<</say>>
<<narrate>>As the pace quickens, so too do her moans.<</narrate>>
<<say cassie>>That cock feels so fucking good.<</say>>
<<narrate>>She slams the table with her hands in excitement.<</narrate>>
<<if $tempvar2 == "possess">>
<<cont "cassiesex" "charlie05p">>
<<else>>
<<cont "cassiesex" "charlie05c">>
<</if>>
<<case "charlie05p">>
<<vid "cassie/teach05p.mp4">>
<<say "charlie" $name "(Possession)" "" "" "possessed">>Oh yeah, just like that.<</say>>
<<narrate>>As you thrust upward, you pull her down toward you, giving you leverage to thrust harder while also enjoying your tongues meeting.<</narrate>>
<<cont "cassiesex" "charlie06p">>
<<case "charlie06p">>
<<narrate>>She twists around on your cock and starts bouncing in sync with your thrusts.<</narrate>>
<<vid "cassie/teach06p.mp4">>
<<say cassie>>Oh, god!<</say>>
<<narrate>>She laughs and calls out with joy as her grip on your cock intensifies.<</narrate>>
<<cont "cassiesex" "charlie07p">>
<<case "charlie07p">>
<<vid "cassie/teach07p.mp4">>
<<say cassie>>Yes, yes, aaah~<</say>>
<<narrate>>Closing in on your end, you let the lust take control, wildly but rhythmically plowing away at her pussy while she screams with delight.<</narrate>>
<<say cassie>>Oh, my god, fuck!<</say>>
<<narrate>>A sensation of warmth flows through, familiar yet still alien as it passes through a body you are borrowing.<</narrate>>
<<say "charlie" $name "(Possession)" "" "" "possessed">>Fuck me, I'm gonna blow.<</say>>
<<button "Cum" cassiesex>>
<<temp "charlie08p">>
<</button>>
<<case "charlie08p">>
<<narrate>>She hurries to her knees and holds out her tongue expectantly.<</narrate>>
<<vid "cassie/teach08p.mp4">>
<<say "charlie" $name "(Possession)" "" "" "possessed">>Oh fuck, I'm gonna cum!<</say>>
<<narrate>>Your erupt into her mouth on her face. She rubs herself down, grateful to receive your seed.<</narrate>>
<<say "charlie" $name "(Possession)" "" "" "possessed">>Fuuck!<</say>>
<<narrate>>She polishes off your knob, cleaning every last drop of cum.<</narrate>>
<<say charlie $name "(Possession)" "" "" "possessed">>How was it?<</say>>
<<say cassie>>Familiar and yet different all at the same time, how was it for you, dear?<</say>>
<<say charlie $name "(Possession)" "" "" "possessed">>Much the same.<</say>>
<<unlock "cassie" "charlie" "possess">>
<<event "charlie" "ca">>
<<set $tempvar2 = "">>
<<if $replay == false && $charlie.events.cassie != "all">>
<<think mc>>Fuck this was wild... and while being $charlie.name is weird... the feeling of fucking in someone else's body just feels... incredible.<</think>>
<<narrate>>As you're lost in thought, you lose control of $charlie.name and you're returned to your own body. A moment later, $cassie.name opens the door and looks at you with concern.<</narrate>>
<<say cassie>>He just zoned out and slumped onto the floor. Will he be okay?<</say>>
<<say mc>>Yeah, it's normal. Takes a few minutes to come around after. I'd have put him in a better position, but I got lost in thought and weakened the connection.<</say>>
<<say cassie>>What were you thinking about?<</say>>
<<think mc>>I was starting to wonder if I should suggest she sleeps with him while I watch too...<</think>>
<div id="replace">
<<choices>>
<<link "Suggest it">>
<<replace "#replace">>
<<say mc>>Carrying on from our earlier chat... I think it might be fun to watch you play teacher with $charlie.name too.<</say>>
<<say cassie>>If that's what you want, dear.<</say>>
<<event "charlie" "cassie" "all">>
<<button "Continue" househub>>
<<lust cassie 4>>
<<like cassie 4>>
<<time 1.5>>
<</button>>
<</replace>>
<</link>><br>
<<link "Leave things as they are">>
<<replace "#replace">>
<<say mc>>Just about how beautiful you are.<</say>>
<<narrate>>She beams.<</narrate>>
<<button "Continue" househub>>
<<lust cassie 4>>
<<like cassie 4>>
<<time 1.5>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<else>>
<<button "Continue" househub>>
<<lust cassie 4>>
<<like cassie 4>>
<<time 1.5>>
<</button>>
<</if>>
<<case "charlie05c">>
<<narrate>>She orders him to lay on the desk where she proceeds to mount him.<</narrate>>
<<vid "cassie/teach05c.mp4">>
<<narrate>>She screams with delight, every now and again stealing glances in your direction.<</narrate>>
<<say charlie>>Yes, fucking, yes! Just like that!<</say>>
<<narrate>>He continues thrusting upward, seemingly oblivious to his audience.<</narrate>>
<<cont "cassiesex" "charlie06c">>
<<case "charlie06c">>
<<vid "cassie/teach06c.mp4">>
<<say cassie>>Oh, yes, fuck.<</say>>
<<narrate>>The two are entwined, their movement entirely in sync, and each thrust driving each of them closer to climax.<</narrate>>
<<say charlie>>Your pussy looks so hot when I fuck you!<</say>>
<<say cassie>>Yeah? So hot?<</say>>
<<cont "cassiesex" "charlie07c">>
<<case "charlie07c">>
<<vid "cassie/teach07c.mp4">>
<<say cassie>>Right there, yes! I want you... I want you to cum in mouth!<</say>>
<<say charlie>>I'm getting close.<</say>>
<<narrate>>You watch as he explodes over her face.<</narrate>>
<<cont "cassiesex" "charlie08c">>
<<case "charlie08c">>
<<vid "cassie/teach08c.mp4">>
<<narrate>>She cleans up his cock while grinning.<</narrate>>
<<say cassie>>Good work today.<</say>>
<<say charlie>>Fuck, that was... wow.<</say>>
<<narrate>>She looks over in your direction.<</narrate>>
<<say cassie>>Now, class dismissed.<</say>>
<<say charlie>>Haha, yeah, so... you wanna—<</say>>
<<say cassie>>CLASS DISMISSED.<</say>>
<<say charlie>>Yes, miss, of course!<</say>>
<<narrate>>He scurries around collecting his clothes.<</narrate>>
<<say cassie>>Faster!<</say>>
<<narrate>>He hastily get dressed then exits the room.<</narrate>>
<<say cassie>>Enjoy the show?<</say>>
<<say mc>>Certainly different... what was that at the end?<</say>>
<<say cassie>>Just a little fun to make sure he's obedient.<</say>>
<<narrate>>She smirks at you.<</narrate>>
<<unlock "cassie" "charlie" "charlie">>
<<button "Continue" housestuff>>
<<lust charlie 4>>
<<lust cassie 4>>
<<like cassie 4>>
<<unlock "cassie" "charlie" "charlie">>
<<event "charlie" "ca">>
<<set $tempvar2 = "">>
<<time 1.5>>
<</button>>
<<case "pornomovie">>
<<narrate>>The two of you snuggle on the sofa as you watch the movie.<</narrate>>
<center>
<div class="tv">
<div class="tvborder">
<<vid "cassie/porno.webm">>
</div>
<span class="tvlogo">SAMESUNG</span>
</div>
</center>
<br>
<<narrate>>Not long into the film, you can see $cassie.name fidgeting.<</narrate>>
<<say "cassie">>Mhhhmmm<</say>>
<<say "mc">>Well, someone is enjoying the movie.<</say>>
<<say "cassie">>Mhhhm, yes. You should enjoy it too.<</say>>
<<narrate>>You stand up to unbuckle your belt, as you do so, $cassie.name crawls off the sofa to you.<</narrate>>
<<say "cassie">>Let me help you with that, dear.<</say>>
<<button "Continue" cassiesex>>
<<temp "pornomovie02">>
<</button>>
<<case "pornomovie02">>
<<vid "cassie/movie01.mp4">>
<<narrate>>She brings her mouth around your bellend, sucking hard as she bounces her head back and forth.<</narrate>>
<<say "mc">>Oh, fuck.<</say>>
<<button "Continue" cassiesex>>
<<temp "pornomovie03">>
<</button>>
<<case "pornomovie03">>
<<vid "cassie/movie02.mp4">>
<<narrate>>You grab the back of her head and push her to take more of your cock.<</narrate>>
<<say "mc">>Oh, shit.<</say>>
<<narrate>>She gasps for air briefly before you push her back down the entire length of your dick, holding her there for a good few moments.<</narrate>>
<<say "mc">>That's it, take it all, take my cock!<</say>>
<<narrate>>You release her again, giving her only a small respite before you push firmly and start fucking her throat.<</narrate>>
<<say "mc">>Fuck, god fuck!<</say>>
<<narrate>>As the orgasm takes control, you release your grip, and she takes control back, sucking every last drop of cum out of your dick.<</narrate>>
<<narrate "mc">>You fall back on the footstool, spent.<</narrate>>
<<say "mc">>Fuck me, that was a good movie.<</say>>
<<say "cassie">><i>Just</i> the movie, dear?<</say>>
<<if $cassie.oral == 1>>
<<think "mc">>The way things are going, I think it's time to take it to the next level.<</think>>
<</if>>
<<narrate>>The two of you snuggle for a few minutes while laughing and giggling before you both head to your rooms to clean up.<</narrate>>
<<button "Continue" housestuff>>
<<unlock 'cassie' 'pornomovie'>>
<<set $location = "bedrooms">>
<<if $cassie.oral >= 2 && $cassie.lustlvl == 2>>
<<set $cassie.lustlvl = 3>>
<</if>>
<<lust 'cassie' 4>>
<<like 'cassie' 2>>
<<time 1>>
<</button>>
<<case "brunch">>
<<block "cassie/office01.jpg">>
<<say "mc">>Fancy a bite to eat?<</say>>
<<say "cassie">>Afraid I'm not hungry, dear.<</say>>
<<narrate>>She notices your dejected look.<</narrate>>
<<think "cassie">>He's trying to do something romantic, I really should reward him...<</think>>
<<say "cassie">>But you know... if you're hungry, I might have a snack for you.<</say>>
<<narrate>>She stands up, shimmies her panties from under her skirt and flings them at your face.<</narrate>>
<</block>>
<<say "cassie">>Hungry?<</say>>
<<narrate>>She sits in front of you on the desk and opens her legs, inviting you forward.<</narrate>>
<<say "cassie">>Bon appétit.<</say>>
<<button "Continue" cassiesex>>
<<temp "brunch02">>
<</button>>
<<case "brunch02">>
<<vid "cassie/office01.mp4">>
<<narrate>>You get on your knees and rapaciously start lapping at her clit.<</narrate>>
<<say "cassie">>Ohhh, mhhhhm. That's good.<</say>>
<<narrate>>Encouraged, you move on, massaging her lips with your tongue as her moans get ever more frequent.<</narrate>>
<<say "cassie">>Yes, that's it. Keep going. Yes.<</say>>
<<narrate>>She grabs your head and starts pushing you closer to her pussy. You jam your tongue inside as she falls back on to the desk with a clout.<</narrate>>
<<say "cassie">>Fuck yes, oh my god!<</say>>
<<narrate>>As the orgasm consumes her, you continue your meal, her desk now a wet mess as a mix of her juices and your saliva ooze down.<</narrate>>
<<narrate>>Regaining her senses, she moves back around to the other side of the desk... but doesn't bother putting her panties back on.<</narrate>>
<<say "cassie">>Now that was a brunch!<</say>>
<<if $cassie.oral == 1>>
<<think "mc">>The way things are going, I think it's time to take it to the next level.<</think>>
<</if>>
<<say "mc">>If only all my meals were so tasty.<</say>>
<<narrate>>The two of you spend some time together chatting and exchanging bad jokes before you leave her to her work.<</narrate>>
<<button "Continue" housestuff>>
<<unlock 'cassie' 'brunch'>>
<<if $cassie.oral >= 2 && $cassie.lustlvl == 2>>
<<set $cassie.lustlvl = 3>>
<</if>>
<<lust 'cassie' 3>>
<<like 'cassie' 3>>
<<time 1>>
<</button>>
<<case "porno">>
<<vid "cassie/porn01.mp4">>
<<think "mc">>Holy shit, I wasn't expecting $cassie.name!<</think>>
<<narrate>>You watch for a good while as she continues to pleasure herself.<</narrate>>
<<say "cassie">>I know you're there, dear.<</say>>
<<think "mc">>Well, shit. How do I get out of this one?<</think>>
<<narrate>>She continues to pleasure herself as you walk into the room.<</narrate>>
<<say "cassie">>You've been real good to me lately; I've never felt so special. Why don't you give me a hand?<</say>>
<<think "mc">>Fuck, yes.<</think>>
<<button "Continue" cassiesex>>
<<temp "porno02">>
<</button>>
<<case "porno02">>
<<vid "cassie/porn02.mp4">>
<<narrate>>You quickly take your position at the foot of the sofa.<</narrate>>
<<say "cassie">>Mhhhmm<</say>>
<<narrate>>She moans as you gently stroke her lips.<</narrate>>
<<say "cassie">>Yeah... mhmmm.<</say>>
<<narrate>>You eagerly insert your thumb and explore the inside of her vagina.<</narrate>>
<<say "cassie">>God yes!<</say>>
<<narrate>>Her body jumps back in startled joy each time the webbing between your thumb and finger caresses her clit.<</narrate>>
<<say "mc">>Say my name.<</say>>
<<narrate>>She continues moaning as she tries to push herself through the sofa, her eyes closed tightly she lets out a guttural moan.<</narrate>>
<<say "cassie">>Yes, $name! God, fuck.<</say>>
<<narrate>>She lies on the couch, out of breath.<</narrate>>
<<say "cassie">>That was glorious. Thank you dear, I really needed that.<</say>>
<<narrate>>She falls back on the sofa and almost immediately falls asleep.<</narrate>>
<<think "mc">>I just bear it a bit longer, she'll be addicted to my cock soon enough.<</think>>
<<button "Continue" househub>>
<<unlock "cassie" "pornopeep">>
<<if $replay == false>>
<<set $cassie.lustlvl = 2>>
<<lust "cassie" 3>>
<<like "cassie" 3>>
<<event "cassie" "porno">>
<<set $cassie.oral = 0>>
<<time 1>>
<</if>>
<</button>>
<<case "postgateway">>
<<narrate>>You barely say anything to each other on the drive back, but she frequently steals glances at you.<br>Once you arrive, you saunter back into the hotel, thinking you've lost your chance.<br>You both take a seat and just as you're about to start talking about the gateway, $cassie.name speaks up.<</narrate>>
<<say "cassie">>You have no idea how hard it was not to pull up and jump you on the ride home.<</say>>
<<say "mc">>Believe me, it was mutual.<</say>>
<<say "cassie">>I wanted to be sure it wasn't just the influence of the gateway first. I'm still not entirely certain, but what I do know is I can't hold it any longer.<</say>>
<<narrate>>She crawls across the chair, bridging the gap between the two of you.<</narrate>>
<<say "cassie">>I need it. Let me taste your cock.<</say>>
<<narrate>>She tugs at your trousers as if possessed, feverishly pulling them down to reveal your hard cock.<</narrate>>
<<button "Continue" cassiesex>>
<<temp postgateway01>>
<</button>>
<<case "postgateway01">>
<<narrate>>The lust in her eyes grows as she greedily tries to swallow your cock.<</narrate>>
<<vid "cassie/gateway01.mp4">>
<<say "mc">>Fucking hell!<</say>>
<<narrate>>Unable to control your own desire either, you grab the back of her head and start thrusting your hips upwards.<</narrate>>
<<say "mc">>Yes, show me just how much you crave my cock. Show me just how much you can take.<</say>>
<<narrate>>She continues massaging your cock with her tongue as you furiously push harder and harder.<</narrate>>
<<say "mc">>God yes!<</say>>
<<narrate>>She retreats for a moment.<</narrate>>
<<say "cassie">>There's nobody else here. I want you to make me scream.<</say>>
<<narrate>>She strips down with such speed and force that she rips her blouse as she throws it to the floor.<</narrate>>
<<say "cassie">>Take me!<</say>>
<<button "Continue" cassiesex>>
<<temp postgateway02>>
<</button>>
<<case "postgateway02">>
<<vid "cassie/gateway02.mp4">>
<<set _u = $name.toUpperCase()>>
<<say "cassie">>Yes, yes, yes! That's it, make my pussy yours!<</say>>
<<narrate>>You grab her arms and thrust as she moans in delight.<</narrate>>
<<say "mc">>Scream my name, let the world know who your pussy belongs to<</say>>
<<say "cassie">>Oh, god, this cock. _u! YES!<</say>>
<<button "Continue" cassiesex>>
<<temp postgateway03>>
<</button>>
<<case "postgateway03">>
<<vid "cassie/gateway03.mp4">>
<<narrate>>You pull her about as you fall on the chair and pull her on top of you.<</narrate>>
<<say "mc">>Ride me, show me just how much you want it!<</say>>
<<narrate>>You grab her ass and start thrusting in sync as she bounces up and down on your dick.<</narrate>>
<<say "cassie">>Yes, just like that, just like that, fuuuck, yes.<</say>>
<<button "Continue" cassiesex>>
<<temp postgateway04>>
<</button>>
<<case "postgateway04">>
<<narrate>>She stands up for a moment, throws her bra over your head, then lowers herself back down on to your cock.<</narrate>>
<<vid "cassie/gateway04.mp4">>
<<say "cassie">>Tell me you love it. Tell me just how good my pussy feels!<</say>>
<<narrate>>You grab her waist and start forcing her down on your cock harder and harder.<</narrate>>
<<say "mc">>Fuck, god yes.<</say>>
<<say "cassie">>God fuck. I want... YES! I want to look you... FUUUUCK! ...in the eyes as you pound me.<</say>>
<<button "Continue" cassiesex>>
<<temp postgateway05>>
<</button>>
<<case "postgateway05">>
<<set _u = $name.toUpperCase()>>
<<narrate>>Still holding her waist you bring yourself up to stand then casually throw her back down on the chair.<</narrate>>
<<vid "cassie/gateway05.mp4">>
<<say "mc">>That pussy belongs to me now.<</say>>
<<narrate>>You speed up, getting faster and harder with each thrust.<</narrate>>
<<say "cassie">>Just like that, just like that. Don't stop, don't stop!<</say>>
<<narrate>>Her entire body begins to quake, she throws her head back into the cushion as if trying to force her way through and holds her eyes tightly shut as she lets out an almighty squeal of pleasure.<</narrate>>
<<say "cassie">>Oh god, fuck YES! _u! YES, MY FUCK YES!<</say>>
<<narrate>>Her cries only fuel you on as you start to feel your climax approaching.<</narrate>>
<<narrate>>You grab her head from behind and hold it close to your cock as you finish over her face, wildly spraying your cum all over.<</narrate>>
<<vid "cassie/gatewaycum.mp4">>
<<narrate>>You fall back, exhausted, both out of breath, you lay there basking in the euphoria for a few minutes until she eventually starts to shift.<</narrate>>
<<say "cassie">>That was intense. Perhaps the best sex I've ever had.<</say>>
<<say "mc">>There's plenty more where that came from.<</say>>
<<narrate>>For a moment, you just stare into each other's eyes until she eventually gets up.<</narrate>>
<<say "cassie">>As amazing as that was, I do feel we ought to discuss the events of today. Go freshen up, then we'll meet in the office.<</say>>
<<narrate>>You nod.<</narrate>>
<<button "Continue" postgatewayvisit>>
<<temp "alt">>
<<lust "cassie" 4>>
<<like "cassie" 2>>
<<unlock "cassie" 'gatewaybj'>>
<</button>>
<<case "workoutoral">>
<<vid "cassie/workout00.mp4">>
<<narrate>>She bounces on the trampoline as you rub your fingers roughly over her pussy.<</narrate>>
<<say "cassie">>Mhhhhm, yes. Go on dear.<</say>>
<<narrate>>You greedily bury your face in her pussy, letting your tongue scurry across her juicy lips.<</narrate>>
<<say "cassie">>Oh-god-oh-fuck-oh-yes!<</say>>
<<narrate>>She screams out in pleasure, brings her face to the trampoline and grips so hard her knuckles turn white.<</narrate>>
<<say "cassie">>God damn!<</say>>
<<narrate>>After a moment's recovery, she rolls off the trampoline and shuffles over to you on her knees.<</narrate>>
<<say "cassie">>Now that performance deserves a reward.<</say>>
<<button "Continue" cassiesex>>
<<temp "workoutoral01">>
<</button>>
<<case "workoutoral01">>
<<vid "cassie/workout01.mp4">>
<<narrate>>She cups your balls with one hand and strokes your shaft with the other, all while enthusiastically trying to swallow your bellend.<</narrate>>
<<say "mc">>Fuck yes. Suck it!<</say>>
<<narrate>>She masterfully continues to massage your glans with her tongue while tickling your balls.<</narrate>>
<<say "mc">>Ummmh. Fuck.<</say>>
<<narrate>>You moan as she starts taking your cock deeper into her mouth. The moist sensation paired with her masterful technique quickly bringing your end.<</narrate>>
<<say "mc">>$cassie.name, fuuuck!<</say>>
<<center "cassie/workoutcum01.jpg">>
<<narrate>>She takes the full length of your cock in her mouth as you unload down her throat.<</narrate>>
<<say "mc">>Fuck me, that was good.<</say>>
<<if $cassie.oral == 1>>
<<think "mc">>The way things are going, I think it's time to take it to the next level.<</think>>
<</if>>
<<narrate>>She gives you a grin, caresses your cheek and starts heading to toward the showers.<</narrate>>
<<say "cassie">>Well, we certainly worked up a sweat.<</say>>
<<if $tempvar3 == "krissy">>
<<krissyreply>>
<<elseif $sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Gym">>
<<think "mc">>I wasn't paying attention to anyone other than $cassie.name so I'm not sure how long $sophia.name was watching.<</think>>
<</if>>
<<if $tempvar3 == "sophiawatch">>
<<think "mc">>Given the thumbs up from $sophia.refer pretty sure she saw the whole thing.<</think>>
<</if>>
<<button "Continue" househub>>
<<unlock 'cassie' 'gym'>>
<<if ($sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Gym") || $tempvar3 == "sophiawatch">>
<<set $sophia.events.watched++>>
<<corrupt "sophia" 2>>
<<lust "sophia" 3>>
<<set $tempvar3 = "">>
<</if>>
<<if $cassie.events.gym == undefined>>
<<taskdone 'gym'>>
<<if $cassie.oral >= 2 && $cassie.lustlvl == 2>>
<<set $cassie.lustlvl = 3>>
<</if>>
<<if $gym.level == 0>>
<<set $gym.level = 1>>
<<else>>
<<set $gym.length++>>
<</if>>
<<event 'cassie' 'gym'>>
<</if>>
<<event 'mc' 'gym'>>
<<lust 'cassie' 4>>
<<like 'cassie' 2>>
<<if $tempvar3 == "krissy">>
<<lust "krissy" 4>>
<<corrupt "krissy" 5>>
<<set $tempvar3 = "">>
<<set $krissy.relief = 3>>
<<run overrideSchedule('krissy', 0, 24, 'bedrooms')>>
<</if>>
<<time 1.5>>
<</button>>
<<case "workout">>
<<vid "cassie/workout02.mp4">>
<<narrate>>You keep pushing, holding her waist trying with each thrust to get deeper and harder. The sounds of the trampoline creaking as you thrust only adding to the experience.<</narrate>>
<<say "mc">>You like that, slut?<</say>>
<<say "cassie">>Christ, I love it. Harder. Keep going. Treat me like your dirty whore.<</say>>
<<narrate>>This side to $cassie.name is completely a surprise to you. You had no idea the usually soft and gentle demeanor had a darker side. The contrast of her personality pushes you further, your speed up desperately trying to find her limit.<</narrate>>
<<say "cassie">>Oh... Yes... this is the... BEST cock.<</say>>
<<narrate>>Barely able to form coherent sentences due to her moaning she continues to goad you into pushing harder and harder. You don't have much left in you, but in a final effort to bring her over the edge you grab on to her waist more tightly and thrust so hard the clap of her cheeks bounces off the walls of the gym.<</narrate>>
<<say "cassie">>Yes, YES! That's it.... use me like– Oooaa Yes!! Like a toy.<</say>>
<<narrate>>Her body shudders as her pussy constricts around you and she starts banging her hand against the bar.<</narrate>>
<<say "cassie">>Yes, oh YES that's it!!<</say>>
<<narrate>>She collapses on to the trampoline, extremely out of breath while you're still holding her waist. Close to the edge yourself you keep fucking, but with what little strength she has left she turns around. Still out of breath, she speaks up.<</narrate>>
<<say "cassie">>My mouth... I want to... to taste your climax.<</say>>
<<narrate>>She grabs your dick and forces it into her mouth. She guides you hand to the back of her head then starts pushing her head down the length of your shaft. You push back, your hand on the back of her head you start violently throat fucking her. Already nearing your climax you finish only moments later.<</narrate>>
<<center "cassie/workoutcum.jpg">>
<<say "mc">>I had no idea you were in to stuff like that.<</say>>
<<say "cassie">>There's a lot you don't know about me dear, but perhaps we can find out more about each other if we share ourselves like this again in the future.<</say>>
<<say "mc">>I'm already counting the seconds.<</say>>
<<narrate>>She chuckles, dramatically picks up her shorts, whips them over her shoulder and blows you a kiss before walking toward the showers.<</narrate>>
<<button "Continue" househub>>
<<event 'cassie' 'gym'>>
<<unlock 'cassie' 'gym'>>
<<if $gym.level == 0>>
<<set $gym.level = 1>>
<</if>>
<<taskdone 'gym'>>
<<lust 'cassie' 4>>
<<like 'cassie' 2>>
<<time 1.5>>
<</button>>
<</switch>>
<</nobr>><<tracker "cassie">>
<<if $computer == undefined>>
<<step "Progress the story." "This will trigger automatically if you continue to follow the story tasks.">>
<<elseif $cassie.lust < 10>>
<<step "She doesn't desire you enough." "10 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Make her breakfast in bed, dine together, give her flowers or watch a movie together.">>
<<elseif $cassie.events.comeon == undefined>>
<<step "Proposition her" "Speak to her to see the option.">>
<<elseif $cassie.kissed < 3>>
<<step "Romance her $cassie.kissed/3" "How?<ul>
<li>Ask if she wants to watch a movie together and chose romance when in the lounge.</li>
<li>Between 17:00 & 20:00 invite her to join you for a meal.</li>
<li>Pick flowers for her from the garden.</li>
<li>Prepare breakfast in the kitchen before 09:00 and deliver it to her room.</li>
</ul>">>
<<elseif !$girlsmet.includes('lexi')>>
<<step "Progress the story." "This will trigger automatically given time.">>
<<elseif $cassie.events.leader == undefined>>
<<step "Query leadership." "Talk to her about leadership">>
<<elseif $cassie.events.leader == 1>>
<<step "Wait for her." "She'll text you.">>
<<elseif $lexi.events.lexitruth == undefined && $tasks.lexitruth == undefined>>
<<step "Talk to her about $lexi.name." `"Discuss "+$lexi.name+" with her."`>>
<<elseif $cassie.lust < 30>>
<<step "She doesn't desire you enough." "30 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Make her breakfast in bed, dine together, give her flowers or watch a movie together.">>
<<elseif $cassie.lustlvl == 1>>
<<step "Blue Movie" `"Catch her watching porn in the lounge. Can only trigger when she's alone, or when "+$armani.name+" is the <i>only</i> other person in the lounge."`>>
<<elseif $cassie.events.sisterrivalry == undefined>>
<<step "Watch TV with the sisters." `"Watch TV when "+$cassie.name+" & "+$armani.name+" are both in the room"`>>
<<elseif $cassie.like < 20>>
<<step "She doesn't like you enough." "20 needed. Some ways to increase like.<br>Discuss available topics.<br>Make small talk.<br>Watch TV with her.">>
<<elseif $cassie.events.sisterrivalry == 1>>
<<step "Ask about the fight." `"Talk to her about the argument she had with "+$armani.name+"."`>>
<<elseif $cassie.lust < 50>>
<<step "She doesn't desire you enough." "50 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Make her breakfast in bed, dine together, give her flowers or watch a movie together.">>
<<elseif $cassie.lustlvl == 2>>
<<step "Romance is dead $cassie.oral/2" "Oral sex.<ul>
<li>Have brunch together while she's working in the office (10:00+)</li>
<li>Watch porn together in the lounge</li>
<li>Workout together in the gym</li>">>
<<elseif $cassie.like < 50>>
<<step "She doesn't like you enough." "50 needed. Some ways to increase like.<br>Discuss available topics.<br>Make small talk.<br>Watch TV with her.">>
<<elseif $cassie.lust < 70>>
<<step "She doesn't desire you enough." "70 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Make her breakfast in bed, dine together, give her flowers or watch a movie together.">>
<<elseif $cassie.events.relationship == undefined>>
<<step "State of affairs" "Ask her about the state of your relationship then relax at night.">>
<<else>>
<<movielist cassie>>
<</if>>
<</tracker>><<if $eva.events.neintro == undefined>>
<<event "eva" "neintro">>
<<left2 "eva/office01.jpg">>
<<if $mc.events.eastresolved == "enforcer">>
<<say "eva">>The conqueror returns. Have you come for your tithe?<</say>>
<<say "mc">>Please, $eva.name it's not like that.<</say>>
<<say "eva">>I know... I know... just having a bit of fun with you. Though let's be honest, there's always going to be that fear in the back of people's minds.<</say>>
<<say "mc">>Then I need to overcome it. My actions weren't taken lightly and if my companions weren't in danger it would have never gone that far.<</say>>
<<else>>
<<say "eva">>The handsome patron returns!<</say>>
<<say "mc">>Hey $eva.name, good to see you again.<</say>>
<<say "eva">>I could barely believe the stuff your team were doing outside City Hall. It's quite the marvel.<</say>>
<<say "mc">>That it is, I can't say I understand how it works, though. Or why a device is needed to travel within the same world at all.<</say>>
<</if>>
<<say "eva">>So, what brings you to me today?<</say>>
<<say "mc">>Now we have a reliable communications system, and an easy way for your people to access the Gateway, I wanted to discuss how we move forward together.<</say>>
<<say "eva">>Shame, I was hoping you'd come to ravish me!<</say>>
<<say "mc">>Sorry?<</say>>
<<say "eva">>You will be. Anyway, to be truthful, I think my time leading this city is coming to a close.<</say>>
<<say "mc">>Oh?<</say>>
<<say "eva">>Since we stopped the invasion, announced our intention to work together with you and released news of Gerald... well, mine and Howard's popularity has plummeted. They've lost faith in us and people are in a state of confusion.<</say>>
<<say "mc">>But that was all Gerald...<</say>>
<<say "eva">>No, it wasn't. He may have been the driving force, but he alone could not have made that call. Unfortunately, as we've also thrown into question the stories of the founder and $voice.name, the public feeling is that if we lied before, what's changed now. And if we weren't lying, how can we be suitable to hold office when we're so easily manipulated.<</say>>
<<say "mc">>Yeah... the public isn't overly forgiving.<</say>>
<<say "eva">>As much it irks at me, I too understand their words. Whether through manipulation, stupidity, or ambition, all of us allowed things to progress as they have.<</say>>
<<say "mc">>So what happens now?<</say>>
<<say "eva">>Nothing much at this stage. Things will change, and I suspect $va.name will be at the helm of that. But first, things need to cool down.<</say>>
<<say "mc">>You think she planned this?<</say>>
<<say "eva">>I don't know, but she's definitely capitalizing on it. Regardless, my advice is to spread your intentions to the populace directly, rather than concentrating on the cabinet.<</say>>
<<say "mc">>Like I'm a campaigning politician?<</say>>
<<say "eva">>Ha! Maybe! But, I think people just need to know you. Make yourself known, hold meetings where people can voice concerns. Whatever. Just make yourself human in their eyes rather than some evil being. You've already made some connections here, see if you can't build on those.<</say>>
<<say "mc">>Okay, thanks for the advice, $eva.name.<</say>>
<<event "eva" "step">>
<<if checkUnlocks('movie', 'evameet', 'eva') == false>>
<<left2 "east/eva03.jpg">>
<<say "eva">>Maybe you and I should... form a connection?<</say>>
<<say "mc">>I think we could certainly build some trust together...<</say>>
<<say "eva">>On the table. Trousers off.<</say>>
<<set $tempvar2 == "ne">>
<<cont "eastsex" "evameet">>
<<else>>
<<say "eva">>Feel free to come see me again, of course. I'm sure you and I have some... very personal matters to discuss.<</say>>
<<narrate>>She gives you a wink.<</narrate>>
<<cont "nestuff" "" 1>>
<</if>>
<<elseif $tasks.festival4 != undefined && $va.events.music != undefined && $eva.events.fest == undefined>>
<<narrate>>As you enter her office, she looks cross, her finger firmly on some sort of report.<</narrate>>
<<center "eva/meet01.jpg">>
<<say eva>>You're holding a festival?<</say>>
<<think mc>>Why would that piss her off?<</think>>
<<say mc>>Yeah...<</say>>
<<say eva>>And you told $va.name before me?!<</say>>
<<think mc>>Ah...<</think>>
<<say mc>>I was told she had some pull with the local musicians and figured that might be useful.<</say>>
<<narrate>>She throws her hands up in the air.<</narrate>>
<<say eva>>It's not about the music, it's about making money, and that's where I'm the queen!<</say>>
<<say mc>>Uhh...<</say>>
<<say eva>>So, how much are you charging for vendor stalls, are you renting them electricity separately, who have you booked for attractions, how many...<</say>>
<<narrate>>You blank as she continues her questions.<</narrate>>
<<say mc>>Sorry, I think $maddy.name is handling all that.<</say>>
<<narrate>>The throws hers hands up agian.<</narrate>>
<<say eva>>You're letting someone else do my job?!<</say>>
<<say mc>>I ummm... she's a merchant I've been working with closely for some time now...<</say>>
<<say eva>>Listen, I might not have the network of connections I used to, but I've been working on that since the gateway become available again, and I've got some trusted contacts here in New Eden that would love the opportunity to tout to more offworlders.<</say>>
<<say mc>>Right... I'd be more than happy to have your help.<</say>>
<<think mc>>Wait... I know...<</think>>
<<say mc>>It's literally what I was coming here to ask for.<</say>>
<<narrate>>She grins like a Cheshire cat when you say this.<</narrate>>
<<say eva>>Great, you knew exactly who to come to, huh?<</say>>
<<narrate>>You nod.<</narrate>>
<<say eva>>Perfect, leave it with me, I'll make sure we get the best vendors, and the most money!<</say>>
<<say mc>>Of course...<</say>>
<<think mc>>Kinda sidetracked me there, but I should come back later if there's something else I want to discuss, as not to seem suspicious.<</think>>
<<notice>>$eva.name will now aid $maddy.name sourcing vendors for the festival. This will increase your income and open additional events.<</notice>>
<<event "eva" "fest">>
<<set $festival.stats.profit += 0.1>>
<<cont "nestuff" "" 1>>
<<else>>
<<switch $tempvar>>
<<case "festival">>
<<left2 "eva/office01.jpg">>
<<say mc>>So, I'm running a music festival and I wondered if you'd be able to help at all.<</say>>
<<say eva>>Yes, I heard through the grapevine. I'm glad you came to me. I can definitely help.<</say>>
<<say mc>>Sounds great.<</say>>
<<say eva>>Obviously, I'll take my cut. But I can help source vendors and the like for the festival. Get some merchandise produced here in New Eden too.<</say>>
<<say mc>>Sounds great, and of course I wouldn't expect you to do it for free.<</say>>
<<say eva>>My network of connections has been growing since regaining access to the gateway, I've already got a few people in mind.<</say>>
<<say mc>>I knew I could rely on you.<</say>>
<<say eva>>Of course... and during the festival, you can show me your appreciation backstage...<</say>>
<<narrate>>You grin.<</narrate>>
<<say mc>>Oh, most definitely.<</say>>
<<notice>>$eva.name will now aid $maddy.name sourcing vendors for the festival. This will increase your income and open additional events.<</notice>>
<<event "eva" "fest">>
<<set $festival.stats.profit += 0.1>>
<<cont "nestuff" "" 1>>
<<case "carlos">>
<<say mc>>I was talking to Carlos at Bob'll Fix it.<</say>>
<<say eva>>Oh? He's not usually much of a talker...<</say>>
<<say mc>>It was about his town planning.<</say>>
<<say eva>>Ha! Then you probably couldn't shut him up. Don't worry, he's aware those plans are no longer required. I think I've got a copy around here somewhere...<</say>>
<<narrate>>She starts rummaging through her paperwork.<</narrate>>
<<say mc>>I've seen them. But... I was thinking, maybe he could help out with $hubname?<</say>>
<<narrate>>She suddenly turns to you, a fierce face.<</narrate>>
<<center "eva/meet01.jpg">>
<<say eva>>Are you mad?!<</say>>
<<say mc>>I just thought he could help...<</say>>
<<say eva>>$krissy.name would be furious if you asked him to help. If you need that kind of help with the hub, you should ask her.<</say>>
<<say mc>>You make it sound like they can't both help...<</say>>
<<say eva>>Absolutely not. People like them can't work together. They're too stubborn, and they'd be unable to compromise with one another. Right now, New Eden has lost some of its residents as some left when the gateway become accessible, but over time, thanks to said gateway, I expect it to increase beyond its current limits. There'll be plenty of work for Carlos then.<</say>>
<<say mc>>Hmm... right okay.<</say>>
<<say eva>>That said, if you have any smaller projects, or anything detail-orientated, I'm sure he and his crew would welcome something different to tackle. Just... if you need anything like town-planning, go to $krissy.name!<</say>>
<<say mc>>Hmm, okay, if I do have any smaller projects he can help with I'll be sure to contact him.<</say>>
<<say eva>>Please do. $krissy.name is less interested in the smaller details, whereas Carlos has more love for architecture and design. They truly would be the perfect duo if they could work together, but both of them think too big and wouldn't be able to focus on just a single part of the project.<</say>>
<<narrate>>She sighs.<</narrate>>
<<say eva>>Why are such gifted people always the most difficult to deal with?<</say>>
<<narrate>>You chuckle.<</narrate>>
<<if $tasks.festival4 != undefined && $ember.events.stage != undefined>>
<<think mc>>Maybe he could help out with the festival stage...<</think>>
<</if>>
<<set $bob = 2>>
<<cont "nestuff" "" 1>>
<<case "rep">>
<<left2 "eva/office01.jpg">>
<<say "mc">>I was hoping you might be able to give me some further advice on how best to engage with the public favorably.<</say>>
<<say "eva">>New Eden is a place of fetishists and open love. Use that to your advantage.<</say>>
<<say "mc">>Are you politely telling me to fuck everyone?<</say>>
<<say "eva">>Haha! Maybe not everyone, but why not? Also, <<if $girlsmet.includes('tour')>>you've met $tour.name, correct? She may be able to offer some assistance too.<<else>> one of my former aids at City Hall may be able to offer some assistance...<</if>> That is, if you can get past her frosty exterior.<</say>>
<<say "mc">>Okay, I'll give her a go.<</say>>
<<say "eva">>Also look to your own companions, you alone can't possibly reach everyone.<</say>>
<<say "mc">>Good call, thanks $eva.name.<</say>>
<<event "tour" "eva">>
<<taskdone "eastfriends0">>
<<cont "nestuff" "" 1>>
<<default>>
<<left2 "eva/office01.jpg">>
<<say "eva">>To what do I owe this unexpected delight?<</say>>
<div id="replace">
<<choices>>
<<if $buildings.neoffice == undefined>>
<<link "Reputation Help" eva>>
<<temp "rep">>
<</link>><br>
<</if>>
<<if $tasks.festival4 != undefined && $eva.events.fest == undefined>>
<<link "Festival" eva>>
<<temp "festival">>
<</link>><br>
<</if>>
<<if $bob == 1 && $hubname != undefined>>
<<link "Carlos" eva>>
<<temp "carlos">>
<</link>><br>
<</if>>
<<link "Never mind" nestuff>>
<</link>>
<</choices>>
</div>
<</switch>>
<<taskdone "stacyreintro">>
<</if>><<if $tour.events.meets == undefined>>
<<temp "first">>
<</if>>
<<if $tasks.gabskira != undefined>>
<<temp "kira2">>
<</if>>
<<switch $tempvar>>
<<case "kira">>
<<left2 "anna/what01.jpg">>
<<narrate>>As you head downstairs, $anna.name gives you a fierce look.<</narrate>>
<<say "anna">>You know I'm not your fucking secretary, right?<</say>>
<<say "mc">>What are you talking about?<</say>>
<<say "anna">>I was hanging near that gate thingy, and some bitch asked me to give you a message saying she had some info for you or something. I don't know, I wasn't paying attention. I was just shocked by the audacity!<</say>>
<<narrate>>You take a deep breath.<</narrate>>
<<say "mc">>You could have just asked her to speak to someone else.<</say>>
<<say "anna">>The cow didn't give me chance. So now I've played your little fucking messenger, tell her not to fucking talk to me again!<</say>>
<<think "mc">>She really doesn't change...<</think>>
<<narrate>>You take a moment to contain your anger.<</narrate>>
<<say "mc">>Did you catch her name?<</say>>
<<say "anna">>$tour.name or some shit.<</say>>
<<say "mc">>Thank you.<</say>>
<<say "anna">>Whatever, next time I'm just walking away.<</say>>
<<think "mc">>Honestly, I think I may have preferred that this time. I'd better go see what she wants.<</think>>
<<choices>>
<<link "Go Immediately" gabs>>
<<temp "kira2">>
<</link>><br>
<<link "Later" homehub>>
<<task "gabskira">>
<</link>>
<</choices>>
<<case "kira2">>
<<left2 "east/tour/off02.jpg">>
<<say "tour">>Ah, good. You're here! You know I said I'd get back to you regarding a potential ambassador to your hub?<</say>>
<<say "mc">>Yeah...<</say>>
<<say "tour">>I found someone. She's well-respected and has already met you.<</say>>
<<say "mc">>It's you, isn't it?<</say>>
<<say "tour">>Ha! No. You remember meeting $sarge.name?<</say>>
<<say "mc">>But isn't she in charge of the militia or whatever?<</say>>
<<say "tour">>She quit after recent events. She's looking for a job, she's disciplined, admired by many, and she also mentioned she can teach you a thing or two in the gym.<</say>>
<<say "mc">>Uhh... right... is $eva.name okay with this?<</say>>
<<say "tour">>She is. She understands it needs to be someone the public still trust.<</say>>
<<say "mc">>Well, I think it's only right you guys choose who it is. I'm sure I'll get along with anyone.<</say>>
<<think "mc">>I'm just glad it isn't a man.<</think>>
<<say "tour">>Great, I'll get something setup.<</say>>
<<say "mc">>Need me to get a building or office ready?<</say>>
<<say "tour">>There's a fancy-looking building near what's become the surgery we'd like to use. It just needs a clean.<</say>>
<<say "mc">>Already done your homework?<</say>>
<<say "tour">>Yes, didn't your friend give you those details?<</say>>
<<say "mc">>No...<</say>>
<<say "tour">>Well, if you're okay with us using that building, I'll have it prepared overnight. Once there she'll be able to handle things that side of the gate, and I can handle anything you need on this side of the gate.<</say>>
<<say "mc">>How come you will be sending a single ambassador whereas you're happy for me to send multiple of my companions and not even necessarily the same ones each time?<</say>>
<<say "tour">>Different functions. Yours are here to make nice and improve the public's opinion of you. In some ways, the more of your companions they get to meet, the less and less imposing you will seem to them. Our ambassador however, is there to manage our interests on your hub.<</say>>
<<say "mc">>Right...<</say>>
<<say "tour">>We really can't keep calling it the hub either. What's its actual name? None of the briefings mentioned it.<</say>>
<<think "mc">>Huh... I never really thought about it, but I guess with two locations on the hub, it makes sense.<</think>>
<<say "mc">>Let's call it <<textbox "$hubname" Fornix>>.<</say>>
<<say "tour">>Understood. $sarge.name will be with you tomorrow.<</say>>
<<notice>>You'll be able to access the New Eden Embassy in town from tomorrow.<</notice>>
<<button "Continue" neweden>>
<<taskdone "gabskira">>
<<set $tour.events.emb = 1>>
<<set $tour.events.meets = 5>>
<<time 1>>
<</button>>
<<case "qa">>
<<if $neprogress < 100>>
<<left2 "east/tour/off03.jpg">>
<<say "tour">>We're not ready for that yet. You need to grow your reputation first.<</say>>
<<cont "nestuff">>
<<elseif $nerels == "Respected">>
<<temp "">>
<<left2 "east/tour/off02.jpg">>
<<say "tour">>Unless you're looking to run for leadership of the city, there's no further benefit to pushing public opinion any further.<</say>>
<<cont "gabs">>
<<else>>
<<left2 "east/tour/off02.jpg">>
<<say "tour">>Ha, rather you than me! These things usually devolve into pettiness and pointlessness.<</say>>
<<say "mc">>But... it was your suggestion.<</say>>
<<say "tour">>Oh, yeah, and it'll very much help with your cause. But, people won't ask what you expect. They'll be a few questions that make sense... and then just a bunch of often nonsense, but how you deal with that will be important to people's perception of you.<</say>>
<<say "mc">>Great... maybe I'm not as prepared as I thought.<</say>>
<<say "tour">>Don't be silly. Come on, let's go.<</say>>
<<say "mc">>Right now?!<</say>>
<<say "tour">>Yup!<</say>>
<<say "mc">>Okay, well, let's get it over with, I guess.<</say>>
<<cont "questiontime" "first">>
<</if>>
<<case "first">>
<<left2 "east/tour/off01.jpg">>
<<say "tour">>$name, what a surprise.<</say>>
<<say "mc">>I was hoping you can help me.<</say>>
<<narrate>>She glances at your crotch.<</narrate>>
<<say "tour">>Oh?<</say>>
<<say "mc">>$eva.name suggested you might be able to help with public opinion.<</say>>
<<say "tour">>Oh.<</say>>
<<narrate>>You can hear the disappointment in her voice.<</narrate>>
<<say "tour">>I guess we could organize some Q&A sessions and allow the general public access to you.<</say>>
<<say "mc">>That would be great!<</say>>
<<say "tour">>But, I might also suggest setting up a permanent office here.<</say>>
<<say "mc">>I can't stay here too long away from—<</say>>
<<say "tour">>For one of your companions. Think of them almost like an ambassador. It's a way for them to work closely with us, shmooze with the big wigs and give the general public a point of reference. It doesn't need to be the same person all the time, in fact variety may even help.<</say>>
<<say "mc">>So I just assign companions to come stay in the office for a few hours?<</say>>
<<say "tour">>Yes, while it won't magically sway people's thoughts overnight, it should help.<</say>>
<<say "mc">>Hmm, thinking on, it was suggested something similar happen at my end too. $eva.name would come over and—<</say>>
<<say "tour">>I would advise against it being $eva.name. Opinions of the her and Howard, the old leadership, are poor at the minute. It may just be seen as her trying to avoid her responsibilities.<</say>>
<<say "mc">>The embassy idea was also before we knew we could travel here so quickly.<</say>>
<<say "tour">>I still suggest you have something there, people are still wary. Having people going back and forth frequently might help show it to be safe. You'll need someone trusted and well-respected for that, though.<</say>>
<<say "mc">>Any suggestions?<</say>>
<<say "tour">>A few... let me get back to you on that. Also, there's a free office right across from me. You're welcome to use it from tomorrow. I'll have someone give it a good clean and make an official announcement later today. I'll also let you know when it's a good time for a Q&A session.<</say>>
<<say "mc">>Wow, thanks $tour.name.<</say>>
<<say "tour">>No problem. See? I'm not normally a bitch!<</say>>
<<notice>>From tomorrow you'll be able to assign workers to the New Eden Office. Having someone work this facility will increase your reputation with the people of New Eden. However, missing two consecutive shifts will decrease public opinion.<</notice>>
<<taskdone "eastfriends1">>
<<button "Continue" nestuff>>
<<event "tour" "meets">>
<</button>>
<<default>>
<<left2 "east/tour/off01.jpg">>
<<say "tour">>Well, if it's not my favorite patron. What do you need?<</say>>
<<choices>>
<<if $tour.events.meets != undefined || $tasks.seegabs != undefined>>
<<link "Q&A" gabs>>
<<temp "qa">>
<</link>><br>
<</if>>
<<link "Never mind" nestuff>>
<</link>>
<</choices>>
<</switch>><<if $location == "home">>
<<set $worklocation = false>>
<</if>>
<<set _img = getImg('katie')>>
<<scene>>
<<if $location != $currentlocations.katie && $location != "firstIntros" && $replay == false>>
<<narrate>>She says nothing as she turns away and walks off.<</narrate>>
<<think "mc">>Wow. She really is a unique personality.<</think>>
<<follow katie>>
<<button "Continue" $return>>
<</button>>
<<elseif $tasks.katiesettle != undefined>>
<<narrate>>You ring the doorbell but don't get any answer.<</narrate>>
<<think "mc">>Probably gaming.<</think>>
<<narrate>>You try the handle, find it unlocked and head inside.<</narrate>>
<<think "mc">>Is she... singing?<</think>>
<<say "katie" "" '(<span style="--i:1">S</span><span style="--i:2">i</span><span style="--i:3">n</span><span style="--i:5">g</span><span style="--i:6">i</span><span style="--i:7">n</span><span style="--i:8">g</span>)' "sing">>This is a tribute...<</say>>
<<narrate>>You follow the sound of her voice to the kitchen.<</narrate>>
<<left2 "katie/clean01.jpg">>
<<narrate>>She's on her hands and knees scrubbing the floor.<</narrate>>
<<think "mc">>Now that's an enjoyable view.<</think>>
<<say "mc">>Hey, $katie.name, sorry the door was open. Just wanted to—<</say>>
<<say "katie" "" '(<span style="--i:1">S</span><span style="--i:2">i</span><span style="--i:3">n</span><span style="--i:5">g</span><span style="--i:6">i</span><span style="--i:7">n</span><span style="--i:8">g</span>)' "sing">>You gotta believe me, and I wish you were there.<</say>>
<<narrate>>You notice she has earphones in. You walk over intending to tap her on the shoulder when she jumps back, startled by your shadow.<</narrate>>
<<say "katie">>The hell are you doing?! How long have you been there?<</say>>
<<say "mc">>Not long, beautiful voice by the way. I didn't mean to startle you, but you weren't answering me.<</say>>
<<left2 "katie/clean02.jpg">>
<<say "katie">>So you just came into my house uninvited?<</say>>
<<say "mc">>I... uhhh... I guess.<</say>>
<<event "katie" "farmups">>
<<if $katie.events.ne == 5>>
<<say "katie">>That gaming system you got me is amazing. It's all I could do to pry myself away from it to clean up.<</say>>
<<say "mc">>Glad you like it.<</say>>
<<narrate>>She puts on a pair of long socks while talking to you. She sees your confusion.<</narrate>>
<<say "katie">>Floor's wet. I didn't want to get soggy socks. Anyway I'm gonna go shower. You can wait here.<</say>>
<<say "mc">>Uh... sure...<</say>>
<<think "mc">>Though maybe a peek wouldn't hurt...<</think>>
<div id="replace">
<<choices>>
<<link "Peek">>
<<replace "#replace">>
<<think "mc">>A quick look can't hurt...<</think>>
<<narrate>>You head upstairs and into her bedroom. She's happily singing again.<</narrate>>
<<block "east/katie02.jpg">>
<<narrate>>You stare at $katie.name as she undresses, hypnotized by the view.<</narrate>>
<<think "mc">>Shit, maybe I can just belt one out here and she won't notice?<</think>>
<<narrate>>You lower your pants and start stroking your cock.<</narrate>>
<<think "mc">>Fuck this is so wrong.<</think>>
<<narrate>>As the last of her clothes fall to the floor she turns on the shower while humming a tune.<</narrate>>
<<think "mc">>God, she's fucking hot.<</think>>
<</block>>
<<narrate>>She turns in your direction, noticing you immediately.<</narrate>>
<<left2 "east/katie03.jpg">>
<<say "katie">>What the actual fuck?<</say>>
<<say "mc">>Shit, fuck. No this isn't...<</say>>
<<say "katie">>Isn't what it looks like? So you weren't perving over me? You're even jerking off. You haven't even fucking stopped!<</say>>
<<narrate>>Her eyes remain on your phallus.<</narrate>>
<<say "mc">>Fuck, I just thought you wanted... and then I saw... and well my instincts took over.<</say>>
<<say "katie">>Your instincts, huh?<</say>>
<<narrate>>Her eyes still trained on your dick, she lets her hands slide free, revealing her full naked form.<</narrate>>
<<say "katie">>Well, I'd be lying if I said I hadn't thought about it. Fuck it, let's take care of that before you take someone's eye out.<</say>>
<<think "mc">>I do not understand this woman... but right now, I don't care.<</think>>
<<narrate>>She charges you into her bedroom, almost throwing you on to the bed.<</narrate>>
<<set $tempvar2 = "ne">>
<<cont "eastsex" "katie01">>
<</replace>>
<</link>><br>
<<link "Wait">>
<<replace "#replace">>
<<narrate>>You wait around for twenty minutes, bored out of your mind.<</narrate>>
<<say "katie">>Oh, I forgot you were here. Did you need something?<</say>>
<<say "mc">>You asked me to wait for you!<</say>>
<<say "katie">>Oh, I did. Right. Yeah, so I'm ready to work the farm for you whenever you like. Providing it doesn't cut into my gaming time, of course.<</say>>
<<say "mc">>Of course.<</say>>
<<think "mc">>I struggle how best to speak with $katie.name. I remember in New Eden she was a bit like this too, her words seem impolite and rude, but I think she just says things very bluntly that it's misconstrued that way. She's not ordering me about as such.<</think>>
<<notice>>
$katie.name will now work for you.<br>
New improvements available for the farm.<br>
<<set $katie.skills.farming = 200>>
<</notice>>
<<button "Continue" townhub>>
<<like "katie" 4>>
<<taskdone "katiesettle">>
<<worker "katie">>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<else>>
<<say "katie">>I'm bored. $name. Bored.<</say>>
<<think "mc">>Is she bothered about my intrusion or not? I don't get her!<</think>>
<<say "katie">>I cleaned this place up relatively quickly, and $moriah.name gave me a new computer, but it's got no games! I didn't even think to bring what I had from home. Who knows if it'd even work on this system. I assumed with the Gateway close, everyone would have loads of them to share.<</say>>
<<say "mc">>I don't think the others are as into games as you.<</say>>
<<say "katie">>Ugh. Well I need some stimulation. When can I get some video games?<</say>>
<<say "mc">>I mean... I know something that might stimulate you.<</say>>
<<say "katie">>Yes, fine. I'll work the farm for you. I've already some ideas on how to improve it, too.<</say>>
<<say "mc">>I'll take it... but I was thinking something a little more... intimate.<</say>>
<<say "katie">>Are you mad? How can I get in the mood without my video games?!<</say>>
<<think "mc">>What?<</think>>
<<say "mc">>I don't think I—<</say>>
<<say "katie">>Ugh. Had I known this place would be so boring I'd probably have stayed in New Eden. Just let me know when the farm needs work. I'll tough it out a bit longer, I guess. Anyway, I'll talk to you later. You can go now.<</say>>
<<say "mc">>Right... yes... ummm... thanks?<</say>>
<<think "mc">>I struggle how best to speak with $katie.name. I remember in New Eden she was a bit like this too, her words seem impolite and rude, but I think she just says things very bluntly that it's misconstrued that way. She's not ordering me about as such. All that aside, maybe I should get her a video game. Though, why doesn't she just get them herself through the Gateway?<</think>>
<<notice>>
$katie.name will now work for you.<br>
New improvements available for the farm.<br>
<<set $katie.skills.farming = 200>>
<</notice>>
<<button "Continue" townhub>>
<<like "katie" 4>>
<<taskdone "katiesettle">>
<<worker "katie">>
<<time 1>>
<</button>>
<</if>>
<<elseif $location == "home" && $katie.events.shower == undefined && checkUnlocks('movie', 'blue', 'katie') == false>>
<<event "katie" "shower">>
<<narrate>>You ring the doorbell but don't get any answer.<</narrate>>
<<think "mc">>Probably gaming... or maybe cleaning like last time.<</think>>
<<narrate>>You try the handle, find it unlocked and head inside.<</narrate>>
<<think "mc">>She's singing again, sounds like it's coming from upstairs.<</think>>
<<say "katie" "" '(<span style="--i:1">S</span><span style="--i:2">i</span><span style="--i:3">n</span><span style="--i:5">g</span><span style="--i:6">i</span><span style="--i:7">n</span><span style="--i:8">g</span>)' "sing">>Spit it out. All you wanna do is drag me down.<</say>>
<<narrate>>You head upstairs.<</narrate>>
<<say "mc">>$katie.name I was wondering—<</say>>
<<narrate>>Her door is wide open. It looks like she's getting ready to shower. You've got quite the view.<</narrate>>
<<left2 "east/katie02.jpg">>
<<narrate>>You stare at $katie.name as she undresses, hypnotized by the view.<</narrate>>
<<think "mc">>Shit, maybe I can just belt one out here and she won't notice?<</think>>
<div id="replace">
<<choices>>
<<link "Jerk off">>
<<replace "#replace">>
<<narrate>>You lower your pants and start stroking your cock.<</narrate>>
<<think "mc">>Fuck this is so wrong.<</think>>
<<narrate>>As the last of her clothes fall to the floor she turns on the shower while humming a tune.<</narrate>>
<<think "mc">>God, she's fucking hot.<</think>>
<<narrate>>She turns in your direction, noticing you immediately.<</narrate>>
<<think "mc">>Shit.<</think>>
<<narrate>>There's a moment where she just stands motionless staring at you before realization dawns and she quickly covers herself up.<</narrate>>
<<left2 "east/katie03.jpg">>
<<say "katie">>What the actual fuck?<</say>>
<<say "mc">>Shit, fuck. No this isn't...<</say>>
<<say "katie">>Isn't what it looks like? So you weren't perving over me? You're even jerking off. You haven't even fucking stopped!<</say>>
<<narrate>>Her eyes remain on your phallus.<</narrate>>
<<say "mc">>Fuck, I just thought you wanted... and then I saw... and well my instincts took over.<</say>>
<<say "katie">>Your instincts, huh?<</say>>
<<narrate>>Her eyes still trained on your dick, she lets her hands slide free, revealing her full naked form.<</narrate>>
<<say "katie">>Well, I'd be lying if I said I hadn't thought about it. Fuck it, let's take care of that before you take someone's eye out.<</say>>
<<think "mc">>I do not understand this woman... but right now, I don't care.<</think>>
<<narrate>>She charges you into her bedroom, almost throwing you on to the bed.<</narrate>>
<<set $tempvar2 = "post">>
<<cont "eastsex" "katie01">>
<</replace>>
<</link>><br>
<<link "Leave">>
<<replace "#replace">>
<<think "mc">>As much as I'd love to, I'm unsure how she'd react if she spotted me... she can be a little unpredictable. I'll come back another time.<</think>>
<<event "katie" "shower">>
<<cont "townhub">>
<</replace>>
<</link>>
<</choices>>
</div>
<<else>>
<<if $items != undefined && $items.vg > 0 && $location == "home">>
<<set _img = "katie/game01.jpg">>
<</if>>
<<left2 _img>>
<<if $items != undefined && $items.vg > 0 && $location == "home">>
<<say "katie">>$name! Let's play something!<</say>>
<<else>>
<<if $location == "farm">>
<<think mc>>Now that's a view I can appreciate.<</think>>
<<say katie>>I know you're checking out my ass.<</say>>
<<narrate>>She continues before you have the chance to respond.<</narrate>>
<</if>>
<<say "katie">>I'm soooo bored, $name!<</say>>
<</if>>
<<choices>>
<<smallflirt "katie">>
<<if $items != undefined && $items.vg > 0 && $location == "home" && checkUnlocks('movie', 'blue', 'katie') == true>>
<<link "Give Video Game" katiesex>>
<<temp "vg">>
<</link>><br>
<</if>>
<<link "Never mind" townhub>><</link>>
<</choices>>
<</if>><<scene>>
<<switch $tempvar>>
<<case "gh01">>
<<set delete $active>>
<<narrate>>She pushes her head down your entire shaft, and just stays there for a moment, her throat trying to swallow massaging you glans. She eventually gasps for air before returning to your cock.<</narrate>>
<<vid "katie/gh02.mp4">>
<<say mc>>Yes, nice and sloppy. I love that fucking sound!<</say>>
<<say katie>>If you want to make some noise... there's much better ways.<</say>>
<<narrate>>She gets on all fours and wiggles her ass at you.<</narrate>>
<<cont "katiesex" "gh02">>
<<case "gh02">>
<<narrate>>You thrust inside her, hungry to make her scream.<</narrate>>
<<vid "katie/gh03.mp4">>
<<say katie>>Oh, yes, that feels so fucking good.<</say>>
<<narrate>>You hold her body and push her down as you thrust harder and harder.<</narrate>>
<<say katie>>Yes, right there, ah~<</say>>
<<say mc>>Louder!<</say>>
<<say katie>>Right there, right there; make me cum. Yes, yes, yes, yes, yes.<</say>>
<<say mc>><b>Louder!</b><</say>>
<<say katie>>Fuck my ass!<</say>>
<<cont "katiesex" "gh03">>
<<case "gh03">>
<<narrate>>She drags you down on to the bed and, gently at first, lowers her ass on to your cock. She moves back and forth slowly, getting a feel for your intrusion before breaking out into a rhythmic bounce.<</narrate>>
<<vid "katie/gh04.mp4">>
<<say katie>>Right there, right there, right there, right there.<</say>>
<<say katie>>Oh, my fucking god!<</say>>
<<say mc>>Scream for me!<</say>>
<<cont "katiesex" "gh04">>
<<case "gh04">>
<<vid "katie/gh05.mp4">>
<<say katie>>Oh, my god I'm gonna cum. Yeah, yeah, yes.<</say>>
<<say katie>>Oh, yes, give it to me good. Just like that.<</say>>
<<say mc>>Fucking scream for me, $katie.name, scream!<</say>>
<<say katie>>Give me every last drop of that cum. Give it to me $name!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "katie/gh06.mp4">>
<<narrate>>You pull out and explode on her ass.<</narrate>>
<<say mc>>Yes, fucking, yes, $katie.name, oh, my fucking yes!<</say>>
<<narrate>>You jerk until there's nothing left and then just admire your handiwork as your jizz oozes down her ass and over her vulva.<</narrate>>
<<say katie>>Let's do this again sometime.<</say>>
<<narrate>>She picks a leaf from one of the nearby plants and cleans herself off with it while you just watch.<</narrate>>
<<button "Continue" $return>>
<<if $replay == false && $krissy.relief == 1 && $tempvar3 == "cover">>
<<set $krissy.events.relief++>>
<<corrupt "krissy" 2>>
<<lust "krissy" 1>>
<</if>>
<<unlock "katie" "farm">>
<<set $tempvar3 = "">>
<<set $scene = 0>>
<<time 1>>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "vg">>
<<say "mc">>Wanna try this new video game I bought?<</say>>
<<narrate>>She immediately perks up.<</narrate>>
<<say "katie">>Hell yes, give it here!<</say>>
<<narrate>>She snatches at the game before putting it in her PC.<</narrate>>
<<left2 "katie/game02.jpg">>
<<say "katie">>The hell is this? Just how big is this thing? It's gonna take like an hour to install?!<</say>>
<<say "mc">>Wow...<</say>>
<<say "katie">><i>Super Smash Girls Elite Class XXX VI</i>... that's quite the title. It'd better be worth the wait.<</say>>
<<narrate>>She returns her attention to you, stroking your arm.<</narrate>>
<<say "katie">>You know... we can play offline while it installs...<</say>>
<<say "mc">>We'd still need to install—<</say>>
<<narrate>>You're interrupted when she pulls herself into you and gently bites your lower lip.<</narrate>>
<<say "mc">>When did you become so brazen?<</say>>
<<say "katie">>I've always been direct with what I want.<</say>>
<<narrate>>She hitches her skirt up, revealing a lack of panties and her glistening vulva, then drapes herself over the sofa.<</narrate>>
<<center "katie/games03.jpg">>
<<say "katie">>Fuck me.<</say>>
<<narrate>>The vision before you commands only one thing; you drop your pants and thrust into her.<</narrate>>
<<cont "katiesex" "vg01">>
<<case "vg01">>
<<vid "katie/vg01.mp4">>
<<say "katie">>Oh yes, now fuck me harder.<</say>>
<<say "katie">>Right there! Ohh~ yes, give it to me. Yeah.<</say>>
<<cont "katiesex" "vg02">>
<<case "vg02">>
<<vid "katie/vg02.mp4">>
<<say "katie">>Hnnng~ ohhhh my god!<</say>>
<<narrate>>Her moans echo around the room in tandem with the clap of her ass cheeks against you.<</narrate>>
<<cont "katiesex" "vg03">>
<<case "vg03">>
<<vid "katie/vg03.mp4">>
<<say "katie">>Gimme that cock nice and deep!<</say>>
<<say "katie">>Yes, right there!<</say>>
<<cont "katiesex" "vg04">>
<<case "vg04">>
<<vid "katie/vg04.mp4">>
<<say "katie">>Ohhh fuck yes... it feels so good right there.<</say>>
<<say "katie">>It's so fucking good!<</say>>
<<cont "katiesex" "vg05">>
<<case "vg05">>
<<vid "katie/vg05.mp4">>
<<say "katie">>I was so fucking horny. Hnnnng~ can you tell?<</say>>
<<narrate>>She uses you like a dildo, bouncing herself up and down on your member until she gets herself off.<</narrate>>
<<say "katie">>Oohhh~ fuck yes!<</say>>
<<narrate>>As her orgasm consumes her, you push her forward back down on the sofa, determined to regain some control as you chase your own end.<</narrate>>
<<cont "katiesex" "vg06">>
<<case "vg06">>
<<vid "katie/vg06.mp4">>
<<say "katie">>Mhmmm~ right there. Fuck yes!<</say>>
<<say "katie">>Yes please make me cum again all over that fucking cock right there.<</say>>
<<narrate>>Her vaginal muscles again tighten around your cock, taking you over the edge.<</narrate>>
<<say "mc">>I'm fucking cumming.<</say>>
<<button "Cum" katiesex>>
<<temp "vg07">>
<</button>>
<<case "vg07">>
<<vid "katie/vg07.mp4">>
<<say "mc">>$katie.name, fuck, yes, fuuuuck!<</say>>
<<say "katie">>I love that fucking cum from your cock.<br>Look at that big hot fucking load.<</say>>
<<narrate>>She scoops up your gift, taking a taste.<</narrate>>
<<say "katie" "" "(Whispering)" "whisper">>Yes, every last fucking drip.<</say>>
<<narrate>>She leans back and cranes her head to look at the monitor.<</narrate>>
<<say "katie">>Fuck, it's done!<</say>>
<<narrate>>She scrambles out from beneath you to her desk, not even bothering to clean the load off her.<</narrate>>
<<say "katie">>Huh? It's single player only. Oh well, we can play something else another time. Speak to you later.<</say>>
<<think "mc">>Ha, that's my cue to leave, I guess. I know better to get between her and her video games by now!<</think>>
<<unlock "katie" "vg">>
<<button "Continue" townhub>>
<<lust "katie" 4>>
<<like "katie" 10>>
<<item "vg" -1>>
<<time 2>>
<</button>>
<</switch>><<set _img = getImg('sarge')>>
<<scene>>
<<set _train = false>>
<<if (($sarge.events.gym >= 2 && $sarge.events.gym <= 10) || $sarge.events.training == 1) && $location == "gym">>
<<left2 "kira/train01.jpg">>
<<set _train = true>>
<<elseif $location == "gym" && ($sarge.events.gym == "moriah" || $sarge.events.gym == "derin" || $sarge.events.gym == "derek") && $sarge.events.training == undefined>>
<<left2 "kira/gym04.jpg">>
<<else>>
<<left2 _img>>
<</if>>
<<if $tempvar == "train">>
<<say mc>>About my training, I've been practicing. I want you to know I'm taking it seriously.<</say>>
<<say sarge>>Show me.<</say>>
<<narrate>>You hesitate.<</narrate>>
<<say sarge>>Show me what you've been practicing.<</say>>
<<say mc>>Right... yeah...<</say>>
<<set _helper = State.variables[$sarge.events.gym]>>
<<narrate>>You start the kata.<</narrate>>
<<say sarge>>Hmm, you do seem to have improved. But... let's see if you can handle yourself under a distraction. Keep going.<</say>>
<<left2 "kira/gym05.jpg">>
<<narrate>>She lowers her gym shorts, kicks them off to the side, and squeezes her ass while looking back at you over her shoulder.<</narrate>>
<<think mc>>Fuck fuck fuck, that's not fair!<</think>>
<<narrate>>You close your eyes, trying to block the image.<</narrate>>
<<say sarge>>You can't close your eyes in battle, soldier. Eyes on me!<</say>>
<<think mc>>Soldier?<</think>>
<<narrate>>It takes all your might to concentrate on your form while watching her squeeze and slap her ass while smiling at you seductively.<</narrate>>
<<say sarge>>Good... good... but what if your opponent were to do this?<</say>>
<<narrate>>She moves quicker than your eyes can track. One moment she's by the equipment, next she's between your arms.<</narrate>>
<<say sarge>>Keep going.<</say>>
<<say mc>>But... you're...<</say>>
<<say sarge>>Concentrate on your motions, getting it right, even with the distractions. It needs to become second nature.<</say>>
<<narrate>>She places her hand over your crotch.<</narrate>>
<<say sarge "" "(Whispering to herself)" "whisper">>Holy shit...<</say>>
<<narrate>>Despite your lewd thoughts, you keep going, disciplining your mind to focus on the kata.<</narrate>>
<<say sarge>>Fucking hell...<</say>>
<<narrate>>Only when she slips her hand down your trousers do you finally jump back.<</narrate>>
<<say mc>>What the fuck, $sarge.name? When is the enemy ever going to do that in a fight?<</say>>
<<narrate>>She grins.<</narrate>>
<<say sarge>>If you leave yourself open, who is to know. Especially when you're pointing this thing around.<</say>>
<<narrate>>She tugs at your trousers, your hard cock springing out almost comically.<</narrate>>
<<say mc>>This is too far.<</say>>
<<say sarge>>Oh, training was over a few minutes ago.<</say>>
<<narrate>>She grabs your hard cock, a look of wonder and awe over her face.<</narrate>>
<<say sarge>>It's so beautiful...<</say>>
<<think mc>>Well, it's not how I expected it to happen, but I was definitely hoping for it...<</think>>
<<cont "kirasex" gymbj>>
<<elseif ($sarge.events.gym == 2 || $sarge.events.gym == 4) && $location == "gym">>
<<say sarge>>Ready to begin?<</say>>
<<choices>>
<<link "Yes" kiragym>>
<</link>><br>
<<link "No" housestuff>><</link>>
<</choices>>
<<elseif $location == "gym" && $sarge.events.gym == undefined>>
<<say sarge>>Good evening, $name. I'm glad I bumped into you here.<</say>>
<<say mc>>Oh?<</say>>
<<say sarge>>You recall taking that punch from Damien?<</say>>
<<say mc>>Yeah...?<</say>>
<<say sarge>>Since learning who you are, something about that's really bothered me. Why did you let him humiliate you to that level? I understand not wanting to blow your cover, but you did... nothing.<</say>>
<<narrate>>You chuckle before sighing...<</narrate>>
<<say mc>>Unfortunately, that was no act. He bested me fair and square.<</say>>
<<say sarge>>That... doesn't make sense. You're a patron, and from what I gather, a particularly powerful one. How could a mere weakling like Damien defeat you?<</say>>
<<say mc>>Ouch! Patron powers seemingly don't translate into physical prowess, and even if they did, just being physically strong doesn't mean I'd be a good fighter.<</say>>
<<say sarge>>True enough. Experience and reflex are more important than muscle mass. I had assumed your power would allow you to overcome such shortcomings.<</say>>
<<say mc>>Besides, weren't you training your people precisely with the understanding I'd be weaker in close combat?<</say>>
<<say sarge>>I was anticipating you being less prepared if we could get in close quickly vs ranged attacks. However, I was still expecting it to be a difficult battle.<</say>>
<<left2 "kira/gym02.jpg">>
<<narrate>>She puts down her weights and scratches her chin.<</narrate>>
<<say sarge>>Would you like me to teach you?<</say>>
<<say mc>>How to fight?<</say>>
<<say sarge>>Yes. I find my evenings here... empty. I mean no disrespect to you or your companions, but I don't feel at ease here, and I'm quite restless. And, while I daresay your champions would prevent it ever occurring, it may be useful for you to gain some close combat techniques.<</say>>
<<say mc>>I want you to feel at ease here, if there's something I can do to—<</say>>
<<narrate>>She holds up her hand.<</narrate>>
<<say sarge>>Please, no. This place is more than hospitable and your companions are friendly. But you must remember I've gone from preparing for war, multiple soldiers and resources at my disposal... to being a diplomat stationed in a foreign land. I know I can step back through the gate to New Eden whenever, but I also feel I need to be here to receive or relay information whenever it is required.<</say>>
<<say mc>>You take your job very seriously, huh? But... basically you're bored, right?<</say>>
<<say sarge>>That I do... and I guess that may be one way of putting it, yes.<</say>>
<<say mc>>Alright... sure.<</say>>
<<say sarge>>Great. Allow me time to draw up a plan, and we can get started any time from tomorrow.<</say>>
<<say mc>>Great, thanks $sarge.name.<</say>>
<<event sarge gym>>
<<cont "housestuff" "" 1>>
<<else>>
<<say "sarge">>Good evening, $name. Did you want something from me?<</say>>
<<choices>>
<<smallflirt "sarge">>
<<if $location == "gym" && ($sarge.events.gym == "moriah" || $sarge.events.gym == "derin" || $sarge.events.gym == "derek") && $sarge.events.training == undefined && $sarge.cooldown == 0>>
<<link "Training" sarge>>
<<temp "train">>
<</link>><br>
<</if>>
<<if $sarge.events.training == 1 && $sarge.cooldown == 0>>
<<link "Training" sarge-spar>>
<</link>><br>
<<elseif $day - $sarge.events.training > 2 && $sarge.events.training != 2 && _train == false>>
<<link "$moriah.name" sarge-moriah>>
<</link>><br>
<</if>>
<<if $location == "garden" && $sarge.cooldown == 0>>
<<link "Yoga" sarge-yoga>>
<</link>><br>
<</if>>
<<link "Never mind" housestuff>><</link>>
<</choices>>
<</if>>
/*https://vipergirls.to/threads/7553022-2019-12-18-Kira-Noir-Fighting-Foot-Domination-(x195)?highlight=Kira+Noir+Fighting+Foot+Domination*/<<switch $sarge.events.gym>>
<<case 2>>
<<say sarge>>Great. For our first session, I just want to gauge your current level appropriately.<</say>>
<<say mc>>I'd say, like... nothing?<</say>>
<<say sarge>>Allow me to judge that.<</say>>
<<narrate>>She takes a stance.<</narrate>>
<<left2 "kira/train02.jpg">>
<<say sarge>>I want you to come at me with everything you have.<</say>>
<<narrate>>You try to mimic get stance, she raises an eyebrow.<</narrate>>
<<say sarge>>Just do what's natural for now. Don't try to copy my movements yet; we'll get to that.<</say>>
<<say mc>>Yeah... I have basically no idea what I'm doing.<</say>>
<<narrate>>You decide to just forego the stance and just go for her. You rush in, throwing a punch that she easily evades.<</narrate>>
<<say sarge>>Good, good. I can see you work out at least. Keep going.<</say>>
<<narrate>>You try a feint by starting an uppercut then pivoting to sweep her legs instead. She laughs at the attempt.<</narrate>>
<<say sarge>>That kind of maneuver is way beyond you yet, but I appreciate the ambition. Show me more.<</say>>
<<narrate>>You go for the next fifteen minutes, not once landing a blow as you try various ways to catch her.<</narrate>>
<<say sarge>>Okay, I think that's enough.<</say>>
<<say mc>>I wasn't close to even keeping up with your movements... and given how out of breath I am, and how composed you are, I'm guessing you weren't even trying.<</say>>
<<say sarge>>Your movements are sluggish, you are unable to predict your opponent's movements, and your eyes are rarely focused on the right part of your enemy. You kept trying to bedazzle or otherwise distract me with fancy moves and combos that frankly have no place together. You have much to learn.<</say>>
<<say mc>>Regretting the offer?<</say>>
<<say sarge>>Not at all. I do like a challenge. But, I must say, your strength is not to be denied. Despite your looks, you pack a punch.<</say>>
<<say mc>>How can you tell? I never hit you.<</say>>
<<say sarge>>I've been doing this a long time. Your problem is not your strength, it's your agility and flexibility. You also don't know how to read your opponent and focus on their breasts too frequently.<</say>>
<<say mc>>I didn't mean to, I was just...<</say>>
<<say sarge>>I've seen your companions, and do remember where I'm from, I do not mind it; it's a compliment even. However, in a real fight if the enemy can beat you by flashing their tits at you, you're useless.<</say>>
<<say mc>>Right...<</say>>
<<say sarge>>Rest for now, we can continue tomorrow.<</say>>
<<say mc>>Okay, thanks $sarge.name.<</say>>
<<event sarge gym 3>>
<<cont "housestuff" "" 1.5>>
<<case 4>>
<<say sarge>>Based on our previous session, I want to start with some basics.<</say>>
<<say mc>>Yeah... that figures.<</say>>
<<say sarge>>So, copy my movements. We'll start slow.<</say>>
<<narrate>>She holds one arm close while punching the other out.<</narrate>>
<<left2 "kira/train03.jpg">>
<<narrate>>You copy, and she nods.<</narrate>>
<<say sarge>>Good, good. Now just repeat that with the other fist, then keep repeating one at a time to my rhythm.<</say>>
<<think mc>>Well, this is a lot easier than yesterday.<</think>>
<<narrate>>You start moving your arms automatically, barely paying any attention, instead your gaze is on the slit in her gi.<</narrate>>
<<say sarge>>Eyes up top!<</say>>
<<narrate>>You quickly move your eyes back to hers.<</narrate>>
<<left2 "kira/train04.jpg">>
<<say sarge>>You need to concentrate on your movements, and less on my breasts. Did you even notice I changed it up?<</say>>
<<say mc>>I... uh... no.<</say>>
<<say sarge>>Would you have this problem with a male instructor?<</say>>
<<say mc>>If they had a pair of breasts... maybe?<</say>>
<<narrate>>She gives you a look of annoyance.<</narrate>>
<<say sarge>>We're done. I understand you have your lust aspect. But that comment; you're not taking this seriously.<</say>>
<<say mc>>I'm sorry, I didn't mean anything by it, was just trying to lighten the mood.<</say>>
<<narrate>>She clicks her tongue.<</narrate>>
<<say sarge>>Be that as it may, you're clearly not prepared for this yet.<</say>>
<<say mc>>Please. Can we keep going?<</say>>
<<say sarge>>We were just about done. Practice what I've taught you today, and we'll discuss if we continue another time.<</say>>
<<narrate>>She heads directly to the changing rooms, muttering to herself.<</narrate>>
<<think mc>>Wow, I really pissed her off. I guess if I spend some time practicing in the gym what she taught me today, maybe I can convince her I'm serious about this.<</think>>
<<event sarge gym 11>>
<<cont "housestuff" "" 1.5>>
<<default>>
$sarge.events.gym
<<notice>>WIP<</notice>>
<<cont "housestuff" "" 1.5>>
<</switch>><<say sarge>>I was thinking we could try something different today.<</say>>
<<think mc>>If it's like last time, I'm all in!<</think>>
<<say sarge>>Let me show you some kicks. Here hold this bag.<</say>>
<<narrate>>She hands you a large cushion-like object.<</narrate>>
<<say sarge>>Pay close attention, I want you to repeat this after.<</say>>
<<cont sarge-spar01>><<set _img = getImg('sarge')>>
<<left2 _img>>
<<say mc>>How are you getting on with $moriah.name?<</say>>
<<say sarge>>Great, actually. She's fearsome to say the least. I really feel like I can go all out against her.<</say>>
<<say mc>>Glad to hear it.<</say>>
<<say sarge>>I feel like she's holding back against me, though, which is a scary thought as I'm certainly no pushover.<</say>>
<<say mc>>She's definitely formidable.<</say>>
<<say sarge>>Anyway, she did suggest I take up yoga if I'm feeling restless. She can't be there all the time, of course. I'm no stranger to yoga, so I'm not sure why I didn't consider it myself, either way she's right.<</say>>
<<say mc>>Hey... if you're ever feeling particularly restless, I'm sure I can find something to entertain you with.<</say>>
<<narrate>>She laughs.<</narrate>>
<<say sarge>>Maybe you should join me for a yoga lesson in the garden some time? Perhaps you'll be better at that.<</say>>
<<say mc>>Or maybe things will end up exactly how they did with the martial arts.<</say>>
<<say sarge>>I guess only one way to find out...<</say>>
<<event "sarge" "training" 2>>
<<run overrideSchedule('sarge', 20, 22, 'garden')>>
<<cont "housestuff" "" 1>><<if $replay == true || checkUnlocks('movie', 'yoga', 'sarge') == false >>
<<say mc>>So not only did you decide to give yoga a go, but also teach others?<</say>>
<<left2 "kira/yoga01.jpg">>
<<say sarge>>I thought it may go well to practice with others.<</say>>
<<say mc>>How'd it go?<</say>>
<<say sarge>>Most people here are advanced enough they don't need my guidance.<</say>>
<<say mc>>Maybe you could give me some pointers?<</say>>
<<think mc>>I think I could go for some downward doggy.<</think>>
<<narrate>>You chuckle to yourself.<</narrate>>
<<say sarge>>Something amusing?<</say>>
<<say mc>>Eh, you'll see.<</say>>
<<narrate>>She raises an eyebrow, but otherwise takes a pose.<</narrate>>
<<left2 "kira/yoga02.jpg">>
<<say sarge>>Copy me.<</say>>
<<narrate>>She then starts talking about breathing, and finding balance, but you're too caught up in your dirty thoughts to pay attention.<</narrate>>
<<say sarge>>No... not like that!<</say>>
<<say mc>>Huh? Oh, sorry... you know, I think I preferred you on all fours...<</say>>
<<narrate>>She snorts with laughter.<</narrate>>
<<say sarge>>Didn't take long, did it?<</say>>
<<else>>
<<say mc>>Still feeling restless, how about another special yoga session?<</say>>
<<left2 "kira/yoga02.jpg">>
<<narrate>>She grins while taking a new pose.<</narrate>>
<<say sarge>>A proper lesson... or a <em>$name</em> lesson.<</say>>
<<say mc>>Whatever do you mean? But if there's a special lesson just for me, how could I say no?<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say sarge>>It certainly keeps the boredom at bay.<</say>>
<</if>>
<<narrate>>She ties her hair back while grinning at you.<</narrate>>
<<think mc>>Fuck yeah!<</think>>
<<cont "sarge-yoga01">><<scene>>
<<switch $tempvar>>
<<case "gymbj">>
<<vid "kira/gymbj01.mp4">>
<<narrate>>She pulls down your briefs, her eyes widen with desire.<</narrate>>
<<say sarge>>Wow...<</say>>
<<narrate>>While gazing up at you, she slowly runs her tongue up your shaft, sending a pang of pleasure through you.<</narrate>>
<<say mc>>Fuuck...<</say>>
<<cont "kirasex" "gymbj02">>
<<case "gymbj02">>
<<vid "kira/gymbj02.mp4">>
<<narrate>>As you pull your top over your head, she fervently bobs her head back and forth, your head hitting the back of her throat with each forward motion.<</narrate>>
<<narrate>>Using both hands, she starts milking your shaft, sparking new sensations as the pleasure inside you begins to swell.<</narrate>>
<<cont "kirasex" "gymbj03">>
<<case "gymbj03">>
<<vid "kira/gymbj03.mp4">>
<<narrate>>She moves her lips down over your shaft until she's kissing your balls.<</narrate>>
<<say mc>>Yeah, fuck, that's good.<</say>>
<<narrate>>She passionately sucks and massages your balls while jerking you off. Between her pace and zeal, you find yourself close to climax already.<</narrate>>
<<cont "kirasex" "gymbj04">>
<<case "gymbj04">>
<<say mc>>Fuck, I'm close!<</say>>
<<narrate>>She takes you back into her mouth and again, placing both hands around your shaft, works your cock like an instrument.<</narrate>>
<<vid "kira/gymbj04.mp4">>
<<narrate>>You feel the pressure building, you clench your ass cheeks and writhe your hips as you try and hold back as long as possible.<</narrate>>
<<say mc>>I'm cumming, fuck, I'm cumming!<</say>>
<<narrate>>She doesn't let up for even a moment as you explode in her mouth. Your hot goo only stopping her briefly as she pauses to swallow.<</narrate>>
<<say mc>>Fuck, fuck, fuck, that's good!<</say>>
<<narrate>>Eventually, she releases your cock, and with a satisfied face, looks up at you.<</narrate>>
<<say sarge>>So it wasn't just all talk, after all. Okay, we can resume your training from tomorrow.<</say>>
<<say mc>>Yeah... and maybe do this again?<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say sarge>>Continue to take my training seriously, and we'll see how things go...<</say>>
<<think mc>>Well, that's certainly a reason to continue!<</think>>
<<event sarge training>>
<<temp "">>
<<unlock "sarge" "gymbj">>
<<set $sarge.cooldown = 1>>
<<cont $return "" 1>>
<</switch>><<left2 "kira/k01.mp4" v>>
<<narrate>>Despite being prepared for it, you weren't prepared for her strength. You fall backwards on to the mat.<</narrate>>
<<say sarge>>Really?<</say>>
<<narrate>>She gives you a disappointed look.<</narrate>>
<<say mc>>You're way stronger than you appear.<</say>>
<<say sarge>>I barely used any strength at all.<</say>>
<<say mc>>Then I'd hate to see you at full strength.<</say>>
<<narrate>>She sighs.<</narrate>>
<<cont sarge-spar02>><<say sarge>>This.... isn't working.<</say>>
<<say mc>>I'm ready this time, let's try again.<</say>>
<<say sarge>>It's not that. I told you originally I was often bored in the evenings, and that's true. But not the entire truth. I figured you'd be easy to teach, if I'm honest, that you'd be close to my level in no time and we could spar together.<</say>>
<<say mc>>But I'm not picking it up quick enough?<</say>>
<<say sarge>>You're doing fine, I'm just not patient enough. I don't mean to sound rude, but I'm used to dealing with people far more advanced than you. I had hoped for a sparring partner.<</say>>
<<say mc>>What about $britt.name?<</say>>
<<say sarge>>I asked her, and she did say yes, but I could tell she didn't want to, and it'd probably be a one time thing for her, so I didn't ask again.<</say>>
<<say mc>>There are other ways I can keep you entertained... and you won't need to train me for those.<</say>>
<<left2 "kira/k01.jpg">>
<<narrate>>She laughs.<</narrate>>
<<say sarge>>I wonder what that could be.<</say>>
<<narrate>>You nod down at your groin.<</narrate>>
<<say sarge>>Always ready to go, huh?<</say>>
<<narrate>>She grins at you darkly as she lowers herself to your level.<</narrate>>
<<say sarge>>But I bet I've still got a surprise or two for you.<</say>>
<<narrate>>You regard her skeptically as she removes your gi.<</narrate>>
<<cont sarge-spar03>><<vid "kira/k02.mp4">>
<<narrate>>There's a look of surprise and admiration as she pulls down your briefs.<</narrate>>
<<say sarge>>Damn!<</say>>
<<narrate>>She runs her fingers up and down your shaft.<</narrate>>
<<say sarge>>It's even more impressive than I remember...<</say>>
<<narrate>>She leans back and rests her feet beside your cock.<</narrate>>
<<say sarge>>Kicks aren't the only thing they're good for!<</say>>
<<cont sarge-spar04>><<narrate>>She wraps her feet around your cock while grinning mischievously.<</narrate>>
<<vid "kira/k03.mp4">>
<<say sarge>>Feels good? You like the way my arches feel?<</say>>
<<narrate>>You wince and wiggle under the alien feeling.<</narrate>>
<<say sarge>>How about... between my toes? Hmm, like that? Do you like the way my toes squeeze you?<</say>>
<<narrate>>You clench and arch your back as she squeezes your helmet between her toes.<</narrate>>
<<say sarge>>Oh, is that too tough... you want something a little gentler? You baby.<</say>>
<<narrate>>She stands up, kicks off her trousers and approaches.<</narrate>>
<<cont sarge-spar05>><<narrate>>She pulls her panties to the side, then climbs over you, lowering her pussy to your face while grabbing your dick.<</narrate>>
<<vid "kira/k04.mp4">>
<<narrate>>As she takes your cock into her mouth, you stretch your neck forward, reaching your tongue out to her vulva.<</narrate>>
<<narrate>>She expertly takes your full length, all while you lap at her clit.<</narrate>>
<<say sarge>>I think it's time we kicked this up a gear...<</say>>
<<cont sarge-spar06>><<narrate>>She lowers herself on to your dick with a moan.<</narrate>>
<<vid "kira/k05.mp4">>
<<say mc>>Ohh~ yes!<</say>>
<<narrate>>It only takes a moment for her to get used to your cock, and she quickens the pace.<</narrate>>
<<say sarge>>Ohh~ yes! You clearly don't need training for this!<</say>>
<<cont sarge-spar07>><<narrate>>You take the initiative, grabbing her feet and pushing her forward.<</narrate>>
<<vid "kira/k06.mp4">>
<<say sarge>>Yeees~ yes!<</say>>
<<narrate>>She screams with joy as you plow into her from behind.<</narrate>>
<<say sarge>>God, you're a lot more forceful than I thought you could be!<</say>>
<<cont sarge-spar08>><<vid "kira/k07.mp4">>
<<say sarge>>Yes! Oh, fffuck, yes! Oh, god.<</say>>
<<narrate>>Her moans and screams becoming increasingly loud, echoing off the gym walls, as she grows closer to climax.<</narrate>>
<<say sarge>>Ohh, good job<</say>>
<<narrate>>She almost sounds sarcastic as she tightens around your cock, but at this stage you don't care, you're also at your limit.<</narrate>>
<<say mc>>I'm cummin! On your knees!<</say>>
<<narrate>>Her eyes light up.<</narrate>>
<<cum>>
<<say sarge>>Give it to me, give me your sweet nectar!<</say>>
<<vid "kira/k08.mp4">>
<<say mc>>Fucking yes, take it, take it, TAKE IT!<</say>>
<<narrate>>You erupt on her face with a satisfying grunt. Once you're done, she happily cleans off your tip, washing every last drop off.<</narrate>>
<<say sarge>>Well, you might not be my best student, but you certainly have your merits.<</say>>
<<narrate>>You chuckle.<</narrate>>
<<event "sarge" "training" $day>>
<<unlock "sarge" "k">>
<<say mc>>I'd be happy to do this again, but going back to sparring, why don't you ask $moriah.name?<</say>>
<<say sarge>>I know she's the head of security, but she doesn't have the same background as $britt.name. I doubt she'd pose much of a challenge.<</say>>
<<narrate>>You laugh.<</narrate>>
<<say mc>>If you ask $britt.name, she'd probably tell you $moriah.name is the better of the two, though I suspect $moriah.name would say $britt.name. Regardless, she trains hard, and I suspect you've overlooked her.<</say>>
<<say sarge>>Hmmm, I daresay you're right. Her physique is impressive, but more as an object of desire and vanity than it is athleticism.<</say>>
<<narrate>>She catches your stare.<</narrate>>
<<say sarge>>Oh, sorry, I didn't meant anything by it. I'm just explaining, mostly to myself I guess, why I had overlooked her.<</say>>
<<say mc>>I mean I can't deny the desirable part, but I think once you've sparred with her, you'll see she's no pushover. Don't underestimate her.<</say>>
<<say sarge>>Well, she can't be as bad as you!<</say>>
<<say mc>>Hey!<</say>>
<<narrate>>She gives you a wink and heads to the changing rooms.<</narrate>>
<<cont "housestuff" "" 2>>
<<set $sarge.cooldown = 1>>
<</cum>><<narrate>>She crouches before you, and in the same movement, pulls down you trousers revealing your hard cock to the cold air.<</narrate>>
<<vid "kira/yoga01.mp4">>
<<narrate>>While you sarcastically take a yoga pose she wraps her lips around your tip.<</narrate>>
<<say mc>>Oh, fuck yes.<</say>>
<<narrate>>She cups and massages your balls while greedily feasting down on your dick.<</narrate>>
<<say mc>>How about I show you a good position?<</say>>
<<narrate>>She grins.<</narrate>>
<<cont "sarge-yoga02">><<narrate>>You rip at her yoga pants and bend her over.<</narrate>>
<<say sarge>>Oh, wow, holy shit!<</say>>
<<narrate>>She screams with joy as you slide inside her.<</narrate>>
<<vid "kira/yoga02.mp4">>
<<narrate>>Holding her shoulders for balance, you piston into her, eager to claim your prize.<</narrate>>
<<say sarge>>Don't forget to breathe... ohh~ nice and deep... fuck!<</say>>
<<cont "sarge-yoga03">><<narrate>>She bends down further, placing her hands on the mat to help hold her up.<</narrate>>
<<vid "kira/yoga03.mp4">>
<<say "sarge">>Yes, yes!<</say>>
<<narrate>>She cries with passion as you race to the finish line.<</narrate>>
<<cont "sarge-yoga04">><<narrate>>You lay down on the mat and pull her atop you.<</narrate>>
<<vid "kira/yoga04.mp4">>
<<narrate>>Wrapping your arms around her you pound away with a lustful fury.<</narrate>>
<<say mc>>Yes, fuck yes!<</say>>
<<say sarge>>Yes, use me, use me!<</say>>
<<cont "sarge-yoga05">><<narrate>>Sensing your close to the end you take her from behind again.<</narrate>>
<<vid "kira/yoga05.mp4">>
<<say sarge>>Yes, just like that, just like that!<</say>>
<<narrate>>Your endurance meets it's limit under the strain of your aggression.<</narrate>>
<<say mc>>To your knees!<</say>>
<<cum>>
<<vid "kira/yoga06.mp4">>
<<narrate>>You explode on to her face, giving her a cumstache while she sarcastically holds her hands together like in a yoga pose.<</narrate>>
<<say mc>>Yes, fucking yes, let's go, fuuuuck!<</say>>
<<narrate>>She grins at you before wrapping her lips back around your cock to collect every last bit.<</narrate>>
<<say mc>>Now that was a great class!<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say sarge>>Not my best student, but I'm sure he can get there if we keep repeating the lesson.<</say>>
<<cont "housestuff" "" 2>>
<<unlock "sarge" "yoga">>
<<set $sarge.cooldown = 1>>
<</cum>><<nobr>>
<<set $scene = 0>>
<<if $location == "construction" && $constructionproject != undefined>>
<<narrate>>She's busy with the construction project. Perhaps you should try when there are no active projects.<</narrate>>
<<link "Return" mngconstruction>><</link>>
<<elseif $location != $currentlocations.ember && $location != "firstIntros" && $replay == false>>
<<say "ember">>Oh, no! I'm running late. Speak to you later.<</say>>
<<follow ember>>
<<button "Continue" $return>>
<</button>>
<<elseif $location == "construction">>
<<left2 "ember/construction01.jpg">>
<<narrate>>You find $ember.name in the break room behind the construction office.<</narrate>>
<<say "ember">>Hi, $name. Just taking a snack break, will you join me?<</say>>
<<say "mc">>Sounds good!<</say>>
<<choices "What do you want to discuss?" "topics">>
<</choices>>
<<else>>
<<set _img = getImg('ember')>>
<<left2 _img>>
<<say 'ember'>>Hi, $name, how are you?<</say>>
<<say "mc">>Good, thanks, $ember.name, you?<</say>>
<<say 'ember'>>Much better now, what's up?<</say>>
<<choices "What do you want to discuss?" "topics" >>
<</choices>>
<</if>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("emberdiscussions").processText());
})
<</script>>
<</nobr>><<nobr>>
<<scene>>
<<set _img = getImg('ember')>>
<<switch $tempvar>>
<<case "appraisal2">>
<<left2 _img>>
<<say mc>>Do you think you can help me with another evaluation?<</say>>
<<if $hiringtimer != undefined>>
<<say ember>>For sure... but let's allow them at least a week before we make any judgments.<</say>>
<<notice>>Wait another <<if $hiringtimer > 1>>$hiringtimer days<<else>>day<</if>> first.<</notice>>
<<button "Continue" ember>>
<</button>>
<<else>>
<<if checkUnlocks('movie', 'jill', 'ember') == true>>
<<say ember>>$jade.name, huh? Fast learner, very capable. But, there's a few things I've noticed she needs to improve.<</say>>
<<narrate>>She goes on to describe a small number of things that $jade.name should be doing better using terms you don't understand. You just stare and nod politely until she's done.<</narrate>>
<<say mc>>Okay, I didn't understand half of that, I'm going to be honest. You happy to help me out again?<</say>>
<<else>>
<<say ember>>$jill.name has been steadfast and consistent. The punters love her and she does a good job at keeping them entertained. I think she also has a thing for me.<</say>>
<<say mc>>Huh... I thought she had a thing for me.<</say>>
<<say ember>>That may very well be why the punters love her, everyone thinks she has a thing for them. Certainly keeps the bar busy.<</say>>
<<say mc>>And here I thought I was special!<</say>>
<<narrate>>$ember.name laughs.<</narrate>>
<<say ember>>Honestly, she's superb, there's not really much of anything I can even point out for improvement.<</say>>
<<say mc>>Sounds like it should be easy then.<</say>>
<<say ember>>Oh, no, not at all. Depending on her personality, it could be even more difficult than dealing with someone who needs improvement because you need to ensure your gratitude is felt appropriately and that her performance is properly rewarded. A good worker disgruntled by the lack of appreciation can quickly turn into a bad worker, or hand in their resignation.<</say>>
<<say mc>>Right... wanna help me out again?<</say>>
<</if>>
<<say ember>>Alright, let's set something up in a day or two with her, and we'll do it together.<</say>>
<<say mc>>Great, thanks $ember.name!<</say>>
<<button "Continue" $return>>
<<like "ember" 4>>
<<lust "ember" 1>>
<<if checkUnlocks('movie', 'jill', 'ember') == true>>
<<event "ember" "appraisal" "jade">>
<<else>>
<<event "ember" "appraisal" "jill">>
<</if>>
<<set $appraisalCD = 1>>
<<time 1>>
<</button>>
<</if>>
<<case "appraisal">>
<<left2 _img>>
<<say mc>>I was thinking we should probably evaluate staff performance at some point, and given you helped me with hiring, I wondered if you could help with this.<</say>>
<<say ember>>Glad you mentioned it! I was going to say something, our first hire is way beyond late for a review!<</say>>
<<say mc>>Great, do you think you could help me?<</say>>
<<say ember>>I'll be honest, I've been keeping an eye on them a little, especially those working in the bar already, so I've got a few notes already.<</say>>
<<think mc>>Hmm, despite her gullible persona she's really on the ball with this stuff, huh?<</think>>
<<say mc>>Sounds like you're more prepared than I am.<</say>>
<<narrate>>She grins.<</narrate>>
<<say ember>>Well, I wasn't checking them out entirely for professional reasons...<</say>>
<<narrate>>You chuckle.<</narrate>>
<<if checkUnlocks('movie', 'jade', 'ember') == true>>
<<say ember>>$jade.name has been a pretty decent worker thus far. Fast learner, diligent and as we know... very eager to please you.<</say>>
<<say mc>>Oh, yes... I very much enjoyed her interview.<</say>>
<<say ember>>Me too, me too.<</say>>
<<narrate>>The two of you grin at each other.<</narrate>>
<<say ember>>However, there are a couple things that need improvement.<</say>>
<<narrate>>She goes on to describe a small number of things that $jade.name should be doing better using terms you don't understand. You just stare and nod politely until she's done.<</narrate>>
<<say mc>>Okay, I didn't understand half of that, I'm going to be honest. I think I may need more help than I thought.<</say>>
<<else>>
<<say ember>>$jill.name has been steadfast and consistent. The punters love her and she does a good job at keeping them entertained. I think she also has a thing for me.<</say>>
<<say mc>>Huh... I thought she had a thing for me.<</say>>
<<say ember>>That may very well be why the punters love her, everyone thinks she has a thing for them. Certainly keeps the bar busy.<</say>>
<<say mc>>And here I thought I was special!<</say>>
<<narrate>>$ember.name laughs.<</narrate>>
<<say ember>>Honestly, she's superb, there's not really much of anything I can even point out for improvement.<</say>>
<<say mc>>Sounds like it should be easy then.<</say>>
<<say ember>>Oh, no, not at all. Depending on her personality, it could be even more difficult than dealing with someone who needs improvement because you need to ensure your gratitude is felt appropriately and that her performance is properly rewarded. A good worker disgruntled by the lack of appreciation can quickly turn into a bad worker, or hand in their resignation.<</say>>
<<say mc>>Right... I may need more help than i thought.<</say>>
<</if>>
<<say ember>>Alright, let's set something up in a day or two with her, and we'll do it together.<</say>>
<<say mc>>Great, thanks $ember.name!<</say>>
<<button "Continue" $return>>
<<like "ember" 4>>
<<lust "ember" 1>>
<<if checkUnlocks('movie', 'jade', 'ember') == true>>
<<event "ember" "appraisal" "jade">>
<<else>>
<<event "ember" "appraisal" "jill">>
<</if>>
<<set $appraisalCD = 1>>
<<time 1>>
<</button>>
<<case "jillappraisal">>
<<left2 "offworld/jill/appraisal01.jpg">>
<<think mc>>Well, she certainly dressed the part!<</think>>
<<say jill>>I've been looking forward to this!<</say>>
<<say mc>>Oh?<</say>>
<<say jill>>My performance has been exemplary and I know I'm going to ace this review!<</say>>
<<say ember>>Confident. I like it!<</say>>
<<narrate>>$ember.name goes on to praise her, point out where she's shining, and thank her for all her hard work.<</narrate>>
<<think mc>>She really is good at this...<</think>>
<<say jill>>I know it's not been long, but I've thoroughly enjoyed my time here and looking forward to more. I especially enjoy the company of you two.<</say>>
<<say mc>>Oh, believe me, it's mutual.<</say>>
<<say jill>>Perhaps we could celebrate over a round of drinks?<</say>>
<<say mc>>That sounds like a great idea.<</say>>
<<say jill>>Let me go home to get changed, just meet me in the bar when you're ready. Not when I'm working, of course.<</say>>
<<say ember>>Looking forward to it already.<</say>>
<<narrate>>$jill.name gives you a wink as she leaves.<</narrate>>
<<say ember>>I think we were both right.<</say>>
<<say mc>>Hmm?<</say>>
<<say ember>>She's got a thing for both of us. If I'm right, those drinks are gonna be <b>real</b> fun.<</say>>
<<think mc>>Noice!<</think>>
<<button "Continue" housestuff>>
<<set $location = "lounge">>
<<like "ember" 3>>
<<like "jill" 3>>
<<event "ember" "appraisal" "jilldrink">>
<<run overrideSchedule("jill", 17, 24, "bar")>>
<<time 1>>
<</button>>
<<case "jadeappraisal">>
<<left2 "offworld/jade/appraisa01.jpg">>
<<say jade>>Hey handsome... can't say I'm not anxious about this review! I'm not gonna get fired, am I?<</say>>
<<say mc>>If you were doing that bad of a job, we'd have fired you already. Don't worry.<</say>>
<<say ember>>Come, take a seat and let's discuss.<</say>>
<<narrate>>$ember.name then goes on to lead the meeting. Highlighting great performance and offering advice and tips on how to improve where appropriate.<</narrate>>
<<think mc>>Wow, she's really good at this. Look how at ease $jade.name is now. $ember.name's help isn't seen as overbearing or picky, she's genuinely offering help and advice...<</think>>
<<say jade>>Okay, I'm just a little confused by a couple of points. Do you think you could show me?<</say>>
<<say ember>>Absolutely, come on! Let's go to the bar right now.<</say>>
<<think mc>>I am completely out of my element. I'm glad I have $ember.name here handling it, but I guess for other facilities I may need to ask someone else...<</think>>
<<narrate>>You arrive at the bar a little later, where $ember.name proceeds to show $jade.name a number of processes and ways to improve efficiency.<</narrate>>
<<say jade>>That's fantastic, I think this will really help!<</say>>
<<notice>>$jade.name's mixology skill has increased by 5.<</notice>>
<<run skillup('mixology', 'jade', 5)>>
<<say jade>>I was also wondering if you could show me the perfect head. I don't think I always get it quite right.<</say>>
<<think mc>>Given our first meeting, I shouldn't be surprised... and I'm here for it!<</think>>
<<say ember>>Ha! I should have guessed.<</say>>
<<say jade>>That obvious, huh?<</say>>
<<say ember>>Alright, I'm definitely game. Come on, let's head back to my room.<</say>>
<<narrate>>$jade.name looks confused.<</narrate>>
<<say jade>>Wait, why there?<</say>>
<<say ember>>Too many travelers here, not everyone will want to see it... though I'm sure plenty would too. But, this isn't the place for that.<</say>>
<<say jade>>Uhh.... okay...<</say>>
<<button "Continue" embersex>>
<<temp "jadeappbj">>
<</button>>
<<case "charlie">>
<<left2 _img>>
<<say mc>>About $charlie.name...<</say>>
<<narrate>>She perks up.<</narrate>>
<<say ember>>Is everything okay?<</say>>
<<say mc>>Yeah, I was just thinking about what we discussed previously.<</say>>
<<switch $charlie.events.ember>>
<<case "none">>
<<think mc>>I previously told her to stay away from him...<</think>>
<<case "friends">>
<<think mc>>I previously told her not to take it any further than friendship, but she suggested she'd do more... if I wanted to her to...<</think>>
<<case "possess">>
<<think mc>>I previously told her I'm only okay with her sleeping with him when I'm possessing him.<</think>>
<<case "sex">>
<<think mc>>I previously told her I'm only okay with her sleeping with him.<</think>>
<</switch>>
<div id="replace">
<<choices>>
<<if $charlie.events.ember == "none">>
<<link "Stay Away">>
<<replace "#replace">>
<<say mc>>I want to stay away from him a bit longer.<</say>>
<<say ember>>Yeah... okay...<</say>>
<<button Continue $return>>
<<time 0.5>>
<</button>>
<</replace>>
<</link>><br>
<</if>>
<<if $charlie.events.ember == "none" || $charlie.events.ember == "friends" || $charlie.events.ember == "attempt">>
<<link "Friends Only">>
<<replace "#replace">>
<<if $charlie.events.ember == "none">>
<<say mc>>You know what? I think he really is trying, maybe it's okay if you want to be friends.<</say>>
<<say ember>>I'd like that!<</say>>
<<say mc>>Just be careful. I wouldn't be surprised if he tries to sleep with you, and that's not happening while I'm around!<</say>>
<<if $ember.sex > 0>>
<<say ember>>Oh, no! I wouldn't do anything like that unless you wanted me to.<</say>>
<<say mc>>Sorry?<</say>>
<<say ember>>Like, he seems fun, and maybe something casual, but only if that's what you wanted. I'd never cheat on you with another man.<</say>>
<<say mc>>Right...<</say>>
<<else>>
<<say ember>>Of course not. I've not even slept with you yet!<</say>>
<<say mc>>Perhaps something we should remedy soon...<</say>>
<<narrate>>She grins at you.<</narrate>>
<</if>>
<<think mc>>So the lust aspect only works to make them desire me or what? I was kinda thinking it would just make everyone horny... or is it just her loyalty to me outweighs that?<</think>>
<<else>>
<<say mc>>I think it's great how you two have become friends. He hasn't tried anything on with you has he?<</say>>
<<say ember>>Nothing, no. I wouldn't do anything like without you, anyway.<</say>>
<<say mc>>Right...<</say>>
<</if>>
<<button Continue $return>>
<<event "charlie" "ember" "friends">>
<<time 0.5>>
<</button>>
<</replace>>
<</link>><br>
<</if>>
<<if $charlie.events.ember != "sex" && $charlie.events.ember != "all">>
<<link "Suggest More">>
<<replace "#replace">>
<<say mc>>You should know he's probably going to try and sleep with you at some point.<</say>>
<<if $ember.sex > 0 >>
<<say ember>>Oh, no! I wouldn't do anything like that unless you wanted me to.<</say>>
<<say mc>>So if I did?<</say>>
<<say ember>>I'd happily do it. he's kinda cute, not like you of course, and I'm happy to do something casual... or group... but I'd only be down for it if it was a turn on for you.<</say>>
<<think mc>>Okay, that was not the answer I was expecting... she's down for it only if I am.<</think>>
<<say mc>>Then when you want to do it... go for it.<</say>>
<<say ember>>And you'll watch? Because if you're not watching... or joining in... it's not gonna do it for me.<</say>>
<<say mc>>Yeah... I'll watch.<</say>>
<<button Continue $return>>
<<event "charlie" "ember" "sex">>
<<time 0.5>>
<</button>>
<<else>>
<<say ember>>Not a chance! I've not even slept with you yet!<</say>>
<<say mc>>Perhaps something we should remedy soon...<</say>>
<<narrate>>She grins at you.<</narrate>>
<<think mc>>We can revisit the $charlie.name stuff once she and I have had our own fun!<</think>>
<<button "Continue" $return>>
<<run overrideSchedule("charlie", 0, 24, "")>>
<<event "charlie" "arsehole" 11>>
<<event "charlie" "ember" "attempt">>
<<time 1>>
<</button>>
<</if>>
<</replace>>
<</link>><br>
<</if>>
<<if $possess >= 2 && $charlie.events.ember != "all" && $charlie.events.ember != "possess" && $ember.sex > 0>>
<<link "$charlie.name Possession">>
<<replace "#replace">>
<<say mc>>You know I've been working on my possession ability?<</say>>
<<say ember>>Yeah.<</say>>
<<say mc>>How would you feel about me possessing $charlie.name?<</say>>
<<say ember>>I mean, if you want to. Would he know?<</say>>
<<narrate>>You shrug.<</narrate>>
<<say ember>>Do you need me to guard your body or something?<</say>>
<<say mc>>No, I was thinking we could have fun while I was using his body.<</say>>
<<say ember>>Like poker or something? I guess it could be good training for your ability but...<</say>>
<<say mc>>No... I mean something a little more intimate.<</say>>
<<say ember>>Ohhhh! You want to fuck me while possessing him?<</say>>
<<narrate>>You shake your head and grin at how candid she is.<</narrate>>
<<say mc>>Yeah...<</say>>
<<say ember>>Wow... that could be fun, yeah.<</say>>
<<button "Continue" $return>>
<<if $charlie.events.ember == "sex">>
<<event "charlie" "ember" "all">>
<<else>>
<<event "charlie" "ember" "possess">>
<</if>>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<</if>>
<<link "Never mind" $return>>
<</link>>
<</choices>>
</div>
<<case "performing">>
<<left2 _img>>
<<if checkUnlocks('movie', 'ritaew', 'ember') == true>>
<<say "mc">>How did you enjoy performing for me with $ew.name?<</say>>
<<say "ember">>I always enjoy showing off to you... almost as much as I enjoy doing it with you.<</say>>
<<say "mc">>What about doing both?<</say>>
<<say "ember">>Like you and her tag team in? With $ew.name again?<</say>>
<<else>>
<<say mc>>You really got into it when $jade.name was watching.<</say>>
<<say ember>>It was so hot to have someone watch us.<</say>>
<<say mc>>How about doing something similar... with more people?<</say>>
<<say ember>>The more the merrier! Let's see just how many women you can fuck at the same time!<</say>>
<</if>>
<<say "mc">>Uhh... not what I meant, but let's revisit that idea later. No, I meant you and I performing for others.<</say>>
<<say "ember">>Ooh, yeah, I'm definitely game.<</say>>
<<think "mc">>Hmm, should I float past her the idea of performing with others too?<</think>>
<div id="replace">
<<choices>>
<<link "No">>
<<replace "#replace">>
<<say "mc">>Yeah, we can do it at $stripname whenever you like.<</say>>
<<say "ember">>That sounds great! Count me in.<</say>>
<</replace>>
<<set $ember.brothel = "none">>
<<toggleclass "#hid" noshow>>
<</link>><br>
<<link "Other Women">>
<<replace "#replace">>
<<say "mc">>You could also perform with other women like you did $ew.name if you like.<</say>>
<<say "ember">>You'd be watching, right?<</say>>
<<say "mc">>Of course.<</say>>
<<say "ember">>Then give me as many women as you like!<</say>>
<</replace>>
<<set $ember.brothel = "women">>
<<toggleclass "#hid" noshow>>
<</link>><br>
<<link "Other Men">>
<<replace "#replace">>
<<say "mc">>Other men may also want to perform with you.<</say>>
<<narrate>>She pauses.<</narrate>>
<<say "ember">>Just me and them? You wouldn't be included? I can't say it's something I'd considered, but if you were watching me, and it's what you want, I could get behind it.<</say>>
<<say "mc">>Only if you're into it too.<</say>>
<<say "ember">>Turning you on, turns me on.<</say>>
<</replace>>
<<set $ember.brothel = "men">>
<<toggleclass "#hid" noshow>>
<</link>><br>
<<link "Other Men & Women">>
<<replace "#replace">>
<<say "mc">>Other people may want to perform with you too.<</say>>
<<say "ember">>So, like me, you, and another? I'm okay with that.<</say>>
<<say "mc">>And if I was just a watcher?<</say>>
<<narrate>>She pauses.<</narrate>>
<<say "ember">>I guess... women for sure I have no issue, I know that gets you off. But if watching me with other men also turns you on, then I'm okay with it.<</say>>
<<say "mc">>Great!<</say>>
<</replace>>
<<set $ember.brothel = "any">>
<<toggleclass "#hid" noshow>>
<</link>><br>
<</choices>>
</div>
<div id="hid" class="noshow">
<<notice>>$ember.name can now work at $stripname.<br>
You can now perform with $ember.name at $stripname.<</notice>>
<<button "Continue" housestuff>>
<<temp "">>
<<brothel "ember">>
<<time 1>>
<</button>>
</div>
<<case "planets">>
<<left2 _img>>
<<say "mc">>Would you ever want to revisit your home world?<</say>>
<<say "ember">>I didn't hate it there, and I pined for it for a bit... but this is my home now.<</say>>
<<say "mc">>I understand. Would you mind if connected to it, though? It would be helpful to me.<</say>>
<<say "ember">>Yeah, as long as you're not booting me out there!<</say>>
<<say "mc">>Not a chance!<</say>>
<<narrate>>You head to the gateway together.<</narrate>>
<<say "ember">>I must warn you, in comparison to the other worlds I've seen since, mine was a little... eccentric.<</say>>
<<say "mc">>How so?<</say>>
<<say "ember">>My world, or at least my country within it, had what I've come to realize is a unique sense of humor. We'd enjoy watching silly things like people being creampied.<</say>>
<<narrate>>You cough.<</narrate>>
<<say "mc">>Oh, I love seeing that too! Though it wasn't something so open back on my home world.<</say>>
<<say "ember">>Really? Maybe I should ask $kayla.name to teach me how to bake one when I get back...<</say>>
<<think "mc">>Ah, she literally meant a creampie. I guess it's just slapstick comedy or something?<</think>>
<<narrate>>As you're chuckling to yourself at your misunderstanding, the gateway gushes open with a yellow glow. As you've become accustomed to now, you feel an overwhelming sense of euphoria. Your penis feels like it's constantly on the edge, and your whole body feels warm. Your senses slowly return, leaving you out of breath and covered in sweat.<</narrate>>
<<say "ember">>Did you go for a quick run in the few minutes I was gone?<</say>>
<<say "mc">>Just the effects of connecting to a new world.<</say>>
<<notice>>
<ul>
<li>Your power has increased.</li>
<li>Your max energy has increased.</li>
<li>$ember.name's home world is now available for expeditions.</li>
</ul>
<</notice>>
<<button "Continue" gatewayb>>
<<like "ember" 5>>
<<lust "ember" 3>>
<<set $planets[10].unlocked = true>>
<<set $power += 1>>
<<set $maxenergy += 10>>
<<event "ember" "planets">>
<<time 2>>
<</button>>
<<case "record">>
<<block _img>>
<<say "mc">>I have something for you!<</say>>
<<say "ember">>Oh my gosh, what is it?<</say>>
<<narrate>>You hand her the record.<</narrate>>
<<say "ember">>Ooh, I don't have this one.<</say>>
<<narrate>>She looks around.<</narrate>>
<<say "ember">>Ah, there it is.<</say>>
<</block>>
<<narrate>>She picks up what appears to be an old-school portable CD player and inserts the album you purchased.<</narrate>>
<<say "ember">>Oh, this is really relaxing. You know, this would be great to listen to while relaxing at the spa.<</say>>
<<think "mc">>Now that sounds like an opportunity!<</think>>
<<say "mc">>Well, then. How about we go do that together?<</say>>
<<say "ember">>That sounds like a great idea, invite me over there when we're both free.<</say>>
<<button "Continue" ember>>
<<temp "record">>
<<like "ember" 5>>
<<lust "ember" 2>>
<<item "music" -1>>
<<event "ember" "record">>
<<time 1>>
<</button>>
<<case "recruit">>
<<narrate>>As you leave the room, $ember.name calls your name.<</narrate>>
<<block "ember/hi01.jpg">>
<<say "ember">>Morning! I was thinking... with the facilities and what not, how about we recruit off world?<</say>>
<<say "mc">>Wait, off world? Travelers would commute to work here?<</say>>
<<say "ember">>I don't see why not. I have no idea what other hubs do, but from what I've heard, it's rare for them to provide any facilities at all.<</say>>
<<say "mc">>But how would we pay them?<</say>>
<<say "ember">>Well, were you expecting to give stuff away for free to travelers?<</say>>
<</block>>
<<say "mc">>No, I guess not. But how would money even work here? Surely all the different worlds have different currencies.<</say>>
<<say "ember">>Ah, don't worry about that. These people are experienced, even if we're all very skilled, we're still quite new to this, or might be several decades out of practice. When they're working they'll likely reduce our running costs. We'll use that reduction to pay them. As for different currencies, we'll simply trade through the gateways to pay them appropriately.<</say>>
<<say "mc">>Sounds good! How do we do it?<</say>>
<<say "ember">>I'll curate candidates for you. Just go to the office to review them.<</say>>
<<think "mc">>While $ember.name is quite gullible and somewhat oblivious at times, she's anything but dumb. I imagine she gets mistaken as such frequently.<</think>>
<<button "Continue" homehub>>
<<like "ember" 5>>
<<event "mc" "recruit">>
<<time 0.5>>
<</button>>
<<case "champions">>
<<block _img>>
<<say "mc">>Do you think any of the others are dishonest?<</say>>
<<say "ember">>Not really, I mean sometimes I think $lacy.name and $kayla.name cheat at cards as they always seem to win, but nothing of concern.<</say>>
<<say "mc">>Any of the strays seem different to the others?<</say>>
<<narrate>>She cocks her head on one side.<</narrate>>
<<say "ember">>Every single one of us is different to the other, what do you mean?<</say>>
<</block>>
<<say "mc">>I think one of the strays isn't who they think they are.<</say>>
<<say "ember">>You mean like some sort of personality disorder, do you think it could be me? Am I someone else?!<</say>>
<<say "mc">>No, no. Nothing like that I don't think. Just that $voice.name says there are only eight champions.<</say>>
<<set _u = $lacy.name.toUpperCase()>>
<<say "ember">>Well, let's go ask everyone, come on. _u!<</say>>
<<say "mc">>Shhhh! We don't know if it's safe. We need to be careful, I'm gonna go talk to $voice.name, don't say anything to anyone!<</say>>
<<say "lacy">>What's up?<</say>>
<<think "mc">>Damnit, $ember.name! Quick... I need to think of an excuse.<</think>>
<<say "mc">>You want some breakfast?<</say>>
<<say "lacy">>I've just eaten, thanks. Why does $ember.name look so guilty?<</say>>
<<say "mc">>Eh, it's nothing.<</say>>
<<narrate>>$lacy.name raises an eyebrow.<</narrate>>
<<think "mc">>Was it a mistake asking $ember.name? $lacy.name is definitely suspicious of something now! For now I'd better just go see $voice.name.<</think>>
<<button "Continue" rita>>
<<like "ember" 2>>
<<set $mc.events.sus++>>
<<set $mc.events.sus++>>
<<set $mc.events.eight = "ember">>
<<time 1>>
<</button>>
<<case "trans">>
<<block _img>>
<<say "mc">>I met you a bit later than the others, so never actually asked. Did you receive any gifts or transform at all when you came through the gateway?<</say>>
<<say "ember">>Just my eye color. I used to have gray eyes. Oh, also my teeth were whitened!<</say>>
<<say "mc">>So nobody got anything as drastic as $vanna.name.<</say>>
<<say "ember">>Not that I'm aware. Her change was massive. I'm quite intrigued what an older version of her would look like, though.<</say>>
<</block>>
<<say "mc">>Yeah, me too.<</say>>
<<think "mc">>Maybe if my power keeps growing, I can find out one day!<</think>>
<<say "ember">>What made you suddenly ask anyway, but odd to suddenly ask now.<</say>>
<<think "mc">>Hmm, I can get away with this, she's pretty gullible after all.<</think>>
<<say "mc">>Just with my power growing, I've got to start handling that kind of thing. Just wondered what sorts of things patrons do.<</say>>
<<say "ember">>Yeah, I guess that makes sense. Maybe $lacy.name can automate something like she did for the tour guides?<</say>>
<<say "mc">>Not a bad shout, thanks $ember.name.<</say>>
<<button "Continue" ember>>
<<event "ember" "trans">>
<<like "ember" 3>>
<<time 1>>
<</button>>
<<case "weird">>
<<block _img>>
<<say "mc">>You notice anything odd while doing your maintenance lately?<</say>>
<<narrate>>She looks you up and down.<</narrate>>
<<say "ember">>You mean other than you?<</say>>
<<say "mc">>Ha! Yeah, I guess.<</say>>
<<say "ember">>Not really. The sound system in the gym was on the fritz and I feel like I'm constantly having to fix beds since you arrived!<</say>>
<</block>>
<<narrate>>You grin.<</narrate>>
<<say "ember">>Nothing out of the ordinary beyond you, sorry.<</say>>
<<say "mc">>What about the sound system? Do you have to repair things like that frequently?<</say>>
<<say "ember">>Not often. $moriah.name said it was playing havoc, just randomly booming music out, then playing old radio soaps or something. But every few months I have to repair something like that.<</say>>
<<say "mc">>Thanks, $ember.name.<</say>>
<<say "ember">>Why do you ask?<</say>>
<<say "mc">>Just trying to get a feel of what's normal around here!<</say>>
<<say "ember">>Ha! You'll not discover that while you're around us!<</say>>
<<button "Continue" ember>>
<<like "ember" 3>>
<<lust "ember" 1>>
<<event "ember" "weird">>
<<time 1>>
<</button>>
<<case "interviews">>
<<meet "jill">>
<<meet "jade">>
<<block _img>>
<<say "ember">>I found two potential candidates, both travelers, both good with people and plenty of experience behind the bar.<</say>>
<<say "mc">>That sounds great, why not employ them both?<</say>>
<<say "ember">>As yet, the bar isn't likely to be popular enough for that. But that's not to say we can't expand in the future.<</say>>
<<say "mc">>Got it, so who do you think we should employ?<</say>>
<<say "ember">>Let's reserve judgment until you've had a chance to meet them and form your own opinion.<</say>>
<</block>>
<<say "mc">>Understood. I'm free now if you want to start?<</say>>
<<say "ember">>Sounds good, who do you want to see first?<</say>>
<center>
<<choices "Who do you want to see first?">>
<<if $jill == undefined>>
/*<<run checkChars()>>*/
<</if>>
<div class="flex">
<div class="choices">
<div class="girlChoice" data-passage="emberanswers" data-setter="$tempvar to 'jill'">
<<center "offworld/jill/jillcrop.jpg">><br>
</div>
<<textbox "$jill.name" "Harmony">><br>
</div>
<div class="choices">
<div class="girlChoice" data-passage="emberanswers" data-setter="$tempvar to 'jade'">
<<center "offworld/jade/jadecrop.jpg">><br>
</div>
<<textbox "$jade.name" "Tina">><br>
</div>
</div>
<</choices>>
</center>
<<case "jill">>
<<say "ember">>Okay, give me a little while to collect her. Here's her info in the meantime.<</say>>
<<narrate>>She hands you some papers detailing her $jill.name's relevant experience and skills.<</narrate>>
<<think "mc">>Huh, okay, so she seems charismatic and has quite a bit of experience. Seems like the perfect fit!<</think>>
<<narrate>>30 minutes later, $ember.name returns with $jill.name.<</narrate>>
<<block "offworld/jill/interview01.jpg">>
<<narrate>>You get up to shake her hand.<</narrate>>
<<say "mc">>Nice to meet you, $jill.name.<</say>>
<<narrate>>Before you can extend your hand out, she pulls you in for a hug, squeezing you tight.<</narrate>>
<<say "jill">>It's great to meet you! Thank you for this opportunity. Working off world, seeing lots of other travelers in a hub? I just can't imagine anything better!<</say>>
<<narrate>>$ember.name sees you a little taken back.<</narrate>>
<<say "ember">>One thing to be aware of for all of us is that we originate from different worlds, our cultures may therefore differ slightly.<</say>>
<<narrate>>$jill.name suddenly seems worried.<</narrate>>
<<say "jill">>Oh no, have I done something inappropriate?<</say>>
<</block>>
<<say "mc">>Not at all, that was for my benefit, not yours. I much prefer your way of greeting.<</say>>
<<think "mc">>Having a hot woman press herself against me? Of course, I'm down for that!<</think>>
<<narrate>>You spend the next 30 minutes going through the usual interview questions, asking why she's fit for the job, strengths, where she sees herself in years to come... etc...<</narrate>>
<<say "jill">>But where I really excel is my desire to please people.<</say>>
<<say "mc">>Oh, and how do you do that?<</say>>
<<say "jill">>Well, it depends on the people in question.<</say>>
<<say "ember">>Okay, how do you think myself and $name would like to be pleased?<</say>>
<<narrate>>She pauses for a moment.<</narrate>>
<<say "jill">>In the context of the bar, or more globally?<</say>>
<<say "mc">>Just the bar, for now.<</say>>
<<narrate>>She looks almost upset.<</narrate>>
<<say "jill">>I think you are a hard worker who likes to unwind by indulging in pleasures of the flesh. While I would never offer myself to a random customer, I would certainly do my best to make them feel desired. You, of course, are not a random customer.<</say>>
<<narrate>>Before you're able to question further, she moves on.<</narrate>>
<<say "jill">>As for you, $ember.name, I believe you are a creative type, a hands-on one, and take pleasure in your own work and the joy it brings to others.<</say>>
<<say "ember">>Spot on.<</say>>
<<say "jill">>I can also see, based on your body language, you have a desire to please $name.<</say>>
<<narrate>>$ember.name blushes, but nods.<</narrate>>
<<narrate>>From the interview you've gleaned that she has a mixology skill of 50 and is charismatic and flirtatious.<</narrate>>
<<say "mc">>Thank you, $jill.name. We'll be in touch.<</say>>
<<block "offworld/jill/interview02.jpg">>
<<narrate>>You get up to thank her and show her out, but as you do so, she flashes you her nipple.<</narrate>>
<<say "jill" "" "(Whispering)" "whisper">>Just think of the fun we could have together.<</say>>
<<narrate>>She runs her hand over your crotch then walks away, not once looking back.<</narrate>>
<<say "ember">>She's not afraid to use her charms, is she?<</say>>
<<say "mc">>Not even slightly.<</say>>
<<set _t = "Next Interview">>
<<if $ember.events.jadeseen == 1>>
<<set _t = "Make Decision">>
<</if>>
<<button _t emberanswers>>
<<event "ember" "jillseen">>
<<lust "jill" 5>>
<<like "jill" 5>>
<<if $ember.events.jadeseen == 1>>
<<temp "hirechoice">>
<<else>>
<<temp "jade">>
<</if>>
<</button>>
<</block>>
<<case "jade">>
<<say "ember">>Here's her resume. I'll meet you by the pool once I've got her.<</say>>
<<narrate>>You spend the time going through her information.<</narrate>>
<<narrate>>She seems to be a social creature, very well suited to bar work and has a decent amount of experience, though, still relatively early into her career.<</narrate>>
<<block "offworld/jade/interview01.jpg">>
<<say "jade">>Well, $ember.name failed to mention how handsome you were. Nice to meet you.<</say>>
<<say "mc">>The feeling's mutual. The pleasure is all mine.<</say>>
<<say "jade">>Oh believe me, we've yet to start the pleasure.<</say>>
<<narrate>>She gives you a wink before moving in for a hug. Her hand is resting on your ass and as you consider whether it was a mistake or not, you feel her tighten her grip.<</narrate>>
<<say "jade" "" "(Whispering)" "whisper">>Nice firm butt, just how I like it.<</say>>
<<narrate>>Feeling like you need to take a bit more control, you squeeze hers back.<</narrate>>
<<say "mc">>Not so bad yourself. $ember.name, take a feel of her ass.<</say>>
<</block>>
<<narrate>>While $ember.name looks puzzled, she does as you command. You see the change in $jade.name's attitude, but she remains smiling. You've proven your point.<</narrate>>
<<say "mc">>Take a seat, and let's chat.<</say>>
<<narrate>>You spend the next 30 minutes going through the usual interview questions, asking why she's fit for the job, strengths, where she sees herself in years to come... etc...<</narrate>>
<<say "jade">>But what I think really sets me apart from others is my eagerness and drive to learn. While I am an excellent mixologist, I realize I do not have the experience of my counterparts. But I'm willing to learn and eager to please. I'll do anything for this position, it feels like it's calling to me.<</say>>
<<say "ember">>Anything?<</say>>
<<narrate>>She lowers her top slightly.<</narrate>>
<<say "jade">>Anything.<</say>>
<<think "mc">>I think I can tell where this is going, but if I push it, I'll need to give her the job.<</think>>
<<choices "Test that theory?">>
<<link "Push her" emberanswers>>
<<temp "hirejade">>
<</link>>
<br>
<<link "Keep it professional" emberanswers>>
<<temp "jadepro">>
<</link>>
<</choices>>
<<case jadepro>>
<<block "offworld/jade/interview01.jpg">>
<<say "mc">>Thanks $jade.name, we'll be in touch.<</say>>
<<narrate>>She looks a bit flustered.<</narrate>>
<<say "jade">>Yes of course, but don't forget. <i>Anything.</i><</say>>
<</block>>
<<narrate>>After she leaves, $ember.name comes over to you.<</narrate>>
<<block "offworld/jade/ember01.jpg">>
<<say "ember">>How you didn't throw her to the floor and fuck her right there, I have no idea. She was practically begging you.<</say>>
<<think "mc">>Given $ember.name isn't great at picking up on innuendo or flirting, it must have been extremely blatant for her to say that.<</think>>
<<say "mc">>Who knows, maybe I still will? But, we should pick the right candidate based on their abilities first.<</say>>
<<say "ember">>I guess you're right, damn, she was hot, though, right?<</say>>
<<say "mc">>Yes, it took all my willpower not to jump her.<</say>>
<</block>>
<<set _t = "Next Interview">>
<<if $ember.events.jillseen == 1>>
<<set _t = "Make Decision">>
<</if>>
<<button _t emberanswers>>
<<event "ember" "jadeseen">>
<<event "ember" "hired">>
<<lust "jade" 5>>
<<like "jade" 5>>
<<if $ember.events.jillseen == 1>>
<<temp "hirechoice">>
<<else>>
<<temp "jill">>
<</if>>
<</button>>
<<case "hirechoice">>
<<narrate>>Having met and interviewed both candidates, you feel you know a little more now in order to make an informed decision.<</narrate>>
<<say "ember">>So what do you think?<</say>>
<<say "mc">>It's a difficult choice, $jill.name is clearly more experienced, but $jade.name is more eager and will learn faster.<</say>>
<<say "ember">>$jade.name will also sleep with us if she gets the job, not to say that $jill.name won't at some point either, but she needs a bit more work first.<</say>>
<<say "mc">>Oh, for sure, but I can't base the decision on who is willing to sleep with me.<</say>>
<<say "ember">>No, of course not, but if you're unsure which one to go with, I'm just pointing it out. If and when we expand the bar, we could always invite the one we don't employ back too, but that may be some time.<</say>>
<<say "mc">>Makes sense, thanks, $ember.name.<</say>>
<center>
<<choices "Who do you want to hire?">>
<<set _charismatic = window.traits.charismatic.info>>
<<set _flirt = window.traits.flirtatious.info>>
<<set _chatty = window.traits.chatty.info>>
<<set _fast = window.traits['fast learner'].info>>
<<set _amorous = window.traits.amorous.info>>
<<if $jill == undefined>>
/*<<run checkChars()>>*/
<</if>>
<div class="flex">
<div class="choices">
<div class="girlChoice" data-passage="emberanswers" data-setter="$tempvar to 'hirejill'">
<<center "offworld/jill/jillcrop.jpg">><br>
</div>
<<textbox "$jill.name" "Harmony">><br>
Mixology: 50<br>
Traits: <span class="trait" @title="_charismatic">Charismatic</span> & <span class="trait" @title="_flirt">Flirtatious</span><br>
Constraints: Barwork Only
</div>
<div class="choices">
<div class="girlChoice" data-passage="emberanswers" data-setter="$tempvar to 'hirejade'">
<<center "offworld/jade/jadecrop.jpg">><br>
</div>
<<textbox "$jade.name" "Tina">><br>
Mixology: 25<br>
Traits: <span class="trait" @title="_chatty">Chatty</span>, <span class="trait" @title="_fast">Fast Learner</span> & <span class="trait" @title="_amorous">Amorous</span><br>
Constraints: Barwork Only
</div>
</div>
<</choices>>
</center>
<<script>>
setup.scriptpromise.then(function () {
$('.trait').tooltip({
position: {
my: "center bottom",
at: "center top"
},
track: true
});
})
<</script>>
<<case "hirejade">>
<<say "mc">>We think you may be the right fit for the job, but—<</say>>
<<narrate>>She interrupts you.<</narrate>>
<<say "jade">>I think I know how to remove any buts.<</say>>
<<narrate>>She starts stripping down, you look over to $ember.name who just shrugs and then gives you a thumbs up.<</narrate>>
<<center "offworld/jade/interview03.jpg">>
<<say "jade">>Allow me to remove all doubts from your mind.<</say>>
<<narrate>>She crawls over to your lap and gently massages your cock through your bottoms.<</narrate>>
<<say "jade">>You'll be begging me to work for you once I'm done with you.<</say>>
<<say "ember">>Actions speak louder than words.<</say>>
<<think "mc">>Best wingman ever!<</think>>
<<narrate>>$ember.name makes her way over.<</narrate>>
<<say "ember">>But let's not forget, there's three of us here.<</say>>
<<think "mc">>Holy shit.<</think>>
<<button "Continue" embersex>>
<<temp "jade">>
<</button>>
<<case "hirejill">>
<<block "offworld/jill/interview03.jpg">>
<<say "mc">>Thanks for waiting, $jill.name.<</say>>
<<say "jill">>No problem.<</say>>
<<say "mc">>So, great news, we've decided to offer you the job. When can you start?<</say>>
<<say "jill">>Brilliant! I can start immediately, just show me to the bar!<</say>>
<<say "mc">>$ember.name will show you around and I'll sort your rota out a little later. Looking forward to working with you.<</say>>
<</block>>
<<say "ember">>Alright, please come with me.<</say>>
<<narrate>>She gets up to follow $ember.name, but when she's certain $ember.name isn't looking, she flashes you.<</narrate>>
<<block "offworld/jill/interview04.jpg">>
<<say "jill">>Please do come see me in the bar some time, boss. I'll prove to you and $ember.name you've made the right choice.<</say>>
<<say "mc">>You couldn't keep me away if you tried.<</say>>
<<narrate>>She giggles, gives you a wink over her shoulder then happily skips off after $ember.name.<</narrate>>
<<say "ember">>Oh, I'll inform the other candidate. Let's keep her in mind should another vacancy open up, though.<</say>>
<<notice>>
$jill.name will now work for you.
<</notice>>
<<button "Continue" homehub>>
<<lust "jill" 5>>
<<like "jill" 5>>
<<event "ember" "hired">>
<<like "ember" 2>>
<<worker "jill">>
<<taskdone "nowhiring">>
<<available "jill">>
<<time 1.5>>
<</button>>
<</block>>
<<case "bar">>
<<block _img>>
<<say "mc">>I've built a bar!<</say>>
<<narrate>>Her face drops.<</narrate>>
<<say "ember">>Let me guess, you want me to run it? I'll help, of course, but I never enjoyed that aspect of my job previously.<</say>>
<<say "mc">>No, no. Not at all, though I am kinda hoping you'll help me find someone suitable to work it.<</say>>
<<narrate>>She starts smiling again.<</narrate>>
<<say "ember">>Oh, thank god. I'd love to help you out with that, but I'm super relieved you don't want me there running the place! Obviously, if you ever need me to do the odd shift behind the bar, I'm more than happy to.<</say>>
<</block>>
<<say "mc">>Sure, I don't want you to do anything you're unhappy with.<</say>>
<<say "ember">>In terms of working the bar, I think both $molly.name and $kayla.name have the charisma and people-pleasing attitude to do it well, but both lack experience. I suggest we look off world, and let those two learn from a veteran.<</say>>
<<say "mc">>Great, well any suggestions where to start looking?<</say>>
<<say "ember">>Send me out for an expedition to $planets[2].name, and we'll see what's out there.<</say>>
<<say "mc">>Why that planet specifically?<</say>>
<<say "ember">>It's a planet that globally loves its nightlife and entertainment. Public houses, nightclubs, bars, even strip clubs, the hospitality services on offer there are top-notch.<</say>>
<<say "mc">>Great, I'll send you out soon.<</say>>
<<button "Continue" ember>>
<<if $ember.events.bar == undefined>>
<<like "ember" 3>>
<<event "ember" "bar">>
<<task "exphire">>
<</if>>
<</button>>
<<case "vodka">>
<<block _img>>
<<say "mc">>Do you fancy enjoying that vodka together now?<</say>>
<<if $ember.lust > 19>>
<<say "ember">>Sounds good, give me a few minutes, and I'll meet you in your room.<</say>>
<<say "mc">>Great, I'll grab some glasses.<</say>>
<<button "Continue" embersex>>
<<temp "vodka">>
<</button>>
<<else>>
<<say "ember">>Maybe another night?<</say>>
<<think "mc">>What an odd response, I guess despite the text message, she doesn't quite want me enough yet.<</think>>
<<button "Continue" ember>>
<<time 0.5>>
<</button>>
<</if>>
<</block>>
<<case "previously">>
<<block _img>>
<<say "mc">>What did you do on your home world?<</say>>
<<if $ember.like > 14>>
<<say "ember">>Gosh, so long ago, but I worked in a brewery. Set up a good few bars and helped our managers run them properly.<</say>>
<<think "mc">>Wow, not at all what I expected. Outside of her love for building things, I thought her to be a bit of an airhead, not some sort of regional manager.<</think>>
<<say "mc">>Wow, I had no idea. So you're used to managing people, around alcohol, no less?<</say>>
<<say "ember">>Yes, I was pretty good at it, but didn't really have any passion for it. Coming here was almost a blessing for me. The ability to create things, useful things, with my hands, without any lecherous old men telling me what to do.<</say>>
<<else>>
<<say "ember">>It was so long ago, don't really want to talk about it.<</say>>
<<think "mc">>We need to be more friendly if I want her to open up.<</think>>
<<button "Continue" ember>>
<<time 0.5>>
<</button>>
<</if>>
<</block>>
<<if $ember.like > 14>>
<<think "mc">>Well, I've got the lecherous part down!<</think>>
<<say "mc">>Right, I won't ask you to do anything like that here.<</say>>
<<say "ember">>Don't be silly, I'm happy to help. There's a massive difference between doing it for a living and to help a friend.<</say>>
<<say "mc">>Thanks, $ember.name. I'll try not to abuse that trust.<</say>>
<<button "Continue" ember>>
<<if $ember.events.previously == undefined>>
<<lust "ember" 1>>
<<like "ember" 3>>
<<event "ember" "previously">>
<</if>>
<</button>>
<</if>>
<<case "work">>
<<block _img>>
<<say "mc">>How's the facility; you enjoying it here?<</say>>
<<say "ember">>It's fantastic. Can't thank you enough. And the work is just so fun. I just love getting my hands dirty!<</say>>
<<say "mc">>Oh, is that the only thing you enjoy getting dirty?<</say>>
<<say "ember">>Hmm, well, I don't mind getting dirty if I'm working hard, but I don't take specific joy in it. It was just an expression, $name.<</say>>
<<think "mc">>As clueless as always.<</think>>
<</block>>
<<say "ember">>Come, sit with me and have some cookies.<</say>>
<<narrate>>You sit down beside her.<</narrate>>
<<say "ember">>You know, I wanted to thank you for what you've done.<</say>>
<<say "mc">>Are you kidding? You're the one helping me out!<</say>>
<<say "ember">>Well, how about a little more help, then?<</say>>
<<say "mc">>What do you have in mind?<</say>>
<<if $ember.lust > 19>>
<<say "ember">>I think it's easier I show you.<</say>>
<<narrate>>To your surprise, she crawls under the table, smiles at you through the glass then processed to massage your cock through your jeans.<</narrate>>
<<say "ember">>Now, do you understand?<</say>>
<<say "mc">>Perhaps I need a little more help after all.<</say>>
<<narrate>>She grins as she unzips your trousers.<</narrate>>
<<center "ember/workbj01.jpg">>
<<say "mc">>That's it, show me just how grateful you are.<</say>>
<<button "Continue" embersex>>
<<temp "workbj">>
<</button>>
<<else>>
<<say "ember">>I... uhhh, I think. Ah, perhaps some other time?<</say>>
<<think "mc">>She seems a little embarrassed, perhaps I need to make her a little more thirsty first.<</think>>
<<button "Continue" ember>>
<<like "ember" 1>>
<<time 0.5>>
<</button>>
<</if>>
<<case "wine">>
<<block _img>>
<<say "mc">>I'm looking for some vodka, which appears to be a bigger ordeal than I imagined. Are you able to help at all?<</say>>
<<say "ember">>I know my drinks, used to work for a brewery as you probably knew, so definitely the right person to come to. However, you won't find any here.<</say>>
<<say "mc">>Then $molly.name sent me on a fools' errand?<</say>>
<<say "ember">>I don't think so. Remember who and where you are, and the worlds you've given us access to. Our days of relying on the East are over.<</say>>
<<think "mc">>Could $molly.name have orchestrated this to point out we have most anything we want through the gateway?<</think>>
<</block>>
<<say "mc">>I was so focused on what we have here, I hadn't considered gathering luxuries through from the other side.<</say>>
<<say "ember">>And now you have. Next time you send me out exploring, I'll do my best to return with vodka.<</say>>
<<say "mc">>That would be fantastic! Thanks, $ember.name!<</say>>
<<say "ember">>Ah, don't thank me just yet. Once I've got some, join me for a tipple, and you can show your gratitude then.<</say>>
<<say "mc">>Of course!<</say>>
<<button "Continue" ember>>
<<if $molly.events.cosplaystart < 2>>
<<like 'ember' 2>>
<<lust 'ember' 1>>
<<event 'molly' 'cosplaystart' 2>>
<</if>>
<<taskdone "getwine2">>
<<time 0.5>>
<</button>>
<<case "seekwine">>
<<taskdone "getwine">>
<<narrate>>You search through the cupboards, but are unable to find any vodka.<</narrate>>
<<if !$girlshere.includes('ember')>>
<<if $girlshere.includes('molly')>>
<<say "molly">>If you're looking for vodka, you won't find any here.<</say>>
<<say "mc">>Where should I be looking then?<</say>>
<<say "molly">>Ha! If I knew, I wouldn't have asked you to get it for me!<</say>>
<<narrate>>She sticks out her tongue at you playfully.<</narrate>>
<<say "mc">>Okay, well, any clues?<</say>>
<<say "molly">>I'd check with $ember.name, she used to work for a brewery.<</say>>
<<say "mc">>Okay, I'll speak to her.<</say>>
<<else>>
<<if $girlshere.length != 0>>
<<set _w = either($girlshere)>>
<<say _w>>Lost something?<</say>>
<<say "mc">>Looking for some vodka.<</say>>
<<say _w>>You won't find any here, try asking $ember.name.<</say>>
<<say "mc">>Thanks, will do.<</say>>
<<else>>
<<think "mc">>Hmmm, who do I know that likes a drink?<</think>>
<</if>>
<</if>>
<<button "Continue" housestuff>>
<<time 0.5>>
<</button>>
<<else>>
<<taskdone "getwine2">>
<<block _img>>
<<say "ember">>You lost something?<</say>>
<<say "mc">>$molly.name asked me to find some vodka.<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say "ember">>She's a cheeky one. We don't have any. The Eastlanders do give us alcohol on occasion, but it's not exactly good quality stuff, and only once do I ever remember vodka been included.<</say>>
<<say "mc">>So she sent me on a fool's errand?<</say>>
<<say "ember">>Not exactly. Given what you can do, I fully suspect she's giving you a little push. I have to admit I'm quite partial to a good drink, vodka ranks quite highly. Next time I'm out on an expedition, I'll try and acquire some.<</say>>
<<say "mc">>That would be great!<</say>>
<<button "Continue" housestuff>>
<<if $molly.events.cosplaystart < 2>>
<<like 'ember' 1>>
<<event 'molly' 'cosplaystart' 2>>
<</if>>
<<time 0.5>>
<</button>>
<</block>>
<</if>>
<<case 'construction'>>
<div class="leftbit">
<img @src="setup.img+'ember/'+$location+'01.jpg'" class="leftimg">
</div>
<div class="rightbit">
<<say "mc">>So you really enjoy construction?<</say>>
<<say 'ember'>>
Absolutely, I love erecting things with my hands.
<</say>>
<<narrate>>You give her a little chuckle.<</narrate>>
<<say 'ember'>>
What's so funny? I was being serious. Watching your project get bigger and bigger as you work on it is super rewarding when it all comes together.
<</say>>
<<think "mc">>She must be doing this on purpose, right?<</think>>
<<say "mc">>Did you work on a lot of projects in your home world too?<</say>>
</div>
<<say 'ember'>>A few, but more like a hobbyist, nothing particularly large. I really got to enjoy it once I came here. But, there'd been nothing to excite me for a while. Your arrival sure fixed that!<</say>>
<<say "mc">>Great, I'm looking forward to what else we can do together.<</say>>
<<say 'ember'>>I know, isn't it exciting?!<</say>>
<<narrate>>She gives a massive grin and does a little happy clap.<</narrate>>
<<button "Continue" ember>>
<<if $ember.events.construction is undefined>>
<<set $ember.events.construction = 1>>
<<like "ember" 2>>
<</if>>
<<time 1>>
<</button>>
<<case 'east'>>
<div class="leftbit">
<img @src="setup.img+'ember/'+$location+'01.jpg'" class="leftimg">
</div>
<div class="rightbit">
<<say "mc">>What can you tell me about the Eastlanders?<</say>>
<<say 'ember'>>Well, we've been trading with them for as long as I've been here. They've always been aloof and don't really engage in conversation. They simply listen to our requests then vanish into the town and return later with the goods. The most we get out of them is one word answers and occasionally apologizing that they don't have a certain item.<</say>>
<<say "mc">>That seems rather peculiar.<</say>>
<<say 'ember'>>I know right? But we just kept with the status quo, after all, these people are feeding us. The revelation that they fear us kind of explains a lot, though.<</say>>
<<say 'ember'>>I'm not sure what they have to fear, but I can understand why they'd want to distance themselves from us if they believed us to be their undoing.<</say>>
</div>
<<say "mc">>Do you think their fear has merit?<</say>>
<<say 'ember'>>Ha! I mean, sure, $moriah.name and $britt.name can be scary, but in terms of destroying an entire town? Seems a bit far-fetched to me.<</say>>
<<say "mc">>So, probably just some urban myth?<</say>>
<<say 'ember'>>That'd be my guess, but even those usually originate from something real, but misunderstood.<</say>>
<br>
<<button "Continue" ember>>
<<if $ember.events.east is undefined>>
<<like "ember" 2>>
<<lust "ember" 1>>
<<set $ember.events.east = 1>>
<</if>>
<<time 1>>
<</button>>
<<case 'leximon'>>
<div class="leftbit">
<img @src="setup.img+'ember/'+$location+'01.jpg'" class="leftimg">
</div>
<div class="rightbit">
<<say "mc">>What do you think of $lexi.name and $monique.name?<</say>>
<<say 'ember'>>I actually respect them. They've effectively overcome their fear for the sake of their children. They spoke to us, and journeyed here with a belief that we could very well be their destruction. But they also understood their longing for this place meant something big was happening. It may not seem much, but I think them really brave to face that fear.<</say>>
<<say "mc">>I hadn't really thought about it like that. You're quite the deep thinker, aren't you?<</say>>
<<say 'ember'>>Nothing like $lacy.name, but I do like to consider things from multiple perspectives.<</say>>
<<say "mc">>I can see that. What do you think of me, then?<</say>>
</div>
<<say 'ember'>>You're a bit of an enigma, I think you are going to bring chaos in order to bring us safety. A wild ride, of sorts. And honestly, I'm all for a wild ride!<</say>>
<<say "mc">>Oh, really? Perhaps I can show you how wild this ride gets one evening?<</say>>
<<narrate>>She starts to look a bit flustered.<</narrate>>
<<if $ember.lust >= 10>>
<<say 'ember'>>Oh, I didn't mean to insinuate anything.<</say>>
<<narrate>>She blushes and looks away from you.<</narrate>>
<<say 'ember'>>But I think I might like to see where this goes.<</say>>
/*<<run addNightEvent('embernightvisit')>>*/
<<else>>
<<say 'ember'>>Oh, I didn't mean to insinuate anything.<</say>>
<</if>>
<br>
<<button "Continue" ember>>
<<if $ember.events.leximon is undefined>>
<<like "ember" 1>>
<<lust "ember" 2>>
<<set $ember.events.leximon = 1>>
<</if>>
<<time 1>>
<</button>>
<<case 'exp'>>
<<block _img>>
<<say "mc">>Would you be interested in heading through the gateway on missions?<</say>>
<<say 'ember'>>Oh, most definitely. I'll report to $armani.name and let her know I'm happy to.<</say>>
<<say "mc">>Great, thanks!<</say>>
<<if $armani.events.exp is undefined && $expeditions is undefined>>
<<think "mc">>I guess that was a subtle way of telling me expeditions need to be organized by $armani.name.<</think>>
<<task "armaniexp">>
<</if>>
<<notice>>$ember.name can now be sent on expeditions.<</notice>>
<<button "Continue" ember>>
<<if $ember.events.exp is undefined>>
<<like "ember" 1>>
<<explorer 'ember'>>
<<set $ember.events.exp = 1>>
<</if>>
<</button>>
<</block>>
<</switch>>
<</nobr>><<switch $tempvar>>
<<case "fun">>
<<block "ember/lounge01.jpg">>
<<say "mc">>Fancy some fun?<</say>>
<<say "ember">>Ohh, yeah, what do you wanna play?<</say>>
<<say "mc">>Oh, I have this fun—<</say>>
<<narrate>>She interrupts you.<</narrate>>
<<say "ember">>Oohh, let's play cards.<</say>>
<</block>>
<<think "mc">>Sometimes I forget she's not great at picking up on hints!<</think>>
<<narrate>>You indulge her, and win the first game.<</narrate>>
<<say "mc">>Okay, take a piece of clothing off, then.<</say>>
<<say "ember">>Wait, what?<</say>>
<<say "mc">>Well, you lost.<</say>>
<<say "ember">>And that means I need to remove clothing...?<</say>>
<<say "mc">>Yup, maybe you did it differently on your planet, but the loser has to strip.<</say>>
<<narrate>>She nods and takes off her top without any further hesitation.<</narrate>>
<<if $girlshere.length > 1>>
<<narrate>>During the course of the game, the others, either seeing where this is going or just needing to attend to other affairs, leave the lounge.<<if $girlshere.includes('vanna')>> The exception is $vanna.name who moves to sit close to the pair of you.<</if>><</narrate>>
<</if>>
<<think "mc">>Hell, yeah, I can still turn this around!<</think>>
<<narrate>>The two of you play a bit longer until you're naked, and she's only wearing stockings. You lose.<</narrate>>
<<say "ember">>Woohoo, I win again. So what happens now you're already fully naked?<</say>>
<<say "mc">>Well, you get a prize.<</say>>
<<narrate>>You push her down on to the sofa, part her legs and start feverishly eating her out.<</narrate>>
<<if $girlshere.includes('vanna')>>
<<say "vanna">>Mhhhm, that's it. Show her exactly what she's won!<</say>>
<<narrate>>You notice $vanna.name has her hands down her skirt, clearly enjoying herself in the moment. It only adds to your arousal.<</narrate>>
<</if>>
<<button "Continue" emberbj>>
<<if $girlshere.includes('vanna')>>
<<lust "vanna" 1>>
<</if>>
<<temp "fun01">>
<</button>>
<<case "fun01">>
<<vid "ember/lounge01.mp4">>
<<say "ember">>Ohhh, yes, ohhhh!<</say>>
<<narrate>>Her moans fill the room and drive you wild with desire.<</narrate>>
<<say "ember">>Yes, just like that!<</say>>
<<if $girlshere.includes('vanna')>>
<<narrate>>You hear $vanna.name moaning quietly in the background while whispering to herself.<</narrate>>
<<say "vanna" "" "(Whispering)" "whisper">>Mhhhm, yeah, eat her right up!<</say>>
<</if>>
<<narrate>>You continue to explore her vagina with your tongue as her moans become increasingly loud.<</narrate>>
<<say "ember">>Shit fucking god yes!<</say>>
<<narrate>>She reaches her crescendo with an almighty squeal that reverberates throughout the room.<</narrate>>
<<say "mc">>God, you're tasty.<</say>>
<<narrate>>After a few moments, she regains her composure.<</narrate>>
<<say "ember">>That was amazing, let me return the favor!<</say>>
<<narrate>>She gets on her hands and knees before you and brings your cock to her mouth.<</narrate>>
<<if $girlshere.includes('vanna')>>
<<say "vanna">>Oh fuck yes, keep going!<</say>>
<</if>>
<<button "Continue" emberbj>>
<<temp "fun02">>
<</button>>
<<case "fun02">>
<<vid "ember/lounge02.mp4">>
<<narrate>>She stares into your eyes as she teases the tip of your cock.<</narrate>>
<<say "ember">>You like that?<</say>>
<<say "mc">>I fucking love it. Show me just what that mouth does!<</say>>
<<narrate>>She cackles before taking your full length.<</narrate>>
<<button "Continue" emberbj>>
<<temp "fun03">>
<</button>>
<<case "fun03">>
<<vid "ember/lounge03.mp4">>
<<narrate>>You grab the back of her head as she holds on to your thighs and push her head up and down your cock.<</narrate>>
<<say "mc">>Oh, fuck.<</say>>
<<narrate>>Her nails dig into your thighs as you increase the force you exert on her head.<</narrate>>
<<say "mc">>Shit yes.<</say>>
<<if $girlshere.includes('vanna')>>
<<say "vanna">>Oh god yes, show her who's boss!<</say>>
<</if>>
<<narrate>>With a few final thrusts, you find your end and explode down her throat. You fall back on to the sofa.<</narrate>>
<<say "mc">>Damn, $ember.name, that was fucking great.<</say>>
<<if $girlshere.includes('vanna')>>
<<say "vanna">>Fuck yeah it was! Gonna go freshen up, but let me know next time you're doing a show!<</say>>
<<narrate>>$vanna.name leaves.<</narrate>>
<<say "ember">>She was here the entire time? That's so embarrassing!<</say>>
<<say "mc">>You didn't notice her? I just assumed you were as turned on as me by her watching us. And don't worry, she had a pretty good time herself.<</say>>
<</if>>
<<narrate>>The two of you go your separate ways to clean up.<</narrate>>
<<button "Continue" yourroom>>
<<unlock "ember" "funbj">>
<<lust "ember" 3>>
<<like "ember" 3>>
<<time 1>>
<</button>>
<<case "breakfast">>
<<say "mc">>Anything good in for breakfast?<</say>>
<<say "ember">>Depends on how hungry you are.<</say>>
<<narrate>>You push her back on to the table, and she lets out a cute little shriek.<</narrate>>
<<say "mc">>Ravenous.<</say>>
<<if $girlshere.length > 1>>
<<say "ember">>The others might see us!<</say>>
<<say "mc">>Sounds hot.<</say>>
<<say "ember">>Oh my god.<</say>>
<<say "mc">>What, I thought you liked to be watched?<</say>>
<</if>>
<<narrate>>You start undressing her.<</narrate>>
<<say "mc">>Loving the lingerie.<</say>>
<<narrate>>You pull off her panties and stare at her juicy, wet pussy.<</narrate>>
<<vid "ember/kitchenstrip.mp4">>
<<say "ember">>You're so bad! Eat up, don't want it to go cold.<</say>>
<<button "Continue" emberbj>>
<<temp "breakfast01">>
<</button>>
<<case "breakfast01">>
<<vid "ember/kitchen01.mp4">>
<<narrate>>You greedily lap at her pussy, determined to explore every part of it with your tongue.<</narrate>>
<<say "ember">>Shit, mhhhmmm.<</say>>
<<narrate>>Her moans echo around the room, she's not even trying to be quiet.<</narrate>>
<<say "ember">>Oh, fuck yes.<</say>>
<<narrate>>The thrill of potentially getting caught along with your tongue jabbing at her clit soon consumes her, and she starts slapping at the table as the orgasm washes over her.<</narrate>>
<<if $girlshere.length > 1>>
<<set $girlshere.delete('ember')>>
<<set _who = either($girlshere)>>
<<set _n = State.variables[_who].name>>
<<say _who>>Guys! We eat here!<</say>>
<<narrate>>You can't help but notice how red her face is.<</narrate>>
<<say "mc">>That's exactly what I just did!<</say>>
<<narrate>>$ember.name giggles while _n gives you the stink-eye.<</narrate>>
<<set $girlshere.pushUnique('ember')>>
<</if>>
<<say "mc">>Well, that was a hearty breakfast.<</say>>
<<narrate>>As $ember.name gets dressed, the two of you flirt a little.<</narrate>>
<<button "Continue" housestuff>>
<<if $girlshere.length > 1>>
<<lust _who 1>>
<<like _who -1>>
<</if>>
<<lust "ember" 3>>
<<like "ember" 3>>
<<unlock "ember" "breakfast">>
<<time 1>>
<</button>>
<<case "peepbj">>
<<narrate>>As you approach $ember.name's room, you notice the door is wide open again.<</narrate>>
<<vid "ember/join01.mp4">>
<<say "ember">>Ah, I've been waiting for you.<</say>>
<<narrate>>She continues to finger herself as you close the door behind you.<</narrate>>
<<think "mc">>No toys today... I wonder if I can push a bit.<</think>>
<<say "mc">>Having fun?<</say>>
<<say "ember">>Oh, even more now.<</say>>
<<narrate>>Her moans grow louder the closer you get to her.<</narrate>>
<<say "ember">>Oh, my fuck. Shit yes.<</say>>
<<narrate>>As you pull out your cock, she starts rubbing her clit vigorously, trying to find her climax.<</narrate>>
<<say "mc">>How about something a bi—<</say>>
<<narrate>>Her moans silence you as the orgasm washes over her body.<</narrate>>
<<say "ember">>Oh god, fuck me, yes!<</say>>
<<narrate>>You give her a moment.<</narrate>>
<<think "mc">>Fuck it, let's go for broke.<</think>>
<<say "mc">>So, wanna take care of this too?<</say>>
<<narrate>>She licks her lips and stares at your cock.<</narrate>>
<<button "Continue" emberbj>>
<<temp "peepbj02">>
<</button>>
<<case "peepbj02">>
<<narrate>>She crawls over to you with such force, you fall back on to her bed. She wastes no time taking your bellend into her mouth.<</narrate>>
<<vid "ember/join02.mp4">>
<<say "mc">>Fuck that's good.<</say>>
<<narrate>>As she continues, the wet sounds only turn you on more.<</narrate>>
<<say "mc">>How are you this damn good?<</say>>
<<narrate>>She laughs.<</narrate>>
<<say "ember">>I've barely started.<</say>>
<<button "Continue" emberbj>>
<<temp "peepbj03">>
<</button>>
<<case "peepbj03">>
<<vid "ember/join03.mp4">>
<<narrate>>She speeds up while bringing her hand to stroke your shaft.<</narrate>>
<<say "mc">>Fuck fuck fuck!<</say>>
<<narrate>>You see the pleasure in her eyes as she continues.<</narrate>>
<<say "mc">>Shit, I'm gonna cum!<</say>>
<<narrate>>She enthusiastically slurps down on your dick as you unleash your load down her throat.<</narrate>>
<<narrate>>After a moment, she gasps for air, then shows you her open mouth to prove she swallowed your love.<</narrate>>
<<say "mc">>Shit, that was good.<</say>>
<<say "ember">>Oh, I have many talents.<</say>>
<<say "mc">>Looking forward to trying them all out.<</say>>
<<say "ember">>Ha! Bet you are.<</say>>
<<narrate>>The two of you flirt for a bit before you head back to your room.<</narrate>>
<<button "Sleep" sleep>>
<<if $ember.lustlvl == 0>>
<<set $ember.lustlvl = 1>>
<<set $ember.oral = 1>>
<</if>>
<<unlock "ember" "peepbj">>
<<lust "ember" 2>>
<</button>>
<</switch>><<set $scene = 0>>
<<set _active = "ember">>
<<set _passage = _active+"answers">>
<<set $girlsmet.pushUnique('ember')>>
<<set $return = returnLocation()>>
<<smallflirt "ember">>
<<if $location == "construction" >>
<<link "Enjoying construction?" emberanswers>>
<<temp "work">>
<</link>>
<br>
<</if>>
<<if $tasks.festival4 != undefined && $ember.events.stage == undefined>>
<<opt "Festival Stage" festprep ritastage>><</opt>>
<</if>>
<<if $ember.events.appraisal == "other" && $completeTasks.includes('nowhiring2')>>
<<opt "Staff Evaluations" _passage appraisal2>><</opt>>
<</if>>
<<if $neweden == true && $ember.events.appraisal == undefined>>
<<opt "Staff Evaluations" _passage appraisal>><</opt>>
<</if>>
<<if ($charlie.events.ember != "sex" || ($possess >= 2 && $charlie.events.ember != "all")) && $charlie.events.ember != undefined && $girlsavailable.includes('charlie')>>
<<opt "Charlie" _passage charlie>><</opt>>
<</if>>
<<if (checkUnlocks('movie', 'ritaew', 'ember') == true || checkUnlocks('movie', 'jadebj', 'ember') == true) && $buildings.brothel != undefined && !$brothel.includes('ember')>>
<<link "Performing" emberanswers>>
<<temp "performing">>
<</link>><br>
<</if>>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $ember.events.planets == undefined>>
<<link "Home World" emberanswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if $items != undefined && $items.music > 0 && $ember.sex > 0 && $buildings.spa != undefined && $ember.events.record == undefined>>
<<link "Give Record" emberanswers>>
<<temp "record">>
<</link>><br>
<</if>>
<<if $tasks.eightchamps != undefined>>
<<link "Champions" emberanswers>>
<<temp "champions">>
<</link>>
<br>
<</if>>
<<if $tasks.eightchampsdetective != undefined && $ember.events.weird == undefined>>
<<link "Noticed anything odd?" emberanswers>>
<<temp "weird">>
<</link>>
<br>
<</if>>
<<if $tasks.eightchampsdetective != undefined && $ember.events.trans == undefined>>
<<link "Transformation" emberanswers>>
<<temp "trans">>
<</link>>
<br>
<</if>>
<<if $location == "kitchen" && $hour < 11 && $ember.lust > 19>>
<<link "Breakfast" emberbj>>
<<temp "breakfast">>
<</link>>
<br>
<</if>>
<<if $location == "lounge" && $ember.lust > 19>>
<<link "Fancy some fun?" emberbj>>
<<temp "fun">>
<</link>>
<br>
<</if>>
<<if $tasks.getwine2 isnot undefined && $molly.events.cosplaystart == 1>>
<<link "Vodka" emberanswers>>
<<temp "wine">>
<</link>>
<br>
<</if>>
<<if $molly.events.cosplaystart >= 3 && $hour >= 17 && $day != 12>>
<<link "Nightcap" emberanswers>>
<<temp "vodka">>
<</link>>
<br>
<</if>>
<<if $buildings.bar != undefined && $ember.events.bar == undefined>>
<<link "Bar" emberanswers>>
<<temp "bar">>
<</link>>
<br>
<</if>>
<<if $tasks.nowhiring != undefined>>
<<link "Interviews" emberanswers>>
<<temp "interviews">>
<</link>>
<br>
<</if>>
<<if $ember.events.construction == undefined>>
<<link "Construction" emberanswers>>
<<set $tempvar = "construction">>
<</link>>
<br>
<</if>>
<<if $ember.events.previously == undefined>>
<<link "Previous work" emberanswers>>
<<temp "previously">>
<</link>>
<br>
<</if>>
<<if $ember.events.east == undefined>>
<<link "Eastlanders" emberanswers>>
<<set $tempvar = "east">>
<</link>>
<br>
<</if>>
<<if $ember.events.leximon == undefined>>
<<link "$lexi.name & $monique.name" emberanswers>>
<<set $tempvar = "leximon">>
<</link>>
<br>
<</if>>
<<if !$explorers.includes('ember')>>
<<link "Expeditions" emberanswers>>
<<set $tempvar = "exp">>
<</link>>
<br>
<</if>>
<<link "Never mind" $return>><</link>><<switch $tempvar>>
<<case "embernight01">>
<<block "ember/night01.jpg">>
<<say "ember">>Now, where were we before we were rudely interrupted?<</say>>
<<say "mc">>Whatever do you mean?<</say>>
<<say "ember">>Oh, does someone need a reminder?<</say>>
<<narrate>>She flings her panties at you, then sits on your bed.<</narrate>>
<<say "ember">>I think it was something like this...<</say>>
<<narrate>>With dramatic effect, she moves her hands down her body, then starts pleasing herself.<</narrate>>
<<button "Continue" embernightvisits>>
<<temp "embernight02">>
<</button>>
<</block>>
<<case "embernight02">>
<<vid "ember/night01.mp4">>
<<say "ember">>Ummm, yes, I was enjoying myself, something similar to this.<</say>>
<<narrate>>She moans as she continues to pleasure herself.<</narrate>>
<<say "mc">>Nope, not ringing any bells, were we doing anything else?<</say>>
<<say "ember">>Well... just before...<</say>>
<<narrate>>She crawls over to on the bed, grabs your dick and places it to her lips.<</narrate>>
<<say "ember">>Anything?<</say>>
<<say "mc">>Not just yet.<</say>>
<<narrate>>She chuckles before she starts sucking your cock.<</narrate>>
<<button "Continue" embernightvisits>>
<<temp "embernight03">>
<</button>>
<<case "embernight03">>
<<vid "ember/night02.mp4">>
<<say "mc">>Oh fuck, I think I'm starting to get the picture.<</say>>
<<narrate>>She sucks on your bellend with such force, each time she releases there's a small pop.<</narrate>>
<<say "mc">>Shit, $ember.name, calm down!<</say>>
<<narrate>>She greedily continues as if encouraged by your words to try even harder. She starts feverishly working your full length.<</narrate>>
<<say "mc">>Shit, that's it. No more.<</say>>
<<narrate>>You throw her off to the side of the bed, and she looks confused, almost upset, as you start to get up.<</narrate>>
<<say "ember">>But what—<</say>>
<<narrate>>You pull her legs apart, grab your dick and guide it into her pussy.<</narrate>>
<<button "Continue" embernightvisits>>
<<temp "embernight04">>
<</button>>
<<case "embernight04">>
<<vid "ember/night03.mp4">>
<<say "ember">>Oh fuck, god yes!<</say>>
<<narrate>>You keep pounding her, determined to get your fill.<</narrate>>
<<say "ember">>Oooaa, yes. Ohhh fuck.<</say>>
<<narrate>>Her moans drive you to shift gear.<</narrate>>
<<button "Continue" embernightvisits>>
<<temp "embernight05">>
<</button>>
<<case "embernight05">>
<<vid "ember/night04.mp4">>
<<say "ember">>Oh, fuck yes!<</say>>
<<narrate>>You furiously thrust against her, seeing the finale draw close, she enthusiastically pleads with you.<</narrate>>
<<say "ember">>Cum all over me. Ooohhhh fuck.<</say>>
<<narrate>>Her cries only fuel your passion, and you feel your climax at hand.<</narrate>>
<<button "Continue" embernightvisits>>
<<temp "embernightcum">>
<</button>>
<<case "embernightcum">>
<<vid "ember/nightcum01.mp4">>
<Br>
<<narrate>>You collapse into her, tired and sweaty, the rhythm of her heartbeat against your ear easing you into a sleep.<</narrate>>
<<button "Sleep" sleep>>
<<unlock "ember" "night01">>
<<lust 'ember' 4>>
<<like 'ember' 3>>
<<temp "emberstay">>
<<if $ember.lustlvl == 1>>
<<set $ember.lustlvl = 2>>
<</if>>
<</button>>
<<case 'refuse'>>
<<say "mc">>Don't worry about, I'm not bothered $ember.name, I'm just gonna get some sleep.<</say>>
<<say "ember">>I... but... okay.<</say>>
<<narrate>>You hear her sobbing as she walks off.<</narrate>>
<<like "ember" -4>>
<<lust "ember" -4>>
<<button "Continue" bedroom>><</button>>
<</switch>><<scene>>
<<switch $tempvar>>
<<case "jill">>
<<narrate>>$jill.name already has drinks waiting as you approach.<</narrate>>
<<say jill>>To you, boss!<</say>>
<<narrate>>She holds up her drink and you all clink glasses.<</narrate>>
<<narrate>>As the drinks flow, the chat becomes increasingly steamy.<</narrate>>
<<say jill>>You're certainly one of the better looking bosses I've had.<</say>>
<<say mc>>Oh, you've not <b>had</b> me yet.<</say>>
<<narrate>>She pauses, looking at you silently.<</narrate>>
<<think mc>>Shit, did I cross the line too quickly?<</think>>
<<narrate>>She grins.<</narrate>>
<<say jill>>Then maybe we should rectify that error.<</say>>
<<narrate>>She places her hand on your thigh.<</narrate>>
<<say ember>>Hey now, don't forget about me!<</say>>
<<say jill>>Oh, believe me, I hadn't.<</say>>
<<narrate>>You quickly shotgun the rest of your drink and take the two of them back to your room.<</narrate>>
<<narrate>>You're barely in the door and the two of them are ripping your clothes off.<</narrate>>
<<cont "embersex" "jill01">>
<<case "jill01">>
<<narrate>>They take turns playing with your cock, one of them taking your shaft and the other giving attention to your balls.<</narrate>>
<<vid "ember/jill01.mp4">>
<<say mc>>Now, this is how you build good working relations!<</say>>
<<narrate>>The two chuckle.<</narrate>>
<<say jill>>How about my bosses give me a hands-on demonstration?<</say>>
<<cont "embersex" "jill02">>
<<case "jill02">>
<<narrate>>$ember.name needs no encouragement, she's pushed you down on to the bed and mounted you within seconds.<</narrate>>
<<vid "ember/jill02.mp4">>
<<narrate>>$jill.name looks at you both, the lust in her eyes growing as $ember.name gently bounces on your cock.<</narrate>>
<<say jill>>That is so hot.<</say>>
<<cont "embersex" "jill03">>
<<case "jill03">>
<<vid "ember/jill03.mp4">>
<<narrate>>$jill.name keeps switching her glance from you to $ember.name.<</narrate>>
<<say ember>>Oh my god, I love that. Oh, my god, I really love that.<</say>>
<<narrate>>$jill.name rubs $ember.name's clit while massaging her tit with her other hand.<</narrate>>
<<say ember>>Am I being too greedy? Show her why you're the boss!<</say>>
<<cont "embersex" "jill04">>
<<case "jill04">>
<<vid "ember/jill04.mp4">>
<<narrate>>The two of them rub each other's clits as you gently slide in and out of $jill.name's tight pussy.<</narrate>>
<<say jill>>Oh my god, yes, yes!<</say>>
<<cont "embersex" "jill05">>
<<case "jill05">>
<<vid "ember/jill05.mp4">>
<<narrate>>$ember.name looks almost possessed as she pushes herself up against $jill.name's ass and holds your thigh, pulling and pusing it in time with your thrusts.<</narrate>>
<<say ember>>It's all for you, huh?<</say>>
<div class="flex">
<<say "jill" "" "" "" "width:45%; display: inline-block;">>
Ohhhh~ yes, yes, yes, yes!
<</say>>
<<say "ember" "" "" "" "width:45%; display: inline-block; margin-left: 20px;">>
Oh, yes, stretch her out!
<</say>>
</div>
<<say "jill">>Ohh, fuck, yes, yes, yes, yes!<</say>>
<<narrate>>The lustful craze from $ember.name, and the tight of grip of $jill.name's pussy all combine to take you to the brink.<</narrate>>
<<say mc>>Fuck, fuck, I'm cumming!<</say>>
<<narrate>>They scramble to their knees before you can finish.<</narrate>>
<<say jill>>Let's share. Decorate our faces!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "ember/jill06.mp4">>
<<say mc>>Fuuucking yeeees!<</say>>
<<narrate>>You blow, leaving cum dripping down their chins.<</narrate>>
<<say jill>>Now this is an employee benefit!<</say>>
<<narrate>>$ember.name snorts with laughter, and immediately starts coughing when she accidentally snorts your spunk. You and $jill.name chuckle.<</narrate>>
<<say ember>>Not funny!<</say>>
<<narrate>>You clean up leaving those two giggling together.<</narrate>>
<<button "Continue" housestuff>>
<<set $location = "bedrooms">>
<<lust "jill" 4>>
<<lust "ember" 4>>
<<if checkUnlocks('movie', 'jadebj', 'ember') == false>>
<<event "ember" "appraisal" "other">>
<<else>>
<<event "ember" "appraisal" "done">>
<</if>>
<<unlock "ember" "jill">>
<<unlock "jill" "ember">>
<<run overrideSchedule("jill", 17, 24, "")>>
<<time 2>>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "jadeappbj">>
<<narrate>>As soon as you're back in the lounge, $ember.name throws off her blouse and paws at your trousers.<</narrate>>
<<say jade>>Uhh...<</say>>
<<say mc>>What's wrong, $jade.name?<</say>>
<<say jade>>I think there's been a miscommunication, I just wanted to make sure I was putting the right amount of head on a pint.<</say>>
<<narrate>>$ember.name howls with laughter.<</narrate>>
<<say ember>>Should I stop?<</say>>
<<say jade>>No... I'm definitely down for watching this too... it's just not what I meant.<</say>>
<<say ember>>Great, because I love an audience!<</say>>
<<say mc>>And I'm always down for getting my dick wet.<</say>>
<<narrate>>The three of you have one last chuckle before $ember.name pulls down your jeans, your cock bouncing onto her forehead as she does so.<</narrate>>
<<cont "embersex" "jadeappbj01">>
<<case "jadeappbj01">>
<<vid "ember/jadebj01.mp4">>
<<narrate>>She takes your cock gently, and slowly at first. Almost like a warm up.<</narrate>>
<<say ember>>I love the feeling of you growing harder in my mouth.<</say>>
<<narrate>>$jade.name looks enthralled, you were hoping she'd join in but given the look in $ember.name's eyes right now, you're unsure you'll be able to last long enough for her, never mind two.<</narrate>>
<<cont "embersex" "jadeappbj02">>
<<case "jadeappbj02">>
<<vid "ember/jadebj02.mp4">>
<<narrate>>She picks up the pace, the sloppy sounds of her work echoing around the room.<</narrate>>
<<say mc>>Fucking hell!<</say>>
<<say ember>>Fuck my throat, let me show her how I can please you!<</say>>
<<cont "embersex" "jadeappbj03">>
<<case "jadeappbj03">>
<<narrate>>She lays on the bed, her head hanging over the side.<</narrate>>
<<vid "ember/jadebj02.5.mp4">>
<<narrate>>You waste no time ramming your cock down her throat, it's almost violent as you start thrusting.<</narrate>>
<<say jade>>Whoa!<</say>>
<<narrate>>As you give her pause to gasp for breath, a mix of fluids drip down her face.<</narrate>>
<<say jade>>This is wild!<</say>>
<<narrate>>You rub your cock over $ember.name's face as she laughs.<</narrate>>
<<cont "embersex" "jadeappbj04">>
<<case "jadeappbj04">>
<<vid "ember/jadebj03.mp4">>
<<narrate>>Her face still covered in saliva, she races for the finish, determined to finish you off and display her handiwork to $jade.name.<</narrate>>
<<say "mc">>Fuck, fuck, fuck, I'm close, I'm fucking close!<</say>>
<<narrate>>She speeds up, pushing you over the edge.<</narrate>>
<<say ember>>Cover me in your goo! Shower me with your liquid affection!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "ember/jadebj04.mp4">>
<<say mc>>Yes, hnnng, fucking fuuuuck!<</say>>
<<narrate>>You unleash your seed messily on her face while $jade.name just looks on with a deep fascination.<</narrate>>
<<say jade>>Wow. Are you guys always like this?<</say>>
<<say ember>>We like to mix it up. Anyway, give me a few minutes to clean up, and I'll show you how to put the perfect head on a pint too.<</say>>
<<narrate>>You slump back in the chair, all worries temporarily fading into the background.<</narrate>>
<<button "Continue" housestuff>>
<<set $location = "bedrooms">>
<<lust "ember" 4>>
<<like "ember" 4>>
<<lust "jade" 2>>
<<if checkUnlocks('movie', 'jill', 'ember') == false>>
<<event "ember" "appraisal" "other">>
<<else>>
<<event "ember" "appraisal" "done">>
<</if>>
<<set _arr = ['bar']>>
<<cover "jade" _arr>>
<<unlock "ember" "jadebj">>
<<time 2>>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "charlie">>
<<if $replay == true>>
<<notice>>This scene has two variants, which would you like to watch?<</notice>>
<<choices>>
<div class="flex">
<<if ($cheats != undefined && $cheats.movies != undefined && $cheats.movies == 1) || $movies.ember.charlie01.variants.includes('possess') || $tempvar2 == "either">>
<<link '<div class="girlChoice">
<img @src="setup.img+\'icons/possess.svg\'" style="height:250px"><br>
Possession
</div>' embersex>>
<<temp "charlie01">>
<<set $tempvar2 = "possess">>
<</link>>
<<else>>
<div class="girlChoice">
<img @src="setup.img+'icons/possess.svg'" style="height:250px"><br>
Possession Variant not seen <<step "" `"To unlock the possession variant, talk to "+$ember.name+" about "+$charlie.name+" and suggest you possess him. Then possess him when they are both in the bedroom."`>>
</div>
<</if>>
<<if ($cheats != undefined && $cheats.movies != undefined && $cheats.movies == 1) || $movies.ember.charlie01.variants.includes('charlie')>>
<<link '<div class="girlChoice">
<img @src="setup.img+\'icons/eye.svg\'" style="height:250px"><br>
Voyeurism
</div>' embersex>>
<<temp "charlie01">>
<<set $tempvar2 = "charlie">>
<</link>>
<<else>>
<div class="girlChoice">
<img @src="setup.img+'icons/eye.svg'" style="height:250px"><br>
Voyeurism Variant not seen <<step "" `"To unlock the voyeurism variant, talk to "+$ember.name+" about "+$charlie.name+" and suggest she does more with him. Then watch them together in his bedroom."`>>
</div>
<</if>>
</div>
<</choices>>
<<else>>
<<think mc>>Hmm, should I possess $charlie.name him, or just watch them?<</think>>
<div class="flex">
<<link '<div class="girlChoice">
<img @src="setup.img+\'icons/possess.svg\'" style="height:250px"><br>
Possession
</div>' embersex>>
<<temp "charlie01">>
<<set $tempvar2 = "possess">>
<</link>>
<<link '<div class="girlChoice">
<img @src="setup.img+\'icons/eye.svg\'" style="height:250px"><br>
Voyeurism
</div>' embersex>>
<<temp "charlie01">>
<<set $tempvar2 = "charlie">>
<</link>>
</div>
<</if>>
<<case "charlie01">>
<<if $tempvar2 == "charlie">>
<<narrate>>You head to $charlie.name's room. When $ember.name sees you at the door, she gives you thumbs up while $charlie.name isn't looking then places her foot between his legs while lifting her skirt to reveal her thigh to him.<</narrate>>
<<say ember>>So... how about you give me something to really polish off?<</say>>
<<narrate>>He coughs and shifts uncomfortably, his eyes darting around the room.<</narrate>>
<<say charlie>>What about $charlie.calls?<</say>>
<<say ember>>He's okay with it.<</say>>
<<say charlie>>Seriously?<</say>>
<<say ember>>Seriously.<</say>>
<<narrate>>$charlie.name immediately stands up and starts unzipping. $ember.name giggles at his reaction. You sneak in and hide behind a cabinet while his attention is diverted.<</narrate>>
<<cont "embersex" "charlie02">>
<<else>>
<<narrate>>You sneak into $charlie.name's room while $ember.name is giggling and keeping his attention. You sit by the cabinet out of view, then concentrate, trying to feel his consciousness. Slowly you take root, at first just seeing $ember.name through his eyes, feeling his libido as he gazes upon her, then gradually you take full control.<</narrate>>
<<say ember>>$name...?<</say>>
<<narrate>>You answer by pulling her head into yours and kissing her passionately.<</narrate>>
<<say ember>>This is so weird... yet so hot.<</say>>
<<narrate>>She pulls you up off the sofa then lowers herself to her knees.<</narrate>>
<<cont "embersex" "charlie03">>
<</if>>
<<case "charlie02">>
<<narrate>>Her eyes gaze up at his as she lowers herself to the floor.<</narrate>>
<<vid "charlie/ember01.mp4">>
<<narrate>>As she devours his cock, he throws his head back and moans with relief.<</narrate>>
<<cont "embersex" "charlie05">>
<<case "charlie03">>
<<vid "charlie/ember02p.mp4">>
<<narrate>>She looks up at you as she slides her mouth around your cock.<</narrate>>
<<narrate>>She giggles, the vibrations tickling the tip of your penis.<</narrate>>
<<say "charlie" $name "(Possession)" "" "" "possessed">>Fuck, that's good.<</say>>
<<cont "embersex" "charlie04">>
<<case "charlie04">>
<<narrate>>She jumps up with a start, grins at you walks toward the bed.<</narrate>>
<<vid "charlie/ember03p.mp4">>
<<narrate>>She lifts up her skirt, revealing a lack of panties, and grins at you.<</narrate>>
<<say ember>>Take me.<</say>>
<<cont "embersex" "charlie07">>
<<case "charlie05">>
<<narrate>>She leans herself over the edge of the bed, her eyes briefly meetings yours as she presents herself to $charlie.name.<</narrate>>
<<vid "charlie/ember04.mp4">>
<<say ember>>C'mere. Fuck me.<</say>>
<<narrate>>He gleefully accepts her invitation and she gasps with delight as he enters her.<</narrate>>
<<cont "embersex" "charlie06">>
<<case "charlie06">>
<<vid "charlie/ember05c.mp4">>
<<say ember>>Oh, my god.<</say>>
<<say ember>>You really hit the right spot.<</say>>
<<narrate>>You watch as $charlie.name hungrily pounds against her, his movements full of greed and impatience.<</narrate>>
<<think mc>>I'm guessing it's been a while for him...<</think>>
<<cont "embersex" "charlie07">>
<<case "charlie07">>
<<vid "charlie/ember06.mp4">>
<<say ember>>Oh, fuck.<</say>>
<<say ember>>Oh, my god. There's a massive dick inside my fucking pussy. I like that, oh, god!<</say>>
<<if $tempvar2 == "possess">>
<<think mc>>This is so fucking wrong... but fuck me it feels good!<</think>>
<<else>>
<<narrate>>You can tell from her movements and glances in your direction that playing up for your entertainment is a huge turn on for her.<</narrate>>
<</if>>
<<say ember>>Oh, my god, I think I love it, yeah!<</say>>
<<if $tempvar2 == "possess">>
<<cont "embersex" "charlie08">>
<<else>>
<<cont "embersex" "charlie09">>
<</if>>
<<case "charlie08">>
<<narrate>>She pushes you down on to the bed and mounts you.<</narrate>>
<<vid "charlie/ember07p.mp4">>
<<say ember>>Ahhh~ yes.<</say>>
<<narrate>>She maintains eye contact as she bounces on your cock, her face a caricature of lust.<</narrate>>
<<say ember>>Oh, fuuuuuck. Oh, fuck, yeah.<</say>>
<<cont "embersex" "charlie10">>
<<case "charlie09">>
<<vid "charlie/ember08.mp4">>
<<say ember>>Oh, my god, yeah. Pump up into me.<</say>>
<<say ember>>Pound right into me like that, it's so fucking good.<</say>>
<<say ember>>Ohh~ you're gonna make me cum.<</say>>
<<narrate>>You can't help but notice her gaze is entirely focused on you when she says that.<</narrate>>
<<cont "embersex" "charlie11">>
<<case "charlie10">>
<<vid "charlie/ember09p.mp4">>
<<say ember>>Ohhh~ fuck, yes.<</say>>
<<narrate>>You pound away, mesmerized by the bounce of her breasts with every thrust.<</narrate>>
<<say ember>>Fuck!<</say>>
<<narrate>>You feel the warmth growing inside your body, the feeling of pleasure culminating together and screaming for release.<</narrate>>
<<button "Cum" embersex>>
<<temp "charlie12">>
<</button>>
<<case "charlie11">>
<<vid "charlie/ember10c.mp4">>
<<say ember>>Oh, shit, yes, right there. Now show me what a real man you are. Go on, I know you can do it. Yes, yes, fuck me!<</say>>
<<narrate>>She's almost goading him as she draws closer to erupting.<</narrate>>
<<say ember>>Yes, shower my tits in your cum!<</say>>
<<narrate>>Unable to take anymore, he pulls out and immediately blows his load over her body. She jerks the last few drops from him, then slyly looks at you.<</narrate>>
<<center "ember/charlie03.jpg">>
<<narrate>>She gives you a wink as you sneak out.<</narrate>>
<<think mc>>She definitely got off on me watching, I wonder if she'd have been the same if it was anyone else was watching?<</think>>
<<button "Continue" housestuff>>
<<lust charlie 4>>
<<lust ember 4>>
<<like ember 4>>
<<unlock "ember" "charlie01" "charlie">>
<<event "charlie" "arsehole" 12>>
<<set $tempvar2 = "">>
<<time 1.5>>
<</button>>
<<case "charlie12">>
<<vid "charlie/ember11p.mp4">>
<<say "charlie" $name "(Possession)" "" "" "possessed">>Oh, fuck, I'm gonna cum.<</say>>
<<say ember>>I want your cum!<</say>>
<<narrate>>She grabs your cock with both hands, and with an almost wicked smile, milks every last drop from you.<</narrate>>
<<say ember>>That was so weird... yet so... I don't know. Let's definitely do that again, it was like a threesome without actually being one.<</say>>
<<think mc>>What... no... I don't think I like that analogy...<</think>>
<<narrate>>As you're pondering her description, you lose focus on $charlie.name's consciousness and find yourself awaken leaning against the cabinet you left your body at. You quickly make your escape, noting $ember.name has already left.<</narrate>>
<<think mc>>I have no idea how conscious he was for any of that... but a part of me hopes he was vaguely aware, but unable to act, a little bit of revenge for the years of hell he put me through. Though, $ember.name calling it a threesome kinda took me by surprise. Eh, it's done now, not worth stewing over it.<</think>>
<<unlock "ember" "charlie01" "possess">>
<<set $tempvar2 = "">>
<<if $replay == false && $charlie.events.ember == "possess" && $charlie.events.arsehole == 11>>
<<narrate>>$ember.name appears before you as you're walking down the hall, her maid outfit an absolute mess.<</narrate>>
<<say ember>>That was fun. We should do it again sometime.<</say>>
<<think mc>>Should I also encourage her to do it with $charlie.name when I'm not possessing him? Do I owe him anything at all?<</think>>
<div id="replace">
<<choices>>
<<link "Yes">>
<<replace "#replace">>
<<say mc>>It was definitely something... would you ever want to do that $charlie.name just you and him?<</say>>
<<say ember>>What, and you watch? That could be hot, sure, if you're into it. But I'd never do it without you.<</say>>
<<say mc>>Hmm... okay. Well, maybe I can come watch some time.<</say>>
<<say ember>>Oh, I hope you'll cum!<</say>>
<<button "Continue" housestuff>>
<<lust ember 4>>
<<like ember 4>>
<<time 1.5>>
<<event "charlie" "ember" "all">>
<</button>>
<</replace>>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<say mc>>It was definitely something... I'd be up for possessing him again, though we better prearrange it or create some sort of signal so you know it's me and not him!<</say>>
<<say ember>>Good idea, I've no interest in sleeping with $charlie.name himself.<</say>>
<<button "Continue" housestuff>>
<<lust ember 4>>
<<like ember 4>>
<<time 1.5>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<else>>
<<button "Continue" housestuff>>
<<lust ember 4>>
<<like ember 4>>
<<time 1.5>>
<</button>>
<</if>>
<<event "charlie" "arsehole" 12>>
<<case "perform">>
<<narrate>>Inside the dressing room, $ember.name peeks out at the lounge.<</narrate>>
<<left2 "ember/pf01.jpg">>
<<say "ember">>And there's a bed just in the middle of the room!<</say>>
<<say "mc">>I want you to be comfortable, and it's right in the center so people can gather around and view from all angles.<</say>>
<<say "ember">>Wow. Just look how many people have gathered.<</say>>
<<narrate>>She looks back at you nervously.<</narrate>>
<<say "ember">>What if... what if you fuck my ass?<</say>>
<<say "mc">>I'll fuck you any way you want. Come on, let's go destroy your ass in front of everyone.<</say>>
<<narrate>>She grabs the lube, then skips along after you.<</narrate>>
<<cont "embersex" "perform01">>
<<case "perform01">>
<<narrate>>She throws off what little she was wearing as she struts toward the bed. She crawls onto the bed, kneeling before you.<</narrate>>
<<say "mc">>God, you look incredible.<</say>>
<<vid "ember/pf01.mp4">>
<<say "ember">>That's my line.<</say>>
<<narrate>>She pulls you down to the bed, and whispers in your ears while pouring lube over herself.<</narrate>>
<<say "ember" "" "(Whispering)" "whisper">>Show them all just what that dirty cock can do!<</say>>
<<cont "embersex" "perform02">>
<<case "perform02">>
<<vid "ember/pf03.mp4">>
<<narrate>>You start gently, letting her ass get used to the intrusion.<</narrate>>
<<say "ember">>Oh~ yeah. oh, fuck yeah.<</say>>
<<say "side2" "Audience Member">>Wow, she's so lucky!<</say>>
<<cont "embersex" "perform03">>
<<case "perform03">>
<<narrate>>You speed up, spurred on by the excitement of the crowd.<</narrate>>
<<vid "ember/pf02.mp4">>
<<say "ember">>Oh my god, fuck yes!<</say>>
<<cont "embersex" "perform04">>
<<case "perform04">>
<<vid "ember/pf04.mp4">>
<<say "ember">>Fuck. I'm gonna fucking cum. I'm gonna fucking cum.<</say>>
<<narrate>>She squeals with delight as the pleasure washes through her.<</narrate>>
<<say "sideg" "Audience Member">>Fuck, I wish he'd make me scream like that!<</say>>
<<cont "embersex" "perform05">>
<<case "perform05">>
<<narrate>>You give her a brief respite before lowering your fingers to her vulva.<</narrate>>
<<vid "ember/pf05.mp4">>
<<say "ember">>Ohhh~ fuck!<</say>>
<<narrate>>With a smile on her face, she squirts in front of the crowd.<</narrate>>
<<cont "embersex" "perform06">>
<<case "perform06">>
<<vid "ember/pf06.mp4">>
<<say "ember">>Yeah, there we go. Yes, yes, yes.<</say>>
<<narrate>>There's a roar from the crowd as she screams out.<</narrate>>
<<say "ember">>I'm gonna cum now!<</say>>
<<say "mc">>Fuck, fuck, fuuuck! Me too.<</say>>
<<button "Cum" embersex>>
<<temp "perform07">>
<</button>>
<<case "perform07">>
<<narrate>>The two of you scramble into position, determined to give the crowd the money shot they crave.<</narrate>>
<<vid "ember/pf07.mp4">>
<<say "ember" "" "(Mouth full of cum)">>Hmmm, that's good.<</say>>
<<narrate>>You grin at her.<</narrate>>
<<say "mc">>Were you never taught not to speak with your mouth full?<</say>>
<<narrate>>The two of you giggle as the crowd applauds your performance.<</narrate>>
<<unlock "ember" "pf01">>
<<perform "ember">>
<<button "Continue" mngbrothel>>
<<lust "ember" 10>>
<<like "ember" 5>>
<<time 2>>
<</button>>
<<case "sparelax">>
<<narrate>>You meet $ember.name at the spa.<</narrate>>
<<say "ember">>I've been looking forward to this!<</say>>
<<narrate>>She plays the record you purchased for her over the sound system.<</narrate>>
<<say "ember">>See, doesn't it fit?<</say>>
<<say "mc">>Yeah, it's pretty good.<</say>>
<<vid "ember/spastrip.mp4">>
<<narrate>>She starts stripping right in the middle of the room, then looks at you quizzically.<</narrate>>
<<say "ember">>You need to be naked too.<</say>>
<<say "mc">>Of course.<</say>>
<<think "mc">>Don't see the logic, but I'm not going to argue.<</think>>
<<narrate>>You strip off, then go to grab the oils.<</narrate>>
<<say "mc">>I'm a pretty good masseuse, you know.<</say>>
<<think "mc">>Though I don't recall the last time it stopped at just a massage.<</think>>
<<narrate>>Again, she gives you a look of confusion.<</narrate>>
<<say "ember">>Wait. No, I'm the one giving you a massage. I want to take care of you like you take care of me.<</say>>
<<think "mc">>I'm not going to argue with that, and if I'm honest with myself, I'm going to make sure it ends the same way regardless.<</think>>
<<say "mc">>Wow, thanks $ember.name, that would be lovely.<</say>>
<<narrate>>You lie down on the table while she covers herself in oil.<</narrate>>
<<think "mc">>Why isn't she oiling me?<</think>>
<<button "Continue" embersex>>
<<temp "sparelax01">>
<</button>>
<<case "sparelax01">>
<<narrate>>She climbs on top of you and slowly starts rubbing her oily body over yours.<</narrate>>
<<vid "ember/spa01.mp4">>
<<think "mc">>Now this I could get used to!<</think>>
<<say "ember">>Let's massage your front too.<</say>>
<<say "mc">>Good idea, I've a part of me there that needs a little extra attention.<</say>>
<<narrate>>You flip over revealing your erect penis. She grins.<</narrate>>
<<button "Continue" embersex>>
<<temp "sparelax02">>
<</button>>
<<case "sparelax02">>
<<vid "ember/spa02.mp4">>
<<narrate>>Her oily hands slowly and deliberately work your shaft.<</narrate>>
<<think "mc">>Thank god she's not as oblivious as usual.<</think>>
<<narrate>>She leans over and give your bellend a lick.<</narrate>>
<<say "mc">>I like where this is going.<</say>>
<<button "Continue" embersex>>
<<temp "sparelax03">>
<</button>>
<<case "sparelax03">>
<<vid "ember/spa03.mp4">>
<<narrate>>She toys with the tip of your penis while running her hands over your body.<</narrate>>
<<say "mc">>Oh god, that feels so good.<</say>>
<<narrate>>She pulls herself up, her pussy now hovering over your manhood.<</narrate>>
<<say "ember">>Now I'm going to <i>really</i> take care of you.<</say>>
<<button "Continue" embersex>>
<<temp "sparelax04">>
<</button>>
<<case "sparelax04">>
<<narrate>>She lowers herself on to your dick.<</narrate>>
<<vid "ember/spa04.mp4">>
<<say "ember">>Oh yes, ohhh!<</say>>
<<narrate>>You match her pace and start pushing up against her.<</narrate>>
<<say "mc">>Yes, fuck!<</say>>
<<narrate>>She twists herself around on your cock.<</narrate>>
<<button "Continue" embersex>>
<<temp "sparelax05">>
<</button>>
<<case "sparelax05">>
<<vid "ember/spa05.mp4">><br>
<<narrate>>The table wobbles and bows beneath you as the lubricant allows you to comfortably pound her pussy at speed.<</narrate>>
<<say "ember">>Oh, fuuuck.<</say>>
<<narrate>>The sound of your flesh smashing together echoes around the room.<</narrate>>
<<say "ember">>Oh, god, I feel it, I'm nearly there!<</say>>
<<say "mc">>Not yet.<</say>>
<<narrate>>You stand up and try to position her on the table, her oiled up body just slips out of your grasp.<</narrate>>
<<narrate>>She giggles and positions herself on all fours, her ass in the air.<</narrate>>
<<button "Continue" embersex>>
<<temp "sparelax06">>
<</button>>
<<case "sparelax06">>
<<vid "ember/spa06.mp4">>
<<narrate>>You pound her from behind, the table again beginning to cry under the strain.<</narrate>>
<<say "ember">>Mmhmm, yeah, oh my god!<</say>>
<<narrate>>As you feel your climax drawing close, her arms start to shake. She lets out a guttural moan, and almost slumps on the table.<</narrate>>
<<say "ember">>Oh, god, fuck yes!<</say>>
<<narrate>>As if her orgasm was the final encouragement you needed, you push her back on to the table, position yourself over her tits and let her wank you to completion.<</narrate>>
<<vid "ember/spa07.mp4">>
<<say "mc">>$ember.name, you are a fucking legend.<</say>>
<<narrate>>She giggles.<</narrate>>
<<say "ember">>I try.<</say>>
<<narrate>>You rest for a while, embracing on the table, before heading to the spa showers to clean up.<</narrate>>
<<button "Continue" mngspa>>
<<lust "ember" 5>>
<<like "ember" 5>>
<<unlock "ember" "spa">>
<<event "ember" "recordspa">>
<<temp "">>
<<time 1.5>>
<</button>>
<<case "jade">>
<<vid "ember/jade01.mp4">>
<<if $tempvar2 == "jadedone" || $replay == true>>
<center><<choices>>
<<button "Double Blowjob" embersex>>
<<temp "jade02">>
<</button>>
<<button "$jade.name Doggy" embersex>>
<<temp "jade03">>
<</button>>
<<button "$ember.name Cowgirl" embersex>>
<<temp "jade04">>
<</button>>
<<button "$jade.name Reverse Cowgirl" embersex>>
<<temp "jade05">>
<</button>>
<<button "Double Doggy" embersex>>
<<temp "jade06">>
<</button>>
<<button "Cum" embersex>>
<<temp "jadecum">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" embersex>>
<<temp "jade02">>
<</button>>
<</if>>
<<case "jade02">>
<<vid "ember/jade02.mp4">>
<<if $tempvar2 == "jadedone" || $replay == true>>
<center><<choices>>
<<button "$jade.name Blowjob" embersex>>
<<temp "jade">>
<</button>>
<<button "$jade.name Doggy" embersex>>
<<temp "jade03">>
<</button>>
<<button "$ember.name Cowgirl" embersex>>
<<temp "jade04">>
<</button>>
<<button "$jade.name Reverse Cowgirl" embersex>>
<<temp "jade05">>
<</button>>
<<button "Double Doggy" embersex>>
<<temp "jade06">>
<</button>>
<<button "Cum" embersex>>
<<temp "jadecum">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" embersex>>
<<temp "jade03">>
<</button>>
<</if>>
<<case "jade03">>
<<vid "ember/jade03.mp4">>
<<if $tempvar2 == "jadedone" || $replay == true>>
<center><<choices>>
<<button "$jade.name Blowjob" embersex>>
<<temp "jade">>
<</button>>
<<button "Double Blowjob" embersex>>
<<temp "jade02">>
<</button>>
<<button "$ember.name Cowgirl" embersex>>
<<temp "jade04">>
<</button>>
<<button "$jade.name Reverse Cowgirl" embersex>>
<<temp "jade05">>
<</button>>
<<button "Double Doggy" embersex>>
<<temp "jade06">>
<</button>>
<<button "Cum" embersex>>
<<temp "jadecum">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" embersex>>
<<temp "jade04">>
<</button>>
<</if>>
<<case "jade04">>
<<vid "ember/jade04.mp4">>
<<if $tempvar2 == "jadedone" || $replay == true>>
<center><<choices>>
<<button "$jade.name Blowjob" embersex>>
<<temp "jade">>
<</button>>
<<button "Double Blowjob" embersex>>
<<temp "jade02">>
<</button>>
<<button "$jade.name Doggy" embersex>>
<<temp "jade03">>
<</button>>
<<button "$jade.name Reverse Cowgirl" embersex>>
<<temp "jade05">>
<</button>>
<<button "Double Doggy" embersex>>
<<temp "jade06">>
<</button>>
<<button "Cum" embersex>>
<<temp "jadecum">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" embersex>>
<<temp "jade05">>
<</button>>
<</if>>
<<case "jade05">>
<<vid "ember/jade05.mp4">>
<<if $tempvar2 == "jadedone" || $replay == true>>
<center><<choices>>
<<button "$jade.name Blowjob" embersex>>
<<temp "jade">>
<</button>>
<<button "Double Blowjob" embersex>>
<<temp "jade02">>
<</button>>
<<button "$jade.name Doggy" embersex>>
<<temp "jade03">>
<</button>>
<<button "$ember.name Cowgirl" embersex>>
<<temp "jade04">>
<</button>>
<<button "Double Doggy" embersex>>
<<temp "jade06">>
<</button>>
<<button "Cum" embersex>>
<<temp "jadecum">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" embersex>>
<<temp "jade06">>
<</button>>
<</if>>
<<case "jade06">>
<<vid "ember/jade06.mp4">>
<<set $tempvar2 = "jadedone" || $replay == true>>
<center><<choices>>
<<button "$jade.name Blowjob" embersex>>
<<temp "jade">>
<</button>>
<<button "Double Blowjob" embersex>>
<<temp "jade02">>
<</button>>
<<button "$jade.name Doggy" embersex>>
<<temp "jade03">>
<</button>>
<<button "$ember.name Cowgirl" embersex>>
<<temp "jade04">>
<</button>>
<<button "$jade.name Reverse Cowgirl" embersex>>
<<temp "jade05">>
<</button>>
<<button "Cum" embersex>>
<<temp "jadecum">>
<</button>>
<</choices>></center>
<<case "jadecum">>
<<vid "ember/jadecum.mp4">>
<<say mc>>Yes, fucking yes, yes, yes!<</say>>
<<narrate>>You erupt leaving your goo dripping from one body to the next.<</narrate>>
<<center "offworld/jade/embercum.jpg">>
<<if $workers.includes('jade')>>
<<say mc>>Now, that's how you maintain good staff morale!<</say>>
<<narrate>>$jade.name giggles.<</narrate>>
<<else>>
<<say "mc">>So anyway, like I was saying, you've got the job, but we just want to know how soon you can start.<</say>>
<<narrate>>$jade.name giggles.<</narrate>>
<<say "jade">>Immediately, boss.<</say>>
<<say "ember">>I'll deal with the other candidate, let's keep her in mind if any future positions open up, though.<</say>>
<<notice>>$jade.name will now work for you.<</notice>>
<<event "ember" "hired">>
<<worker "jade">>
<<available "jade">>
<<taskdone "nowhiring">>
<</if>>
<<button "Continue" homehub>>
<<lust "jade" 10>>
<<like "jade" 10>>
<<like "ember" 5>>
<<lust "ember" 5>>
<<unlock "jade" "emberjade">>
<<unlock "ember" "jade">>
<<time 2.5>>
<</button>>
<<case "vodka">>
<<block "ember/vodka01.jpg">>
<<say "ember">>Knock, knock!<</say>>
<<say "mc">>You know you're meant to actually knock, not just say it, right?<</say>>
<<narrate>>She rolls her eyes and grabs the bottle of vodka she'd placed down.<</narrate>>
<<say "ember">>Seriously? Nothing about my outfit?<</say>>
<<think "mc">>Shit, the one time she actually tries to flirt and isn't oblivious, and I fuck it up! Gotta claw it back somehow...<</think>>
<<say "mc">>Oh, don't worry, I noticed you were overdressed.<</say>>
<</block>>
<<narrate>>She grins.<</narrate>>
<<say "ember">>Let's sample the booze first. I do miss this part of the job!<</say>>
<<narrate>>The two of you grow closer as you tell increasingly personal stories with each shot.<</narrate>>
<<say "ember">>It's getting hot in here, isn't it?<</say>>
<<say "mc">>Shall I open a window?<</say>>
<<narrate>>She presses her hand against your chest while removing her top with the other.<</narrate>>
<<say "ember">>Are you playing with me, or are you really that dense?<</say>>
<<think "mc">>What the hell is with this role reversal? Given she's usually unable to pick up on innuendos, I guess I just assumed she didn't make them. Clearly not the case!<</think>>
<<narrate>>While you're stuck in your slight bewilderment, she's stripped naked and already started tugging at your clothes.<</narrate>>
<<say "ember">>You need to be naked, like yesterday.<</say>>
<<narrate>>You're no longer lost in thought and are eagerly stripping.<</narrate>>
<<button "Continue" embersex>>
<<like "ember" 5>>
<<temp "vodka02">>
<</button>>
<<case "vodka02">>
<<vid "ember/vodka01.mp4">>
<<button "Continue" embersex>>
<<temp "vodka03">>
<</button>>
<<case "vodka03">>
<<vid "ember/vodka02.mp4">>
<<button "Continue" embersex>>
<<temp "vodka04">>
<</button>>
<<case "vodka04">>
<<vid "ember/vodka03.mp4">>
<<button "Continue" embersex>>
<<temp "vodkacum">>
<</button>>
<<case "vodkacum">>
<<vid "ember/vodkacum01.mp4">>
<<narrate>>With your post-nut clarity, you think about her previous line of work and her mentioning missing parts of it.<</narrate>>
<<think "mc">>Perhaps I should try and figure out what's needed to build a bar. I bet they could look into it at the monitoring station for me.<</think>>
<<button "Continue" bedroom>>
<<unlock "ember" "vodka">>
<<if $ember.events.vodka == undefined>>
<<event "ember" "vodka">>
<<lust "ember" 5>>
<<tech "bar">>
<<if $ember.lustlvl == 2>>
<<set $ember.lustlvl = 3>>
<</if>>
<</if>>
<<time 1.5>>
<</button>>
<<case "workbj">>
<<vid "ember/workbj01.mp4">>
<<narrate>>She rocks her mouth back and forth on your engorged penis.<</narrate>>
<<say "mc">>Shit, I love the way you say thank you.<</say>>
<<narrate>>She giggles, sending a series of small, pleasant shockwaves through your cock.<</narrate>>
<<say "mc">>Shitting hell!<</say>>
<<narrate>>She speeds up, and her initial gentle movements become rough thrusts of passion determined to get you off.<</narrate>>
<<say "mc">>I'm cumming!<</say>>
<<narrate>>She releases your dick as you start to unload, leaving a dripping mess on the underside of the table.<</narrate>>
<<say "ember">>Shit, my bad.<</say>>
<<narrate>>You watch through the glass table as she proceeds to lick the cum stain from its underside.<</narrate>>
<<say "mc">>Hey, you know what? Get up here.<</say>>
<<button "Continue" embersex>>
<<temp "workcuni">>
<</button>>
<<case "workcuni">>
<<narrate>>You throw her on to the chair, push her panties to one side with your tongue and nose, and start slurping down on her pussy.<</narrate>>
<<vid "ember/workbj02.mp4">>
<<say "ember">>Oh fuck, that's good.<</say>>
<<narrate>>As you're getting into the swing of things, you hear a door close behind you.<</narrate>>
<<set _girls = $girlsavailable>>
<<set _girls.delete('ember')>>
<<set _s = either(_girls)>>
<<set $girlsavailable.pushUnique('ember')>>
<<set _n = State.variables[_s].name>>
<<say _s>>$ember.name, are you in here? I need some help.<</say>>
<<say "ember" "" "(Whispering)" "whisper">>Shit! Wait up for me before bed, we'll finish this later.<</say>>
<<say "ember">>Two minutes, _n, be right with you.<</say>>
<<think "mc">>Terrible timing, _n! But at least we can resume tonight.<</think>>
<<button "Continue" mngconstruction>>
<<unlock "ember" "workbj">>
<<set $scene = 0>>
<<run addNightEvent('emberpostworkbj')>>
<<if $ember.events.workbj == undefined>>
<<event "ember" "workbj">>
<<lust "ember" 3>>
<<like "ember" 4>>
<</if>>
<<time 1.5>>
<</button>>
<</switch>><<tracker "ember">>
<<if $ember.events.construction == undefined>>
<<step "Builder?" "Discuss construction with her.">>
<<elseif $buildings.lab == undefined>>
<<step "Have her build something" "Go to the Construction facility, assign her to the rota and select the monitoring station project.">>
<<elseif $ember.lust < 10>>
<<step "She doesn't desire you enough." "10 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.">>
<<elseif $ember.events.peep == undefined>>
<<step "Check up on her at night." "Sneak around at night and peep on her.">>
<<elseif $ember.lustlvl == 0>>
<<step "Check up on her at night (again)." "Sneak around at night and peep on her.">>
<<elseif $ember.lust < 20>>
<<step "She doesn't desire you enough." "20 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.<br>Peep or visit her at night.">>
<<elseif $ember.oral < 2>>
<<step `"Oral Exchange "+$ember.oral+"/2"` "<b>Where?</b><br>Sneak around and join her at night.<br>Join her for breakfast in the kitchen.<br>Convince her to have some fun in the lounge.">>
<<elseif $ember.events.workbj == undefined>>
<<step "Construction Worker" "Visit her while she's working at the Construction facility.">>
<<elseif checkUnlocks('movie', 'night01', 'ember') == false >>
<<step "Relax" "Relax at nighttime.<br>If you have refused her visiting you at night you can use the app on the computer to unblock this.">>
<<elseif $ember.like < 15>>
<<step "She doesn't like you enough." "15 needed. Some ways to increase like.<br>Discuss available topics.<br>Make small talk.<br>Watch TV with her.<br>Bake for her.">>
<<elseif $ember.events.previously == undefined>>
<<step "Previous work?" "Ask what she used to do previously">>
<<elseif $molly.events.cosplaystart < 3 || $molly.events.cosplaystart == undefined>>
<<step `"Progress with "+$molly.name` `"Follow "+$molly.name+"'s individual story until she requests vodka and you've spoken to "+$ember.name+" about it."`>>
<<elseif $ember.lust < 30>>
<<step "She doesn't desire you enough." "30 needed.Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.<br>Peep or visit her at night.">>
<<elseif $day == 12>>
<<step "Tomorrow..." "You've got a house meeting today, enjoy the vodka with her another day after 17:00.">>
<<elseif $ember.events.vodka == undefined>>
<<step "Enjoy the vodka (17:00+)" "Ask if she'd like a nightcap after 17:00">>
<<elseif $buildings.bar == undefined>>
<<step "Build bar" "Research running a bar - go to the monitoring station, assign a worker and select the relevant project.<br>
Once complete, build the bar - go to the construction facility, assign a worker to the rota and select the bar project">>
<<elseif $britt.events.emberles == undefined>>
<<step "Night Wanderer" "Sneak around and night and explore the hotel.">>
<<elseif $ember.lust < 40>>
<<step "She doesn't desire you enough." "40 needed.Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.<br>Peep or visit her at night.">>
<<elseif $ember.events.bar == undefined>>
<<step "Bar help" "Discuss the bar with her.">>
<<elseif $tasks.exphire != undefined>>
<<step "Recruitment on $planets[2].name" `"Go to Gateway B and send her on an expedition to "+$planets[2].name+"."`>>
<<elseif $ember.events.hired == undefined>>
<<step "Interviews" "Talk to her about holding interviews.">>
<<elseif $neweden == undefined>>
<<step "Progress the main story" "The next hint will unlock once you've progressed the main story far enough.">>
<<elseif $ember.events.appraisal == undefined>>
<<step "Staff Evaluations" "Ask her for her input on staff evaluations.">>
<<elseif $appraisalCD != undefined>>
<<step "Tomorrow" "You can't do any performance reviews until tomorrow.">>
<<elseif $ember.events.appraisal == "jade" && !$workers.includes('jade')>>
<<step "Now Hiring" `"Hire another bar worker at Gateway B."`>>
<<elseif $ember.events.appraisal == "jade">>
<<step "$jade.name Review" `"Talk to "+$jade.name+" while she's working at the bar and "+$ember.name+" is available."`>>
<<elseif $ember.events.appraisal == "jill" && !$workers.includes('jill')>>
<<step "Now Hiring" `"Hire another bar worker at Gateway B."`>>
<<elseif $ember.events.appraisal == "jill">>
<<step "$jill.name Review" `"Talk to "+$jill.name+" while she's working at the bar and "+$ember.name+" is available."`>>
<<elseif $ember.events.appraisal == "jilldrink">>
<<step "$jill.name Drinks" `"Meet "+$jill.name+" at the bar while both her and "+$ember.name+" are available and not working."`>>
<<elseif !$breakdone.bar.includes('secondslot')>>
<<step "Bigger Bar" `"Complete the larger facility bar upgrade."`>>
<<elseif $tasks.nowhiring2 != undefined>>
<<step "Hiring Again" `"Hire another bar worker at Gateway B."`>>
<<elseif $hiringtimer != undefined>>
<<step "Working Hard" `"Let the new hire settle in. Note: When "+$ember.name+"'s substory is expanded, there will be more content in this gap."`>>
<<elseif $ember.events.appraisal == "other">>
<<step "Another Evaluation" `"Talk to "+$ember.name+" about doing another evaluation."`>>
<<else>>
<<movielist ember>>
<</if>>
<</tracker>><<scene>>
<<if $location != $currentlocations.founder && $location != "firstIntros" && $replay == false>>
<<say "founder">>I'm heading out, will you join me?<</say>>
<<button "Join Her" founder>>
<<set $location = getRawLocation('founder')>>
<</button>>
<<button "Continue" $return>>
<</button>>
<<else>>
<<set _img = getImg('founder')>>
<<left2 _img>>
<<say "founder">>I take it you had some questions?<</say>>
<<include "founderquestions">>
<</if>><<scene>>
<<switch $tempvar>>
<<case "peep01">>
<<think mc>>I wonder what $founder.name is up to. Maybe I can learn something useful about her plans if I catch her unaware.<</think>>
<<narrate>>You're unsure why, but you decide to check the gym first. As you look through the passageway, you see her there, grinning to herself while pulling down her panties.<</narrate>>
<<think mc>>Well, not the info I was looking for... but definitely something I'll enjoy.<</think>>
<<narrate>>She reaches into her bag and pulls out two items.<</narrate>>
<<think mc>>Is that my fucking toothbrush?!<</think>>
<<cont "foundersex" "peep02">>
<<case "peep02">>
<<narrate>>She switches the toothbrush on and lowers it to her pussy.<</narrate>>
<<vid "founder/peep01.mp4">>
<<narrate>>You watch with a strange sense of curiosity as she pleasures herself with your toothbrush.<</narrate>>
<<think mc>>Is this some kind of power play? Does she get off on the thought of me cleaning my teeth with the toothbrush she soiled?<</think>>
<<narrate>>She moans with delight as she plunges a finger into her ass.<</narrate>>
<<cont "foundersex" "peep03">>
<<case "peep03">>
<<narrate>>She grabs the other item she prepared, and deftly pushes it into her ass.<</narrate>>
<<vid "founder/peep02.mp4">>
<<think mc>>Fuck, she's really going for it...<</think>>
<<say founder>>Oh, yeah...<</say>>
<<narrate>>She continues to writhe and squirm on the gym equipment as she edges closer to orgasm.<</narrate>>
<<think mc>>I'd better go, who knows what she'll do if she spots me. I'd best get a new fucking toothbrush, though.<</think>>
<<narrate>>As you're walking away, you hear her scream your name as she reaches climax.<</narrate>>
<<think mc>>Now I'm starting to think this whole thing was orchestrated... she knows I'm a slave to my lust after all...<</think>>
<<unlock "founder" "peep">>
<<button "Sleep" sleep>><</button>>
<</switch>><<tracker "founder">>
<<if $founder.countdown == 0 && $completeTasks.includes('founderdeadline') && $founder.events.planresist != undefined && $tasks.goingdark != undefined>>
<<step "Feigning Compliance" `"She didn't let you stand aside. You need to warn the council. She wants you meet with "+$azul.name+" at 16:00, that'll be your last chance."`>>
<<elseif $founder.countdown == 0 && $completeTasks.includes('founderdeadline') && $tasks.goingdark != undefined>>
<<step "$founder.name's Plan" `"Everything kicks off at 16:00..."`>>
<<elseif $tasks.pickingsides != undefined>>
<<step "Picking Sides" `"Wait "+$founder.countdown+" day"+($founder.countdown > 1 ? "s" : "")+" to side with her, or talk to "+$shalina.name+" or "+$kenzie.name+"."`>>
<<elseif $side == "council" && $tasks.founderdeadline == undefined && $tasks.goingdark != undefined>>
<<step "$kenzie.name's Plan" `"Wait for "+$founder.name+"'s instruction."`>>
<<elseif $side == "own" && $tasks.founderdeadline == undefined && $tasks.goingdark != undefined>>
<<step "$kenna.name's Plan" `"Wait for "+$founder.name+"'s instruction."`>>
<<else>>
End of current content.
<</if>>
<</tracker>><<scene>>
<<audio ":all" stop>>
/*10: "garden", 12: "lounge", 14: "pool", 16: "garage", 18: "garden", 20: "pool", 22: "office", 24: "lounge"*/
<<if $location != $currentlocations.harley && $location != "firstIntros" && $replay == false>>
<<say "harley">>Sorry, handsome, I need to get going.<</say>>
<<follow harley>>
<<button "Continue" $return>>
<</button>>
<<elseif $harley.events.morning == 2 && $tempvar2 != "forceoffice">>
<<set $scene = 0>>
<<set _img = getImg('harley')>>
<<left2 _img>>
<<say "harley">>Hey handsome, what's up?<</say>>
<div id="hreplace">
</div>
<<choices "What do you want to discuss?" "topics">><</choices>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("harleydiscussions").processText());
})
<</script>>
<<else>>
<<if $tempvar == "harleycheck">>
<<if $harley.lust > 19>>
<<temp "loungebj">>
<<goto harleysex>>
<<else>>
<<block "harley/lounge01.jpg">>
<<say "harley">>Alright, thanks for the fun day. I'm gonna head to bed. I'll be heading home in the morning.<</say>>
<<say "mc">>But the night is still young.<</say>>
<<say "harley">>Nah, I want to catch some sleep. I'll say goodbye before I go, though, don't worry.<</say>>
<<think "mc">>Well shit, guess I'm getting no action from her tonight.<</think>>
<<button "Continue" bedroom>>
<<event "harley" "morning" 1>>
<<time 2>>
<</button>>
<</block>>
<</if>>
<<else>>
<<switch $location>>
<<case "office">>
<<if $harley.events.office != undefined>>
<<narrate>>You already spoke to her here. To discuss more topics speak to her in the lounge later.<</narrate>>
<<link "Return" housestuff>><</link>>
<<else>>
<<block "harley/office01.jpg">>
<<say "harley">>I have had a pretty pleasant day here. It's been good to chat.<</say>>
<<say "mc">>Yeah, I've really enjoyed your company.<</say>>
<<say "harley">>I wanted to check this place out as I understand it's where you manage your empire.<</say>>
<<say "mc">>Empire is a strong word, but, yeah. It's nothing particularly exciting, I just use the computer to set rotas and projects, and sometimes go down to the sites to speak to the workers directly.<</say>>
<<say "harley">>Don't sell yourself short. Management isn't easy.<</say>>
<</block>>
<<if $harley.like > 19>>
<<say "harley">>I feel like you've made an effort to actually know me, without simply trying to get into my pants.<</say>>
<<say "mc">>I'm sure that's your favorite phrase!<</say>>
<<say "harley">>Maybe. Listen, I find you attractive, but I don't want to get into a relationship, and honestly, given the situation here I think you've enough of those. I am however open to something casual. But more than that, I do want a friend, and I think with my work and your ambitions, we could also work well together professionally. <</say>>
<<say "mc">>You bet. I'd love to work together.<</say>>
<<else>>
<<say "harley">>I've enjoyed today, but I don't feel like you've really engaged with me that well. I apologize if you felt I wasn't approachable.<</say>>
<<say "mc">>Nothing like that, I guess I just fumbled the ball on this one.<</say>>
<<say "harley">>Regardless, I work as a promoter, mainly for musicians, but I think I can help you out here.<</say>>
<<say "mc">>I'm listening...<</say>>
<</if>>
<<say "harley">>So my thoughts are foremost getting some of my clients to make use of the hub world, maybe give you some suggestions on ways to improve. Then, get them to start talking about it in the press.<</say>>
<<say "mc">>Your world knows about travelers?<</say>>
<<say "harley">>You really are green, aren't you? No, travelers have their own media. We don't quite have an Internet over the gateways yet, but I feel you may be able to assist with that where other patrons just haven't cared.<</say>>
<<say "mc">>An Internet through the gateways sounds amazing.<</say>>
<<say "harley">>Absolutely. Unfortunately, not my thing, but I will put you in touch with some eggheads at a later date. Back to the original point, my clients will spread word of your hub via the press and more people will start coming through. Then, we hold a music festival here to capitalize on the momentum and progress it even further.<</say>>
<<say "mc">>Sounds amazing. But what do you get out of this?<</say>>
<<say "harley">>Other than the fame and renown I'd get from this, I'd want a cut of the takings from the festival, and I don't work for free. If you want me to promote through my clients and contacts, you'll need to pay me.<</say>>
<<say "mc">>This is great, thanks so much, $harley.name.<</say>>
<<say "harley">>Believe me, this is going to be mutually beneficial. Join me in the lounge later and we'll celebrate this partnership.<</say>>
<<button "Continue" househub>>
<<event "harley" "office">>
<<event "harley" "promolearned">>
<<if $tempvar2 == "forceoffice">>
<<like "harley" 3>>
<<lust "harley" 3>>
<<set $tempvar2 = "">>
<</if>>
<<time 1>>
<</button>>
<</if>>
<<case "garage">>
<<if $harley.events.garage != undefined>>
<<narrate>>You already spoke to her here. To discuss more topics speak to her elsewhere.<</narrate>>
<<link "Return" housestuff>><</link>>
<<else>>
<<block "harley/garage01.jpg">>
<<say "mc">>Holy fuck, $harley.name, you look sexy as sin right now.<</say>>
<<say "harley">>I thought you'd like it.<</say>>
<<say "mc">>Oh, dressing to impress me, are you?<</say>>
<<say "harley">>Afraid you were an afterthought, I love bikes, these are beauties you've got here.<</say>>
<<say "mc">>So you dressed... to impress the bikes?<</say>>
<</block>>
<<say "harley">>No doofus, I dressed this way because I find riding incredibly hot, and I wanted to feel just as hot myself.<</say>>
<<say "mc">>The thought of your riding <i>is</i> incredibly hot!<</say>>
<<choices "What do you want to discuss?">>
<<link "Bikes" harleyanswers>>
<<temp "bikes">>
<</link>>
<br>
<<link "Other Worlds" harleyanswers>>
<<temp "worlds">>
<</link>>
<br>
<<link "Clothing" harleyanswers>>
<<temp "clothing">>
<</link>>
<</choices>>
<</if>>
<<case "pool">>
<<if $hour < 16>>
<<if $harley.events.pool01 != undefined>>
<<narrate>>You already spoke to her here. To discuss more topics speak to her elsewhere, or when she returns here this evening.<</narrate>>
<<link "Return" housestuff>><</link>>
<<else>>
<<block "harley/pool01.jpg">>
<<say "mc">>Damn, you look good.<</say>>
<<say "harley">>Ha! Thanks, figured I'd get in some sun while we talked. This place is really great.<</say>>
<<say "mc">>I definitely dropped on lucky here, for sure.<</say>>
<<think "mc">>Mostly down the beautiful women, all eager to please me.<</think>>
<<say "harley">>We make our own luck, $name.<</say>>
<<think "mc">>Nope, I can't think of anything I did to deserve this paradise!<</think>>
<<choices "What do you want to discuss?">>
<<link "Sun Lotion" harleyanswers>>
<<temp "lotion">>
<</link>>
<br>
<<link "Skills" harleyanswers>>
<<temp "skills">>
<</link>>
<br>
<<link "Tour Guides" harleyanswers>>
<<temp "guides">>
<</link>>
<</choices>>
<</block>>
<</if>>
<<else>>
<<if $harley.events.pool02 != undefined>>
<<narrate>>You already spoke to her here. To discuss more topics speak to her elsewhere.<</narrate>>
<<link "Return" housestuff>><</link>>
<<else>>
<<block "harley/pool02.jpg">>
<<say "mc">>Wait, "American Rebel"? Are we from the same world?<</say>>
<<say "harley">>Huh? Oh, this top. It's from a world I visited a while back, friendly people, but otherwise a bit bland.<</say>>
<<say "mc">>Probably my home world.<</say>>
<<say "harley">>Well, it's certainly got some exciting features then, eh?<</say>>
<<say "mc">>Oh, I'm having a lot more fun here.<</say>>
<<choices "What do you want to discuss?">>
<<link "Music" harleyanswers>>
<<temp "music">>
<</link>>
<br>
<<link "Tour Guides" harleyanswers>>
<<temp "guides">>
<</link>>
<br>
<<link "Skills" harleyanswers>>
<<temp "skills">>
<</link>>
<</choices>>
<</block>>
<</if>>
<</if>>
<<case "lounge">>
<<if $hour < 14>>
<<if $harley.events.lounge01 != undefined>>
<<narrate>>You already spoke to her here. To discuss more topics speak to her elsewhere, or when she returns here tonight.<</narrate>>
<<link "Return" housestuff>><</link>>
<<else>>
<<block "harley/lounge02.jpg">>
<<say "harley">>That TV is huge! What channels do you even get here?<</say>>
<<say "mc">>Huh, good point. I never questioned where the shows come from.<</say>>
<<say "harley">>Probably a bunch of recordings from various worlds, I'd wager.<</say>>
<<say "mc">>Yeah, I guess.<</say>>
<<choices "What do you want to discuss?">>
<<link "Watch TV?" harleyanswers>>
<<temp "watchtv">>
<</link>>
<br>
<<link "Her Ex" harleyanswers>>
<<temp "herex">>
<</link>>
<br>
<<link "College" harleyanswers>>
<<temp "college">>
<</link>>
<</choices>>
<</block>>
<</if>>
<<else>>
<<think "mc">>This is my last chance with her today. I'm sure we'll meet again, but it may be some time.<</think>>
<<block "harley/lounge01.jpg">>
<<say "mc">>As has been the case all day, you're looking fabulous!<</say>>
<<if $harley.events.office == undefined>>
<<say "harley">>Well, it's a bit of a special occasion today. Not often you meet a patron, let alone get to hang out with one.<</say>>
<<say "mc">>I'm nothing special.<</say>>
<<say "harley">>What you're doing here is.<</say>>
<<say "mc">>Well, I guess, but without reference it just feels normal.<</say>>
<<say "harley">>Next time I come visit, talk to me in the office. I've a business proposition for you, but right now, let's enjoy the evening.<</say>>
<<else>>
<<say "harley">>Well, it's a special occasion. A toast to our new partnership!<</say>>
<<say "mc">>And what a glorious partnership it will be.<</say>>
<</if>>
<<if $harley.like > 19>>
<<think "mc">>I'm pretty sure she likes me well enough, we've been quite friendly throughout the day, but with some exceptions, we didn't really flirt that much.<</think>>
<<else>>
<<think "mc">>It's probably going to be a struggle, I didn't speak to her enough about the right topics today. She will return in the future so if I can't get what I want before she goes, there's always next time.<</think>>
<</if>>
<</block>>
<<set _lu = 0>>
<<set _li = 0>>
<div id="tv">
<<say "harley">>Let's watch TV.<</say>>
<<choices "What show do you watch?">>
<<link "Rich Romantic">>
<<replace "#tv">>
<<narrate>>You watch a show about three people falling in love and starting a new life together. While it wasn't your thing, you're hoping it gets $harley.name in the mood.<</narrate>>
<<say "harley">>Ugh. Bunch of lovey-dovey crap.<</say>>
<<say "mc">>I thought it was cute, you don't like romance?<</say>>
<<say "harley">>I'm all for romance, but I'm not looking for a relationship, and this feels like you're trying to push for one.<</say>>
<<think "mc">>Well, that backfired immensely, I guess I should have paid more attention to her today.<</think>>
<</replace>>
<<set _lu -= 1>>
<<set _li -= 1>>
<<toggleclass "#music" noshow>>
<</link>>
<br>
<<link "Biker Boys">><<replace "#tv">>
<<narrate>>You but on a show about a bunch of men riding cruisers and saving people from all sorts of disasters & criminals.<</narrate>>
<<say "harley">>Damn! Look at those bikes, they're beautiful.<</say>>
<<say "mc">>Yeah, they look pretty cool.<</say>>
<<say "harley">>Man, imagine bending over the side on one of those, revving its engine, the vibrations pulsating through your body as your partner takes you from behind.<</say>>
<<say "mc">>I think I'll imagine the partner part.<</say>>
<<say "harley">>Mhhmm, just thinking about it gets me wet.<</say>>
<<think "mc">>Wow, I didn't expect this level of response!<</think>>
<</replace>>
<<set _lu += 4>>
<<set _li += 2>>
<<toggleclass "#music" noshow>>
<</link>>
<br>
<<link "Cosplaying Cuties">><<replace "#tv">>
<<narrate>>You effectively watch soft core porn, cosplayers who turn to nude and seminude modeling to cash in on their skills.<</narrate>>
<<say "harley">>Wow, these girls are so beautiful. But some of the stuff they're wearing is just insane.<</say>>
<<say "mc">>They're modeled after some pretty outlandish things.<</say>>
<<say "harley">>Got to appreciate the craft, though, and they've certainly got the bodies to flaunt it.<</say>>
<<think "mc">>A lukewarm response, but positive at least.<</think>>
<</replace>>
<<set _lu += 1>>
<<set _li += 1>>
<<toggleclass "#music" noshow>>
<</link>>
<br>
<<link "Porno Pals">><<replace "#tv">>
<<narrate>>You watch a show about two porn stars who fall in love after doing a bunch of shoots together. To your pleasure, many hardcore scenes are included.<</narrate>>
<<say "harley">>Daaamn, those two got moves. Not into the lovey-dovey stuff, but I certainly appreciate the hardcore sex.<</say>>
<<say "mc">>Big fan?<</say>>
<<say "harley">>Only when my partner can keep up.<</say>>
<<narrate>>She gives you a wink.<</narrate>>
<<think "mc">>Not the big reaction I was hoping for, but still positive.<</think>>
<</replace>>
<<set _lu += 2>>
<<set _li += 1>>
<<toggleclass "#music" noshow>>
<</link>>
<br>
<<link "Gaming Gals">><<replace "#tv">>
<<narrate>>You watch a documentary about gamers streaming while half-naked.<</narrate>>
<<say "harley">>Well, I guess if they're into, and it's not harmful, it's fine right?<</say>>
<<say "mc">>Hey, if you've got it, flaunt it. They're attractive women who like gaming, so mixing it up makes sense. May as well make money off what you enjoy.<</say>>
<<say "harley">>It's not my cup of tea, but I get the idea and fully support them.<</say>>
<<think "mc">>A rather neutral response.<</think>>
<</replace>>
<<toggleclass "#music" noshow>>
<</link>>
<</choices>>
</div>
<div id="music" class="noshow">
<<narrate>>Set the mood with some music.<</narrate>>
<<choices "Which artist do you play?">>
<<link "Corza Toolah">>
<<replace "#music">>
<<say "harley">>I love Corza! And this song is so hot. The way the guitar rift transitions into the saxophone solo. And the bass. Great choice!<</say>>
<<narrate>>She pulls you by the hand into the center of the room.<</narrate>>
<<say "harley">>Dance with me.<</say>>
<<narrate>>You hold her waist as you both jump and hop around to a heavy metal medley.<</narrate>>
<</replace>>
<<set _lu += 4>>
<<set _li += 1>>
<<toggleclass "#flirt" noshow>>
<</link>>
<br>
<<link "Corrosive Abominations">>
<<replace "#music">>
<<say "harley">>Oh hey, these guys were at the festival. Hadn't heard of them before, but hey aren't too bad.<</say>>
<<say "mc">>What genre is it? I'm struggling to follow it if I'm honest.<</say>>
<<say "harley">>This is buzzchock.<</say>>
<<say "mc">>Buzz what now?<</say>>
<<narrate>>The laughs as taps her foot in tune.<</narrate>>
<<say "harley">>Guess it's not native to your world.<</say>>
<<think "mc">>That went alright, I guess.<</think>>
<</replace>>
<<set _lu += 2>>
<<set _li += 1>>
<<toggleclass "#flirt" noshow>>
<</link>>
<br>
<<link "Percy Perkins">>
<<replace "#music">>
<<say "harley">>Gross, what is this shit?<</say>>
<<say "mc">>Percy Perkins<</say>>
<<say "harley">>Never heard of him, never want to again. Definitely not my style.<</say>>
<<think "mc">>A resounding failure!<</think>>
<</replace>>
<<set _lu -= 2>>
<<set _li -= 1>>
<<toggleclass "#flirt" noshow>>
<</link>>
<br>
<<link "Monarch">>
<<replace "#music">>
<<say "harley">>Oh, a bit of classic rock?<</say>>
<<say "mc">>Figured you can't go wrong with it.<</say>>
<<say "harley">>Certainly the safe choice.<</say>>
<<think "mc">>A pretty nonplussed reaction.<</think>>
<</replace>>
<<toggleclass "#flirt" noshow>>
<</link>>
<br>
<<link "Tyler Quick">>
<<replace "#music">>
<<say "harley">>Ha, some fun teenybopper crap?<</say>>
<<say "mc">>Yeah, I guess, just seems like a happy tune.<</say>>
<<say "harley">>Yeah, not gonna lie, I may have the odd song in my playlist. Metal is my love but I do enjoy a bit of this from time to time.<</say>>
<<think "mc">>A lukewarm reaction.<</think>>
<</replace>>
<<set _lu = 1>>
<<toggleclass "#flirt" noshow>>
<</link>>
<</choices>>
</div>
<div id="flirt" class="noshow">
<<choices "What next?">>
<<link "Hold her hand">>
<<replace "#flirt">>
<<narrate>>You gingerly place your hand over hers.<</narrate>>
<<narrate>>She moves her hand away almost immediately, but doesn't otherwise acknowledge it.<</narrate>>
<<think "mc">>Well, shit.<</think>>
<</replace>>
<<set _lu -= 1>>
<<toggleclass "#continue" noshow>>
<</link>>
<br>
<<link "Hug her">>
<<replace "#flirt">>
<<narrate>>You scoot over on the sofa then grab her, pulling her close to your chest.<</narrate>>
<<narrate>>She pushes back at you.<</narrate>>
<<say "harley">>I thought I was clear I don't want to get into anything lovey-dovey?<</say>>
<<say "mc">>Right, sorry.<</say>>
<<think "mc">>Well, shit.<</think>>
<</replace>>
<<set _li -= 1>>
<<set _lu -= 1>>
<<toggleclass "#continue" noshow>>
<</link>>
<br>
<<link "Kiss her neck">>
<<replace "#flirt">>
<<narrate>>You move over to her, pretend to go to whisper in her ear, then start tenderly kissing her neck.<</narrate>>
<<say "harley">>Oh shit, that feels good.<</say>>
<<say "mc">>Oh, I can make you feel even better.<</say>>
<<say "harley">>Mhhm, we'll see.<</say>>
<<think "mc">>Not the best response, but not the worst.<</think>>
<</replace>>
<<set _lu += 2>>
<<toggleclass "#continue" noshow>>
<</link>>
<br>
<<link "Caress her thigh">>
<<replace "#flirt">>
<<narrate>>You place your hand on her thigh and gently trace shapes with your fingers.<</narrate>>
<<say "harley">>Mhhhm, I like that.<</say>>
<<narrate>>You decide to risk it and move your hand further up her thigh.<</narrate>>
<<say "harley">>Oh, yeah, that's good.<</say>>
<<narrate>>You move further still, moving her panties to one side, you being gently caressing her vulva.<</narrate>>
<<center "harley/higher.jpg">>
<<say "harley">>Oh fuck yes, right there.<</say>>
<<narrate>>You gently pinch her clit and see her body quiver each time you do.<</narrate>>
<<say "harley">>My god, yes.<</say>>
<<think "mc">>A resounding success... let's see if we can continue this momentum...<</think>>
<</replace>>
<<set _lu += 4>>
<<toggleclass "#continue" noshow>>
<</link>>
<br>
<<link "Cup her breast">>
<<replace "#flirt">>
<<narrate>>You decide just to go in for the kill, stretch your arm around her, firmly grab her breast.<</narrate>>
<<say "harley">>Fan of my boobs?<</say>>
<<say "mc">>Very much so. Can't wait to put them in my mouth later.<</say>>
<<say "harley">>Haha! Holy shit, forward, aren't you?<</say>>
<<narrate>>You squeeze her perky tit.<</narrate>>
<<say "harley">>Cheeky!<</say>>
<<think "mc">>A surprising success.<</think>>
<</replace>>
<<set _lu += 2>>
<<toggleclass "#continue" noshow>>
<</link>>
<</choices>>
</div>
<div id="continue" class="noshow">
<<button "Continue" harley>>
<<like "harley" _li>>
<<lust "harley" _lu>>
<<temp "harleycheck">>
<</button>>
</div>
<</if>>
<<case "garden">>
<<if $hour < 12>>
<<if $harley.events.garden01 != undefined>>
<<narrate>>You already spoke to her here. To discuss more topics speak to her elsewhere, or when she returns here this evening.<</narrate>>
<<link "Return" housestuff>><</link>>
<<else>>
<<block "harley/garden01.jpg">>
<<say "harley">>You managed to get out of bed, then, lazybones?<</say>>
<<say "mc">>Mostly wanted to come down and enjoy the view this morning.<</say>>
<<say "harley">>Yeah, you've got a really idyllic spot here.<</say>>
<<narrate>>You continue staring at her.<</narrate>>
<<say "mc">>Oh, that? Great, for sure, but I can see that every morning. You, on the other hand, are a rarity far more beautiful.<</say>>
<</block>>
<<narrate>>She blushes.<</narrate>>
<<think "mc">>Based on her itinerary for the day - boy, is she organized - I think we have only time for one subject.<</think>>
<<choices "What do you want to discuss?">>
<<link "Festival" harleyanswers>>
<<temp "festival">>
<</link>>
<br>
<<link $whitney.name harleyanswers>>
<<temp "whitney">>
<</link>>
<br>
<<link "Dick Grab" harleyanswers>>
<<temp "dick">>
<</link>>
<</choices>>
<</if>>
<<else>>
<<if $harley.events.garden02 != undefined>>
<<narrate>>You already spoke to her here. To discuss more topics speak to her elsewhere.<</narrate>>
<<link "Return" housestuff>><</link>>
<<else>>
<<block "harley/garden02.jpg">>
<<say "mc">>You're even finding time to work out?<</say>>
<<say "harley">>You think this body looks like this by chance?<</say>>
<<say "mc">>I guess not.<</say>>
<<say "harley">>Besides, it's a good activity to bond.<</say>>
<<choices "What do you want to discuss?">>
<<link $whitney.name harleyanswers>>
<<temp "whitney">>
<</link>>
<br>
<<link "Festival" harleyanswers>>
<<temp "festival">>
<</link>>
<br>
<<link "Fitness" harleyanswers>>
<<temp "fitness">>
<</link>>
<</choices>>
<</block>>
<</if>>
<</if>>
<</switch>>
<</if>>
<</if>><<scene>>
<<set _i = 1>>
<<set _pool = "harley/pool0102.jpg">>
<<if $hour > 15>>
<<set _i = 2>>
<<set _pool = "harley/pool02.jpg">>
<</if>>
<<set _img = getFolder('harley') + "/$location01.jpg">>
<<switch $tempvar>>
<<case "festdone">>
<<narrate>>The two are sharing stories about the festival as you enter. $maddy.name looks up at you, a grin across her face.<</narrate>>
<<say maddy>>I made so much money!<</say>>
<<narrate>>You laugh.<</narrate>>
<<say harley>>We certainly did well, yes.<</say>>
<<say mc>>I sense a but coming...<</say>>
<<if $festival.stats.hype > 90>>
<<say harley>>Not at all! For a first festival, the number of attendees was fantastic. Way more than I estimated in fact.<</say>>
<<say mc>>Great!<</say>>
<<elseif $festival.stats.hype > 80>>
<<say harley>>Not really. Attendance was roughly in line with my estimations. Great job all round, really.<</say>>
<<say mc>>Great!<</say>>
<<elseif $festival.stats.hype > 70>>
<<say harley>>Attendance was a little lower than I had estimated, but not major.<</say>>
<<say mc>>Was there something we... <b>I</b> could have done better?<</say>>
<<else>>
<<say harley>>I don't want to take anything away from it, but attendance was quite a bit lower than I had anticipated...<</say>>
<<say mc>>What should I have done differently?<</say>>
<</if>>
<<say harley>>More events, performers, options... just more of everything and we can make next time even better!<</say>>
<<say mc>>Next time?<</say>>
<<say maddy>>Of course! Why wouldn't we do this again?<</say>>
<<think mc>>Well, there was a specific purpose for this... but I guess events like this in the future might be a decent way to attract more visitors.<</think>>
<<say mc>>So, how well did we do?<</say>>
<<set _money = Math.round($festival.stats.attendance * ($festival.stats.hype/100) * $festival.stats.profit)>>
<<set _cut = Math.round(_money * 0.7)>>
<<set _appeal = Math.round(_money * 0.001)>>
<<set _like = Math.round(_money * 0.0005)>>
<<say maddy>>We made _money resources!<</say>>
<<if _money < 7500>>
<<think mc>>It sounds like a high number, but when i factor in the costs...<</think>>
<<else>>
<<say mc>>Whoa!<</say>>
<</if>>
<<say maddy>>After mine and $harley.name's cut of 15% each, that leaves you with _cut.<</say>>
<<say mc>>You guys are only taking that little?<</say>>
<<say harley>>We did the work, but you supplied the funding. You should also know this has increased your appeal. Though this extra appeal will diminish over time if you don't do any more events.<</say>>
<<say mc>>So definitely worth doing again?<</say>>
<<say maddy>>One hundred percent!<</say>>
<<if _money < 7500>>
<<say harley>>However, you may need to be more involved if we want to turn a decent profit. You've a lot of influence with people from various worlds, after all.<</say>>
<</if>>
<<say mc>>When?<</say>>
<<say harley>>I wouldn't do them more than once a month, events of this size take a lot of preparation, and clean up after.<</say>>
<<say maddy>>Though, you should probably chose a time when things aren't too turbulent. How about we contact $cassie.name when we think it's a good idea to start doing them with some regularity?<</say>>
<<say mc>>Sure!<</say>>
<<think mc>>I don't even know what to do with all this money!<</think>>
<<notice>>
You have received _cut resources and your attractiveness has increased by _appeal.<br>
Bonus attractiveness from hub events deteriorates by 0.6 each night.
<</notice>>
<<button "Continue" housestuff>>
<<set $location = "office">>
<<set $resources += _cut>>
<<set $eventbonus = _appeal>>
<<like "harley" _like>>
<<like "maddy" _like>>
<<taskdone "festival8">>
<</button>>
<<run console.log($festival.stats)>>
<<case "festivalstart">>
<<left2 _img>>
<<if $piggy != undefined>>
<<narrate>>She arrives in the lounge a few minutes later.<</narrate>>
<<set _who = State.variables[$piggy]>>
<<say harley>>Hey $name, _who.name mentioned a festival?<</say>>
<<say mc>>Straight to business, huh? But yeah, you think you could help set one up?<</say>>
<<set delete $piggy>>
<<elseif $mount != undefined>>
<<narrate>>She arrives in the lounge a few minutes later.<</narrate>>
<<set _who = State.variables[$mount]>>
<<say harley>>So, a festival?<</say>>
<<say mc>>Straight to business, huh? But yeah, you think you could help set one up?<</say>>
<<set delete $mount>>
<<else>>
<<say mc>>Do you think you could help set up a music festival?<</say>>
<</if>>
<<say harley>>Now we're talking! I can help... but I can't do it all. When are you looking to do it?<</say>>
<<say mc>>As soon as possible, really. What kind of lead time would you suggest?<</say>>
<<say harley>>Traveler events don't tend to have anywhere near as much preparation time as on-world festivals. It's a bit of a logistical nightmare given the various different timekeeping methods the worlds use. Back in the days before digitization, messages were relayed in hours. That it would be X hours until Y event, with a timestamp relevant to that world of when the message was received.<</say>>
<<say mc>>Right...<</say>>
<<think mc>>I'm not sure that I need this much exposition...<</think>>
<<say harley>>That method has kinda stuck into modern times. But, as a result, things have much smaller preparation times. Saying something would be ready in 10,000 hours or whatever just never stuck. So, I would suggest doing it in the next few weeks.<</say>>
<<say mc>>That quick?!<</say>>
<<say harley>>Yes, we could do sooner, but we need at least a little time to hype it up and get the message out, and for you to prepare the grounds.<</say>>
<<say mc>>Prepare the grounds?<</say>>
<<say harley>>Have you done any prep yet?<</say>>
<<say mc>>No... you were my first port of call.<</say>>
<<say harley>>Right. You need artists and promo, that I can help with. But you also need a stage, campgrounds, vendors, attractions, security, logistics...<</say>>
<<say mc>>Okay... let me grab a pen!<</say>>
<<narrate>>She laughs.<</narrate>>
<<say harley>>Do you have a trusted merchant contact?<</say>>
<<say mc>>I know a traveling merchant... yeah...<</say>>
<<say harley>>Okay, can you set up a meeting? I'll discuss with them, and the two of us can get the ball rolling, tell you what's required, and let you focus on the options.<</say>>
<<say mc>>That would be super helpful. What options do you mean, though?<</say>>
<<say harley>>I'm sure you've met several talented people out there. A festival may focus on the music, but often there are all sorts of attractions and events to keep people entertained for the duration. I'll need to know pretty quickly if there's anyone you want to add to line up, mind.<</say>>
<<say mc>>Right... okay...<</say>>
<<think mc>>This feels like way more work than I imagined.<</think>>
<<say harley>>People also enjoy getting high or drunk at such events, so we'll need to ensure we can deal with that, and that your security is on point.<</say>>
<<say mc>>Got it... how much will this cost me?<</say>>
<<say harley>>Probably about 5,000 as a baseline. But you should easily make that back. You could invest more too, if you desired, and I'd probably advise it. For now, let me talk to your merchant friend, and we can make a plan from there.<</say>>
<<think mc>>That amount seems awfully convenient, did $kenzie.name know this when she tasked me with saving up resources?<</think>>
<<say mc>>Yeah, sure.<</say>>
<<say harley>>Once I've spoken to her, we'll come to with the relevant options, timings etc.<</say>>
<<say mc>>Great, thanks $harley.name.<</say>>
<<button "Continue" $return>>
<<like "harley" 5>>
<<run queueMessage("32",'cassie', 'fest')>>
<<taskdone "festival">>
<<if $mc.events.geraldescape == undefined>>
<<set $geraldtimer = 2>>
<</if>>
<<eventdone "harleyfest">>
<<time 1.5>>
<</button>>
<<case "festsetup">>
<<say harley>>Great. You're here... $maddy.name and I had some time to discuss the festival.<</say>>
<<say mc>>All good, I hope.<</say>>
<<say maddy>>Very much so, I should make some real money from this and hopefully make new contacts... like $harley.name here.<</say>>
<<say harley>>She and I can set the entire thing up, with or without your direction, depending on how much involvement you want.<</say>>
<<say mc>>Great!<</say>>
<<say maddy>>But you must know it's not going to be a cheap endeavor, you'll make it back, if $harley.name is as good at promotion as she says she is, but it'll leave a big dent in your wallet. She and I can take care of everything for 5,000 resources, but you may know some people that can handle certain parts of improve it.<</say>>
<<say mc>>Maybe I know some people, but I don't know what I need to know, to know if they'd be useful... does that make sense?<</say>>
<<narrate>>$harley.name chuckles.<</narrate>>
<<say harley>>We assumed as much. I mentioned some of it to you previously. So, what we've done is drawn everything up on this board for you. A list of what's needed. You can then add your own notes to it then when ready, present to us, and we can get the ball moving. You can involve yourself as much or as little as you want.<</say>>
<<say mc>>I see. Well I can take a look at the very least, maybe something'll come to mind.<</say>>
<<say harley>>Great. So, at the basic level you need to designate an area for the festival and campground, and build the stage. You'll want some security, vendors and other accommodation options. You'll probably also want to nominate someone to be the face of the festival.<</say>>
<<say mc>>What do you mean by face of the festival?<</say>>
<<say harley>>Just for the marketing. Something or someone that will grab their attention and have them look at the details. Again, I can handle this using some of the people I promote, should you prefer.<</say>>
<<say maddy>>Though personally, I think you should involve yourself as much as possible. You have no doubt made several contacts beyond us two, and their skills may be useful. Our guidance should hopefully be enough to make you think of any appropriate people. Though there may very well be other factors you want to look at outside of this too.<</say>>
<<say mc>>Okay, I think I get it. So I do as much or as little with this as I like, then just let you know when ready, and you'll take care of the rest?<</say>>
<<say harley>>Yup!<</say>>
<<say mc>>Okay... I think I can handle that.<</say>>
<<say maddy>>Great. I'm already looking forward to it. Let us know when you're ready!<</say>>
<<notice>>You can now access "Festival Preparation" from the office or via the quick travel menu, or pressing F. This will display several aspects of the festival you can impact, the total expected cost as well as maximum attendance.<br>
The more people that visit your hub, the more powerful you become and the more money you make. But you can do as little or as much as you like. Characters you've met may also offer other benefits not mentioned here; your previous decisions will affect what is available to you.
<</notice>>
<<button "Continue" housestuff>>
<<set $festival = {stats:{cost:5000,hype:50,attendance:15000,profit:1}}>>
<<taskdone "festival3">>
<<like "harley" 4>>
<<like "maddy" 4>>
<<time 1.5>>
<</button>>
<<case "whitneyroyalhub">>
<<left2 _img>>
<<say mc>>I had a personal question for you.<</say>>
<<say harley>>Oh? If you ask me my ring size, I swear to the gods, I'll—<</say>>
<<say mc>>No, no, nothing like that, it's about $whitney.name.<</say>>
<<narrate>>She looks at you skeptically.<</narrate>>
<<say mc>>Is she royalty?<</say>>
<<narrate>>$harley.name bursts out laughing.<</narrate>>
<<say harley>>No, far from it! She'd like to think herself as such, but you get her on her back and you'll find she's just as filthy as us common folk.<</say>>
<<say mc>>She kept referring to herself as queen...<</say>>
<<say harley>>Ha! She wishes. Her family are quite rich, but she wasn't born into wealth. Her stepfather has generational wealth, coming from a long line of posh twats. When he met her mother, $whitney.name was cast into a world of nobility and aristocrats... and took to it like a duck to water. I love her to bits, but she... well, she looks down on people and has completely lost touch with normal people.<</say>>
<<say mc>>Still... queen seems a bit much...<</say>>
<<narrate>>$harley.name shrugs.<</narrate>>
<<think mc>>Maybe it is just a sex thing after all...<</think>>
<<say harley>>She is pretty ambitious when it comes to her potential partners, though, so I wouldn't be surprised if she really was trying to bag herself a king, or prince, or something.<</say>>
<<button "Continue" yourroom>>
<<eventdone "whitneyroyal">>
<<influence "whitneyminions">>
<<event "whitney" "royal">>
<<like "harley" 4>>
<<time 1>>
<</button>>
<<case "whitneyroyal">>
<<left2 "harley/piggy/harleygreet01.jpg">>
<<say harley>>Huh, we don't have anything scheduled today. Is something wrong?<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>No, no, nothing. I had a personal question for you.<</say>>
<<say harley>>Oh? Something about $name?<</say>>
<<say $mount>>Ah, no, he's here with me. Shared consciousnesses... it's him who has the question... about $whitney.name.<</say>>
<<narrate>>She looks at you skeptically.<</narrate>>
<<say $mount $name "(Possession)" "" "" "possessed">>Is she royalty?<</say>>
<<narrate>>$harley.name bursts out laughing.<</narrate>>
<<say harley>>No, far from it! She'd like to think herself as such, but you get her on her back and you'll find she's just as filthy as us common folk.<</say>>
<<say $mount>>Why'd you think she was royalty, $name?<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>She kept referring to herself as queen...<</say>>
<<say harley>>You know from my point of view, that looked like you were just talking to yourself, right? So fucking weird. Anyway, her family are quite rich, but she wasn't born into wealth. Her stepfather has generational wealth, coming from a long line of posh twats. When he met her mother, $whitney.name was cast into a world of nobility and aristocrats... and took to it like a duck to water. I love her to bits, but she... well, she looks down on people and has completely lost touch with normal people.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>Still... queen seems a bit much...<</say>>
<<narrate>>$harley.name shrugs.<</narrate>>
<<think mc>>Maybe it is just a sex thing after all...<</think>>
<<say harley>>She is pretty ambitious when it comes to her potential partners, though, so I wouldn't be surprised if she really was trying to bag herself a king, or prince, or something.<</say>>
<<set _w = State.variables[$mount]>>
<<narrate>>You tune out until your connection fades as _w.name and $harley.name chat about the higher echelons of society.<</narrate>>
<<button "Continue" yourroom>>
<<eventdone "whitneyroyal">>
<<event "whitney" "royal">>
<<influence "whitneyminions">>
<<like "harley" 4>>
<<like $mount 4>>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case "theodorapromo">>
<<think "mc">>How does it feel with me inside you?<</think>>
<<say "theodora">>Weird, but not unpleasant. It's kinda nice.<</say>>
<<narrate>>You direct her to $harley.name's office, where she's waiting for you.<</narrate>>
<<block "harley/office02.jpg">>
<<say "harley">>Well, if it isn't the next big thing!<</say>>
<<narrate>>$theodora.name smile beams.<</narrate>>
<<say "theodora">>Well, I don't know about that.<</say>>
<<think "mc">>I told you!<</think>>
<<say "theodora">>Yeah, but you're my $theodora.you!<</say>>
<<narrate>>$harley.name looks at $theodora.name confused.<</narrate>>
<</block>>
<<say "theodora">>You kept telling me you were just an average male, I guess I just thought you were trying to build my confidence because you're my $theodora.you.<</say>>
<<narrate>>$harley.name looks at $theodora.name a little concerned.<</narrate>>
<<say "harley">>Everything okay there?<</say>>
<<think "mc">>You don't need to speak out loud, just think what you want me to know!<</think>>
<<narrate>>She blushes.<</narrate>>
<<say "theodora">>Sorry, $name is inside me, so I was talking to him. I'm still getting used to it.<</say>>
<<narrate>>$harley.name nearly chokes on her coffee.<</narrate>>
<<block "harley/office03.jpg">>
<<say "harley">>Your $theodora.you is inside you?<</say>>
<<narrate>>You're laughing your metaphysical ass off.<</narrate>>
<<say "theodora">>Yeah, he explained it... uhh... something about his mind coming through the gateway with me. I can hear him in my head, he's laughing at me right now.<</say>>
<<say "harley">>Thank god! I thought you were going crazy. But, wow, he's already improved his power that much? I did find it odd when I thought we were meeting without him. I can see why he's laughing.<</say>>
<<say "theodora">>I don't get it.<</say>>
<</block>>
<<say "harley">>Don't worry about it. Let's take a look at your portfolio. Tell me what you want to achieve, what you wanna do!<</say>>
<<narrate>>She starts flipping through the prints. As she shows her the first set of photos from the red lingerie shoot, her mind wanders and a picture of your bulge comes to her mind, you being a current resident of her mind, also receiving the image. You decide to keep the fact her conscious thoughts are shared with you to yourself for now, even though you literally told her a few moments ago.<</narrate>>
<<say "harley">>These are incredible, not afraid of showing any skin, I see. Did you go further?<</say>>
<<narrate>>$theodora.name nods enthusiastically and shows her the next shoot where she was wearing the blue bikini. Again her mind wanders and this time the image of her looking into the mirror as she clears your cum off her face comes to mind, you see she decided to taste it. You struggle not to say anything.<</narrate>>
<<say "harley">>These are fantastic! You have such a lovely pussy, I can hardly believe you're both rookies at this. The worlds are going to eat you up! And the shoot I asked $name to do?<</say>>
<<narrate>>$theodora.name flips to the shoot in the blue dress. This time her mind wanders to when she was sucking your dick, you feel her getting horny just thinking about. You can't hold it anymore.<</narrate>>
<<think "mc">>God, you're a dirty girl!<</think>>
<<say "theodora">>What do you mean?<</say>>
<<say "harley">>Sorry?<</say>>
<<say "theodora">>Uh, $theodora.calls again.<</say>>
<<think "mc">>Nothing, you carry on.<</think>>
<<say "theodora">>Sorry. So, you think we can do anything with these?<</say>>
<<say "harley">>Absolutely, leave it with me, I'll do some calls and come back to you soon, okay? In the short term, I can immediately sell these to some vendors, though. As your agent, $name will be entitled to some of the royalties, of course. Is that okay?<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>Yes.<</say>>
<<say $mount>>Uh, I think that was him. But this is so cool. Aaaah, this is really happening!<</say>>
<<narrate>>She dives into $harley.name, giving her a tight hug, you exert a little control, giving $harley.name's ass a quick grope.<</narrate>>
<<say "harley">>See you both later. $name, don't think I didn't notice that. Cheeky!<</say>>
<<narrate>>$theodora.name skips out of the office.<</narrate>>
<<notice>>You will now gain 2 bonus income every day.<</notice>>
<<button "Continue" yourroom>>
<<like "theodora" 4>>
<<lust "theodora" 4>>
<<corrupt "theodora" 4>>
<<like "harley" 4>>
<<lust "harley" 2>>
<<eventdone "theodorapromo">>
<<set $extraIncome += 2>>
<<temp "harleymettheodora">>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case "harleypromo2">>
<<set _w = State.variables[$mount]>>
<<left2 "harley/office02.jpg">>
<<say "harley">>Ah, _w.name pleasure to see you. How can I help you?<</say>>
<<say $mount>>$name wants to talk to you, he's with me now.<</say>>
<<narrate>>She cranes her neck around _w.name looking for you.<</narrate>>
<<say $mount $name "(Possession)" "" "" "possessed">>Ah, no, I'm riding her consciousness.<</say>>
<<say "harley">>I don't know I'll ever get used to that.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>We can meet back on the hub if you prefer?<</say>>
<<say "harley">>No, no. You're here now, what's up?<</say>>
<<narrate>>You go on to briefly explain the situation, asking for her assistance with promotion.<</narrate>>
<<say "harley">>My company can certainly help you out. It's not our specialty, but, promoting hubs isn't anybody's specialty, it's not been done before. At least not on any worlds I'm aware of. But as I said previously, my clients fame alone can help promote your hub.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>So what do I need to do?<</say>>
<<say "harley">>Well, there's not going to be a one-rule-fits-all situation as every world is different, not to even get into each country or city on those worlds. Travelers do have their own media, but distribution is... well, it's not great as it's based on travelers sharing among themselves.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>So we're going to need some research first?<</say>>
<<say "harley">>Your expedition teams should be able to provide the basics. It's just how we campaign on each world, really. On some worlds travelers are common knowledge so we can advertise overtly, some it's kept secret to the governments only, some worlds even from them, and on rare worlds, travelers are outcast.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>Right... so how would I—<</say>>
<<say "harley">>You just put up the capital and let my team worry about the specifics.<</say>>
<<say $mount>>How do we get started?<</say>>
<<say "harley">>Just let me know which planet to target first.<</say>>
<<say $mount $name "(Possession)" "" "" "possessed">>How about my home world to start?<</say>>
<<say $mount>>It's a good a place as any.<</say>>
<<say "harley">>Works for me. When you're ready, let me know, and we'll get started.<</say>>
<<notice>>You can now organize marketing campaigns in the office to increase your attractiveness. The cost and benefit will depend on the nature of the targeted world.
<</notice>>
<<button "Continue" yourroom>>
<<set $promo = true>>
<<taskdone "harleypromo">>
<<eventdone "harleypromo2">>
<<like "harley" 4>>
<<like $mount 4>>
<<run delete $mount>>
<<time 2>>
<</button>>
<<case "harleygreet">>
<<set _p = State.variables[$piggy]>>
<<narrate>>You find yourself in a busy office.<</narrate>>
<<block "harley/piggy/harleygreet01.jpg">>
<<say "harley">>Oh, hey _p.name, you here to discuss some promotion for the hub?<</say>>
<<say $piggy>>That's right, do you have time to talk?<</say>>
<<say "harley">>Can you give me 15 mins? Then we'll head back to mine. This place is too noisy today!<</say>>
<<say $piggy>>Sure.<</say>>
<<think "mc">>Sounds like it's gonna be a boring trip!<</think>>
<</block>>
<<narrate>>The team arrives at $harley.name's place 30 minutes later. As she unlocks the door, she seems to have a sudden realization.<</narrate>>
<<say "harley">>Oh yeah, my sister is staying over at the moment, I hope that won't be a problem, we can find a local coffee shop or something otherwise.<</say>>
<<say $piggy>>Not at all, we trust your judgment.<</say>>
<<narrate>>As you approach the living room you hear faint moaning, the others seem not to have noticed, but you're already rubbing your metaphysical hands with joy.<</narrate>>
<<say "harley">>I appreciate you coming here, it real—<</say>>
<<narrate>>She stops abruptly as she opens the door and surveys the scene.<</narrate>>
<div id="continue">
<<button "Continue">>
<<replace "#continue">>
<<vid "harley/piggy/harleygreet01.mp4">>
<<say "harley">>THE HELL?!<</say>>
<<narrate>>$harley.name's sister looks super embarrassed, quickly covers herself and starts stuttering trying to find a response. The other girl, however, simply stands up.<</narrate>>
<<block "harley/piggy/kyliemeet.jpg">>
<<say "kylie" "???">>Hi there! I'm <<textbox "$kylie.name" $kylie.name>>, nice to meet you. The shy one here trying to cover herself up is <<textbox "$alexis.name" $alexis.name>>.<</say>>
<<narrate>>She glances over as if surprised her companion is so flustered.<</narrate>>
<<say $piggy>>Uhh, yes, likewise.<</say>>
<<narrate>>You can see the anger in $harley.name's face.<</narrate>>
<<say "harley">>What the hell? Why couldn't you do this in your bedroom?<</say>>
<</block>>
<div id="continue2">
<<button "Continue">>
<<replace "#continue2">>
<<say "alexis">>I— I—<</say>>
<<say "kylie">>We were doing yoga and one thing lead to another. You wanna join in?<</say>>
<<think "mc">>I think I love this woman!<</think>>
<<say "harley">>That's my sister!<</say>>
<<say "kylie">>That's kinky. Yeah, I'm down!<</say>>
<<narrate>>You're laughing your ass off, luckily nobody else can hear you.<</narrate>>
<<say "harley">>The hell is wrong with you?<</say>>
<<say "kylie">>Hey, I'm not the one who wants to bang my sister.<</say>>
<<say "harley">>No. What? For fuck's sake. Sorry, _p.name, can we do this another day? I need to sort this out.<</say>>
<<say $piggy>>No problem.<</say>>
<<say "alexis">>I'm really sorry, sis!<</say>>
<<say "kylie">>Bah, this sounds like a downer, hey, _p.name I'm gonna come hang with you.<</say>>
<<narrate>>$harley.name and $alexis.name just look on in shock as she follows _p.name out the door.<</narrate>>
<<narrate>>Unfortunately, your time comes to an end, and you're taken back to your body before you can find out more about this hilarious woman.<</narrate>>
<<button "Continue" yourroom>>
<<event "harley" "piggy">>
<<eventdone "harleygreet">>
<<piggy "harleypromo">>
<<meet "alexis">>
<<meet "kylie">>
<<event "kylie" "met" $piggy>>
<<taskdone "possession">>
<<like $piggy 5>>
<<run delete $piggy>>
<<if $girlsmet.includes('kleio') && $girlsmet.includes('maddy') && $girlsmet.includes('kylie')>>
<<taskdone "morepiggy">>
<<run overrideSchedule('kylie', 8, 24, "Off World")>>
<</if>>
<<time 2>>
<</button>>
<</replace>>
<</button>>
</div>
<</replace>>
<</button>>
</div>
<<case "harleypromo">>
<<set _p = State.variables[$piggy]>>
<<narrate>>The team arrives at $harley.name's place and knocks on the door.<</narrate>>
<<narrate>>$alexis.name answers and ushers the team inside.<</narrate>>
<<block "harley/piggy/alexissorry01.jpg">>
<<say "alexis">>I am so embarrassed about last time. Please, I am so sorry!<</say>>
<<say $piggy>>Don't worry about it, we were the intruders after all. Besides, $name thought it was hilarious.<</say>>
<<say "alexis">>$name? As in, the patron $harley.name keeps talking about? You told him? Why? Oh my god, she's gonna disown me!<</say>>
<<say $piggy>>I didn't need to tell him, he was there. He sees through my eyes.<</say>>
<<say "alexis">>What? So he can see me right now?<</say>>
<</block>>
<<narrate>>_p.name nods.<</narrate>>
<<say "alexis">>$name, I am so sorry, please don't hold it against my sister!<</say>>
<<narrate>>You grin mischievously.<</narrate>>
<<think "mc">>Hmm, I really wish I could interact here, I'd get her and $kylie.name to come back and apologize to me personally!<</think>>
<<say $piggy>>He can only see and hear you, but I'm sure he's fine with the situation.<</say>>
<<say "alexis">>You think I could maybe apologize to him in person?<</say>>
<<think "mc">>Can this girl read my mind?<</think>>
<<say $piggy>>Honestly, you don't need to. He's fine with it.<</say>>
<<say "alexis">>Okay, but can you ask him when you're back, at least?<</say>>
<<say $piggy>>Sure.<</say>>
<<say "harley">>I hope she was sincere. She's been nervous about this visit but wanted to apologize properly.<</say>>
<<say $piggy>>It's really no big deal, you have met $name, right?<</say>>
<<narrate>>$harley.name gives a little laugh.<</narrate>>
<<say "harley">>Yeah, I guess he'd find the entire thing hot as fuck.<</say>>
<<think "mc">>Damn right.<</think>>
<<say "harley">>Okay, shall we get down to business?<</say>>
<<narrate>>You don't pay much attention as they talk about how to use her company and clients to promote your hub world.<</narrate>>
<<say "harley">>Listen, I know $name is okay with it, but I'd still rather do something to apologize for last time. I'll get one of my clients to do a little promo at no cost to you.<</say>>
<<say $piggy>>You really are too kind.<</say>>
<<notice>>You will now gain 1 bonus income every day.<</notice>>
<<button "Continue" yourroom>>
<<event "harley" "piggy" 2>>
<<eventdone "harleypromo">>
<<piggy "alexisworker">>
<<like $piggy 5>>
<<like "harley" 2>>
<<like "alexis" 3>>
<<set $extraIncome++>>
<<run delete $piggy>>
<<time 2>>
<</button>>
<<case "alexisworker">>
<<set _p = State.variables[$piggy]>>
<<narrate>>You grow tired watching the team trade and negotiate with their contacts when you suddenly notice a familiar face in the crowd.<</narrate>>
<<think "mc">>Isn't that $alexis.name?<</think>>
<<block "offworld/alexis/work03.jpg">>
<<say $piggy>>$alexis.name?<</say>>
<<say "alexis">>Hi, _p.name, what are you doing here?<</say>>
<<say $piggy>>Same old, making contacts, negotiating deals. What about you?<</say>>
<<say "alexis">>Looking for a job, I don't want to be stuck in my sister's home forever!<</say>>
<<say $piggy>>And you came here?<</say>>
<</block>>
<<narrate>>_p.name gets up close to $alexis.name and whispers in her ear.<</narrate>>
<<say $piggy "" "(Whispering)" "whisper">>Listen, we're about to ditch this asset, they treat their staff poorly and produce inferior products. We made a deal with them when we were still relatively new to this world and hadn't done enough due diligence.<</say>>
<<say "alexis" "" "(Whispering)" "whisper">>I know they've got a terrible reputation, but there are not a lot of employment opportunities available out there, and I need to get back on the workforce!<</say>>
<<say $piggy>>What are your skills?<</say>>
<<think "mc">>I like where this is going, great thinking _p.name!<</think>>
<<say "alexis">>I'm a bit of a jack of all trades to be honest, I'm not great with manual labor, but otherwise I like to sink my teeth into days-long research sessions as much as I enjoy cooking. I'm very task-orientated, but I need a mixture of things to keep me from getting bored.<</say>>
<<say $piggy>>Hmm, and can you travel?<</say>>
<<say "alexis">>Why does this feel more like the interview than what I'm here waiting for?<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say "alexis">>Yeah, I have a car so I can—<</say>>
<<say $piggy>>No, I mean can you use the gateways like your sister?<</say>>
<<say "alexis">>Oh, right, yes.<</say>>
<<say $piggy>>Great, come by the hub when you have time, I think we have a job for you.<</say>>
<<block "offworld/alexis/work02.jpg">>
<<say "alexis">>Wait, what? Seriously, just like that?<</say>>
<<say $piggy>>I mean, you'll need to work out the details with $name, but I don't see why not.<</say>>
<<say "alexis">>Oh my god! This is brilliant! Thank you so much, I'll see you tomorrow.<</say>>
<<say $piggy>>Hold on, after I ditch this contract, how about we go for a coffee to celebrate?<</say>>
<<narrate>>Your connection fades as the two of them continue their conversation.<</narrate>>
<</block>>
<<notice>>From tomorrow, you'll be able to greet $alexis.name at Gateway B.<</notice>>
<<button "Continue" yourroom>>
<<event "alexis" "piggy" 1>>
<<event "alexis" "today" 1>>
<<eventdone "alexisworker">>
<<like $piggy 5>>
<<like "alexis" 3>>
<<run delete $piggy>>
<<time 2>>
<</button>>
<<case "promodone">>
<<narrate>>You grab a bottle of champagne while she gets changed into her bikini.<</narrate>>
<<say "harley">>Enjoying the view?<</say>>
<<left2 "harley/pool03.jpg">>
<<say "mc">>Oh, very much so. It's quite a piece of art.<</say>>
<<say "harley">>Ha! I bet you say that to all the girls.<</say>>
<<say "mc">>I mean... have you seen the women I live with?<</say>>
<<say "harley">>Wow, way to make a girl feel special.<</say>>
<<narrate>>She grins mischievously.<</narrate>>
<<say "harley">>Care to try again?<</say>>
<<say "mc">>Your ass is incredible, and I wish you were sat on my face right now.<</say>>
<<narrate>>She bursts out laughing.<</narrate>>
<<say "harley">>I think you need to fine tune your pickup game.<</say>>
<<say "mc">>So... it didn't work?<</say>>
<<say "harley">>That pool house is free, yeah?<</say>>
<<narrate>>You smile and gesture for her to go on past you to the lounge.<</narrate>>
<<say "harley">>Just... work on those lines, alright.<</say>>
<<narrate>>Someone has left the music on in the pool house, but as you go to turn if it off she stops you, then dropping her bikini to the floor, provides you a private dance.<</narrate>>
<<cont "harleysex" "cel01">>
<<case "planets">>
<<left2 _img>>
<<say "mc">>Given your line of work, you must know a lot of different worlds, right?<</say>>
<<say "harley">>A good few, yes. Why'd you ask?<</say>>
<<say "mc">>The more I connect to, the more powerful I become. I was hoping you would be willing to connect me to some?<</say>>
<<say "harley">>Sure, why not? Now?<</say>>
<<say "mc">>If you've got a couple of hours to spare, yeah.<</say>>
<<narrate>>You arrive at the gateway a few minutes later.<</narrate>>
<<say "harley">>So I just travel as normal and you'll get powered by it?<</say>>
<<say "mc">>Pretty much, step through and come back.<</say>>
<<say "harley">>No problem. Let's do this...<</say>>
<<narrate>>You feel the tug of the gateway within you as it tries to feed on your energy, but then it stops and nothing happens, though you feel a little sick.<</narrate>>
<<narrate>>Flashing text appears in your mind's eye.<</narrate>>
<div class="choices" style="margin:auto">
<center class="blink">SAFETY PROTOCOL ENGAGED.</center>
<center class="blink">OUTGOING CONNECTIONS TO THIS LOCATION HAVE BEEN RESTRICTED DUE TO AN ONGOING WAR.</center>
</div>
<<narrate>>The gateway remains unchanged.<</narrate>>
<<say "harley">>I just heard a weird voice in my head. There's a war on Falatoo? Fuck! That's gonna hurt my bottom line.<</say>>
<<if $completeTasks.includes('safety')>>
<<say "mc">>It happens if I try to connect to a world that has a restriction on it for whatever reason. I guess in this case it's to stop travelers abusing their powers for war.<</say>>
<<say "harley">>I've encountered voices like that before preventing travel, but I think this is the first time it's been due to war. Want to try another?<</say>>
<<say "mc">>No, I was warned it would be difficult to find a viable connection by just shooting in the dark. I'd better come up with another plan.<</say>>
<<elseif $tasks.safety == undefined>>
<<say "mc">>There's a ban on connecting to this world due to the war. I didn't even know the gateway could prevent me connecting due to things like that!<</say>>
<<say "harley">>I'm guessing it's a council thing?<</say>>
<<say "mc">>Probably, I'll ask one of them for more information.<</say>>
<<say "harley">>I've encountered voices like that before preventing travel, but I think this is the first time it's been due to war. I hope my friends and business contacts over there are safe. Want to try another?<</say>>
<<say "mc">>Me too, and yes, please.<</say>>
<div class="choices" style="margin:auto">
<center class="blink">SAFETY PROTOCOL ENGAGED.</center>
<center class="blink">DENSITY OF CONNECTIONS TO THIS WORLD TOO HIGH FOR YOUR POWER LEVEL.</center>
<center class="blink">REROUTING THROUGH THE EQUALIZER NETWORK.</center>
</div>
<<narrate>>You kneel on the floor, your body suddenly feeling heavy as the gateway splashes open.<</narrate>>
<<say "harley">>Ah, that looks better.<</say>>
<<say "mc">>Afraid not, apparently the density of connections is too high, whatever that means. But, it's really tired me out. I think I should ask $kenna.refer or $kp.name for more info before we just keep trying random worlds.<</say>>
<<say "harley">>Understood, though I'm happy to try again if need be.<</say>>
<<say "mc">>Thanks, $harley.name.<</say>>
<<elseif $tasks.safety != undefined>>
<<say "mc">>It's not the first time, but it's strange it's suddenly happening so frequently.<</say>>
<<say "harley">>Maybe you need to ask the council about it?<</say>>
<<say "mc">>Agreed.<</say>>
<</if>>
<<button "Continue" gatewayb>>
<<event "harley" "planets">>
<<task "safety">>
<<like "harley" 3>>
<<time 1>>
<</button>>
<<case "model">>
<<block _img>>
<<say "mc">>I've got a model I'd like to promote, is that something you could help with?<</say>>
<<say "harley">>Absolutely! It's not my specialty, but I have a few on the books. Who is it?<</say>>
<<say "mc">>My $theodora.them, $theodora.name.<</say>>
<<say "harley">>Oh, yeah, she's smoking. Are you hitting that?<</say>>
<<think "mc">>Not yet.<</think>>
<</block>>
<<say "mc">>My $theodora.them?<</say>>
<<say "harley">>Hey, no judgments from me, in fact it'd be kinda hot.<</say>>
<<say "mc">>Great, I look forward to seeing you with your sister then.<</say>>
<<say "harley">>Point taken.<</say>>
<<say "mc">>What point? I want to see a show!<</say>>
<<narrate>>She cackles.<</narrate>>
<<say "harley">>Fine, I get it. I can get some promo out for her, in fact, for any of your models, the more shoots you do the more attractive the hub will become. But honestly, there's also some stuff you can do here on the hub world. Get some stuff in the stores, print calendars, posters, hell even playing cards.<</say>>
<<say "mc">>I'd need some sort of printing press, though, right?<</say>>
<<say "harley">>Yeah, but nothing fancy for your scale, and probably makes sense to just annex the photo studio with something small.<</say>>
<<say "mc">>Great, I'll look into that.<</say>>
<<say "harley">>Regarding your $theodora.them, get another shoot together, send me the pics, and I'll take it from there.<</say>>
<<say "mc">>Thanks, $harley.name.<</say>>
<<notice>>You can now build a print studio upgrade to the photo studio. This will increase your daily income for every unique shoot done. This bonus will be applied retroactively.<</notice>>
<<notice>>New shoot available for $theodora.name.<</notice>>
<<button "Continue" harley>>
<<like "harley" 3>>
<<lust "harley" 2>>
<<event "harley" "theodora">>
<<shoot "theodora" "theolounge01">>
<<time 1>>
<</button>>
<<case "music">>
<<block _pool>>
<<say "mc">>Shall we whack on some tunes while we relax?<</say>>
<<say "harley">>Sounds good to me, be warned, I'm judging your musical choices!<</say>>
<<say "mc">>Uh-huh. I have no idea what's even on this thing.<</say>>
<<narrate>>You turn the music on and a lively, happy-sounding tune plays through the pool speakers.<</narrate>>
<<say "harley">>Hey not bad. It's not the kind of music I generally listen to, but then I appreciate anything a with good beat.<</say>>
<<audio "poolmusic" play>>
<</block>>
<<say "mc">>What do you normally listen to?<</say>>
<<say "harley">>I tend to prefer metal or buzzchock.<</say>>
<<say "mc">>Okay, color me intrigued. What the hell is buzzchock?<</say>>
<<say "harley">>You guys don't have buzzchock? Man, you're missing out. It's sorta like chip tune heavy metal with classical vocals.<</say>>
<<say "mc">>I can't even imagine what that'd sound like. Is that what they were playing at the festival?<</say>>
<<say "harley">>Nah, it was mostly metal and rock. Corza and her band play a decent set, they meld a bunch of different genres, but ultimately metal is the defining genre.<</say>>
<<say "mc">>Huh, I think I'd quite like to listen to that.<</say>>
<<say "harley">>I'll bring some over next time I'm here!<</say>>
<<say "mc">>A return visitor, huh?<</say>>
<<say "harley">>What can I say? I appreciate the hospitality provided here.<</say>>
<<button "Continue" househub>>
<<like "harley" 4>>
<<lust "harley" 2>>
<<event "harley" "pool02">>
<<time 1>>
<</button>>
<<case "bikes">>
<<say "mc">>How'd you get into bikes?<</say>>
<<narrate>>She sits backwards on the bike and stares at you.<</narrate>>
<<center "harley/garage02.jpg">>
<<say "harley">>Same way you get into anything, you see something, your parents tell you no, and you do it anyway.<</say>>
<<say "mc">>Wait, what? I think you and I had very different childhoods.<</say>>
<<say "harley">>Haha, no. It kinda started that way. As a teen I went to a car show with my parents, oddly enough they had a section on bikes, and I fell in love.<</say>>
<<say "mc">>But your parents disproved?<</say>>
<<say "harley">>Yeah, they're okay now, they just hadn't really been exposed to bikes previously and assumed them to be dangerous.<</say>>
<<say "mc">>They aren't?<</say>>
<<say "harley">>Anything's dangerous in the wrong hands.<</say>>
<<say "mc">>And in your hands?<</say>>
<<say "harley">>Oh, they are especially dangerous in my hands, but not to me.<</say>>
<<say "mc">>I see. Any type of bike you prefer?<</say>>
<<say "harley">>Yes, exactly these types. Don't get me wrong, I love supers and trials too, but nothing gets me wetter than riding down the freeway on one of these bad boys.<</say>>
<<say "mc">>Sounds like I've got some competition.<</say>>
<<say "harley">>I'm afraid that's a competition you'd lose every time.<</say>>
<<say "mc">>Well, I can do more than make you wet.<</say>>
<<say "harley">>We'll see...<</say>>
<<button "Continue" townhub>>
<<like "harley" 2>>
<<lust "harley" 4>>
<<event "harley" "garage">>
<<time 1>>
<</button>>
<<case "worlds">>
<<block "harley/garage01.jpg">>
<<say "mc">>What can you tell me about other worlds?<</say>>
<<think "harley">>Seriously, $name, you're a dense motherfucker.<</think>>
<<say "harley">>Not overly much to tell, each world is unique in some way. Some are good for entertainment, some you want to leave ASAP. I don't really do much exploring, though, I just stick to the main worlds.<</say>>
<<say "mc">>The main worlds?<</say>>
<<say "harley">>Traveler-friendly worlds, places many travelers call home.<</say>>
<</block>>
<<say "mc">>Is there some sort of almanac?<</say>>
<<say "harley">>The hell's an almanac?<</say>>
<<say "mc">>Kinda like a guide of things based on calendar.<</say>>
<<say "harley">>This isn't the dark ages, just look shit up on the computer.<</say>>
<<think "harley">>Shit, I said I'd help, but man you need to get a clue.<</think>>
<<button "Continue" townhub>>
<<lust "harley" -2>>
<<like "harley" -1>>
<<event "harley" "garage">>
<<time 1>>
<</button>>
<<case "clothing">>
<<say "mc">>I really can't stress how hot you look in that getup.<</say>>
<<narrate>>She climbs down off the bike.<</narrate>>
<<block "harley/garage03.jpg">>
<<say "harley">>I've got a good eye when it comes to clothing. Comes with the job.<</say>>
<<say "mc">>Shit, are you not wearing anything under the jacket?<</say>>
<<narrate>>She winks.<</narrate>>
<<say "harley">>I love the feel of the leather against my breasts, the bike against my thighs.<</say>>
<<say "mc">>Why bother wearing anything at all?<</say>>
<<say "harley">>Ha! Because teasing you like this is so much more fun.<</say>>
<</block>>
<<say "mc">>Well, it's certainly working.<</say>>
<<narrate>>She looks down at your crotch.<</narrate>>
<<say "harley">>I can tell.<</say>>
<<button "Continue" townhub>>
<<like "harley" 1>>
<<lust "harley" 3>>
<<event "harley" "garage">>
<<time 1>>
<</button>>
<<case "lotion">>
<<block _pool>>
<<say "mc">>Need help with the lotion?<</say>>
<<say "harley">>You just want to get yours over my body, don't you?<</say>>
<<say "mc">>Hey, we both benefit, right?<</say>>
<<say "harley">>You don't try to hide your intent, I like it.<</say>>
<<say "mc">>We both know what we want, and we both know we can stop it if we're not into it.<</say>>
<<say "harley">>Very well, but JUST the lotion. We're not fucking out here.<</say>>
<</block>>
<<say "mc">>Maybe not today, but there's always tomorrow.<</say>>
<<say "harley">>Ha! Keep dreaming.<</say>>
<<narrate>>You rub the lotion thoroughly over her body, paying special attention to her ass. From her moans, you're pretty sure she'll be yours soon.<</narrate>>
<<button "Continue" househub>>
<<like "harley" 1>>
<<lust "harley" 3>>
<<if $harley.events.pool01 == undefined>>
<<event "harley" "pool01">>
<<else>>
<<event "harley" "pool02">>
<</if>>
<<time 1>>
<</button>>
<<case "skills">>
<<block _pool>>
<<say "mc">>So what do you do?<</say>>
<<say "harley">>What do you mean?<</say>>
<<say "mc">>Like, jobs, hobbies, what skills do you have?<</say>>
<<say "harley">>I'm a promoter mainly, but honestly, I'll try my hand at most anything.<</say>>
<<say "mc">>What do you promote?<</say>>
<<say "harley">>Primarily musicians, though I recently helped one of my clients transition into modeling.<</say>>
<</block>>
<<say "mc">>And you enjoy it?<</say>>
<<say "harley">>I really do. Some days are a bit of a downer, but on the whole it's great. You meet new people, get to see all sorts of different things, and make valuable contacts for the future.<</say>>
<<say "mc">>Is that why you were at the festival?<</say>>
<<say "harley">>Nah, I went there purely for the enjoyment, though I'd love to get the headliner there, Corza, on my books!<</say>>
<<say "mc">>So you're really good at networking?<</say>>
<<say "harley">>I guess so. Never been shy, and if I feel there's something important to reach out for, I'll end up staying the day at their fancy home.<</say>>
<<narrate>>She gives you a wink.<</narrate>>
<<say "mc">>Believe me, I'm nobody important.<</say>>
<<say "harley">>The jury's out on that one, but what you're doing here is worth promoting.<</say>>
<<think "mc">>I'd not even given that a thought, shit, $harley.name might be a bigger ally than I had imagined.<</think>>
<<button "Continue" househub>>
<<like "harley" 5>>
<<lust "harley" 1>>
<<if $harley.events.pool01 == undefined>>
<<event "harley" "pool01">>
<<else>>
<<event "harley" "pool02">>
<</if>>
<<time 1>>
<</button>>
<<case "guides">>
<<block _pool>>
<<say "mc">>What can you tell me about tour guides?<</say>>
<<think "harley">>I'm sat here half naked, and he just wants to talk shop? Not even get to know me?<</think>>
<<say "harley">>There's not a lot to tell. Most are automated. Just likes yours, though they don't usually have the accompanying human touch nor facilities you do.<</say>>
<<say "mc">>And the human ones?<</say>>
<<say "harley">>Humanoid, do remember we're not all from the same world. They're simply doing a job, travelers who have settled on hub worlds and been given purpose by a patron. Their personalities are otherwise just as varied and complex as ours.<</say>>
<<think "mc">>Why do I feel like I'm boring her?<</think>>
<<button "Continue" househub>>
<<lust "harley" -2>>
<<if $harley.events.pool01 == undefined>>
<<event "harley" "pool01">>
<<else>>
<<event "harley" "pool02">>
<</if>>
<<time 1>>
<</button>>
<</block>>
<<case "watchtv">>
<<block "harley/lounge02.jpg">>
<<say "mc">>Wanna watch something?<</say>>
<<say "harley">>Sure, I guess.<</say>>
<<narrate>>You watch a documentary about snails. She doesn't seem too interested.<</narrate>>
<<button "Continue" househub>>
<<like "harley" -1>>
<<lust "harley" -1>>
<<event "harley" "lounge01">>
<<time 1>>
<</button>>
<</block>>
<<case "herex">>
<<block "harley/lounge02.jpg">>
<<say "mc">>So, what happened between you and that tour guide? I can't imagine anyone wanting to let you go.<</say>>
<<say "harley">>Ha! Cheesy. But ultimately, his patron was his world. He didn't really want to date me.<</say>>
<<say "mc">>Then the guy's an idiot.<</say>>
<<say "harley">>Oh for sure, but he wasn't actually a bad guy, the patron liked to prove she was the best they'd ever have, so every now and again she'd get her tour guides to try dating, just to prove her point.<</say>>
<</block>>
<<say "mc">>What kind of weird power-play is that? And what an ego!<</say>>
<<say "harley">>Yeah, she was certainly something else. When I learned of it, I left. What I never understood is why she befriended me, from what I can tell that wasn't usual.<</say>>
<<say "mc">>Maybe she found you as mesmerizing as I do?<</say>>
<<narrate>>She snorts as she tries to hold back her laughter.<</narrate>>
<<say "harley">>Lame, but I think there may be something in it. I think perhaps she was intending me to be part of her harem, my ex kinda warned me off. I have no interest in being male!<</say>>
<<say "mc">>Well shit, now I understand why you're not so down on him despite everything.<</say>>
<<say "harley">>Yeah, he wasn't a bad boyfriend, I never loved him or anything, and I'm pretty sure that was mutual, but he also didn't want to see me do something against my will. Mind you, if what you said earlier is true, it wouldn't have worked anyway as I'm quite comfortable being a woman.<</say>>
<<say "mc">>Not just a woman, a gorgeous one.<</say>>
<<narrate>>She blushes.<</narrate>>
<<button "Continue" househub>>
<<like "harley" 1>>
<<lust "harley" 2>>
<<event "harley" "lounge01">>
<<time 1>>
<</button>>
<<case "college">>
<<block "harley/lounge02.jpg">>
<<say "mc">>What was college like as a traveler?<</say>>
<<say "harley">>Just regular college. I don't have a reference for any other type.<</say>>
<<say "mc">>Wait, does that mean everyone at college was a traveler, otherwise surely it would have been different?<</say>>
<<say "harley">>Yeah, I went to a college for travelers specifically. Most travelers do.<</say>>
<<say "mc">>Wow, it's like an entire alien community that nobody knows about.<</say>>
<</block>>
<<say "harley">>Alien? You cheeky bugger!<</say>>
<<narrate>>She playfully slaps your head.<</narrate>>
<<say "harley">>But that's not actually far from what it is, to be honest. We have our own community, and while you may never meet the same traveler twice, we all pass and share information on where to go for travel-friendly amenities, like college or to see a doctor.<</say>>
<<say "mc">>Wow, are travelers different from regular humans, then? Aside from the obvious gift, of course.<</say>>
<<say "harley">>Not exactly, but do remember we all come from various different worlds. The environment on each of those can be vastly different. If your home world has myths about strange humanoid creatures, it likely originated due to a traveler from another world.<</say>>
<<say "mc">>Oh wow, so vampires, gnomes and elves might all just be from a different world?<</say>>
<<say "harley">>I'm afraid I don't know all those myths, but in all likelihood, yes. The different gravity on the planets for instance will change the average height of its inhabitants.<</say>>
<<say "mc">>Shit, so gnomes probably are real!<</say>>
<<narrate>>She shrugs.<</narrate>>
<<say "harley">>I'm not saying every fairy tale is real, I'm just saying some of them probably originate from traveling.<</say>>
<<say "mc">>You've just opened up an entire new universe to me, thanks, $harley.name!<</say>>
<<say "harley">>My pleasure.<</say>>
<<button "Continue" househub>>
<<like "harley" 4>>
<<event "harley" "lounge01">>
<<time 1>>
<</button>>
<<case "festival">>
<<set _img = "harley/garden0"+_i+".jpg">>
<<block _img>>
<<say "mc">>How was the festival?<</say>>
<<say "harley">>Oh man, it was epic! Like, I didn't want to fangirl out, but I couldn't help it. When Corza Toolah was on stage, I basically creamed my pants.<</say>>
<<narrate>>You cough from the crass nature of that statement.<</narrate>>
<<say "mc">>Ha, not behind the door, are you?<</say>>
<<say "harley">>No reason to be.<</say>>
<<say "mc">>Who is Corza?<</say>>
<</block>>
<<say "harley">>You don't know Corza?! She's like the most famous musician in the traveler community.<</say>>
<<say "mc">>Oh, she's a traveler too?<</say>>
<<say "harley">>I guess you really are new to all this, huh?<</say>>
<<say "mc">>Yeah, I feel like I've really been thrown in the deep end. No manual and no manager. Just a vague goal. But focusing on improving the hub helps me keep my mind off the bigger things I can do nothing about.<</say>>
<<say "harley">>Makes sense. Hey, I wonder, could you do a festival here maybe?<</say>>
<<say "mc">>It'd take some setup, and I have no idea how to advertise to the worlds, but in terms of actually hosting it, it would surely be possible, and a good way to attract more travelers.<</say>>
<<say "harley">>Imagine how awesome it would be if Corza headlined?<</say>>
<<say "mc">>Oh, uh, yeah, for sure.<</say>>
<<narrate>>She gives you a peck on the cheek.<</narrate>>
<<say "harley">>I liked this chat, let's chat again, yeah?<</say>>
<<button "Continue" househub>>
<<like "harley" 3>>
<<if $harley.events.garden01 == undefined>>
<<event "harley" "garden01">>
<<else>>
<<event "harley" "garden02">>
<</if>>
<<time 1>>
<</button>>
<<case "whitney">>
<<set _img = "harley/garden0"+_i+".jpg">>
<<block _img>>
<<say "mc">>Where's $whitney.name, anyhow?<</say>>
<<narrate>>She looks a little disappointed by the question.<</narrate>>
<<say "harley">>She went home.<</say>>
<<say "mc">>Ah, that's a shame, it seemed the two of you were great friends.<</say>>
<<think "harley">>He's got me here, and he wants to talk about that bratty little cow?<</think>>
<<say "harley">>We're not that close, but we studied together and in small doses, she's quite fun. But, honestly, she's a bit much for me otherwise.<</say>>
<</block>>
<<say "mc">>Oh? I noticed the two of you changed when you interact.<</say>>
<<say "harley">>Yeah, it's kind of an in joke. She's not a bad person, she's just a bit of a... hmmm...<</say>>
<<narrate>>You can see her deciding whether to say it.<</narrate>>
<<say "mc">>Brat?<</say>>
<<narrate>>She cackles.<</narrate>>
<<say "harley">>Ha! You said it, not me!<</say>>
<<button "Continue" househub>>
<<like "harley" 1>>
<<if $harley.events.garden01 == undefined>>
<<event "harley" "garden01">>
<<else>>
<<event "harley" "garden02">>
<</if>>
<<time 1>>
<</button>>
<<case "dick">>
<<block "harley/garden01.jpg">>
<<say "mc">>What was with the dick grab this morning?<</say>>
<<say "harley">>Well, you were trying to ignore me! What, you didn't like it?<</say>>
<<say "mc">>I hated that it ended.<</say>>
<<say "harley">>Well, we can always continue.<</say>>
<<narrate>>You start unzipping.<</narrate>>
<</block>>
<<say "harley">>ONCE we get to know each other better. Jeez!<</say>>
<<say "mc">>Mixed signals, $harley.name!<</say>>
<<say "harley">>Look, you've got a nice dick, and you're cute, but I was a bit hasty this morning.<</say>>
<<say "mc">>Understood, I'll take it a bit slower.<</say>>
<<button "Continue" househub>>
<<like "harley" -1>>
<<lust "harley" 1>>
<<event "harley" "garden01">>
<<time 1>>
<</button>>
<<case "fitness">>
<<say "mc">>You know we have a fully equipped gym, right?<</say>>
<<say "harley">>I know, but I kinda like the fresh air.<</say>>
<<say "mc">>Fair enough, I'm not really dressed for it, but just tell me what to do.<</say>>
<<say "harley">>Best I just show you.<</say>>
<<narrate>>She bends down onto the yoga mat, then begins the poses.<</narrate>>
<<center "harley/yoga01.jpg">>
<<say "harley">>We'll start easy.<</say>>
<<say "mc">>Okay, yeah, I think I can handle that.<</say>>
<<think "mc">>Great excuse to just stare at that lovely ass.<</think>>
<<say "harley">>Well, that's just a warm-up. You won't be able to keep up for long.<</say>>
<<narrate>>She continues to change into simple stretches and poses, and you manage to follow along... until...<</narrate>>
<<center "harley/garden0201.jpg">>
<<say "mc">>Oh fuck, I can't get my leg up behind me like that in these clothes.<</say>>
<<say "harley">>Haha, the clothes, is it?<</say>>
<<say "mc">>I'll just admire your beauty from afar for the rest of the session.<</say>>
<<say "harley">>Oh! No, you don't. If you can't do yoga, you can get down here and do push-ups or sit-ups.<</say>>
<<say "mc">>You're like a drill sergeant!<</say>>
<<say "harley">>I like to get my way, you're not the only one appreciating something attractive.<</say>>
<<narrate>>She bites her lip as you throw off your top and begin doing sit-ups beside her.<</narrate>>
<<button "Continue" househub>>
<<like "harley" 1>>
<<lust "harley" 3>>
<<event "harley" "garden02">>
<<time 1>>
<</button>>
<<default>>
<</switch>><<set $scene = 0>>
<<set _active = "harley">>
<<set _passage = _active+"answers">>
<<set $return = returnLocation()>>
<<smallflirt _active>>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $harley.events.planets == undefined>>
<<link "Planets" harleyanswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if $tasks.festival != undefined>>
<<opt "Festival" _passage "festivalstart">><</opt>>
<</if>>
<<if $harley.events.promolearned == undefined>>
<div id="herwork"><<link "Her Work">>
<<if $location != "office">>
<<replace "#hreplace">>
<<say "mc">>Can you tell me more about what you do?<</say>>
<<say "harley">>Bah, I don't want to discuss work here! Let's talk in the office later. Pretty sure we can help each other, though.<</say>>
<</replace>>
<<toggleclass '#herwork' noshow>>
<<else>>
<<set $tempvar2 = "forceoffice">>
<<goto "harley">>
<</if>>
<</link>><br></div>
<</if>>
<<if $whitney.events.royal == undefined && $whitney.events.sauna == 2>>
<<opt "$whitney.name Royalty" _passage "whitneyroyalhub">><</opt>>
<</if>>
<<if $harley.events.promolearned != undefined && $harley.events.theodora == undefined && $harley.events.piggy >= 2>>
<<link "Model Promotion" harleyanswers>>
<<temp "model">>
<</link>>
<br>
<</if>>
<<link "Never mind" $return>><</link>><<run checkPlanets()>>
<<switch $tempvar>>
<<case "morning">>
<<say "voice" "???">>Mornin' sleepyhead!<</say>>
<<narrate>>Bleary-eyed, you look around at the mysterious voice.<</narrate>>
<<say "mc">>Why are you here this morning?<</say>>
<<block "harley/morning01.jpg">>
<<say "harley">>Someone got up on the wrong side of bed! I told you I'd be back in two days!<</say>>
<<say "mc">>I haven't even gotten up yet.<</say>>
<<narrate>>She points towards the tent you're pitching.<</narrate>>
<<say "harley">>I beg to differ.<</say>>
<<say "mc">>Five more minutes, okay?<</say>>
<<narrate>>You roll over and try to get back to sleep.<</narrate>>
<<say "harley">>Oh, no, you don't!<</say>>
<</block>>
<<narrate>>You suddenly bolt awake when she grabs your dick.<</narrate>>
<<say "harley">>Well, I didn't want to resort to such measures, but nobody ignores $harley.name.<</say>>
<<say "mc">>Did you just refer to yourself in third person?<</say>>
<<narrate>>She starts stroking your cock.<</narrate>>
<<say "harley">>Is that really what you're thinking about right now? Come on, let's chat.<</say>>
<<narrate>>She releases your dick and sits at the end of the bed, patting beside her for you to sit, too.<</narrate>>
<<say "mc">>You're not even gonna finish me off?<</say>>
<<say "harley">>Ha, I knew you wanted in my pants!<</say>>
<<say "mc">>Of course, have you looked in a mirror?<</say>>
<<say "harley">>Well, maybe later. First, let's talk about patrons.<</say>>
<<think "mc">>Ugh, I guess I did ask her for that info but right now I'm struggling to overrule my dick.<</think>>
<<button "Continue" harleymeet>>
<<temp "morning01">>
<<lust "harley" 2>>
<</button>>
<<case "morning01">>
<<say "harley">>So, the guy I dated was a tour guide. Not many male options in the traveler community so I gave him a shot despite all the red flags.<</say>>
<<say "mc">>Bad guy?<</say>>
<<say "harley">>Not exactly, we just didn't want the same things. But, as a result, I got to learn a bit about his patron. Even tour guides don't usually get to interact with them freely, but this one seemed to like her tour guides... and they were all male.<</say>>
<<say "mc">>She got herself a bit of a reverse-harem?<</say>>
<<say "harley">>Exactly, that many male travelers in one place was unheard of. When I got speaking to her, turns out they weren't all male to start.<</say>>
<<if $voice.events.playground != undefined>>
<<say "mc">>Ah, the playground?<</say>>
<<say "harley">>Shit, you really are a patron, aren't you? Nobody else believes me when I talk about it, and the myths of it only refer to as Central. But you know the name patrons give it.<</say>>
<<else>>
<<say "mc">>Ah, she used Central?<</say>>
<<say "harley">>That's the name from the myths, but the patrons themselves usually call it the playground.<</say>>
<<event 'voice' 'playground'>>
<</if>>
<<say "mc">>Yeah, I encountered it quite early. I think it has a bunch of different names. Its use isn't entirely available to me, though. I think I have to wait for an inspection before I can use it properly.<</say>>
<<if $voice.events.playground == undefined>>
<<say "harley">>Shit, you really are a patron, aren't you? Nobody else believes me when I talk about it.<</say>>
<</if>>
<<say "harley">>And you'll use it, turn people into different people against their will?<</say>>
<<say "mc">>I haven't given it any thought. But from my limited understanding, there are restrictions in place from doing anything untoward to people against their will.<</say>>
<<if $girlsmet.includes('theodora') || $girlsmet.includes('sophia')>>
<<think "mc">>I'd best not mention what I've already done with it, and just how little their freewill is really involved.<</think>>
<</if>>
<<narrate>>She looks at you quizzically.<</narrate>>
<<say "harley">>I'm not aware of anything like that, but I guess it's possible the women she turned had yearned to be men. Either way, the prospect makes me a little anxious.<</say>>
<<narrate>>You simply nod.<</narrate>>
<<say "harley">>But anyway, before I realized just what was going on there, I actually made surprisingly good friends with the patron, Jeanette. She didn't tell me much about patrons, but she did mention a council of sorts.<</say>>
<<say "mc">>Like they rule over patrons or watch them or what?<</say>>
<<say "harley">>From the way she explained it, it was like a group of the more powerful patrons would commune and decide when to create new patrons, or destroy existing ones for becoming corrupt.<</say>>
<<say "mc">>Holy crap. That sounds scary as hell. Anything else you can tell me about the council? It sounds like I'd do well to stay in their good books.<</say>>
<<say "harley">>Afraid not, that's all that I know that's useful. But hopefully it's of some help.<</say>>
<<say "mc">>Thanks, $harley.name.<</say>>
<<say "harley">>No problem. Listen, is it okay if I stick around for the day? I'll go home in the morning. I'm super intrigued, and $whitney.name didn't stop talking about you at the festival. I kinda want to know more about you and why your hub is so unique.<</say>>
<div id="replace">
<<choices "Let her stay until tomorrow?">>
<<link "Sure">>
<<like "harley" 5>>
<<replace "#replace">>
<<say "mc">>How could I ever say no to a beautiful woman?<</say>>
<<say "harley">>Great, I guess I'll see you around the place!<</say>>
<<narrate>>She gets up, gives you a hug and leaves the room.<</narrate>>
<<think "mc">>She's only around for the day, and who knows when I'll see her next. If I want to know her better, I better put the effort in today.<</think>>
<<button "Continue" househub>>
<<set $kp.events.wait = 2>>
<<available "harley">>
<<taskdone "harleyreturn">>
<<task "council">>
<</button>>
<</replace>>
<</link>>
<br>
<<link "No">>
<<like "harley" -3>>
<<replace "#replace">>
<<say "mc">>I think that would be inappropriate, perhaps another, prearranged time?<</say>>
<<say "harley">>Oh, uh, yeah, sure.<</say>>
<<narrate>>She gets up, gives you a nod and leaves the room.<</narrate>>
<<think "mc">>How the hell did she get in here, anyway?<</think>>
<<button "Continue" househub>>
<<set $kp.events.wait = 1>>
<<lust "harley" -2>>
<<taskdone "harleyreturn">>
<<task "council">>
<<event "harley" "denied">>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<default>>
<<narrate>>You're about to connect when you hear a voice from behind you.<</narrate>>
<<say "whitney">>$harley.name, you dirty slut, is that really you?<</say>>
<<think "mc">>Wow, I've never heard her talk like that.<</think>>
<<block "harley/meet01.jpg">>
<<say "harley">>Oh. My. Gawd. $whitney.name? You whore, how are you?!<</say>>
<<think "mc">>The fuck?<</think>>
<<narrate>>They both see your face and burst out laughing.<</narrate>>
<<say "whitney">>Haha, sorry, $name, we know each other from college. It's just banter.<</say>>
<<say "harley">>You know this tour guide, $whitney.name?<</say>>
<<say "whitney">>He's no tour guide he's the patron here.<</say>>
<</block>>
<<say "harley">>Shit really? He wasn't just trying to get into my pants?<</say>>
<<say "whitney">>Look at you, girl, he most definitely was trying to get into your pants, but he's also the patron here.<</say>>
<<think "mc">>I mean, definitely would have tried, but as yet not even given the chance!<</think>>
<<say "harley">>Sorry that I didn't believe you. Listen, I've met another patron before, I was dating a tour guide for some time. I can tell you more, but I really do need to get off for now.<</say>>
<<say "whitney">>Oh, he'd love to help you get off alright!<</say>>
<<say "harley">>Hah! Slut!<</say>>
<<think "mc">>$whitney.name is like a different person when she's with $harley.name, and while I've only just met her, she too appears to change in $whitney.name's presence.<</think>>
<<say "mc">>So where did you want me to send you?<</say>>
<<say "whitney">>Oh, no way. Girl, we're staying here for a bit.<</say>>
<<say "harley">>I can't, I've got maybe an hour at best. But I'll be back in two days. In fact, I'm going to a festival, why don't you come with, $whitney.name?<</say>>
<<say "whitney">>Let's go girl! See you later, $name.<</say>>
<<think "mc">>She took no convincing at all.<</think>>
<<say "harley">>I'll be back in two days, see you then, $name!<</say>>
<<narrate>>You open the gateway and let them through.<</narrate>>
<<narrate>>You feel a pleasure pulsate through your body as the two of them leave the hub world. The dry orgasm courses through your body, filling every cell with a feeling of bliss.<</narrate>>
<<think "mc">>Fuck, that's the third time now. I still can't get used to it.<</think>>
<<notice>>
<ul>
<li>Your power has increased.</li>
<li>Your max energy has increased.</li>
<li>$harley.name's home world is now available for expeditions.</li>
</ul>
<</notice>>
<<button "Continue" gatewayb>>
<<set $power++>>
<<taskdone "harley">>
<<lust "harley" 5>>
<<like "harley" 5>>
<<meet "harley">>
<<set $maxenergy+=2>>
<<task "harleyreturn">>
<<event "harley" "return" 3>>
<<set $planets[4] = {unlocked:true}>>
<<unavailable "whitney">>
<</button>>
<</switch>><<scene>>
<<switch $tempvar>>
<<case "stress00">>
<<narrate>>You almost jump out of your skin when you open your door and see someone sat on your bed.<</narrate>>
<<center "harley/bed01.jpg">>
<<narrate>>$harley.name laughs and gives you a wry grin.<</narrate>>
<<say harley>>You were right, you know?<</say>>
<<narrate>>She pulls of her top throwing it in your direction.<</narrate>>
<<think mc>>I like where this is going...<</think>>
<<say mc>>About what?<</say>>
<<say harley>>That I need to de-stress. And I know the best method by far.<</say>>
<<narrate>>She pulls down her skirt, revealing a lack of panties, and drops it on the bed beside her.<</narrate>>
<<say mc>>Oh, really, what is it you had in mind?<</say>>
<<narrate>>She rolls her eyes at you, lays back on the bed and spreads her pussy lips.<</narrate>>
<<cont "harleysex" "stress01">>
<<case "stress01">>
<<vid "harley/stress01.mp4">>
<<narrate>>She starts rubbing herself while looking you directly in the eye.<</narrate>>
<<say harley>>I can do this by myself if you're gonna keep playing games.<</say>>
<<narrate>>You pull down your trousers, your stiff cock almost comically bouncing out.<</narrate>>
<<say harley>>That's more like it, bring that lovely dick over here and let me have a taste!<</say>>
<<cont "harleysex" "stress02">>
<<case "stress02">>
<<vid "harley/stress02.mp4">>
<<narrate>>She grabs your cock by its base, and toys with your balls for a moment before taking your cock to the back of her throat.<</narrate>>
<<say mc>>Fuck, that's good.<</say>>
<<cont "harleysex" "stress03">>
<<case "stress03">>
<<vid "harley/stress03.mp4">>
<<narrate>>Bobbing her head back and forth, she continues to expertly service your manhood.<</narrate>>
<<say harley>>Let's get you nice and ready...<</say>>
<<narrate>>Her grip around the base of your cock loosens and she pulls away.<</narrate>>
<<say harley>>I need that cock inside me.<</say>>
<<narrate>>She twists around and waggles her ass invitingly at you.<</narrate>>
<<cont "harleysex" "stress04">>
<<case "stress04">>
<<narrate>>You gently slide inside her as she moans and grips the sheets, fueled by lust and desire.<</narrate>>
<<vid "harley/stress04.mp4">>
<<say harley>>Yes, that's it! Yes!<</say>>
<<narrate>>Despite the position, she takes increasing control of the pace and you decide to just go with it, prioritizing her pleasure over yours, at least for now.<</narrate>>
<<say harley>>Yes, mmhh~ oh, god, I needed this.<</say>>
<<cont "harleysex" "stress05">>
<<case "stress05">>
<<vid "harley/stress05.mp4">>
<<narrate>>Her moans become more frequent as she increases the pace. It's all you can do not to grab her hips and thrust wildly.<</narrate>>
<<say harley>>Yes, yes, yes. That's the spot!<</say>>
<<narrate>>Her movements are forceful but slow, each thrust teasing you to let loose your own desires, but you hold back, allowing her to use you as a living dildo.<</narrate>>
<<say harley>>Oh, that's good... yes! Lay... lay down, I wanna ride!<</say>>
<<cont "harleysex" "stress06">>
<<case "stress06">>
<<vid "harley/stress06.mp4">>
<<narrate>>You can feel her quiver as she lowers herself on to your cock.<</narrate>>
<<say harley>>Oh, yes, this is so good. Yes.<</say>>
<<narrate>>You feel the pleasure inside you building, a slow buildup for an epic release.<</narrate>>
<<cont "harleysex" "stress07">>
<<case "stress07">>
<<narrate>>She twists around on your cock and quickens the pace ever so slightly.<</narrate>>
<<vid "harley/stress07.mp4">>
<<say harley>>Mhhm~ yes, that's so good. I fucking love your cock.<</say>>
<<narrate>>Her movements become faster and more forceful.<</narrate>>
<<say harley>>I'm gonna finish you off!<</say>>
<<cont "harleysex" "stress08">>
<<case "stress08">>
<<vid "harley/stress08.mp4">>
<<narrate>>She continues to bounce up and down on your cock, faster and faster, harder and harder, her moans become ever louder as you grow ever closer to eruption.<</narrate>>
<<say harley>>Cum for me! Fill me with your warm goo! Together, let's do it together!<</say>>
<<narrate>>Already struggling to hold it back, her words send you over the edge, and you erupt inside as she tightens around your cock and her arms shake and buckle under the strain.<</narrate>>
<<say mc>>Yes, fuuuck!<</say>>
<<say harley>>Oh, my, fucking fuck, fuck, yes!<</say>>
<<narrate>>She continues to bounce on your cock as you both orgasm, the squelching sounds of your juices mixing together echoing around the room.<</narrate>>
<<say harley>>Oh, god, yes... I needed that, I fucking needed your cock.<</say>>
<<narrate>>She slows her movements and arches her back until your cock slides out of her, and she's laying next to you.<</narrate>>
<<say mc>>Feeling better?<</say>>
<<say harley>>God... fuck yes...<</say>>
<<narrate>>You lay together in comfortable silence for a few minutes before she gets up with a start.<</narrate>>
<<say harley>>Right, I'd better go and make sure everything's ready for tomorrow!<</say>>
<<say mc>>Wait, don't push yourself again, remember what happened earlier.<</say>>
<<say harley "" "(Sarcastically)">>Okay, dad!<</say>>
<<say mc>>You can call me daddy if you like.<</say>>
<<say harley>>Ha! Anyway, I'm not gonna take on too much, but the night doesn't end when the last band is finished, there's clean up and prep for tomorrow. I'm going delegate more, don't worry, but I still need to be involved.<</say>>
<<say mc>>Alright... just... don't do too much, okay?<</say>>
<<button "Continue" "festival">>
<<set $festival.harley.helped = 2>>
<<unlock "harley" "stress">>
<<set $horny = 0>>
<<like "harley" 6>>
<<lust "harley" 4>>
<<temp "festsleep">>
<<time 1>>
<</button>>
<<case "cel01">>
<<vid "harley/cel01.mp4">>
<<say "mc">>Yes, dance for me, baby!<</say>>
<<narrate>>You join in with the beat, stripping off in time as she laughs at your exaggerated movements.<</narrate>>
<<say "harley">>Enough playing around, I've waited far too long to taste your cock again.<</say>>
<<narrate>>She drops to her knees before you as the song comes to an end.<</narrate>>
<<cont "harleysex" "cel02">>
<<case "cel02">>
<<vid "harley/cel02.mp4">>
<<narrate>>Greedily she wraps her lips around your rod, bobbing her head back and forth.<</narrate>>
<<say "mc">>Yes... that's it. Fuck yes, that's it.<</say>>
<<cont "harleysex" "cel03">>
<<case "cel03">>
<<narrate>>You grab her head and gently rock your hips back and forth.<</narrate>>
<<vid "harley/cel03.mp4">>
<<say "mc">>Choke on that big cock!<</say>>
<<narrate>>She gasps for air, glaring at you lustfully.<</narrate>>
<<say "harley">>Let's move on to the main course...<</say>>
<<narrate>>She rests on the sofa, spreading her legs, while blowing you a kiss.<</narrate>>
<<cont "harleysex" "cel04">>
<<case "cel04">>
<<vid "harley/cel04.mp4">>
<<say "mc">>My god, you're tight.<</say>>
<<say "harley">>Mhmm~ fuck yes. Yes, yes, yes, yes, just like that, just like that.<</say>>
<<cont "harleysex" "cel05">>
<<case "cel05">>
<<vid "harley/cel06.mp4">>
<<say "mc">>Ride it, ride that dick!<</say>>
<<say "harley">>Ohh~ yes, fucking, yes, yes, yes!<</say>>
<<cont "harleysex" "cel06">>
<<case "cel06">>
<<vid "harley/cel05.mp4">>
<<narrate>>She's insatiable as she pushes back against you, her movements hard and deliberate as she uses you like a sex toy. Not that you mind.<</narrate>>
<<say "mc">>That's it! Fuck that dick, show me how much you need my dirty great big cock!<</say>>
<<say "harley">>Yes, yes! I want it, I want it all. Harder, harder!<</say>>
<<narrate>>She screams out as she climaxes, her arms give way and she falls to the sofa.<</narrate>>
<<say "harley">>Cover me in your lust. Drown me in your spunk!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "harley/cel07.mp4">>
<<say "mc">>Oh, fucking, yes, fuck, fuck, yes, fuck, $harley.name, yes!<</say>>
<<narrate>>You explode over her face, a large dollop vying for freedom as it runs down her cheek.<</narrate>>
<<say "harley">>There's so much, fuck...<</say>>
<<narrate>>She licks the remnants of your helmet then looks up at you, smiling sweetly.<</narrate>>
<<say "harley">>I do enjoy my visits.<</say>>
<<say "mc">>Oh, believe me, me too!<</say>>
<<narrate>>The two of you giggle while telling each other lame jokes for a few minutes then head to get cleaned up.<</narrate>>
<<button "Continue" househub>>
<<unlock "harley" "cel">>
<<lust "harley" 5>>
<<like "harley" 2>>
<<time 2>>
<</button>>
<</replace>>
<</button>>
</div>
<<case "morning">>
<<set $harley.events.visit = 7>>
<<event "harley" "morning" 2>>
<<event "harley" "visit" 8>>
<<event "harley" "return" 0>>
<<block "harley/morning01.jpg">>
<<say "harley">>Good morning sleepyhead!<</say>>
<<say "mc">>Ah, another morning where I am awoken by a beautiful woman. What a wonderful world.<</say>>
<<say "harley">>I see you're a bit more chipper this morning.<</say>>
<<say "mc">>I kinda expected you today.<</say>>
<<say "harley">>Oh yeah, why's that?<</say>>
<<say "mc">>How about you repeat that dick grab from before, and we see where that ends up?<</say>>
<</block>>
<<if $harley.lust > 24>>
<<narrate>>She grabs your dick without any hesitation.<</narrate>>
<<say "harley">>So, how do you see this progressing?<</say>>
<<narrate>>As you begin to reply, she quickly interrupts you.<</narrate>>
<<say "harley">>Shit, your breath stinks. Go brush your teeth, take a shower, and I'll get comfortable here. I've only got an hour, so hurry up!<</say>>
<<say "mc">>Fair.<</say>>
<<button "Freshen Up" harleysex>>
<<temp "morningpos">>
<<unavailable "harley">>
<<taskdone "sendharleyhome">>
<</button>>
<<button "Another Time" househub>>
<<lust "harley" -2>>
<<taskdone "sendharleyhome">>
<<unavailable "harley">>
<</button>>
<<else>>
<<say "harley">>I'm afraid I need to get going. But I'll return in seven days and we can hang out again if you want.<</say>>
<<say "mc">>Well, that sucks, but at least I get to see you again.<</say>>
<<say "harley">>Yeah.<</say>>
<<narrate>>She kisses your forehead and leaves.<</narrate>>
<<think "mc">>I guess I didn't leave a good enough impression yesterday. Well, there's always next week.<</think>>
<<button "Continue" househub>>
<<unavailable "harley">>
<<taskdone "sendharleyhome">>
<</button>>
<</if>>
<<case "morningpos">>
<<center "harley/morning02.jpg">>
<<narrate>>You return wearing just a towel. Before you, $harley.name lays naked and waiting.<</narrate>>
<<say "mc">>Holy shit, $harley.name.<</say>>
<<say "harley">>Like what you see?<</say>>
<<say "mc">>Let me show you just how much.<</say>>
<<narrate>>You stroll over and drag her by her ankles to the edge of the bed.<</narrate>>
<<say "harley">>Oooh!<</say>>
<<narrate>>She squeals in delight.<</narrate>>
<<say "mc">>Look at what you've done to me.<</say>>
<<narrate>>You drop your towel dramatically, revealing your hard cock. Without any hesitation, she grabs it, repositions herself at your feet and brings your cock into her mouth with an insatiable lust.<</narrate>>
<<button "Continue" harleysex>>
<<temp "morning01">>
<</button>>
<<case "morning01">>
<<vid "harley/morning01.mp4">>
<<narrate>>You hold the back of her head as she takes the full length of your cock down her throat. Repeatedly.<</narrate>>
<<say "mc">>Yes, yes, Fuck yes.<</say>>
<<narrate>>You start pushing back against her, until you're just fucking her throat.<</narrate>>
<<say "mc">>That's it, show me just how dirty you are.<</say>>
<<narrate>>She pushes you away suddenly. Perplexed, you stand motionless for a moment, worrying you've gone too far.<</narrate>>
<<say "mc">>I—<</say>>
<<narrate>>Before you can say anything else, she drags you on to the bed.<</narrate>>
<<say "harley">>I'm gonna ride you hard.<</say>>
<<think "mc">>Fuck yes, glad I read that situation wrong.<</think>>
<<button "Continue" harleysex>>
<<temp "morning02">>
<</button>>
<<case "morning02">>
<<vid "harley/morning02.mp4">>
<<narrate>>You grab her waist and pound into her in sync as she bounces on your dick.<</narrate>>
<<say "harley">>Oh fuck yes, yes. Right there. Don't stop!<</say>>
<<narrate>>You pick up the pace, fucking her harder and harder.<</narrate>>
<<say "mc">>It's not enough.<</say>>
<<narrate>>Turning the tables, you throw her off you and push her down on to the bed.<</narrate>>
<<say "mc">>Ass up, I'm gonna fuck you so damn hard right now, you'll need a wheelchair to get back to the gateway.<</say>>
<<narrate>>She cackles, but otherwise sticks her ass up at you.<</narrate>>
<<say "harley">>No anal.<</say>>
<<say "mc">>Understood.<</say>>
<<think "mc">>Best not push my luck.<</think>>
<<button "Continue" harleysex>>
<<temp "morning03">>
<</button>>
<<case "morning03">>
<<vid "harley/morning03.mp4">>
<<narrate>>You pull her cheeks apart to take in the view.<</narrate>>
<<say "harley">>Oh, fuck. Harder, harder! That's it. Yes!<</say>>
<<narrate>>Taking it as a challenge, you find renewed vigor, grab her waist and start thrusting hard, her ass cheeks clapping against you with every motion.<</narrate>>
<<say "mc">>That hard enough for you, bitch?<</say>>
<<narrate>>She responds with moans of pleasure.<</narrate>>
<<say "harley">>Yes... fuck... YES!<</say>>
<<narrate>>Her moans get closer together, higher pitched, and you can feel her pussy tighten around your cock. Her arms are shaking and her hands gripping the blanket tightly, the orgasm rushes through her.<</narrate>>
<<say "harley">>Fuuuuuck.<</say>>
<<narrate>>As you approach your climax too, you again pull her off the bed.<</narrate>>
<<say "mc">>I want to look you in the eyes as I cum all over your slutty fucking face.<</say>>
<<vid "harley/morningcum.mp4">>
<<narrate>>Spent, you fall down on the bed.<</narrate>>
<<say "mc">>Shit, guess I need another shower now. Wanna join?<</say>>
<<say "harley">>I would absolutely love to, but I seriously need to go and right now my legs are fucking jelly.<</say>>
<<say "mc">>Heh, I was only joking about the wheelchair!<</say>>
<<narrate>>She snorts.<</narrate>>
<<say "harley">>Hah! Just give me a few minutes and I'll be off. I'll see you in seven days, though, yeah?<</say>>
<<button "Continue" yourroom>>
<<lust "harley" 4>>
<<like "harley" 2>>
<<unlock "harley" "morning">>
<<unlock "harley" "loungebj">>
<<time 1>>
<</button>>
<<case "loungebj">>
<<left2 "harley/lounge01.jpg">>
<<if $harley.events.morning == 2>>
<<narrate>>She slides closer to you on the sofa.<</narrate>>
<<say harley>>I enjoy my time here, you always seem to take the time for me.<</say>>
<<say "mc">>What can I say, when a woman as alluring as you comes into my life, I can't help but notice her.<</say>>
<<narrate>>She snorts.<</narrate>>
<<say "harley">>And I couldn't help but notice your lecherous eyes.<</say>>
<<narrate>>She starts rubbing your crotch through your jeans. It only takes a moment to get hard.<</narrate>>
<<say "harley">>So...?<</say>>
<<narrate>>She looks at you expectantly while holding your dick through your jeans.<</narrate>>
<<else>>
<<say "harley">>I've had a great day and you've clearly been paying attention.<</say>>
<<narrate>>She slides closer to you on the sofa.<</narrate>>
<<say "mc">>What can I say, when a woman as alluring as you comes into my life, I can't help but notice her.<</say>>
<<narrate>>She snorts.<</narrate>>
<<say "harley">>And I couldn't help but notice your lecherous eyes all day!<</say>>
<<narrate>>She starts rubbing your crotch through your jeans. It only takes a moment to get hard.<</narrate>>
<<say "harley">>How about I finish what I started this morning?<</say>>
<</if>>
<<say "mc">>You'll hear no objections from me.<</say>>
<<narrate>>You stand up to throw your jeans to one side and let your dick free.<</narrate>>
<<say "harley">>Fuck, that looks delicious. Let me have a taste.<</say>>
<<narrate>>As she's getting on her knees, you push her dress over her shoulders, letting it fall to revealing her perky tits.<</narrate>>
<<say "harley">>Like what you see?<</say>>
<<say "mc">>I think my dick tells you all you need to know. How about the two of you get acquainted?<</say>>
<<button "Continue" harleysex>>
<<temp "loungebj02">>
<</button>>
<<case "loungebj02">>
<<vid "harley/loungebj01.mp4">>
<<narrate>>She hungrily takes your cock's full length.<</narrate>>
<<say "mc">>Fuck me, $harley.name. Wow.<</say>>
<<say "harley">>Mhhhm, maybe later. But right now, fuck my throat. Show me just how much you want me.<</say>>
<<narrate>>You grab the back of her head and thrust with a steely determination.<</narrate>>
<<say "mc">>Let's hope you don't regret that. Take it, take my entire cock in your dirty whore throat.<</say>>
<<narrate>>You pick up the tempo, not once allowing her to respond.<</narrate>>
<<say "mc">>Fuck, this feels amazing.<</say>>
<<narrate>>You keep going, faster and faster, using her throat as if it were nothing more than a fancy fleshlight. Her saliva runs down your thigh as you move ever close to your climax.<</narrate>>
<<left2 "harley/loungecum.jpg">>
<<narrate>>As you get close, you pull out of her throat, and with a guttural moan, explode on her face.<</narrate>>
<<say "mc">>Damn, $harley.name. That was intense.<</say>>
<<say "harley">>That was fucking hot, is what it was!<</say>>
<<narrate>>She stays on her knees, staring at you as she moves the cum from her chin into her mouth.<</narrate>>
<<say "mc">>You are so fucking sexy.<</say>>
<<say "harley">>And you're a beast. I can't wait to eat again.<</say>>
<<say "mc">>Shit, any time!<</say>>
<<button "Go to Bed" bedroom>>
<<lust "harley" 5>>
<<event "harley" "morning" 1>>
<<unlock "harley" "loungebj">>
<<time 2>>
<</button>>
<<default>>
<<set _p = passage()>>
<<set _c = previous()>>
Seeing this? There's an error with temp ($tempvar) in _p or _c
<br>Last known location: $location.
<</switch>><<tracker "harley">>
<<if $harley.events.morning == 2>>
<<if $harley.events.promolearned == undefined>>
<<step "Office chat" "Speak to her about her work in the office.">>
<<elseif $possess == undefined || $possess == false>>
<<step "Progress the story" "You're not powerful enough to advance yet. This will trigger automatically if you follow the story tasks.">>
<<elseif $harley.events.piggy == undefined>>
<<step "Home world visit" `"While she's off world piggy back an explorer when they visit "+$planets[4].name+"."`>>
<<elseif $harley.events.piggy == 1>>
<<step "Rescheduled Visit" `"While she's off world piggy back an explorer when they visit "+$planets[4].name+"."`>>
<<else>>
<<movielist harley>>
<</if>>
<<else>>
<<if $harley.events.return > 1>>
<<step "She'll return soon" `"Wait "+($harley.events.return-1)+" more days and this will trigger automatically."`>>
<<elseif $harley.events.visit > 1>>
<<step "She'll visit again soon." `"Wait "+($harley.events.visit-1)+" more days and she'll visit again."`>>
<<elseif $harley.events.denied != undefined>>
<<step "Invite her back." "You denied her visit last time, but you can invite her back whenever you like a Gateway B.">>
<<elseif $hour >= 8 && $hour < 10 && $harley.events.garden01 == undefined>>
<<step "Garden chat" "Speak to her in the garden.">>
<<elseif $hour > 8 && $hour < 10 && $harley.events.garden01 != undefined>>
<<step "Moving on" "She'll change location at 10:00.">>
<<elseif $hour > 8 && $hour < 12 && $harley.events.lounge01 == undefined>>
<<step "Lounge chat" "Speak to her in the lounge.">>
<<elseif $hour > 8 && $hour < 12 && $harley.events.lounge01 != undefined>>
<<step "Moving on" "She'll change location at 12:00.">>
<<elseif $hour > 8 && $hour < 14 && $harley.events.pool01 == undefined>>
<<step "Pool chat" "Speak to her by the pool.">>
<<elseif $hour > 8 && $hour < 14 && $harley.events.pool01 != undefined>>
<<step "Moving on" "She'll change location at 14:00.">>
<<elseif $hour > 8 && $hour < 16 && $harley.events.garage == undefined>>
<<step "Garage chat" "Speak to her in the garage.">>
<<elseif $hour > 8 && $hour < 16 && $harley.events.garage != undefined>>
<<step "Moving on" "She'll change location at 16:00.">>
<<elseif $hour > 8 && $hour < 18 && $harley.events.garden02 == undefined>>
<<step "Garden chat" "Speak to her in the garden.">>
<<elseif $hour > 8 && $hour < 18 && $harley.events.garden02 != undefined>>
<<step "Moving on" "She'll change location at 18:00.">>
<<elseif $hour > 8 && $hour < 20 && $harley.events.pool02 == undefined>>
<<step "Pool chat" "Speak to her by the pool.">>
<<elseif $hour > 8 && $hour < 20 && $harley.events.pool02 != undefined>>
<<step "Moving on" "She'll change location at 20:00.">>
<<elseif $hour > 8 && $hour < 22 && $harley.events.office == undefined>>
<<step "Office chat" "Speak to her in the office.">>
<<elseif $hour > 8 && $hour < 22 && $harley.events.office != undefined>>
<<step "Moving on" "She'll change location at 22:00.">>
<<elseif $hour > 8 && $hour < 24 && $harley.events.lounge02 == undefined>>
<<step "Lounge chat" "Speak to her in the lounge.">>
<<else>>
<<step "Morning farewell" "She'll say goodbye in the morning.">>
<</if>>
<</if>>
<</tracker>>
/*
<<elseif !$girlsmet.includes('theodora') && $charlie.events.arrived == undefined>>
<<step "Progress the story." "This will trigger automatically if you continue to follow the story tasks.">>
<<elseif !$girlsmet.includes('theodora')>>
<<step "Send $charlie.name to 0-0-0." "Go to Gateway B, connect to 0-0-0 and select genderswap.">>
<<elseif $theodora.events.goingpro == undefined>>
<<step "Progress with $theodora.name" `"Advance "+$theodora.name+"'s story until you've spoken to her about going pro."`>>
<<elseif $harley.events.theodora == undefined>>
<<step "Model Promo" "Speak to her about promoting models when she visits.">>
*/<<nobr>>
<<set $scene = 0>>
<<if $location != $currentlocations.kayla && $location != "firstIntros" && $replay == false>>
<<say "kayla">>When did it get so late? I really gotta go!<</say>>
<<follow kayla>>
<<button "Continue" $return>>
<</button>>
<<elseif $location == "bakery" && $kayla.bimbo != true>>
<<center "kayla/bakery02.jpg">>
<<think "mc">>Ah, perfect timing.<</think>>
<<narrate>>You enjoy the view as she attends to the oven.<</narrate>>
<<say "kayla">>You dirty dog, how long were you gonna watch me?<</say>>
<<say "mc">>It's such a breathtaking view, I could stare all day.<</say>>
<<say "kayla">>Oh my gosh, you're so bad! I'm working!<</say>>
<<choices "What do you want to discuss?" "topics">>
<</choices>>
<<elseif $location == "gatewayb">>
<<narrate>>As you're driving to the gateway, you spot $kayla.name resting a few minutes away from the gateway.<</narrate>>
<<block "kayla/gatewayb01.jpg">>
<<say "mc">>Wow, the sunshine suits you well. You look radiant.<</say>>
<<say "kayla">>Ha, you're not so bad yourself.<</say>>
<<say "mc">>Wanna make out?<</say>>
<<say "kayla">>Ha, dork!<</say>>
<<narrate>>Despite her words, she leans in and kisses you passionately.<</narrate>>
<</block>>
<<narrate>>After a minute, the two of you stare deeply into each other's eyes.<</narrate>>
<<if $kayla.events.gatewaybmet == undefined>>
<<say "kayla">>I owe you so much.<</say>>
<<say "mc">>You owe me nothing.<</say>>
<<say "kayla">>I don't deserve this forgiveness... and I got thinking. What does $name like? How do I repay him?<</say>>
<<think "mc">>Oh, baby, you should know what I want by now!<</think>>
<<block "kayla/gatewayb02.jpg">>
<<say "kayla">>And, well I know <i>exactly</i> what you like, but then I thought, how about a twist?<</say>>
<<say "mc">>I thought I was following, but now I'm not so sure.<</say>>
<<say "kayla">>You've a unique gift, you can make me more... well, more. Or perhaps you'd prefer something I have... in the back?<</say>>
<<say "mc">>More?<</say>>
<<say "kayla">>Transformation. Bigger boobs, taller. I think the relevant term may be bimbo.<</say>>
<</block>>
<<think "mc">>I mean she's already a bit of a bimbo... though in a good way.<</think>>
<<say "mc">>Hold on. Wait. So what you're saying is, your gift to me is your ass or this bimbo transformation?<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kayla">>I thought that may get your attention, and if you can't wait, you can take me right now. Right here. Bend me over the hood of your car while overlooking the facilities below.<</say>>
<<say "mc">>Shit, how the hell do I decide when everything sounds so damn good?<</say>>
<<narrate>>She strokes your chest.<</narrate>>
<<say "kayla">>Don't worry, you can get it all. I'll be back here tomorrow morning waiting. All you actually have to chose is what you want at this very second.<</say>>
<<event "kayla" "gatewaybmet">>
<<else>>
<<say "kayla">>So, what do you fancy today?<</say>>
<</if>>
<<choices>>
<<link "Take her right now" kaylasex>>
<<temp "car">>
<</link>><br>
<<link "Destroy her ass" kaylasex>>
<<temp "sorryanal">>
<</link>><br>
<<if $breakdone != undefined && $breakdone.toilets != undefined && $breakdone.toilets.includes('shower') && $mc.events.kaylagone == "caught">>
<<link "Transformation" transformation>>
<<temp "sorry">>
<</link>>
<<elseif $mc.events.kaylagone == "caught">>
<<step "More options may be available if you had the right facilities." "Upgrade the toilets to include showers to unlock this option.">>
<</if>><br>
<<link "Another time" gatewayb>>
<</link>>
<</choices>>
<<else>>
<<set _img = getImg('kayla')>>
<<left2 _img>>
<<say 'kayla'>>Hey, what's up? Come in, sit down!<</say>>
<<narrate>>She ushers you to the chair before you even get chance to say anything.<</narrate>>
<<choices "What do you want to discuss?" "topics">>
<</choices>>
<</if>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("kayladiscussions").processText());
})
<</script>>
<</nobr>><<nobr>>
<<scene>>
<<set _img = getImg('kayla')>>
<<switch $tempvar>>
<<case "assistants">>
<<left2 _img>>
<<say mc>>What can you tell me about assistants?<</say>>
<<narrate>>She looks at you confused.<</narrate>>
<<say kayla>>They are people who help others, but like it's contextual to the job. Why do you ask? Do you need a PA or something?<</say>>
<<say mc>>Ah, no, I meant specifically the assistants in Prime.<</say>>
<<say kayla>>Ohhh, that makes more sense. Wait, how do you know about those? Did mom mention them?<</say>>
<<say mc>>I met one when I was in Prime, well I don't know if met is the right word, but I spoke to one.<</say>>
<<say kayla>>Wow. That's really cool. Did you like it? Did you meet any of my sisters, cousins, or aunts?<</say>>
<<say mc>>Whoa, whoa, slow down. I didn't really see much of it to be honest, just stuck in a single room. I met $or.name, though.<</say>>
<<say kayla>>That's sucks. I'm sure you'd love it there. Oh, I don't know Aunt $or.name very well. I'd love to show you Prime properly once day.<</say>>
<<say mc>>Well, maybe one day you can.<</say>>
<<narrate>>She grins ear to ear.<</narrate>>
<<say mc>>So... hte assistants?<</say>>
<<say kayla>>Oh, yeah, they are the software that run Prime. You know we have Gates in Prime similar to the one we built from here to New Eden? The Prime ones are like a lot more sophisticated with multiple locations, and the assistants manage that, along with all sorts of other functions and services.<</say>>
<<say mc>>Right... wait, it never occurred to me before, why do you even need Gates in Prime? Can't everyone just zoop around or whatever?<</say>>
<<say kayla>>Not within Prime. There are designated spots for everyone to come in and out.<</say>>
<<say mc>>Like the Gateway?<</say>>
<<say kayla>>Exactly. I'm pretty sure it's the same type of system. Think about it, even here, it'd be chaos if everyone could just zoop in and out of everywhere... and potentially disastrous if they zooped inside of something, or someone.<</say>>
<<say mc>>So Prime is basically just a technologically advanced hub that the assistants,, well, assist in running?<</say>>
<<say kayla>>Basically yes, the original hub really. The Gates are generally only in the larger population areas, though, which are mostly populated with descendants of my mom and aunts. The first generation doesn't usually play nice with each other, so they tend to live alone in the boonies without a Gate.<</say>>
<<say mc>>Does that mean there are entire cities of people like you?<</say>>
<<narrate>>She nods enthusiastically.<</narrate>>
<<say kayla>>You'd love it! You really would. I wish I could take you, you'd absolutely be in heaven with all my sisters and cousins.<</say>>
<<say mc>>Yeah... of it's full of women like you, I daresay I would be A world full of angels.<</say>>
<<narrate>>She grins.<</narrate>>
<<if $kayla.answered.includes("heaven")>>
<<say mc>>Remember when I asked you if it hurt when you fell from heaven? Sounds like you really did come from there after all!<</say>>
<<narrate>>She laughs.<</narrate>>
<<say kayla>>Dork. Trying that lame line again!<</say>>
<<say mc>>Hey, you're the one claiming you're from heaven!<</say>>
<<narrate>>Her smile widens.<</narrate>>
<</if>>
<<say kayla>>Oh, but I can be a little devil too. Maybe you should leave your door open tonight?<</say>>
<<narrate>>She winks.<</narrate>>
<<night "kaylaforgive">>
<<button "Continue" housestuff>>
<<like "kayla" 4>>
<<if $kayla.answered.includes("heaven")>>
<<lust "kayla" 4>>
<<else>>
<<lust "kayla" 2>>
<</if>>
<<event "kayla" "assistants">>
<<time 1>>
<</button>>
<<case "founderplan">>
<<left2 _img>>
<<say mc>>I was hoping you could get a message to your mother for me...<</say>>
<<say kayla>>Nope. Whatever you two have going on, I want no part of it. I've played at spy for New Eden, and look how that turned out.<</say>>
<<say mc>>It's not like that. I wouldn't ask, but it's urgent.<</say>>
<<say kayla>>If it's that urgent, march yourself off to Central and tell her yourself, or ask someone on the council!<</say>>
<<narrate>>She walks off.<</narrate>>
<<think mc>>I'm pretty sure if I stay and explained everything, she'd do it, but I don't have the time for that. It's too risky, $founder.name or one of her spies could get wind of it. I'll have to find another way.<</think>>
<<event "kayla" "founderplan">>
<<cont $return "">>
<<case "hermom">>
<<event "kayla" "progeny">>
<<left2 _img>>
<<say mc>>What can you tell me about $kenzie.name?<</say>>
<<if !$completeTasks.includes('festival4')>>
<<narrate>>She pulls her head back with shock.<</narrate>>
<<say kayla>>How do you know my mom's name?<</say>>
<<say mc>>We've been... acquainted.<</say>>
<</if>>
<<say kayla>>Oh my god, is she here? I haven't seen her in so long!<</say>>
<<say mc>>Uhh... no... what do you know about your mom?<</say>>
<<say kayla>>She's the most caring, wonderful, and amazing person you'll ever meet.<</say>>
<<say mc>>Right... but I meant like what she does.<</say>>
<<say kayla>>She said she oversees a bunch of boring imbeciles, but never gave me the details.<</say>>
<<say mc>>Right... what about the term progeny?<</say>>
<<say kayla>>Hmm, I was told never to discuss that openly. I trust you, but... let's go somewhere else. Come to my room in ten minutes?<</say>>
<<say mc>>Sure.<</say>>
<<think mc>>Why not just now, though?<</think>>
<<narrate>>You wait ten minutes then head to her room.<</narrate>>
<<cont "kaylaanswers" "hermom2">>
<<case "hermom2">>
<<if $kayla.bimbo == true>>
<<set $kayla.bimbo = "seen">>
<<think "mc">>When did she change forms; is that why she made me wait ten minutes?<</think>>
<</if>>
<<left2 "kayla/progeny01.jpg">>
<<say mc>>Did you make me wait just so you can get changed?<</say>>
<<say kayla>>Yeah.<</say>>
<<narrate>>You shake your head.<</narrate>>
<<say mc>>So... about the progeny?<</say>>
<<say kayla>>Mom's one of 'em, yeah. And I guess I'm like a second-gen or whatever. You really have met her!<</say>>
<<say mc>>What exactly does it mean? Your mom didn't really go into the specifics...<</say>>
<<say kayla>>It just means she's grandpa's kid, and not born on a real world. She's way more powerful than a regular traveler too.<</say>>
<<say mc>>What's so special about your grandpa? And are you just as powerful?<</say>>
<<think mc>>Is that how she transforms without my input?<</think>>
<<say kayla>>He was the first traveler. And no, I'm not even close to being in her league. To be honest I'm pretty much just an average traveler but with a famous lineage.<</say>>
<<say mc>>Sorry, what do you mean the first traveler?<</say>>
<<say kayla>>He was the first ever person to become a traveler, or at least first ever known one. He was the one that set up the Gateway network, you know? He spent countless centuries on various worlds... he has... a <b>lot</b> of children. Let's just say he's a bit like you; not a one-woman man.... only way more prolific.<</say>>
<<say mc>>But I thought only women were travelers...<</say>>
<<say kayla>>Not him... and not you.<</say>>
<<say mc>>But if the first was male, why haven't there ever been any other males?<</say>>
<<say kayla>>All his offspring were female... how do I put this... he was a pervert, a bit like you. Though it's never been confirmed, I'm pretty sure he ensured he only ever had female kids.<</say>>
<<say mc>>But... how...?<</say>>
<<say kayla>>Probably the same way you can transform people when using the progeny's powers in Central.<</say>>
<<say mc>>Shit... where is he now? Can I meet him?<</say>>
<<say kayla>>I haven't been back to Prime for... a loooong time, but he wasn't there when I left, and I'm pretty sure mom would have mentioned had he returned. He's kind of a big deal.<</say>>
<<say mc>>Why did you never mention any of this?<</say>>
<<say kayla>>You never asked, and it was never relevant.<</say>>
<<say mc>>Can I go to Prime?<</say>>
<<say kayla>>No idea. I think Central is like part of it or something, but I think it's kinda like invite-only, and I'd never heard of Central until you mentioned it.<</say>>
<<say mc>>Is there anything else you need to tell me?<</say>>
<<say kayla>>I don't know... I didn't think I needed to tell you this...<</say>>
<<say mc>>Well, anything else <b>like</b> this?<</say>>
<<cont "kaylaanswers" "hermom3">>
<<case "hermom3">>
<<left2 "kayla/progeny02.jpg">>
<<say kayla>>I have a few sisters... uhhh... and countless aunts. All of them are super hot, you'd love Prime. Uhmm...<</say>>
<<narrate>>You can see her trying to think of things that may interest you... but she also looks hungry...<</narrate>>
<<say mc>>Okay... okay... let's not dwell on it. Is there any tech from Prime that would be useful to us, like the New Eden gate?<</say>>
<<say kayla>>I don't think so, anything that was useful I gave to $ember.name or $lacy.name long ago. The New Eden gate of course wasn't useful back then.<</say>>
<<think mc>>Although it would have been great for Gerald's invasion plans... I'm glad she didn't see me as a threat, otherwise that could have spelled disaster. I wonder if anyone from New Eden knew her background.<</think>>
<<say mc>>Did anyone from New Eden know your background?<</say>>
<<say kayla>>If anyone asked about my home world, I'd mention Prime, but nobody ever asked anything further.<</say>>
<<say mc>>Probably just assumed that was the name of a real world...<</say>>
<<narrate>>She shrugs.<</narrate>>
<<say mc>>So, any advice on dealing with your mom?<</say>>
<<say kayla>>She gets bored easily, and rarely gets serious, but when she does, you know the shit is about to hit the fan. She likes to... play... so I'd suggest playing back.<</say>>
<<say mc>>Right..., okay, thanks $kayla.name.<</say>>
<<narrate>>She smiles.<</narrate>>
<<say kayla>>Any time!<</say>>
<<narrate>>You reach for the door handle.<</narrate>>
<<say kayla>>Wait, where are you going? There's something else we need to discuss.<</say>>
<<say mc>>Oh?<</say>>
<<say kayla>>The real reason I wanted you to alone in my room... let me give you a hint...<</say>>
<<cont "kaylasex" "room01">>
<<case "planets">>
<<left2 _img>>
<<say "mc">>Would you ever want to return to your home world?<</say>>
<<if $mc.events.kaylagone == "retrieved">>
<<think "mc">>Given she didn't run off to her home world, maybe that's an obvious answer.<</think>>
<</if>>
<<say "kayla">>You mean Prime? Nah. I loved it there, don't get me wrong, and mom said I can return whenever I want, but I like it here more.<</say>>
<<say "mc">>You left your mom behind, huh? Sorry. Would you mind if connected to it?<</say>>
<<say "kayla">>I wouldn't mind, but you can't.<</say>>
<<say "mc">>Why not?<</say>>
<<say "kayla">>There are no gateways that connect there, silly.<</say>>
<<say "mc">>Well, then how did you get here?<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say "kayla">>I traveled, same way you got here. Anyway, have you seen $kenna.name today? She looks gorgeous!<</say>>
<<say "mc">>Haha... yeah... I guess...<</say>>
<<if !$completeTasks.includes('fivek') && $tasks.fivek != undefined>>
<<think "mc">>Have I missed something, or does she just not want me to connect there? Maybe I was being a bit insensitive given the mention of her mom. I'd best leave it alone.<</think>>
<<else>>
<<think mc>>Hmm, so how does one connect to Prime if there's no Gateway to guide you? Can I get there via Central?<</think>>
<</if>>
<<button "Continue" housestuff>>
<<like "kayla" 2>>
<<event "kayla" "planets">>
<<time 1>>
<</button>>
<<case "necomms">>
<<say "mc">>So, how do we go about communicating with New Eden?<</say>>
<<say "kayla">>Oh, it's easy! Give me fifteen minutes and meet me in the garage.<</say>>
<<narrate>>You kill time then head over to the garage.<</narrate>>
<<left2 "kayla/garage01.jpg">>
<<if $kayla.bimbo == true>>
<<set $kayla.bimbo = "seen">>
<<say "mc">>How did you change forms?<</say>>
<<say "kayla">>At the gateway, silly. That's why I needed fifteen minutes!<</say>>
<<think "mc">>I don't need to be there for that?<</think>>
<</if>>
<<say "kayla">>So every Sunday since you arrived I'd head out to an abandoned building in town and use a terminal there to update them. I can only apologize again for my initial misunderstanding, but please know I tried to dissuade them every Sunday after I learned of their intent.<</say>>
<<say "mc">>We've dealt with that already. You can't apologize forever.<</say>>
<<say "kayla">>I know... I know... I just don't feel like I've made it up to everyone yet.<</say>>
<<say "mc">>I think you underestimate your importance.<</say>>
<<narrate>>She changes the subject.<</narrate>>
<<say "kayla">>It's about an hour's walk, but now I don't have to worry about raising any suspicion, we can take the car. We'll be there in five.<</say>>
<<cont "kaylaanswers" "newcomms2">>
<<case "newcomms2">>
<<narrate>>You arrive at an unimposing building a few minutes later, with a large pile of rubble next door several stories high, presumably it used to be a building. She guides you inside. The first room is full of cobwebs and dust, it certainly doesn't look cared for.<</narrate>>
<<say "kayla">>I can see your face. But looks can be deceiving. The real magic is behind a secret wall.<</say>>
<<narrate>>You look around for any clues as to where the wall is or switches but can't see anything obvious. You would expect to see foot or hand prints in the dust where buttons or switches had been pressed... but nothing.<</narrate>>
<<say "mc">>I'm guessing the switches are on the underside of something?<</say>>
<<say "kayla">>Here, let me show you.<</say>>
<<narrate>>She opens the door to roughly 45 degrees, pulls out a screwdriver and loosens one screw in the light switch and finally places the screwdriver atop the door. There's a clicking noise... and then nothing. You notice no changes in the room whatsoever.<</narrate>>
<<say "mc">>I don't see anything different...<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kayla">>I never said it was in here dummy, come on.<</say>>
<<narrate>>She guides you back outside, behind the building and there at the very bottom right of the building is a small opening. She ducks inside and you follow. Inside is a hallway leading into a room within the rubble.<</narrate>>
<<say "mc">>The rubble is a facade?<</say>>
<<say "kayla">>Basically, yeah. It was set up as everyone fled to the east.<</say>>
<<say "kayla">>So, this terminal, I've maintained it best I could, but I've had to replace some of the keys over time with makeshift items.<</say>>
<<narrate>>You look over the terminal with its mish-mash of keys.<</narrate>>
<<say "mc">>So there's a cable running all the way from here to New Eden?<</say>>
<<say "kayla">>Yup, it took them some time to achieve, this place was basically dormant for a decade until while they finished.<</say>>
<<say "mc">>Can we extend those cables to our own network?<</say>>
<<say "kayla">>The cables aren't the real problem, it's the terminal itself. Everything is encrypted, and I don't know the encryption key, and I doubt Gerald is going to give it up now. We therefore can't make another terminal.<</say>>
<<say "mc">>Couldn't we just communicate without the encryption? Or move this terminal?<</say>>
<<say "kayla">>No, there are relays placed along the cable to ensure it only transmits encrypted messages, a fail-safe of sorts, in case anyone were to discover it. We could move it yes, but just look at this thing, it's seen better days. I have a better idea... I just need to run it by $lacy.name first. In the short term, we can communicate from here.<</say>>
<<say "mc">>Oh, what's the idea?<</say>>
<<say "kayla">>Wait and see! Give me a few days, and I'll let you know if it's viable after I've spoken to $lacy.name. Let's just update them.<</say>>
<<narrate>>She taps away on the terminal.<</narrate>>
<center>
<div class="cmd">
> Enter Password:<br>
> Password accepted. Welcome, $kayla.name.<br>
> 1 - Send Message<br>
> 2 - Read Message<br>
> 3 - Shutdown<br>
> 1<br>
> Type message then press ctrl+S to send.<br>
> $name now aware of terminal.<br>
> Looking into better options for comms.<br>
> Will be in touch again soon.<br>
> H021JH<br>
> Message Sent<br>
> 3<br>
> Shutting down. Good bye.
</div>
</center>
<style>
.cmd {
background-color: black;
background-image: radial-gradient(
rgba(0, 150, 0, 0.75), black 120%
);
text-align: left;
height: 450px;
width: 800px;
margin: 0;
overflow: hidden;
padding: 2rem;
color: white;
font: 1.3rem Inconsolata, monospace;
text-shadow: 0 0 5px #C8C8C8;
}
.cmd::selection {
background: #0080FF;
text-shadow: none;
}
.cmd pre {
margin: 0;
}
</style>
<<say "mc">>H021JH?<</say>>
<<say "kayla">>My call sign. Alright, let's head back. But... maybe tonight leave your door slightly open, I think I still need to seek some... forgiveness.<</say>>
<<narrate>>You grin.<</narrate>>
<<night "kaylaforgive">>
<<button "Continue" "homehub">>
<<taskdone "eastcomms">>
<<like "kayla" 3>>
<<lust "kayla" 3>>
<<time 3>>
<</button>>
<<case "eastwar">>
<<block "moriah/lounge01.jpg">>
<<say "moriah">>What's wrong, $name? Why'd you call us here?<</say>>
<<say "mc">>$kayla.name received a message from the East this morning.<</say>>
<<say "armani">>Oh?<</say>>
<<say "kayla">>I am so sorry, everyone. It's all my fault.<</say>>
<<say "armani">>We've been through this. You were just doing what you thought was right. You acted hastily, but had you not, and he were a threat, you could have missed your chance. Nobody holds a grudge, you acted logically given what you'd been told about $voice.name. Just tell us what they said.<</say>>
<</block>>
<<say "kayla">>They don't believe me. They still think the patron is dangerous and they're coming here to destroy him.<</say>>
<<say "moriah">>When are they coming?<</say>>
<<say "kayla">>I don't know, but I can't imagine it'll be too long.<</say>>
<<say "armani">>Okay, so there's little we can do immediately. I'll start putting some preparations together, $moriah.name you increase gym time with everyone.<</say>>
<<say "moriah">>Understood.<</say>>
<<say "mc">>Okay, and I'll—<</say>>
<<say "armani">>You run the hub as normal as not to raise any suspicions. Who knows if they're watching. We need to be careful and make it appear business as usual, otherwise they could invade sooner giving us less time to prepare.<</say>>
<<say "mc">>So you want me to do nothing?!<</say>>
<<say "armani">>It's you they'll be watching most, if they're here at all. Your job is to convince them everything is normal and we are completely unaware of their intentions.<</say>>
<<say "kayla">>I am so sorry.<</say>>
<<say "moriah">>You stop that. I don't want to hear another apology.<</say>>
<<say "armani">>I'll contact you when it's time.<</say>>
<<think "mc">>Hmm, surely if I could just talk to the Eastlanders we could resolve this!<</think>>
<<say "mc">>Alright. I'll wait for your message.<</say>>
<<button "Continue" homehub>>
<<event "mc" "kaylaconfess" 2>>
<<task "war">>
<<time 1>>
<</button>>
<<case "dildo">>
<<block _img>>
<<say "mc">>You know how sometimes late at night you get lonely and start thinking of me?<</say>>
<<narrate>>She grins at you.<</narrate>>
<<say "kayla">>Oh, I think about you a lot at night. I think about you long and hard until I can't think anymore.<</say>>
<<say "mc">>Well, perhaps this will help you... think better?<</say>>
<<narrate>>You pass her the dildo.<</narrate>>
<<say "kayla">>Oh my god. You are so bad!<</say>>
<</block>>
<<narrate>>She pulls herself close to you, and on her top toes brings her mouth to your ear.<</narrate>>
<<say "kayla" "" "(Whispering)" "whisper">>But you know, an audience can never hurt.<</say>>
<<narrate>>She licks the side of your neck, sending a shiver down your spine, before returning to her original position.<</narrate>>
<<say "kayla">>Tonight, I might just get lost in my thoughts.<</say>>
<<think "mc">>I might want to see that!<</think>>
<<if $kayla.bimbo == true>><<think "kayla">>Hmmm, I think I'll probably revert to my original form for this show.<</think>><</if>>
<<button "Continue" housestuff>>
<<lust "kayla" 4>>
<<like "kayla" 4>>
<<event "kayla" "dildo">>
<<item "dildo" -1>>
<</button>>
<<case "champions">>
<<block _img>>
<<say "mc">>$kayla.name, we have a situation.<</say>>
<<say "kayla">>Oh, no, what is it? You look worried!<</say>>
<<say "mc">>One of the strays isn't a champion.<</say>>
<<narrate>>She stares at you blankly for a moment.<</narrate>>
<<say "mc">>$kayla.name, you there?<</say>>
<</block>>
<<say "kayla">>Sorry, just trying to process this. Do you have any suspects?<</say>>
<<say "mc">>I don't even know if that's the right word yet, could be something innocent. Just on my way to speak to $voice.name about it.<</say>>
<<say "kayla">>She knows?<</say>>
<<say "mc">>She's the one who told me.<</say>>
<<say "kayla">>I see. How long do you think you'll be?<</say>>
<<say "mc">>I don't know, an hour or two maybe. Do you want to meet up after see if we can figure it out?<</say>>
<<say "kayla">>Yeah sure. I'll speak to you later then.<</say>>
<<button "Continue" gatewayb>>
<<set $mc.events.eight = "kayla">>
<<time 1>>
<</button>>
<<case "trans">>
<<block _img>>
<<say "mc">>Did the gateway gift you any transformations when you came through?<</say>>
<<say "kayla">>Why do you ask?<</say>>
<<say "mc">>I'm just intrigued.<</say>>
<<narrate>>She strokes her tits.<</narrate>>
<<say "kayla">>Got this enhanced, what you reckon? 32E!<</say>>
<</block>>
<<say "mc">>They certainly look fantastic.<</say>>
<<say "kayla">>Maybe if you're good I'll let you take a proper look.<</say>>
<<narrate>>She gives you a wink.<</narrate>>
<<think "kayla">>Weird he's asking that all this time on, though.<</think>>
<<button "Continue" kayla>>
<<event "kayla" "trans">>
<<set $mc.events.sus++>>
<<time 1>>
<</button>>
<<case "bakery">>
<<block "kayla/bakery01.jpg">>
<<say "kayla">>This place is so amazing. I really can't thank you enough. I love it here!<</say>>
<<narrate>>She strides over, and puts her hand to your chest.<</narrate>>
<<say "kayla">>Let me show you my gratitude.<</say>>
<<say "mc">>You really don't need to do anything.<</say>>
<<think "mc">>Who am I kidding? I just want to get her on her knees and fuck her throat.<</think>>
<<say "kayla">>Oh, I'm sure there's <i>something</i> I can do.<</say>>
<</block>>
<<narrate>>She slowly runs her hands down your body, your dick getting ever harder as she draws closer to your crotch.<</narrate>>
<<think "kayla">>Wait, my customers, I can't do it here.<</think>>
<<if $kayla.lust < 25 && $replay == false>>
<<say "kayla">>Sorry, $name, I do want to thank you properly but I'm not sure there is the right place.<</say>>
<<think "mc">>Oh, it is. I guess I just need to get her more turned on before she sees sense.<</think>>
<<button "Continue" $return>>
<<lust "kayla" 1>>
<<like "kayla" 1>>
<<time 0.5>>
<</button>>
<<else>>
<<think "kayla">>Ah, screw it, I want to do it right here, the thought of a customer coming in the back just turns me on even more!<</think>>
<<left2 "kayla/bakerystrip01.mp4" v>>
<<narrate>>She sweeps away from you as she shows off her killer body.<</narrate>>
<<say "mc">>You're not worried about the customers?<</say>>
<<say "kayla">>Someone potentially finding us is a huge turn on.<</say>>
<<narrate>>You need no further encouragement and start stripping.<</narrate>>
<<say "kayla">>I'm gonna milk you dry. You're not gonna forget my gratitude for a long time.<</say>>
<<narrate>>You throw your top to one side as your dick struggles for freedom.<</narrate>>
<br>
<br>
<<left2 "kayla/bakerystrip02.mp4" v>>
<<narrate>>She looks almost predatory as she rubs her pussy through her panties.<</narrate>>
<<say "kayla">>Keep looking at me. I want it. I want your eyes on me.<</say>>
<<narrate>>You tug at your trouser leg while trying not to miss anything she has to show you.<</narrate>>
<<say "kayla">>Show me. Show me how hard I made you.<</say>>
<<narrate>>With one final, ungraceful tug, you manage to slip your trousers off, pulling your briefs with them.<</narrate>>
<<say "kayla">>Oh god, yes, look at that thing. I want it harder. <</say>>
<<narrate>>She continues to rub her pussy as she eyes up your dick.<</narrate>>
<<left2 "kayla/bakerystrip03.mp4" v>>
<<narrate>>You stand naked, admiring her every movement.<</narrate>>
<<say "kayla">>Yes, that's it. Just look at how hard you are. I fucking love it.<</say>>
<<say "mc">>Well, it is kinda your fault.<</say>>
<<say "kayla">>Well then, let me fix it.<</say>>
<<button "Continue" kaylasex>>
<<temp "bakery01">>
<</button>>
<</if>>
<<case "hubbake">>
<<block _img>>
<<say "mc">>I read your text. I think the travelers would love some sweet treats. It's a great idea. So how did you want to do it?<</say>>
<<say "kayla">>That's great to hear! It's gonna be so much fun. But I don't know how to build a bakery, silly. That's your thing.<</say>>
<<think "mc">>Uhhh...<</think>>
<<say "mc">>But you know it needs to be a new facility?<</say>>
<<say "kayla">>Of course. This kitchen is massive, but it's too far to travel with my precious pastries!<</say>>
<<say "mc">>Yes, of course. Well, do you know what we'd need in a bakery?<</say>>
<</block>>
<<say "kayla">>Lots of counter space, ovens, cooling racks. Don't worry, I already told $lacy.name, so she's put it all in the monitoring station computers.<</say>>
<<think "mc">>She plays dumb sometimes, but I think there's an intelligent & manipulative mind behind all that.<</think>>
<<say "kayla">>So you'll let me know when it's ready?<</say>>
<<say "mc">>Of course.<</say>>
<<say "kayla">>Yaaaay!<</say>>
<<narrate>>She holds your arm down by your side, squeezing it between her tits while she gives you a big sloppy kiss on the cheek.<</narrate>>
<<say "kayla">>You're the best. Bet you can't wait to see my buns, huh?<</say>>
<<say "mc">>Your buns, your cake, I want to taste it all.<</say>>
<<say "kayla">>Treat me well, and you'll get your fill.<</say>>
<<button "Continue" kayla>>
<<if $kayla.events.hubbake == undefined>>
<<lust "kayla" 3>>
<<like "kayla" 5>>
<<event "kayla" "hubbake">>
<<tech "bakery">>
<</if>>
<<time 1>>
<</button>>
<<case "officework">>
<<say "mc">>What are you working on?<</say>>
<<if $replay != true && $mc.events.kaylagone != undefined>>
<<narrate>>She grins at you and makes a dramatic gesture.<</narrate>>
<<say "kayla">>Oh, no... I've been caught!<</say>>
<<say "mc">>Huh?<</say>>
<<narrate>>As you begin to walk around the desk, she stands up, pushes you around to the other side and sits atop it facing you.<</narrate>>
<<else>>
<<narrate>>As you start to walk around the desk, she suddenly becomes very flustered and scrambles, bending over the desk to close the open windows on the computer.<</narrate>>
<<think "kayla">>Shit shit shit!<</think>>
<<narrate>>She sits back up on the desk, trying to play it off.<</narrate>>
<</if>>
<<center "kayla/office02.jpg">>
<<if checkUnlocks('movie', 'officebj', 'kayla') == false>>
<<say "mc">>Oh, something you don't want me to see?<</say>>
<<else>>
<<think "mc">>This time I know exactly what she's getting at!<</think>>
<<say "mc">>What's going on here, what were you doing?<</say>>
<</if>>
<<if $replay != true && $mc.events.kaylagone != undefined>>
<<narrate>>She gives you a wink.<</narrate>>
<<if checkUnlocks('movie', 'officebj', 'kayla') == false>>
<<say "kayla">>Can't believe you caught me watching porn! Surely there's a way we can look past this?<</say>>
<<say "mc">>Why would I...? Just what kind of porn was it?<</say>>
<<narrate>>She rolls her eyes, irritated you're not picking up on her hints.<</narrate>>
<<else>>
<<say "mc">>Porn?! My word, you could lose your job over that.<</say>>
<<say "kayla">>No, please! It wasn't anything too bad. It was pretty similar to this actually...<</say>>
<<say "mc">>Oh?<</say>>
<</if>>
<<else>>
<<say "kayla">>I—<</say>>
<<say "mc">>What kind of porn was it?<</say>>
<<narrate>>She visibly looks relieved.<</narrate>>
<<say "kayla">>I... just...<</say>>
<<think "mc">>How unusual for her to be lost for words.<</think>>
<<narrate>>She regains her composure.<</narrate>>
<</if>>
<<say "kayla">>Just some office slut giving her boss a blowjob.<</say>>
<<if $replay == true || $mc.events.kaylagone == undefined>>
<<think "kayla">>I can claw this back.<</think>>
<</if>>
<<narrate>>She starts caressing your chest.<</narrate>>
<<say "kayla">>You know the kind, boss walks in on her while she's at the computer, sees she's not working, and they come to an... arrangement.<</say>>
<<narrate>>Her hand glides down your body and grips your dick through your trousers.<</narrate>>
<<say "mc">>Seems familiar. Perhaps we should come to an arrangement too?<</say>>
<<say "kayla">>I think I might have something in mind.<</say>>
<<narrate>>She pulls your trousers down with such force, your cock slaps against her forehead.<</narrate>>
<<say "kayla">>Oh fuck, just look at that thing.<</say>>
<<narrate>>She takes your engorged penis in her hand, licks the tip sweetly, stares up at you then pushes her head forward, engulfing your dick.<</narrate>>
<<think "mc">>Holy fuck.<</think>>
<<button "Continue" kaylabj>>
<<event "kayla" "officework">>
<<temp "office">>
<</button>>
<<case "bakehow">>
<<if $kayla.like > 19 && $kayla.lust > 24 >>
<<if $kayla.events.bake == undefined || $kayla.events.bake == "no">>
<<left2 _img>>
<<say "mc">>I tried to use the oven, but it didn't function how I'd expect.<</say>>
<<say "kayla">>Took me some attempts to get it working, too. Want me to show you?<</say>>
<<say "mc">>That'd be great!<</say>>
<<if $location == "kitchen">>
<<left2 "kayla/$location02.jpg">>
<<say "mc">>It's like it's all written in an alien language.<</say>>
<<say "kayla">>I've no clue what it says, but the buttons and stuff were similar to those from my home world.<</say>>
<<say "mc">>You're certainly smarter than me!<</say>>
<<say "kayla">>Ha! Yeah, right. Let's bake together and I'll show you how it works.<</say>>
<<say "mc">>I'll follow your lead.<</say>>
<<say "kayla">>Oh no you don't mister! I'll help you with the oven, but you're still doin' the prep!<</say>>
<<say "mc">>Of course. So...<</say>>
<<think "mc">>Come to think of it, while I've baked before I've always used my phone to follow a recipe on the Internet. I know I need eggs, butter, flour and sugar... but not sure how much.<</think>>
<<narrate>>You stumble through, using 2 eggs and the same measurements for the rest.<</narrate>>
<<say "kayla">>Great, going for a pound cake are you?<</say>>
<<say "mc">>Uhhh, yeah.<</say>>
<<narrate>>You mix everything up, pour out into the containers then put into the oven that $kayla.name warmed for you.<</narrate>>
<<say "kayla">>Okay, this dial is the timer, we'll set it to 25mins.<</say>>
<<say "mc">>Great, thanks $kayla.name.<</say>>
<<say "kayla">>Let's go sit on the sofa while we wait.<</say>>
<<left2 "kayla/bake01.jpg">>
<<say "kayla">>So a pound cake, huh? Anything you're trying to tell me?<</say>>
<<say "mc">>Uh? I don't follow. If I'm honest I didn't remember what quantities I needed so I just used the same for everything.<</say>>
<<narrate>>She looks momentarily annoyed.<</narrate>>
<<think "kayla">>I know I'm not good at this, but is he really that clueless?<</think>>
<<say "kayla">>Oh, so you didn't lure me in the kitchen to <i>pound cake</i>?<</say>>
<<say "mc">>Nah, I didn't really know what cake I was making.<</say>>
<<say "kayla">>You're not actually teasing me, are you? Okay, let me show you what I mean.<</say>>
<<narrate>>She starts running he hand up your inner thigh and grabs your dick through your jeans.<</narrate>>
<<say "kayla">>Get it now?<</say>>
<<think "mc">>Not a clue, but I think I'm about to get <i>it</i>.<</think>>
<<left2 "kayla/bake02.jpg">>
<<say "kayla">>We don't have time for the full course, but I can still get some dessert.<</say>>
<<narrate>>She pulls her top over her head, revealing a sexy corset.<</narrate>>
<<say "kayla">>Jeans. Off.<</say>>
<<narrate>>You happily comply, letting your hard dick stand proud.<</narrate>>
<<narrate>>She grabs your dick, moves her face down over your lap and greedily starts licking your glans while stroking your shaft.<</narrate>>
<<button "Continue" kaylabj>>
<<set $tempvar = "baking">>
<</button>>
<<else>>
<<say "kayla">>Cool, just find me next time I'm in the kitchen!<</say>>
<<button "Continue" kayla>>
<<time 0.5>>
<</button>>
<</if>>
<<elseif $location == "kitchen">>
<<left2 "kayla/$location02.jpg">>
<<say "mc">>Want to bake together again?<</say>>
<<say "kayla">>I had a lot of fun last time, sure!<</say>>
<<say "mc">>Great, you grab the ingredients and I'll grab the utensils.<</say>>
<<say "kayla">>Oh, you meant literally? Sure!<</say>>
<<say "mc">>Well, I may have had an ulterior motive...<</say>>
<<say "kayla">>Ha! Knew it. Let's get it in the oven first, then we can take care of your utensil.<</say>>
<<narrate>>The two of you laugh and joke as you put the mixture together, put it in the oven, and then head off to the sofa to wait.<</narrate>>
<<say "kayla">>Now, how did this go last time?<</say>>
<<narrate>>You pull your trousers down.<</narrate>>
<<say "mc">>This help you remember?<</say>>
<<say "kayla">>Hmmm, not quite, give me a moment...<</say>>
<<narrate>>She grabs your dick, moves her face down over your lap, and greedily starts licking your glans while stroking your shaft.<</narrate>>
<<button "Continue" kaylabj>>
<<temp "baking">>
<</button>>
<</if>>
<<else>>
<<left2 _img>>
<<say "mc">>I tried to use the oven, but it didn't function how I'd expect.<</say>>
<<say "kayla">>Took me some attempts to get it working too. I'd be happy to show you once we know each other better.<</say>>
<<say "mc">>I look forward to it.<</say>>
<<button "Continue" kayla>>
<<time 0.5>>
<</button>>
<</if>>
<<case "explorer">>
<<say "mc">>Would you be interested going through the portal and—<</say>>
<<say "kayla">>Sorry to interrupt you, but no, I'm not bothered.<</say>>
<<say "mc">>Oh, I thought you might like to see new places, meet new people.<</say>>
<<say "kayla">>Yeah, meeting people sounds great, but I'm comfortable here, and I'm looking forward to helping you with the hub if you'll let me, but I don't think I'm the right gal for what you have in mind. Though, if you ever want to take me on a relaxing holiday through the gateway, I'd definitely be up for it.<</say>>
<<say "mc">>I understand, and I'd love nothing more than to take you on a weekend away, but I'm not able to use my own gateway to travel.<</say>>
<<say "kayla">>Well, that sucks. But, I'm sure you'll find something else to impress me with.<</say>>
<<narrate>>She gives you a wink, a kiss on the cheek and carries on her way.<</narrate>>
<<button "Continue" kayla>>
<<like "kayla" 2>>
<<lust "kayla" 1>>
<<event 'kayla' 'explore'>>
<<time 0.5>>
<</button>>
<<case "invite">>
<<block _img>>
<<say "mc">>So I've really enjoyed your company lately.<</say>>
<<say "kayla">>Oh my gosh. Me too, you're sooo fun!<</say>>
<<say "mc">>How about we play a game in my room?<</say>>
<<say "kayla">>Oh, really, just you and I?<</say>>
<<say "mc">>Just the two of us.<</say>>
<</block>>
<<if $kayla.like < 30 && $kayla.oral < 1>>
<<say "kayla">>I really like you, and I'm having a ton of fun, but I don't want to be <i>that</i> girl. Maybe we could hang out a little more first?<</say>>
<<think "mc">>Ouch, she's obviously into me, but I've clearly negated the friendship part of our relationship.<</think>>
<<say "mc">>For sure, I didn't mean anything by it, just wanted to get to know you better.<</say>>
<<narrate>>She giggles.<</narrate>>
<<say "kayla">>Yeah, I'm sure all you wanted to do was play cards.<</say>>
<<button "Continue" kayla>>
<<like "kayla" 1>>
<<time 1>>
<</button>>
<<else>>
<<narrate>>You see her pondering for a moment.<</narrate>>
<<say "kayla">>Oh, to hell with it, sure!<</say>>
<<say "mc">>Great, I can't wait.<</say>>
<<say "kayla">>I'll see you tonight.<</say>>
<<if $kayla.bimbo == true>><<think "kayla">>I think I'd like to do this in my original form, though.<</think>><</if>>
<<button "Continue" kayla>>
<<like "kayla" 2>>
<<time 1>>
<<run addNightEvent('kaylaroombj')>>
<</button>>
<</if>>
<<case 'gatewaya'>>
<<block _img>>
<<say "mc">>$kayla.name, do you think you could join me at the gateway? I need to check something out.<</say>>
<<say 'kayla'>>Oooh, are you trying to lure me in to a secluded spot to have your way with me?<</say>>
<<narrate>>She gives you a wink.<</narrate>>
<<say "mc">>I wish that I were, and I shall certainly remember that you seem okay with that possibility, but no, unfortunately it's a serious matter.<</say>>
<<narrate>>She huffs.<</narrate>>
<<if $kayla.lust > 22 && $kayla.like > 9>>
<<say 'kayla'>>Bah, ok, let's go! You'll just have to make it up to me later.<</say>>
<<say "mc">>I'm sure I can think of something to please you.<</say>>
<<say 'kayla'>>You'd better!<</say>>
<<button "Continue" voicetalk>>
<<lust "kayla" 2>>
<<set $mc.events.gatewayacompanion = 'kayla'>>
<</button>>
<<else>>
<<say "kayla">>Can we do it another time? I;m just in the middle of something.<</say>>
<<think "mc">>She likes to flirt, but I don't think she's quite comfortable going alone out there alone with me. I probably need to gain her trust or flirt more with her first.<</think>>
<<button "Continue" kayla>>
<</button>>
<</if>>
<</block>>
<<case 'her'>>
<<if debug == true>>
<div class="debug">
<<button "Reset" kaylaanswers>>
<<set delete $kayla.events.her>>
<</button>>
</div>
<</if>>
<div class="leftbit">
<img @src="setup.img+'kayla/house02.jpg'" class="leftimg">
</div>
<<if $kayla.events.her == undefined>>
<div class="rightbit">
<<say "mc">>Tell me about yourself.<</say>>
<<say 'kayla'>>Oh, but I'm boring! Let's talk about you!<</say>>
<<say "mc">>Uhh, sure. How about we both get a question?<</say>>
<<say 'kayla'>>Ooo, like truth or dare? Takes me back to my early twenties!<</say>>
<<say "mc">>Not quite, just truths, I guess.<</say>>
</div>
<<say 'kayla'>>Fine! I'll go first. Do you have a girlfriend?<</say>>
<<narrate>>You splutter on your drink, not expecting that.<</narrate>>
<<say "mc">>No, I'm between women at the moment.<</say>>
<<left2 "kayla/house01.mp4" v>>
<<say 'kayla'>>Oh, you dog!<</say>>
<<narrate>>She playfully pushes at you<</narrate>>
<<say 'kayla'>>What type of women do you like?<</say>>
<<say "mc">>Hey, it's my turn!<</say>>
<<narrate>>$kayla.name rolls her eyes.<</narrate>>
<<say 'kayla'>>Fine! What do you want to know?<</say>>
<<narrate>>Clearly, $kayla.name is flirting with you, but how far are you willing to push it?<</narrate>>
<<choices>>
<<if !$kayla.answered.includes("boyfriend")>>
<<link "Do you have a boyfriend?" kaylaquestions>>
/*<<time 0.25>>*/
<<set $kayla.activeQ to "boyfriend">>
<<set $kayla.answered.push("boyfriend")>>
<</link>>
<br>
<</if>>
<<if !$kayla.answered.includes("brasize") && $kayla.answered.includes("boyfriend")>>
<<link "What's your bra size?" kaylaquestions>>
/*<<time 0.25>>*/
<<set $kayla.activeQ to "brasize">>
<<set $kayla.answered.push("brasize")>>
<</link>>
<br>
<</if>>
<<if !$kayla.answered.includes("heaven")>>
<<link "Did it hurt when you fell from heaven?" kaylaquestions>>
/*<<time 0.25>>*/
<<set $kayla.activeQ to "heaven">>
<<set $kayla.answered.push("heaven")>>
<</link>>
<br >
<</if>>
<<if !$kayla.answered.includes("fantasy")>>
<<link "Is there anyone you fantasize about?" kaylaquestions>>
/*<<time 0.25>>*/
<<set $kayla.activeQ to "fantasy">>
<<set $kayla.answered.push("fantasy")>>
<</link>>
<br>
<<link "Don't risk it" kayla>><</link>>
<</if>>
<</choices>>
<<else>>
<<right>>
<<say "kayla">>What else did you wanna ask?<</say>>
<div class="choices">
<h3>Make a Choice</h3>
<<if !$kayla.answered.includes("boyfriend")>>
<<link "Do you have a boyfriend?" kaylaquestions>>
/*<<time 0.25>>*/
<<set $kayla.activeQ to "boyfriend">>
<<set $kayla.answered.push("boyfriend")>>
<</link>>
<br>
<</if>>
<<if !$kayla.answered.includes("brasize") && $kayla.answered.includes("boyfriend")>>
<<link "What's your bra size?" kaylaquestions>>
/*<<time 0.25>>*/
<<set $kayla.activeQ to "brasize">>
<<set $kayla.answered.push("brasize")>>
<</link>>
<br>
<</if>>
<<if !$kayla.answered.includes("heaven")>>
<<link "Did it hurt when you fell from heaven?" kaylaquestions>>
/*<<time 0.25>>*/
<<set $kayla.activeQ to "heaven">>
<<set $kayla.answered.push("heaven")>>
<</link>>
<br >
<</if>>
<<if !$kayla.answered.includes("fantasy")>>
<<link "Is there anyone you fantasize about?" kaylaquestions>>
/*<<time 0.25>>*/
<<set $kayla.activeQ to "fantasy">>
<<set $kayla.answered.push("fantasy")>>
<</link>>
<br>
<</if>>
<<link "Never mind" kayla>><</link>>
</div>
<</right>>
<</if>>
<<case 'baking'>>
<<block _img>>
<<say "mc">>$cassie.name said you enjoy baking.<</say>>
<<say 'kayla'>>Yeah, definitely. I love spreading my buns.<</say>>
<<say "mc">>That I'd love to see!<</say>>
<<narrate>>$kayla.name giggles.<</narrate>>
<<say 'kayla'>>Just find me in the kitchen one evening, I'll show you just how moist my cake gets.<</say>>
<<think "mc">>That's beyond innuendo, am I reading this situation right?<</think>>
<<say "mc">>Uhh, I'm sure I've got something stiff we can use to flatten the dough.<</say>>
<<say 'kayla'>>Oh my god. You're terrible at this. Meet me one evening, and we'll see how good your hands are with my buns.<</say>>
<<narrate>>You can barely contain your stupid grin.<</narrate>>
<<button "Continue" kayla>>
<<if $kayla.events.baking == undefined>>
<<event 'kayla' 'baking'>>
<<like 'kayla' 2>>
<<lust 'kayla' 3>>
<<time 1>>
<</if>>
<</button>>
<</block>>
<<case 'long'>>
<<block _img>>
<<say "mc">>How long have you been here?<</say>>
<<say 'kayla'>>Longer than you've been alive. Most of the other girls won't be so forthcoming - it's a touchy subject.<</say>>
<<say "mc">>But you barely look older than me!<</say>>
<<say 'kayla'>>We don't age here, if $cassie.name hasn't mentioned it already, I'm sure she will soon.<</say>>
<<say "mc">>So you're way older than me?<</say>>
<<say "kayla">>Hey, watch it, mister! Age here is kinda broken, like we all think of time differently. I've never cared to understand, to be honest, you're best speaking to Lillian about it.<</say>>
<<say "mc">>Well, you're looking great for someone so ancient!<</say>>
<<say "kayla">>Less of the ancient!<</say>>
<<button "Continue" kayla>>
<<if $kayla.events.long == undefined>>
<<event 'kayla' 'long'>>
<<like 'kayla' 2>>
<<lust 'kayla' 1>>
<<time 1>>
<</if>>
<</button>>
<</block>>
<</switch>>
<</nobr>><<nobr>>
<<switch $tempvar>>
<<case "office">>
<<vid "kayla/office01.mp4">>
<<narrate>>She begins slowly but rhythmically bobbing her head backwards and forwards.<</narrate>>
<<say "mc">>That's it, show me how much you want this!<</say>>
<<narrate>>You grab the back of her head and start to slowly nudge your hips back and forth in time with her rhythm.<</narrate>>
<<say "kayla">>I want it. I want it all. I want you to fuck my face!<</say>>
<<narrate>>You pick up the pace, eager to please.<</narrate>>
<<button "Continue" kaylabj>>
<<temp "office01">>
<</button>>
<<case "office01">>
<<vid "kayla/office02.mp4">>
<<narrate>>You rock back and forth as she stares at up at you.<</narrate>>
<<say "kayla">>Oh, fuck.<</say>>
<<narrate>>She retreats to catch her breath before taking the full length of your cock down her throat.<</narrate>>
<<narrate>>You keep looking down at the beautiful sight before you, her soft lips running up and down your cock.<</narrate>>
<<say "mc">>Fucking take it. Take my cock if you want to keep your damn job!<</say>>
<<narrate>>She grabs your dick and strokes while she again catches her breath.<</narrate>>
<<say "kayla">>Oh god, oh, fuck, your cock is so good.<</say>>
<<narrate>>She greedily gets back to work, taking your cock as far back into her throat as she dare.<</narrate>>
<<say "mc">>Shitting hell, you're gonna be employee of the month.<</say>>
<<narrate>>She giggles with your dick in her mouth, sending an odd sensation cascading down your shaft enough to bring on your climax.<</narrate>>
<<say "mc">>Swallow it, take all my seed, slut.<</say>>
<<narrate>>She doesn't let your cock out of her mouth for even a second as you finish down her throat.<</narrate>>
<<say "kayla">>Your cum tastes so fucking good.<</say>>
<<center "kayla/office03.jpg">>
<<narrate>>You stare down at her, her hands still around your hard dick.<</narrate>>
<<say "mc">>Well, guess I can't fire you now. But don't think I won't be watching you.<</say>>
<<say "kayla">>Oh believe me, I like it when you watch.<</say>>
<<narrate>>You give her a slap on the ass, she gasps in delight, then pull your trousers back up.<</narrate>>
<<say "mc">>Good meeting; I'm sure next quarter's numbers will look great.<</say>>
<<narrate>>She cackles.<</narrate>>
<<say "kayla">>Dork!<</say>>
<<if $kayla.oral == 2>>
<<think "mc">>I think our relationship is going well, maybe it's time I start trying to progress further with her.<</think>>
<<set $kayla.lustlvl = 2>>
<</if>>
<<button "Continue" housestuff>>
<<lust "kayla" 2>>
<<like "kayla" 3>>
<<unlock "kayla" "officebj">>
<<time 1>>
<</button>>
<<case "baking">>
<<vid "kayla/bakebj01.mp4">>
<<narrate>>She continues to work your bellend, gently massaging with her tongue as she bobs her head up and down.<</narrate>>
<<narrate>>You rub your hands over her body, only the pleasure more intoxicating as you slip your hand down her skirt and grasp her firm ass.<</narrate>>
<<narrate>>As if encouraged by your groping, she begins to suck harder while still ensuring her tongue explores your glans. The pressure is almost unbearable, and you're struggling to contain yourself.<</narrate>>
<<narrate>>As if reading your mind, she eases off a little, concentrating more on your shaft as her hand smoothly glides up and down its full length.<</narrate>>
<<narrate>>Sensing you're near your end, she once again takes your cock into her mouth and sucks so hard the pressure borders on pain.<</narrate>>
<<say "mc">>Oh fuck, $kayla.name, I'm about to blow.<</say>>
<<narrate>>Other than her eyes widening she doesn't even ease off for a second as your cum explodes into her mouth.<</narrate>>
<<notice>>*BEEP* *BEEP* *BEEP* *BEEP*<</notice>>
<<narrate>>She makes a dramatic swallowing sound as the oven timer continues to beep.<</narrate>>
<<notice>>*BEEP* *BEEP* *BEEP* *BEEP*<</notice>>
<<say "kayla">>Looks like we timed that perfectly. Put your cock away, then go empty the oven. Wash your hands first! I'll go freshen up.<</say>>
<<narrate>>You follow her instruction, and put the cake on the cooling rack. By the time she's back, you've already iced it, and it's cool enough to eat.<</narrate>>
<<say "mc">>Wanna try it?<</say>>
<<block "kayla/bake03.jpg">>
<<say "kayla">>You've already given me one delicious treat today, but I can go for another.<</say>>
<<narrate>>You can't help but think how sexy the entire situation is as you feed her the cake yourself.<</narrate>>
<<say "mc">>Is it good?<</say>>
<<say "kayla">>It's the second-tastiest thing you've fed me all day. Seriously, though, it's good. You might even be able to rival my cake.<</say>>
<<narrate>>You lean over and make it obvious you're checking out her ass.<</narrate>>
<<say "mc">>Your cake is definitely better.<</say>>
<<narrate>>She playfully slaps at your chest.<</narrate>>
<<say "kayla">>Oh, you're so bad!<</say>>
<<narrate>>The two of you flirt and joke for a few minutes while eating another piece of cake.<</narrate>>
<<if $kayla.oral == 2>>
<<think "mc">>I think our relationship is going well, maybe it's time I start trying to progress further with her.<</think>>
<<set $kayla.lustlvl = 2>>
<</if>>
<<button "Continue" househub>>
<<unlock 'kayla' 'bake'>>
<<taskdone 'bakehow'>>
<<event 'kayla' 'bake' 2>>
<<lust 'kayla' 4>>
<<like 'kayla' 5>>
<<time 1>>
<</button>>
<</block>>
<<case "night">>
<<block "kayla/sneakvisit01.jpg">>
<<narrate>>You get to $kayla.name's room and the door is wide open.<</narrate>>
<<say "kayla">>Took you long enough!<</say>>
<<narrate>>You head in and close the door behind you.<</narrate>>
<<say "mc">>You were expecting me?<</say>>
<<say "kayla">>Well, I certainly dropped enough hints!<</say>>
<<narrate>>Before you can say anything else, she beckons you over.<</narrate>>
<<say "kayla">>Are you just gonna stand there?<</say>>
<</block>>
<<center "kayla/sneakvisit02.jpg">>
<<narrate>>You stand, open-mouthed, just staring at the vision of beauty before you.<</narrate>>
<<say "kayla">>Get over here, you doofus.<</say>>
<<narrate>>You snap out of it, head over to her bed, grab the back of her neck and kiss her passionately.<</narrate>>
<<say "kayla">>Oh, god yes. That's more like it.<</say>>
<<narrate>>You pull her back to you for another kiss as your dick fights for freedom. As you continue kissing, you feel her hand gently glide down your torso until she meets your boxers.<</narrate>>
<<say "kayla">>Let's see what you're hiding there.<</say>>
<<narrate>>She pulls down your shorts and drops down so your cock is at her eye-level.<</narrate>>
<<say "kayla">>God, I love this cock.<</say>>
<<narrate>>She lurches forward, almost swallowing your dick whole.<</narrate>>
<<button "Continue" kaylabj>>
<<temp "night01">>
<</button>>
<<case "night01">>
<<vid "kayla/roombj01.mp4">>
<<say "mc">>Fuck yes, take my cock!<</say>>
<<narrate>>You run your hands over her body as she continues to slurp at your cock.<</narrate>>
<<say "kayla">>I feel so naughty!<</say>>
<<narrate>>You give her a light spank, and she lets out a cute little moan.<</narrate>>
<<say "mc">>Just how naughty?<</say>>
<<narrate>>You push her back then fall on the bed.<</narrate>>
<<say "mc">>Maybe I wanna be naughty too?<</say>>
<<narrate>>She climbs over you, positioning her pussy over your face while she returns her attention to your penis.<</narrate>>
<<button "Continue" kaylabj>>
<<temp "night02">>
<</button>>
<<case "night02">>
<<vid "kayla/roombj02.mp4">>
<<narrate>>You waggle your tongue hungrily at her clit.<</narrate>>
<<say "kayla">>I fucking love it. YES! Like that!<</say>>
<<narrate>>As if egged on by your actions, she takes your cock further into her throat.<</narrate>>
<<say "mc">>Fuck me, that's good.<</say>>
<<narrate>>Her hair tickles your thighs as she vigorously fucks your cock with her throat.<</narrate>>
<<say "kayla">>Spank me. Show me how naughty I've been.<</say>>
<<narrate>>You lightly spank her ass as you continue to lap at her vulva.<</narrate>>
<<narrate>>After a few minutes, she starts squealing in delight.<</narrate>>
<<set _u = $name.toUpperCase()>>
<<say "kayla">>Fuck god. YES! _u!<</say>>
<<narrate>>Her body convulses as the pleasure washes over her, her boobs rest on your abdomen for a moment while she regains her senses, and she furiously gets back to work on your cock, determined to return the favor.<</narrate>>
<<say "mc">>Oh, shit. Yes. Fucking hell!<</say>>
<<center "kayla/sneakvisit03.jpg">>
<<narrate>>As you begin to release your spunk, she doesn't stop for a moment and makes great efforts not to waste a single drop. She makes a dramatic swallowing noise and then rolls over beside you.<</narrate>>
<<say "kayla">>God, I love your cum.<</say>>
<<say "mc">>Any time you're hungry, you let me know.<</say>>
<<narrate>>She snorts and pats your chest.<</narrate>>
<<say "kayla">>Dork.<</say>>
<<narrate>>You rest in each other's arms silently for a few minutes until you realize she's fallen asleep.<</narrate>>
<<think "mc">>Should I stay with her? Nah, I'd better not.<</think>>
<<narrate>>You carefully unfurl yourself from her, then sneak back to your room.<</narrate>>
<<if $kayla.oral == 2>>
<<think "mc">>I think our relationship is going well, maybe it's time I start trying to progress further with her.<</think>>
<<set $kayla.lustlvl = 2>>
<</if>>
<<button "Sleep" sleep>>
<<lust "kayla" 3>>
<<like "kayla" 2>>
<<unlock "kayla" "snekayvisit01">>
<</button>>
<</switch>>
<</nobr>><<nobr>>
<<run completeTask('kaylaintro')>>
<<set $scene = 0>>
<<set _active = "kayla">>
<<meet _active>>
<<set $return = returnLocation()>>
<<set _passage = _active+"answers">>
<<if $kayla.answered is undefined>>
<<set $kayla.answered to []>>
<</if>>
<<smallflirt _active>>
<<if $azul.events.assistants != undefined && $kayla.events.assistants == undefined>>
<<opt "Assistants" _passage assistants>><</opt>>
<</if>>
<<if $location == "bakery" && $kayla.bimbo != true>>
<<link "Bakery" kaylaanswers>>
<<temp "bakery">>
<</link>>
<br>
<</if>>
<<if $tasks.councilmsg != undefined && $kayla.events.founderplan == undefined>>
<<opt "Warning $kenzie.name" _passage founderplan>><</opt>>
<</if>>
<<if ($tasks.progeny != undefined || $completeTasks.includes('progeny')) && $kayla.events.progeny == undefined>>
<<link "$kenzie.name" kaylaanswers>>
<<temp "hermom">>
<</link>><br>
<</if>>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $kayla.events.planets == undefined>>
<<link "Home World" kaylaanswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if $tasks.eastcomms != undefined>>
<<link "New Eden Comms" kaylaanswers>>
<<temp "necomms">>
<</link>><br>
<</if>>
<<if $items != undefined && $items.dildo > 0 && checkUnlocks('movie', 'peeping01', 'kayla') == true && $kayla.events.dildo == undefined>>
<<link "Give Dildo" kaylaanswers>>
<<temp "dildo">>
<</link>><br>
<</if>>
<<if $kayla.lust > 39 && $kayla.sex > 0 && $location == "office" && $kayla.bimbo != true>>
<<link "Sturdy Desk" kaylasex>>
<<if $girlshere.includes('sophia') && $sophia.events.buff > 1>>
<<temp "office-invite">>
<<else>>
<<temp "officesex">>
<</if>>
<</link>>
<br>
<</if>>
<<if $kayla.lust > 39 && ($kayla.sex > 0 || $kayla.sex > 0) && $location == "office" && $kayla.bimbo == true>>
<<link "IT Support" kaylasex>>
<<if $girlshere.includes('sophia') && $sophia.events.buff > 1>>
<<temp "office-invite">>
<<else>>
<<temp "bimbooffice">>
<</if>>
<</link>>
<br>
<</if>>
<<if $tasks.eightchampsdetective != undefined && $kayla.events.trans == undefined && !$kayla.answered.includes("brasize")>>
<<link "Transformation" kaylaanswers>>
<<temp "trans">>
<</link>>
<br>
<</if>>
<<if $tasks.eightchamps != undefined>>
<<link "Champions" kaylaanswers>>
<<temp "champions">>
<</link>>
<br>
<</if>>
<<if $nightEvents == undefined>>
<<set $nightEvents = []>>
<</if>>
<<if $kayla.lustlvl >= 1 && $kayla.lust > 24 && !$nightEvents.includes('kaylaroombj')>>
<<link "Invite to your room" kaylaanswers>>
<<temp "invite">>
<</link>>
<br>
<</if>>
<<if $kayla.lustlvl >= 1 && $kayla.lust > 24 && $location == "kitchen" && $kayla.events.bake > 1 && $kayla.bimbo != true>>
<<link "Bake together" kaylaanswers>>
<<temp "bakehow">>
<</link>>
<br>
<</if>>
<<if $kayla.lustlvl >= 1 && $kayla.lust > 24 && $location == "office" && $kayla.bimbo != true>>
<<link "What are you working on?" kaylaanswers>>
<<temp "officework">>
<</link>>
<br>
<</if>>
<<if $kayla.events.txtbake == 2 && $kayla.events.hubbake == undefined>>
<<link "Baking for others" kaylaanswers>>
<<temp "hubbake">>
<</link>>
<br>
<</if>>
<<if $tasks.bakehow != undefined && $kayla.events.baking != undefined && $kayla.bimbo != true>>
<<link "Oven" kaylaanswers>>
<<set $tempvar = "bakehow">>
<</link>>
<br>
<</if>>
<<if $expeditions isnot undefined && $kayla.events.explore is undefined>>
<<link "Expeditions" kaylaanswers>>
<<set $tempvar = "explorer">>
<</link>>
<br>
<</if>>
<<if $tasks.voicetalk isnot undefined>>
<<link "Gateway A visit" kaylaanswers>>
<<set $tempvar = "gatewaya">>
<</link>>
<br>
<</if>>
<<if $kayla.answered.length < 4 && $kayla.bimbo != true>>
<<link "Her" kaylaanswers>>
<<set $tempvar = "her">>
<</link>>
<br>
<</if>>
<<if $kayla.events.baking == undefined>>
<<link "Baking" kaylaanswers>>
<<set $tempvar = "baking">>
<</link>>
<br>
<</if>>
<<if $kayla.events.long == undefined>>
<<link "Time here" kaylaanswers>>
<<set $tempvar = "long">>
<</link>>
<br>
<</if>>
<<link "Never mind" $return>><</link>>
<</nobr>><<nobr>>
<<switch $tempvar>>
<<case 'roombj03'>>
<<vid "kayla/nightbj02.mp4">>
<<narrate>>She doesn't let up even as you're unloading on her face. You grunt under the strain of perhaps the weirdest orgasm you've ever had. Eventually she seems to calm.<</narrate>>
<<say 'kayla'>>Ha, got ya! I bet none of the other girls can make you cum this quick!<</say>>
<<say "mc">>Honestly, I don't know if I want to find out. That was fucking intense.<</say>>
<<say 'kayla'>>Silly! Looks like you had fun to me. I'm gonna go clean
up. Ciao!<</say>>
<<think "mc">>I've got to get her back for this!<</think>>
<<if $kayla.oral == 2>>
<<think "mc">>I think our relationship is going well, maybe it's time I start trying to progress further with her.<</think>>
<<set $kayla.lustlvl = 2>>
<</if>>
<<button "Sleep" sleep>>
<<unlock 'kayla' 'night01'>>
<<like "kayla" 1>>
<<lust "kayla" 3>>
<<set $kayla.events.cumgame = 1>>
<</button>>
<<case 'roombj02'>>
<<vid "kayla/nightbj01.mp4">>
<<narrate>>She's like a woman possessed; it's as scary as it is arousing. The ferocity of her actions just completely out of touch of with usual demeanor.<</narrate>>
<<say 'kayla'>>This is gonna be easier than I thought!<</say>>
<<say "mc">>Fuck, my dick is gonna be sore for days!<</say>>
<<narrate>>She continues to switch between sucking and jerking you, occasionally even sucking your balls, but not once showing any mercy.<</narrate>>
<<say 'kayla'>>Cum for me, I need your sperm!<</say>>
<<narrate>>You stand up, trying to buy some time, but she gives you no respite and quickly has your dick back in her mouth.<</narrate>>
<<narrate>>You can't hold it longer.<</narrate>>
<<button "Cum" kaylanightvisits>>
<<set $tempvar = 'roombj03'>>
<</button>>
<<case 'roombj'>>
<<block "kayla/night01.jpg">>
<<say "mc">>What kinda fun you have in mind? Wanna play cards?<</say>>
<<say 'kayla'>>Haha, no silly!<</say>>
<<narrate>>She gives you a seductive stare.<</narrate>>
<<think "mc">>Given her sexy attire, I'm pretty sure I can guess what kinda game she wants to play!<</think>>
<<say 'kayla'>>I enjoyed our little game the other day, so I'd like to play a little more.<</say>>
<<say "mc">>Truth or... truth again?<</say>>
<<say 'kayla'>>Oh, no, nothing like that. I've already started playing.<</say>>
<<narrate>>She sits beside you and runs her hand up your thigh.<</narrate>>
<<say 'kayla'>>Ready to play?<</say>>
<</block>>
<<say "mc">>Sure, what are the rules?<</say>>
<<say 'kayla'>>Last longer than 5 minutes.<</say>>
<img @src="setup.img+'/kayla/night02.jpg'" class="centerimg">
<<narrate>>Without any further warning, your dick is in her hand, and she's pumping furiously, aggressively trying to milk you.<</narrate>>
<<say "mc">>Christ, $kayla.name, perhaps be a bit more gentle.<</say>>
<<say 'kayla'>>Ha, no way, I'm here to win!<</say>>
<<think "mc">>Where has this strange competitiveness come from? Well, better try to enjoy it.<</think>>
<<say "mc">>You're not gonna win with such half measures.<</say>>
<<say 'kayla'>>Oh, we're only just getting started!<</say>>
<<button "Continue" kaylanightvisits>>
<<set $tempvar = "roombj02">>
<</button>>
<<case 'refuse'>>
<<say "mc">>Not feeling it, $kayla.name.<</say>>
<<say 'kayla'>>Well, maybe I can help you feel it, if you know what I mean.<</say>>
<<say "mc">>Nope, sorry.<</say>>
<<say 'kayla'>>You're rejecting ME?!<</say>>
<<narrate>>She storms off.<</narrate>>
<<like "kayla" -4>>
<<lust "kayla" -4>>
<<button "Continue" bedroom>><</button>>
<</switch>>
<</nobr>><<nobr>>
<<switch $kayla.activeQ>>
<<case "boyfriend">>
<<like "kayla" 2>>
<<lust "kayla" 2>>
<div class="leftbit">
<img @src="setup.img+'kayla/house03.jpg'" class="leftimg" id="kayla3">
<br >
<br >
<br >
<br >
<br >
<video autoplay loop class="leftimg" style="max-width: 400px">
<source src="img/kayla/housemove01.mp4">
Video not found. Video pack download needed.
</video>
</div>
<div class="rightbit">
<<say 'kayla'>>Not yet, but I'm working on a guy.<</say>>
<<say "mc">>Lucky him.<</say>>
<<say 'kayla'>>So, which of us do you find the most attractive?<</say>>
<<think "mc">>I mean, everyone is sinfully attractive, but obviously I've got to answer her, here!<</think>>
<<narrate>>You point to the other side of the room.<</narrate>>
<<say "mc">>Can you stand over there a moment?<</say>>
<<think "kayla">>What's he doing?! He was supposed to say me. Is he really that terrible at picking up hints?<</think>>
<<narrate>>She moves to the other side of the room, and faces you.<</narrate>>
<<say 'kayla'>>So?<</say>>
<<say "mc">>Look to your right.<</say>>
<<narrate>>She turns to see her reflection in the mirror. Her face lights up, and she struggles to contain her smile. She comes back over to you and gives you a playful tap on the head.<</narrate>>
<<say 'kayla'>>You absolute dork.<</say>>
<div class="choices">
<h3>Make a Choice</h3>
<<link "What's your bra size?" kaylaquestions>>
<<set $kayla.activeQ to "brasize">>
<<set $kayla.answered.push("brasize")>>
<</link>>
<br>
<<if !$kayla.answered.includes("heaven")>>
<<link "Did it hurt when you fell from heaven?" kaylaquestions>>
<<set $kayla.activeQ to "heaven">>
<<set $kayla.answered.push("heaven")>>
<</link>>
<br >
<</if>>
<<if !$kayla.answered.includes("fantasy")>>
<<link "Is there anyone you fantasize about?" kaylaquestions>>
<<set $kayla.activeQ to "fantasy">>
<<set $kayla.answered.push("fantasy")>>
<</link>>
<br>
<</if>>
<<link "Finished" kayla>>
<<event 'kayla' 'her'>>
<</link>>
</div>
</div>
<<case "brasize">>
<<like "kayla" 1>>
<<lust "kayla" 3>>
<div class="leftbit">
<img @src="setup.img+'kayla/house04.jpg'" class="leftimg">
<br >
<br >
<video autoplay loop class="leftimg" style="max-width: 400px">
<source src="img/kayla/houseboobs01.mp4">
Video not found. Video pack download needed.
</video>
</div>
<div class="rightbit">
<<event "kayla" "boobs">>
<<say 'kayla'>>OMG, you can't just ask someone you barely know that. I'm a 32E.<</say>>
<<narrate>>You spit out your coffee.<</narrate>>
<<say 'kayla'>>Haha, you impressed? Got these babies when I came through the gateway.<</say>>
<<narrate>>She strokes her breasts while maintaining eye contact with you.<</narrate>>
<<say 'kayla'>>Always wanted to get 'em done before, but never had the money. You like 'em?<</say>>
<<if $cassie.events.others == 1>>
<<say "mc">>Love 'em! You mean the gateway transformed you?<</say>>
<<say "kayla">>That's right, when I came through, they were just how I wanted them!<</say>>
<<say "mc">>Did it transform any of the others, or just you and $vanna.name?<</say>>
<<say "kayla">>Some of the others got tattoos or different hair colors, but nothing like a boob job, and nothing even close to what $vanna.name got.<</say>>
<<else>>
<<say "mc">>Love 'em! But, what do you mean you got them when you came through? Like did you come here for to see a plastic surgeon?<</say>>
<<narrate>>She giggles at you.<</narrate>>
<<say "kayla">>Haha! No, but I guess you haven't been told yet. The gateway can transform you, I don't really get it, that clever stuff isn't my thing, but yeah, some people get new hair or whatever. I'm told sometimes they even change gender.<</say>>
<<say "mc">>Holy shit.<</say>>
<<narrate>>She presses on before you can question further.<</narrate>>
<</if>>
<<say 'kayla'>>My turn! Do you like big boobs?<</say>>
<<think "mc">>Is she for real? Screw it, I'm going for it.<</think>>
<<say "mc">>Would you say 32E is big? If so, I love them.<</say>>
<<narrate>>$kayla.name somehow manages to giggle while being both cute and seductive.<</narrate>>
<<say 'kayla'>>Oh, silly! If you're good, maybe I'll let you see them for real.<</say>>
<<narrate>>You just stare at her chest, imagining what wonders await. Your cock barely manages to contain its excitement.<</narrate>>
<<say 'kayla'>>Looks like someone is excited about it! But we need to finish our little game first. Go on, your turn!<</say>>
<div class="choices">
<h3>Make a Choice</h3>
<<if !$kayla.answered.includes("heaven")>>
<<link "Did it hurt when you fell from heaven?" kaylaquestions>>
<<set $kayla.activeQ to "heaven">>
<<set $kayla.answered.push("heaven")>>
<</link>>
<br >
<</if>>
<<if !$kayla.answered.includes("fantasy")>>
<<link "Is there anyone you fantasize about?" kaylaquestions>>
<<set $kayla.activeQ to "fantasy">>
<<set $kayla.answered.push("fantasy")>>
<</link>>
<br>
<</if>>
<<link "Finished" kayla>>
<<event 'kayla' 'her'>>
<</link>>
</div>
</div>
<<case "heaven">>
<<like "kayla" 1>>
<div class="leftbit">
<img @src="setup.img+'kayla/lounge01.jpg'" class="leftimg">
</div>
<div class="rightbit">
<<say "mc">>Did it hurt?<</say>>
<<say 'kayla'>>Huh? Did what hurt?<</say>>
<<say "mc">>When you fell from heaven?<</say>>
<<narrate>>$kayla.name snorts, and taps your hand.<</narrate>>
<<say 'kayla'>>Stop it! Haha. Lame, so lame.<</say>>
<<narrate>>Despite her response, she's grinning ear to ear.<</narrate>>
<<say 'kayla'>>Go on, I'll let you ask another.<</say>>
<div class="choices">
<h3>Make a Choice</h3>
<<if !$kayla.answered.includes("boyfriend")>>
<<link "Do you have a boyfriend?" kaylaquestions>>
<<set $kayla.activeQ to "boyfriend">>
<<set $kayla.answered.push("boyfriend")>>
<</link>>
<br>
<</if>>
<<if !$kayla.answered.includes("brasize") && $kayla.answered.includes("boyfriend")>>
<<link "What's your bra size?" kaylaquestions>>
<<set $kayla.activeQ to "brasize">>
<<set $kayla.answered.push("brasize")>>
<</link>>
<br>
<</if>>
<<if !$kayla.answered.includes("heaven")>>
<br>
<<link "Did it hurt when you fell from heaven?" kaylaquestions>>
<<set $kayla.activeQ to "heaven">>
<<set $kayla.answered.push("heaven")>>
<</link>>
<br >
<</if>>
<<if !$kayla.answered.includes("fantasy")>>
<<link "Is there anyone you fantasize about?" kaylaquestions>>
<<set $kayla.activeQ to "fantasy">>
<<set $kayla.answered.push("fantasy")>>
<</link>>
<br>
<</if>>
<<link "Finished" kayla>>
<<event 'kayla' 'her'>>
<</link>>
</div>
<<case "fantasy">>
<<lust "kayla" 1>>
<div class="leftbit">
<img @src="setup.img+'kayla/house03.jpg'" class="leftimg">
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<img @src="setup.img+'kayla/house05.jpg'" class="leftimg">
</div>
<div class="rightbit">
<<say "mc">>Who do you fantasize about?<</say>>
<<say 'kayla'>>Nobody really, but maybe that'll change tonight.<</say>>
<<say "mc">>Oh? Anything I can do to help?<</say>>
<<say 'kayla'>>Ha! Dork. But actually you can come help me bake one evening, just meet me in the kitchen.<</say>>
<<say "mc">>I'll hold you to that.<</say>>
<<say 'kayla'>>Mhmm, I hope that's not all you hold.<</say>>
<<narrate>>Before you get a chance to zone in on that, she moves on to her next question.<</narrate>>
<<say 'kayla'>>Ok, so what's your kink, then?<</say>>
<<say "mc">>Oh, for sure, hot blondes with a smile that can send men insane. Know anyone like that?<</say>>
<<narrate>>She blushes, clearly enjoying the attention.<</narrate>>
<<say 'kayla'>>Nope, I'll be sure to let them know to meet you at the pool in the mornings if I do meet anyone like that, though!<</say>>
<<narrate>>She gives you a little wink.<</narrate>>
<<say "mc">>I look forward to meeting them.<</say>>
<div class="choices">
<h3>Make a Choice</h3>
<<if !$kayla.answered.includes("boyfriend")>>
<<link "Do you have a boyfriend?" kaylaquestions>>
<<set $kayla.activeQ to "boyfriend">>
<<set $kayla.answered.push("boyfriend")>>
<</link>>
<br>
<</if>>
<<if !$kayla.answered.includes("brasize") && $kayla.answered.includes("boyfriend")>>
<<link "What's your bra size?" kaylaquestions>>
<<set $kayla.activeQ to "brasize">>
<<set $kayla.answered.push("brasize")>>
<</link>>
<br>
<</if>>
<<if !$kayla.answered.includes("heaven")>>
<<link "Did it hurt when you fell from heaven?" kaylaquestions>>
<<set $kayla.activeQ to "heaven">>
<<set $kayla.answered.push("heaven")>>
<</link>>
<br>
<</if>>
<<if !$kayla.answered.includes("fantasy")>>
<br >
<<link "Is there anyone you fantasize about?" kaylaquestions>>
<<set $kayla.activeQ to "fantasy">>
<<set $kayla.answered.push("fantasy")>>
<</link>>
<br>
<</if>>
<<link "Finished" kayla>>
<<event 'kayla' 'her'>>
<</link>>
</div>
<</switch>>
<</nobr>><<switch $tempvar>>
<<case "room01">>
<<taskdone "progeny">>
<<narrate>>Her hand disappears into her shorts.<</narrate>>
<<vid "kayla/room01.mp4">>
<<say kayla>>I'm so wet, I got my bottoms wet.<</say>>
<<say kayla>>Mhmm, you can feel how wet my pussy is through my bottoms.<</say>>
<<say kayla>>Just thinking about taking your dick in me...<</say>>
<<think mc>>Yeah... there's no mistaking that intent.<</think>>
<div id="replace">
<<choices>>
<<link "Stay">>
<<replace "#replace">>
<<say mc>>I guess I could spare a few minutes...<</say>>
<<say kayla>>I fucking love your cock!<</say>>
<<narrate>>You step toward the bed. She's like a wild beast, your pants are gone within seconds and her tongue coiled around your cock mere moments later.<</narrate>>
<<cont "kaylasex" "room02">>
<</replace>>
<</link>><br>
<<link "Leave">>
<<replace "#replace">>
<<say mc>>Sorry, $kayla.name, I've gotta go.<</say>>
<<say kayla>>But... that was the real reason I wanted you to come to my room.<</say>>
<<narrate>>You can hear the disappointment in her voice.<</narrate>>
<<say mc>>I've just got a lot to process right now.<</say>>
<<say kayla>>Well... don't process for too long...<</say>>
<<button "Continue" $return>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "room02">>
<<vid "kayla/room02.mp4">>
<<say kayla>>Oh, fuck. <</say>>
<<say kayla>>I'm a nasty little slut, aren't I?<</say>>
<<say kayla>>Should fuck your nasty little slut.<</say>>
<<say mc>>You're insatiable!<</say>>
<<cont "kaylasex" "room03">>
<<case "room03">>
<<narrate>>She lowers herself on to your dick, rocking back and forth gently for only a few seconds before ramping up the tempo.<</narrate>>
<<vid "kayla/room03.mp4">>
<<say kayla>>That feels so good. I feel your cock all the way deep in my pussy.<</say>>
<<say mc>>Does my nasty slut love riding my dirty fucking dick?<</say>>
<<say kayla>>I fucking love it!<</say>>
<<say mc>>I want my little cumwhore to face me and ride me <b>hard</b>.<</say>>
<<cont "kaylasex" "room04">>
<<case "room04">>
<<vid "kayla/room04.mp4">>
<<say kayla>>Oh, my god. It feels so good. Oh yes, I want your cock all inside my pussy.<</say>>
<<say kayla>>I wanna see you cum everywhere.<</say>>
<<say mc>>I wanna see it on your face!<</say>>
<<cont "kaylasex" "room05">>
<<case "room05">>
<<vid "kayla/room05.mp4">>
<<say kayla>>I want you to give me a really good facial.<</say>>
<<say kayla>>I feel your balls get tight when you're about to cum.<</say>>
<<narrate>>Mimicking some of her wild intensity, you grab her head and fuck her throat.<</narrate>>
<<say mc>>Fuck, fuck, fuck!<</say>>
<div id="replace">
<<button "Cum">>
<<unlock "kayla" "room01">>
<<set $kayla.sex = true>>
<<replace "#replace">>
<<vid "kayla/room06.mp4">>
<<say mc>>Ohm my fucking yes, <b>fuck</b>! Take it, take my seed your dirty bitch, yes!<</say>>
<<narrate>>She seems to go wild as you explode, rubbing her face against your helmet as you erupt.<</narrate>>
<<say kayla>>Yes, yes, yes, shower me in your goo!<</say>>
<<narrate>>You let your head fall backwards. Spent and satisfied... yet you still feel her tongue massaging your glans, hungrily seeking any last drop of cum.<</narrate>>
<<say kayla>>I fucking love your cum. I don't think I can live without it, it's so fucking good.<</say>>
<<say mc>>Ha! You sound like an addict.<</say>>
<<say kayla>>Oh, I'm definitely addicted to your seed. It's like fucking ambrosia!<</say>>
<<narrate>>You laugh nervously, unable to tell if she's joking, trying to be sexy, or legitimately hooked.<</narrate>>
<<say kayla>>You wanna know anything else about my mom... I'm definitely for this again.<</say>>
<<button "Continue" housestuff>>
<<set $location = "bedrooms">>
<<like "kayla" 4>>
<<lust "kayla" 6>>
<<time 2>>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "forgive">>
<<left2 "kayla/night03.jpg">>
<<say "mc">>Wow.<</say>>
<<say "kayla">>That's exactly the reaction I was hoping for.<</say>>
<<narrate>>She saunters over.<</narrate>>
<<say "kayla">>But there's another reaction I was hoping for too... something a little further south...<</say>>
<<narrate>>She rocks her hips against your lap and draws herself up slowly against you, her ass rubbing over your crotch.<</narrate>>
<<say "kayla">>There he is... let's give him a little kiss...<</say>>
<<cont "kaylasex" "forgive01">>
<<case "forgive01">>
<<vid "kayla/sorry01.mp4">>
<<say "kayla">>I love your dick in my mouth.<</say>>
<<say "kayla">>Mhmm... I wanna feel it in my pussy now.<</say>>
<<cont "kaylasex" "forgive02">>
<<case "forgive02">>
<<vid "kayla/sorry02.mp4">>
<<say "kayla">>Oh, fuck. Oh, yeah... oh my god, fuck. Oh yeah, fuck me.<</say>>
<<say "kayla">>Oh my god, yes. Ohh~ fuck.<</say>>
<<say "kayla">>That feels so good. Oh yeah, fuck me like I'm your whore.<</say>>
<<cont "kaylasex" "forgive03">>
<<case "forgive03">>
<<vid "kayla/sorry03.mp4">>
<<say "kayla">>My god, that feels so good.<</say>>
<<say "kayla">>Oh my god, yes!<</say>>
<<cont "kaylasex" "forgive04">>
<<case "forgive04">>
<<vid "kayla/sorry04.mp4">>
<<say "kayla">>Oh my god, that feels so good. Oh fuck, yes!<</say>>
<<narrate>>You put your fingers in her mouth to stifle her moans, slow down, and mumble to yourself while trying to prevent your inevitable explosion.<</narrate>>
<<say "kayla">>Mhmm, mhmmm, ohhh~<</say>>
<<narrate>>Her passion can not be contained and even in this state her screams drive you wild.<</narrate>>
<<say "mc">>Fuck! I'm cumming, I'm cumming.<</say>>
<<narrate>>She scrambles desperately under you as you bring your cock to her face.<</narrate>>
<<vid "kayla/sorry05.mp4">>
<<say "mc">>Fuuuck-ah! YES!<</say>>
<<narrate>>You fall back on to the bed, spent.<</narrate>>
<<if $kayla.events.assistants == undefined || $replay == true>>
<<say "mc">>Now that was a fucking apology. Fuck. Maybe you should be bad more often!<</say>>
<<narrate>>She giggles.<</narrate>>
<<say "mc">>But seriously, we can do this as much as you want, but you don't need to keep apologizing, okay?<</say>>
<</if>>
<<button "Sleep" sleep>>
<<lust "kayla" 3>>
<<like "kayla" 6>>
<<unlock "kayla" "forgive">>
<</button>>
<<case "office-invite">>
<<think "mc">>Hmm, $sophia.name is here too... should I see if she wants to watch?<</think>>
<<choices>>
<<link "Yes" sophiaanswers>>
<<temp "aud-kayla">>
<</link>><br>
<<link "No" kaylasex>>
<<if $kayla.bimbo == true>>
<<temp "bimbooffice">>
<<else>>
<<temp "officesex">>
<</if>>
<</link>>
<</choices>>
<<case "bimbooffice">>
<<say "mc">>Ma'am, I need to take a look at the computer.<</say>>
<<say "kayla">>Huh? Yeah. Just give me a few minutes.<</say>>
<<say "mc">>Please, ma'am. IT support sent me.<</say>>
<<narrate>>She looks at you baffled.<</narrate>>
<<say "kayla">>What? IT support? And why are you calling me ma'am?<</say>>
<<say "mc">>Please, ma'am, I just need to do my job. I won't close anything you have open.<</say>>
<<narrate>>She gets off the chair, while continuing to give you a bemused stare.<</narrate>>
<<say "kayla">>Uh... yeah, sure.<</say>>
<<narrate>>You pretend to mess around with her keyboard.<</narrate>>
<<say "mc">>There. All done.<</say>>
<<say "kayla">>But you didn't—<</say>>
<<say "mc">>How will you be paying for this, ma'am?<</say>>
<<think "mc">>I don't know I can keep this up for much longer.<</think>>
<<narrate>>She slaps her fist into her other hand as she finally catches on.<</narrate>>
<<say "kayla">>But sir, I don't have any money. Perhaps there's another way I could pay you?<</say>>
<<if $sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Office">>
<<think "mc">>You notice $sophia.name returning from the bathroom so you raise your voice.<</think>>
<</if>>
<<say "mc">>Oh, what do you have in mind?<</say>>
<<say "kayla">>Perhaps it's easier if I show you.<</say>>
<<narrate>>She gets on her knees in front of you and forcefully pulls your trousers down.<</narrate>>
<<button "Continue" kaylasex>>
<<temp "bimbooffice01">>
<</button>>
<<case "bimbooffice01">>
<<left2 "kayla/bimbo/office01.mp4" v>>
<<narrate>>She squashes your dick between her giant boobs.<</narrate>>
<<say "kayla">>Yeees!<</say>>
<<say "mc">>Oh fuck, now this is payment!<</say>>
<<narrate>>She looks up at you, the lust in her eyes screaming for you to fuck her.<</narrate>>
<<say "mc">>But, ma'am, I don't think this will cover the bill.<</say>>
<<narrate>>She sweeps her desk, sending pens and pencils flying, before mounting it.<</narrate>>
<<say "kayla">>Then perhaps this would clear the debt?<</say>>
<<button "Continue" kaylasex>>
<<temp "bimbooffice02">>
<</button>>
<<case "bimbooffice02">>
<<vid "kayla/bimbo/office02.mp4">>
<<narrate>>She maintains eye contact with you as her pussy gleefully welcomes your dick.<</narrate>>
<<say "kayla">>Ohhhh, yes!<</say>>
<<narrate>>She starts rubbing her clit as she stares longingly in your eyes.<</narrate>>
<<say "kayla">>Oh fuck! Yes, yes, yes!<</say>>
<<narrate>>She motions to the sofa.<</narrate>>
<<button "Continue" kaylasex>>
<<temp "bimbooffice03">>
<</button>>
<<case "bimbooffice03">>
<<narrate>>She towers over you before abruptly lowering herself on to your cock.<</narrate>>
<<vid "kayla/bimbo/office03.mp4">>
<<say "mc">>Oh shit!<</say>>
<<narrate>>Holding on to your shoulders, she bounces on your cock like a space hopper. Her moans grow strained as she struggles to contain her pleasure.<</narrate>>
<<say "kayla">>Oh yeah!<</say>>
<<narrate>>She speeds up as her orgasm closes in. The feeling of her constricting around your cock is the final push you need.<</narrate>>
<<say "mc">>I'm gonna cum!<</say>>
<<narrate>>She quickly jumps off and kneels before you.<</narrate>>
<<say "kayla">>I wanna taste it!<</say>>
<<vid "kayla/bimbo/office04.mp4">>
<<narrate>>As the last drop of your semen falls, she looks up at you, her eyes still full of lust.<</narrate>>
<<say "kayla">>Any time you want to <b><i>cum</i></b> fix my computer, you know where I am!<</say>>
<<if $tempvar3 == "sophiawatch">>
<<narrate>>She grabs her skirt and heads toward the bathroom, as she passes $sophia.name she grabs her bottom and squeezes tightly.<</narrate>>
<<say "kayla" "" "(Whispering)" "whisper">>Hope you enjoyed the show, gorgeous.<</say>>
<<else>>
<<narrate>>She grabs her skirt and heads to the bathroom.<</narrate>>
<</if>>
<<if $sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Office">>
<<think "mc">>I have no idea if $sophia.name saw any of that, I was busy enjoying it.<</think>>
<</if>>
<<button "Continue" housestuff>>
<<unlock "kayla" "bimbooffice">>
<<set $kayla.sex = true>>
<<lust "kayla" 3>>
<<like "kayla" 3>>
<<if ($sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Office") || $tempvar3 == "sophiawatch">>
<<set $sophia.events.watched++>>
<<corrupt "sophia" 2>>
<<lust "sophia" 3>>
<<set $tempvar3 = "">>
<</if>>
<<time 1.5>>
<<temp "">>
<</button>>
<<case "officesex">>
<<say "mc">>You know, that desk looks awfully sturdy.<</say>>
<<if $kayla.events.officesex == undefined || $replay == true>>
<<narrate>>She looks at you blankly.<</narrate>>
<<say "kayla">>I mean... I guess?<</say>>
<<say "mc">>Why don't we test out how sturdy?<</say>>
<<say "kayla">>Uhh, why?<</say>>
<<narrate>>You point at your crotch and a grin creeps across her face.<</narrate>>
<</if>>
<<say "kayla">>Oh, yes, I get it. We should definitely test it out.<</say>>
<<narrate>>She starts undressing. You follow suit.<</narrate>>
<<say "kayla">>Let's see if it can hold my weight.<</say>>
<<narrate>>She drapes herself across the desk.<</narrate>>
<<center "kayla/office04.jpg">>
<<say "kayla">>Certainly seems solid... perhaps we should give it a more intensive study?<</say>>
<<narrate>>You kick the chair out of the way while she lies down on the desk.<</narrate>>
<<if $sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Office">>
<<think "mc">>$sophia.name is over at one of the other desks, she has a perfect view. You try not to make it obvious you see her and continue on.<</think>>
<</if>>
<<say "mc">>I think...<</say>>
<<narrate>>You grab her legs and lift her slightly off the table.<</narrate>>
<<say "mc">>...that's a great idea!<</say>>
<<narrate>>You thrust hard into her wet pussy as she shrieks in delight.<</narrate>>
<<button "Continue" kaylasex>>
<<temp "officesex01">>
<</button>>
<<case "officesex01">>
<<vid "kayla/officesex01.mp4">>
<<say "kayla">>Ohhh, fuuck!<</say>>
<<narrate>>You pound her mercilessly as she suspends herself just off the desk.<</narrate>>
<<say "kayla">>Oh my god, holy fuck!<</say>>
<<button "Continue" kaylasex>>
<<temp "officesex02">>
<</button>>
<<case "officesex02">>
<<narrate>>She falls back on to the desk, nearly knocking the monitor off.<</narrate>>
<<vid "kayla/officesex02.mp4">>
<<say "kayla">>Ohhh fuck! Oh my god yes! Oh shit!<</say>>
<<narrate>>The desk wobbles in time with each clap of flesh and as her screams grow louder you feel your climax closing in.<</narrate>>
<<set _uc = $name.toUpperCase()>>
<<say "kayla">>Ohhh, yes, fuck my pussy! _uc!<</say>>
<<narrate>>The look of desire she gives you as she screams your name in pleasure is the final push you need and you unload deep inside her pussy.<</narrate>>
<<say "kayla">>Yes! Fill me up. Fill me with your dirty seed!<</say>>
<<narrate>>She writhes in pleasure as your warm goo seeps from her pussy.<</narrate>>
<<say "mc">>Fuck, that <i><b>is</b></i> a sturdy desk.<</say>>
<<narrate>>She giggles.<</narrate>>
<<say "kayla">>Dork!<</say>>
<<narrate>>She lies on the table a little longer, recovering from her own orgasm, as you lazily pick up your clothes.<</narrate>>
<<say "kayla">>You know, we should definitely check how sturdy it is again some time, just to be safe.<</say>>
<<narrate>>You grin at her.<</narrate>>
<<say "mc">>Absolutely. Can't be too sure!<</say>>
<<if $tempvar3 == "sophiawatch">>
<<narrate>>The two of you giggle as $sophia.name moans in orgasm from pleasuring herself to your show.<</narrate>>
<<say "kayla">>Rave reviews from the audience!<</say>>
<</if>>
<<if $sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Office">>
<<narrate>>You notice $sophia.name is no longer at her desk but you were that busy enjoying yourself you're unsure when she excused herself.<</narrate>>
<</if>>
<<button "Continue" housestuff>>
<<unlock "kayla" "officesex">>
<<set $kayla.sex = true>>
<<lust "kayla" 3>>
<<like "kayla" 3>>
<<if ($sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Office") || $tempvar3 == "sophiawatch">>
<<set $sophia.events.watched++>>
<<corrupt "sophia" 2>>
<<lust "sophia" 3>>
<<set $tempvar3 = "">>
<</if>>
<<time 1.5>>
<</button>>
<<case "bimbo-first">>
<<narrate>>You're barely in the door when you start ripping each other's clothes off.<</narrate>>
<<say "kayla">>Oh, god I need this so badly.<</say>>
<<narrate>>She pushes you inside the shower, turns it on, sinks to her knees, and immediately starts fucking your dick with her tits.<</narrate>>
<<vid "kayla/bimboshower01.mp4">>
<<say "kayla">>Fuck my big fucking tits.<</say>>
<<narrate>>She seems ravenous, cock-hungry, and insatiable, and it's not long until she's sucking on your manhood.<</narrate>>
<<button "Continue" kaylasex>>
<<temp "bimboshower02">>
<</button>>
<<case "bimboshower02">>
<<vid "kayla/bimboshower02.mp4">>
<<narrate>>While sucking on the tip of your penis, she works the length with her hand.<</narrate>>
<<say "mc">>Oh fuck yes.<</say>>
<<narrate>>As if encouraged by your enjoyment she forces her head down your shaft, taking almost your entire length into her throat.<</narrate>>
<<say "mc">>Holy shit.<</say>>
<<say "kayla">>I can't wait anymore. Fuck me. Fuck me hard.<</say>>
<<button "Continue" kaylasex>>
<<temp "bimboshower03">>
<</button>>
<<case "bimboshower03">>
<<narrate>>You bend her over and thrust your dick inside her.<</narrate>>
<<vid "kayla/bimboshower03.mp4">>
<<narrate>>She looks back at you, her eyes portraying a lustful gratitude.<</narrate>>
<<say "kayla">>Yeah! Keep fucking me! Just like that!<</say>>
<<narrate>>Her wild, animal-like moans fill the air, the purpose of the shower concealing your passion long obsolete.<</narrate>>
<<button "Continue" kaylasex>>
<<temp "bimboshower04">>
<</button>>
<<case "bimboshower04">>
<<narrate>>With all reason long forgotten you push her to the ground and pound away as fast and deep as you can.<</narrate>>
<<vid "kayla/bimboshower04.mp4">>
<<say "kayla">>It's so fucking deep!<</say>>
<<narrate>>She violently starts to rub her clit as the pleasure courses through her body.<</narrate>>
<<say "kayla">>Ohhhh, fuck.<</say>>
<<narrate>>As the orgasm consumes her you feel your own building. You pull her to her knees and jerk off as she looks up at you, mouth open wide.<</narrate>>
<<vid "kayla/bimboshower05.mp4">>
<<say "mc">>Holy shit. You were intense.<</say>>
<<say "kayla">>I wasn't the only one.<</say>>
<<narrate>>She gets up and checks herself out in the mirror, your cum still oozing down her cheek.<</narrate>>
<<say "kayla">>So, what do you think?<</say>>
<<narrate>>She does a little pose for you.<</narrate>>
<<say "mc">>You're incredible. <i>That</i> was incredible.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kayla">>Want me to stay in this form for a bit?<</say>>
<<if $replay == true>>
<<button "Continue" househub>>
<<unlock "kayla" "bimboshower">>
<<set $kayla.sex = true>>
<</button>>
<<else>>
<<think "mc">>I got the feeling from her while transforming her she'll be willing to switch back and forth whenever, so regardless of what I chose here, I can always go back to Gateway B and to choose another option later.<</think>>
<div id="replace">
<<choices>>
<<link "Stay like this">>
<<toggleclass "#afterreplace" noshow>>
<<replace "#replace">>
<<say "mc">>Let's see what other mischief we can get up to while you look like this.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kayla">>Oh, we can get up to mischief in any form you like!<</say>>
<</replace>>
<<run overrideSchedule('kayla', 8, 9, "")>>
<</link>><br>
<<link "Change back">>
<<toggleclass "#afterreplace" noshow>>
<<replace "#replace">>
<<say "mc">>You're incredible in either form, but I think I want to mess around some more with the original for now.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kayla">>Oh, I'm always happy to mess around with you!<</say>>
<<narrate>>As you're getting dressed she starts skipping off.<</narrate>>
<<say "mc">>Wait, don't you need me to transform you back?<</say>>
<<say "kayla">>Nah, $lacy.name automated it. I just wanted to make sure you felt me, understood exactly what I wanted, and were there to provide it when I came back through the gateway.<</say>>
<<narrate>>She winks.<</narrate>>
<<say "kayla">>Worked like a charm, I'll catch you later!<</say>>
<<set $kayla.bimbo = "seen">>
<</replace>>
<</link>><br>
<</choices>>
</div>
<div id="afterreplace" class="noshow">
<<button "Continue" mngtoilets>>
<<lust "kayla" 5>>
<<like "kayla" 1>>
<<time 1.5>>
<<temp "">>
<<unlock "kayla" "bimboshower">>
<<set $kayla.sex = true>>
<</button>>
</div>
<</if>>
<<case "sorryanal">>
<<block "kayla/gatewayb03.jpg">>
<<say "kayla">>Then let's get back into the car and back to my room!<</say>>
<<say "mc">>Why didn't you just invite me there to start?<</say>>
<<say "kayla">>Less questions, you wanna fuck my ass or not?<</say>>
<<narrate>>You both get in and as you're driving you notice her scrambling in her bag.<</narrate>>
<<say "mc">>Lost something?<</say>>
<</block>>
<<say "kayla">>Nope, just getting the lube out. The drive back should give me enough time to get ready for you.<</say>>
<<say "mc">>You're gonna do it in the car?<</say>>
<<say "kayla">>There's no way I'm waiting until we're back... as soon as we're in that room your dick is going in my ass.<</say>>
<<say "mc">>As you were.<</say>>
<<narrate>>She chuckles.<</narrate>>
<<narrate>>You park straight outside the hotel doors and leave the car running with the doors wide open. The pair of you impatiently dash to her room. Before you're even in the door you're both getting naked. The passion flowing through in overdrive; you burst into her room while she passionately kisses you, her arms swinging around your neck.<</narrate>>
<<say "kayla">>I want you to destroy my ass. Really make me pay for what I did to you!<</say>>
<<narrate>>You playfully spank her then flop onto her bed.<</narrate>>
<<say "mc">>No. You do it.<</say>>
<<narrate>>She looks confused.<</narrate>>
<<say "kayla">>Huh? You want me to destroy your—<</say>>
<<say "mc">>No! I want you to do the work. This is your punishment, after all. Ride my dick with your ass. Destroy it yourself.<</say>>
<<narrate>>Her bafflement subsides and the happiness radiates from her as she slides herself over your body.<</narrate>>
<<button "Continue" kaylasex>>
<<temp "sorryanal01">>
<</button>>
<<case "sorryanal01">>
<<vid "kayla/anal01.mp4">>
<<narrate>>She gently lowers herself onto your dick.<</narrate>>
<<say "mc">>Shit, it's fucking tight.<</say>>
<<narrate>>She gently bounces a little, as if trying to get used to the feeling.<</narrate>>
<<button "Continue" kaylasex>>
<<temp "sorryanal02">>
<</button>>
<<case "sorryanal02">>
<<vid "kayla/anal02.mp4">>
<<narrate>>She continues to slowly grind her ass up and down your shaft.<</narrate>>
<<say "kayla">>Yes... ohhhh!<</say>>
<<narrate>>While you're very much enjoying yourself, it's not exactly what you had in mind.<</narrate>>
<<say "mc">>I thought you wanted that ass destroyed?<</say>>
<<narrate>>She twists around on your dick to face you, the tightness of her ass causing a pleasurable, yet uncomfortable feeling running down your shaft leaving a tickling sensation within your balls.<</narrate>>
<<say "kayla">>Just getting warmed up. The real show starts now.<</say>>
<<button "Continue" kaylasex>>
<<temp "sorryanal03">>
<</button>>
<<case "sorryanal03">>
<<vid "kayla/anal03.mp4">>
<<narrate>>As she picks up the pace, she struggles to contain her gasps.<</narrate>>
<<say "mc">>Faster!<</say>>
<<narrate>>She tries, but she's barely able to handle the feeling as it is.<</narrate>>
<<say "kayla">>Yes... yes!<</say>>
<<say "mc">>I think it's my turn now.<</say>>
<<narrate>>You push her off you and retreat off the bed.<</narrate>>
<<say "mc">>All fours. Let me show you how it's done.<</say>>
<<button "Continue" kaylasex>>
<<temp "sorryanal04">>
<</button>>
<<case "sorryanal04">>
<<vid "kayla/anal04.mp4">>
<<narrate>>You shove your dick in her ass, grab the remnants of her panties and pound fast and hard into her.<</narrate>>
<<say "kayla">>Ohhhh.<</say>>
<<narrate>>Her whimpers only excite you further, and between the clap of her ass cheeks, the cries of her pleasure, and the tightness of her ass, you lose yourself completely. The world blurs into nothing but the feeling of your cock, the delightful sounds of her pleasure, and the echoing of flesh slapping against flesh.<</narrate>>
<<say "mc">>Holy fuck.<</say>>
<<narrate>>The harmony of it all finally your undoing as you unleash your load into her ass.<</narrate>>
<<say "kayla">>Holy shit, that was crazy.<</say>>
<<say "mc">>Fuck, that was crazy tight.<</say>>
<<say "kayla">>My ass is on fire, I don't think I'll be able to sit right for a week. Worth it, though.<</say>>
<<narrate>>She shuffles off to the bathroom while you get dressed.<</narrate>>
<<button "Continue" housestuff>>
<<lust "kayla" 5>>
<<like "kayla" 1>>
<<time 1.5>>
<<set $location = "bedrooms">>
<<unlock "kayla" "analsorry">>
<<set $kayla.sex = true>>
<<temp "">>
<</button>>
<<case "car">>
<<block "kayla/gatewayb03.jpg">>
<<narrate>>You pull out your hard cock.<</narrate>>
<<say "mc">>I want you now. This instant. I can't wait even a second more.<</say>>
<<narrate>>She stares at your cock, unbuttoning her skirt as he she seductively walks towards you.<</narrate>>
<<say "kayla">>Remember, I've been bad. I need good, <b>hard</b> punishment.<</say>>
<<narrate>>She throws her top over the fence as she continues.<</narrate>>
<<say "kayla">>But first, I need to get a taste.<</say>>
<<narrate>>She sits down on the sun lounger, grabs your cock, looks up at you while she licks the tip then takes you right into the back of her throat with one swift motion.<</narrate>>
<<button "Continue" kaylasex>>
<<temp "car01">>
<</button>>
<</block>>
<<case "car01">>
<<vid "kayla/car01.mp4">>
<<narrate>>She periodically looks up at you with her lustful eyes as she continues to skillfully work your tool.<</narrate>>
<<say "mc">>Fuck me this is good... but you said something about the hood of the car?<</say>>
<<narrate>>She grins, runs her hands to your waist, then with one movement violently drags your shorts down to your ankles.<</narrate>>
<<say "kayla">>Remember, I've been bad!<</say>>
<<narrate>>She moves to the car, resting her hands on it while sticking her ass out at you.<</narrate>>
<<button "Continue" kaylasex>>
<<temp "car02">>
<</button>>
<<case "car02">>
<<vid "kayla/car02-00.mp4">>
<<narrate>>You take the hint and spank her ass a few times leaving the imprint of your hand firmly visible.<</narrate>>
<<say "kayla">>Ahhh, yeah, spank me.<</say>>
<<narrate>>You rub your cock on her vulva.<</narrate>>
<<say "mc">>I've got a much harder punishment in mind for you!<</say>>
<<button "Continue" kaylasex>>
<<temp "car02-01">>
<</button>>
<<case "car02-01">>
<<vid "kayla/car03.mp4">>
<<narrate>>As you thrust into her, her screams carry through the hills, causing the birds to flee from the nearby trees.<</narrate>>
<<say "kayla">>Oh fuck yes, fuck this pussy!<</say>>
<<narrate>>Holding on to her waist you pound away as her screams carry further into the distance.<</narrate>>
<<say "kayla">>Shit yes, oh my god!<</say>>
<<narrate>>The thought of the travelers below hearing her screams of passion only increases your desires.<</narrate>>
<<button "Continue" kaylasex>>
<<temp "car03">>
<</button>>
<<case "car03">>
<<vid "kayla/car02.mp4">>
<<narrate>>She twists herself around, but you don't stop for even a moment as she struggles to reposition herself.<</narrate>>
<<say "kayla">>Oh my god. Holy fuck that feels so good.<</say>>
<<narrate>>You feel your orgasm building, sweat dripping from your body, you fall back on to the lounger in hope of being able to last a little longer.<</narrate>>
<<say "mc">>Get over here and ride my dick!<</say>>
<<narrate>>She grins at you and obliges.<</narrate>>
<<button "Continue" kaylasex>>
<<temp "car04">>
<</button>>
<<case "car04">>
<<vid "kayla/car04.mp4">>
<<narrate>>She bounces up and down on your cock, determined to deliver you to climax.<</narrate>>
<<say "kayla">>Oh fuuuck, oh my god. Ohhh, yeah.<</say>>
<<narrate>>As the clap of your bodies slapping against each other echoes through the hills you feel your pleasure build beyond its limits.<</narrate>>
<<say "kayla">>Fuck me, fuck me. Holy fuck!<</say>>
<<narrate>>She doesn't stop as you explode inside her, your cum being messily tossed everywhere.<</narrate>>
<<set _u = $name.toUpperCase()>>
<<say "kayla">>Oh fuck, oh fuck, _u! YES!<</say>>
<<narrate>>She slumps back onto your chest.<</narrate>>
<<say "kayla">>Fuck that was good, and the audience made it even better.<</say>>
<<say "mc">>Wait, what audience?<</say>>
<<say "kayla">>Ha, I guess you were kinda busy. But a van pulled up to watch us.<</say>>
<<say "mc">>Who was it?<</say>>
<<say "kayla">>No clue.<</say>>
<<think "mc">>Huh, well, hope they enjoyed the show whoever it was.<</think>>
<<narrate>>The two of you lie together looking up at the clouds for a spell before sharing one last passionately kiss goodbye.<</narrate>>
<<button "Continue" gatewayb>>
<<lust "kayla" 5>>
<<like "kayla" 3>>
<<temp "">>
<<unlock "kayla" "car">>
<<set $kayla.sex = true>>
<<time 1>>
<</button>>
<<case "bakery01">>
<<set delete $active>>
<<narrate>>Falling to her knees, she sucks on your glans without breaking eye contact.<</narrate>>
<<vid "kayla/bakery01.mp4">>
<<say "kayla">>Mmm. Shove your cock into the back of my throat.<</say>>
<<narrate>>You start to respond, but are stopped short as she dives onto your cock; your head sliding over her tongue and deep into her throat.<</narrate>>
<<say "mc">>Get read—nnnngh yes!<</say>>
<<narrate>>She holds it for a moment, then comes up for air with a smile before slurping your dick back into her mouth with gusto.<</narrate>>
<<say "kayla">>Oh, fuck yes.<</say>>
<<if $replay == true || $tempvar2 == 'kaylabakerydone'>>
<center><<choices>>
<<button "Cum" kaylasex>>
<<temp "bakerycum">>
<</button>>
<<button "Titjob" kaylasex>>
<<temp "bakery02">>
<</button>>
<<button "Reverse Cowgirl" kaylasex>>
<<temp "bakery03">>
<</button>>
<<button "Cowgirl" kaylasex>>
<<temp "bakery04">>
<</button>>
<<button "Table Blowjob" kaylasex>>
<<temp "bakery05">>
<</button>>
<<button "Standing Sideways" kaylasex>>
<<temp "bakery06">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" kaylasex>>
<<temp "bakery02">>
<</button>>
<</if>>
<<case "bakery02">>
<<narrate>>Sliding your cock out of her mouth she wraps her tits around the shaft.<</narrate>>
<<vid "kayla/bakery02.mp4">>
<<say "kayla">>Fuck my tits.<</say>>
<<narrate>>You oblige, sliding your rod between her orbs as she presses them together.<</narrate>>
<<say "kayla">>Harder!<</say>>
<<narrate>>You grunt assent and redouble your efforts as you give her a preview of the pounding you're about to give her pussy.<</narrate>>
<<if $replay == true || $tempvar2 == 'kaylabakerydone'>>
<center><<choices>>
<<button "Cum" kaylasex>>
<<temp "bakerycum">>
<</button>>
<<button "Blowjob" kaylasex>>
<<temp "bakery01">>
<</button>>
<<button "Reverse Cowgirl" kaylasex>>
<<temp "bakery03">>
<</button>>
<<button "Cowgirl" kaylasex>>
<<temp "bakery04">>
<</button>>
<<button "Table Blowjob" kaylasex>>
<<temp "bakery05">>
<</button>>
<<button "Standing Sideways" kaylasex>>
<<temp "bakery06">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" kaylasex>>
<<temp "bakery03">>
<</button>>
<</if>>
<<case "bakery03">>
<<say "kayla">>I need your dick inside me, now!<</say>>
<<narrate>>You both quickly clear the prep table with gusto, tossing a tray of cupcakes aside. One hits $kayla.name and smears frosting on her back and thigh. Too cock-crazed to notice, she pushes you back onto the table and mounts you, leaning forward so you get a good look at her frosted ass.<</narrate>>
<<vid "kayla/bakery03.mp4">>
<<say "mc">>Best. Sticky buns. Ever.<</say>>
<<narrate>>She looks back at you. Her eye notices the frosting and she grins, scooping it onto her finger and licking it clean.<</narrate>>
<<say "kayla">>That's so fucking good!<</say>>
<<say "mc">>The cock or the frosting?<</say>>
<<narrate>>$kayla.name just moans in response as she rides you.<</narrate>>
<<if $replay == true || $tempvar2 == 'kaylabakerydone'>>
<center><<choices>>
<<button "Cum" kaylasex>>
<<temp "bakerycum">>
<</button>>
<<button "Blowjob" kaylasex>>
<<temp "bakery01">>
<</button>>
<<button "Titjob" kaylasex>>
<<temp "bakery02">>
<</button>>
<<button "Cowgirl" kaylasex>>
<<temp "bakery04">>
<</button>>
<<button "Table Blowjob" kaylasex>>
<<temp "bakery05">>
<</button>>
<<button "Standing Sideways" kaylasex>>
<<temp "bakery06">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" kaylasex>>
<<temp "bakery04">>
<</button>>
<</if>>
<<case "bakery04">>
<<narrate>>$kayla.name spins around and looks at you with a hunger.<</narrate>>
<<say "kayla">>Fuck me. <i>Now</i>.<</say>>
<<vid "kayla/bakery04.mp4">>
<<narrate>>Happy to oblige, you tense your core and begin pistoning up into her.<</narrate>>
<<say "kayla">>Ooooh fuck yes, fuck fuck fuuuck.<</say>>
<<narrate>>You pound her relentlessly as she leans forward placing her hands on your chest. Her nails dig into your pecs as she closes her eyes and gives in and cums on your dick.<</narrate>>
<<say "kayla">>Fuuuuuuck. FUCK. Yessss!<</say>>
<<if $replay == true || $tempvar2 == 'kaylabakerydone'>>
<center><<choices>>
<<button "Cum" kaylasex>>
<<temp "bakerycum">>
<</button>>
<<button "Blowjob" kaylasex>>
<<temp "bakery01">>
<</button>>
<<button "Titjob" kaylasex>>
<<temp "bakery02">>
<</button>>
<<button "Reverse Cowgirl" kaylasex>>
<<temp "bakery03">>
<</button>>
<<button "Table Blowjob" kaylasex>>
<<temp "bakery05">>
<</button>>
<<button "Standing Sideways" kaylasex>>
<<temp "bakery06">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" kaylasex>>
<<temp "bakery05">>
<</button>>
<</if>>
<<case "bakery05">>
<<say "mc">>How about a cannoli?<</say>>
<<narrate>>Panting from her climax, $kayla.name can only look at you and salivate.<</narrate>>
<<narrate>>In one smooth motion you lift her off you, stand, and lie her on the table with her head hanging off the end. She looks up at you as you stand at her head and slide your cock into her throat.<</narrate>>
<<vid "kayla/bakery05.mp4">>
<<say "mc">>Mmmmm God that's good!<</say>>
<<narrate>>Fucking her face for a moment, you give her moments to breathe between each set of thrusts. $kayla.name rubs her pussy furiously as she sucks on your dick trying to extract your cream.<</narrate>>
<<if $replay == true || $tempvar2 == 'kaylabakerydone'>>
<center><<choices>>
<<button "Cum" kaylasex>>
<<temp "bakerycum">>
<</button>>
<<button "Blowjob" kaylasex>>
<<temp "bakery01">>
<</button>>
<<button "Titjob" kaylasex>>
<<temp "bakery02">>
<</button>>
<<button "Reverse Cowgirl" kaylasex>>
<<temp "bakery03">>
<</button>>
<<button "Cowgirl" kaylasex>>
<<temp "bakery04">>
<</button>>
<<button "Standing Sideways" kaylasex>>
<<temp "bakery06">>
<</button>>
<</choices>></center>
<<else>>
<<button "Continue" kaylasex>>
<<temp "bakery06">>
<</button>>
<</if>>
<<case "bakery06">>
<<narrate>>You stride to the other end of the table and pull $kayla.name to you. Your dick slides effortlessly into her dripping cunt.<</narrate>>
<<say "mc">>That's it; take my cock.<</say>>
<<vid "kayla/bakery06.mp4">>
<<narrate>>$kayla.name grins and pivots, bringing her legs together as you fuck her sideways.<</narrate>>
<<say "mc">>Fucking hell that's a good pie!<</say>>
<<say "kayla">>Oh fuuuck!<</say>>
<<narrate>>The new sensation of her thighs against your cock quickly propels you toward your climax. $kayla.name grins up at you.<</narrate>>
<<say "kayla">>Mmm I can feel you pulsing; you're about to cum, aren't you?<</say>>
<<narrate>>You don't respond as your base instincts have full control of you.<</narrate>>
<<set $tempvar2 = 'kaylabakerydone'>>
<center><<choices>>
<<button "Cum" kaylasex>>
<<temp "bakerycum">>
<</button>>
<<button "Blowjob" kaylasex>>
<<temp "bakery01">>
<</button>>
<<button "Titjob" kaylasex>>
<<temp "bakery02">>
<</button>>
<<button "Reverse Cowgirl" kaylasex>>
<<temp "bakery03">>
<</button>>
<<button "Cowgirl" kaylasex>>
<<temp "bakery04">>
<</button>>
<<button "Table Blowjob" kaylasex>>
<<temp "bakery05">>
<</button>>
<</choices>></center>
<<case "bakerycum">>
<<say "kayla">>Ohh give it to me!<</say>>
<<narrate>>You can only grunt in response as you get a few final strokes in before pulling her off the table and onto her knees.<</narrate>>
<<vid "kayla/bakerycum.mp4">>
<<narrate>>You blast off; your load coating her tits and face as you gasp for air.<</narrate>>
<<narrate>>$kayla.name smiles and looks up at you with a streak of cum running down her cheek.<</narrate>>
<br><br>
<<block "kayla/bakerycum.jpg">>
<<say "mc">>You turned into a maniac, holy shit.<</say>>
<<say "kayla">>And you love it.<</say>>
<<narrate>>She licks her lips, capturing and swallowing some of the cum on her face.<</narrate>>
<<say "kayla">>This was amazing! Too bad nobody caught us!<</say>>
<<say "mc">>We can always try again.<</say>>
<<say "kayla">>Absolutely, but maybe not now? I think I need to recover.<</say>>
<<set _where = "househub">>
<<if $tempvar3 == "cover">>
<<set _where = $return>>
<</if>>
<<button "Continue" _where>>
<<unlock "kayla" "bakery01">>
<<set $kayla.sex = true>>
<<lust "kayla" 5>>
<<like "kayla" 5>>
<<set _arr = ['bakery']>>
<<cover "kayla" _arr>>
<<if $tempvar3 == "cover">>
<<if $replay == false && $krissy.relief == 1>>
<<set $krissy.events.relief++>>
<<corrupt "krissy" 2>>
<<lust "krissy" 1>>
<</if>>
<<set $scene = 0>>
<</if>>
<<if $kayla.events.bakevisit == undefined>>
<<event "kayla" "bakevisit">>
<</if>>
<<set $tempvar3 = "">>
<<time 2>>
<</button>>
<</block>>
<</switch>><<tracker "kayla">>
<<if $kayla.bimbo == true && $kayla.events.bakevisit == undefined>>
<<step "No bimbofied substory content yet." "Return her to her original form at Gateway B">>
<<elseif $mc.events.kaylagone == "no">>
<<step "Left offworld" "You decided to leave her offworld. Follow the main story tasks should you wish to change your mind.">>
<<elseif $kayla.events.her == undefined>>
<<step "Find out more about her." "Talk to her, about her.">>
<<elseif $kayla.events.baking == undefined>>
<<step "Talk to her about her hobbies." "Ask her about baking.">>
<<elseif $kayla.lust < 10>>
<<step "She doesn't desire you enough." "10 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.">>
<<elseif $kayla.lustlvl == 0>>
<<step "Check up on her at night." "Sneak around and peep on her before bed.">>
<<elseif $kayla.events.bake == undefined>>
<<step "Bake." "Try to bake in the kitchen.">>
<<elseif $kayla.like < 20>>
<<step "She doesn't like you enough." "20 needed. Some ways to increase like.<br>Discuss available topics.<br>Make small talk.<br>Watch TV with her.">>
<<elseif $kayla.lust < 25>>
<<step "She doesn't desire you enough." "25 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.<br>Peep on her.">>
<<elseif $tasks.bakehow != undefined>>
<<step "Learn how to use the oven." "Ask her how to use the oven while in the kitchen.">>
<<elseif $kayla.lustlvl == 1>>
<<step "Oral Favors $kayla.oral/3" "<b>Where?</b><br>Invite her to your room<br>Bake with her<br>Visit her room at night<br>Visit her in the office">>
<<elseif $totalattractiveness < 5 && $kayla.events.txtbake == undefined>>
<<step "Your hub isn't attractive enough." "Build or upgrade facilities to make your hub more attractive.">>
<<elseif $kayla.events.txtbake == undefined>>
<<step "Wait on her." "Nothing to do but wait.">>
<<elseif $kayla.events.hubbake == undefined>>
<<step "Discuss her idea." "Talk to her about baking for others.">>
<<elseif $buildings.bakery == undefined>>
<<step "Research & build a bakery." "Assign someone to work the bakery project in the monitoring station, then after assign someone to build it in the construction facility.">>
<<elseif $kayla.lust < 40>>
<<step "She doesn't desire you enough." "40 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.<br>Peep on her.<br>Get a blowjob.<br>Bake for her.">>
<<elseif $kayla.events.bakevisit == undefined>>
<<step "Visit her at the bakery." "Assign her to work at the bakery then visit her there.">>
<<else>>
<<movielist kayla>>
<</if>>
<</tracker>><<set $scene = 0>>
<<if $location == "home" && $currentlocations.kenna == "krissyhome">>
<<set $location = "krissyhome">>
<</if>>
<<if $tasks.councilmsg != undefined>>
<<scene>>
<<narrate>>You knock on her bedroom door and let yourself in. She shouts from another room.<</narrate>>
<<say kenna "" "(Shouting)" "shout">>I'm in the bathroom, who's there?<</say>>
<<say mc "" "(Shouting)" "shout">>$name... I need to talk to you.<</say>>
<<say kenna "" "(Shouting)" "shout">>Come on in.<</say>>
<<if $krissy.events.kenna == "friends">>
<<narrate>>You hesitate for a moment.<</narrate>>
<<say kenna "" "(Shouting)" "shout">>Don't worry, I'm not naked.<</say>>
<<else>>
<<think mc>>Now that's an invite!<</think>>
<</if>>
<<left2 "kenna/bathroom01.jpg">>
<<say kenna>>I've just drawn a bath, a few minutes later, and you'd have found me in the tub.<</say>>
<<if $krissy.events.kenna != "friends">>
<<say mc>>Should I come back in a few minutes?<</say>>
<<narrate>>She chuckles and playfully pushes at your shoulder.<</narrate>>
<<else>>
<<say mc>>Sorry, I can come back later if you want.<</say>>
<<say kenna>>Don't worry about it. I'm more than happy to be here with you.<</say>>
<<narrate>>You try to ignore the fact she's biting her lip when she says that.<</narrate>>
<<think mc>>Just friends, $name... just friends!<</think>>
<</if>>
<<say kenna>>It's gonna be a long day, so I wanted to get a nice relaxing bath before going to meet $founder.name.<</say>>
<<say mc>>So, I wanted to—<</say>>
<<say kyler "" "(Shouting)" "shout">>Yoohoo, $kenna.name, you in here?<</say>>
<<say kenna "" "(Shouting)" "shout">>Bathroom!<</say>>
<<think mc>>Shit, I kinda wanted to talk to $kenna.name in private.<</think>>
<<narrate>>$kyler.name walks in and regards you before looking to $kenna.name.<</narrate>>
<<say kyler>>Well, this looks like a lot of fun... and kinda fits in with what I wanted you for.<</say>>
<<narrate>>She runs her hand over your chest, smirks at you, then looks over at $kenna.name.<</narrate>>
<<say kenna>>So, what did you want, $kenna.calls?<</say>>
<<think mc>>Shit, I don't want to make a big thing of it, if I ask $kyler.name to leave, she might start questioning why, or check in with someone if something is going on which may alert $founder.name. Fuck, I'll just have to hope I can catch her later.<</think>>
<<say mc>>Oh, it's not that important. You two have your fun and I'll catch up with you later.<</say>>
<<say kyler>>Oh, you'll be the first to know when we're ready to have our fun.<</say>>
<<narrate>>She licks her lips and gives you a wink.<</narrate>>
<<think mc>>Okay, now I'm intrigued by that...<</think>>
<<cont $return "" 0.5>>
<<run overrideSchedule("kenna", 0, 24, "")>>
<<unavailable "kenna">>
/*
<<say kyler>>Looks like I have a bit of catching up to do!<</say>>
<<narrate>>She starts undressing.<</narrate>>
<<say mc>>Wait, $kyler.name, I've—<</say>>
<<narrate>>$kenna.name holds her finger to your mouth.<</narrate>>
<<say kenna>>Shhh, it's not exactly what we were planning, but you're here now, so may as well enjoy it, huh?<</say>>
<<narrate>>You look at them skeptically.<</narrate>>
<<left2 "kenna/bathroom02.jpg">>
<<say kyler>>Ahh, that feels better. So much more free.<</say>>
<<think mc>>Damn... things are certainly looking up.<</think>>
<<say mc>>What exactly have you two been planning?<</say>>
<<narrate>>They look at each other and grin. $kyler.name places her arms around $kenna.name and gives you a wink.<</narrate>>
<<say kyler>>Just a little fun...<</say>>
<<left2 "kenna/bathroom03.jpg">>
<<if $krissy.events.kenna == "friends">>
<<think mc>>I thought I'd make it clear to $kenna.name that I didn't want to be anything more than friends...<</think>>
<</if>>
<<narrate>>$kyler.name grabs your hand and ushers you into the bedroom.<</narrate>>
<<say kyler>>Come, let me show you what I had $ember.name make for me... for us.<</say>>
<<narrate>>At the foot of the bed is a simple machine, a motor attached to a long pole with a dildo on the end.<</narrate>>
<<think mc>>Ah...<</think>>
<<narrate>>$kyler.name sits on the edge of the bed holding the dildo.<</narrate>>
<<say kyler>>Wanna see how it works?<</say>>
<<if $krissy.events.kenna == "friends">>
<<think mc>>I mean, yes, absolutely, but I can't lead $kenna.refer on like that.<</think>>
<<say mc>>I need to go.<</say>>
<<narrate>>As you're hurrying away, you hear $kyler.name trying to console $kenna.name.<</narrate>>
<<say kyler>>Sorry, $kenna.name, I guess he really doesn't wanna cross that line.<</say>>
<<else>>
<<say mc>>I wouldn't mind watching a demonstration...<</say>>
<<say kenna>>I think we can make that happen.<</say>>
<<narrate>>She brushes past you from the bathroom and stands beside $kyler.name<</narrate>>
<<center "kenna/bathroom04.jpg">>
<<think mc>>A lesbian show... huh?<</think>>
<div id="replace">
<<choices>>
<<link "Watch" kennasex>>
<<temp "kyler">>
<</link>><br>
<<link "Leave">>
<<replace "#replace">>
<<say mc>>You girls have your fun, but unfortunately I have somewhere I need to be.<</say>>
<<narrate>>The two of them look disheartened.<</narrate>>
<<say kyler>>You'll miss out on all the wet, hot, sticky fun!<</say>>
<<say mc>>I know... but needs must.<</say>>
<<narrate>>She shrugs.<</narrate>>
<<say kyler>>Your loss.<</say>>
<<cont $return "" 0.5>>
<<run overrideSchedule("kenna", 0, 24, "")>>
<<unavailable "kenna">>
<</replace>>
<</link>><br>
<<link "Stop it">>
<<replace "#replace">>
<<say mc>>For fuck's sake. I don't wanna watch that!<</say>>
<<narrate>>$kenna.name looks at you solemnly.<</narrate>>
<<say kyler>>Really, $name, we both know that's a lie.<</say>>
<<say kenna>>It's fine, $kyler.name. $name, just go. We'll talk later.<</say>>
<<narrate>>As you're hurrying away, you hear $kyler.name trying to console $kenna.name.<</narrate>>
<<say kyler>>And we were doing this for him too! He can be a jerk sometimes.<</say>>
<<say kenna>>I know, but if he's not into it, then that's that.<</say>>
<<say kyler>>Sure, sure, but he could have handled it a bit better.<</say>>
<<think mc>>Shit, yeah, I guess I was a bit rude.<</think>>
<<cont $return "" 0.5>>
<<run overrideSchedule("kenna", 0, 24, "")>>
<<unavailable "kenna">>
<</replace>>
<</link>>
<</choices>>
</div>
<</if>>
*/
<<elseif $krissy.events.kenna == "lied" && $kenna.events.cosy == 2>>
<<scene>>
<<set _img = getImg('kenna')>>
<<left2 _img>>
<<say kenna>>You see what's she's doing, right?<</say>>
<<say mc>>Who?<</say>>
<<say kenna>>Mom! She's trying to prevent us spending any time together. She might not know we're fucking, but she's still interfering.<</say>>
<<say mc>>I think it's just coincidence.<</say>>
<<say kenna>>No. It's not. You've got a choice to make. We make a statement, you fuck me, good and proper, publicly. Let's really show her we'll do what we want. Or, you chose her, and we don't fuck anymore.<</say>>
<<say mc>>But... I don't think...<</say>>
<<say kenna>>Make the choice. I can't keep pretending everything's okay when it's not.<</say>>
<<think mc>>Shit... I think she's right, though. $krissy.refer is gonna keep at it. She warned us as such, and me lying to tell her we'd call it off hasn't really changed anything.<</think>>
<div id="replace">
<<choices>>
<<link "Call it off with $kenna.name">>
<<replace "#replace">>
<<say mc>>I can't do it, I'm not ready. It would destroy her...<</say>>
<<say kenna>>Oh, she got her claws in you good. That fucking bitch!<</say>>
<<say mc>>No, it's no like that, we just need more time!<</say>>
<<say kenna>>Time only fucking works in her favor. You know that. You know she'll never let us be together. I'm not willing to be toyed with, or kept as a dirtty litle secret.<</say>>
<<say mc>>No, please, listen.<</say>>
<<narrate>>You see the anger in her eyes growing.<</narrate>>
<<say kenna>>That fucking bitch. I'll fucking—<</say>>
<<narrate>>She stops herself, gives you one last look of disgust, then zoops away.<</narrate>>
<<think mc>>Fuck, please tell me she's not gone for good...<</think>>
<<button "Continue" $return>>
<<like "kenna" -20>>
<<event kenna upset>>
<<unavailable kenna>>
<<set delete $krissy.locked>>
<<set $krissy.events.kenna = "friends">>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<link "Make your relationship public">>
<<replace "#replace">>
<<say mc>>You're right... she's not gonna stop.<</say>>
<<say kenna>>So, you're ready to come out of the shadows?<</say>>
<<say mc>>Yeah... a performance at $stripname ought to do it, right?<</say>>
<<say kenna>>And then some!<</say>>
<<say mc>>I don't like the idea of shoving it in her in face like that, but she's really leaving us no other choice. Any time we're together in the hotel, she interrupts us!<</say>>
<<say kenna>>Ugh. She's coming now. I'll talk to you later.<</say>>
<<narrate>>$kenna.name walks off. $krissy.name smiles at you as she walks past.<</narrate>>
<<think mc>>I guess she doesn't need to stop us now $kenna.refer's gone.<</think>>
<<button "Continue" $return>>
<<event "kenna" "cosy" 3>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<elseif $krissy.events.kenna == "lied" && checkUnlocks('movie', 'gembed', 'kenna') == false && $kenna.gembed == undefined && getRawLocation('krissy') != "bedrooms">>
<<choices "Take her to $krissy.name's Room?">>
<<link "Yes" kennasex>>
<<temp "gembed">>
<</link>><br>
<<link "Later" kenna>>
<<set $kenna.gembed = true>>
<</link>>
<</choices>>
<<elseif $location != $currentlocations.kenna && $location != "firstIntros" && $replay == false>>
<<say "kenna">>Sorry, $kenna.calls, I need to get a motor on.<</say>>
<<follow kenna>>
<<button "Continue" $return>>
<</button>>
<<else>>
<<set _img = getImg('kenna')>>
<<block _img>>
<<set _bed = false>>
<<if $tempvar == "annoyedflirt">>
<<say kenna>>No. Don't do that. You don't get to casually flirt with me after you rejected me.<</say>>
<<say mc>>I didn't mean anything by it, I was just—<</say>>
<<say kenna>>You don't toy with someone's emotions like that. So unless you were admitting the reject was a mistake, stop.<</say>>
<<event kenna upset 3>>
<<like "kenna" -1>>
<<elseif $tempvar == "badflirt" || $tempvar == "semibadflirt">>
<<if $krissy.events.kenna == "taboo" && checkUnlocks('movie', 'gembed', 'kenna') == false>>
<<say kenna>>You know what would be really hot?<</say>>
<<say mc>>Go on...<</say>>
<<say kenna>>Fucking in mom's bed... a little revenge for what she put us through.<</say>>
<<set _bed = true>>
<<elseif $kenna.sex > 0>>
<<corruptmax "kenna" 1000>>
<<say kenna>>Mmh, you're so nasty, I love it!<</say>>
<<lust kenna 2>>
<<else>>
<<narrate>>She grins from ear to ear.<</narrate>>
<<say "kenna">>I'm not sure you really understood what you just said. Mother wouldn't be pleased!<</say>>
<</if>>
<<elseif $kenna.corruptmax < 40>>
<<narrate>>When she notices you, her demeanor seems to change and she almost becomes more playful.<</narrate>>
<<say "kenna">>Hey $kenna.calls, wanna hang?<</say>>
<<else>>
<<say "kenna">>There's my hunky $kenna.calls! What's up?<</say>>
<</if>>
<<if $krissy.events.kenna == "lied" && checkUnlocks('movie', 'gembed', 'kenna') == false && getRawLocation('krissy') == "bedrooms">>
<<think mc>>$krissy.refer is in her room at the minute, otherwise I'd be dragging there $kenna.refer there. $krissy.refer really pissed me off.<</think>>
<</if>>
<<choices "What do you want to discuss?" "topics">>
<</choices>>
<</block>>
<</if>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("kennadiscussions").processText());
})
<</script>><<scene>>
<<set _img = getImg('kenna')>>
<<if $return == "mngkrissyhome">>
<<set $return = "krissyhome">>
<</if>>
<<switch $tempvar>>
<<case "rebecca">>
<<left2 _img>>
<<say mc>>So, something weird happened.<</say>>
<<say kenna>>When doesn't it? What happened this time?<</say>>
<<say mc>>I went to Prime again... and met Rebecca.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say kenna>>Another progeny? How did you get there?<</say>>
<<say mc>>Uh... no, I think she's like an AI or assistant or something. And I still don't know how I got there, but both times it happened while sleeping. Only this time $kenzie.name wasn't there.<</say>>
<<narrate>>You go on to describe what happened in Prime.<</narrate>>
<<say kenna>>I honestly don't know. I know very little about Prime. But $kenzie.name was furious about you going to Prime the first time, it was as if you'd tried to usurp her or something. Do you think you could get back there?<</say>>
<<say mc>>I don't know, I don't want to risk it given everything else that is going on.<</say>>
<<say kenna>>I understand. But something we should revisit. You know, though the gateway is back online it feels weird, like the network is directing us the wrong traffic.<</say>>
<<say mc>>$cassie.name mentioned the visitors seemed a little bewildered by some of the stuff we have here. Could it be anything to do with new sector?<</say>>
<<narrate>>She shoots you daggers.<</narrate>>
<<say kenna>>What do you mean new sector?<</say>>
<<say mc>>Apparently we're connected to a different sector now... I assumed you were aware.<</say>>
<<say kenna>>No... what the fuck. Are you sure? How do you know?<</say>>
<<narrate>>You go on to explain the hooded woman.<</narrate>>
<<say kenna>>And you're just telling me this now?! For fuck's sake $kenna.calls!<</say>>
<<say mc>>I just got caught up in the celebrations and wanted to lift morale.<</say>>
<<say kenna>>Fuck... a different sector. This is crazy. Sectors are set up to group worlds together that are of similar ideals and technology levels. It's certainly not a perfect system, but it stops travelers jumping to worlds stuck in the dark ages while they are sporting a pair of jeans for example. Pairing ideals is a bit more loose, but, well for example in our sector, fetishism and lust patrons aren't too uncommon, relatively speaking.<</say>>
<<say mc>>Wait, you're telling me I was in a sector specifically full of sex addicts?<</say>>
<<narrate>>She laughs.<</narrate>>
<<say kenna>>I don't know if I'd go that far, and that's certainly not the only grouping criteria, but that's the gist of it. Did you not find it odd New Eden was settled by so many like-minded individuals?<</say>>
<<say mc>>I guess I never thought about it.<</say>>
<<say kenna>>Well, whatever the reason, if we're in a new sector, it will be difficult for $kenzie.name or $founder.name to reach us here. I suspect this new progeny only managed to get away with it due to the circumstances created by $founder.name. Just, bear in mind the travelers coming through probably won't be like those you've previously met.<</say>>
<<say mc>>So my lust aspect will be less effective?<</say>>
<<say kenna>>Maybe. Your lust aspect simply greases the wheels, so to speak, it makes it easier to for someone to overcome their inhibitions and be more honest with their sexual desires. I have no idea what this sector is like, and it may be much the same, but there is every chance the people here will react very differently.<</say>>
<<say mc>>Right, I guess as always we just have to carry on.<</say>>
<<narrate>>You sigh.<</narrate>>
<<say mc>>Every time I think we're getting somewhere, apparently it's just someone else's turn to roll the dice with my life.<</say>>
<<say kenna>>Oh, stop being so dramatic. Let's worry about that once we find out what they want.<</say>>
<<say mc>>Yeah... I guess you're right.<</say>>
<<button "Continue" $return>>
<<taskdone "rebecca">>
<<if $completeTasks.includes('hooded') && $completeTasks.includes('rebecca') && $completeTasks.includes('newedencheck')>>
<<task "newsector">>
<</if>>
<<time 1.5>>
<</button>>
<<case "ownside">>
<<left2 "kenna/meet04.png">>
<<taskdone "pickingsides">>
<<narrate>>After revealing the plan, she just looks at you both dumbfounded for a moment.<</narrate>>
<<say kenna>>Are you INSANE?! You want to take on two of the most powerful beings I've ever met?<</say>>
<<say mc>>I know, it sounds crazy... but while they're busy fighting each other, I can put an end to everything!<</say>>
<<say kenna>>What arrogance... but if anyone can do it, it's you.<</say>>
<<say shalina>>Just imagine how much simpler things will be...<</say>>
<<narrate>>$kenna.name laughs out loud.<</narrate>>
<<say kenna>>SIMPLER?! You have no idea what goes into running a sector. I served on the council, and I barely know a fraction of what's required. The Equalizers really do all the heavy lifting.<</say>>
<<say mc>>So we need Fyodr on our side?<</say>>
<<say kenna>>And Salim. I suspect you could resist an Enforcer or two now, but a whole army of them? Not a chance.<</say>>
<<say mc>>How do we get their agreement, and quickly?<</say>>
<<say kenna>>$azul.name. She is unofficially the spokesman of the council. If there's to be a rebellion, everyone will fall behind her. The council have no loyalty to $kenzie.name. Until recent events, she rarely even participated in... well anything!<</say>>
<<say mc>>So they might enjoy a competent leader?<</say>>
<<say kenna>>That's where it's tricky. There isn't meant to be a single leader, but given how councils are set up, the progeny becomes the de facto leader. But, I just can't imagine they'd follow you.<</say>>
<<say shalina>>Why not? If he shows his power; shows that he can take on the other two?<</say>>
<<say kenna>>If you want a meteoric rise to power, I suggest you slow it down. You've connected to Prime, position yourself instead as a replacement to $kenzie.name that will work alongside everyone else, instead of acting selfishly, like her.<</say>>
<<say mc>>That's fine by me, providing we end their petty squabbles and keep everyone safe. That's the only reason I'm doing this.<</say>>
<<say kenna>>It's wild. Crazy even. If you pull this off, I have no idea how other progeny will react, but I daresay it won't be good.<</say>>
<<say mc>>It's gotta be better than being pulled between sides constantly.<</say>>
<<say kenna>>We don't have much time, I'll try and get the council on your side while you pretend to play nice with $kenzie.name. The least risky method is to contact her in your dreamscape.<</say>>
<<say mc>>Alright. We can do this! I'll contact her tonight.<</say>>
<<say kenna>>Good, now, what do we tell her... there are two progeny coming that are meant to be distraction. During that time she'll waltz on into Central, dispatching the few that remain, while I disable the network. I suspect your job will be to distract $kp.name and/or $azul.name.<</say>>
<<say mc>>Suspect? You don't know the full plan?<</say>>
<<say kenna>>Unfortunately, she only shares what she wants or needs to. So, I think we tell $kenzie.name she's trying to leverage you to make me do that; that the two progeny are distractions. However, I suspect if $kenzie.name isn't there to greet the progeny, $founder.name won't move ahead with her plan.<</say>>
<<narrate>>She looks pensive.<</narrate>>
<<say kenna>>Given how long she's been planning this, I daresay she has various contingency plans. But I can't imagine she's planned for you being so... bold!<</say>>
<<say mc>>Okay, so we need $kenzie.name to greet the progeny still so $founder.name launches her attack. So how do we use that?<</say>>
<<say shalina>>Would the rest of the council be able to withstand $founder.name while Fyodr re-calibrated the network?<</say>>
<<say kenna>>You want me to divert the network's power to $name while she's distracted by... well, her own distraction?<</say>>
<<say shalina>>Yes. This way, you appear to be helping both. You follow on $founder.name's plan, but "fail" to distract the other members, slowing down her assault. Meanwhile, $kenzie.name is out of the picture, no doubt livid, because she can't join the fray.<</say>>
<<say mc>>What if she returns before you do whatever you have to do?<</say>>
<<say kenna>>We're dead. All of us. So you better be damn well sure this is what you want to do. I'll risk everything for you. Risking <b>your</b> life like this goes against ever fiber of my being, but I can see the determination in your eyes. If I don't help you, you may do something even more stupid.<</say>>
<<say shalina>>If she thinks the council are back there defending her main assault, she should play her part, surely?<</say>>
<<say kenna>>Most likely... yeah. There's a risk in everything, and I'll zoop you away if I see anything out of place.<</say>>
<<say mc>>Okay, well, it's finally time to stop being the puppet! We've got this.<</say>>
<<button "Continue" househub>>
<<task "astradream">>
<<time 2>>
<</button>>
<<case "fouderplan">>
<<say kenna>>Everything go smoothly?<</say>>
<<say mc>>Yeah...<</say>>
<<say kenna>>Did she give you any more details? She told me the time, but nothing new on what she plans beyond that.<</say>>
<<say mc>>I am to fuck $azul.name to keep her distracted. Apparently her joining the fray is dangerous. You're keeping $kp.name on the hub while you disable the network.<</say>>
<<say kenna>>Okay, so how do we get this info to $kenzie.name?<</say>>
<<if $totalpower <= 150>>
<<say mc>>We don't. We follow $founder.name's plan.<</say>>
<<narrate>>She furrows her brow.<</narrate>>
<<say kenna>>Why?<</say>>
<<say mc>>It was always my plan to deceive $kenzie.name and side with $founder.name, but I couldn't tell you for your safety.<</say>>
<<say kenna>>But we told her what $founder.name plans!<</say>>
<<say mc>>We did... but now she's waiting on us so she can prepare effectively. We simply have to misinform her.<</say>>
<<say kenna>>More distractions. At this stage I'm wondering what part of the plan is actually real!<</say>>
<<say mc>>Her marching through to Prime while everyone else is distracted.<</say>>
<<narrate>>She looks at you skeptically.<</narrate>>
<<say kenna>>And this was always your plan?<</say>>
<<think mc>>I... that's not what I remember, but it's definitely what the plan was...<</think>>
<<narrate>>While you feel conflicted, you're unable to do anything other than agree. You nod.<</narrate>>
<<think kenna>>Has he been manipulated? How would I know? Fuck. Given what I've done, and what I've kept from him all this time, he could damn well be telling the truth. But what if he just wasn't powerful enough to resist her?<</think>>
<<say mc>>Is everything okay? You're just stood staring at me.<</say>>
<<say kenna>>Yeah... just trying to figure some stuff out.<</say>>
<<think kenna>>I hate to admit it, but if anyone can work it out, it's mom.<</think>>
<<say kenna>>Can you do me a favor? Can you visit mom before we leave, please?<</say>>
<<say mc>>Why?<</say>>
<<say kenna>>Just tell her everything about the plan. Recount as much detail as you can. I think she should know.<</say>>
<<say mc>>Uhh, sure. Okay.<</say>>
<<think kenna>>And I hope that she'll be able to work out if he's been manipulated. I know $kenzie.name would be able to tell if he was under her influence, but what if he's not? And she'd only be able to tell for a short period after she used it.<</think>>
<<say mc>>You're just staring at me again.<</say>>
<<say kenna>>Just thinking about how she's gonna react. Remember, she's a genius, she'll be able to piece it together herself once you start explaining, but please give her the detail regardless.<</say>>
<<say mc>>Alright...<</say>>
<<if getCurrentLocation('krissy') == "Unknown">>
<<think mc>>I don't even know where she is right now, after the stuff happening between me and $kenna.refer, $krissy.refer got kinda pissed and stormed off. I don't doubt she'll return, but I'd be surprised if I see her today.<</think>>
<</if>>
<<task "mommabear">>
<<else>>
<<say mc>>The plan is you keep $kp.name here, right? What if you don't. What if she acts as messenger? If I suddenly take a nap or disappear now, $founder.name will be suspicious.<</say>>
<<say kenna>>I doubt she's clued in on everything. $kenzie.name has a lot of pride, she wouldn't want to show weakness.<</say>>
<<say mc>>Well, it's this or she doesn't get the info she needs. I can tell $azul.name once things start, but that may be too late.<</say>>
<<say kenna>>I don't know if I can get $kp.name back to Central unnoticed.<</say>>
<<if $girlsavailable.includes('kayla')>>
<<say mc>>What about $kayla.name? She's sort of a wildcard, but she can go to Prime, so presumably she can go to Central?<</say>>
<<say kenna>>$kenzie.name will be pissed off if you include her daughter in all this.<</say>>
<<say mc>>I don't get that woman!<</say>>
<<say kenna>>She's prideful. Showing any weakness, especially to her family, is as bad as a knife through the heart to her.<</say>>
<<say mc>>What is with those fucked up values?<</say>>
<<narrate>>She shrugs.<</narrate>>
<<say mc>>Well, maybe she can at least offer some advice on how we get $kp.name back there unnoticed, even if she's not the messenger herself.<</say>>
<<say kenna>>Maybe, I'll speak to her.<</say>>
<<event "mc" "founderplan" "kayla">>
<<else>>
<<say mc>>I think we need to take the risk.<</say>>
<<say kenna>>Shit, I hope we can pull this off.<</say>>
<<event "mc" "founderplan" "kp">>
<</if>>
<</if>>
<<cont "househub" "" 0.5>>
<<case "elope">>
<<left2 _img>>
<<say mc>>Lets do it.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say kenna>>Do what?<</say>>
<<say mc>>Elope. Let's go. You and me.<</say>>
<<say kenna>>Are you certain? We'll leave the council, $voice.name, $founder.name, everyone to their own thing. We'll go live somewhere else for the rest of our days, just us. We won't be able to take mom, or anyone else, with us.<</say>>
<<say mc>>Wait, why not?<</say>>
<<say kenna>>You and I are powerful enough to travel without a gateway. Even mom can't do that.<</say>>
<<narrate>>You hesitate for a moment...<</narrate>>
<div id="replace">
<<notice>>This is an extremely important decision that completely changes how the story progresses.<</notice>>
<<choices "Are you sure you want to do this?">>
<<link "Yes">>
<<replace "#replace">>
<<say mc>>I'm sure if we explain it they'll understand... it's for everyone's safety. Not just yours. If I continue to be here, to be with my companions, I continue to put them in danger.<</say>>
<<say kenna>>We might never get to see them again...<</say>>
<<say mc>>I know, and I can say that deeply troubles me, but it's just best for everyone.<</say>>
<<say kenna>>Then we need to act fast... we don't have time to say goodbye properly. It will raise too much suspicion, and frankly, if mom finds out, she will have $kp.name stop us.<</say>>
<<say mc>>Then we leave them a note and leave without at trace... where will we go?<</say>>
<<say kenna>>Before we do anything, we need to ensure you can even travel. You somehow got to Prime; can you do that again?<</say>>
<<say mc>>I can try...<</say>>
<<say kenna>>Not now. Try tonight when everyone is sleeping. Until then, act normal.<</say>>
<<set $checkpoint = Save.base64.save()>>
<<set $side = "elope">>
<<taskfail "pickingsides">>
<<taskfail "founderdeadline">>
<<cont $return "" 2>>
<</replace>>
<</link>><br>
<<link "On second thought..." $return>>
<</link>>
<</choices>>
</div>
<<case "elope2">>
<<narrate>>You focus your thoughts, trying to think back to the feeling from the last time you arrived in Prime.<</narrate>>
<<think mc>>I just felt confusion... I didn't mean to travel there, it wasn't conscious... shit can I do this?<</think>>
<<narrate>>Your thoughts start spiraling, you close your eyes and try to clear your mind.<</narrate>>
<<think mc>>Nothing is happening... no, keep trying, don't let the doubt take hold.<</think>>
<<narrate>>You feel $kenna.name grip your hand.<</narrate>>
<<think mc>>I can do this!<</think>>
<<say f "Inner Voice">>If this is truly what you want...<</say>>
<<narrate>>Your vision blurs, and an array of lights dance and swirl before you.<</narrate>>
<<vid "dreams/network.mp4">>
<<say mc>>What is this?<</say>>
<<say f "Inner Voice">>This is the sector. Every light represents a hub world. Focus not on the circling lights, but look around you, countless worlds, countless sectors. You are but a spec in a vast and unfathomable multiverse.<</say>>
<<say mc>>Which one is prime?<</say>>
<<say f "Inner Voice">>Focus further, beyond what you see, your perception of dimensions is incomplete. Prime is not here, you can not see it with your current mindset. You need to think of it beyond the realms of space and time as you know it.<</say>>
<<say mc>>That's not knowledge or understanding I can hope to gain so quickly.<</say>>
<<say f "Inner Voice">>No, but perhaps you can find it by instinct. If you are unable to see beyond the dimensions you have confined yourself too, instead focus on the connections between these sectors, study as the energy ebbs and flows to a central point... to Prime.<</say>>
<<vid "dreams/prime.mp4">>
<<say f "Inner Voice">>Good, good, you're starting to feel it. Focus on that. Follow that feeling.<</say>>
<<say mc>>Yes... that's it, I can feel the tug, I need to follow the stream.<</say>>
<<say f "Inner Voice">>Good luck, $name.<</say>>
<<narrate>>The light shows fade, you feel a gush of wind sweep across your face and you open your eyes.<</narrate>>
<<cont "kennaanswers" "elope3">>
<<case "elope3">>
<<narrate>>You're in a room, filled with strange and alien furniture. Light dance across the walls, but there are no doors or windows. You look around frantically for $kenna.name, but she is not with you.<</narrate>>
<<say mc>>Where the fuck am I?<</say>>
<<timed 4s>>
<<say "robo" "???">>Good evening, sir.<</say>>
<<say mc>>What the fuck, who's there?<</say>>
<<say "robo" "???">>I did not mean to startle you, sir. I am Rebecca, your assistant.<</say>>
<<say mc>>My assistant? What is going on, where are you?<</say>>
<<say "robo" "Rebecca">>I am software, sir, I am not anywhere, at least not physically.<</say>>
<<say mc>>And this is Prime?<</say>>
<<say "robo" "Rebecca">>Yes, sir.<</say>>
<<say mc>>I made it!<</say>>
<<say "robo" "Rebecca">>That you did, sir.<</say>>
<<say mc>>But why here, why with you?<</say>>
<<say "robo" "Rebecca">>I can not answer that, sir.<</say>>
<<say mc>>And the progeny, do they know I am here?<</say>>
<<say "robo" "Rebecca">>No, sir.<</say>>
<<say mc>>Can I travel anywhere I want from here?<</say>>
<<say "robo" "Rebecca">>Yes, sir, though the serving progeny will be aware of wherever you travel to.<</say>>
<<say mc>>What do you mean?<</say>>
<<say "robo" "Rebecca">>If you connect to a new sector, someone of your power will not go unnoticed.<</say>>
<<say mc>>But that's the plan, $kenna.name and I to elope somewhere remote, somewhere nobody would ever find us.<</say>>
<<say "robo" "Rebecca">>Then I suggest we relocate this structure to a remote part of Prime. I can ensure nobody stumbles upon your location.<</say>>
<<say mc>>What, how?<</say>>
<<say "robo" "Rebecca">>Prime has many cities, but this realm is vast and near limitless. Most of it is unexplored, untouched, and of no interest to its denizens.<</say>>
<<say mc>>But I was told only the progeny can come here? And apparently me... how would $kenna.name get here?<</say>>
<<say "robo" "Rebecca">>You are far beyond a progeny, sir. If you have yet to understand this, I can assist. Please, focus your energies on her, and I will open the doorway.<</say>>
<<narrate>>Though a little skeptical, you do so. After a moment of silence, the air besides you seems to swirl and howl for a moment before $kenna.name appears with a startled expression.<</narrate>>
<<left2 "kenna/noback01.png">>
<<say kenna>>What is this place... where am— $name! Oh, thank the gods!<</say>>
<<narrate>>She embraces you tightly.<</narrate>>
<<say kenna>>I was so worried. How did you do this, where are we?<</say>>
<<say mc>>We're in Prime... no one will find us here.<</say>>
<<narrate>>She looks confused.<</narrate>>
<<say kenna>>You brought us to Prime? $kenzie.name will find us!<</say>>
<<say "robo" "Rebecca">>Not at all, I've taken the necessary precautions. You are safe here for as long as you see fit. Nobody will find you.<</say>>
<<say kenna>>Who, or what the hell is that?<</say>>
<<say mc>>My assistant, apparently.<</say>>
<<say kenna>>I've heard $kenzie.name mention assistants before... but never anything more than passing comments. Wait, does this mean you're a progeny, $kenna.calls?<</say>>
<<say mc>>I don't think so, but maybe?<</say>>
<<say "robo" "Rebecca">>You are not a progeny, sir.<</say>>
<<say mc>>Then how can I be here?<</say>>
<<say "robo" "Rebecca">>Through your own power.<</say>>
<<say mc>>And that's it, we're forever safe? Could I not bring all my companions here in the same way then?<</say>>
<<say "robo" "Rebecca">>One moment.<</say>>
<<say kenna>>I just can't believe that I am here... that you can do this.<</say>>
<<say "robo" "Rebecca">>I've done a scan of your hub, sir, the people there aren't powerful enough to survive coming here.<</say>>
<<say mc>>Sorry, survive? You mean there was a risk $kenna.name could have died when I brought her here?!<</say>>
<<say "robo" "Rebecca">>Not at all sir. I wouldn't have aided you if that were the case.<</say>>
<<say kenna>>It doesn't matter. I'm here now. It's over... we're not part of anyone else's game. We can do whatever we want. Live however we want, and most importantly be together.<</say>>
<<say mc>>I feel a pit in the bottom of my stomach, a dark guilt that we left them behind, but I hope they can understand. I hope the note I left them helps alleviate their sadness.<</say>>
<<say kenna>>Grief never goes away, and perhaps one day we can reunite. But for now we have peace, and without you there, $founder.name, $kenzie.name and everyone else should take less interest in $hubname.<</say>>
<<cont "kennaanswers" "elopeend">>
<</timed>>
<<case "elopeend">>
<<script>>
setup.scriptpromise.then(function () {
$('#right-ui-bar').remove();
$('#story').css('margin-right', '0rem');
$('date, #tasktracker, #phonebutton').hide();
});
<</script>>
<<set $day = "???">>
<<set $end = true>>
<<left2 "kenna/bride01.jpg">>
<<epilogue "You have eloped with $kenna.name">>
Forsaking your hub and abandoning your loved ones you set out to make a new life in exile with $kenna.name.<br>
You expected to save all those you left behind from the constant threat you perceived yourself to attract.
<</epilogue>>
<<epilogue "A Life Together">>
Together, you and $kenna.name live out your lives with Rebecca providing for your every material need. There are good days, there are bad days, but overall you are happy together.
<</epilogue>>
<<epilogue "Blissful Ignorance">>
While the universe around you changes vividly, you see none of it. Cut off and isolated by your own making, the outcome of your actions, the effect it had on your companions or how it changed the fate of the Gateway network and the progeny never made it to your ears.
<</epilogue>>
<<epilogue "Timeless">>
As the years went by, boredom became increasingly problematic, though your every need met and your love for $kenna.name unchanged, an infinite, timeless world takes it toll on the mind.
<</epilogue>>
<<epilogue "Isolation">>
As the decades and centuries roll on, the two of you become increasingly dismissive, and under stimulated. Things become stale, not for a lack of love or desire, but simply due to a lack of change, and a lack of interaction with others.
<</epilogue>>
<<epilogue "Powerless">>
Trying to overcome the monotony of what your life has become, and deciding the risk of capture is worth it, you try to travel back to the hub. But alas, your powers have waned, and your connections to the worlds decayed. Prime has become your prison.
<</epilogue>>
<<epilogue "Emptiness">>
You feel increasingly empty as time goes by, your passion for life waning with every passing year. You think back to your early interactions with $shalina.name and her talk of patrons ceasing their own existence after hundreds or thousands of years of boredom.
<</epilogue>>
<<epilogue>>
Your choices have left you without any knowledge of what happened to your companions, the progeny, the hub, or anything.
<br>While your love for $kenna.name never wavered, it did not stop the boredom.
<br>You were never meant to be tied to one woman.
<</epilogue>>
<<button "Load Checkpoint">>
<<run Save.base64.load($checkpoint)>>
<<set $checkpoint = null>>
<<ending "elope">>
<<run Engine.show()>>
<</button>>
<<button "Load Save">>
<<run UI.saves()>>
<</button>>
<<button "Restart Game">>
<<run UI.restart()>>
<</button>>
<<notice>>A checkpoint was made just before you decided to elope.<</notice>>
<<case "elope4">>
<<say "robo" "Rebecca">>I sense something unhealthy in you, sir.<</say>>
<<say mc>>I'm just lamenting on what else there is... I love $kenna.name with all my heart but what more is there? Why do I continue to exist?<</say>>
<<say "robo" "Rebecca">>I thought this may happen, but at least now you understand for yourself.<</say>>
<<narrate>>You grunt and wave dismissively.<</narrate>>
<<say mc>>I can't even go into one of the cities... meet new people, meet just ANYONE!<</say>>
<<say "robo" "Rebecca">>I have never stopped you sir, I merely have informed you of the risks.<</say>>
<<say mc>>Yeah, yeah, yeah... I know. But at this stage maybe obliteration is worth the risk to fill this void within me.<</say>>
<<say "robo" "Rebecca">>Please give me a moment, sir.<</say>>
<<say mc>>Yeah, yeah, whatever.<</say>>
<<say "robo" "Rebecca">>Okay, I have arranged it. You may not recall all that happened here, but the feeling will stay with you. If this is truly what you want, you'll make the same decision again. Until we meet again, sir.<</say>>
<<say mc>>What are you talking about?<</say>>
<<narrate>>There's a gush of wind which causes you to wince and close your eyes.<</narrate>>
<<button "Open your eyes" kennaanswers>>
<<ending "elope">>
<<temp "elope5">>
<</button>>
<<case "elope5">>
<<say kenna>>You okay there, $kenna.calls? You seem disorientated.<</say>>
<<left2 "kenna/sit01.jpg">>
<<say mc>>I... think i was away with the fairies for a moment. It's like a wave of euphoria hit me, followed by guilt and eventual boredom and emptiness.<</say>>
<<say kenna>>I just had a similar feeling. Maybe it's an omen?<</say>>
<<say mc>>Maybe. What were we discussing?<</say>>
<<say kenna>>How to deal with $founder.name, we don't have much time left.<</say>>
<<say mc>>Yeah... leave it with me, I just need to shake this feeling away first.<</say>>
<<set $side = "">>
<<say kenna>>Get some rest, you can make your decision in the morning.<</say>>
<<button "Sleep" "sleep">>
<<task "pickingsides">>
<<task "founderdeadline">>
<</button>>
<<case foundertruth>>
<<left2 _img>>
<<say kenna>>How'd things go with $founder.name?<</say>>
<<say mc>>It answers a lot of questions... if what she says is true, but also leaves me with several more... for you.<</say>>
<<say kenna>>As a whole, that woman cannot be trusted. She is out only for her own gain. I have put my faith in her for your sake, and assuming she told you what we agreed upon, it is true.<</say>>
<<say mc>>So you really have been working with her this whole time? You let her dangle me as bait for 200 years just to settle an old score with $krissy.refer?<</say>>
<<say kenna>>You make it sound so simple. It wasn't like that. I wanted to tell you so many times, but I couldn't risk anything.<</say>>
<<say mc>>You've really been helping her?<</say>>
<<say kenna>>I've been helping you. I've been using her as much as she has been using me. The only thing I have ever cared about is you.<</say>>
<<say mc>>And your family?<</say>>
<<say kenna>>I care for them, deeply... but I would give them up in a heartbeat for you.<</say>>
<<say mc>>So I'm seriously in this entire situation, locked out of ever going home, because you and $krissy.refer fell out over me? Why didn't you just wait until I'd moved out?!<</say>>
<<say kenna>>She'd never let us be together. It was never meant to be 200 years.<</say>>
<<say mc>>And you believe $founder.name when she says that wasn't her doing? She's stringed you along to get what she wants.<</say>>
<<say kenna>>Honestly, I don't know. But at that stage, what choice did I have?<</say>>
<<say mc>>And she'd never let us be together? At what point did I get a say in all this?<</say>>
<<say kenna>>I'm sorry, $kenna.calls. I did this for us, but it was never meant to be like this. You can't imagine the suffering I've gone through for the last 200 years, lying to the council, playing nice with $founder.name... <</say>>
<<think mc>>If I thought I was saving, defending or otherwise helping my loved ones, can I say I wouldn't do the same? I'm not sure what to think of this right now.<</think>>
<<say mc>>So, what now?<</say>>
<<say kenna>>The council will know of my betrayal soon. They will come for me. We have two options. Follow $founder.name's plan, or elope somewhere the council will never find us.<</say>>
<<say mc>>But I can't travel away from this hub.<</say>>
<<say kenna>>You made it to Prime. We'd work it out somehow.<</say>>
<<say mc>>And what is $founder.name's plan?<</say>>
<<say kenna>>To remove the council and install herself in a seat of power. She wants to be in Prime. I don't understand it myself, but apparently it's a yearning that calls to all first generation progeny.<</say>>
<<say mc>>You think she'll pull it off?<</say>>
<<say kenna>>She has the backing of two other progeny, but ultimately, I think you are the key.<</say>>
<<say mc>>Why me?<</say>>
<<say kenna>>You have the knowledge of all sides. Whoever you back, gains a crucial advantage in the war to come.<</say>>
<<say mc>>I don't want a fucking war! I just want to live peacefully with my companions. And you have the same, if not more, knowledge than me!<</say>>
<<say kenna>>$founder.name is happy to let you stand aside and do just that. She wishes for your aid, but if you want no part in it, providing you don't side with the council, she has guaranteed you can continue here peacefully. Perhaps I do, but I already have my own role in all of this.<</say>>
<<say mc>>But you even said yourself we can't trust her.<</say>>
<<say kenna>>The war is coming whether we like it or not. I'm sorry, $kenna.calls. I had hoped we had more time to enjoy ourselves and reconnect.<</say>>
<<think mc>>I feel like this whole thing is beyond me now, but I understand her point. If I tell the council, they get a major advantage, if I work with $founder.name to trick the council, she gets a major advantage. I need to make the decision carefully. Can I really trust either of them? Which is safer for my companions?<</think>>
<<cont $return "" 2 avatruth>>
<<case "cosy2">>
<<left2 _img>>
<<say mc>>Wanna hang out for a bit?<</say>>
<<say kenna>>Your room. Now. Before she interrupts us again.<</say>>
<<narrate>>Right on cue, $krissy.name shouts over to you.<</narrate>>
<<say krissy>><<uf $krissy.calls>>, can you help me real quick?<</say>>
<<say kenna>>He's busy, mom. Maybe later.<</say>>
<<say krissy>>It'll only take a minute.<</say>>
<<say kenna>>He's helping me right now.<</say>>
<<say krissy>>I'm sure that can wait. Come on, $krissy.calls.<</say>>
<<narrate>>The two just stare at each other.<</narrate>>
<<say mc>>I can't be in two places at once. What do you need $krissy.refer?<</say>>
<<say krissy>>$anna.name has fallen and I need—<</say>>
<<say mc>>Shit, is she okay? Come on, let's go. $kenna.calls, I'll come get you after.<</say>>
<<say kenna>>What are you talking about? She's my sister, I need to help too!<</say>>
<<narrate>>You follow $krissy.name to the lounge.<</narrate>>
<<say mc>>Where is she?<</say>>
<<say krissy>>Who, $krissy.calls?<</say>>
<<say mc>>$anna.refer!<</say>>
<<say krissy>>I don't know, but look at the mess she made.<</say>>
<<narrate>>You look at the broken vase on the floor, flowers strewn across the floor.<</narrate>>
<<say kenna>>Oh, my god, are you fucking kidding me?!<</say>>
<<narrate>>She storms off, muttering under her breath.<</narrate>>
<<say mc>>We thought $anna.refer was hurt, $krissy.refer!<</say>>
<<say krissy>>No, no. You interrupted me, I just wanted your help tidying up. I'd have taken her straight to the surgery if she was hurt.<</say>>
<<narrate>>Annoyed, you silently help her tidy the mess up.<</narrate>>
<<button "Continue" househub>>
<<like "krissy" 2>>
<<event kenna cosy 2>>
<<time 1>>
<</button>>
<<case "cosy">>
<<left2 _img>>
<<say mc>>Wanna hang out for a bit?<</say>>
<<say kenna>>Does it end with our naked, sweaty bodies?<</say>>
<<narrate>>You grin.<</narrate>>
<<say mc>>I think that can be arranged...<</say>>
<<narrate>>She runs her hand up your thigh and grabs your cock through your trousers.<</narrate>>
<<say mc>>You don't hang about, huh?<</say>>
<<narrate>>She brings her lips to your ear.<</narrate>>
<<say kenna "" "(Whispering)" "whisper">>Take me back to your room and make me your bitch.<</say>>
<<think mc>>Holy shit.<</think>>
<<narrate>>You take her hand and start heading toward your room, as you push the door open, you hear a voice behind you.<</narrate>>
<<say krissy>>Ah, $krissy.calls, I was just looking for you. $kenna.name, can you give us a minute?<</say>>
<<say kenna>>Uh, no, we were just about f— ouch!<</say>>
<<narrate>>You squeeze her hand, then let go. She gives you a glare, and you mouth silently the word please.<</narrate>>
<<say kenna>>Ugh. Whatever. Come find me after you've done been mom's slave!<</say>>
<<say krissy>>$kenna.name!<</say>>
<<narrate>>She storms off.<</narrate>>
<<think mc>>$krissy.refer must not have noticed we were holding hands, otherwise she'd have flipped her lid.<</think>>
<<say mc>>What did you need, $krissy.refer?<</say>>
<<say krissy>>My computer is acting up. Can you help me? It hasn't worked since I moved into the hotel.<</say>>
<<say mc>>I can take a look, I guess...<</say>>
<<narrate>>You head back to her room to take a look. You sigh as you connect the monitor to the computer.<</narrate>>
<<say mc>>The monitor wasn't connected is all.<</say>>
<<think mc>>I thought she was meant to be a genius, how did she miss this?<</think>>
<<say krissy>>That's great, thanks $krissy.calls!<</say>>
<<button "Continue" househub>>
<<like "krissy" 2>>
<<event kenna cosy>>
<<time 1>>
<</button>>
<<case "krissymad">>
<<left2 _img>>
<<say mc>>Are you okay? Has she hurt you?<</say>>
<<say kenna>>Slow down. I'm fine. Has who hurt me?<</say>>
<<say mc>>$krissy.refer! She's on the warpath!<</say>>
<<if $krissy.events.kennalied != undefined>>
<<say kenna>>Ha! She couldn't hurt me.... but I haven't seen her. I guess she saw our performance, huh?<</say>>
<<else>>
<<say kenna>>Ha! She couldn't hurt me.... but I haven't seen her. I guess word of our exploits in the lounge got out, huh?<</say>>
<</if>>
<<say mc>>Yeah, I don't think I've ever seen her so angry. She made it sound like she was going to do something drastic.<</say>>
<<say kenna>>I... have no idea she could do.<</say>>
<<say mc>>She mentioned banishment.<</say>>
<<say kenna>>She couldn't banish me! Not even you could.<</say>>
<<say mc>>No, no. She meant you banishing her.<</say>>
<<narrate>>She furrows her brow.<</narrate>>
<<say kenna>>I guess we could... but I'd rather not. As much as we are at odds right now, she's still my mother. Unless she was putting the rest of us in danger, I don't think I could do it.<</say>>
<<say mc>>She seems to think you're that danger to me... to her family!<</say>>
<<say kenna>>Listen, no. I absolutely am loathing with her right now. But banishment? Forgetting everything else for a moment, you'd never forgive me.<</say>>
<<say mc>>So where has she gone, and what is she planning?<</say>>
<<say kenna>>I... don't know. She's more powerful than an average traveler for sure... and a genius, but I am a council member, there's no way she can keep me away from you. She's just talking big, don't let it get to you.<</say>>
<<say mc>>Okay... I just... I don't like this.<</say>>
<<say kenna>>Nor do I. But she's doing it for effect; an attempt to scare us apart.<</say>>
<<if checkUnlocks('movie', 'gembed', 'kenna')>>
<<button "Continue" househub>>
<<like "kenna" 2>>
<<event "krissy" "anger" 2>>
<<time 1>>
<</button>>
<<else>>
<<narrate>>She grins darkly.<</narrate>>
<<say kenna>>I just had an idea... let's show her that her attempts at to control us mean nothing.<</say>>
<<say mc>>How?<</say>>
<<say kenna>>Her room. Come on.<</say>>
<<set $tempvar3 = "k">>
<<cont "kennasex" "gembed">>
<</if>>
<<case "krissyupdate">>
<<left2 _img>>
<<say mc>>I wanted to let you know how things are going with $krissy.refer.<</say>>
<<say kenna>>Given up, yet? I'm growing impatient...<</say>>
<<say mc>>No, not yet. She watched me fuck someone else.<</say>>
<<say kenna>>Oh? I know from the stories she enjoys watching though prefers being watched, but I didn't expect her to watch you...<</say>>
<<say mc>>There's more.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say mc>>I caught her playing with herself.<</say>>
<<say kenna>>So?<</say>>
<<say mc>>While calling my name.<</say>>
<<narrate>>She cackles.<</narrate>>
<<say kenna>>Amazing. That two-faced bitch. It was never about all that Earth sensibilities crap, and whatever else, was it? She wanted you for herself. Fucking hell... how did I not see this?<</say>>
<<say mc>>Whoa, whoa... I don't know exactly that's the case but... well... there's still more.<</say>>
<<say kenna>>Did you fuck her?<</say>>
<<if $girlsavailable.includes('sophia')>><<set _pn = "she">><<else>><<set _pn = "he">><</if>>
<<say mc>>Not yet... but ummm... <<if $girlsavailable.includes('sophia')>>$sophia.refer<<else>>$derek.refer<</if>> caught me watching, and also heard her call my name... so.... _pn asked me if I wanted to fuck her... and I said yeah. <<uf _pn>> gave me a wink and ushered me out of the room so they could talk.<</say>>
<<say kenna>>This is crazy. I can't believe she's such a hypocrite. So <<if $girlsavailable.includes('sophia')>>momma $sophia.name<<else>>dad<</if>> is gonna help you? Ohhhh, this is hilarious. I really thought you were barking up the wrong tree, but I've just misread all the signs, huh?<</say>>
<<say mc>>I told you this was the best plan.<</say>>
<<say kenna>>So what did <<if $girlsavailable.includes('sophia')>>momma $sophia.name<<else>>dad<</if>> say after?<</say>>
<<say mc>>I haven't spoken to them about it yet.<</say>>
<<say kenna>>Well, hop to it! I appreciate the update, I've gotta laugh because it's tragic otherwise, but the quicker you talk to <<if $girlsavailable.includes('sophia')>>her<<else>>him<</if>>, the quicker everyone gets what they want!<</say>>
<<button "Continue" househub>>
<<like "kenna" 2>>
<<lust kenna 3>>
<<event "kenna" "krissy">>
<<set $krissy.relief = 6>>
<<time 1>>
<</button>>
<<case "overheard">>
<<narrate>>You leave the room to find $kenna.name waiting for you.<</narrate>>
<<left2 "kenna/meet04.png">>
<<say kenna>>I heard all that, and saw the way you were looking at her. Are you trying to fuck mom? Are you choosing her over me?!<</say>>
<<say mc>>What? No. Well, the fucking bit yes, but not choosing her over you. Let me explain.<</say>>
<<narrate>>She clicks her tongue.<</narrate>>
<<say kenna>>This had better be good.<</say>>
<<say mc>>Yes, I wanna fuck $krissy.refer. But, not instead of you. Think about it, what better way to show her the error in her judgment? She can't deny us then, it'd be hypocritical.<</say>>
<<say kenna>>I mean, I have no problem sharing you... even with my siblings or parents... I'm not as closeted as her. But even forgetting how fucked up that logic is, I just can't see she'd go for it. She's too stubborn.<</say>>
<<say mc>>I'll figure it out, my lust aspect hasn't failed me yet!<</say>>
<<say kenna>>Ha, your lust aspect doesn't just drive women to your bed, you know. It just makes people more true to their lustful feelings and makes it easier to overcome their inhibitions. If she doesn't have any desire for that, it's not gonna work.<</say>>
<<say mc>>She seems hellbent on stopping you taking me away from her and allegedly, I was always her favorite, so maybe there's something in that... I could be reading into it too much, but it's an angle I gotta try.<</say>>
<<if $krissy.events.drunkbj != undefined>>
<<think mc>>Plus there was that drunken blowjob... though grief does make people do strange things, so maybe I shouldn't put too much stock in that.<</think>>
<</if>>
<<say kenna>>Fuck it. Give it a go, see what happens, but I'm growing impatient. I just want to tear your clothes off and ride you right here.<</say>>
<<say mc>>Soon...<</say>>
<<narrate>>She furrows her brow and purses her lips.<</narrate>>
<<say kenna>>Not soon enough!<</say>>
<<button "Continue" househub>>
<<like "kenna" 2>>
<<lust kenna 3>>
<<time 1>>
<</button>>
<<case "upset">>
<<left2 _img>>
<<narrate>>You take a deep breath.<</narrate>>
<<if $krissy.sex == undefined || $krissy.sex == 0>>
<<say mc>>I couldn't convince her, $kenna.refer, I'm sorry.<</say>>
<<say kenna>>You were a fool to try. I told you she wouldn't listen.<</say>>
<<say mc>>But I had to try... I don't want to upset her.<</say>>
<<say kenna>>Well, you gave it your best shot, I guess...<</say>>
<<narrate>>She strokes your cheek.<</narrate>>
<<say kenna>>How about I help you take your mind off it?<</say>>
<<narrate>>You pull away and avert your gaze.<</narrate>>
<<say kenna>>Are you fucking kidding me? You said we'd do this regardless of what she said, and now you're fucking refusing me because she's getting a little pissy? We're fucking adults, she doesn't rule our lives.<</say>>
<<say mc>>I know... I know... but I just got everyone back, I can't risk losing her again.<</say>>
<<say kenna>>So you'd risk losing me instead? You'd choose her over me?!<</say>>
<<say mc>>It's not like that. You'll stay, right?<</say>>
<<narrate>>You see the anger in her eyes growing.<</narrate>>
<<say kenna>>You fucking piece of—<</say>>
<<else>>
<<say mc>>I am so sorry, $kenna.refer...<</say>>
<<say kenna>>You'd better not be... if you're ditching me... if you're choosing her over me, I swear I'll... I don't even know!<</say>>
<<say mc>>It's not like that, I think I just got that swept up in everything and was that focused on rebelling against her idiotic rules to prove she doesn't rule my life that I never stopped to think if it's what I actually want.<</say>>
<<say kenna>>Oh, she got her claws in you good. That fucking bitch!<</say>>
<<say mc>>No, she gave me her blessing, it's only then in the calm I stopped to actually think. I'm sorry... I never meant to hurt you.<</say>>
<<say kenna>>You weren't saying that when I sucked your dick before her meddling! She's fucking brainwashed you.<</say>>
<<say mc>>No, please, listen.<</say>>
<<narrate>>You see the anger in her eyes growing.<</narrate>>
<<say kenna>>That fucking bitch. I'll fucking—<</say>>
<</if>>
<<narrate>>She stops herself, gives you one last look of disgust, then zoops away.<</narrate>>
<<think mc>>Fuck, please tell me she's not gone for good...<</think>>
<<button "Continue" $return>>
<<like "kenna" -20>>
<<event kenna upset>>
<<unavailable kenna>>
<<time 1>>
<</button>>
<<case "progeny">>
<<left2 _img>>
<<say mc>>What do you know about the progeny?<</say>>
<<say kenna>>That $kenzie.name is one, that they are extremely powerful and are ancient, though she wouldn't appreciate me calling her that!<</say>>
<<say mc>>But what makes someone a progeny?<</say>>
<<say kenna>>Her father was the creator of the Gateway network. To my understanding he has a <b>lot</b> of children, and those that are born on hubs become progeny.<</say>>
<<say mc>>But how does that work if people don't age here?<</say>>
<<say kenna>>I don't really know, and it's not the kind of thing $kenzie.name really ever chats about.<</say>>
<<say mc>>I guess maybe they're brought up on a real world, or the power works differently on infants?<</say>>
<<narrate>>She shrugs.<</narrate>>
<<say mc>>But... thought there were no male travelers? That's why New Eden couldn't repopulate.<</say>>
<<say kenna>>He is the only known one... other than you. Perhaps he is of a similar disposition to you when it comes to the fairer sex, and designed the Gateway network to only allow female travelers?<</say>>
<<say mc>>But then why let them transform?<</say>>
<<say kenna>>$kenna.calls, you're asking things I do not know the answers to. $kenzie.name is really the only one who will, and she as no interest in sharing that side of her life. $kayla.name may know a little more, but I would guess if she's not told you already, she's either not allowed to, or doesn't know.<</say>>
<<say mc>>Unless I ask this father myself...<</say>>
<<say kenna>>And who do you think you need to ask to get an audience?<</say>>
<<say mc>>$kenzie.name...<</say>>
<<say kenna>>Exactly. I would suggest you just drop it. It won't lead anywhere, and you've already got enough to be worrying about right now.<</say>>
<<say mc>>Maybe you're right...<</say>>
<<narrate>>She sticks her tongue out at you.<</narrate>>
<<say kenna>>I'm always right, $kenna.calls!<</say>>
<<button "Continue" $return>>
<<event "kenna" "progeny">>
<<time 1>>
<</button>>
<<case "krissy">>
<<left2 _img>>
<<say mc>>We need to discuss $krissy.refer.<</say>>
<<say kenna>>She's such a bitch!<</say>>
<<say mc>>I'm not okay with leaving things the way they are.<</say>>
<<say kenna>>She needs to get over it, I fully intend to make up for lost time with you.<</say>>
<<narrate>>She strokes your cheek.<</narrate>>
<<say kenna>>And we've got a lot of making up to do.<</say>>
<<narrate>>She pulls herself into kiss you, but you push her back.<</narrate>>
<<say mc>>Not until we've resolved things with $krissy.refer.<</say>>
<<say kenna>>You'd let her come between us like that?!<</say>>
<<say mc>>No... but I want her to be okay with it. I have to at least try.<</say>>
<<say kenna>>She'll never be okay with it. You're her special little boy, and I'm the wicked daughter she wished she never had.<</say>>
<<say mc>>Sorry, what?<</say>>
<<say kenna>>I'm nothing but a hindrance to her. You've always been her favorite. <<if $defaultRel != "family">>You're not even her blood!<</if>><</say>>
<<say mc>>I'm sure that's not the case. Listen, us... it's happening, with or without her blessing. But, please, just let me try to convince her.<</say>>
<<say kenna>>You've got more chance of $founder.name turning up dressed as the Kool-Aid Man than you have convincing that stubborn old witch of anything!<</say>>
<<say mc>>I don't know unless I try.<</say>>
<<say kenna>>Whatever.<</say>>
<<think mc>>She's sulking, acting out even, but I know they love each other... there's got to be a way to make this okay without anyone hurting anymore.<</think>>
<<event "kenna" spy 4>>
<<cont $return "" 1>>
<<case "taskdone">>
<<left2 _img>>
<<say "mc">>I've done the task.<</say>>
<<if !$completeTasks.includes('azulsex2')>>
<<say "kenna">>Wow! $kenna.calls, you work fast. Go ahead and finish up $azul.name's task, then come back to me.<</say>>
<<say "mc">>Right... what for, exactly?<</say>>
<<say "kenna">>I'm hurt, $kenna.calls! You don't want to spend time with your $kenna.them?<</say>>
<<say "mc">>No, I didn't mean that, I just—<</say>>
<<narrate>>She giggles.<</narrate>>
<<say "kenna">>I know what you meant. I need her to help me with your reward.<</say>>
<<say "mc">>Right...<</say>>
<<cont "kenna">>
<<else>>
<<say "kenna">>Wow! $kenna.calls, you work fast. I had noticed all the extra people. Okay, it'll probably take the rest of the day. Are you free?<</say>>
<<say "mc">>For what, sorry?<</say>>
<<say "kenna">>Your reward, silly.<</say>>
<div id="replace">
<<choices>>
<<link "I'm free">>
<<replace "#replace">>
<<say "mc">>Sure, I've got time.<</say>>
<<say "kenna">>Great! <<if $location != "bedrooms">>Come to my room<<else>>Come back<</if>> in ten minutes.<</say>>
<<narrate>>You oblige, your curiosity getting the better of you.<</narrate>>
<<cont "kennaanswers" "taskdone2">>
<</replace>>
<</link>>
<Br>
<<link "Later" kenna>>
<</link>>
<</choices>>
</div>
<</if>>
<<case "taskdone2">>
<<left2 "kenna/oops01.jpg">>
<<say "kenna">>Oh, you're early!<</say>>
<<narrate>>She's midway through getting changed when you open the door.<</narrate>>
<<think "mc">>Why didn't I knock? I should have learned by now... but I'm definitely not early!<</think>>
<<say "kenna">>Oh, well, I'm decent. You may as well come in now.<</say>>
<<say "mc">>I... uhh...<</say>>
<<narrate>>She finishes putting her top on, then reaches for some jeans laid out on the bed.<</narrate>>
<<say "kenna">>The aim was of this task was to ensure you were attentive to your travelers needs and desires, whether that by finding travelers that match your own, or by building facilities to match theirs.<</say>>
<<narrate>>She pulls the jeans up around her waist.<</narrate>>
<<left2 "kenna/oops02.jpg">>
<<say "kenna">>Ah, that's better. Hope I didn't make you uncomfortable.<</say>>
<<narrate>>You weren't really paying attention, you were too distracted by her slender legs.<</narrate>>
<<say "mc">>Huh?<</say>>
<<narrate>>She giggles.<</narrate>>
<<say "kenna">>Distracted, $kenna.calls?<</say>>
<<say "mc">>No, no, no. Of course not.<</say>>
<<narrate>>Your face goes red. You attempt to change the subject.<</narrate>>
<<say "mc">>So, the reward?<</say>>
<<narrate>>She pulls herself close to you and whispers into your ear.<</narrate>>
<<say "kenna" "" "(Whispering)" "whisper">>What does my silly little $kenna.you desire? What is it you really want, right now?<</say>>
<<narrate>>You can feel your cock pulsing with each word.<</narrate>>
<<think "mc">>I am such a terrible person.<</think>>
<<narrate>>Before you can answer, she pulls away from you, giggling.<</narrate>>
<<say "kenna">>I know exactly what you want, $kenna.calls, and I'm going to give it to you.<</say>>
<<think "mc">>Shit... I haven't even really given this any thought, do I want that kind of relationship with her?<</think>>
<<say "kenna">>More power to protect your companions.<</say>>
<<think "mc">>I... uh... what...<</think>>
<<say "mc">>Oh, right, yes, of course.<</say>>
<<say "kenna">>You're looking a little flustered there, something wrong?<</say>>
<<say "mc">>No, no. Everything's fine. How will you give me more power?<</say>>
<<say "kenna">>A limit break. I've already cleared it with the council, in fact, it should be taking effect any moment now.<</say>>
<<say "mc">>Wait, no, $kenna.refer, after a limit break I become—<</say>>
<<narrate>>You drop to your knees falling unconscious as the wave of power pulses through you.<</narrate>>
<<cont "limitbreak3" 30>>
<<case "duality">>
<<left2 _img>>
<<say "mc">>How much do you know about aspects?<</say>>
<<say "kenna">>I know enough to stay away from yours! Haha!<</say>>
<<say "mc">>Yeah, sorry...<</say>>
<<say "kenna">>Don't be, I'm just toying with you. Your aspect doesn't work on me. Not that it needs to.<</say>>
<<say "mc">>Huh?<</say>>
<<say "kenna">>Aspects are boons from your gateway, it's not your power innately. It won't work on someone so much more powerful than you.<</say>>
<<say "mc">>Right... yeah, $kp.name said something similar before. How many aspects can it give me? Is two my limit?<</say>>
<<narrate>>She pushes her head back with confusion.<</narrate>>
<<say "kenna">>Two? No. The limit is one.<</say>>
<<say "mc">>But... I have two, at least according to $voice.name.<</say>>
<<say "kenna">>That's... it shouldn't be possible. What is it?<</say>>
<<say "mc">>Dreams. Like her.<</say>>
<<say "kenna">>Oh, it's probably just her using her aspect and it's mixing together with yours to confuse matters. I wouldn't worry.<</say>>
<<think "mc">>Maybe it's just best if I show her...<</think>>
<<button "Continue" housestuff>>
<<like "kenna" 4>>
<<dreamer "kenna">>
<<time 1>>
<</button>>
<<case "wait">>
<<left2 _img>>
<<say "mc">>How come you're hanging out around the waiting area? I wasn't expecting you to work.<</say>>
<<say "kenna">>Oh, nothing like that. I like to people watch. Also, the council member in me likes to see who is coming through, how they are being treated, etcetera.<</say>>
<<say "mc">>Fair enough. Anything catch your eye?<</say>>
<<say "kenna">>You have great taste in women.<</say>>
<<say "mc">>Huh?<</say>>
<<say "kenna">>The offworld workers; beautiful women.<</say>>
<<say "mc">>Right, yes, of course.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kenna">>I'm sure you had no ulterior motive hiring them, huh?<</say>>
<<narrate>>You match her gaze and shrug sarcastically.<</narrate>>
<<say "mc">>Where did you get that drink, by the way?<</say>>
<<say "kenna">>The bar across the road. I'm surprised you didn't build it onto the waiting area itself, you'd make more money for sure.<</say>>
<<say "mc">>Maybe, but not it's not everybody's cup of tea, so wanted to ensure they had a quiet place of their own.<</say>>
<<say "kenna">>Makes sense, but the bar lacks an outdoor area. Perhaps you can do something about that?<</say>>
<<say "mc">>Great idea, thanks $kenna.refer.<</say>>
<<say "kenna">>Any time.<</say>>
<<notice>>Beer garden improvement unlocked for the bar.<</notice>>
<<button "Continue" mngwaiting>>
<<event "kenna" "waiting">>
<<like "kenna" 5>>
<<lust "kenna" 3>>
<</button>>
<<case "task">>
<<left2 _img>>
<<say "mc">>Can you give me more information about your task?<</say>>
<<narrate>>She slides over to you and gestures you to bend down so she can whisper in your ear.<</narrate>>
<<say "kenna" "" "(Whispering)" "whisper">>Nope!<</say>>
<<narrate>>She stands back, giggling.<</narrate>>
<<say "kenna">>Sorry, just having a bit of fun with my cute little $kenna.you.<</say>>
<<say "mc">>Right... so the task...?<</say>>
<<say "kenna">>$kp.name is the taskmaster, she's gotta do her little introduction thing.
<<if !$completeTasks.includes('powerone')>>
But, you should probably focus on Salim's task first anyway, it'll teach you a thing or two.
<</if>>
<</say>>
<<say "mc">>But... I already know you.<</say>>
<<say "kenna">>And the council were very adamant my task be treated no different from anyone else. That includes $kp.name being the one to coordinate us.<</say>>
<<say "mc">>Seems a little... absurd.<</say>>
<<narrate>>She shrugs.<</narrate>>
<<button "Continue" housestuff>>
<<time 1>>
<</button>>
<<case "thetask">>
<<left2 "kenna/room02.jpg">>
<<say "kenna">>I was expecting you earlier, $kenna.calls.<</say>>
<<think "mc">>Probably not as early as I turned up!<</think>>
<<say "mc">>Yeah...<</say>>
<<think "mc">>She hasn't even done up her blouse!<</think>>
<<say "kenna">>Sorry, if I'm not properly dressed, but I just got engrossed in this book.<</say>>
<<say "mc">>Of course, no problem.<</say>>
<<think "mc">>I've never felt this uncomfortable around her before.<</think>>
<<narrate>>She slaps her book shut with a loud clap.<</narrate>>
<<say "kenna">>So, for my task, I want you to focus on making your hub more attractive to travelers.<</say>>
<<think "mc">>Good, a change of subject!<</think>>
<<say "mc">>Any suggestions on how?<</say>>
<<say "kenna">>That's for you to figure out. As a traveler, the thing I most appreciate on a world is a toilet. You'd be surprised how often even that isn't provided. What you've got here is luxury. A luxury that's sure to attract more and more travelers as word spreads.<</say>>
<<think "mc">>Hmm, I guess new facilities may be a good idea. I definitely got some inspiration from New Eden. I'll run my ideas by $cassie.name. I never properly looked into promoting the hub as $harley.name originally suggested either. <</think>>
<<say "mc">>Yeah, okay, I think I've got some ideas.<</say>>
<<say "kenna">>Sounds good, I'm sure you'll ace it!<</say>>
<<narrate>>As you head to the door, she stands up to see you out.<</narrate>>
<<left2 "kenna/room03.jpg">>
<<narrate>>It suddenly becomes apparent she was wearing no panties, and she's done nothing to try and hide her assets.<</narrate>>
<<say "kenna">>So just come speak to me when—<</say>>
<<narrate>>You turn away, your cheeks bright red.<</narrate>>
<<say "kenna">>What's wrong, $kenna.calls?<</say>>
<<say "mc">>Your top.<</say>>
<<narrate>>She looks down, and gasps.<</narrate>>
<<say "kenna">>Apologies, $kenna.calls. I forget myself. Come speak to me when you've completed the task.<</say>>
<<narrate>>She pulls the blouse over her chest, but it's not long enough to cover her pussy. You decide to just leave without highlighting it.<</narrate>>
<<think "mc">>She does look good though...<</think>>
<<narrate>>You immediately feel shameful having such indecent thoughts. A feeling you're not familiar with.<</narrate>>
<<set $attrgoal = $totalattractiveness + 10>>
<<if $attrgoal > 45>>
<<set $attrgoal = 45>>
<</if>>
<<if $attrgoal < 30>>
<<set $attrgoal = 30>>
<</if>>
<<button "Continue" housestuff>>
<<set $location = "bedrooms">>
<<task "kennaattr">>
<<task "cassieideas">>
<<task "harleypromo">>
<<influence "harleypromo2">>
<<run overrideSchedule('kenna', 0, 24, "")>>
<<time 2>>
<</button>>
<<case "power">>
<<left2 _img>>
<<say "mc">>Do you know how I can increase my power?<</say>>
<<say "kenna">>Eh, I can't give you any specifics as that's part of your task for Salim. However, something patrons are usually told about is their connection to other worlds.<</say>>
<<say "mc">>Oh?<</say>>
<<say "kenna">>You have a passive connection to worlds you've actively connected to previously. And, you can strengthen that connection.<</say>>
<<if $techscomplete.signal != undefined>>
<<say "mc">>$lacy.name discovered that connection and is devising ways to make it more powerful.<</say>>
<<say "kenna">>Impressive. She can certainly do that, but it's not the only way. You can also train the connection, so to speak.<</say>>
<<else>>
<<say "mc">>Great, so what do I do?<</say>>
<<say "kenna">>You can train a connection, so to speak.<</say>>
<</if>>
<<say "mc">>Okay... so... how? I feel like you're avoiding the specifics.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kenna">>Annoying, isn't it? Repetition is key. The rest I'll leave to you.<</say>>
<<think "mc">>Does that mean I just need to repeatedly connect to the same place? One way to found out I guess.<</think>>
<<button "Continue" housestuff>>
<<taskdone "salimpower">>
<</button>>
<<case "planets">>
<<left2 _img>>
<<say "mc">>Can you tell me about any other worlds to connect to, $kenna.refer?<</say>>
<<say "kenna">>Sorry, $kenna.calls. I'm not allowed to assist you with that.<</say>>
<<say "mc">>Council rules?<</say>>
<<say "kenna">>Yup. The truth is, even I gave you a list of planets, the likelihood you could connect to them all would very slim.<</say>>
<<say "mc">>What do you mean?<</say>>
<<say "kenna">>There are countless planets to travel to. But, the higher the population, the more initial power you need to even connect. The gateway network also has various other safety protocols to prevent travel to hazardous worlds or those with volatile environments. Depending on the reason, the Equalizers may take over the connection to ensure the travelers gets where they need to go, but sometimes they can be outright restricted.<</say>>
<<say "mc">>So I can only connect to safe planets with a population below a set amount?<</say>>
<<say "kenna">>There are several other potential reasons you can't connect, but you've got the gist of it, yes. Incoming connections to you will always work because your hub is safe and equalizers will only route traffic to you that's appropriate. There can be some exceptions to that rule, of course.<</say>>
<<say "mc">>I see, so any advice on how best to find new worlds?<</say>>
<<say "kenna">>Waiting and greeting travelers manually would work, but I suspect be too slow for your liking. But you have something unique here... unfortunately—<</say>>
<<say "mc">>Council rules prohibit you from sharing that information?<</say>>
<<narrate>>She nods.<</narrate>>
<<say "kenna">>All I can say is, patrons are paired to welcome travelers from worlds they can connect to.<</say>>
<<say "mc">>I see...<</say>>
<<say "kenna">>By the way, $kenna.calls, on a totally unrelated note, and just purely for information, did you know you're much more powerful than $voice.name was when you first met her?<</say>>
<<button "Continue" $return>>
<<like "kenna" 3>>
<<lust "kenna" 1>>
<<event "kenna" "planets">>
<<task "safety">>
<<taskdone "safety">>
<<time 1>>
<</button>>
<<case "hi">>
<<narrate>>You cautiously approach Gateway B. Eager but apprehensive.<</narrate>>
<<think "mc">>I really hope there's no more surprises!<</think>>
<<narrate>>The portal wooshes open connecting to Central and a few seconds later $kenna.name steps out.<</narrate>>
<<say "mc">>It's really—<</say>>
<<narrate>>She runs over to you, wraps her arms around your neck and you hug each tightly.<</narrate>>
<<left2 "kenna/meet01.png">>
<<say "kenna">>Two hundred years, $kenna.calls. It took us all that time to find each other again. I can't tell you how much I've missed you!<</say>>
<<narrate>>Your emotions take the better of you and your eyes well up.<</narrate>>
<<say "mc">>I've missed you too, $kenna.refer, I don't think I realized just how much until right now.<</say>>
<<say "kenna">>So what you been up to?<</say>>
<<narrate>>She grins, winks and nudges you.<</narrate>>
<<say "kenna">>Ha! Just kidding, I know you've been stuck inside that Gateway. If I'd known, I'd have done something, anything...<</say>>
<<say "mc">>Why didn't you say anything once the council knew about me?<</say>>
<<say "kenna">>I found out about you the moment you materialized in this world. But... you'd become a patron. I wanted you to find your own way. Honestly, I was also grieving when it was just you. I didn't know how to face you. Then you freed $charlie.name<<if $girlsavailable.includes('theodora')>>, well $theodora.name as she is now<</if>> and I realized maybe you'd brought them all with you, but I couldn't access your gateway, something was blocking me, so I fast-tracked your inspection.<</say>>
<<say "mc">>That was you, not $founder.name? <<if $girlsavailable.includes('theodora')>>Wait, you know the difference between $charlie.name and $theodora.name?<</if>><</say>>
<<say "kenna">>No, it was me.<<if $girlsavailable.includes('theodora')>> And of course I can, the playground doesn't work on the council no more than it works on you.<</if>><</say>>
<<say "mc">>I could have used your help, just your advice so many times.<</say>>
<<say "kenna">>I know. And for leaving you to figure this out, I'm sorry. But, you remember when we were younger? You were basically my shadow. Mom was not best pleased at our relationship. She felt I was impeding your growth, stopping you from becoming a man. I told her in no uncertain terms I was more than capable of making you a man... but anyway, jokes aside, she was right in some ways. I wanted you to become you for you, not for me or anyone else.<</say>>
<<think "mc">>Did I miss a joke?<</think>>
<<say "mc">>Well, kinda feels like $founder.name had other plans.<</say>>
<<say "kenna">>Yeah, that's a bit of a wrinkle, huh? But, you recognize it and are looking to be your own person.<</say>>
<<narrate>>She hugs you tightly again, and whispers into your ear.<</narrate>>
<<say "kenna" "" "(Whispering)" "whisper">>And you've become a fine young man, $kenna.you.<</say>>
<<narrate>>You're a little taken back, it almost feels seductive, but she returns to her previous position with a joyful grin and a chuckle like it was nothing abnormal.<</narrate>>
<<think "mc">>Probably reading into too much given my aspect.<</think>>
<<say "kenna">>I mean, just look at all you've achieved here. Come, show me around the place!<</say>>
<<say "mc">>We can do that later. First, we need to take you to $krissy.refer.<</say>>
<<left2 "kenna/meet03.png">>
<<narrate>>She pouts.<</narrate>>
<<say "kenna">>Can't I have you to myself for just a bit longer? Fine, come on, let's go see the old witch!<</say>>
<<say "mc">>Witch?<</say>>
<<say "kenna">>Let's just go.<</say>>
<<set _uc = $krissy.refer.toUpperFirst()>>
<<think "mc">>_uc did mention they argued before they parted company.<</think>>
<<narrate>>You get in the car and make small talk as you head to $krissy.name's home.<</narrate>>
<<button "Continue" kennaanswers>>
<<set delete $kenna.trackable>>
<<like "kenna" 20>>
<<temp "hi2">>
<<event "kenna" "step" 2>>
<</button>>
<<case "hi2">>
<<left2 "krissy/shock01.jpg">>
<<narrate>>You arrive a few minutes later as you walk through the door $krissy.name looks over at you, then at $kenna.name, drops the plate she's holding, letting it smash on the floor and runs over to $kenna.name embracing her tightly.<</narrate>>
<<say "krissy">>I knew it. I said you weren't dead, I said it, didn't I, $krissy.calls?! I knew it. Look at you, you look incredible. Doesn't she look incredible, $krissy.calls?<</say>>
<<say "mc">>Of course.<</say>>
<<think "mc">>She's definitely more attractive then I recall...<</think>>
<<say "kenna">>Hey mom, it's been... a while.<</say>>
<<say "krissy">>Were you stuck in the buffer too? Was there another slot he missed before?<</say>>
<<say "kenna">>No, mom. I joined the council... it's a long story, let's have a cuppa. Put the kettle on, $kenna.calls.<</say>>
<<narrate>>You nod.<</narrate>>
<<say "mc">>You two head into the lounge, I'll bring the tea through in a moment. I'll clean this up too.<</say>>
<<narrate>>You join them a moment later with three cups of tea.<</narrate>>
<<say "kenna">>Okay, now you're both here. You should know I was distraught when you disappeared. I knew from a 'gram pic on $anna.name's account where you were before you vanished. I tried to call the restaurant, and they just accused you of dining and dashing. But it was the last known place I could find you. While I found it odd you hadn't paid, I had assumed you'd all traveled together from there. They did actually also tell me the waitress serving you disappeared, so I tried looking into her too in case she'd abducted you or something, but she too had vanished. <</say>>
<<narrate>>She paces back and forth as she tells you her story.<</narrate>>
<<say "mc">>You knew about this hub?<</say>>
<<say "krissy">>Of course, I had told her what we were doing, and that we were planning to come here. We may have been on... strained terms, but she's still my daughter.<</say>>
<<left2 "kenna/meet02.png">>
<<say "kenna">>But I never could find the place. I traveled... A LOT... looking for this hub. Just trying to get back to you guys. I traveled worlds upon worlds, and slowly I learned more and more of how travelers and patrons worked. I pieced together bits and bobs from urban legends, confirmations from the odd friendly patron you'd meet. When I discovered the council, I then spent the next year trying to track them down.<</say>>
<<say "krissy">>How many years were you looking for us, sweetie?<</say>>
<<say "kenna">>Almost a decade. When I finally met the council, imagine my surprise that Aunt $kp.name was one of them!<</say>>
<<say "mc">>Aunt? You knew her from before?<</say>>
<<say "krissy">>I traveled with $kp.name a lot. $kenna.name blossomed into traveling at an unusually early age. Most don't achieve it until after puberty, but she was bipping in and out of worlds not long after she was crawling. It was... difficult to say the least. But $kp.name helped and when I went traveling I'd take $kenna.name with me.<</say>>
<<say "kenna">>Yes, I was a bit of a rarity, but that pales in comparison to what you are, $kenna.calls. Anyway, I asked her if she knew where my mom was, and she couldn't help... but she kept in touch and we'd travel together occasionally. I generally left my mark on a world, helping new travelers understand their powers, told them about the friendly hubs and what not. $kp.name noticed this and eventually invited me to fill the empty traveler slot on the council. Once on the council, I quickly searched for your transfer signatures... and found nothing. You'd not traveled since long before that day at the restaurant. I even managed to find this world thanks to Aunt $lexi.name's signature, but, I could see it was dormant with no patron. Though as we've since discovered, it did still have one, just... an extremely weak and otherwise dormant one.<</say>>
<<say "mc">>So even outside the council position, you're no ordinary traveler?<</say>>
<<left2 "kenna/meet04 .png">>
<<say "kenna">>No, it really came to a head when a patron tried to send me to central. I was entirely aware of what was happening, and I was greeted by an enforcer. I later learned when I joined the council that there's a warning system in place for such a situation. Basically, I was more powerful than the patron trying to redirect my transfer, enforcers are sent in case it's a patron trying to go above their station. Anyway... none of that's important now, is it?<</say>>
<<say "krissy">>When did you know?<</say>>
<<say "kenna">>Know what?<</say>>
<<say "krissy">>That we were here.<</say>>
<<say "kenna">>I knew $name was here the moment he arrived. But I didn't know for sure you were all in the buffer until he released you.<</say>>
<<say "krissy">>Honey, I cannot tell you how happy I am you're here. But you and I are going to have words! Why didn't you come down here right away?!<</say>>
<<narrate>>You sup the last of your tea as the two of them continue to chatter.<</narrate>>
<<say "mc">>I'm going to leave you two alone to catchup. The others weren't aware we thought you were gone... but I'm sure they'll be just as happy to see you.<</say>>
<<say "krissy">>Okay $krissy.calls. Talk to you later.<</say>>
<<narrate>>$kenna.name gets up and gives you another hug.<</narrate>>
<<say "kenna" "" "(Whipsering)" "whisper">>Don't forget I've got a task for you brother. Don't be a stranger, alright? I've waited too long to see you again for you to give me the cold shoulder!<</say>>
<<narrate>>She lets you go and sits back on the sofa.<</narrate>>
<<say "mc">>We'll talk again soon, $kenna.refer.<</say>>
<<narrate>>As you're leaving, you hear $krissy.name warning $kenna.name.<</narrate>>
<<say "krissy">>I love that you're back honey, and I am so grateful for it, but please, please, promise me you won't get back up to your old tricks.<</say>>
<<say "kenna">>Let's not go over that again, mom. I know it was only a few years for you, but it's been over two centuries for me. Let's just be happy we're back together.<</say>>
<<think "mc">>I'm guessing that's about the argument they had. Hopefully they can hash it out. Wait, ha! Does that make her older than her own mother now?<</think>>
<<button "Continue" townhub>>
<<like "krissy" 10>>
<<taskdone "avagreet">>
<<available "kenna">>
<<run overrideSchedule('kenna', 0, 24, "krissyhome")>>
<<time 2>>
<</button>>
<</switch>><<set $scene = 0>>
<<set _active = "kenna">>
<<meet _active>>
<<set $return = returnLocation()>>
<<set _passage = _active+"answers">>
<<if $location == "krissyhome">>
<<set $return = "townhub">>
<</if>>
<<smallflirt _active>>
<<if $tasks.rebecca != undefined>>
<<opt "Prime & Rebecca" _passage rebecca>><</opt>>
<</if>>
<<if $completeTasks.includes('avatruth') && $tasks.founderdeadline != undefined && ($endings == undefined || !$endings.includes('elope'))>>
<<opt "Elope Together" _passage elope>><</opt>>
<</if>>
<<if $krissy.events.kenna == "lied" && checkUnlocks('movie', 'gembed', 'kenna') == false && $kenna.gembed == true && getRawLocation('krissy') != "bedrooms">>
<<opt "$krissy.name's Room" kennasex gembed>><</opt>>
<</if>>
<<if $tasks.avatruth != undefined>>
<<opt "$founder.name's Words" _passage foundertruth>><</opt>>
<</if>>
<<if $kenna.events.upset == 3 && $krissy.events.kenna != "taboo">>
<<opt "Change Relationship" kennasex lounge>><</opt>>
<</if>>
<<if $krissy.events.kenna == "lied">>
<<if $kenna.events.cosy == undefined>>
<<opt "Hangout" _passage cosy>><</opt>>
<</if>>
<<if $kenna.events.cosy == 1>>
<<opt "Hangout" _passage cosy2>><</opt>>
<</if>>
<</if>>
<<if $krissy.events.anger == 1>>
<<opt "Are you okay?" _passage krissymad>><</opt>>
<</if>>
<<if ($tasks.progeny != undefined || $completeTasks.includes('progeny')) && $kenna.events.progeny == undefined>>
<<link "Progeny" kennaanswers>>
<<temp "progeny">>
<</link>><br>
<</if>>
<<if $krissy.relief == 5 && $kenna.events.krissy == undefined>>
<<opt "$krissy.name Update" _passage krissyupdate>><</opt>>
<</if>>
<<if _bed == true && getRawLocation('krissy') != "bedrooms">>
<<opt "$krissy.name's Room" kennasex gembed>><<set $tempvar3 = "a">><</opt>>
<</if>>
<<if $krissy.events.kenna == "taboo" && checkUnlocks('movie', 'lounge', 'kenna') == false>>
<<set _txt = "To hell with "+$krissy.name>>
<<if $krissy.sex != undefined && $krissy.sex > 0>>
<<set _txt = "It's time!">>
<</if>>
<<opt _txt kennasex lounge>><</opt>>
<</if>>
<<if $krissy.events.kenna == "friends" && $kenna.events.upset == undefined>>
<<opt "Sorry, $kenna.name..." _passage upset>><</opt>>
<</if>>
<<if $kenna.events.spy == 3>>
<<link "$krissy.refer" kennaanswers>>
<<temp "krissy">>
<</link>><br>
<</if>>
<<if ($completeTasks.includes('shareddreams2') && ($dreamer == undefined || !$dreamer.includes('kenna'))) && !$completeTasks.includes('fivek')>>
<<link "Second Aspect" kennaanswers>>
<<temp "duality">>
<</link>><br>
<</if>>
<<if $tasks.salimpower != undefined>>
<<link "Gaining Power" kennaanswers>>
<<temp "power">>
<</link>><br>
<</if>>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $kenna.events.planets == undefined>>
<<link "Planets" kennaanswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if $location == "waiting" && $kenna.events.waiting == undefined>>
<<link "What are you doing here?" kennaanswers>>
<<temp "wait">>
<</link>><br>
<</if>>
<<if $tasks.kennaattr == undefined && !$completeTasks.includes('kennaattr')>>
<<link "Council Task" kennaanswers>>
<<temp "task">>
<</link>><br>
<</if>>
<<if $tasks.kennaattr != undefined && $totalattractiveness >= $attrgoal>>
<<link "Task" kennaanswers>>
<<temp "taskdone">>
<</link>><Br>
<</if>>
<<link "Never mind" $return>><</link>><<scene>>
<<set _img = getImg('kenna')>>
<<debug>>
<<button "Family" kennasex>><<set $defaultRel = "family">><</button>>
<<button "Step-Family" kennasex>><<set $defaultRel = "step">><</button>>
<<button "Guardianship" kennasex>><<set $defaultRel = "guardian">><</button>>
<<button "Family Friend" kennasex>><<set $defaultRel = "friend">><</button>>
<<button "Landlady" kennasex>><<set $defaultRel = "landlady">><</button>>
<</debug>>
<<switch $tempvar>>
<<case "kyler">>
<<vid "kyler/kenna01.mp4">>
<<cont "kennasex" "kyler02">>
<<case "kyler02">>
<<vid "kyler/kenna02.mp4">>
<<cont "kennasex" "kyler03">>
<<case "kyler03">>
<<vid "kyler/kenna03.mp4">>
<<cont "kennasex" "kyler04">>
<<case "kyler04">>
<<vid "kyler/kenna04.mp4">>
<<cont "kennasex" "kyler05">>
<<case "kyler05">>
<<vid "kyler/kenna05.mp4">>
<<cont "kennasex" "kyler06">>
<<case "kyler06">>
<<vid "kyler/kenna06.mp4">>
<<cont "kennasex" "kyler07">>
<<case "kyler07">>
<<vid "kyler/kenna07.mp4">>
<<unlock "kyler" "kenna">>
<<unlock "kenna" "kyler">>
<<unavailable "kenna">>
<<cont "housestuff" "" 1.5>>
<<case "c00">>
<<narrate>>$kenna.name looks almost shocked when you answer.<</narrate>>
<<say kenna>>I knew you liked a show... I didn't expect this... but if you're into it, I'm into it.<</say>>
<<narrate>>$kenzie.name rolls her eyes.<</narrate>>
<<say kenzie>>Yeah, yeah... enough with the lovey-dovey.<</say>>
<<narrate>>She clicks her fingers and Salim appears seemingly from nowhere, looking slightly confused.<</narrate>>
<<say kenzie>>Salim. You're going to fuck me, and you're going to fuck $kenna.name, and $name here is probably gonna play with himself while we do it.<</say>>
<<narrate>>A dark grin creeps across his face.<</narrate>>
<<say salim>>This is gonna be fun.<</say>>
<<narrate>>$kenzie.name claps her hands together, and you all find yourself in an unknown lounge. The three of them sat on the sofa together, with you across from them in a particularly comfy chair.<</narrate>>
<<cont "kennasex" "c01">>
<<case "c01">>
<<narrate>>The look on Salim's face suggests he can't believe his luck as he looks to both of them.<</narrate>>
<<vid "kenzie/three01.mp4">>
<<say kenzie>>Like her?<</say>>
<<say salim>>Yeah, I told you this is gonna be fun.<</say>>
<<narrate>>He buries his head in $kenzie.name's bosom as he eagerly motorboats her.<</narrate>>
<<say kenna>>Wow, look at you so excited.<</say>>
<<say salim>>What can I say? I'm a sucker for beautiful women.<</say>>
<<cont "kennasex" "c02">>
<<case "c02">>
<<narrate>>Salim stands up, quickly discard his clothes and revealing his hard cock.<</narrate>>
<<vid "kenzie/three02.mp4">>
<<narrate>>The two are quick to zone in, $kenzie.name taking the lead on his shaft while $kenna.name sucks on his balls.<</narrate>>
<<say kenzie>>You have good taste.<</say>>
<<say kenna>>Yeah, you do.<</say>>
<<say salim>>We're all just having fun, right?<</say>>
<<narrate>>They all giggle together as they continue. $kenzie.name looks at you briefly and winks.<</narrate>>
<<say kenzie>>So much fun.<</say>>
<<narrate>>He falls back on to the sofa and beckons $kenna.name to him.<</narrate>>
<<narrate>>She looks back at you, one last questioning glance. You nod, and she grins devilishly.<</narrate>>
<<cont "kennasex" "c03">>
<<case "c03">>
<<narrate>>She lowers herself on to his cock.<</narrate>>
<<vid "kenzie/three03.mp4">>
<<narrate>>He holds her by the waist, pulling and pushing up and down his cock as the three of them scream and moan together.<</narrate>>
<<say kenna>>Fuck, yes, yes, yes.<</say>>
<<narrate>>$kenzie.name grabs $kenna.name's ass and runs her tongue up her arm as she mercilessly bobs on Salim's cock.<</narrate>>
<<say kenna>>Oh, my god, fuck yes.<</say>>
<<say kenzie>>It's my turn!<</say>>
<<cont "kennasex" "c04">>
<<case "c04">>
<<vid "kenzie/three04.mp4">>
<<say kenzie>>Yeah, you gonna rub it for me?<</say>>
<<say kenna>>I'll rub it for you.<</say>>
<<narrate>>$kenna.name plays with her clit as she bounces on Salim's lap.<</narrate>>
<<say kenzie>>Oh~ fuck, yes, god! Ff~ fuck!<</say>>
<<narrate>>$kenzie.name jolts backwards off his cock as she struggles under all the stimulation.<</narrate>>
<<say kenzie>>Put it back in me!<</say>>
<<narrate>>She's quick to recover and squeals with delight as Salim thrusts wildly.<</narrate>>
<<cont "kennasex" "c05">>
<<case "c05">>
<<narrate>>Salim switches back to $kenna.name. A wild lust overcoming him as he goes into overdrive, his movements fast and crazed as he squeezes $kenna.name tightly.<</narrate>>
<<vid "kenzie/three05.mp4">>
<<say kenzie>>Eyes on me. Not so fast.<</say>>
<<narrate>>Begrudgingly, he slows down a little, but it's too late as the pleasure takes hold of $kenna.name and she moans with rapturous delight.<</narrate>>
<<narrate>>$kenzie.name takes him back in her mouth, giving $kenna.name a brief moment to recover.<</narrate>>
<<cont "kennasex" "c06">>
<<case "c06">>
<<vid "kenzie/three06.mp4">>
<<narrate>>$kenzie.name bounces on his lap, giving you the perfect view of her ass bouncing up and down. She looks back at you briefly then meets $kenna.name's gaze.<</narrate>>
<<say kenzie>>You're his little slut.<</say>>
<<narrate>>$kenna.name looks at you sheepishly and denies nothing before returning her lustful eyes to $kenzie.name.<</narrate>>
<<say salim>>Yes, yes, yeah....<</say>>
<<narrate>>Salim moans and grunts as he gets ever closer to his limit.<</narrate>>
<<cont "kennasex" "c07">>
<<case "c07">>
<<vid "kenzie/three07.mp4">>
<<say kenzie>>Oh, my god!<</say>>
<<narrate>>$kenna.name seems to take a dark delight in teasing $kenzie.name while Salim takes her from behind.<</narrate>>
<<say kenzie>>Yes, yes, yes, ohh~ fuck!<</say>>
<<narrate>>Salim slaps her ass with his dick, some sort of signal it seems, as she drops to her knees and takes it to the back of her throat.<</narrate>>
<<say kenna>>Look at that... I love this pussy.<</say>>
<<say salim>>It's so fucking insane.<</say>>
<<cont "kennasex" "c08">>
<<case "c08">>
<<vid "kenzie/three08.mp4">>
<<say salim>>I'm about to fucking cum.<</say>>
<<say kenna>>Yes, fucking cum. Give it to me!<</say>>
<<say kenna>>Oh, my god, give it to me! Give it to me.<</say>>
<<narrate>>You watch as he finishes over your $kenna.them's torso.<</narrate>>
<<say salim>>Goddamn!<</say>>
<<unlock "kenzie" "cthree">>
<<unlock "kenna" "cthree">>
<<cont "kennasex" "c09">>
<<case "c09">>
<<narrate>>$kenna.name looks over at you.<</narrate>>
<<say kenna>>Did that please you, $kenna.calls?<</say>>
<<narrate>>You nod and grin at her.<</narrate>>
<<say salim>>Hey, you were meant to be pleasing me!<</say>>
<<say kenzie>>I prefer my sex toys to know when they've served their purpose.<</say>>
<<narrate>>$kenzie.name snaps her fingers and Salim vanishes. She turns to face you.<</narrate>>
<<say kenzie>>Now, I very much enjoyed putting that show on for you. A little reward and a taste of more to come if you can continue to please me.<</say>>
<<cont "council" "side02">>
<<case "f01">>
<<vid "kenna/f01.mp4">>
<<narrate>>She grabs on to your shlong, kissing and gently gripping through your trousers as you become increasingly hard.<</narrate>>
<<narrate>>After deciding she's teased you enough, she pulls down your trousers. Your cock bounces into position, almost poking her eye out.<</narrate>>
<<say kenna>>Someone's happy to see me.<</say>>
<<cont "kennasex" "f02">>
<<case "f02">>
<<vid "kenna/f02.mp4">>
<<narrate>>She works her head up and down your shaft, lovingly massaging your balls as she does so.<</narrate>>
<<say mc>>Ohh... fuck yeah.<</say>>
<<narrate>>Letting your cock free of her mouth for a moment, she runs her tongue slowly down the side of your shaft. She looks up at you, her eyes full of lustful admiration, and gently starts sucking on your balls.<</narrate>>
<<say mc>>Holy fuck.<</say>>
<<narrate>>The sensation as she slowly sucks and releases your balls repeatedly causes you to shiver with anticipation.<</narrate>>
<<say mc>>I'm gonna fuck you so hard...<</say>>
<<cont "kennasex" "f03">>
<<case "f03">>
<<narrate>>She smirks, gets off her knees and walks to the bedroom, saying nothing as she beckons you to follow seductively.<</narrate>>
<<vid "kenna/f03.mp4">>
<<narrate>>She crawls onto the bed, and on all fours her ass in the air, she looks at you over her shoulder.<</narrate>>
<<say kenna>>Do it.<</say>>
<<cont "kennasex" "f04">>
<<case "f04">>
<<vid "kenna/f04.mp4">>
<<narrate>>You grab her lingerie and pull tightly as you push inside her.<</narrate>>
<<narrate>>She lets out a satisfying gasp as you slide in.<</narrate>>
<<cont "kennasex" "f05">>
<<case "f05">>
<<vid "kenna/f05.mp4">>
<<say kenna>>Oh, my god, Yeah.<</say>>
<<narrate>>You hold her head in place as you rock your hips back and forth.<</narrate>>
<<say kenna "" "(Whispering)" "whisper">>Please give it to me. Please. Yeah, please.<</say>>
<<narrate>>Hearing her beg for more, you push her back on to the bed so you can see her pleading face.<</narrate>>
<<cont "kennasex" "f06">>
<<case "f06">>
<<vid "kenna/f06.mp4">>
<<narrate>>She looks at you with pure lust as you pound away. Her eyes screaming for more as she bites her lower lip.<</narrate>>
<<say kenna>>Oh, my god, yes!<</say>>
<<say kenna>>Yeees. Ohhh~<</say>>
<<narrate>>She tugs at your arm, beckoning you on to the bed proper.<</narrate>>
<<cont "kennasex" "f07">>
<<case "f07">>
<<narrate>>You lay down and she takes charge; lowering herself on to your cock as she moans with delight.<</narrate>>
<<vid "kenna/f07.mp4">>
<<say kenna>>Yes, fucking, yes, $kenna.calls!<</say>>
<<narrate>>She rides your cock as your hands explore her body.<</narrate>>
<<say mc>>Yes, just like that, keep going.<</say>>
<<narrate>>You bring your hand to her pussy while she grinds on your cock.<</narrate>>
<<cont "kennasex" "f08">>
<<case "f08">>
<<narrate>>She twists around on your cock and looks you dead in the eye.<</narrate>>
<<say kenna>>I thought you were gonna fuck me hard?<</say>>
<<vid "kenna/f08.mp4">>
<<narrate>>You grin at her, grab her ass and thrust wildly upwards.<</narrate>>
<<say kenna>>Ohh~ Oh, my god, yes!<</say>>
<<narrate>>Her breaths become shorter and shorter as the pleasure builds inside her.<</narrate>>
<<say kenna>>Yes!<</say>>
<<narrate>>You feel her grip tighten around your cock, and her arm quivers under the strain as the orgasm takes her.<</narrate>>
<<cont "kennasex" "f09">>
<<case "f09">>
<<say kenna>>I want to finish you... I want to see you explode as you look me in the eye!<</say>>
<<vid "kenna/f09.mp4">>
<<narrate>>She looks almost enthralled as she rubs her hands up and down your cock with gusto.<</narrate>>
<<say mc>>Ohhh, fuck.<</say>>
<<narrate>>You start curling your toes and shifting your lefts as you feel the orgasm building inside you.<</narrate>>
<<say kenna>>That's it, cum for me, $kenna.calls!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "kenna/f10.mp4">>
<<narrate>>Not once taking her eyes away from yours, she holds out her tongue and takes you over the finish line.<</narrate>>
<<say mc>>Yes, yes, fucking take it, $kenna.refer, FUCKING TAKE IT!<</say>>
<<narrate>>You let out a guttural moan as your erupt into her gleeful face.<</narrate>>
<<narrate>>She happily polishes off your cock, ensuring every last drop of your lust is accounted for.<</narrate>>
<<say kenna>>You taste so good, $kenna.calls.<</say>>
<<narrate>>You lay together silently embracing for a few minutes.<</narrate>>
<<unlock "kenna" "f">>
<<cont "festival" "kenna2">>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "perform">>
<<narrate>>$kenna.name arrives a few minutes later.<</narrate>>
<<left2 "kenna/meet02.png">>
<<say kenna>>This is gonna be sooo good... I can't wait to see the look on her face!<</say>>
<<think mc>>I still have some reservations about this...<</think>>
<<say mc>>My only aim here isn't just to show her that we'll be together regardless of what she says... but also to get her to be into it.<</say>>
<<narrate>>She furrows her brow.<</narrate>>
<<say mc>>I want you to tie your hair back, and we'll keep the lights on low.<</say>>
<<say kenna>>Right... why?<</say>>
<<say mc>>So she doesn't immediately know it's you.<</say>>
<<say kenna>>I'm her daughter, she'll know it's me straight away!<</say>>
<<say mc>>She sees your naked body a lot, does she? It'll be dark and she'll be at the back of the crowd. I want to ease her into it, I want her to get off on it and only realize after that it's us.<</say>>
<<say kenna>>Why? She's gonna be pissed off either way.<</say>>
<<say mc>>Because I still want to try and manage some level of relationship with her.<</say>>
<<if $kenna.events.cosy != undefined>>
<<say kenna>>Whatever. Why do you think she'll even come here anyway? I assumed she'd just hear about it after. There's no way she's gonna come watch you.<</say>>
<<say mc>>She's a frequent customer here, but she'd definitely avoid my shows, so they're gonna announce us with different names.<</say>>
<<else>>
<<say kenna>>You mean you still want to try and fuck her, right?<</say>>
<<narrate>>You shrug sarcastically and she just rolls her eyes.<</narrate>>
<</if>>
<<say kenna>>Fine, we're still getting to fuck, so I'll play your little game.<<if $kenna.events.cosy == undefined>> I don't get the logic, though.<</if>><</say>>
<<say mc>>Maybe not immediately... and things might be a bit strained in the short term, but I think it'll all work out.<</say>>
<<narrate>>You each head to your own changing room.<</narrate>>
<<cont "kennasex" "perform01">>
<<case "perform01">>
<<narrate>>You're nearly finished getting ready when you hear the crowd cheer and the warm-up music come on.<</narrate>>
<<think mc>>The hell?<</think>>
<<narrate>>You rush your preparations and head to the door to take a look.<</narrate>>
<<vid "kenna/perform01.mp4">>
<<think mc>>The hell is she doing?! She definitely wants $krissy.refer to know it's her right away.<</think>>
<<narrate>>You hesitate for a moment, but then she gestures to you.<</narrate>>
<<think mc>>Well, I guess whatever happens, happens.<</think>>
<<narrate>>She gets on all fours and throws her ass in the air, her pussy dripping with anticipation.<</narrate>>
<<cont "kennasex" "perform02">>
<<case "perform02">>
<<narrate>>You give her ass a quick spank, and squint menacingly at her for a moment before sliding your fingers inside her.<</narrate>>
<<vid "kenna/perform02.mp4">>
<<narrate>>She moans and gasps as you furiously finger bang her.<</narrate>>
<<say kenna>>Ohhh~ yes!<</say>>
<<narrate>>You drop your trousers, throwing them into the audience as they cheer.<</narrate>>
<<think mc>>I can't see $krissy.refer out there, maybe she didn't come...<</think>>
<<cont "kennasex" "perform03">>
<<case "perform03">>
<<narrate>>Your attention is immediately draw back to $kenna.name as you feel her warm mouth devour your cock.<</narrate>>
<<vid "kenna/perform03.mp4">>
<<say mc>>Holy fuck, yes!<</say>>
<<narrate>>You swing your hips back and forth, hitting the back of her throat with each rhythmic movement.<</narrate>>
<<say mc>>Ohhh~ yes.<</say>>
<<say "sideg" "Audience Member">>Fuck her already!<</say>>
<<narrate>>Hearing the heckler, you and $kenna.name look at either and smirk. She nods and slowly spins on the bed, once again her ass in the air.<</narrate>>
<<cont "kennasex" "perform04">>
<<case "perform04">>
<<narrate>>You push inside, a wave of relief and excitement coursing through you.<</narrate>>
<<vid "kenna/perform04.mp4">>
<<say kenna>>Yes, just like that!<</say>>
<<narrate>>The sounds of her wet pussy welcoming each thrust does not go unnoticed by the now entranced audience.<</narrate>>
<<say kenna>>Yes, yes, yes! Fuck!<</say>>
<<cont "kennasex" "perform05">>
<<case "perform05">>
<<narrate>>She twists around on the bed, looking up into your eyes as you continue to pound away at her.<</narrate>>
<<vid "kenna/perform05.mp4">>
<<say kenna>>Fuck, yes! Right there.<</say>>
<<narrate>>Her eyes focus on you, like nothing else in the world matters, driving your libido crazy.<</narrate>>
<<cont "kennasex" "perform06">>
<<case "perform06">>
<<vid "kenna/perform06.mp4">>
<<narrate>>She bounces up and down on your dick with a determined force and rhythm.<</narrate>>
<<say mc>>Yes, fuck!<</say>>
<<narrate>>She grinds on your cock as the pleasure overcomes her. She throws her head back and her left arm shakes violently under the strain of her orgasm.<</narrate>>
<<say kenna>><<uc $name>>! YES! FUUUUCK!<</say>>
<<narrate>>You piston into her, a greedy desire for your own climax.<</narrate>>
<<say "sideg" "Audience Member">>God, she's so fucking lucky!<</say>>
<<narrate>>You feel the desire inside you condensing into a single point and readying for escape.<</narrate>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "kenna/perform07.mp4">>
<<say mc>>Yes, holy shit, holy fucking yes! Take my fucking seed all over your dirty face, $kenna.refer!<</say>>
<<narrate>>As you unload on her face, there's a gasp from the back of the crowd followed by a slamming door, but you're too engrossed in your orgasm to notice it.<</narrate>>
<<say kenna>>Not bad... $kenna.calls!<</say>>
<<narrate>>She grins at you wickedly, while the audience cheers.<</narrate>>
<<unlock "kenna" "perform">>
<<perform "kenna">>
<<button "Continue" krissyanswers>>
<<if $kenna.events.first == undefined>>
<<event kenna first perform>>
<</if>>
<<if $krissy.events.anger == 1>>
<<event "krissy" "anger" 2>>
<</if>>
<<if $krissy.events.kenna == "lied">>
<<temp "angered">>
<<else>>
<<temp "wtf">>
<</if>>
<<lust kenna 10>>
<<like kenna 7>>
<</button>>
<</replace>>
<</button>>
</div>
<<case "lounge">>
<<left2 _img>>
<<if $kenna.events.upset == 3>>
<<say mc>>I can't take this anymore. I was wrong, $kenna.refer.<</say>>
<<narrate>>She studies you carefully.<</narrate>>
<<say kenna>>Wrong about what?<</say>>
<<say mc>>Us... I want you! I am so sorry I upset you.<</say>>
<<say kenna>>This better be real, because so help me if you're toying with me again.<</say>>
<<event krissy kenna "taboo">>
<</if>>
<<if $krissy.sex == undefined || $krissy.sex == 0>>
<<say mc>>To hell with $krissy.refer! Drop everything and meet me in the lounge. Fifteen minutes.<</say>>
<<if $kenna.events.upset == 3>>
<<narrate>>She regards you skeptically.<</narrate>>
<<say kenna>>Why...?<</say>>
<<else>>
<<say kenna>>Why, what's happening? Is everything okay?<</say>>
<</if>>
<<say mc>>I'm gonna fuck you good and proper right there where everyone will hear about it.<</say>>
<<say kenna>>Holy fuck yes! I'll be there shortly!<</say>>
<<think mc>>This is probably not a good idea, but I already tried the diplomatic route, and I'm not having $krissy.refer dictate who I can and can't sleep with!<</think>>
<<else>>
<<say mc>>Drop everything... especially your clothes, I am gonna fuck you so damn hard!<</say>>
<<narrate>>She literally jumps for joy.<</narrate>>
<<say kenna>>Oh my god, finally... just... can you give me fifteen minutes?<</say>>
<<say mc>>We've already waited long enough.<</say>>
<<say kenna>>I know, I know. I just want to mark the occasion properly; and with a bang! Go wait for me in the lounge, okay?<</say>>
<<narrate>>Reluctantly you agree.<</narrate>>
<</if>>
<<cont kennasex lounge01>>
<<case "lounge01">>
<<run presentCompany('lounge')>>
<<narrate>>You sit waiting for her in the lounge.<</narrate>>
<<if $girlshere.length > 0>>
<<set _g = either($girlshere)>>
<<if $krissy.sex == undefined || $krissy.sex == 0>>
<<say _g>>What's wrong, $name? You look het up.<</say>>
<<say mc>>Just waiting on $kenna.refer, so we can fuck. $krissy.refer doesn't control my life!<</say>>
<<narrate>>She cocks her head.<</narrate>>
<<say _g>>You're gonna fuck $kenna.name here?<</say>>
<<say mc>>Yup. Tell whoever you want, bring the whole hub in to witness if you want.<</say>>
<<else>>
<<say _g>>You've got a massive grin on your face, $name... what's happening?<</say>>
<<say mc>>Finally gonna fuck $kenna.refer!<</say>>
<<narrate>>She cocks her head.<</narrate>>
<<say _g>>Here in the lounge... while I'm here?<</say>>
<<say mc>>Yuuup. Go get the entire hub if you want. Nothing's gonna stop me now!<</say>>
<</if>>
<<narrate>>Before she can react, $kenna.name enters the room.<</narrate>>
<<else>>
<<if $krissy.sex == undefined || $krissy.sex == 0>>
<<narrate>>You sit waiting impatiently, stewing in anger over $krissy.refer's words.<</narrate>>
<<else>>
<<think mc>>Fuck... it feels like I've been say here for years!<</think>>
<</if>>
<</if>>
<<left2 "kenna/loungesex01.jpg">>
<<narrate>>Your jaw drops when you see the outfit she's put on for you.<</narrate>>
<<say mc>>Fuck, you look incredible. What's with the backpack, though?<</say>>
<<narrate>>She shrugs.<</narrate>>
<<say kenna>>I thought it was cute.<</say>>
<<narrate>>She sits across from you, her feet almost immediately caressing your thighs.<</narrate>>
<<say mc>>Fuck me, I'm looking forward to this!<</say>>
<<narrate>>She giggles as she slowly pulls her panties down from under her skirt.<</narrate>>
<<vid "kenna/lounge01.mp4">>
<<say kenna>>I won't be needing these for much longer.<</say>>
<<narrate>>She shuffles her chair over to you and reaches for your crotch.<</narrate>>
<<vid "kenna/lounge02.mp4">>
<<say kenna>>God, just look at this thing.<</say>>
<<narrate>>She wraps her feet around your cock and gently moves them up and down.<</narrate>>
<<say kenna>>I'm gonna take such good care of you.<</say>>
<<cont kennasex lounge02>>
<<case "lounge02">>
<<narrate>>In a blatant display of her impressive flexibility, she lowers her head to your cock without removing her feet.<</narrate>>
<<vid "kenna/lounge03.mp4">>
<<narrate>>She concentrates on your cock, savoring the taste as her toes nudge the base of your shaft ever so slightly up and down.<</narrate>>
<<say mc>>Oh, fuck, I needed this!<</say>>
<<say kenna>>Oh, but, $kenna.calls, this is not all... let's put on a proper show. Take off those jeans.<</say>>
<<narrate>>She retreats to her chair briefly, showing off her pussy, while looking at you longingly.<</narrate>>
<<say kenna>>Yes... take them off. Take everything off.<</say>>
<<narrate>>As soon as your jeans are around your ankles, she lowers herself onto your lap.<</narrate>>
<<vid "kenna/lounge04.mp4">>
<<cont kennasex lounge04>>
<<case "lounge04">>
<<narrate>>There's a gasp of relief and excitement as her pussy welcomes you.<</narrate>>
<<vid "kenna/lounge05.mp4">>
<<narrate>>You giver her ass a spank, purposefully loud, to try and attract as much attention as possible.<</narrate>>
<<say kenna>>Ohhh~<</say>>
<<narrate>>She follows suit by moaning loudly.<</narrate>>
<<say mc>>Yes, fucking, yes!<</say>>
<<if $krissy.sex == undefined || $krissy.sex == 0>>
<<think mc>>Fuck, I'm already close. But I need this to last, I want as many people to know as possible. I want $krissy.refer to find out exactly what we were doing here!<</think>>
<<else>>
<<think mc>>Fuck, I'm already close, this feels so fucking good.<</think>>
<</if>>
<<cont kennasex lounge05>>
<<case "lounge05">>
<<narrate>>You slow things down, and she seemingly understands the message without any words. She throws off her skirt, giving you a little recovery time before returning to your lap.<</narrate>>
<<vid "kenna/lounge06.mp4">>
<<narrate>>She grinds slowly on your cock, taking great delight in every movement. Her gasps and moans only serving to fuel your lust.<</narrate>>
<<say mc>>Oh, fuck, you look so good on my dick.<</say>>
<<cont kennasex lounge06>>
<<case "lounge06">>
<<vid "kenna/lounge07.mp4">>
<<say kenna>>I'm such a bad girl.<</say>>
<<narrate>>You thrust into her, hard and slow, making her squirm under each touch. Your libido shouting, screaming even, for you to just fuck her brains out, but you resist, eager to make this last as long as possible.<</narrate>>
<<say mc>>Yes, take it! Take my cock, $kenna.refer!<</say>>
<<cont kennasex lounge07>>
<<case "lounge07">>
<<vid "kenna/lounge08.mp4">>
<<narrate>>You pound away, aware that you've not got much left in you, but still trying to prolong and savor every last part of this moment.<</narrate>>
<<say kenna>>Yes, $kenna.calls, that's it, that's fucking it, cum for me! Cum on my dirty little pussy!<</say>>
<<narrate>>Her words are the tipping point, and the ball of pleasure that had been building inside you cries for release.<</narrate>>
<div id="replace">
<<button "Cum">>
<<unlock "kenna" "lounge">>
<<replace "#replace">>
<<vid "kenna/lounge09.mp4">>
<<narrate>>You pull out just as the need for release reaches your head and erupt almost immediately.<</narrate>>
<<say mc>>Fuck, fuck, fuck, yes, <<uc $kenna.refer>>, YES!<</say>>
<<narrate>>You watch with pride as your cum drips down her labia.<</narrate>>
<<cont kennasex lounge08>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "lounge08">>
<<say kenna>>Fuck me, that was good, $kenna.calls.<</say>>
<<say mc>>It felt... incredible.<</say>>
<<if $krissy.sex == undefined || $krissy.sex == 0>>
<<say kenna>>And you really don't care what $krissy.refer will say?<</say>>
<<say mc>>Too late now, even if I did.<</say>>
<<else>>
<<say kenna>>So the plan worked; you banged <<if $defaulRel != "step" && $defaulRel != "family">>my<</if>> mom?<</say>>
<<say mc>>Yes... it kinda took a different turn to what I expected, but she's given her blessing. She just doesn't want to lose either of us... so no more threatening to steal me away.<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say kenna>>But I would, you know?<</say>>
<<say mc>>Would what?<</say>>
<<say kenna>>Have gone anywhere with you if it meant we could be together.<</say>>
<</if>>
<<narrate>>She pulls a towel out of her backpack and wipes the cum from her pussy, dabbing it on her tongue after.<</narrate>>
<<say kenna>>Maybe next time I can taste it?<</say>>
<<narrate>>She nuzzles up to you and you sit quietly together for a few minutes before heading off to clean up.<</narrate>>
<<button "Continue" homehub>>
<<lust kenna 10>>
<<like kenna 2>>
<<if $kenna.events.first == undefined>>
<<event kenna first lounge>>
<</if>>
<<if $krissy.events.anger == 1>>
<<event "krissy" "anger" 2>>
<</if>>
<<time 2>>
<</button>>
<<case "gembed">>
<<if $tempvar3 == "k">>
<<narrate>>She drags you down the halls.<</narrate>>
<<say mc>>Think she can fucking guilt us, does she?<</say>>
<<say kenna>>That's the spirit! We're gonna fuck right her bed. Just imagine the look on her face if she smells our lust on her sheets.<</say>>
<<elseif $tempvar3 == "a">>
<<say mc>>$krissy.refer's room?<</say>>
<<say kenna>>Oh, fucking let's go!<</say>>
<<narrate>>She basically drags you down the hall.<</narrate>>
<<think mc>>I know she's kinda accepting of the fact I'm fucking $kenna.refer now, but there's still something hot about sneaking into her room and getting some sort of revenge for the previous bullshit!<</think>>
<<else>>
<<say mc>>Come with me.<</say>>
<<narrate>>You grab her hand and start leading her away.<</narrate>>
<<say kenna>>What's wrong?<</say>>
<<say mc>>We're gonna fuck.<</say>>
<<say kenna>>Finally! But, where are you taking me?<</say>>
<<say mc>>$krissy.refer's room.<</say>>
<<say kenna>>Holy shit, you're bad!<</say>>
<</if>>
<<narrate>>You burst through the door, not even checking if $krissy.name is there, not even caring if she is. She throws off her top and immediately jumps on the bed, casting off her trousers as you quickly scramble to unburden yourself of clothing too.<</narrate>>
<<vid "kenna/gembed01.mp4">>
<<say kenna>>This is gonna be so fucking good.<</say>>
<<say mc>>I can't hold back...<</say>>
<<narrate>>She falls to all fours on the bed and looks back over at you.<</narrate>>
<<vid "kenna/gembed02.mp4">>
<<say kenna>>Don't even try to. Fuck me, $kenna.calls, fuck me now!<</say>>
<<cont "kennasex" "gembed01">>
<<case "gembed01">>
<<if $defaultRel == "family" || $defaulRel == "step">>
<<vid "kenna/gembed03s.mp4">>
<<narrate>>You enter her slowly, gently pulling her back and forth over your shaft and savoring the moment.<</narrate>>
<<say kenna>>Ohhh~ How's it feel to have your sister's pussy wrapped around your cock?<</say>>
<<narrate>>You gradually increase the pace, your libido screaming for more as you slide in and out of your $kenna.them.<</narrate>>
<<say kenna>>Pound your fucking sister's pussy.<</say>>
<<else>>
<<vid "kenna/gembed03n.mp4">>
<<say kenna>>Yeah~<</say>>
<<say kenna>>Mmm~ god!<</say>>
<<narrate>>You pause briefly as you admire the sight before you, your cock deep inside her. But eager to continue she twerks her ass up and down your cock.<</narrate>>
<</if>>
<<cont "kennasex" "gembed02">>
<<case "gembed02">>
<<vid "kenna/gembed04.mp4">>
<<say kenna "" "(Whispering)" "whisper">>Oh, my god. Your fucking cock is perfect. Mmm~ that hits my spots.<</say>>
<<narrate>>She grinds atop you, delighting in the feel of your cock inside her.<</narrate>>
<<say kenna "" "(Whispering)" "whisper">>You really like my little pussy, don't ya.<</say>>
<<cont "kennasex" "gembed03-2">>
<<case "gembed03-2">>
<<narrate>>She grins and then starts moving her pussy up and down your dick.<</narrate>>
<<vid "kenna/gembed04-2.mp4">>
<<say kenna>>Fffuck, yes<</say>>
<<narrate>>Her moans grow with intensity as her speed increases, and she thrusts her body down harder and harder.<</narrate>>
<<cont "kennasex" "gembed03">>
<<case "gembed03">>
<<vid "kenna/gembed05.mp4">>
<<narrate>>Out of breath, and closing on her orgasm, she whimpers with excitement while riding your cock.<</narrate>>
<<say kenna>>Ohh~<</say>>
<<narrate>>Her breathing is cracked and irregular as her body warms and the pleasure inside her draws closer to breaking point.<</narrate>>
<<cont "kennasex" "gembed04">>
<<case "gembed04">>
<<if $defaultRel == "family" || $defaulRel == "step">>
<<vid "kenna/gembed06s.mp4">>
<<say kenna>>Yes, I wanna see you cum all over your bratty sister's face!<</say>>
<<else>>
<<vid "kenna/gembed06n.mp4">>
<<say kenna>>Yes. Oh, my god. Use me until you cum!<</say>>
<</if>>
<<narrate>>You feel heat rising inside you, the pleasure culminating to a single point ready to erupt. As you slow down, trying to last but a bit longer, she isn't able to hold back. Her grip around your cock tightens and her face contorts as her orgasm consumes her.<</narrate>>
<<say mc>>Oh, fuck me!<</say>>
<<narrate>>Despite your efforts, you're too far gone.<</narrate>>
<<say mc>>I'm cumming!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "kenna/gembed07.mp4">>
<<narrate>>Hungering for your seed, she drags herself off the bed just in time to catch the first squirt on her cheek.<</narrate>>
<<say mc>>Fuck, yes, fucking, YES <<uc $kenna.refer>>!<</say>>
<<narrate>>Once you've finished, she wraps her lips around your cock and sucks all traces of your spunk away. You twitch and clench your ass cheeks as her tongue massages your post-nut-sensitive tip.<</narrate>>
<<cont "kennasex" "gembed05">>
<</replace>>
<<ScrollTo "replace">>
<<unlock "kenna" "gembed">>
<</button>>
</div>
<<case "gembed05">>
<<left2 "kenna/gembed01.jpg">>
<<say kenna>>That was incredible... and felt so good doing in her bed. Like... some sort of revenge.<</say>>
<<if $tempvar3 == "a">>
<<say mc>>I get what you mean It's almost... cathartic.<</say>>
<<say kenna>>Yeah, I feel so much better for having done that! I know it's kind of a hollow gesture... but I don't know, I just feel like we're somehow even now.<</say>>
<<narrate>>You spend some time making the bed and fluffing the pillows, trying to return things to their original state.<</narrate>>
<<else>>
<<say mc>>She pushed us too far.<</say>>
<<say kenna>>Wasn't she supposed to keeping an eye on us? How did we even get away with this?<</say>>
<<say mc>>She can't be everywhere.<</say>>
<<narrate>>You shrug.<</narrate>>
<</if>>
<<if $krissy.events.kenna == "lied">>
<<say mc>>I lied to her. I didn't want to... but I wanted off our backs. I told her we wouldn't do anything...<</say>>
<<say kenna>>She's too stubborn to listen... but I don't wanna have to keep this a secret.<</say>>
<<say mc>>Me neither. But let's just take it one step at a time.<</say>>
<<narrate>>She grips your hand with hers and rests her head on your shoulder.<</narrate>>
<<say kenna>>One step at a time.<</say>>
<<narrate>>You spend some time making the bed and fluffing the pillows, trying to return things to their original state.<</narrate>>
<</if>>
<<button "Continue" housestuff>>
<<lust kenna 10>>
<<like kenna 2>>
<<if $kenna.events.first == undefined>>
<<event kenna first gembed>>
<</if>>
<<if $krissy.events.anger == 1>>
<<event "krissy" "anger" 2>>
<</if>>
<<time 2>>
<</button>>
<<case "wank">>
<<narrate>>You decide to heed $kenna.name's advice and crank one out.<</narrate>>
<<think "mc">>It can't hurt, after all.<</think>>
<<narrate>>A few minutes in to your session, all the stress, confusions, and everything just fades away. You're lying on your bed, dick in hand, without a care in the world when $kenna.name comes into the forefront of your mind and your fantasies take over.<</narrate>>
<div class="fantasy">
<<left2 "kenna/fanta01.jpg">>
<<narrate>>She's bent over the bed, waggling her ass at you.<</narrate>>
<<say "kenna">>Yeah... you want me to strip, $kenna.calls? You want your $kenna.them to strip for you?<</say>>
<<say "mc">>God, fuck, yes, yes!<</say>>
<<say "kenna">>That's it, stroke it. Stroke it for me, $kenna.calls!<</say>>
<<say "mc">>Take those clothes off, nice and slow, $kenna.refer. Dance for me.<</say>>
<<narrate>>She starts stripping, throwing her top in your direction.<</narrate>>
<<left2 "kenna/fanta02.jpg">>
<<say "kenna">>You're a dirty boy, I love it.<</say>>
<<narrate>>You speed up as she pulls up her skirt, showing you her panties.<</narrate>>
<<say "mc">>Show me. Show me that dirty little pussy.<</say>>
<<say kenna>>Your $kenna.them's pussy? You're so bad!<</say>>
<<narrate>>Despite her words, she keeps going, slowly pulling her panties to once side.<</narrate>>
<<say "kenna">>I can't take it anymore, I want to taste it! I want to taste that dirty fat cock!<</say>>
<<left2 "kenna/fanta03.jpg">>
<<say "mc">>Fuck, fuck, that's good!<</say>>
<<narrate>>She cackles while bobbing her head up and down your shaft.<</narrate>>
<<say "mc">>Yes, $kenna.refer. Suck it. Make me blow!<</say>>
<<narrate>>She picks up the pace.<</narrate>>
<<say "mc">>Yes, fucking, yes, I'm close, I'm close!<</say>>
<<say "kenna">>Cum for me, $kenna.calls, all over my face!<</say>>
<<say "mc">>I'm gonna paint your face, $kenna.refer!<</say>>
</div>
<<say "kenna">>Oh, like a tiger or something?<</say>>
<<narrate>>As cum erupts from your rod, you bolt upright, at your doorway is $kenna.name staring at you with a devilish grin on her face.<</narrate>>
<<say kenna>>Enjoying yourself there, $kenna.calls?<</say>>
<<cont "kennasex" "wank02">>
<<case "wank02">>
<<say mc>>I was... fuck... what are you doing here?<</say>>
<<say kenna>>Just came to check up on you. Bad time?<</say>>
<<say mc>>What does it look like?<</say>>
<<think "mc">>Fuck, how long was she there?<</think>>
<<say kenna>>Like you're clearing your head.... both heads.<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say kenna>>Tell me, $kenna.calls. What were you thinking about?<</say>>
<<think mc>>Please.... just leave...<</think>>
<<say mc>>Nothing. Can we talk later?<</say>>
<<say kenna>>No.<</say>>
<<narrate>>She sits herself down next to you and pulls your head to face hers.<</narrate>>
<<left2 "kenna/sit01.jpg">>
<<say kenna>>You were having indecent fantasies about your poor innocent $kenna.them, weren't you?<</say>>
<<say mc>>Look, it doesn't mean anything, okay, I was just—<</say>>
<<narrate>>She shuts you up by pulling herself closer to you and kissing you, her tongue massaging yours as you struggle to keep up with the development. You sit stunned, not even reciprocating as you slowly process what's happening. She pulls back.<</narrate>>
<<say kenna>>Do you not feel the same, $kenna.calls?<</say>>
<<say mc>>I... I just... is this real?<</say>>
<<say kenna>>I've dropped so many hints. I've let you walk in on me so many times, I even hung around at your limit break hoping, but all I got was a pleasant dream before you awoke; $azul.name took your attention away from me. Yet not once until now had I thought my seductions were working. <<if $kenna.events.kylie == "watched">>Though, you certainly seemed to enjoy my performance with $kylie.name<<else>> You wouldn't even watch me with $kylie.name!<</if>>.<</say>>
<<say mc>>I...<</say>>
<<think "mc">>Wait... did we share a dream back then?<</think>>
<<say kenna>>Rest, we'll talk in the morning.<</say>>
<<think "mc">>The fuck? I hadn't even... I... all those times I dismissed her actions, she really was trying to seduce me?<</think>>
<<button "Sleep" sleep>>
<<lust "kenna" 40>>
<<event "kenna" "spy" 2>>
<</button>>
<<case "morningbj">>
<<narrate>>You brush your teeth, clean up and prepare for the day.<</narrate>>
<<think mc>>I can't believe what happened with $kenna.name last night...<</think>>
<<narrate>>As you open the door of your bathroom back to your room, $kenna.name stands before you, looking chipper.<</narrate>>
<<left2 "kenna/morn01.jpg">>
<<say kenna>>'Morning $kenna.calls. Ready to talk?<</say>>
<<say mc>>Uh... yeah...<</say>>
<<say kenna>>You know this is why me and mom fell out all those years ago, right?<</say>>
<<say mc>>Sorry, what is?<</say>>
<<say kenna>>She didn't like how close we were getting. She said she didn't want that kind of thing happening under her roof. So I left. <<if $girlsavailable.includes('sophia')>>Momma $sophia.name<<else>>Dad<</if>> seemed okay with it, you and me, that is... I suspect <<if $girlsavailable.includes('sophia')>>s<</if>>he even got a thrill out of the thought of it. But, <<if $girlsavailable.includes('sophia')>>s<</if>>he was unable to calm Mom down, so I left. I left you... and I'm sorry.<</say>>
<<say mc>>What... that's why?! I had no idea.<</say>>
<<say kenna>>It doesn't matter now. You feel the same, right?<</say>>
<<say mc>>I care for you deeply. I always have.<</say>>
<<say kenna>>Oh, yeah... for sure... but sexually?<</say>>
<<think mc>>That's... a more recent development.<</think>>
<<say mc>>Let's say your seduction attempts didn't go unnoticed, I just didn't realize they were deliberate...<</say>>
<<narrate>>She grins, and drops to her knees.<</narrate>>
<<cont "kennasex" "bj01">>
<<case "bj01">>
<<vid "kenna/bj01.mp4">>
<<narrate>>Throwing herself on your bed, she turns back and smiles at you sweetly.<</narrate>>
<<say kenna>>Let's make things official.<</say>>
<<say mc>>We're really doing this?<</say>>
<<say kenna>>I have waited for so long...<</say>>
<<cont "kennasex" "bj02">>
<<case "bj02">>
<<vid "kenna/bj02.mp4">>
<<narrate>>As you watch $kenna.name wrap her lips around your hard cock, a part of you is still trying to comprehend exactly how you got here.<</narrate>>
<<say mc>>That's so fucking good...<</say>>
<<narrate>>Her movements are divine, each one sending shock waves of pleasure reverberating through your entire body.<</narrate>>
<<cont "kennasex" "bj03">>
<<case "bj03">>
<<lust "kenna" 10>>
<<narrate>>She gestures you on to the bed.<</narrate>>
<<vid "kenna/bj03.mp4">>
<<narrate>>Her hair tickles your thighs, which in turn makes your balls tingle.<</narrate>>
<<say mc>>Fuuuck, yes.<</say>>
<<think mc>>Shit, if she keeps this up, I'm gonna blow within seconds!<</think>>
<<narrate>>You clench your ass cheeks as the pleasure starts to become too much.<</narrate>>
<<say mc>>I don't think I've—<</say>>
<<say krissy>>What the hell is going on here?!<</say>>
<<narrate>>You explode into $kenna.name's mouth as $krissy.name looks on with disgust. $kenna.name nearly chokes from the surprise.<</narrate>>
<<say krissy>>You! Out.<</say>>
<<say kenna>>We're adults, mom, you can't stop us.<</say>>
<<say krissy>>I'll deal with you later. Out.<</say>>
<<say kenna>>You know I've got like two hundred years on you, right?<</say>>
<<say krissy>>I'm still your fucking mother.<</say>>
<<say mc>>Please, let's not argue. Just... let me talk to $krissy.refer, okay?<</say>>
<<narrate>>$kenna.name throws up her hands in annoyance, grabs her top and leaves the room.<</narrate>>
<<unlock "kenna" "bj">>
<<cont "kennasex" "bj04">>
<<case "bj04">>
<<narrate>>She stands by the window and sighs deeply.<</narrate>>
<<left2 "krissy/kenna01.jpg">>
<<say krissy>>How long has this been going on?<</say>>
<<say mc>>Believe it or not, this is the first time we've done anything like this.<</say>>
<<say krissy>>I told her not to do this. It was my one rule. I wanted to protect you from this... this... corruption! But now, on this world and with your aspect, I never stood a chance.<</say>>
<<say mc>>I never wanted to hurt you, $krissy.refer.<</say>>
<<say krissy>>I know... but she did.<</say>>
<<say mc>>What?<</say>>
<<say krissy>>She and I have a... tumultuous relationship to say the least. I love her to bits, but even two hundred years wiser, she just enjoys getting under my skin.<</say>>
<<say mc>>I don't think that's what this is...<</say>>
<<say krissy>>Can you imagine what the others will say?<</say>>
<<say mc>>I don't think they'll mind.<</say>>
<<narrate>>She shoots you daggers.<</narrate>>
<<say krissy>>Maybe that's your lust aspect talking, but it's just not normal! You two grew up together in my house, for heaven's sake!<</say>>
<<say mc>>The things I've seen here, the things I've done, $krissy.refer... the people I've done... things aren't like they were back home. Here it's about freedom of expression. Maybe it is my aspect, maybe it's not, but there's no need to deny our feelings.<</say>>
<<narrate>>She scoffs.<</narrate>>
<<say krissy>>I'm moving into the hotel. I don't care if I have to see you fucking all of your harem simultaneously, I <b>will</b> stop her from getting her claws in you!<</say
>>
<<narrate>>She storms off.<</narrate>>
<<think mc>>The fuck...?<</think>>
<<narrate>>You poke your head out of the room, but $kenna.name is already gone.<</narrate>>
<<think mc>>I guess $kenna.refer didn't want to wait around. I'll catch up with her later. I'll let $krissy.refer cool off before I approach the subject with her again...<</think>>
<<run overrideSchedule('krissy', 0, 24, "Unavailable")>>
<<event "kenna" "spy" 3>>
<<cont "homehub" "" 1>>
<<case "peeping">>
<<narrate>>You can't help but notice the window's are wide open and you can even hear birds chirping outside as you sneak around her room.<</narrate>>
<<vid "kenna/peep01.mp4">>
<<narrate>>You'd never imagined her like this before, but now you're unable to keep your eyes off her.<</narrate>>
<<cont "kennasex" "peeping02">>
<<case "peeping02">>
<<vid "kenna/peep02.mp4">>
<<narrate>>Your cock throbs and pleas for release, but you daren't cross that line in here. You're already risking a lot.<</narrate>>
<<cont "kennasex" "peeping03">>
<<case "peeping03">>
<<vid "kenna/peep03.mp4">>
<<narrate>>The guilt starts to get the better of you. And while your dick certainly doesn't give a damn, you leave, feeling ashamed of yourself.<</narrate>>
<<unlock "kenna" "peep">>
<<think "mc">>I've peeped on others before... why do I feel so... dirty this time. Is it because of how close we were? She's been like a rock to me. I've never imagined her as a sexual being... and yet...<</think>>
<<narrate>>You pace down the hallway, unable to comprehend your own feelings.<</narrate>>
<<if $anna.events.relationship == "taboo" || $theodora.events.relationship == "taboo">>
<<think "mc">>I don't understand why this feels so different to what I've been willing to do with <<if $theodora.events.relationship == "taboo">>$theodora.name<</if>><<if $anna.events.relationship == "taboo" && $theodora.events.relationship == "taboo">> and <</if>><<if $anna.events.relationship == "taboo">>$anna.name<</if>>.
<</think>>
<<else>>
<<think "mc">>Why did I do that, and why did it feel so wrong?<</think>>
<</if>>
<<narrate>>After a while, you calm down. Remembering the council task, you leave it a few minutes then knock at her door.<</narrate>>
<<say "kenna">>Come in!<</say>>
<<cont "kennaanswers" "thetask">>
<</switch>><<end>>
<<narrate>>There's a tranquility to your dreams. You feel relaxed, happy, and at peace with the world. You feel more connected to your surroundings, and your companions, than you ever have before.<</narrate>>
<<vid "dreams/tranquil.mp4">>
<<narrate>>From the light steps an entity, a silhouette of someone you're unable to make out.<</narrate>>
<<say "mc">>Hello?<</say>>
<<say "f" "???">>You should not be here. How did you find me?<</say>>
<<say "mc">>I don't even know where here is. Who are you?<</say>>
<<say "f" "???">>Go, before you cannot.<</say>>
<<narrate>>You begin to rouse from your slumber, but you fight it, trying to stay asleep, trying to push for more information. But your efforts are in vain. Once you open your eyes, the dream is forgotten, and all you feel is tranquility... and hair.<</narrate>>
<<think "mc">>That felt so different to the last two breaks...<</think>>
<<narrate>>You look to your left, then jump out of bed with a start. $kenna.name was nestled up against you, her head on your chest. Your sudden moves wake her. She sits up and looks at you.<</narrate>>
<<left2 "kenna/wake01.jpg">>
<<say "kenna">>Good morning. Sleep well?<</say>>
<<say "mc">>What's going on? I thought I fell asleep in your room.<</say>>
<<say "kenna">>I came back for you. There was no way I was letting you sleep in that cum-filled sweaty mess, and there's no way I was sleeping in it either. I figured this was just easier.<</say>>
<<say "mc">>I... are you okay? I didn't... I didn't do anything to you, did I?<</say>>
<<narrate>>She grins mischievously.<</narrate>>
<<say "kenna">>Oh, $kenna.calls, I think you probably got me pregnant.<</say>>
<<say "mc">>I am so sorry, I can't control—<</say>>
<<narrate>>She bursts out laughing.<</narrate>>
<<say "kenna">>You're so fun to wind up. No, you didn't touch me.<</say>>
<<think "mc">>But that dream felt so real...<</think>>
<<narrate>>She gives a little shrug and rolls her eyes.<</narrate>>
<<say "kenna">>So, back to the important stuff, how do you feel?<</say>>
<<say "mc">>Incredible... like way more powerful.<</say>>
<<say "kenna">>$kenzie.name was right, as always. We didn't actually lift the limit on your gateway.<</say>>
<<say "mc">>What? Then how—<</say>>
<<say "kenna">>We did it on $voice.name's.<</say>>
<<say "mc">>That... doesn't make sense, did she also undergo a limit break?<</say>>
<<say "kenna">>No... somehow, you're feeding from both gateways, and while she's still very much connected and in charge, she's only getting a trickle of the power.<</say>>
<<narrate>>You just stare at her blankly.<</narrate>>
<<left2 "kenna/wake02.jpg">>
<<say "kenna">>Oh, my god, $kenna.calls, don't stare so hard, you're making me blush.<</say>>
<<narrate>>You avert your gaze, slightly embarrassed. Again, she bursts out laughing.<</narrate>>
<<say "kenna">>You're gonna need to get over that soon. Anyway, $kenzie.name awaits you. Finish her task and then we'll discuss next steps.<</say>>
<<narrate>>As she leaves, you can't help but pay attention to the contours of her ass, and its almost-hypnotic swagger.<</narrate>>
<<think "mc">>Wait, was she watching me during the limit break? That's gotta be because of the council, right? <<if $anna.corruptmax >= 125>>She hasn't said anything about $anna.name, though, so maybe she wasn't there?<</if>><</think>>
<<cont "homehub">><<set _no = 1>>
<<if $kenna.events.spy >= 3>>
<<set _no = 0>>
<</if>>
<<tracker "kenna" _no>>
<<if $tasks.avagreet != undefined>>
<<step "Greet $kenna.name" "At Gateway B.">>
<<elseif !$completeTasks.includes('salimpower') && $tasks.salimpower == undefined>>
<<step "Council Tasks" "Start Salim's council task.">>
<<elseif !$completeTasks.includes('powerone') && $tasks.powerone == undefined>>
<<step "Power Underwhelming" "Ask her how to increase your power.">>
<<elseif $kenna.events.seductress == undefined>>
<<step "Powering Up" "Gain at least one power using power control at Gateway B.">>
<<elseif !$completeTasks.includes('kennaattr') && $tasks.kennaattr == undefined>>
<<step "Her Task" `"Start her council task by talking to "+$kp.name+"."`>>
<<elseif !$completeTasks.includes('fyodr')>>
<<step "Fydor's Task" "Complete Fyodr's council task.">>
<<elseif $neweden != true>>
<<step "Reconnect with New Eden" `"Follow the story tasks."`>>
<<elseif !$completeTasks.includes('azulsex2') >>
<<step "Central Eruption" `"Finish "+$azul.name+"'s task."`>>
<<elseif !$completeTasks.includes('kennaattr') >>
<<step "Attractive Hub" `"Finish her task."`>>
<<elseif !$completeTasks.includes('fivek') >>
<<step "Council Tasks" "Finish the council tasks">>
<<elseif !$completeTasks.includes('kylietrainer')>>
<<step "$kylie.name's Training" "Check up on their training sessions.">>
<<elseif $kylie.mature == true && !$completeTasks.includes('kylietrainer2')>>
<<step "Revert $kylie.name's Form" `"Transform her to her original form."`>>
<<elseif !$completeTasks.includes('kylietrainer2')>>
<<step "$kylie.name's Training" "Check up on their training sessions.">>
<<elseif $kylie.altsched != true>>
<<step "Progress the story" "This will trigger automatically if you continue to follow the story tasks.">>
<<elseif $gsec.events.kyler == undefined || $gsec.events.kyler < 2>>
<<step "Progress with $krissy.name" `"Progress "+$krissy.name+"'s substory to unlock the next step."`>>
<<elseif $kenna.events.spy == undefined>>
<<step "Clear Mind" "Before bed, clear you mind.">>
<<elseif $kenna.events.spy == 2>>
<<step "Morning Glory" "See what the morning brings...">>
<<elseif $kenna.events.spy == 3>>
<<step "Fractured Family" `"Talk to her about "+$krissy.name+"."`>>
<<elseif $krissy.events.relationship == undefined>>
<<step "Progress with $krissy.name" `"Progress "+$krissy.name+"'s substory to unlock the next step."`>>
<<elseif $krissy.events.kenna == "friends" && $kenna.events.upset == undefined>>
<<step "Breaking the News" `"Inform her you've told "+$krissy.name+" you wont' be taking things further."`>>
<<elseif $krissy.events.kenna == "taboo" && $kenna.events.first == undefined>>
<<step "Freedom" `"Find "+$kenna.name+". It's finally time!"`>>
<<elseif $krissy.events.kenna == "lied" && checkUnlocks('movie', 'gembed', 'kenna') == false>>
<<step "Petty Revenge" `"Find "+$kenna.name+" and take her back to "+$krissy.name+"'s room"`>>
<<elseif $krissy.events.kenna == "lied" && $kenna.events.cosy == undefined>>
<<step "Getting Cosy" `"Hangout with her."`>>
<<elseif $krissy.events.kenna == "lied" && $kenna.events.cosy == 1>>
<<step "Try Again" `"Hangout with her."`>>
<<elseif $krissy.events.kenna == "lied" && $kenna.events.cosy == 2>>
<<step "Annoyed" `"Check back with her."`>>
<<elseif $krissy.events.kenna == "lied" && $kenna.events.cosy == 3>>
<<step "Putting on a Performance" `"Perform with her at "+$stripname+"."`>>
<<elseif $krissy.events.relationship == "taboo" && ($krissy.sex == undefined || $krissy.sex == 0) && $krissy.events.kenna != "friends">>
<<step "Progress with $krissy.name" `"Progress "+$krissy.name+"'s substory to unlock the next step."`>>
<<elseif $krissy.events.kenna == "taboo" && $krissy.events.anger != undefined && $krissy.events.anger < 4>>
<<step "Progress with $krissy.name" `"Progress "+$krissy.name+"'s substory to unlock the next step."`>>
<<elseif $kenna.events.upset == 1>>
<<step "Where's $kenna.name" `"Ask "+$krissy.name+" or "+$kp.name+" if they know where she is."`>>
<<else>>
<<movielist kenna>>
<</if>>
<</tracker>><<switch $tempvar>>
<<case "task">>
<<left2 "kenzie/meeting02.jpg">>
<<say "kenzie">>Finally ready for me, huh?<</say>>
<<narrate>>$kenzie.name grins.<</narrate>>
<<say "mc">>Yeah... I guess. So... what's your role on the council?<</say>>
<<say "kenzie">>So, I'm not like the rest of them. They sit to ensure the travelers are safe. While indirectly I certainly contribute to that, I have less interest in the day-to-day, other than when something fun like you comes along, I find the whole thing rather drab. My job is purely to ensure the rest of the council don't become corrupt.<</say>>
<<say "mc">>So kinda like a watchman?<</say>>
<<say "kenzie">>Sort of. They call people like me progeny, I am among the oldest travelers to ever exist.<</say>>
<<say "mc">>Progeny is an interesting term...<</say>>
<<say "kenzie">>This conversation bores me. Ask my daughter if you want to know more.<</say>>
<<say "mc">>Right... uhh... how do I speak to your daughter?<</say>>
<<say "kenzie">>She lives with you, I'm sure you can figure out how to spark up a conversation.<</say>>
<<say "mc">>Sorry, who is your daughter?<</say>>
<<say "kenzie">>$kayla.name... you didn't know? Why do you think I had any interest in your world to start with? Sure, you are fun to play with, but if not for checking in on her from time to time, I'd never have found you.<</say>>
<<say "mc">>$kayla.name is your daughter?! Wow... she never said anything.<</say>>
<<say "kenzie">>Let's move on. This whole task thing is boring, but the council voted on it. You are an enigma, your plane has two patrons, two gateways, you are receiving power from both, and you have two aspects. You are a walking contradiction and I have no idea how. At least, not yet. Though there is one thing I have noticed is how similar your power is to $voice.name's.<</say>>
<<think "mc">>Does $kayla.name even know her mom serves on the council?<</think>>
<<if !$completeTasks.includes('shareddreams')>>
<<say "mc">>Two aspects?<</say>>
<<say "kenzie">>You don't recall me sucking your dick in the dreamscape?<</say>>
<<say "mc">>Yes... how did you know about that dream?<</say>>
<<say "kenzie">>Because I was there. Impressive you were able to include me, I must say. You have the same aspect as $voice.name, as well as your lust aspect.<</say>>
<<task "shareddreams">>
<</if>>
<<say "mc">>Did I like inherit hers or something when we fucked? But... I haven't received anyone else's...<</say>>
<<say "kenzie">>I think there's more to it than that. It's like you both started with the same power signature, but cultivated it into something different.<</say>>
<<say "mc">>Uh... power signatures?<</say>>
<<say "kenzie">>Powers are unique, just like DNA. But yours and $voice.name's are too similar to be a coincidence. If you were siblings, then maybe... but it doesn't make any sense. Next, I've learned the passage of time on your home world and the hub flows the same.<</say>>
<<say "mc">>Is... that weird?<</say>>
<<say "kenzie">>If this hub was founded for you, no. But it wasn't, it was founded for $voice.name. Two patrons from the same world, or at least worlds with the same sense of time? The odds of that are so statistically unlikely it's basically impossible to be chance.<</say>>
<<say "mc">>I hadn't actually asked $voice.name where she was from...<</say>>
<<say "kenzie">>Well, same as you. Then there's the fact this happens to be a hub where my daughter resides? At first I thought you a fun toy, and I very much still intend to play with you, but I think your eccentricities may be part of something bigger.<</say>>
<<say "mc">>Well given how I was brought here by $founder.name I guess it's part of her plan?<</say>>
<<left2 "kenzie/meeting03.jpg">>
<<say "kenzie">>Maybe but she didn't know who was on the council, just that it existed. Anyway enough talk about that, let's move on to an equally boring subject; my task. Honestly, I think this whole thing is a waste of time, but the rest of them insisted we each vet you in our own way. It must be obvious to you that we're preparing you to face $founder.name with these tasks.<</say>>
<<say "mc">>If nothing else, I have grown and learned a lot through these tasks.<</say>>
<<narrate>>She cackles.<</narrate>>
<<say "kenzie">>Yeah, okay, suck-up! So, along the same vein, I just want you to accumulate some wealth. You're going to need it for what we have planned next.<</say>>
<<say "mc">>And what's that?<</say>>
<<say "kenzie">>You'll see. For now, use what you've learned thus far to accumulate five thousand resources.<</say>>
<<say "mc">>That's a lot, why—<</say>>
<<say"kenzie">>Ugh. I'm bored now, I was gonna fuck you, but you've bored me to tears with all this talk.<</say>>
<<say "mc">>Hey I can still—<</say>>
<<say "kenzie">>Not in the mood now. Maybe later, think of me as you sleep.<</say>>
<<narrate>>She clicks her fingers and you are zooped away.<</narrate>>
<<think "mc">>Shit, I didn't get laid and she's just left me with more questions!<</think>>
<<button "Continue" homehub>>
<<task "progeny">>
<<task "fivek">>
<<time 1>>
<<dreamer "kenzie">>
<</button>>
<<case "meanwhileshared">>
<<narrate>>$kenzie.name is waiting impatiently in her garden when a stranger approaches.<</narrate>>
<<think kenzie>>Which of my foolish sisters is it...<</think>>
<<left2 "ss/intro01.jpg">>
<<say kenzie>>Who the fuck are you? Where is my sister?<</say>>
<<say ss>>I am <<textbox "$ss.name" $ss.name>>, I am here on behalf of your sister.<</say>>
<<say kenzie>>She couldn't even be bothered to show up? And you, how the fuck did you come to Prime? This is sacred land, I should cut you down here and now.<</say>>
<<say ss>>She has granted me passage here.<</say>>
<<narrate>>$kenzie.name remains silent a moment, but seems to be concentrating intently on <span class='ssname'>$ss.name</span>. After a moment passes, she cackles.<</narrate>>
<<say kenzie>>Oh, <b>that</b> sister. Took me a moment to recognize her power. How the hell did you convince that lazy oaf to do anything?<</say>>
<<say ss>>Our council learned long ago that the best way to make her do anything, is to show the alternative would take even more effort.<</say>>
<<narrate>>$kenzie.name bursts out laughing.<</narrate>>
<<say kenzie>>That seems about right. Given the circumstance, and the fact you're only here on borrowed power, I'll forgive the transgression... but it's a one time thing. So, what do you want?<</say>>
<<say ss>>To broker peace. $founder.name's plan will plunge the progeny into chaos. We want you to stop her.<</say>>
<<say kenzie>>You don't realize this very meeting is a distraction she's orchestrated, do you? She's going to attack Central at any moment.<</say>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#textbox-ssname').change(function() {
$('.ss .speakername').html($(this).val());
$('.ssname').html($(this).val());
})
})
<</script>>
<</switch>><<scene>>
<<switch $tempvar>>
<<case "r00">>
<<say kenzie>>Just you and me? I can't say I'm not flattered, but I thought you were a little more adventurous than that.<</say>>
<<say mc>>What better way to seal the deal then... well, sealing the deal?<</say>>
<<narrate>>She rolls her eyes, then clicks her fingers. The background swirls into nothingness and $kenna.name vanishes from view. A moment later walls rush into position, and a ceiling falls from overhead. You feel the comfort of a bed supporting your back and you look around as everything clicks into position forming a complete room around you.<</narrate>>
<<say mc>>That's still disconcerting...<</say>>
<<say kenzie>>I'm sure you won't be bothered by it for much longer...<</say>>
<<narrate>>She gives you a sultry grin as she starts to unbutton her top.<</narrate>>
<<cont "kenziesex" "r01">>
<<case "r01">>
<<vid "kenzie/r01.mp4">>
<<say kenzie>>You know, I always enjoy our private moments together...<</say>>
<<narrate>>She casts off her top as she continues.<</narrate>>
<<say kenzie>>You've always been the fun to toy with. I'd never have imagined you'd become so... well, pivotal.<</say>>
<<narrate>>She drops her skirt and starts crawling toward you.<</narrate>>
<<say kenzie>>But you at least know your place...<</say>>
<<narrate>>She mounts you and smirks.<</narrate>>
<<say kenzie>>...beneath me.<</say>>
<<cont "kenziesex" "r02">>
<<case "r02">>
<<narrate>>She giggles at her own pun.<</narrate>>
<<vid "kenzie/r02.mp4">>
<<say kenzie>>There we go.<</say>>
<<narrate>>She starts to undress you, teasing you with her movements as she pulls her head close to yours.<</narrate>>
<<say kenzie>>Oh, you smell so nice.<</say>>
<<narrate>>You're already rock hard, and holding back your base instincts as she continues to tease.<</narrate>>
<<say kenzie>>I love this material on you. It's so soft on your skin.<</say>>
<<narrate>>She gives you a smug grin as she removes her bra.<</narrate>>
<<say mc>>Please...<</say>>
<<say kenzie>>Good boy.<</say>>
<<cont "kenziesex" "r03">>
<<case "r03">>
<<narrate>>She pulls out your cock and after only a few strokes lowers her head to it.<</narrate>>
<<vid "kenzie/r03.mp4">>
<<say kenzie>>Mhmm~ that dick's so nice in my mouth.<</say>>
<<narrate>>She sucks and teases your cock, savoring every moment as she watches your squirm with anticipation.<</narrate>>
<<cont "kenziesex" "r04">>
<<case "r04">>
<<vid "kenzie/r04.mp4">>
<<say kenzie>>What about between my tits?<</say>>
<<narrate>>She wraps her tits around your dick and slowly moves up and down, punctuating the motion every few moments by taking you back into her mouth.<</narrate>>
<<think mc>>Fuck if she continues like this I won't last...<</think>>
<<cont "kenziesex" "r05">>
<<case "r05">>
<<vid "kenzie/r05.mp4">>
<<narrate>>As if reading your thoughts she looks up at you, and gives you a sly smile.<</narrate>>
<<say kenzie>>let me get these panties off.<</say>>
<<narrate>>She sits back on top of you as you yearn to be inside her.<</narrate>>
<<say kenzie>>You want to be inside me?<</say>>
<<narrate>>You nod as she rubs her vulva over your shaft.<</narrate>>
<<say kenzie>>More than anything?<</say>>
<<think mc>>Right at this minute? Abso-fucking-lutely!<</think>>
<<narrate>>You nod again, enamored by her lustful motions.<</narrate>>
<<cont "kenziesex" "r06">>
<<case "r06">>
<<narrate>>She pushes herself down on to your cock with a loud moan.<</narrate>>
<<vid "kenzie/r06.mp4">>
<<narrate>>She bounces herself up and down. Gradually increasing the pace as the two of you become increasingly lustful.<</narrate>>
<<say kenzie>>Ohhh~ yeah.<</say>>
<<narrate>>The bed springs start to scream in agony under the strain as she starts going harder and harder, a wild determination across her face as she rushes you toward climax.<</narrate>>
<<say kenzie>>Oh, my god, yes, yes, yes, yes!<</say>>
<<cont "kenziesex" "r07">>
<<case "r07">>
<<vid "kenzie/r07.mp4">>
<<say kenzie>>That's a perfect dick, babe. You fuck me so good.<</say>>
<<narrate>>Her playful attitude is somewhat replaced by her own desire for pleasure as she moves away from teasing you, and speeding you to climax, and instead focuses on bringing about her own.<</narrate>>
<<say kenzie>>Massage that ass.<</say>>
<<narrate>>She moans and squeals with delight as she draws closer and closer to her target.<</narrate>>
<<say kenzie>>I want your hands all over my body.<</say>>
<<narrate>>She falls forward on to the bed as she succumbs, her muscles tighten around you, and she lights out a visceral squeal of delight as the orgasm courses through her.<</narrate>>
<<cont "kenziesex" "r08">>
<<case "r08">>
<<narrate>>Quick to take charge, you pull her to the edge of the bed and slide back inside her.<</narrate>>
<<vid "kenzie/r08.mp4">>
<<say kenzie>>Oh, yes babe. Oh~ yeah. I want to feel your cum. I want to all of it. I want to see it all over my pussy. I've been thinking about it all day.<</say>>
<<narrate>>You've nothing left to hold back. You feel the pulsing of the pleasure from within you as it races toward the tip of your penis.<</narrate>>
<<if $replay == true>>
<<choices "Cum Inside?">>
<<link "Yes" kenziesex>><<temp "r10">><<link>><br>
<<link "No" kenziesex>><<temp "r09">><<link>>
<</choices>>
<<elseif $tempvar2 == "champion">>
<<cont "kenziesex" "r10">>
<<else>>
<<cont "kenziesex" "r09">>
<</if>>
<<case "r09">>
<<vid "kenzie/r09.mp4">>
<<narrate>>You pull out at the last moment and with a satisfying moan, the pleasure explodes from your dick.<</narrate>>
<<say kenzie>>Oh yes, yes. Oh~ oh, my god. I love it when you paint me like that.<</say>>
<<unlock "kenzie" "r">>
<<if $tempvar2 == "dream">>
<<taskdone "astradream">>
<<button "Sleep" sleep>><</button>>
<<else>>
<<cont "council" "side02">>
<</if>>
<<set $tempvar2 = "">>
<<case "r10">>
<<say kenzie>>Cum inside me. Fill my dirty little pussy with your seed!<</say>>
<<narrate>>Unable to control yourself you explode inside her.<</narrate>>
<<say mc>>Holy fucking shit, yes, yes, yes, yes, yes!<</say>>
<<center "kenzie/came01.jpg">>
<<narrate>>You cry out with a deep pleasure as an unknown feeling takes hold of you. A pleasure deep in your core, a feeling of want, desire, of lust, all mixed into a ball of unprecedented pleasure as your warm goo fills her up.<</narrate>>
<<say kenzie>>Mmm~ that's it babe. Let it in. We are one... you are mine. Just let it happen.<</say>>
<<narrate>>You feel the alien sensation growing inside you, making its way through your entire body. Your thoughts become clouded, and you're unable to concentrate fully. No matter what you try, all your thoughts return to $kenzie.name and how best you can make her happy.<</narrate>>
<<say mc>>I... what's... I need you.<</say>>
<<say kenzie>>Of course you do, babe. You're mine now. Mine to fuck whenever I want, to play with, to toy with or to cast aside when I'm bored. You will do whatever I say, whenever I say. All those other women? They mean nothing to you anymore. I'm the only one you need.<</say>>
<<say mc>>Yes, you're all I want.<</say>>
<<narrate>>She grins darkly, your entire being now fully in service of her. Your feelings and desires for anyone else all but a distant memory. $kenzie.name is your everything, you wish for nothing more than to be by her side.<</narrate>>
<<set $tempvar2 = "">>
<<unlock "kenzie" "r">>
<<cont "council" "thrall">>
<<case "kenaz">>
<<narrate>>You arrive in Central, but everything feels alien. It's almost like you're in a jungle... yet it feels surreal and everything has a strange hue.<</narrate>>
<<left2 "kenzie/azul01.jpg">>
<<think "mc">>Shit I don't care how weird this situation looks, I want in on that!<</think>>
<<say "kenzie">>Ah, $name, just in time.<</say>>
<<say "mc">>Oh, you looking for some help there, ladies?<</say>>
<<narrate>>The two of them cackle.<</narrate>>
<<say "azul">>It's a miracle you can handle one of us, though barely.<</say>>
<<say "kenzie">>Just sit back and watch, this is a reward for your work.<</say>>
<<say "mc">>I'd sooner be sandwiched between you.<</say>>
<<say azul>>Perhaps when you're a little more powerful... for now, just show us your enjoyment for our performance by stroking that big dirty cock of yours.<</say>>
<<think "mc">>I'd sooner be in there, but sex with either of them always feels dangerous... addictive almost... I guess I should probably heed their warning. But... do I just wanna watch?<</think>>
<div id="replace">
<<choices>>
<<link "Watch" kenziesex>>
<<temp "kenaz01">>
<</link>><<if $replay == false>><br>
<<link "Leave">>
<<replace "#replace">>
<<say "mc">>If I'm not involved, I'm not interested.<</say>>
<<narrate>>There's a look of disgust from $azul.name.<</narrate>>
<<say "kenzie">>Your loss. Let's get on with the boring stuff, then.<</say>>
<<narrate>>She clicks her fingers and Central returns to the form you're used to.<</narrate>>
<<cont "counciltasks" "completed">>
<</replace>>
<<temp "completed">>
<</link>><</if>>
<</choices>>
</div>
<<case "kenaz01">>
<<narrate>>You sit yourself down on a conveniently placed chair and unzip as $azul.name lowers her face down to $kenzie.name's pussy.<</narrate>>
<<vid "kenzie/kenaz01.mp4">>
<<say "kenzie">>You lick that pussy so good.<</say>>
<<say "kenzie">>Such a pretty little slut with a pussy in her mouth.<</say>>
<<narrate>>You fight back the temptation to take $azul.name from behind as her ass glistens invitingly.<</narrate>>
<<cont "kenziesex" "kenaz02">>
<<case "kenaz02">>
<<narrate>>$azul.name holds her hand out a black dildo seems to materialize from nowhere.<</narrate>>
<<vid "kenzie/kenaz02.mp4">>
<<say "kenzie">>Yeah... oh, fuck yes!<</say>>
<<say "kenzie">>Oh~ that pussy's gripping on that toy so much.<</say>>
<<narrate>>You stroke in time with $azul.name's movement, wishing that dildo was your cock.<</narrate>>
<<cont "kenziesex" "kenaz03">>
<<case "kenaz03">>
<<vid "kenzie/kenaz03.mp4">>
<<say "kenzie">>Shake that ass in my face, that's so fucking hot.<</say>>
<<say "mc">>Fuck, yes it is!<</say>>
<<narrate>>You feel yourself craning your neck as you jerk off, trying to get the best view.<</narrate>>
<<cont "kenziesex" "kenaz04">>
<<case "kenaz04">>
<<vid "kenzie/kenaz05.mp4">>
<<say "azul">>I'm gonna cum, gonna cum, gonna cum.<</say>>
<<say "kenzie">>Oh, come all over this!<</say>>
<<say "kenzie">>You're such a good little whore. I love watching that pussy cum.<</say>>
<<narrate>>You start to fidget on your seat as your hand glides over your head, struggling to contain the building pleasure.<</narrate>>
<<cont "kenziesex" "kenaz05">>
<<case "kenaz05">>
<<narrate>>Another toy seems to appear from nowhere.<</narrate>>
<<vid "kenzie/kenaz06.mp4">>
<<say "kenzie">>That feels so fucking good.<</say>>
<<say "kenzie">>Go faster, go faster, give me more, give me more.<</say>>
<<narrate>>Almost as if following her instructions, you stroke faster and faster, and just as she screams out in climax, you blow your load.<</narrate>>
<<think "mc">>Fuck... wanking has never felt that good...<</think>>
<<narrate>>You look back up at them, their sweaty bodies embraced and their lips locked, and your cock immediately springs back to life.<</narrate>>
<<center "kenzie/azul02.jpg">>
<<narrate>>They look over at you and giggle.<</narrate>>
<<say "azul">>Someone definitely enjoyed the show.<</say>>
<<say "kenzie">>Best fap of your life?<</say>>
<<say "mc">>Yeah... fuck...<</say>>
<<narrate>>The two cackle.<</narrate>>
<<say "kenzie">>Okay, on with the boring stuff now, I guess.<</say>>
<<narrate>>She clicks her fingers and Central returns to the state you're used to.<</narrate>>
<<unlock "kenzie" "azul">>
<<unlock "azul" "kenzie">>
<<button "Continue" counciltasks>>
<<temp "completed">>
<</button>>
<<case "dream101">>
<<narrate>>She's on her knees, lapping at your cock within seconds.<</narrate>>
<<vid "kenzie/dreambj.mp4">>
<<say "mc">>Fuck me... yeah, I'm starting to remember... specifically a hunger for more!<</say>>
<<say "kenzie">>Well, better not let either one of us go hungry, huh?<</say>>
<<narrate>>She lays back on the sofa, spreading her lips invitingly.<</narrate>>
<<cont "kenziesex" "dream102">>
<<case "dream102">>
<<narrate>>You slap her clit with your dick a few times before sliding inside her.<</narrate>>
<<vid "kenzie/dream02.mp4">>
<<say "kenzie">>Oh, my god.<</say>>
<<say "kenzie">>That feels so good.<</say>>
<<say "kenzie">>I love that so much.<</say>>
<<cont "kenziesex" "dream103">>
<<case "dream103">>
<<vid "kenzie/dream03.mp4">>
<<say "kenzie">>You're gonna make me cum again.<</say>>
<<narrate>>She squeals with delight as you pound her from behind.<</narrate>>
<<say "mc">>Yes, yes, you like that, you like that cock?<</say>>
<<cont "kenziesex" "dream104">>
<<case "dream104">>
<<vid "kenzie/dream04.mp4">>
<<narrate>>She bounces up and down on your cock, out of breath and sweaty, but determined to bring about your climax while smiling.<</narrate>>
<<say "kenzie">>I can't even... oh, god.<</say>>
<<say "kenzie">>Your cock feels so fucking good in me!<</say>>
<<narrate>>Sensing you're near your limit, she pulls away before burying your cock between her tits.<</narrate>>
<<cont "kenziesex" "dream105">>
<<case "dream105">>
<<vid "kenzie/dream05.mp4">>
<<say "kenzie">>Being a slut for you is so much fun.<</say>>
<<say "kenzie">>I want your cum so bad. Yeah, give me your load. Yes, yeah, I want you to cum on my tits.<</say>>
<<say "mc">>Oh, fuuuuck!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "kenzie/dream06.mp4">>
<<narrate>>You explode between her tits.<</narrate>>
<<say "mc">>Fuck, fuck, fuck, FUCK!<</say>>
<<narrate>>She quickly gobbles down your shaft, taking every last drop of cum you have remaining.<</narrate>>
<<say "mc">>Fucking hell!<</say>>
<<narrate>>She gulps for dramatic effect, then cheerfully laughs.<</narrate>>
<<say "kenzie">>I do hope you'll think of me in your dreams more often... until next time.<</say>>
<<narrate>>She blows you a kiss as your vision gently blurs into nothingness.<</narrate>>
<<unlock "kenzie" "dream1">>
<<button "Continue" sleep>>
<<temp "focused">>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<</switch>><<scene>>
<<set _img = getFolder('kleio') + "/$location01.jpg">>
<<switch $tempvar>>
<<case "festivalgo">>
<<narrate>>Still naked, and your cum rolling down her cheek, she gives you a satisfied grin.<</narrate>>
<<left2 "kleio/f01.jpg">>
<<say kleio>>So... before my sudden burst of... desire... I had a thought.<</say>>
<<say mc>>Does it involve more events like this?<</say>>
<<say kleio>>Haha! That's a given. But no, I'll play at your festival.<</say>>
<<say mc>>That'd be great.<</say>>
<<say kleio>>Well, I kinda misunderstood you earlier so it's kinda like an apology or peace offering... though I think there's something more I can do there too...<</say>>
<<say mc>>Like an olive branch? It's really not needed. I'd be happy for you to, of course, but don't feel you need to; it's not like we're on bad terms.<</say>>
<<say kleio>>Those words, and the fact you've always treated me as $kleio.name and not Corza is why I'm happy to do it... though what do you mean by olive branch?<</say>>
<<say mc>>Sorry, it's an idiom on my world meaning a peace offering. And what do you mean by Corza? That rings a bell...<</say>>
<<say kleio>>Corza Toolah is my stage name.<</say>>
<<narrate>>She laughs as your expression remains unfazed.<</narrate>>
<<say kleio>>Yeah, that face tells me you really were fucking me for me... and not just because I'm famous. I don't mean to sound pretentious, but attaching my name to the festival will see its popularity increase.<</say>>
<<say mc>>Great, I really appreciate it! I'll let $harley.name know.<</say>>
<<notice>>$kleio.name will now perform at the festival. This has a major benefit to hype.<</notice>>
<<button "Continue" housestuff>>
<<set $location = "lounge">>
<<like "kleio" 4>>
<<event "kleio" "olive" 1>>
<<event "kleio" "fest">>
<<set $festival.stats.hype += 20>>
<<time 1.5>>
<</button>>
<<case "nothome">>
<<say "val">>Mom's not home, is there something else you wanted to do?<</say>>
<<if $kleio.events.attempts != undefined && $kleio.events.attempts > 1 && $kleio.events.upset == undefined>>
<<left2 "val/push.jpg">>
<<think "mc">>She's been unavailable for a while now, is everything okay?<</think>>
<<say "val">>Oh, yeah, for sure. She's just busy with work, sometimes she'd be gone for months.<</say>>
<<if $kleio.events.eat == "push">>
<<think "mc">>Right, about that, what exactly does she do?<</think>>
<<say "val">>She still didn't tell you even after my... uhhh... episode?<</say>>
<<think "mc">>No...<</think>>
<<say "val">>If she don't want you to know, and you somehow still haven't figured it out, it's not for me to say.<</say>>
<<think "mc">>I have some theories...<</think>>
<<say "val">>This is weird; people think I'm just talking to myself. It's between you and my mom, alright? I know you're not using me for her anymore, so I don't want to get involved. But, I'll ask her to let you know when she's back.<</say>>
<<think "mc">>Right, of course. Thanks, $val.name.<</think>>
<<say "val">>So, you wanna do something else?<</say>>
<<event "kleio" "waiting" 4>>
<<elseif $kleio.events.eat == "drop">>
<<think "mc">>Huh, right okay. Will she be back soon?<</think>>
<<say "val">>Yeah, just a few days this time I think. I'll ask her to let you know when she's back.<</say>>
<<think "mc">>Thanks, $val.name.<</think>>
<<say "val">>Anyway, people are starting to think I'm some crazy person sat here talking to myself. You wanna do something else?<</say>>
<<event "kleio" "waiting" 4>>
<</if>>
<</if>>
<<eventdone "kleiowhere">>
<<choices>>
<<link "Wander" riding>>
<<temp "own2">>
<</link>>
<br>
<<link "Disconnect" "yourroom">><</link>>
<</choices>>
<<case "busy">>
<<narrate>>The runner returns a few minutes later explaining she's unavailable.<</narrate>>
<<cont "gatewayb">>
<<case "waiting">>
<<if debug == true>>
<div class="debug">
<<button "Push" kleioanswers>>
<<event "kleio" "eat" "push">>
<</button>>
<<button "Drop" kleioanswers>>
<<event "kleio" "eat" "drop">>
<</button>>
</div>
<</if>>
<<narrate>>You head out of the shower and back in to your room, only to find $kleio.name waiting for you.<</narrate>>
<<left2 "kleio/morn01.jpg">>
<<say "kleio">>I think you took that shower too soon, because we're about to get dirty!<</say>>
<<if $kleio.events.eat == "push">>
<<think "mc">>Fuck, I just want to push her down and fuck her brains out right now, but I said I was gonna push her for more info, so I'd better stave off the temptation... for now.<</think>>
<<say "mc">>Fuck yes. But first, where have you been, what exactly is it you do?<</say>>
<<say "kleio">>Can't we just fuck?<</say>>
<<say "mc">>Definitely, but I need to know what you're keeping from me.<</say>>
<<left2 "kleio/morn02.jpg">>
<<narrate>>She sighs and looks at you a little disappointed.<</narrate>>
<<say "kleio">>What is it you think I do?<</say>>
<<say "mc">>You're some sort of celebrity on your world, and need to go on trips for a while... are you an actor?<</say>>
<<say "kleio">>No... and it's more than just my world. I am a musician, famous on worlds all over. It's why I try to be so discreet when I come here.<</say>>
<<say "mc">>Wow, that's amazing. But why didn't you want to tell me?<</say>>
<<say "kleio">>Because I liked just having this casual fun. Nothing too serious. Once I tell people I'm Corza Toolah, things just get messy.<</say>>
<<think "mc">>Didn't $harley.name mention something about Corza?<</think>>
<<say "mc">>I've never slept with a celebrity before!<</say>>
<<say "kleio">>Yeah... listen, I'm gonna head out.<</say>>
<<say "mc">>But why?<</say>>
<<say "kleio">>I wanted us to fool around as $kleio.name, not as Corza. I'll see myself out.<</say>>
<<think "mc">>Fuck... but why...? Fuck!<</think>>
<<button "Continue" homehub>>
<<event "kleio" "upset">>
<<time 0.5>>
<</button>>
<<else>>
<<say "mc">>I seem to recall you have a certain fixation that needs dealing with... and I have just the thing.<</say>>
<<narrate>>You let your towel drop, revealing your hard cock. She grins.<</narrate>>
<<say "kleio">>Ha! Get on this bed and let me suck that great big dick!<</say>>
<<narrate>>She quickly undresses in the few seconds it takes you to get to the bed.<</narrate>>
<<event "kleio" "upset" 0>>
<<cont "kleiosex" "morn01">>
<</if>>
<<case "where">>
<<narrate>>The runner returns a few minutes later to explain she isn't home.<</narrate>>
<<think "mc">>Hmm, I guess she's not always just gonna be around waiting for one of my messengers, I'll try another time.<</think>>
<<event "kleio" "who" 2>>
<<if $kleio.events.attempts == undefined>>
<<event "kleio" "attempts">>
<<else>>
<<set $kleio.events.attempts++>>
<<influence "kleiowhere">>
<</if>>
<<cont "gatewayb">>
<<case "clear">>
<<narrate>>You send a runner to ask $kleio.name if she's available. The runner returns moments later, explaining she'll be fifteen minutes, so you wait in the lounge.<</narrate>>
<<left2 "kleio/lg01.jpg">>
<<narrate>>Your jaw almost drops when she walks through the door. She grins.<</narrate>>
<<say "kleio">>Now that's a reaction I can appreciate.<</say>>
<<say "mc">>You look amazing.<</say>>
<<say "kleio">>Just finished up work. You wanted to chat?<</say>>
<<say "mc">>It's about that, actually. $val.name came to see me... she was cool about the blowjob, but she was furious about something else at first.<</say>>
<<say "kleio">>Yeah, she told me she was cool with it. You're lucky my daughters and I don't mind sharing, huh?<</say>>
<<think "mc">>Plural? $val.name never mentioned a sister...<</think>>
<<say "mc">>Oh, and then some. But, I still don't get why she thought I was using her to get to you. She said some people idolized you?<</say>>
<<say "kleio">>Let's circle back to the blow job, shall we? I have a bit of an oral fixation, you know...<</say>>
<<say "mc">>I can certainly help with that, but I really want to know why $val.name—<</say>>
<<say "kleio">>Shhh, let me just have my fun for now. Let's not complicate things.<</say>>
<<cont "kleiosex" "lg01">>
<<case "docscall">>
<<narrate>>You send message to $kleio.name that the doctor is currently available if she is too.<</narrate>>
<<narrate>>20 minutes later, $kleio.name arrives.<</narrate>>
<<block "kleio/docs01.jpg">>
<<say "kleio">>Hi there. Are you a tour guide? Could you direct me to the Doctor's surgery please?<</say>>
<<narrate>>You decide to play along for now.<</narrate>>
<<think "mc">>Hah! Let's have some fun with it!<</think>>
<<say "mc">>Allow me to escort you, madam.<</say>>
<<say "kleio">>Oh, that would be lovely. Thank you.<</say>>
<<think "kleio">>I give it 5 minutes before he's asking for a selfie or something. Creep.<</think>>
<<narrate>>You direct her to the nearby vehicle.<</narrate>>
<</block>>
<<say "kleio">>Oh, is it far?<</say>>
<<say "mc">>It's about a five-minute drive, or a one-hour walk.<</say>>
<<narrate>>You see her hesitate, clearly a little uncomfortable getting in the car with a stranger.<</narrate>>
<<say "mc">>Would you prefer I lend you the keys and provide directions instead?<</say>>
<<narrate>>You see her shoulders relax. You hadn't even realized how tense she was.<</narrate>>
<<say "kleio">>Sorry, it's just you have to deal with all sorts of unwanted guests in my line of work.<</say>>
<<say "mc">>Oh, what line of work is that?<</say>>
<<narrate>>She looks at you puzzled for a moment.<</narrate>>
<<block "kleio/docs02.jpg">>
<<say "kleio">>Ha, yeah, nearly had me going there.<</say>>
<<narrate>>You give her a blank stare back.<</narrate>>
<<say "mc">>Right. Sure. Well, I'm more than happy to lend you the car if you'd prefer.<</say>>
<<say "kleio">>What about your patron, $name, would he not be unhappy? Wait, my daughter said he didn't have any male—<</say>>
<<narrate>>Realization dawns on her.<</narrate>>
<<say "kleio">>You're $name, aren't you?<</say>>
<<say "mc">>I am.<</say>>
<</block>>
<<say "kleio">>And you came here to greet me personally? Why didn't you correct me when I called you a tour guide?<</say>>
<<narrate>>There's an air of suspicion in her words.<</narrate>>
<<say "mc">>You're my friend's mother, who else would I send? And honestly, I was just going to have some fun with you on that, see how you reacted later.<</say>>
<<say "kleio">>Huh, right okay. Well, let's go. I trust my daughter's judgment, and I'll find out very quickly if you have an ulterior motive in befriending her.<</say>>
<<narrate>>The two of you make small talk as you drive her to the surgery. Once you arrive, you direct her to the doors and explain you'll wait outside for her.<</narrate>>
<<button "Continue" kleioanswers>>
<<like "kleio" 4>>
<<temp "postdocs">>
<</button>>
<<case "postdocs">>
<<narrate>>15 minutes later she re-emerges looking flustered.<</narrate>>
<<think "mc">>Shit, what happened?<</think>>
<<narrate>>You run over to meet her.<</narrate>>
<<block "kleio/docs03.jpg">>
<<say "kleio">>Your resident doctor is a bloody council member?! What the hell?<</say>>
<<if $kp.events.councilknown == undefined>>
<<say "mc">>The council sent her, yeah. She's an inspector... of patrons, I guess.<</say>>
<<else>>
<<say "mc">>Yeah, I was as surprised as you are! But I just treat her like anyone else.<</say>>
<</if>>
<<narrate>>She looks at you bemused for a moment.<</narrate>>
<<say "mc">>So how was your knee?<</say>>
<<think "kleio">>That's it? There's a damned council member here playing doctor, and he's more interested in my knee?<</think>>
<</block>>
<<narrate>>The two of you head back to the car as you keep chatting.<</narrate>>
<<say "kleio">>She suggested some massage, but otherwise it's fine.<</say>>
<<if $buildings.spa != undefined>>
<<say "mc">>You know, we have a spa here. I could—<</say>>
<<else>>
<<think "mc">>Well, I need a massage parlor, pronto. I'll ask the workers at the monitoring station what they can found out. It would give the workers somewhere to relax and reduce their fatigue too.<</think>>
<<tech "spa">>
<<say "mc">>That's something we're—<</say>>
<</if>>
<<narrate>>She interrupts.<</narrate>>
<<say "kleio">>Nope. No more of that. I want to know more about you.<</say>>
<<say "mc">>I just want to make sure you're okay.<</say>>
<<say "kleio">>Do you have anywhere we can grab a bite to eat and chat? Despite that shock just now, I feel at ease here, it'd be nice to stick around a little longer.<</say>>
<<if $buildings.restaurant != undefined>>
<<say "mc">>Sure, we have a restaurant back near the Gateway.<</say>>
<<say "kleio">>Great, I just want to nip back home then I'll meet you there later, okay?<</say>>
<<say "mc">>Looking forward to it.<</say>>
<<else>>
<<if $buildings.bar != undefined>>
<<say "mc">>Not right now, but we do have a bar we could relax and chat in.<</say>>
<<say "kleio">>I don't drink off world unless I'm staying in a hotel.<</say>>
<<say "mc">>You can stay at—<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say "kleio">>I set myself up for that one, huh? Honestly, I'd rather stay sober and don't want to be in a bar if I'm not drinking.<</say>>
<</if>>
<<think "mc">>
<<if $techscomplete.restaurant == undefined && $techs.restaurant == undefined>>
Guess I need to figure restaurants out! They'll probably have some ideas at the monitoring station.
<<else>>
I really should get that restaurant built.
<</if>>
<</think>>
<<say "mc">>Okay, well we've got plans to build a lovely eatery, or we could go back to the—<</say>>
<<say "kleio">>Great! It's a date.<</say>>
<</if>>
<<narrate>>She gets out of the car before you can say anything further. You carefully study her ass as she walks away.<</narrate>>
<<narrate>>She turns to see what's taking you so long and smirks when she notices where your eyes are trained. Realizing you've been caught you try to play it off, but she just laughs. You exit the vehicle and head over.<</narrate>>
<<say "kleio">>You flatter me.<</say>>
<<say "mc">>What can I say? I'm a man, and you're an extremely attractive woman. Sorry.<</say>>
<<narrate>>She grabs your hand.<</narrate>>
<<block "kleio/docs04.jpg">>
<<say "kleio">>Don't worry about it. It's nice to be appreciated without all the cameras and beggars. Not even a single selfie either. Right, will you send me home, please?<</say>>
<<think "mc">>Huh? Cameras? Beggars?<</think>>
<<say "mc">>Of course. I hope to see you soon.<</say>>
<<say "kleio">>Likewise.<</say>>
<<think "kleio">>Doctor Councilwoman was a bit of a surprise, but at least I know $val.name is safe when she comes here.<</think>>
<<narrate>>You connect the gateway and send her home.<</narrate>>
<<think "mc">>I hope $val.name is cool with the things I intend to do to her mother.<</think>>
<<button "Continue" gatewayb>>
<<like "kleio" 10>>
<<lust "kleio" 5>>
<<tech "restaurant">>
<<event "kleio" "docs">>
<<time 1.5>>
<</button>>
<</block>>
<<case "date">>
<<set $tempvar2 = either($girlshere)>>
<<if $replay == true>>
<<set $tempvar2 = "molly">>
<</if>>
<<set _g = $tempvar2>>
<<set _w = State.variables[_g]>>
<<narrate>>You're eager to make a good impression when you meet $kleio.name again so you ask _w.name if she'd mind cooking you something extra special.<</narrate>>
<<narrate>>She taps her nose twice.<</narrate>>
<<say _g>>I've just the thing, she won't be able to keep her hands off you!<</say>>
<<narrate>>She scurries back into the kitchen before you can query it. You try to follow when you hear $kleio.name's voice behind you.<</narrate>>
<<block "kleio/rest01.jpg">>
<<say "kleio">>$name, hello again! This place is gorgeous.<</say>>
<<say "mc">>Believe me, it pales in comparison to the vision before my eyes.<</say>>
<<narrate>>She blushes.<</narrate>>
<<say "kleio">>You're a charmer, huh? I see why my daughter likes you.<</say>>
<<say "mc">>I simply say it as I see it, and you are divine!<</say>>
<</block>>
<<if $kleio.name.startsWith("Seraphina")>>
<<say "kleio">>Oh, god. Is that a pun on my name?<</say>>
<<say "mc">>No... unless that gets me bonus points, then yes, totally intentional.<</say>>
<</if>>
<<narrate>>She giggles.<</narrate>>
<<say "mc">>Shall we?<</say>>
<<narrate>>The two of you sit at the table together, chatting and flirting while _w.name prepares your food.<</narrate>>
<<say "mc">>I wanted to ask, you mentioned you knew a little about the council?<</say>>
<<say _g>>Here's your food guys. I hope you enjoy.<</say>>
<<if _w.traits.includes('off world worker') || _w.traits.includes('offworld worker') || _g == "kylie">>
<<narrate>>_w.name looks at $kleio.name as if star struck<</narrate>>
<<say _g>>Holy shit!<</say>>
<<say "mc">>Everything okay?<</say>>
<<narrate>>$kleio.name rolls her eyes.<</narrate>>
<<say _g>>Uhh, yes, of course. Apologies.<</say>>
<<narrate>>As _w.name walks off she mouths "good job" to you wordlessly.<</narrate>>
<<else>>
<<narrate>>_w.name winks at you as she walks off.<</narrate>>
<</if>>
<<say "kleio">>Gosh, this looks delicious!<</say>>
<<narrate>>The two of you dig in.<</narrate>>
<<say "kleio">>This is amazing. My compliments to the chef. Wow!<</say>>
<<think "kleio">>I don't know if it's the ambiance or his impressive charm, but I'm finding myself drawn in by this man. He sees me for who I am, not as some symbol...<</think>>
<<say "mc">>So, I was wondering what you knew about the council?<</say>>
<<think "kleio">>I don't want to talk about that right now, there's only one thing on my mind!<</think>>
<<narrate>>There's a tinkling sound as her fork drops to the floor.<</narrate>>
<<say "kleio">>Oops, let me get that.<</say>>
<<narrate>>She ducks under the table and a moment later a hand gently caresses your thigh.<</narrate>>
<<think "mc">>Hell yes.<</think>>
<<narrate>>You feel her pull your zipper down, the fresh air on your hard cock as she pulls it out and then a warm moist feeling.<</narrate>>
<<center "kleio/rest03.jpg">>
<<button "Continue" kleiosex>>
<<temp "restaurantbj">>
<</button>>
<<case "date02">>
<<narrate>>She returns to the table, wipes the remains of the cum from her face with a napkin, then looks up at you.<</narrate>>
<<block "kleio/rest06.jpg">>
<<say "kleio">>Are you just going to stand there, or should we finish our meal?<</say>>
<<say "mc">>Of course, yes.<</say>>
<<say "kleio">>Though, I've already had a delicious treat.<</say>>
<<narrate>>You laugh.<</narrate>>
<<say "kleio">>Perhaps next time we'll have a few more courses on the menu?<</say>>
<<say "mc">>I'm already looking forward to it.<</say>>
<</block>>
<<narrate>>She bites her bottom lip.<</narrate>>
<<say "kleio">>Probably not as much as me.<</say>>
<<narrate>>The two of you finish your meal together, flirting throughout and playing footsie under the table like a pair of lovestruck teenagers.<</narrate>>
<<narrate>>When it's time to go, you walk her out to the gateway.<</narrate>>
<<say "kleio">>Oh, and don't worry about $val.name. She comes first, and I'm not going to ruin anything she has going on. If she's not okay with us fooling around you won't see me again.<</say>>
<<say "mc">>I... really hope she's okay with it.<</say>>
<<say "kleio">>Me too. All being well, I'll contact you soon; there's something I want to show you on my world.<</say>>
<<narrate>>She holds your face and kisses you passionately.<</narrate>>
<<say "kleio">>I'll see you soon.<</say>>
<<say "mc">>I'm already counting the minutes.<</say>>
<<button "Continue" gatewayb>>
<<like "kleio" 4>>
<<event "kleio" "eat">>
<<lust "kleio" 6>>
<<time 2>>
<</button>>
<</switch>>
/*//said she didnt't know much... but knows about council?*/
/*
*/<<scene>>
<<switch $tempvar>>
<<case "band">>
<<narrate>>As you're heading down the stairs, $kleio.name is waiting at the bottom.<</narrate>>
<<say kleio>>Remember that olive thing?<</say>>
<<say mc>>Yeah...?<</say>>
<<say kleio>>I have a friend staying in the old town for the festival... come on.<</say>>
<<think mc>>I think I like where this is going...<</think>>
<<say kleio>>You coming?<</say>>
<div id="replace">
<<choices>>
<<link "Yes" kleiosex>>
<<temp band00>>
<</link>><br>
<<link "Another Time">>
<<replace "#replace">>
<<say mc>>I definitely like the sound of it... but unfortunately I've got some stuff to take care of.<</say>>
<<say kleio>>Bah, I was hoping to go with the spontaneity angle... but she and I will be staying here until after the festival, so come see me, okay?<</say>>
<<think mc>>I'd noticed a few more people than normal, I guess some people are sort of making a holiday of it.<</think>>
<<event kleio olive "town">>
<<run overrideSchedule('kleio', 0, 24, 'town')>>
<<available "kleio">>
<<cont househub>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "band00">>
<<narrate>>As you approach the house, the door swings opens and a dark-haired tattooed woman grins at you.<</narrate>>
<<left2 "offworld/bonnie/meet01.jpg">>
<<meet "bonnie">>
<<say bonnie ???>>Oh, you're every bit as cute as $kleio.name described.<</say>>
<<think mc>>Cute?<</think>>
<<say bonnie ???>>I'm gonna eat you right up...<</say>>
<<say kleio>>By the gods, at least let him get inside before you start!<</say>>
<<say bonnie ???>>Oh, he's definitely going inside.<</say>>
<<narrate>>She grins and holds the door open for you.<</narrate>>
<<say kleio>>So this is my bandmate, <<textbox "$bonnie.name" Danaë>>.<</say>>
<<cont "kleiosex" "band01">>
<<case "band01">>
<<narrate>>You follow them to the living room.<</narrate>>
<<left2 "kleio/bonnie01.jpg">>
<<say bonnie>>I have heard <b>a lot</b> about you. I do hope you can live up to her praise.<</say>>
<<narrate>>$kleio.name leans into $bonnie.name and kisses her, one hand on her ample bosom and the other inching down her waist.<</narrate>>
<<think mc>>I fucking love my life.<</think>>
<<say kleio>>So... I'm pretty sure it's obvious what we've got planned at this point. My olive bark, or whatever you called it, is both of us. Together.<</say>>
<<narrate>>$bonnie.name holds $kleio.name's head and runs her tongue up $kleio.name's cheek.<br>$kleio.name squeezes $bonnie.name's butt while staring at you with a sultry grin.<</narrate>>
<<say mc>>Well, this certainly beats a box of chocolates!<</say>>
<<left2 "kleio/bonnie02.jpg">>
<<say bonnie>>So... we just gonna stand here gawking?<</say>>
<<narrate>>She struts over to you and pulls at your trousers, while $kleio.name walks behind you and kisses the nape of your neck.<</narrate>>
<<say mc>>I am at your mercy...<</say>>
<<say bonnie>>You may regret that.<</say>>
<<narrate>>The two of them continue to tease you as they undress you before finally you stand naked and erect.<</narrate>>
<<say bonnie>>Fuck me, $kleio.name, you weren't joking.<</say>>
<<say kleio>>And it tastes even better.<</say>>
<<narrate>>She bends over, and playfully licks the tip of your dick.<</narrate>>
<<cont "kleiosex" "band02">>
<<case "band02">>
<<vid "kleio/band01.mp4">>
<<narrate>>She looks up at you and $bonnie.name as she devours your cock.<</narrate>>
<<say bonnie>>Yeah, work that cock, slut.<</say>>
<<narrate>>You run your hands over $bonnie.name's smooth skin and briefly flip her dress as you tease her.<</narrate>>
<<say bonnie>>How does it taste? You like that, whore?<</say>>
<<narrate>>$kleio.name stands up with a start, grabs $bonnie.name by the back of her head and pushes her down toward your cock.<</narrate>>
<<say kleio>>Try it for yourself, bitch!<</say>>
<<cont "kleiosex" "band03">>
<<case "band03">>
<<narrate>>You're not really sure what to make of what just happened, but your thoughts are quickly made obsolete when $bonnie.name wraps her lips around your cock, and $kleio.name throws off her top.<</narrate>>
<<vid "kleio/band02.mp4">>
<<say kleio>>No hesitation, huh?<</say>>
<<say bonnie>>I don't know. As soon as I saw his cock, I thought he's getting whatever he wants.<</say>>
<<say mc>>Whatever I want?<</say>>
<<narrate>>$kleio.name pushes you down on to the sofa and lowers herself onto your cock.<</narrate>>
<<cont "kleiosex" "band04">>
<<case "band04">>
<<say kleio>>Whatever you want... after I've got what I want!<</say>>
<<vid "kleio/band03.mp4">>
<<say bonnie>>Yeah, you like that fucking cock?<</say>>
<<narrate>>You bounce her up and down on your lap as $bonnie.name fondles your balls. $kleio.name slamming against you as $bonnie.name massages your sack is almost too much to handle, and you're secretly grateful for the respite offered when the two lock tongues passionately.<</narrate>>
<<narrate>>Moments after they're lips part, $bonnie.name spanks $kleio.name with such ferocity, you feel the vibrations through your balls.<</narrate>>
<<say kleio>>Oh, yeah!<</say>>
<<say bonnie>>Come on, give it to her! Give her that fucking dick! Give her that dick! Yes!<</say>>
<<narrate>>You thrust upwards with all your might, as $bonnie.name looks on approvingly.<</narrate>>
<<say kleio>>So good!<</say>>
<<say bonnie>>Take that fucking cock, you dirty fucking slut!<</say>>
<<cont "kleiosex" "band05">>
<<case "band05">>
<<narrate>>You're all already covered in sweat, and your stamina is not looking great, but you just can't contain yourself, you feel wild, and your cock is in complete control.<</narrate>>
<<vid "kleio/band04.mp4">>
<<say kleio>>Oh, my god, yes! Fuck that pretty little ass.<</say>>
<<say bonnie>>Does that feel good, my hand on your cunt?<</say>>
<<say kleio>>Oh my god, that feels so fucking good.<</say>>
<<say bonnie>>You're so fucking hot.<</say>>
<<cont "kleiosex" "band06">>
<<case "band06">>
<<vid "kleio/band05.mp4">>
<<say bonnie>>Oh my god, yes! Yeah, you like that big dick inside of you?<</say>>
<<say kleio>>I fucking love it.<</say>>
<<say bonnie>>Making me so wet watching you wrapped around that big dick.<</say>>
<<say bonnie>>That's it, keep going! Do it, baby, make me cum!<</say>>
<<cont "kleiosex" "band07">>
<<case "band07">>
<<narrate>>After a brief pause, the two switch positions.<</narrate>>
<<vid "kleio/band06.mp4">>
<<say bonnie>>Oh my god, yes.<</say>>
<<narrate>>She becomes less vocal as your cock slides inside her. $kleio.name grins darkly as she fingers herself and toys with $bonnie.name's ass.<</narrate>>
<<say kleio>>That fucking dick looks so good inside your pussy.<</say>>
<<cont "kleiosex" "band08">>
<<case "band08">>
<<vid "kleio/band07.mp4">>
<<narrate>>Feeling yourself getting ever close to the edge, you pound furiously, her moans and screams only hastening your pace as you chase your crescendo.<</narrate>>
<<say bonnie>>Oh, fuck!<</say>>
<<narrate>>You pull her down to the sofa, and $kleio.name quickly follows.<</narrate>>
<<cont "kleiosex" "band09">>
<<case "band09">>
<<vid "kleio/band08.mp4">>
<<narrate>>Your entire body now screaming for release, you focus all your energies on your own pleasure, furiously thrusting into her anus as $kleio.name has multiple fingers in her pussy.<</narrate>>
<<say bonnie>>Right there, just like that. Yes! Just like that! Just like...!<</say>>
<<narrate>>She almost deafens you as she screams out in rapturous delight, squirting all over you and $kleio.name.<</narrate>>
<<say mc>>Oh, fucking, fuck, yes!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "kleio/band09.mp4">>
<<narrate>>The two of them rush to your cock, almost missing the eruption, as you're unable to hold back.<</narrate>>
<<say mc>>Yes, fucking, yes!<</say>>
<<narrate>>You unload on to their faces and watch contently as the two of them kiss and make a show of exchanging your seed between them.<</narrate>>
<<narrate>>After a few minutes, $kleio.name looks at you, a glint in her eye.<</narrate>>
<<say kleio>>Maybe a little misunderstanding isn't so bad every now and again... if this is always gonna be how we sort it out.<</say>>
<<narrate>>$bonnie.name chuckles.<</narrate>>
<<button "Continue" "townhub">>
<<unlock "bonnie" "kleio">>
<<unlock "kleio" "bonnie">>
<<lust kleio 6>>
<<like kleio 4>>
<<run overrideSchedule('kleio', 0, 24, 'Old Town')>>
<<event kleio olive 3>>
<<time 2>>
<</button>>
<<ScrollTo "replace">>
<</replace>>
<</button>>
</div>
<<case "lg01">>
<<vid "kleio/lg01.mp4">>
<<say "kleio">>I think I'll show you these... sure?<</say>>
<<say "kleio">>Yes?<</say>>
<<say "mc">>Fuck, yes.<</say>>
<<think "mc">>I'll worry about the other stuff later.<</think>>
<<say "kleio">>Is that getting you hard?<</say>>
<<cont "kleiosex" "lg02">>
<<case "lg02">>
<<say "mc">>I was rock hard the moment you arrived.<</say>>
<<narrate>>Completely enthralled, you reach out to squeeze her tits.<</narrate>>
<<vid "kleio/lg02.mp4">>
<<say "kleio">>You like those nice little perk tits?<</say>>
<<say "kleio">>I really want your... big cock in my mouth.<</say>>
<<narrate>>You start to undo your belt.<</narrate>>
<<say "kleio">>I want you to fill my mouth up with all of your cum, too.<</say>>
<<cont "kleiosex" "lg03">>
<<case "lg03">>
<<vid "kleio/lg03.mp4">>
<<say "kleio">>Mhmm~ you like that too, hmm?<</say>>
<<say "mc">>Oh, fuck yes. Worship my dick!<</say>>
<<say "kleio">>You have such a nice cock.<</say>>
<<cont "kleiosex" "lg04">>
<<case "lg04">>
<<vid "kleio/lg04.mp4">>
<<narrate>>As she gasps for air, you slap your dick playfully over her face, giving yourself a brief rest to prevent blowing too early.<</narrate>>
<<say "kleio">>You like it when I lick these balls...<</say>>
<<cont "kleiosex" "lg05">>
<<case "lg05">>
<<vid "kleio/lg05.mp4">>
<<say "kleio">>I want to taste your fucking cum.<</say>>
<<narrate>>Her lustful eyes penetrate your very core, driving you wild with lust, and as though she's racing to the finish, her motions become more rhythmic, leaving you unable to take anymore.<</narrate>>
<<say "mc">>Holy fucking shit, I'm gonna blow.<</say>>
<<button "Cum" kleiosex>>
<<temp "lg06">>
<</button>>
<<case "lg06">>
<<vid "kleio/lg06.mp4">>
<<say "kleio">>I want you to cum for me.<</say>>
<<narrate>>You cover her face in your seed. As you finish, she polishes off your helmet, greedily chasing every last drop of cum available.<</narrate>>
<<say "mc">>Holy shitting hell, $kleio.name.<</say>>
<<say "kleio">>I fucking love your dick. How about next time, you let me ride it?<</say>>
<<say "mc">>Fuck, give me a moment and we go right now!<</say>>
<<say "kleio">>As much as I'd enjoy that, I really must be going. I'll be in touch soon, though.<</say>>
<<narrate>>You enjoy the swagger of her ass as she departs.<</narrate>>
<<unlock "kleio" "lg">>
<<if $replay == false>>
<<think "mc">>Wait, I didn't learn anything about why $val.name was so mad! Though the result as still pretty good. Clearly she doesn't want to tell me. Should I push it next time I see her?<</think>>
<<event "kleio" "who" 2>>
<div id="replace">
<<choices>>
<<link "Push the subject">>
<<replace "#replace">>
<<think "mc">>I'll leave it a day or two, then catch up with her and get her to finally tell me what's going on.<</think>>
<<event "kleio" "eat" "push">>
<<button "Continue" housestuff>>
<<set $location = "lounge">>
<<like "kleio" 5>>
<<lust "kleio" 8>>
<<time 1.5>>
<</button>>
<</replace>>
<</link>><br>
<<link "Leave it be">>
<<replace "#replace">>
<<think "mc">>Honestly, whatever it is, I'm still getting plenty of benefits. Best not to risk anything.<</think>>
<<event "kleio" "eat" "drop">>
<<button "Continue" housestuff>>
<<set $location = "lounge">>
<<like "kleio" 5>>
<<lust "kleio" 8>>
<<time 1.5>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<else>>
<<button "Exit Replay" housestuff>>
<</button>>
<</if>>
<<case "herlead">>
<<narrate>>Focused entirely on the treasure before you, and her sensual cries for your cock, you throw off your clothes and plunge deep inside her.<</narrate>>
<<vid "kleio/f01.mp4">>
<<narrate>>She gasps with a gleeful surprise.<</narrate>>
<<say kleio>>Oh my god. Oh, fff~ fuck, that feel so good; it's so deep.<</say>>
<<narrate>>Mesmerized by her bouncing breasts, her salacious sounds, and lustful eyes, you quickly slip into a frenzied rhythm.<</narrate>>
<<say kleio>>Oh, fuuck yes!<</say>>
<<cont "kleiosex" "f02">>
<<case "f02">>
<<vid "kleio/f02.mp4">>
<<narrate>>Briefly snapping out of it, you realize you won't last much longer at this pace and try to slow it down.<</narrate>>
<<say kleio>>Oh, my god. Holy shit!<</say>>
<<narrate>>Your attempts are all in vain as your lustful greed takes full control.<</narrate>>
<<say mc>>That's it, fucking scream, let everyone know you're mine!<</say>>
<<cont "kleiosex" "f03">>
<<case "f03">>
<<vid "kleio/f03.mp4">>
<<narrate>>You piston into her, no longer worrying about your stamina and focused entirely on the pleasure building inside you.<</narrate>>
<<say kleio>>Ohh~ yeah!<</say>>
<<say mc>>Yes, fucking yes! Who's my dirty fucking slut? Yes!<</say>>
<<cont "kleiosex" "f04">>
<<case "f04">>
<<vid "kleio/f04.mp4">>
<<say kleio>>Oh, my god. Yes, yeah, yeah.<</say>>
<<narrate>>She screams out passionately as you pound away, hungrily chasing your climax.<</narrate>>
<<say mc>>Yes, yes, fucking take my cock, fucking take it!<</say>>
<<narrate>>Lost in the bliss she repeats herself over and over. You push harder and harder, faster and faster, until you feel the pleasure welling up inside you, readying itself for release.<</narrate>>
<<say mc>>Oh, shit, I'm close!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "kleio/f05.mp4">>
<<narrate>>She scrambles to her knees and you jerk over her face.<</narrate>>
<<say mc>>Yes, that's it! Fucking slut, yes!<</say>>
<<narrate>>You frost her face, as she happily lets your warm goo ooze down her cheek.<</narrate>>
<<say kleio>>That feels so fucking good...<</say>>
<<narrate>>She happily toys with your spunk in a show of appreciation.<</narrate>>
<<say kleio>>Fuck... I do like my visits here...<</say>>
<<unlock "kleio" "f">>
<<if $tasks.festival4 != undefined>>
<<button "Continue" kleioanswers>>
<<temp "festivalgo">>
<<lust "kleio" 5>>
<</button>>
<<else>>
<<button "Continue" housestuff>>
<<set $location = "lounge">>
<<lust "kleio" 5>>
<<time 1.5>>
<</button>>
<</if>>
<</replace>>
<</button>>
</div>
<<case "morn01">>
<<narrate>>She ravenously wraps her lips around your cock.<</narrate>>
<<vid "kleio/morn01.mp4">>
<<say "kleio">>Fuck, I love this cock!<</say>>
<<say "mc">>I seem to recall a comment about riding my dick...<</say>>
<<narrate>>She grins.<</narrate>>
<<cont "kleiosex" "morn02">>
<<case "morn02">>
<<vid "kleio/morn02.mp4">>
<<say "mc">>Goddamn, yes, ride it, you dirty fucking bitch!<</say>>
<<say "kleio">>Aaah~ I fucking love it. Yes, yes!<</say>>
<<cont "kleiosex" "morn03">>
<<case "morn03">>
<<vid "kleio/morn03.mp4">>
<<say "kleio">>Oh, my god. Right there.<</say>>
<<say "mc">>Bounce that ass, show me how much your pussy craves my cock!<</say>>
<<cont "kleiosex" "morn04">>
<<case "morn04">>
<<vid "kleio/morn04.mp4">>
<<narrate>>You grab on to her hips and start thrusting ferociously.<</narrate>>
<<say "kleio">>Yes, yes. Fucking pound my tight little pussy!<</say>>
<<cont "kleiosex" "morn05">>
<<case "morn05">>
<<vid "kleio/morn05.mp4">>
<<say "kleio">>Ohhh, yes. Fuck!<</say>>
<<say "mc">>You like that? You like being my dirty little whore?<</say>>
<<say "kleio">>Oh, my god, fuck yes!<</say>>
<<cont "kleiosex" "morn06">>
<<case "morn06">>
<<vid "kleio/morn06.mp4">>
<<say "kleio">>I want every last drop of you... all over me.<</say>>
<<say "kleio">>I can feel your cock throbbing inside of me. It's so good.<</say>>
<<say "mc">>Oh, fuck. Fuck, yes!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "kleio/morn07.mp4">>
<<unlock "kleio" "morn">>
<<say "mc">>Holy shit, fucking, shit, fuck, yes, fucking $kleio.name, fucking fuck!<</say>>
<<narrate>>You explode over her torso, covering her from tits to pussy in your goo.<</narrate>>
<<say "kleio">>Fuck... that was great. Mind if I use one of the showers?<</say>>
<<say "mc">>How about joining me in mine?<</say>>
<<say "kleio">>If we don't stop now, we might never....<</say>>
<<say "mc">>So...?<</say>>
<<say "kleio">>You're bad, but we both have things we need to handle.<</say>>
<<button "Continue" househub>>
<<like "kleio" 5>>
<<lust "kleio" 8>>
<<time 2>>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "restaurantbj">>
<<set _g = $tempvar2>>
<<set _w = State.variables[_g]>>
<<vid "kleio/rest01.mp4">>
<<narrate>>She skillfully takes your dick into her mouth, working your entire shaft almost immediately.<</narrate>>
<<say "mc">>Holy fuck. <</say>>
<<say _g>>Everything okay?<</say>>
<<vid "kleio/rest02.mp4">>
<<narrate>>She continues to quietly suck your dick while _w.name talks to you.<</narrate>>
<<say "mc">>Yes, no problem. What's up?<</say>>
<<say _g>>Just walking past and saw you alone looking uncomfortable. Guess she's gone to the ladies' room, huh? God, she's gorgeous.<</say>>
<<vid "kleio/rest03.mp4">>
<<narrate>>You nod. Struggling to contain your pleasure as $kleio.name picks up the pace.<</narrate>>
<<say _g>>How'd you meet?<</say>>
<<say "mc">>She's... she's $val.name's mom. Oh, I think she's coming back.<</say>>
<<say _g>>Right, sorry, I'll leave you alone.<</say>>
<<narrate>>After you watch her go back into the kitchen, you push your chair back and look down at the magnificent sight before you.<</narrate>>
<<vid "kleio/rest04.mp4">>
<<say "mc">>Fuck, you're crazy.<</say>>
<<say "kleio">>Your dick is fucking tasty.<</say>>
<<narrate>>She climbs up from under the table.<</narrate>>
<<say "kleio">>Nobody around, huh?<</say>>
<<button "Continue" kleiosex>>
<<temp "restaurantbj02">>
<</button>>
<<case "restaurantbj02">>
<<narrate>>Within a second of the words leaving her mouth her lips are wrapped around you cock again.<</narrate>>
<<vid "kleio/rest05.mp4">>
<<say "mc">>Fucking hell.<</say>>
<<narrate>>She gasps for breath.<</narrate>>
<<say "kleio">>Let's do this properly.<</say>>
<<block "kleio/rest04.jpg">>
<<narrate>>She kneels before you, her mouth wide open as her eyes lustfully gaze upon you.<</narrate>>
<<think "mc">>God, look at this woman. Sorry, $val.name, but I'm sure you'll understand.<</think>>
<<button "Continue" kleiosex>>
<<temp "restaurantbj03">>
<</button>>
<</block>>
<<case "restaurantbj03">>
<<set _w = State.variables[$tempvar2]>>
<<vid "kleio/rest06.mp4">>
<<narrate>>She aggressively tries to swallow your dick.<</narrate>>
<<say "mc">>Suck it, take my dick!<</say>>
<<narrate>>Her skill, pace and the thought of _w.name walking in at any second all combines to an explosion of pleasure that leaves her spluttering.<</narrate>>
<<block "kleio/rest05.jpg">>
<<narrate>>She grins up at you, the remnants of your pleasure dripping from her chin.<</narrate>>
<<say "kleio">>Glad to see I've still got it.<</say>>
<<say "mc">>Fuck, I doubt you ever lost it.<</say>>
<</block>>
<<button "Continue" kleioanswers>>
<<temp "date02">>
<<unlock "kleio" "rest01">>
<</button>>
<</switch>>
/*//said she didnt't know much... but knows about council?*/
/*
*/<<tracker "kleio">>
<<if $possess < 2>>
<<step "Better Possession" "Keep piggybacking explorers during expeditions until you unlock a new ability.">>
<<elseif $kleio.events.knee == undefined>>
<<step "Chance Encounter" "Wander her home world while using the influence ability on an explorer">>
<<elseif $buildings.docs == undefined>>
<<step "What's up, Doc?" "Build the doctor's surgery.">>
<<elseif $kleio.events.docs == undefined>>
<<step "Doctor's Visit" `"Visit Gateway B and call her through while there's a doctor at the surgery."`>>
<<elseif $buildings.restaurant == undefined>>
<<step "Restaurant" `"Research how to run a restaurant at the monitoring station, then build one at the construction facility."`>>
<<elseif $kleio.events.eat == undefined>>
<<step "A bite to eat" `"Go to the restaurant while someone is working there and request "+$kleio.name+"'s company."`>>
<<elseif $kleio.events.eat != undefined && $kleio.events.eat < 3>>
<<step "Furious Night" "Relax before bed.">>
<<elseif $kleio.events.eat == 3>>
<<step "Clearing the Air" `"Invite "+$kleio.name+" over at Gateway B."`>>
<<elseif $kleio.events.attempts == undefined>>
<<step "Invitation" "Invite her over at Gateway B">>
<<elseif $kleio.events.attempts < 2>>
<<step "Second Attempt" "Invite her over at Gateway B">>
<<elseif !$explorers.includes('val')>>
<<step "Progress with $val.name" `"Follow "+$val.name+"'s substory to unlock the next step,"`>>
<<elseif $kleio.events.attempts >= 2 && $kleio.events.waiting == undefined>>
<<step "Cold Caller" `"Use influence on "+$val.name+" while sending an expedition to see "+$kleio.name`>>
<<elseif $kleio.events.upset == undefined>>
<<step "Wait" "Nothing to do but wait until she gets back">>
<<elseif $tasks.festival4 == undefined && !$completeTasks.includes('festival4')>>
<<step "Progress the story" "The next step will be available once the story advances.">>
<<elseif $tasks.festival4 != undefined && $kleio.events.olive == undefined>>
<<step "Invitation" "Invite her over at Gateway B.">>
<<elseif $kleio.events.olive == 1>>
<<step "Olive Branch" "Complete your prep for the festival. She'll be in touch a few days later.">>
<<elseif $kleio.events.olive == 'town'>>
<<step "Temporary Accommodation" "She's staying in town until after the festival; you should visit her.">>
<<else>>
<<movielist kleio>>
<</if>>
<</tracker>><<set $scene = 0>>
<<set _img = getFolder('kp') + "/$location01.jpg">>
<<if $location != $currentlocations.kp && $location != "firstIntros" && $replay == false>>
<<say "kp">>Going to have to interrupt you there. I need to go.<</say>>
<<follow kp>>
<<button "Continue" $return>>
<</button>>
<<elseif $location == "bedrooms" && $tasks.inspectinteract != undefined>>
<<temp "inspectiondone">>
<<goto kpanswers>>
<<elseif (($location == "kitchen" || $location == "office" || $location == "lounge") && $tasks.inspectinteract != undefined) ||
($location == "gym" && $kp.events.mcgym != undefined && $tasks.inspectinteract != undefined) ||
($location == "pool" && $kp.events.mcswim != undefined && $tasks.inspectinteract != undefined)
>>
<<block _img>>
<<say "kp">>I have nothing further to discuss with you at the moment. Meet me later this evening.<</say>>
<<button "Continue" housestuff>>
<</button>>
<</block>>
<<elseif ($location == "gym" || $location == "pool" || $location == "bedrooms") && $tasks.inspectgateway != undefined>>
<<block _img>>
<<say "kp">>I have nothing further to discuss with you at the moment. I have learned of the other Gateway, meet me there after 15:00.<</say>>
<<button "Continue" housestuff>>
<</button>>
<</block>>
<<else>>
<<block _img>>
<<say 'kp'>>Yes?<</say>>
<<choices "What do you want to discuss?" "topics">>
<</choices>>
<</block>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("kpdiscussions").processText());
})
<</script>>
<</if>><<set _img = getFolder('kp') + "/$location01.jpg">>
<<scene>>
<<switch $tempvar>>
<<case "festprep">>
<<left2 "kp/handle01.jpg">>
<<narrate>>$kp.name flags you over.<</narrate>>
<<say kp>>How are preparations for the festival?<</say>>
<<say mc>>Good evening to you too, $kp.name!<</say>>
<<narrate>>She gestures sarcastically.<</narrate>>
<<say kp>>Yes, yes. Hello and all that... the festival? We've a lot riding on this.<</say>>
<<say mc>>Yes... thanks for reminding me I'm bait for some patron-devouring monster... I've been trying not to dwell on that.<</say>>
<<say kp>>You're being a little melodramatic.<</say>>
<<say mc>>Either way, things are going smoothly. You actually seem more nervous than me.<</say>>
<<say kp>>I can't say I'm not anxious about the scenario, but the council... I will ensure you and everyone here is protected.<</say>>
<center>
<<button "Close">>
<<event "kp" "fest">>
<<script>>
closeDialog()
<</script>>
<</button>>
</center>
<<case "kmiss">>
<<left2 _img>>
<<say mc>>Have you seen $kenna.name recently, $krissy.refer?<</say>>
<<say kp>>Yeah, she's staying at my place. She's... not happy. You basically broke her heart. That poor girl has been searching for you for two hundred years, $name!<</say>>
<<say mc>>I know, I know. I didn't mean to hurt her, I just... I can't make everyone happy!<</say>>
<<say kp>>Come on. I'll take you to her. She can't stay there much longer.<</say>>
<<say mc>>Will she talk to me?<</say>>
<<say kp>>Maybe if I mediate.<</say>>
<<button "Continue" kpanswers>>
<<temp "kmiss2">>
<</button>>
<<case "kmiss2">>
<<left2 "kenna/meet04.png">>
<<say kenna>>You brought him here, $kp.name?<</say>>
<<say kp>>You two need to sort things out.<</say>>
<<say kenna>>He sorted them. He chose her over me!<</say>>
<<say mc>>It's not like that, it's—<</say>>
<<say kp>>May I remind you, you were sent to his hub on a specific task.<</say>>
<<say kenna>>How is that relevant?<</say>>
<<say kp>>Well, you're not there on his hub.<</say>>
<<say kenna>>But how can I go back knowing I'll never feel his touch...<</say>>
<<say kp>>That's not my problem. Regardless of everything else, you are a council member. Act like it.<</say>>
<<say mc>>Please, $kenna.refer, come home.<</say>>
<<say kp>>You've stayed here long enough. Go.<</say>>
<<say kenna>>You should know I won't stop.<</say>>
<<narrate>>You and $kp.name look at each other quizzically.<</narrate>>
<<say kenna>>I know you want me too, I'll keep trying... no matter what she says.<</say>>
<<narrate>>Before you reply, she zoops away.<</narrate>>
<<say kp>>Sounds like she's going to cause you a bit of a headache. Maybe you should just fuck her, $name.<</say>>
<<say mc>>I think it'd destroy $krissy.refer, though.<</say>>
<<say kp>>I can help put $krissy.name straight if that ever happens.<</say>>
<<say mc>>I'll... think about it.<</say>>
<<button "Continue" homehub>>
<<audio "zoop" play>>
<<like "kp" 2>>
<<event kenna upset 2>>
<<available "kenna">>
<<time 1.5>>
<</button>>
<<case "banish">>
<<left2 _img>>
<<say mc>>What was that stuff about banishment? Do you know where $krissy.refer is?<</say>>
<<say kp>>She's at my place.... and she's got some... concerns.<</say>>
<<say mc>>She found out about me and $kenna.name. Not that I was hiding it.<</say>>
<<say kp>>About you and $kenna.name?<</say>>
<<say mc>>We're fucking...<</say>>
<<say kp>>She didn't already know?<</say>>
<<say mc>>Well... it's a relatively new development.<</say>>
<<say kp>>It is? I had assumed you two would have been at it like rabbits the moment you got reunited. Between your lust aspect, and her obvious desire for you... anyway, irrelevant of when and how you started fucking, she seems to think $kenna.name is out to get her.<</say>>
<<say mc>>I don't... think so...<</say>>
<<say kp>>You must remember, $krissy.name is extremely intelligent, but that often leads her to assume others would act as she would.<</say>>
<<say mc>>She'd banish $kenna.name?<</say>>
<<say kp>>Family is one of the most important things to her. And while it would destroy her inside, if a member of that family threatened the peace of the rest, she would remove them. Remember, before you came here, they weren't on the best of terms...<</say>>
<<say mc>>That's fucked up... but I don't see $kenna.refer thinking that way.<</say>>
<<say kp>>That was for me to decide, and for what it's worth I agree. Based on the fact she's not trying to taint your thoughts or manipulate you into believing it is for the best that $krissy.name is gone, I conclude it's $krissy.name making incorrect assumptions.<</say>>
<<say mc>>So how do we fix this?<</say>>
<<say kp>>If you have a few hours spare now, I'll take you to my home, and we'll speak to her. Together.<</say>>
<div id="replace">
<<choices>>
<<link "Now">>
<<replace "#replace">>
<<say mc>>Let's go now.<</say>>
<<say kp>>I think together we may be able to convince her.<</say>>
<<cont "kpanswers" "krissysilly">>
<</replace>>
<</link>><br>
<<link "Later">>
<<replace "#replace">>
<<say mc>>I have something I need to take care of first.<</say>>
<<say kp>>Okay, you know where to find me.<</say>>
<<button "Continue" $return>>
<<event krissy anger 3.5>>
<<time 0.5>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "krissysilly">>
<<audio "zoop" play>>
<<say krissy>>Oh, $kp.name is that you? Do you know where my— $name!<</say>>
<<left2 "kp/handle01.jpg">>
<<say kp>>We need to talk.<</say>>
<<narrate>>$krissy.name eyes $kp.name cautiously.<</narrate>>
<<say krissy>>It's worse than I thought, isn't it?<</say>>
<<say mc>>No, it's not, it's—<</say>>
<<say kp>>You know me well, $krissy.name, and you know how my ability works, yes?<</say>>
<<narrate>>$krissy.name nods.<</narrate>>
<<say kp>>Then believe me when I say that $name and $kenna.name are not plotting to have you banished.<</say>>
<<narrate>>$krissy.name grimaces, and is clearly having an inner battle with her thoughts.<</narrate>>
<<say mc>>I have been clear that you don't rule our sex life, but we'd never see you exiled like that.<</say>>
<<say krissy>>You fucking broadcast it to the world.<</say>>
<<say mc>>To show you that we aren't beholden to you.<</say>>
<<say kp>>So this really is about them fucking, why do you care, $krissy.name?<</say>>
<<say krissy>>Because I forbade it!<</say>>
<<say kp>>Why?<</say>>
<<say krissy>>Because I want him to have a normal life. Earth isn't like a lot of other worlds.<</say>>
<<say kp>>Does his life seem normal to you? And he certainly doesn't live by Earth standards anymore.<</say>>
<<say krissy>>No, but that doesn't change the rules I set, does it?!<</say>>
<<narrate>>$kp.name cocks her head.<</narrate>>
<<say kp>>You are a genius, $krissy.name, maybe you can blow the others off with your hypocritical answers and get away with them thinking it's stubbornness... but I have assured you they are not colliding to have you banished from the hub, gateway network, or anywhere. So do you have any other reason they can't fuck?<</say>>
<<think mc>>I should have asked $kp.name from the start. It's like she sees right through $krissy.refer!<</think>>
<<left2 "krissy/strip05.jpg">>
<<say krissy>>I...<</say>>
<<narrate>>You can see the frustration in her eyes.<</narrate>>
<<say krissy>>No...<</say>>
<<narrate>>She responds, defeated.<</narrate>>
<<say kp>>So you'll return to the hub, and try to make nice?<</say>>
<<say krissy>>Why do I feel like a naughty child?<</say>>
<<say kp>>Because, $krissy.name, you have acted like one.<</say>>
<<say krissy>>You never did sugarcoat it, did you?<</say>>
<<say mc>>So... you'll come home? You'll not try to stop me and $kenna.name anymore?<</say>>
<<say krissy>>Fine. I'll return, I still can't say I'm comfortable with it, but promise you won't let her ever take my family away from me.<</say>>
<<say mc>>I promise.<</say>>
<<say kp>>Rest assured, I wouldn't allow it, either.<</say>>
<<narrate>>$krissy.name takes a deep breath.<</narrate>>
<<say krissy>>Alright, I'll come home shortly.<</say>>
<<say mc>>Great!<</say>>
<<say kp>>Okay, there are just a few things I want to discuss with her, so I'll let you head back ahead.<</say>>
<<say mc>>Okay...<</say>>
<<button "Continue" homehub>>
<<audio "zoop" play>>
<<corrupt "krissy" 4>>
<<like "krissy" 5>>
<<like "kp" 10>>
<<available "krissy">>
<<event "krissy" anger 4>>
<<set delete $krissy.locked>>
<<brothel "krissy">>
<<time 2.5>>
<</button>>
<<case "seeme">>
<<narrate>>$kp.name approaches you, a stern look on her face.<</narrate>>
<<left2 "kp/annoyed.jpg">>
<<say kp>>Answer me honestly. $name.<</say>>
<<say mc>>Uhh... what's going on?<</say>>
<<say kp>>Are you trying to banish, exile, or otherwise get rid of $krissy.name?<</say>>
<<say mc>>What the fuck? No...<</say>>
<<say kp>>Good. I can tell you're not lying... either that or you've grown beyond my power... and given you constantly surprise me I can't deny that possibility.<</say>>
<<say mc>>Why would you think I'm trying to do that, though?<</say>>
<<say kp>>We need to talk. Properly. Come find me when you have some time.<</say>>
<<say mc>>Right...<</say>>
<center>
<<button "Close">>
<<event krissy anger 3>>
<<script>>
Engine.play(State.active.title, true);
closeDialog();
<</script>>
<</button>>
</center>
<<case "progeny">>
<<left2 _img>>
<<say mc>>What can you tell me about the progeny?<</say>>
<<say kp>>Honestly, very little.<</say>>
<<say mc>>Are we not past the council holding back secrets?<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say kp>>No, we're not. Anything related to $founder.name you get information, but that's where our openness ends. That said, that's not what this is. I really don't know that much, you've met $kenzie.name, she's just not interested in telling us.<</say>>
<<say mc>>So what <b>do</b> you know?<</say>>
<<say kp>>I know it means she was born in Prime, and that her father is an extremely powerful being. I've met him only once, and even his presence was suffocating. He is the originator of the Gateway network. He set out to ensure all travelers that came after him had an easier time. Her siblings are all roughly the same power as her but otherwise just as varied as any other cross section of humanity.<</say>>
<<say mc>>Sounds like quite the man.<</say>>
<<say kp>>Indeed.<</say>>
<<say mc>>And did you know about $kayla.name?<</say>>
<<say kp>>I knew she was a progeny, though I could tell she wasn't first generation, but I did not know she was $kenzie.name's daughter until recently.<<if $kp.events.kaylalounge != undefined>> You may recall during my initial inspection, I mentioned she was an enigma to me.<</if>><</say>>
<<if $kp.events.kaylalounge != undefined>>
<<say mc>>I misunderstood entirely what you meant. I thought you were being rude about her, to be honest.<</say>>
<<say kp>>No, not at all. I was shocked to see her here is all, as part of your harem no less.<</say>>
<</if>>
<<say mc>>Why did you not say anything?<</say>>
<<say kp>>The progeny is a well-guarded secret... and before you ask, I do not fully know why.<</say>>
<<say mc>>That conversation with $kenzie.name solved a lot of mysteries for me, even if just a theory... but now I need entirely new answers.<</say>>
<<say kp>>Maybe you need to stop asking questions.<</say>>
<<narrate>>You glare at her, but she just giggles.<</narrate>>
<<button "Continue" $return>>
<<event "kp" "progeny">>
<<like "kp" 3>>
<<lust "kp" 2>>
<<time 1>>
<</button>>
<<case "kpwtf">>
<<narrate>>As you head into the hall, $kp.name is waiting.<</narrate>>
<<left2 "kp/wtf01.jpg">>
<<say "kp">>Good morning, $name. Just... I can't process last night. Did $voice.name seriously not help you?<</say>>
<<say "mc">>No, she can't control dreams she's not part of.<</say>>
<<say "kp">>Yes... that fits. You really have two aspects... more over, you used one on me. I had no idea it was a dream until I awoke.<<if $completeTasks.includes('fivek')>> I know $kenzie.name said it, and we discussed it... but I just didn't realize you'd gained so much control.<</if>><</say>>
<<say "mc">>Though, $voice.name tells me I can't force you into anything you don't want.<</say>>
<<say "kp">>Yes, the boons offered by the gateways always have such restrictions.<<if !$completeTasks.includes('fivek')>> I really don't understand how this is possible. I can only surmise you are channeling $voice.name's gateway somehow too.<<else>> Do you feel a connectioon to $voice.name's gateway?<</if>><</say>>
<<say "mc">>I don't feel her gateway at all... not like my own.<</say>>
<<say "kp">>I will do some research with $lacy.name and speak to $voice.name. You really do know how to keep a girl interested, huh?<</say>>
<<narrate>>You simply shrug, and then give her a wink.<</narrate>>
<<say "mc">>Anything to keep you around.<</say>>
<<say "kp">>Ha!<</say>>
<<set $tempvar3 = "">>
<<event "kp" "dreamed">>
<<cont "homehub" "" 0.5>>
<<case "duality">>
<<left2 _img>>
<<say "mc">>What can you tell me about having two aspects? Do they mix with each other, could I get more aspects even?<</say>>
<<if $completeTasks.includes('fivek')>>
<<say "kp">>Before recently, I didn't think it was even possible to have two. I'd like to say that's it... but you continue to subvert expectations.<</say>>
<<say mc>>Yeah... what kind of aspects are there?<</say>>
<<say kp>>Lust is, honestly, the most common, though not usually as strong as yours, greed is often another. Love is a rare one, as is dreams thinking about it. But... there are many.<</say>>
<<say mc>>Greed? Love?<</say>>
<<say kp>>Greedy patrons are often hoarders, territorial, and selfish. Love patrons are the ugliest lot, though, their hubs are basically cults. I hate those places.<</say>>
<<say mc>>Are there any aspects you like?<</say>>
<<say kp>>Hmm, well, I've always liked the dreamers, at least the friendlier ones, there's rarely any harm, and they just provide a pleasant experience for those involved.<</say>>
<<think mc>>I should totally use the aspect on her!<</think>>
<<say kp>>Why are you grinning like that?<</say>>
<<else>>
<<say "kp">>Multiple aspects isn't possible. Your gateway provides that boon, it's not your power innately.<</say>>
<<say "mc">>Uhh... I think I have two.<</say>>
<<say "kp">>I doubt that, $name. Though you've surprised me multiple times before. What do you believe the second one to be?<</say>>
<<say "mc">>Dreams. I sort of have shared dreams with others, that are a little beyond visions in my head.<</say>>
<<say "kp">>Like $voice.name? It was probably just her aspect interacting with you.<</say>>
<<say "mc">>She said it wasn't her doing and suggested I had a second aspect.<</say>>
<<say "kp">>I guess she wouldn't know the absurdity of that statement. Show me. Tonight.<</say>>
<<say "mc">>Oh, I'll show you exactly the same way $voice.name showed me!<</say>>
<<say "kp">>So the only time you've been conscious of this is when $voice.name was there? It very much sounds like her aspect, $name.<</say>>
<</if>>
<<say "mc">>Just wait... you'll see!<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<button "Continue" housestuff>>
<<like "kp" 4>>
<<dreamer "kp">>
<<time 1>>
<</button>>
<<case "briefcase">>
<<left2 _img>>
<<say "mc">>So, about the briefcase...<</say>>
<<if $mc.events.councilbrief == true>>
<<say "kp">>The council were most intrigued. $azul.name will collect it personally; this will also be her first venture to another patron's hub for... a VERY long time.<</say>>
<<say "mc">>I hadn't checked it for a long time, but I found all sorts of instructional information in there that I hadn't seen before. I don't know what the triggers were for me being able to read it, but it's the later pages that concern me.<</say>>
<<say "kp">>I'd assume something that reacts to your powers. What has you concerned?<</say>>
<<say "mc">>She says she's going to reunite with me soon, that the council and $voice.name betrayed her... and that I am one of many.<</say>>
<<say "kp">>While that is concerning, it does confirm our belief you are the best chance we have of stopping her. The one of many however, is not something we'd considered.<</say>>
<<say "mc">>The text is... incoherent at times. But she mentioned she felt at home in central.<</say>>
<<narrate>>Her face goes pale.<</narrate>>
<<say "kp">>$azul.name will visit as part of her task. I suggest you invite her immediately and pass her the briefcase so she can analyze.<</say>>
<<say "mc">>Can I not just give it to you?<</say>>
<<say "kp">>No. We want as a few hands on it as possible as to avoid any potential contamination. It's not that we don't trust each other in the council, it's just protocol for everyone's safety.<</say>>
<<say "mc">>Uhh... right.<</say>>
<<elseif $mc.events.councilbrief == 'taken'>>
<<say "kp">>Yes, the messages in it trouble the council. Add the fact $azul.name was unable to bring it to central.<</say>>
<<say "mc">>Why was she unable to take it... and where is it now?<</say>>
<<say "kp">>It would not travel with her. It is anchored here to this hub. $azul.name is analyzing it, trying to understand if it has any secondary functions. Fyodr is even likely to come to the hub to assist, given it can't go to him.<</say>>
<<say "mc">>Is it likely to be dangerous?<</say>>
<<say "kp">>It may very well just be anchored here and serve no further function, but it is best that we are safe. The biggest concern to the council was that she stated she felt at home in Central.<</say>>
<<say "mc">>Why would that be a concern? She just enjoyed using its powers, right?<</say>>
<<say "kp">>It means she may be an even larger threat than we imagined.<</say>>
<<say "mc">>I don't get, why would—<</say>>
<<say "kp">>Sorry, $name, I can say no more. Complete the tasks the council has assigned you, then we will discuss next steps.<</say>>
<<say "mc">>Why does the council insist on holding so much back?!<</say>>
<<narrate>>You throw your hands up in the air in frustration.<</narrate>>
<<elseif $mc.events.councilbrief == false>>
<<say "kp">>Some sort of new development?<</say>>
<<say "mc">>I discovered a large number of new pages with some troubling messages.<</say>>
<<say "kp">>Why didn't you tell $azul.name during the interrogation?!<</say>>
<<say "mc">>I didn't know if it was relevant, and was unsure I could trust them.<</say>>
<<say "kp">>I tried to make it clear you should be honest with them. Now it appears as though you've hidden the information!<</say>>
<<say "mc">>That wasn't my intention at all.<</say>>
<<say "kp">>It doesn't matter what your intention was. Hold on to it, don't let anyone else touch it. <<if $azul.name != "???">>$azul.name is likely to want it.<</if>><</say>>
<<say "mc">>Right... okay. Sorry, $kp.name.<</say>>
<<elseif $completeTasks.includes('councilmeet')>>
<<say "kp">>Some sort of new development?<</say>>
<<say "mc">>I hadn't checked it for a long time, but I found all sorts of instructional information in there that I hadn't seen before. I don't know what the triggers were for me being able to read it, but it's the later pages that concern me.<</say>>
<<say "kp">>Why didn't you tell $azul.name during your interrogation?<</say>>
<<say "mc">>I hadn't discovered it at that point.<</say>>
<<say "kp">>I'll report back. Hold on to it and don't let anyone else touch it. $azul.name is likely to want it.<</say>>
<<say "mc">>Understood.<</say>>
<<else>>
<<say "kp">>Some sort of new development?<</say>>
<<say "mc">>I hadn't checked it for a long time, but I found all sorts of instructional information in there that I hadn't seen before. I don't know what the triggers were for me being able to read it, but it's the later pages that concern me.<</say>>
<<say "kp">>I'd assume something that reacts to your powers. What has you concerned?<</say>>
<<say "mc">>She says she's going to reunite with me soon, that the council and $voice.name betrayed her... and that I am one of many.<</say>>
<<say "kp">>That is quite the concern yes...<</say>>
<<say "mc">>The text is... incoherent at times. But she mentioned she felt at home in Central.<</say>>
<<narrate>>Her face goes pale.<</narrate>>
<<say "kp">>The council need to be aware. Hold on to it and don't let anyone else touch it. <<if $azul.name != "???">>$azul.name is likely to want it.<</if>><</say>>
<<say "mc">>Understood.<</say>>
<</if>>
<<button "Continue" housestuff>>
<<taskdone "kpbrief">>
<<time 1>>
<</button>>
<<case "power">>
<<left2 _img>>
<<say "mc">>How do I go about increasing my power? I know connecting to new worlds grants me some, and after the last two limit breaks I felt a power surge... but are those the only ways?<</say>>
<<say "kp">>Not at all. I can't say too much, as it cheapens the point of these tasks. But, likewise, you would have known some of this already were your beginnings not so... atypical.<</say>>
<<say "mc">>Oh?<</say>>
<<say "kp">>
<<if $techscomplete.signal != undefined>>
I'm aware $lacy.name's already discovered your connection to the worlds.
<<else>>
You are connected to those worlds.
<</if>>
That connection, while invisible, is much more than a simple transmission, it's like an extension of your being. Just like a muscle, you can strengthen it.<</say>>
<<say "mc">>Okay... so... how?<</say>>
<<say "kp">>That part, I'll leave you to work out.<</say>>
<<say "mc">>Always the tease, huh?<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kp">>You'll do fine, I'm sure.<</say>>
<<think "mc">>Hmm, well, you can strengthen a muscle doing exercise. Usually by repeating an action multiple times. If my connection to those worlds is passive, it's like a muscle that's relaxed and when I connect via the gateway it's tensed? Does the analogy work to that level? Well, only one way to find out!<</think>>
<<button "Continue" housestuff>>
<<taskdone "salimpower">>
<</button>>
<<case "planets">>
<<left2 _img>>
<<say "mc">>Can you help me find worlds to connect to, $kp.name?<</say>>
<<say "kp">>The council prohibit me from doing that. Regardless, any given list of planets that isn't specifically curated for you would be mostly useless anyway.<</say>>
<<say "mc">>Why's that?<</say>>
<<say "kp">>There are an untold number of worlds out there. As you've probably already guessed for yourself, you can't just choose random coordinates and hope to find a populated world. Unless you were extremely lucky, you'd tire yourself out long before you found a compatible world.<</say>>
<<say "mc">>Makes sense... but why would a list of inhabited worlds be a problem?<</say>>
<<say "kp">>The example was to demonstrate the scale of what we're working with. Now, if I gave you a list of inhabited worlds, you're going to find that several you simply can't connect to. Maybe you're not powerful enough, maybe the governments on those planets actively kill and/or torture travelers for witchcraft, maybe—<</say>>
<<say "mc">>There are worlds that do that?<</say>>
<<say "kp">>Unfortunately, yes. The gateway network was set up in large to protect the travelers from such worlds, as much to regulate patrons. Worlds that are harmful to travelers are restricted and the gateway safety protocols will prevent entry. Likewise, some planets for various reasons need more power to connect to. Maybe too many patrons are already connected, meaning your own signal would be diluted too much, or it's a heavily populated world that draws more of your power to create the initial connection. In those cases the equalizers take over the transfer.<</say>>
<<say "mc">>So how come I never encountered any of those when I first became a patron and started welcoming travelers?<</say>>
<<say "kp">>The gateway network only sends you incoming transfers from worlds you are capable of connecting to.<</say>>
<<say "mc">>So how do I find more worlds?<</say>>
<<say "kp">>Not through me or the council, that's for sure. You can keep finding them the way you did before, or try something else.<</say>>
<<say "mc">>Like what?<</say>>
<<say "kp">>All I'll say is that anyone who travels to this hub via a gateway is from a compatible world, and almost everyone on this hub save for people like me or those from P–uh, Central, got here via a gateway.<</say>>
<<say "mc">>Right...<</say>>
<<button "Continue" $return>>
<<like "kp" 3>>
<<lust "kp" 1>>
<<event "kp" "planets">>
<<task "safety">>
<<taskdone "safety">>
<<time 1>>
<</button>>
<<case "tasks">>
<<if debug == true>>
<div class="debug">
<<button "Reset $azul.name Task" kpanswers>>
<<set delete $tasks.azulsex>>
<<set delete $tasks.azulsex2>>
<<set $completeTasks.delete('azulsex')>>
<<set $completeTasks.delete('azulsex2')>>
<</button>>
<<button "Reset $kp.name task" kpanswers>>
<<set delete $tasks.eastfriends>>
<</button>>
</div>
<</if>>
<<if !$completeTasks.includes('avagreet')>>
<<say "kp">>Why don't you go greet your $kenna.them? The council tasks can wait a little longer.<</say>>
<<cont "housestuff" "">>
<<elseif $tasks.eastfriends0 == undefined && !$completeTasks.includes('eastfriends0')>>
<<left2 _img>>
<<say kp>>We'll start you with my task, but I advise you to try and work on them all together. I am only giving you mine immediately, because it is likely to take the longest.<</say>>
<<say "mc">>What do you need me to do for you?<</say>>
<<say "kp">>Reestablish communications with New Eden and initiate a friendly relationship.<</say>>
<<say "mc">>Great, I had planned to do that anyway.<</say>>
<<say "kp">>
<<if $mc.events.eastresolved == "enforcer1">>
Though given how you basically forced them into submission, gaining their trust may prove difficult.
<<set $nerels = "Fearful">>
<<elseif $mc.events.eastresolved == "enforcer2">>
You used an enforcer to get your point across when diplomacy failed. It may not be as easy to gain their trust as you think.
<<set $nerels = "Cautious">>
<<else>>
You approached things diplomatically with them, which should put you in good standing to gain their trust. However, it doesn't change the fact that Gerald forced your hand to show force.
<<set $nerels = "Unsure">>
<</if>>
<<set _lc = $nerels.toLowerCase()>>
Though your other actions may have assisted with how they perceive you, I imagine they are _lc of you right now.<</say>>
<<say "mc">>Ah, so when you said a friendly relationship, you want me to gain their trust?<</say>>
<<say "kp">>Correct.<</say>>
<<say "mc">>How will you know I've achieved that, though?<</say>>
<<say "kp">>Let me worry about that. I'll provide some way for you to view an approximation of how the council feels New Eden view you.<</say>>
<<say "mc">>Right...<</say>>
<<button "Continue" "kpanswers">>
<<task "eastfriends0">>
<<set $neprogress = 0>>
<<time 1>>
<</button>>
<<else>>
<<say "kp">>You need to complete a task for each of the council members. Whose task do you want to start?<</say>>
<<choices>>
<div class="flex">
<<if $tasks.fyodr == undefined && !$completeTasks.includes('fyodr')>>
<<link '<div class="girlChoice"><<center "fyodr/fyodrcrop.jpg">>Fyodr</div>' counciltasks>>
<<temp "fyodr">>
<</link>>
<</if>>
<<if $tasks.salimpower == undefined && !$completeTasks.includes('salimpower')>>
<<link '<div class="girlChoice"><<center "salim/salimcrop.jpg">>Salim</div>' counciltasks>>
<<temp "salim">>
<</link>>
<</if>>
<<if $tasks.azulsex == undefined && !$completeTasks.includes('azulsex')>>
<<link '<div class="girlChoice"><<center "azul/azulcrop.jpg">>$azul.name</div>' counciltasks>>
<<temp "azul">>
<</link>>
<</if>>
<<if $completeTasks.includes('powerone') && $tasks.kennaattr == undefined && !$completeTasks.includes('kennaattr')>>
<<link '<div class="girlChoice"><<center "kenna/kennacrop.jpg">>$kenna.name</div>' counciltasks>>
<<temp "kenna">>
<</link>>
<</if>>
<<if $completeTasks.includes('azulsex2') && $completeTasks.includes('fyodr') && $completeTasks.includes('salimpower2') && $completeTasks.includes('eastfriends') && $completeTasks.includes('kennaattr')>>
<<link '<div class="girlChoice"><<center "kenzie/kenziecrop.jpg">>$kenzie.name</div>' counciltasks>>
<<temp "kenzie">>
<</link>>
<<set _t = false>>
<<else>>
<<set _t = true>>
<</if>>
</div>
<<link "Never mind" housestuff>><</link>>
<</choices>>
<<if _t == true>>
<<say kp>>You'll need to complete the other tasks before I give you the final one. <<if !$completeTasks.includes('powerone')>>Likewise, $kenna.name wants you to utilize what you learn from Salim's task before taking on hers.<</if>><</say>>
<</if>>
<</if>>
<<case "salimfail">>
<<set $location = getRawLocation('kp')>>
<<if $location == "Central">>
<<set $location = "bedrooms">>
<<think "mc">>I need to ask $kp.name more about this before I go to $cassie.name. But she's currently at Central.<</think>>
<<button "Continue" housestuff>>
<<task "salimcassie">>
<<event "salim" "cassie" "badwait">>
<</button>>
<<else>>
<<set _img = getFolder('kp') + "/$location01.jpg">>
<<left2 _img>>
<<if $salim.events.cassie == "badwait">>
<<say "kp">>I heard things did not go well with Salim, though he didn't provide any details.<</say>>
<<else>>
<<say "kp">>I wasn't expecting you to appear back here... what happened?<</say>>
<</if>>
<<say "mc">>The bastard tricked me!<</say>>
<<say "kp">>I did warn you. What did he do?<</say>>
<<say "mc">>He wants $cassie.name. If he sleeps with her, he'll forego the task.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say "kp">>I thought he had taken a shine to her as he asked so many questions about her during my report. However, that will not be the council task.<</say>>
<<say "mc">>What do you mean?<</say>>
<<say "kp">>It does not fit the brief. The rest of the council would not let it stand. His task should have been about power.<</say>>
<<say "mc">>So what do I do? He asked me to send $cassie.name to him.<</say>>
<<say "kp">>Then do just that.<</say>>
<<say "mc">>But she—<</say>>
<<say "kp">>He won't harm her, or force her to do anything against her will, but it will be a lot easier if she can sweet talk him. I can intervene, force him to give you a task proper, but you won't gain his trust that way.<</say>>
<<say "mc">>I'm not sure I want it...<</say>>
<<narrate>>You sigh.<</narrate>>
<<say "mc">>Why is nobody normal?<</say>>
<<say "kp">>Normal is a relative term.<</say>>
<<say "mc">>And you promise she'll come to no harm?<</say>>
<<say "kp">>Salim will not harm her, no... unless she's into that.<</say>>
<<narrate>>She giggles.<</narrate>>
<<say "mc">>$kp.name!<</say>>
<<say "kp">>Sorry, I couldn't resist. Even I like to joke every now and again.<</say>>
<<button "Continue" housestuff>>
<<task "salimcassie">>
<<event "salim" "cassie" "bad">>
<</button>>
<</if>>
<<case "ava">>
<<left2 _img>>
<<say "mc">>Tell me about my $kenna.them, $kp.name! Did you know?!<</say>>
<<say "kp">>She's fine. You'll reunite soon. I didn't know to start no, it wasn't until I discovered $krissy.name was your $krissy.them that I came to realize the truth. She asked me not to say anything until she was ready, though.<</say>>
<<say "mc">>That makes no sense, why wouldn't she want us to know?!<</say>>
<<say "kp">>I don't think she wanted you thinking you were earning anything because of her instead of in your own right.<</say>>
<<say "mc">>But we thought her dead!<</say>>
<<say "kp">>Listen. I can't speak for her motivations or thought-process. You'll have to ask her yourself. You should know, she has been suspended from the council.<</say>>
<<say "mc">>What does that mean?<</say>>
<<say "kp">>I trust her explicitly, it's why I suggested her for the council to begin with, but her connection to you, and your connection to $founder.name... well you can see why they can't take the risk she's a spy. The suspension will be lifted once the issue is resolved.<</say>>
<<say "mc">>They think her a spy?<</say>>
<<say "kp">>No, even Salim who jumps to conclusions at the drop of a hat trusts her. Nobody suspects her, it's not about that, it's about minimization of risk. What's going on out there is too massive to allow even the slightest risk to remain.<</say>>
<<say "mc">>So where is she now?<</say>>
<<say "kp">>Despite her suspension, she has one final instruction. That is to task you, just like the others, but report your progress to me. A test for her, of sorts. She'll be coming to the hub soon.<</say>>
<<narrate>>There's a rush of relief through your entire body, and a fleeting happiness before $kp.name brings you back to reality.<</narrate>>
<<say "kp">>But your life, and by extension hers, is still very much in the balance. You need to impress the council. Each of us will assign you a task to achieve.<</say>>
<<say "mc">>Like what?<</say>>
<<say "kp">>It will vary based on the council member, but it will generally revolve around serving travelers. We can begin whenever you're ready.<</say>>
<<say "mc">>And when will $kenna.name arrive?<</say>>
<<say "kp">>The council is ensuring her duties will be covered, and then she'll be released, most of that happened before I came here, so it should only be a few hours now. I have asked her to enter via Gateway B so you and $krissy.name can greet her. I'll have $lacy.name text you when it's time.<</say>>
<<say "mc">>I daren't tell $krissy.refer... I don't want to risk her losing her daughter twice. I'll meet her alone for now and take her to $krissy.refer.<</say>>
<<say "kp">>I understand. Once you've finished catching up with her, come speak to me so we can discuss the council tasks. The quicker you get them done, the quicker we can move on.<</say>>
<<say "mc">>Understood.<</say>>
<<think "mc">>I was hoping to get some respite after the events of New Eden, but it feels like things are only escalating further.<</think>>
<<button "Continue" housestuff>>
<<like "kp" 4>>
<<task "counciltasks0">>
<<taskdone "avafind">>
<<set $kenna.traits.pushUnique('council member')>>
<<time 1>>
<<run queueMessage(3, 'lacy', 'ava')>>
<</button>>
<<case "meriya2">>
<<block _img>>
<<if $kp.events.meriya == undefined>>
<<say "mc">>So what exactly happened with $voice.name?<</say>>
<<say "kp">>I'm still unsure myself. I'm hoping the council have useful input.<</say>>
<<say "mc">>And no idea where she is?<</say>>
<<say "kp">>Sort of. She's retreated into the gateway. I could destroy it completely, but that would wipe her from existence.<</say>>
<<say "mc">>No!<</say>>
<<say "kp">>I thought you might say that. Listen, it may have to come to that depending on her actions. But I understand right now we don't have the information to make any informed decision.<</say>>
<<else>>
<<say "mc">>Can you tell me anything new about $voice.name?<</say>>
<<say "kp">>Afraid not. I tried to communicate with her while you were in the East, but got nothing.<</say>>
<<say "mc">>Can you force her out of the gateway?<</say>>
<<say "kp">>I can, but I do not wish to provoke her until I have a better understanding of the situation.<</say>>
<<say "mc">>And how do we get that?<</say>>
<<say "kp">>I'm hoping your presence is key.<</say>>
<</if>>
<</block>>
<<if $kp.events.meriya == undefined>>
<<say "mc">>What about her champions? If she really has gone rogue, can she force them to turn on the others here... on me?<</say>>
<<say "kp">>No, champions retain their freewill, but she can restrict their power. I say this as politely as I can, but none of them are particularly powerful right now because she was so weak herself when she summoned them, so I don't see it really having much effect.<</say>>
<<say "mc">>You mean $britt.name and $moriah.name are just naturally that strong?<</say>>
<<say "kp">>And yet neither are a match for $kylie.name any more.<</say>>
<<if $mc.events.eastresolved == "convinced">>
<<say "mc">>She saved our lives.<</say>>
<<else>>
<<narrate>>You raise an eyebrow.<</narrate>>
<</if>>
<</if>>
<<say "kp">>While you were in the East she remained within the gateway, not once taking any other form or attempting communication. If I were to hazard a guess, I'd say she's stuck in quandary and your absence left her unable to resolve that. Now you're back, I'd guessing she'll be watching you to decide her next course of action.<</say>>
<<button "Continue" kp>>
<<time 1>>
<<event "kp" "meriya2">>
<</button>>
<<case "enforcer2">>
<<block _img>>
<<if $kp.events.enforcer == undefined>>
<<say "mc">>Who is that?<</say>>
<<narrate>>You point at the enforcer.<</narrate>>
<<say "kp">>That's an enforcer.<</say>>
<<say "mc">>Yes. Thank you Captain Obvious.<<if $mc.events.eastresolved != "convinced">> One helped me back East even.<</if>> But, what exactly is an enforcer... what are they enforcing?<</say>>
<<else>>
<<say "mc">>Care to tell me more about enforcers now?<</say>>
<<narrate>>You point at the enforcer with her.<</narrate>>
<<say "kp">>Yes, I guess I did promise to tell you more, didn't I?<</say>>
<<narrate>>You nod.<</narrate>>
<</if>>
<<say "kp">>Enforcers are powerful beings trained to combat patrons. Not all patrons are good and the council needs some way to deal with that.<</say>>
<<say "mc">>So are they patrons too?<</say>>
<</block>>
<<say "kp">>No. Well, some may have been previously. They are a collection of people from all walks of life that become champions of... uhh... the council...<</say>>
<<think "mc">>That was a suspicious pause...<</think>>
<<say "kp">>And protect the realms at large from any relevant threats.<</say>>
<<say "mc">>And who protects from them?<</say>>
<<say "kp">>Other enforcers. They are highly disciplined and highly trained. All council members have their own enforcers loyal to them, and then there's also an entire army of them to keep the peace. We've never had to use them in full force, and I hope that we never do.<</say>>
<<say "mc">>What's to stop the head enforcer or whatever from staging a coup or destroying the council?<</say>>
<<say "kp">>They are not <i>that</i> powerful. The council is leagues above them.<</say>>
<<say "mc">>Okay... so how do they identify threats?<</say>>
<<say "kp">>The systems track unusual signals and power spikes throughout the network, such as the one between you and $voice.name. Equalizers monitor and analyze these to share with the enforcers as appropriate.<</say>>
<<say "mc">>I see, so wh—<</say>>
<<say "kp">>Listen, we've got to meet the council soon. I get you want to know as much as you can, but there are some things I can't tell you. <<if $krissy.events.council2 != undefined>>I know $krissy.name has already told you a lot about the council and the positions within it. I have nothing further to add to that at this stage. <<else>> If you'd like to speak more about the council I'm happy to do so, as I'm sure $krissy.name is. But let's take a break for now.<</if>><</say>>
<<button "Continue" kp>>
<<event "kp" "enforcer2">>
<<time 1>>
<</button>>
<<case "council2">>
<<block _img>>
<<say "mc">>You said you'd tell me more about the council.<</say>>
<<narrate>>She sighs.<</narrate>>
<<say "kp">>You're like a dog with a bone. Very well. You're already aware it's a group of six individuals overseeing the gateway network.<</say>>
<<say "mc">>And that you're one of them.<</say>>
<<say "kp">>Yes. I oversee the inspectors and serve on the council. Each member of the council has a specific purpose.<</say>>
<</block>>
<<say "mc">>Interesting, so can you tell me about its members?<</say>>
<<say "kp">>It's not for me to do that, but I will at least tell you about their roles. There are three positions that directly oversee teams that provide services to the gateway network. Inspectors, enforcers, and equalizers.<</say>>
<<say "mc">>Equalizers? The enforcers are surely already terrifying enough.<</say>>
<<say "kp">>I can see why the name may misdirect you. But they serve an entirely different purpose. They're the ones who route traffic to your hub.<</say>>
<<say "mc">>Wait, what? I thought that was all automatic!<</say>>
<<say "kp">>Not at all. The equalizers route travelers to hub worlds. A traveler can not make the jumps directly to another world, they need a small rest between. Each hub can cover about a 100,000 universes, so depending on distance, it's possible for a traveler to visit several hub worlds on their journey.<</say>>
<<say "mc">>Wow. It does make me wonder how the whole network was created. If it needs a patron and an equalizer for a traveler to make use of it, how did they all find each other?<</say>>
<<say "kp">>Not something I can reveal to you today, perhaps not ever, I'm afraid. Just know patrons and equalizers exist for the benefit of travelers. So, that leaves three members of the council...<</say>>
<<think "mc">>At least this time she's telling me she's holding something back, I guess.<</think>>
<<say "kp">>There's a patron and a traveler. Each are chosen based on their past deeds, knowledge, and mindset. It is important we have such people to provide a fully rounded view on all aspects.<</say>>
<<say "mc">>And the sixth?<</say>>
<<say "kp">>I am unable to divulge that. They do not serve like the rest of us, but are just as important. However, their position is somewhat purposefully hidden even from the most senior beings under direct command of the council.<</say>>
<<say "mc">>Okay, now I'm super intrigued. Why is that?<</say>>
<<say "kp">>Yes, I feared you might be. I cannot tell you. Only with their consent and a council vote can certain things be shared.<</say>>
<<say "mc">>Well, my curiosity is just growing. Can you not tell me anything?<</say>>
<<say "kp">>All I will say is do not disrespect her. I myself do not fully understand the...<</say>>
<<narrate>>She pauses for a moment, deliberating over her next words.<</narrate>>
<<say "kp">>...reason for the secrecy, but it has been in place for millennia.<</say>>
<<say "mc">>You know I'm going to find out, right?<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say "kp">>I think this one may be even beyond you.<</say>>
<<button "Continue" kp>>
<<like "kp" 2>>
<<event "kp" "council2">>
<<time 1>>
<</button>>
<<case "champions2">>
<<block _img>>
<<say "mc">>What else can you tell me about champions?<</say>>
<<say "kp">>Champions are a patron's elite. By creating a connection with them it allows your power to flow through them.<</say>>
<<say "mc">>So how is that different from a tour guide?<</say>>
<<say "kp">>A tour guide is able to access your gateway powers, they do not get any power themselves. A champion however basically becomes a receptor for your power that manifests itself in various abilities.<</say>>
<<if $mc.events.eastresolved == "convinced">>
<<say "mc">>Like $kylie.name shooting electricity from her fingertips? Superpowers?<</say>>
<<else>>
<<say "mc">>Abilities? You mean like superpowers?<</say>>
<</if>>
<</block>>
<<say "kp">>That's not really an appropriate term. This isn't a comic book and people aren't going to start getting powers allowing them to alter reality or anything crazy. But, yes, they will exhibit feats of strength and abilities far beyond that of a regular human.<</say>>
<<say "mc">>Sounds pretty crazy to me! So how do I make more champions?<</say>>
<<say "kp">>I would advise against it for now. Wait until we've met the council and they are happy you pose no threat. Especially do not steal $voice.name's champions right now. I know they all want to be your champion, and they all want to feel that close to you. But, if you look like you're amassing an army, you may look like an enemy.<</say>>
<<say "mc">>Yeah... I guess that makes sense. I could just tell how much they all wanted it when I made $kylie.name one without knowing.<</say>>
<<say "kp">>Yes, be careful with that big dick of yours. Your lust aspect is key to creating champions. I know I can't stop you, nor would I try, from having fun with your harem, but concentrate on them and the passion. We'll go through the proper instructions once things are clear with the council.<</say>>
<<say "mc">>Understood. But just one last question, are there any dangers or drawbacks to them becoming my champions? Like I'm not shaving years off their lives or anything am I?<</say>>
<<say "kp">>Ha, in all my years, I'm not sure any patron has bothered to ask anything like that. But no, it's perfectly safe for them. Though if they aren't sound of mind, it may cause others issues, but your harem seem fine on that score.<</say>>
<<say "mc">>Thanks, $kp.name.<</say>>
<<button "Continue" kp>>
<<like "kp" 2>>
<<event "kp" "champions2">>
<<time 1>>
<</button>>
<<case "meriya">>
<<block _img>>
<<say "mc">>Can you tell me anything at all about what may have happened to $voice.name or if she poses a threat?<</say>>
<<say "kp">>I am somewhat unsure to be honest. It's something I will be consulting with the council on.<</say>>
<<say "mc">>And no idea where she is?<</say>>
<<say "kp">>Sort of. She's retreated into the gateway. I could destroy it completely, but that would wipe her from existence.<</say>>
<<say "mc">>No!<</say>>
<<say "kp">>I thought you might say that. Listen, it may have to come to that depending on her actions. But I understand right now we don't have the information to make any informed decision.<</say>>
<</block>>
<<say "mc">>What about her champions? If she really has gone rogue, can she force them to turn on the others here... on me?<</say>>
<<say "kp">>No, champions retain their freewill, but she can restrict their power. I say this as politely as I can, but none of them are particularly powerful right now because she was so weak herself when she summoned them, so I don't see it really having much effect.<</say>>
<<say "mc">>You mean $britt.name and $moriah.name are just naturally that strong?<</say>>
<<say "kp">>Yes, but I think you misunderstand what I mean by power.<</say>>
<<say "mc">>So what—<</say>>
<<say "kp">>I've said enough for now to put your mind at ease. Your companions will be safe while you venture east. I'll consult with the council and we can discuss this again once I have more information and you don't have more pressing concerns.<</say>>
<<button "Continue" kp>>
<<time 1>>
<<event "kp" "meriya">>
<</button>>
<<case "enforcer">>
<<block _img>>
<<say "mc">>Who is that?<</say>>
<<narrate>>You point at the enforcer.<</narrate>>
<<say "kp">>That's an enforcer.<</say>>
<<say "mc">>I inferred that much from your calling him that... but what exactly is he doing here?<</say>>
<<say "kp">>That's a story for when you return from the East. I know you have questions, but the answers will leave you wanting more and right now you need to focus.<</say>>
<<say "mc">>You're really not going to tell me?<</say>>
<</block>>
<<say "kp">>No. I know you, and I know right now this rabbit hole is not going to help you.<</say>>
<<say "mc">>We will definitely talk when I'm back!<</say>>
<<say "kp">>We have much to discuss when you do.<</say>>
<<button "Continue" kp>>
<<time 1>>
<<event "kp" "enforcer">>
<</button>>
<<case "helping">>
<<block _img>>
<<say "mc">>Why are you helping me? Willing to defend my companions when I'm gone even?<</say>>
<<say "kp">>Because you're a good man. Morally bankrupt when it comes to matters of a sexual nature - that's a compliment, by the way - but you genuinely care.<</say>>
<<say "mc">>And that's it?<</say>>
<<say "kp">>No. If I'm honest, $voice.name's situation also interests me. Well, her previous state at least. This new revelation is something else entirely.<</say>>
<<say "mc">>And what of the council?<</say>>
<</block>>
<<say "kp">>They are leaving it to me for now. You are being watched carefully, but you have nothing to fear from them if you continue as you have been.<</say>>
<<say "mc">>And I can trust them?<</say>>
<<say "kp">>Just trust in me. I'll handle the council.<</say>>
<<button "Continue" kp>>
<<like "kp" 1>>
<<event "kp" "helping">>
<<time 1>>
<</button>>
<<case "champions">>
<<block _img>>
<<say "mc">>You said I could make others my champions?<</say>>
<<say "kp">>Yes, I suspect it'll happen with or without my assistance to be honest, but I ask that you wait until you return.<</say>>
<<say "mc">>Why?<</say>>
<<say "kp">>Because taking a champion from another patron is effectively an act of war. We are clueless as to $voice.name's feelings or intentions at this stage. It would be best not to antagonize her.<</say>>
<<say "mc">>I see. And will she not give them up willingly?<</say>>
<</block>>
<<say "kp">>There's no precedence for it, but nor was there any for what you've achieved thus far. Let's figure all that out when you return.<</say>>
<<say "mc">>So I can take other champions then? $kayla.name or $val.name for instance?<</say>>
<<say "kp">>I highly recommend you do not make any more champions until you fully understand what it means.<</say>>
<<say "mc">>But the current—<</say>>
<<say "kp">>Please. Let's shelve this discussion until you've returned.<</say>>
<<button "Continue" kp>>
<<event "kp" "champions">>
<<time 1>>
<</button>>
<<case "bang">>
<div id="bg" style="position:fixed; top:0;bottom:0;left:0;right:0; background-color: black; z-index: 150;"></div>
<<script>>
$(document).one(':passageend', function (ev) {
$('#bg').fadeOut(1500);
})
<</script>>
<<audio ":all" stop>>
<<audio "heart" play>>
<<narrate>>You open your eyes to see $kp.name beside you.<</narrate>>
<<block "kp/docs01.jpg">>
<<say "kp">>Ah, good. You're awake.<</say>>
<<say "mc">>What happened; where is $shalina.name?<</say>>
<<say "kp">>First things first. How do you feel?<</say>>
<<narrate>>You stretch your body out.<</narrate>>
<<say "mc">>I feel fine.<</say>>
<</block>>
<<say "kp">>Not physically. Try to focus your patron energies.<</say>>
<<narrate>>You focus, trying to engage the Gateway in the usual way... but it feels so much easier than normal. Experimentally, you try to focus on the buffer, the usual sigils and runes now seemingly making perfect sense to you. So much so that you release $krissy.name from the buffer by simply wondering if you're now able to.<</narrate>>
<<say "mc">>I feel... incredible. I just released my $krissy.them from the buffer so easily too! I should go greet her.<</say>>
<<say "kp">>Let's take a moment. You've just undergone a power surge. You've bypassed several limiters in one night... without any form of inspection or intervention from the council.<</say>>
<<say "mc">>Sleeping with $shalina.name made me more powerful?<</say>>
<<say "kp">>And her. Though she's in the wind.<</say>>
<<say "mc">>But how?<</say>>
<<say "kp">>I don't know. Was anything different when you were together? Did she say anything?<</say>>
<<narrate>>You think back.<</narrate>>
<<say "mc">>She was certainly nervous, uneasy even. Said her senses were still dull, but she wanted to continue. That is, right until the very moment I was cumming. She screamed for me to stop and accused me of being with 'her'; but it was too late, I was already mid-orgasm.<</say>>
<<narrate>>$kp.name looks contemplative.<</narrate>>
<<say "kp">>I see. Any idea who she was referring to?<</say>>
<<say "mc">>Not a clue. Are we safe?<</say>>
<<say "kp">>I am unsure. But... listen, $lacy.name filled me in on the situation. You need to deal with it regardless of what just happened, otherwise the East will be a threat, not to you, but to your companions. I'm going to stay on this world for some time. I'll protect them while you're away. Do you trust me?<</say>>
<<say "mc">>I do. But, why would you help me? And what do you think they need protecting from?<</say>>
<<say "kp">>$shalina.name. Possibly. She's gone from being a crippled low-level patron to a mid- possibly even high-level patron overnight. I have no idea what her intentions are or if she had this planned, but that accusatory statement before the surge concerns me.<</say>>
<<say "mc">>Shit, did I fuck up? I need to protect everyone! I need to go see my $krissy.them!<</say>>
<<say "kp">>Let's not jump to conclusions just yet. You seem... remarkably fine. But meeting your $krissy.them right now may be ill-advised. Do you recall the side effects last time you broke your limits?<</say>>
<<say "mc">>I do... but I've just released her from the buffer, she's going to be disorientated!<</say>>
<<say "kp">>I understand. But like the last time your limiters were reduced, your urges are going to take control, that may not be the best way to greet her. And this time you're gonna need a few more bodies to help. The adrenaline has kept it at bay for now, but your power has grown exponentially. I'll ask someone to meet her there.<</say>>
<<say "kp">>Enforcer, relay the situation to $lexi.name.<</say>>
<<say "enforcer" "Enforcer">>Yes, ma'am.<</say>>
<<narrate>>You're startled by the presence behind you.<</narrate>>
<<say "mc">>Enforcer? Who is that? What is going on?<</say>>
<<say "kp">>We don't have the luxury of time right now. I'll explain later. Come, let's get back to the hotel.<</say>>
<<button "Continue" limitbreak2>>
<<unavailable "shalina">>
<<event "kp" "stay">>
<<available "kp">>
<<set delete $krissy.trackable>>
<<available "krissy">>
<<set $schedules.krissy = {
8: "unavailable",
9: "unavailable",
10: "office",
11: "office",
12: "office",
13: "office",
14: "office",
15: "office",
16: "office",
17: "office",
18: "office",
19: "office",
20: "office",
21: "office",
22: "unavailable",
23: "unavailable"
}>>
<<run checkSchedules()>>
<<taskdone "voicepower">>
<<taskdone "bufferfin4">>
<<set $krissy.traits.pushUnique('exiled')>>
<<audio ":all" stop>>
<<temp "00">>
<</button>>
<<case "council">>
<<block _img>>
<<say "mc">>What can you tell me about the council?<</say>>
<<narrate>>She pauses for thought for a moment.<</narrate>>
<<say "kp">>In simple terms they are six individuals who ensure the safety of those using the Gateway network, while allowing those who administer it certain... privileges.<</say>>
<<say "mc">>So, what kind of privileges?<</say>>
<<say "kp">>That I can't tell you. You'll learn more as your limits are further released. You've already got certain privileges thanks to your first, your possession ability for instance. While you may hear rumors from travelers or others about what a patron can and can't do, I won't reveal anything to you until you are at a level to be trusted with that information directly.<</say>>
<<say "mc">>Sounds ominous. So there are six uber-powerful patrons who decide whether I am worthy of their gifts?<</say>>
<</block>>
<<narrate>>She grins at you, almost menacingly.<</narrate>>
<<say "kp">>In a nutshell, though I never said they were patrons.<</say>>
<<say "mc">>But $harley.name said...<</say>>
<<say "kp">>$harley.name is not a patron, and certainly not someone who has first-hand knowledge of the council. You'll learn more when it's relevant to you. For now, know that they are watching you closely.<</say>>
<<narrate>>As you open your mouth to ask for more detail she puts her fingers to your lips.<</narrate>>
<<say "kp">>I will tell you nothing more at this time. You have the knowledge you need right now. I or someone in my stead will grant you more information when it's relevant to you. Just continue to impress and more gifts will follow.<</say>>
<<think "mc">>Hmmm, well, I guess it gives me a vague idea about them, but now I'm really intrigued what other types of beings they are.<</think>>
<<button "Continue" housestuff>>
<<taskdone "council">>
<<like "kp" 3>>
<<time 1>>
<</button>>
<<case "horny">>
<<block _img>>
<<say "mc">>I have somewhat of a sensitive question.<</say>>
<<say "kp">>Don't be shy, I do not easily get embarrassed.<</say>>
<<say "mc">>It's about my libido, since coming here it's been... well, through the roof, and I've been fantasizing about people I wouldn't normally.<</say>>
<<say "kp">>Oh, is that all?<</say>>
<<say "mc">>Uh, yeah, I guess.<</say>>
<</block>>
<<say "kp">>Do you see it as a problem?<</say>>
<<say "mc">>If I'm honest, not really. I just wondered why it started happening.<</say>>
<<say "kp">>Oh, that's because you're a patron. I sometimes forget that despite your quick advancements, you've yet to learn some of the basics.<</say>>
<<say "mc">>So being a patron makes me horny all the time?<</say>>
<<say "kp">>Kind of. When someone becomes a patron, one of their emotions, feelings or whatever becomes almost like a defining trait of your very soul. It will impact your world too, you should find those around you as well as passing travelers will be more lustful, especially toward you. It's why most don't bring people they know from their old worlds, for fear of being unable to control their new hunger. Some may become violent, greedy or jealous. It can be quite the roulette.<</say>>
<<say "mc">>Holy shit, so I literally became a sex god?<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say "kp">>Calm down, tiger. While you certainly managed to get one of the better options, people won't just drop their panties for you, well maybe some will, but they probably wouldn't have taken much convincing before either. Anyway, you'll generally still need to work for it. Let's just say you'll have a better chance at succeeding than normal, and be able to better breakthrough certain barriers that may have prevented you in your old world.<</say>>
<<say "mc">>Barriers?<</say>>
<<say "kp">>I heard during the limit break you were screaming out $anna.refer and $krissy.refer. Pretty sure if they were there, you'd have annihilated them. No judgments from me, and clearly the others staying here don't mind either. Just have fun with it.<</say>>
<<think "mc">>Ah shit, yeah, but hey, I guess if nobody cares...<</think>>
<<narrate>>You smirk and she chuckles.<</narrate>>
<<say "kp">>Now, that's more like the devilish grin I'd expect from someone just figuring out they can fulfill their darkest sexual desires without repercussion. Do note, though, it doesn't work on those more powerful than you.<</say>>
<<say "mc">>Huh, okay, thanks for the info.<</say>>
<<think "mc">>Where does she fit into the power scale?<</think>>
<<say "kp">>Any time. Though, I can tell what you're thinking, I am a special case, my kind are not affected by patron auras. But don't let that stop you.<</say>>
<<narrate>>She gives you a wink.<</narrate>>
<<say "mc">>Your kind?<</say>>
<<say "kp">>Another time.<</say>>
<<button "Continue" housestuff>>
<<taskdone "libido">>
<<like "kp" 3>>
<<lust "kp" 3>>
<<time 1>>
<</button>>
<<case "checkup">>
<<block _img>>
<<say "mc">>You wanted to perform a checkup? Anything I should be concerned about?<</say>>
<<say "kp">>Not even slightly, just figured I'd make myself useful.<</say>>
<<think "kp">>And a decent excuse to get him naked and in his original form!<</think>>
<<say "mc">>Okay, so does this work like a normal doctor's or...?<</say>>
<<narrate>>She grabs her white coat while talking.<</narrate>>
<<say "kp">>Mostly, first, can you show me your true form?<</say>>
<</block>>
<<say "mc">>What do you mean? I've never changed form.<</say>>
<<narrate>>She looks at you confused for a moment.<</narrate>>
<<say "kp">>Listen, there's no need to be embarrassed, nor will I tell anyone about your true form should you not want me to. If you want to be male, you're more than entitled to, but I can't very well perform a proper examination in your altered form.<</say>>
<<say "mc">>Wait, what, male form? But I am male, and I don't mean like I've transitioned, I literally have always been male.<</say>>
<<narrate>>She stares back at you.<</narrate>>
<<say "kp">>Male travelers don't exist... but you're not toying with me, are you?<</say>>
<<say "mc">>No. What do you mean, they don't exist? What about my $derek.them and $charlie.them?<</say>>
<<say "kp">>Your $derek.them and $charlie.them were born female. Perhaps it's unfair to say they don't exist, but travelers are not born male. They can certainly be transformed, but they can't reproduce in this form. 99% if not more of patrons, are for want of a better word, ascended travelers, making them almost exclusively female too. Patrons have the added benefit of identifying and presenting however they like of course, so male/female sort of loses some meaning for them, but ultimately I would hazard a guess that 99.99% of patrons are female originally. I've only met—<</say>>
<<narrate>>She stops herself, but you're too dumbfounded to realize.<</narrate>>
<<say "mc">>What the fuck is going on?<</say>>
<<say "kp">>I am equally perplexed. As you're a patron, even if you were transformed previously or against your will, you'd be aware. Just what are you?<</say>>
<<say "mc">>I'm still in shock about $derek.name and $charlie.name!<</say>>
<<if $girlsavailable.includes('sophia')>>
<<say "kp">>Is it so hard to believe? Look at how well $derek.name took to becoming $sophia.name. That's because it's her true form.<</say>>
<<elseif $girlsavailable.includes('theodora')>>
<<say "kp">>Is it so hard to believe? $theodora.name seems very at peace with herself, it's her true form.<</say>>
<</if>>
<<think "mc">>The hell is going on?<</think>>
<<narrate>>She places her hand on your chest.<</narrate>>
<<say "kp">>Let's calm you down.<</say>>
<<narrate>>Slowly, she moves her hands down to your crotch and tugs at your trousers.<</narrate>>
<<say "kp">>Is this helping?<</say>>
<<think "mc">>My head is still spinning with the latest revelation... but this will definitely help keep my mind off it for a little while.<</think>>
<<button "Continue" kpsex>>
<<temp "docs01">>
<<taskdone "checkup">>
<</button>>
<<case "worlds">>
<<block _img>>
<<say "mc">>I've somehow connected to a world someone didn't originate from, at least not directly, how is this possible?<</say>>
<<say "kp">>Impressive. How did it feel?<</say>>
<<say "mc">>Immensely pleasurable.<</say>>
<<say "kp">>Haha! You're lucky, had you undergone this before we increased your limits it would have been excruciatingly painful.<</say>>
<<say "mc">>But how?<</say>>
<</block>>
<<say "kp">>The goal of the gateways is to get travelers where they want to go. Sometimes, though rarely, they just want to go to the hub. You've probably had plenty of people up to now wanting to travel via your hub, but not as the end goal.<</say>>
<<say "mc">>So when they decide to go it connects to their destination even if previously unknown to me?<</say>>
<<say "kp">>Yes. It can't happen to a traveler who simply changes their mind, they must go to their original destination. But when the hub is their intended destination, they've arrived, they aren't changing their mind, they just want to travel again. The gateway therefore opens in reverse, as if a traveler is coming through, then—<</say>>
<<narrate>>You're staring at her blankly. She chuckles.<</narrate>>
<<say "kp">>All you need to know is that if you weren't powerful enough, the gateway would have taken more than you can handle, leaving you not with pleasure, but with an insane amount of pain.<</say>>
<<say "mc">>Shit. $voice.name mentioned it'd happened to her twice, and she was in pain.<</say>>
<<say "kp">> Even before her diminished state, she was a low level patron. She'd never had an inspection. You are now more powerful than she ever was. It's a wonder really she managed to summon champions, it must have been extremely painful. I believe the reason you were able to claim this world was due to how weak she had become, so weak that the hub didn't register as even having a patron. You may very well have saved her life, creating this unique situation.<</say>>
<<say "mc">>Wow, she certainly made it seem bleak before I arrived, but nothing that dire.<</say>>
<<say "kp">>She may have been oblivious or embarrassed, either way, just be careful with her. Who knows what her intention will be once she's regained her strength. Also bear in mind her knowledge is limited, I understand you've relied on her, but I am here now, and have the collective knowledge of the council at my disposal.<</say>>
<<say "mc">>So you can tell me anything? Why am I here? How are patrons made?<</say>>
<<say "kp">>Calm down. While I can tell you more than she, there are still some things I do not know, and some things you are not yet allowed to know. Keep growing your power, and I'll reveal more as you limits are further broken.<</say>>
<<say "mc">>Understood, thanks $kp.name.<</say>>
<<say "kp">>By the way, when I'm staying here, I'm happy to teach your workers too. I have a wealth of knowledge. If you have the proper facilities, I'll happily share with them.<</say>>
<<say "mc">>Amazing! I'll let you know when I need your help.<</say>>
<<button "Continue" housestuff>>
<<like "kp" 5>>
<<lust "kp" 3>>
<<taskdone "newplanets2">>
<<tech "study">>
<<time 1>>
<</button>>
<<case "close">>
<<block "kp/bedrooms01.jpg">>
<<say "mc">>So given how well that previous inspection went...<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kp">>Oh?<</say>>
<<say "mc">>Anything else you might want to inspect?<</say>>
<<narrate>>She pretends to be deep in thought for a moment, tapping her chin with her finger.<</narrate>>
<<say "kp">>So, during the initial inspection, there was something that came across from your companions very clearly.<</say>>
<</block>>
<<say "mc">>Hmm?<</say>>
<<say "kp">>Nearly everyone here desires you, even those I would not expect to.<</say>>
<<say "mc">>Well, it's just—<</say>>
<<say "kp">>No more words.<</say>>
<<narrate>>She pushes the laptop to one side and crawls back onto the bed<</narrate>>
<<say "kp">>How about a more... <i>practical</i> inspection?<</say>>
<<center "kp/done01.jpg">>
<<think "mc">>I love this world.<</think>>
<<say "kp">>Come.<</say>>
<<narrate>>She holds her panties to one side for you.<</narrate>>
<<button "Continue" kpsex>>
<<temp "done">>
<</button>>
<<case "limitbreak">>
<<narrate>>You arrive at the Gateway when you hear $lacy.name's voice calling you from the monitoring station.<</narrate>>
<<say "lacy">>Over here! We're just finishing up.<</say>>
<<think "mc">>Huh, wonder what those two have been up to.<</think>>
<<narrate>>You enter the station to find $kp.name packing up her things.<</narrate>>
<<block "kp/leave01.jpg">>
<<say "kp">>She's a brilliant mind. You've lucked out finding her here.<</say>>
<<say "lacy">>I appreciate the compliment, but I don't think I'm anything special, just different.<</say>>
<<say "mc">>Don't sell yourself short, you are incredible, $lacy.name!<</say>>
<<say "lacy">>I shall leave you two to it.<</say>>
<<narrate>>She's grinning from ear to ear as she leaves<</narrate>>
<<say "kp">>So, a bit of information before I do this.<</say>>
<</block>>
<<narrate>>She motions to the gateway out the window.<</narrate>>
<<say "kp">>You're aware of the feeling when you grow in power, yes?<</say>>
<<think "mc">>Best orgasms of my life!<</think>>
<<say "mc">>I am.<</say>>
<<say "kp">>This will be much more intense.<</say>>
<<say "mc">>Anything I should prepare?<</say>>
<<block "kp/leave03.jpg">>
<<say "kp">>Bedfellows.<</say>>
<<think "mc">>Sounds good to me!<</think>>
<<say "kp">>Once I reduce the limiter, the power of the gateway will flow through you at a vast pace. It will take many hours for your body to normalize, you will not be able to freely explore until the following day.<</say>>
<<say "mc">>So what will I get from increasing my limits?<</say>>
<<say "kp">>As the name suggests, you'll have a higher capacity for power. But specifically with this limiter you'll be given a new ability; possession.<</say>>
<</block>>
<<say "mc">>What, like a spirit?<</say>>
<<say "kp">>Where do you think the myths come from? Initially, you'll likely only be able to piggyback others as they travel through the gateway. But, as you gain more power, you'll slowly be able to influence their actions too. Until you are <b>much</b> more powerful, you'll only be able to do this with people who trust you.<</say>>
<<say "mc">>Holy crap.<</say>>
<<say "kp">>I'm sure you have several questions; I've let $lacy.name know the details already. When you are ready to test the power out, you'll be guided through the process. She truly is remarkable.<</say>>
<<say "mc">>This is really not what I expected.<</say>>
<<say "kp">>Probably not. Further limit-removals may add more options to Central or the ability to do more with your possession. Other abilities exist, but until you've passed the relevant inspections, I can not reveal them. Just remember, you can only possess, or piggyback as some call it, those leaving through the gateway. You can't possess people within this world.<</say>>
<<say "mc">>Wow, thanks, $kp.name.<</say>>
<<block "kp/leave02.jpg">>
<<say "kp">>Now, are you ready, or would you prefer to do this another time?<</say>>
<<notice>>
You will lose the rest of the day when you perform this action, but it is required to move the story forward.<br>
<br>
If you have other things you want to take care of, you can visit the monitoring station any day before 17:00.
<</notice>>
<<choices>>
<<link "Proceed" kpanswers>>
<<temp "break">>
<<unavailable "kp">>
<<set delete $schedules.kp>>
<<taskdone "inspectlimitbreak">>
<<task "docs">>
<<run unlockBuilding('docs')>>
<</link>>
<br>
<<link "Later" kpanswers>>
<<taskdone "inspectlimitbreak">>
<<temp "later">>
<<unavailable "kp">>
<<set delete $schedules.kp>>
<<task "docs">>
<<run unlockBuilding('docs')>>
<</link>>
<</choices>>
<</block>>
<<case "later">>
<<block "kp/leave04.jpg">>
<<say "mc">>There's something I want to take care of first.<</say>>
<<say "kp">>No problem. I've left instruction with $lacy.name. She'll contact me through the Gateway when you're ready.<</say>>
<<say "mc">>Thanks $kp.name.<</say>>
<<say "kp">>No problem. Mind connecting to Central for me so I can get back?<</say>>
<<say "mc">>Sure. Huh, how would you have gotten home if I was destroyed, incapable or otherwise unwilling?<</say>>
<</block>>
<<say "kp">>I have my ways, but this is much easier.<</say>>
<<narrate>>She gives you a nod and wave as she leaves the station. You concentrate for a moment until the orange portal gleams at the gateway's core. A moment later, she passes through.<</narrate>>
<<button "Continue" mnglab>>
<<time 2>>
<</button>>
<<case "break">>
<<block "kp/leave04.jpg">>
<<say "mc">>Let's do it.<</say>>
<<say "kp">>No problem. Mind connecting to Central for me so I can get back?<</say>>
<<say "mc">>Sure. Huh, how would you have gotten home if I was destroyed, incapable or otherwise unwilling?<</say>>
<<say "kp">>I have my ways, but this is much easier. Once I'm through, head back to your room. It'll be about thirty minutes until I've released the limiter.<</say>>
<<say "mc">>Understood.<</say>>
<<narrate>>She gives you a nod and wave as she leaves the station. You concentrate for a moment until the orange portal gleams at the gateway's core. A moment later, she passes through.<</narrate>>
<<button "Continue" limitbreak>>
<<temp "10">>
<<time 0.5>>
<<set delete $schedules['kp']>>
<</button>>
<</block>>
<<case "inspectiondone">>
<<narrate>>You knock on her door.<</narrate>>
<<say "kp">>Come in.<</say>>
<<center "kp/bedrooms02.jpg">>
<<say "kp">>Thanks for joining me.<</say>>
<<say "mc">>No problem. Should I be nervous?<</say>>
<<say "kp">>No. Let me alleviate any concern immediately; you pose no great danger to travelers and I will be reducing the limitations in your gateway.<</say>>
<<say "mc">>That's fantastic! But why do I sense a "but" coming?<</say>>
<<center "kp/bedrooms03.jpg">>
<<say "kp">>Because there's one coming. First, I want to discuss the events of today, though.<</say>>
<<think "mc">>Just realized she's smiling. Is that the first time I've seen her smile today?<</think>>
<<say "kp">>I spoke to a number of your companions throughout my inspection.<</say>>
<<narrate>>She gets off the bed holding a clipboard and while pacing around the room flips through the pages before placing it down on a cabinet.<</narrate>>
<<block "kp/done00.jpg">>
<<if $kp.events.met > 0>><<say "kp">>In fact, you observed me $kp.events.met times interacting with them. Don't ever try to work in espionage. But, I admire and respect that you wanted to ensure they were safe.<</say>><</if>>
<<set _kplike = $kp.events.met * 3>>
<<set _kplust = $kp.events.met * 2>>
<<set _kplust += $kp.events.mcspoke * 2>>
<<if $kp.events.lacypool != undefined>>
<<say "kp">>$lacy.name has a brilliant mind, <<if $kp.events.lacykitchen != undefined>>my ability was initially unable to break her, and in the pool <</if>>I'm uncertain if my ability worked, or she simply decided to share with me. But the fact she connected to the gateway is incredible. However, I have decided not to include her in my report to the council, as I fear they will consider her a threat. Nurture her talent.<</say>>
<</if>>
<<if $kp.events.kaylalounge != undefined>>
<<say "kp">>$kayla.name is a bit of an enigma to me. I just couldn't get a read on her. It's odd for someone like her to be in a place like this.<</say>>
<<say "mc">>I know you didn't get the best impression of her, but believe me she is a valuable and important part of this team.<</say>>
<<say "kp">>Of that I have no doubt.<</say>>
<</if>>
<<narrate>>She paces back and forth, checking her notes again.<</narrate>>
<</block>>
<<think "mc">>I can't believe how different she seems from our initial meeting, I guess you can't always rely on first impression.<</think>>
<<block "kp/done000.jpg">>
<<if $kp.events.familymembers != undefined>>
<<say "kp">>A surprise was the number of people from your home world that knew you but weren't brought here by you. I don't believe that to be coincidence. I intend to look into this myself, too.<</say>>
<<set _kplust++>>
<<set _kplike++>>
<</if>>
<<if $kp.events.gatewayknow != undefined>>
<<say "kp">>We've already met at Gateway A, the others forewarned me of it, but it's a mystery to me why there are two. I would very much like to understand this phenomenon.<</say>>
<<set _kplust++>>
<<set _kplike++>>
<</if>>
<<if $kp.events.eastknow != undefined>>
<<say "kp">>But perhaps the biggest shock for me is the Eastlanders, as you call them. Settlers from the first gateway. Though patrons rarely allow it, settlements do form from time to time in hub worlds, but even then not to the extent of being self-sufficient without a patron.<</say>>
<<set _kplust++>>
<<set _kplike++>>
<</if>>
<<say "mc">>Wow, you uncovered so much in a brief time.<</say>>
<<say "kp">>I am nothing if not thorough.<</say>>
<</block>>
/* check rest of conversations for lust/like level */
<<for _v, _a range $kp.events>>
<<capture _v>>
<<switch _v>>
<<case "armanipool">>
<<set _kplust += 2>>
<<set _kplike += 1>>
<<case "aubreegym">>
<<set _kplust += 6>>
<<case "brittpool">>
<<set _kplike += 2>>
<<case "cassieoffice">>
<<set _kplike += 2>>
<<case "emberkitchen">>
<<set _kplike += 2>>
<<case "kaylalounge">>
<<set _kplike += 2>>
<<case "lacykitchen">>
<<set _kplike += 2>>
<<case "lacypool">>
<<set _kplust += 7>>
<<case "lexilounge">>
<<set _kplike += 2>>
<<case "mcgym">>
<<set _kplike += 2>>
<<set _kplust += 3>>
<<case "mckitchen">>
<<set _kplike += 2>>
<<set _kplust += 2>>
<<case "mclounge">>
<<set _kplike += 1>>
<<set _kplust += 3>>
<<case "mcoffice">>
<<set _kplike += 5>>
<<case "mcswim">>
<<set _kplike += 2>>
<<set _kplust += 1>>
<<case "moniqueoffice">>
<<set _kplust += 2>>
<<set _kplike += 1>>
<<case "peeped">>
<<set _kplust += 7>>
<<case "theodorakitchen">>
<<set _kplike += 2>>
<</switch>>
<</capture>>
<</for>>
<<say "kp">>I will be heading out tomorrow, but I've decided there are too many mysteries here to leave it at that. I noticed you have no medical facilities, while I can't imagine it's going to have much need, I would like to offer my aid. I am a trained doctor, with a wealth of experience in treating and caring for travelers. I will visit you twice a week, Tuesday evening and Saturday evening. I will stay two nights and leave before you wake. But you'll need to re-purpose one of the abandoned buildings in town for me first.<</say>>
<<say "mc">>Isn't that a bit overkill if medical aid is rarely required?<</say>>
<<say "kp">>That is merely my official reason for being here, with your thoroughfare, there may be travelers that could benefit from it too. But, the truth of the matter is I wish to understand what is happening on this world, and how you fit into this. Find me in Doctor's Surgery, and we can try to unravel the mystery together.<</say>>
<<say "mc">>Would you be able to answer some questions about patrons, the council and travelers?<</say>>
<<say "kp">>Yes, though there are certain things I can not tell you until you have your limits further reduced. That said, should you continue at the pace you are, having me on hand to submit such requests to Central will make life easier for you.<</say>>
<<say "mc">>Great, then I accept. Not that I think I had much choice.<</say>>
<<narrate>>She cackles.<</narrate>>
<<say "kp">>I'm glad you understand.<</say>>
<<narrate>>She seems to stare at her notes for some time, as if doing some mental tallies.<</narrate>>
<<if _kplust >= 25>>
<<if $kp.events.peeped != undefined>>
<<block "kp/done02.jpg">>
<<say "kp">>Last night, when you came to my room, what were you hoping to do?<</say>>
<<say "mc">>Well, I was—<</say>>
<<say "kp">>Before you answer, know that while my power doesn't work on patrons, I'm still adept at recognizing a lie.<</say>>
<<say "mc">>Fine, you're a beautiful woman, and I was hoping to peep on you.<</say>>
<<narrate>>She grins.<</narrate>>
<</block>>
<</if>>
<<say "kp">>So, there was something that came across from your companions very clearly.<</say>>
<<say "mc">>Hmm?<</say>>
<<say "kp">>Nearly everyone here desires you, even those I would not expect to.<</say>>
<<say "mc">>Well, it's just—<</say>>
<<say "kp">>No more words.<</say>>
<<narrate>>She pushes the laptop to one side and crawls back onto the bed<</narrate>>
<<say "kp">>For this part of the inspection, I want a practical demonstration.<</say>>
<<center "kp/done01.jpg">>
<<think "mc">>I have no idea what I did to deserve this heaven, but whatever celestial being has gifted me this boon has my undying loyalty!<</think>>
<<say "kp">>Come.<</say>>
<<narrate>>She holds her panties to one side for you.<</narrate>>
<<button "Continue" kpsex>>
<<lust "kp" _kplust>>
<<like "kp" _kplike>>
<<temp "done">>
<</button>>
<<else>>
<<say "kp">>I think perhaps in the future I'd like to explore some other areas where the women spoke highly of you. But I'll return at a later date. Meet me at your gateway tomorrow, and I'll explain more about reducing the limiters.<</say>>
<<button "Sleep" sleep>>
<<lust "kp" _kplust>>
<<like "kp" _kplike>>
<<taskdone "inspectinteract">>
<<taskdone "inspectrelax">>
<<time 4>>
<</button>>
<</if>>
<<case "workout">>
<<block _img>>
<<if $tempvar2 == "wt">>
<<say "mc">>Sure, why not?<</say>>
<<say "kp">>Great, let's start with some stretches.<</say>>
<<else>>
<<say "mc">>Do you want to workout together?<</say>>
<<say "kp">>Yes, that would be preferable, let's start with some stretches.<</say>>
<</if>>
<<say "mc">>Yeah, sure.<</say>>
<<narrate>>You join her on the yoga mats.<</narrate>>
<<say "kp">>So tell me, $name, what's your goal here?<</say>>
<</block>>
<<say "mc">>Honestly, I don't really know. I feel like I'm sort of along for the ride. But more immediately, I just want to make sure everyone is safe and try to solve the mystery of why I am here to begin with. I'm also quite enjoying managing the hub, meeting so many new people and creating something to be proud of.<</say>>
<<say "kp">>I see.<</say>>
<<center "kp/gym02.jpg">>
<<say "mc">>What about you? What are you hoping to achieve from being an inspector?<</say>>
<<say "kp">>I'm sorry, what?<</say>>
<<say "mc">>Like, you know—<</say>>
<<say "kp">>Apologies, I understood the question. I just... nobody has ever asked that before.<</say>>
<<say "mc">>Seems like a logical question to me.<</say>>
<<say "kp">>Indeed.<</say>>
<<narrate>>She seems to ponder for a moment.<</narrate>>
<<center "kp/gym03.jpg">>
<<say "kp">>I enjoy a challenge, I like learning new things and the sense of achievement from solving puzzles.<</say>>
<<say "mc">>Oh, I've got plenty of those here.<</say>>
<<say "kp">>Indeed, you have. I opted to be an inspector, so I could more easily traverse the hub words, protect travelers from the darkness that infests many patrons and like you, I enjoy meeting new people, but rarely do I enjoy meeting patrons.<</say>>
<<say "mc">>Ah, is that why you were cold when we met?<</say>>
<<say "kp">>Honestly, yes. I realize barely any time has passed since then, but in my brief interactions with yourself and your companions, it's clear we share some common ground in wanting to ensure the best for everyone. A trait, you'd be surprised to know, is almost entirely alien to patrons.<</say>>
<<say "mc">>I hope never to meet those patrons.<</say>>
<<button "Continue" househub>>
<<event "kp" "mcgym">>
<<time 1>>
<</button>>
<<case "swim">>
<<block _img>>
<<if $tempvar2 == "wt">>
<<say "mc">>Mind if I join you?<</say>>
<<say "kp">>Not at all, I'd be glad if you did.<</say>>
<<else>>
<<say "mc">>I was just about to suggest the same.<</say>>
<<say "kp">>Great!<</say>>
<</if>>
<<narrate>>As you bend down to ease yourself in she tugs at your arm, causing you to fall into the pool with a splash.<</narrate>>
<<if $girlshere.length > 1>>
<<set $girlshere.delete('kp')>>
<<set _w = either($girlshere)>>
<<set _n = State.variables[_w]>>
<<set $girlshere.pushUnique('kp')>>
<<narrate>>You hear _n.name laughing hysterically as you resurface.<</narrate>>
<</if>>
<<say "mc">>What the hell, $kp.name?<</say>>
<<narrate>>Barely able to contain her giggling she eventually answers.<</narrate>>
<</block>>
<<say "kp">>What better way to get to know someone than via tomfoolery?<</say>>
<<think "mc">>I can think of a much better way to get closer!<</think>>
<<narrate>>You give her a look of disbelief.<</narrate>>
<<say "mc">>Don't think this will go unpunished.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kp">>We'll see.<</say>>
<<narrate>>The two of you make small talk and flirt for a while in the pool but you otherwise learn nothing new.<</narrate>>
<<button "Continue" househub>>
<<event "kp" "mcswim">>
<<time 1>>
<</button>>
<<case "patron">>
<<block _img>>
<<say "mc">>So can you sense or communicate with this patron at all?<</say>>
<<say "kp">>No. It's quite odd. I can sense they are here, but it's faint.<</say>>
<<say "mc">>I see. I'm working on returning her enough power to regain her physical form.<</say>>
<<say "kp">>Sorry, there's a second patron on this world, with their own gateway, and you're helping them?<</say>>
<<say "mc">>Uhhh, yes, is that not what a normal person would do?<</say>>
<</block>>
<<say "kp">>No. Not at all. Do you know why a patron has champions? They aren't mere tour guides.<</say>>
<<narrate>>Before you can admit your lack of knowledge she carries on.<</narrate>>
<<say "kp">>Champions are to wage war on other patrons.<</say>>
<<say "mc">>But why?<</say>>
<<say "kp">>Boredom, mostly. Patrons are all unique in their machinations, some like to retain a humanoid form and take part in pleasures of the flesh, others like to feel they are powerful and try to subjugate other patrons. There are even some who torture their travelers. The council intervene very quickly when travelers are coming to harm.<</say>>
<<block "kp/$location04.jpg">>
<<say "mc">>Can I make champions?<</say>>
<<say "kp">>No, you lack the power currently. Perhaps in time, but right now, you've not even unlocked tier 1 of your gateway's potential.<</say>>
<<say "mc">>So this patron would have been quite powerful?<</say>>
<<say "kp">>I don't think so. Contrary to what I just said you could technically summon champions but it would drain most of your power, leave you without a corporeal form and make the gateway almost inoperable. I suspect that's what happened here as there are no records of any limit-removal inspections on this hub world previously.<</say>>
<</block>>
<<say "mc">>So you think someone was trying to subjugate her?<</say>>
<<say "kp">>I can see no signs of battle, and believe me when champions battle, the very landscape is scarred, so I'm unsure why she would take such desperate actions. Clearly she was in danger from <i>something</i>.<</say>>
<<think "mc">>I think I'm starting to form a picture.<</think>>
<<say "mc">>Thanks, $kp.name, this has been very helpful.<</say>>
<<if $tasks.inspectinteract != undefined>>
<<think "mc">>It's like she's a completely different person from when I met her!<</think>>
<</if>>
<<button "Continue" gatewaya>>
<<event "kp" "gatewayapatron">>
<<time 1>>
<</button>>
<</switch>><<set $scene = 0>>
<<set _active = "kp">>
<<meet _active>>
<<set $return = returnLocation()>>
<<set _passage = _active+"answers">>
<<if $location == "gatewaya">>
<<set $return = "gatewaya">>
<</if>>
<<set $girl = "kp">>
<<if $completeTasks.includes('inspectinteract')>>
<<smallflirt "kp">>
<<if $kenna.events.upset == 1>>
<<opt "$kenna.name's Missing" _passage kmiss>><</opt>>
<</if>>
<<if $krissy.events.anger == 3>>
<<opt "Banishment" _passage banish>><</opt>>
<</if>>
<<if $krissy.events.anger == 3.5>>
<<opt "Visit $krissy.name together" _passage krissysilly>><</opt>>
<</if>>
<<if ($tasks.progeny != undefined || $completeTasks.includes('progeny')) && $kp.events.progeny == undefined>>
<<link "Progeny" kpanswers>>
<<temp "progeny">>
<</link>><br>
<</if>>
<<if $completeTasks.includes('shareddreams2') && ($dreamer == undefined || !$dreamer.includes('kp'))>>
<<link "Second Aspect" kpanswers>>
<<temp "duality">>
<</link>><br>
<</if>>
<<if $tasks.eastfriends != undefined && ($nerels == "Friendly" || $nerels == "Respected")>>
<<link "New Eden Reputation" counciltasks>>
<<temp "nerep">>
<</link>><br>
<</if>>
<<if $tasks.kpbrief != undefined>>
<<link "Briefcase" kpanswers>>
<<temp "briefcase">>
<</link>><br>
<</if>>
<<if $tasks.salimpower != undefined>>
<<link "Gaining Power" kpanswers>>
<<temp "power">>
<</link>><br>
<</if>>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $kp.events.planets == undefined>>
<<link "Planets" kpanswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if $tasks.avafind != undefined>>
<<link "$kenna.name and the council" kpanswers>>
<<temp "ava">>
<</link>><br>
<</if>>
<<if $completeTasks.includes('avafind') && !$completeTasks.includes('counciltasks0') && $tasks.fivek == undefined>>
<<link "Council Tasks" kpanswers>>
<<temp "tasks">>
<</link>><br>
<</if>>
<<if $salim.events.cassie == "badwait">>
<<link "Salim's Task" kpanswers>>
<<temp "salimfail">>
<</link>><br>
<</if>>
<<if $power > 30 && $mc.events.eastreturn == undefined>>
<<if $kp.events.meriya == undefined>>
<<link "$voice.name" kpanswers>>
<<temp "meriya">>
<</link>><br>
<</if>>
<<if $kp.events.enforcer == undefined>>
<<link "Enforcer" kpanswers>>
<<temp "enforcer">>
<</link>><br>
<</if>>
<<if $kp.events.helping == undefined>>
<<link "Why are you helping?" kpanswers>>
<<temp "helping">>
<</link>><br>
<</if>>
<<if $kp.events.champions == undefined>>
<<link "Champions" kpanswers>>
<<temp "champions">>
<</link>><br>
<</if>>
<<elseif $mc.events.eastreturn != undefined>>
<<if $kp.events.meriya2 == undefined>>
<<link "$voice.name" kpanswers>>
<<temp "meriya2">>
<</link>><br>
<</if>>
<<if $kp.events.enforcer2 == undefined>>
<<link "Enforcer" kpanswers>>
<<temp "enforcer2">>
<</link>><br>
<</if>>
<<if $kp.events.council2 == undefined && $kp.events.enforcer2 != undefined && $krissy.events.council2 == undefined>>
<<link "Council" kpanswers>>
<<temp "council2">>
<</link>><br>
<</if>>
<<if $kp.events.helping == undefined>>
<<link "Why are you helping?" kpanswers>>
<<temp "helping">>
<</link>><br>
<</if>>
<<if $kp.events.champions2 == undefined>>
<<link "Champions" kpanswers>>
<<temp "champions2">>
<</link>><br>
<</if>>
<</if>>
<<if $tasks.libido != undefined && $power > 5>>
<<link "Horny" kpanswers>>
<<temp "horny">>
<</link>><br>
<</if>>
<<if $tasks.checkup != undefined && $kp.lust >= 25 && $location == "docs">>
<<link "Checkup" kpanswers>>
<<temp "checkup">>
<</link>><br>
<</if>>
<<if $kp.lust >= 25 && $location == "bedrooms">>
<<link "<i>Closer</i> Inspection" kpanswers>>
<<temp "close">>
<</link>><br>
<</if>>
<<if $kp.lust >= 40 && $location == "office" && checkUnlocks('movie', 'done', 'kp') == true>>
<<link "Office Gossip" kpsex>>
<<if $girlshere.includes('sophia') && $sophia.events.buff > 1>>
<<temp "gossip-invite">>
<<else>>
<<temp "gossip">>
<</if>>
<</link>><br>
<</if>>
<</if>>
<<if $tasks.council != undefined && $completeTasks.includes('inspectlimitbreak2')>>
<<link "Council" kpanswers>>
<<temp "council">>
<</link>><br>
<</if>>
<<if $tasks.newplanets2 != undefined>>
<<link "Unknown Worlds" kpanswers>>
<<temp "worlds">>
<</link>>
<br>
<</if>>
<<if $location == "gatewaya" && $kp.events.gatewayapatron == undefined>>
<<link "Gateway A Patron" kpanswers>>
<<temp "patron">>
<</link>>
<br>
<</if>>
<<if $location == "gym" && $tasks.inspectrelax != undefined>>
<<link "Workout Together" kpanswers>>
<<temp "workout">>
<</link>>
<br>
<</if>>
<<if $location == "pool" && $tasks.inspectrelax != undefined>>
<<link "Swim Together" kpanswers>>
<<temp "swim">>
<</link>>
<br>
<</if>>
<<link "Never mind" $return>><</link>><<scene>>
<<narrate>>As you walk into your office, you're suddenly taken aback by a stranger sat at your desk.<</narrate>>
<<block "kp/meet.jpg">>
<<say "mc">>Who the hell are you?<</say>>
<<say "kp" "???">>You must be the new patron. My name is of no consequence to you, boy. You may simply refer to me as the Inspector.<</say>>
<<think "mc">>Huh, I remember when connecting to the Gateway it mentioned an inspection, I guess I didn't expect anything so soon, or so tangible. But how can I be sure some random stranger is such a person?<</think>>
<<say "mc">>And how do I know you are telling the truth?<</say>>
<<say "kp" "The Inspector">>Not that I have any need to prove myself to someone as lowly as yourself, but go ahead and try to connect to Central.<</say>>
<<narrate>>Though dubious, you give it a go.<</narrate>>
<</block>>
<div class="notice" style="margin:auto">
<center class="blink">CONNECTION UNAVAILABLE</center>
<center class="blink">INSPECTION IN PROGRESS.</center>
</div>
<<block "kp/meet01.jpg">>
<<say "kp" "The Inspector">>Satisfied? I must say, it's rather rare to meet a new patron these days. And you have a rather... unorthodox style.<</say>>
<<say "mc">>So how does this work? Do you just observe me or what?<</say>>
<<say "kp" "The Inspector">>Not at all, you're serving your primary duties just fine, exceeding expectations even. Enough to attract the attention of the council, and that is why I am here.<</say>>
<<think "mc">>Best not to let on I know very little.<</think>>
<<say "kp" "The Inspector">>The inspection is more about your character, and what limitations are required to your power.<</say>>
<</block>>
<<think "mc">>Shit, she can take my power away?<</think>>
<<say "kp" "The Inspector">>Do not fret, even if you're a devolved pervert who loves nothing but to toy with the travelers as they pass through you will not be destroyed, but your powers will be inhibited to ensure you do no damage to those that pass through.<</say>>
<<say "mc">>Like what exactly?<</say>>
<<block "kp/meet02.jpg">>
<<say "kp" "The Inspector">>Perhaps you like to indulge in carnal pleasures while transforming your travelers into different genders, ages or species. Perhaps you like to have them sleep while you have your way with them.<</say>>
<<say "mc">>And you'd be okay with that?<</say>>
<<say "kp" "The Inspector">>My job is not to judge, it is to ensure you are no danger to the travelers.<</say>>
<<say "mc">>And those things you describe are no danger?<</say>>
<</block>>
<<say "kp" "The Inspector">>Not at all. There are always safeguards against rape, while they may not consciously consent, everything is done within the bounds of the traveler's subconscious tolerance.<</say>>
<<say "mc">>So they can't be made to do anything against their will?<</say>>
<<say "kp" "The Inspector">>Oh, they absolutely can, the fact you're asking proves you haven't tried. Unlike regular travel, people can be changed through Central without consent. However, even within Central there are safeguards against anything that could damage a traveler and given issues in the past, we've had to limit completely non-consensual acts of a sexual nature too.<</say>>
<<say "mc">>I don't even want to know. So, how does this work?<</say>>
<<center "kp/meet03.jpg">>
<<say "kp" "The Inspector">>My gosh, you really are green, aren't you, boy? Your unique situation requires me to adapt slightly, but also gives me more opportunity to understand you. I'm going to stay here in the hotel until I'm satisfied. I'll interview the others here and just generally observe your interactions. You must stay in your corporeal form during this.<</say>>
<<think "mc">>Good, because I have no idea how to be in any other form!<</think>>
<<say "mc">>I see. In that case, you'll have to give me a name.<</say>>
<<say "kp" "The Inspector">>I beg your pardon?<</say>>
<<say "mc">>If you're staying here, I want to be able to address you, as I'm sure the others will.<</say>>
<<say "kp" "The Inspector">>I am not here to play house, <b>boy</b>, but if it moves things along swiftly I can tolerate it. You may refer to me as <<textbox "$kp.name" ???>>. The inspection will start tomorrow.<</say>>
<<narrate>>She walks off seemingly annoyed and with an air of arrogance. Nonetheless, you can't help watch her ass as she parts.<</narrate>>
<<run overrideSchedule('kp', 0, 24, "Unavailable")>>
<<button "Continue" housestuff>>
<<set $location = "office">>
<<meet "kp">>
<<time 1>>
<<event "mc" "metinspector">>
<<task "inspectobserve">>
<<task "inspectgateway">>
<<taskdone "checkoffice">>
<<available "kp">>
<<script>>
State.variables.kp.name = $('#textbox-kpname').val();
<</script>>
<</button>>
<<script>>
$(document).on(':passageend', function (ev) {
$('#textbox-kpname').val('Isolda');
})
<</script>><<switch $tempvar>>
<<case "stress">>
<<narrate>>As you finish getting dressed, $kp.name strolls into your room and sits on the bed.<</narrate>>
<<say kp>>I was thinking about our conversation last night...<</say>>
<<say mc>>About being $founder.name's bait?<</say>>
<<say kp>>Clearly you're concerned about it, and it's certainly stuck on my mind. You recall the best way to clear one's head, right?<</say>>
<<narrate>>You grin.<</narrate>>
<<say mc>>No... perhaps you can elaborate?<</say>>
<<say kp>>The best way to clear one's head... is to clear your head.<</say>>
<<say mc>>Oh, I'm not sure I follow...<</say>>
<<narrate>>She cackles.<</narrate>>
<<say kp>>Perhaps it's better if I just show you...<</say>>
<<narrate>>She gestures you to the bed.<</narrate>>
<<cont "kpsex" "stress01">>
<<case "stress01">>
<<narrate>>She unzips your jeans and pulls out your stiff cock.<</narrate>>
<<vid "kp/m01.mp4">>
<<narrate>>She greedily devours your manhood.<</narrate>>
<<say mc>>Fuck... that's good.<</say>>
<<narrate>>You proceed to take off your top as she continues you chow down.<</narrate>>
<<cont "kpsex" "stress02">>
<<case "stress02">>
<<narrate>>Now completely naked, you lie on the bed and goad her.<</narrate>>
<<say mc>>Seems someone is overdressed.<</say>>
<<vid "kp/m02.mp4">>
<<say kp>>There you go. That's better.<</say>>
<<narrate>>Her lips are quickly wrapped around your cock once more.<</narrate>>
<<cont "kpsex" "stress03">>
<<case "stress03">>
<<narrate>>She gasps for breath and sits atop you, her wet pussy resting on your cock, while she grins darkly at you.<</narrate>>
<<vid "kp/m03.mp4">>
<<say kp>>That feels so good. Just teasing my sweet little pussy.<</say>>
<<say kp>>Ohh~ that feels so good.<</say>>
<<say mc>>Fuck... just put it in!<</say>>
<<narrate>>She moans with rapturous delight as she slips your penis inside her.<</narrate>>
<<cont "kpsex" "stress04">>
<<case "stress04">>
<<narrate>>She bounces forcefully on your manhood, the bed buckling and the mattress springs squeaking under the strain.<</narrate>>
<<vid "kp/m04.mp4">>
<<say kp>>Yes, oh, my god!<</say>>
<<say kp>>Oh, fuck baby. It feels so good.<</say>>
<<cont "kpsex" "stress05">>
<<case "stress05">>
<<narrate>>You grab her by the waist and lift her off you as she screams with joyous surprise. You throw her back on to the bed and slide back inside her.<</narrate>>
<<vid "kp/m05.mp4">>
<<say kp>>Oh my god, yes!<</say>>
<<narrate>>The sounds of her ass clapping against your abdomen echo around the room.<</narrate>>
<<say kp>>Oh my god yes, baby, that feels so good.<</say>>
<<cont "kpsex" "stress06">>
<<case "stress06">>
<<vid "kp/m06.mp4">>
<<say kp>>That's so good, baby. You feel so good, so deep inside me.<</say>>
<<narrate>>You can fight off your demise no longer, between her lustful calls, the grip of her pussy, the vision of her salacious expressions and bouncing boobs, and the sounds of the bed, you're far beyond your limit.<</narrate>>
<<say kp>>Cover my stomach, I want to feel your warmth oozing down all over me!<</say>>
<<button "Cum" kpsex>>
<<temp "stress07">>
<</button>>
<<case "stress07">>
<<vid "kp/m07.mp4">>
<<say kp>>Do it for me, baby. Yes, give me that cum!<</say>>
<<narrate>>You explode on her torso, your goo slowly streaming down over her abdomen.<</narrate>>
<<say kp>>Ohh~ yes, it's so fucking hot!<</say>>
<<narrate>>She lets her head fall back on to your pillow.<</narrate>>
<<say kp>>See? This just makes everything feel better...<</say>>
<<unlock "kp" "stress">>
<<if $tempvar3 == "skipper">>
<<button "Continue Skipping" sleep>>
<<temp "">>
<<event kp fest 2>>
<<like "kp" 3>>
<<lust "kp" 5>>
<<time 16 h false>>
<<set $skipping = true>>
<</button>>
<<else>>
<<button "Continue" househub>>
<<temp "">>
<<event kp fest 2>>
<<like "kp" 3>>
<<lust "kp" 5>>
<<time 1.5>>
<</button>>
<</if>>
<<case "dream102">>
<<vid "kp/dream102.mp4">>
<<say "kp">>Oh, you're such a good boy!<</say>>
<<say "mc">>Ride it, ride my great big cock, you dirty girl!<</say>>
<<say "kp">>Ohh~ fuck. Yes, yes, yes, yes!<</say>>
<<cont "kpsex" "dream103">>
<<case "dream103">>
<<vid "kp/dream103.mp4">>
<<say "kp">>Ohh~ yeah. Oh, my god... baby...!<</say>>
<<narrate>>You thrust with wild abandon as she squirms with pleasure.<</narrate>>
<<cont "kpsex" "dream104">>
<<case "dream104">>
<<vid "kp/dream104.mp4">>
<<say "kp">>Oh~ fuck babe, that's so fucking good.<</say>>
<<say "mc">>Yeah, you like that?<</say>>
<<narrate>>Your bodies in sync the two of you race toward the finish line.<</narrate>>
<<cont "kpsex" "dream105">>
<<case "dream105">>
<<vid "kp/dream105.mp4">>
<<say "kp">>Oh~ shit, yes. Oh, my—<</say>>
<<say "kp">>Oh, my god, yes, yes, yes.<</say>>
<<narrate>>As another orgasm takes hold of her, you too feel the pleasure creeping up on you.<</narrate>>
<<say "mc">>Shit, I'm gonna blow.<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<say "kp">>Cover me. Shower me in your nectar!<</say>>
<<vid "kp/dream106.mp4">>
<<say "mc">>Fuck, fuck, fuck, fuck, YESSS!<</say>>
<<say "kp">>That was... incredible.<</say>>
<<if $kp.events.dreamed == undefined && $replay == false>>
<<say "mc">>Not bad for a dream, huh?<</say>>
<<say "kp">>A... dream...?<</say>>
<<narrate>>She fades away, your shared dream coming to an end.<</narrate>>
<<think "mc">>Was she not aware this was a dream? But she invited me here... I'll talk to her in the morning.<</think>>
<</if>>
<<unlock "kp" "dream1">>
<<button "Continue" sleep>>
<<temp "focused">>
<<if $kp.events.dreamed == undefined>>
<<set $tempvar3 = "kpwtf">>
<</if>>
<<lust "kp" 5>>
<</button>>
<</replace>>
<</button>>
</div>
<<case "gossip-invite">>
<<think "mc">>Hmm, $sophia.name is here too... should I see if she wants to watch?<</think>>
<<choices>>
<<link "Yes" sophiaanswers>>
<<temp "aud-kp">>
<</link>><br>
<<link "No" kpsex>>
<<temp "gossip">>
<</link>>
<</choices>>
<<case "gossip">>
<<if $sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Office">>
<<narrate>>You look around the room for $sophia.name. You can't see her, but you can hear her humming away happily to herself.<</narrate>>
<</if>>
<<say "mc">>Wanna give the others something to talk about?<</say>>
<<block "kp/office02.jpg">>
<<narrate>>She looks up at you from her computer.<</narrate>>
<<say "kp">>Sorry, what?<</say>>
<<say "mc">>You know, start some office gossip.<</say>>
<<say "kp">>You realize this isn't that kind of office, right?<</say>>
<<say "mc">>Doesn't mean we can't have people gossip about us!<</say>>
<</block>>
<<say "kp">>Us? Perhaps now I'm intrigued. What were you thinking?<</say>>
<<say "mc">>How about you come over here and we'll see what... pops up.<</say>>
<<narrate>>She almost facepalms at how lame your lines are.<</narrate>>
<<say "kp">>You're damn well lucky your cock is so damn good, because your pickup lines need a lot of work.<</say>>
<<narrate>>In one swift movement she gets up and pushes you against the wall.<</narrate>>
<<say "kp">>But, I am feeling rather peckish.<</say>>
<<narrate>>She throws her bra off to the floor in a dramatic fashion and gets on her knees.<</narrate>>
<<say "mc">>Oh, I think I can help you with that.<</say>>
<<narrate>>As she slides down your trousers, your cock smacks her forehead.<</narrate>>
<<say "kp">>Well, someone is certainly ready for me.<</say>>
<<button "Continue" kpsex>>
<<temp "gossip01">>
<</button>>
<<case "gossip01">>
<<narrate>>She skillfully takes your cock into her mouth while massaging your shaft.<</narrate>>
<<vid "kp/office01.mp4">>
<<say "mc">>Oh god. Fucking yes!<</say>>
<<narrate>>She lucks up at you, her piercing stare sending shivers down your spine.<</narrate>>
<<say "kp">>I want you to fuck my tits.<</say>>
<<button "Continue" kpsex>>
<<temp "gossip02">>
<</button>>
<<case "gossip02">>
<<vid "kp/office02.mp4">>
<<narrate>>She suffocates your cock with her breasts as you hump away. Your tip occasionally catching her chin and sending a wave of excitement through your shaft.<</narrate>>
<<say "mc">>God your boobs. Fucking hell.<</say>>
<<narrate>>She looks back up at you.<</narrate>>
<<say "kp">>Let's really give them something to talk about!<</say>>
<<narrate>>You grin.<</narrate>>
<<say "mc">>What was that about my pickup lines?<</say>>
<<say "kp">>Shut up and fuck me!<</say>>
<<narrate>>She bends over the air conditioning unit, presenting herself to you.<</narrate>>
<<button "Continue" kpsex>>
<<temp "gossip03">>
<</button>>
<<case "gossip03">>
<<vid "kp/office03.mp4">>
<<narrate>>You push hard into her, quicker and quicker, as her moans grow ever louder.<</narrate>>
<<say "kp">>Oh shit.<</say>>
<<narrate>>She writhes with pleasure with each thrust, barely able to contain her pleasure.<</narrate>>
<<say "kp">>I need that fucking dick so bad!<</say>>
<<say "mc">>On the desk!<</say>>
<<narrate>>You pick her up, your dick still firmly inside her, and drop her on to the desk.<</narrate>>
<<button "Continue" kpsex>>
<<temp "gossip04">>
<</button>>
<<case "gossip04">>
<<vid "kp/office04.mp4">>
<<narrate>>You embrace her thigh as you fuck her hard over the desk.<</narrate>>
<<say "kp">>Oh shit.<</say>>
<<narrate>>Her body begins to shake as she succumbs to the pleasure.<</narrate>>
<<say "kp">>Oh my god. $name. Yes! Fuck!<</say>>
<<narrate>>Hearing her scream your name you climax inside her.<</narrate>>
<<say "mc">>Fuck yes! Fuck me yes! $kp.name!<</say>>
<<say "kp">>Yes fill me up! Give me your warm sticky goo!<</say>>
<<narrate>>As the two of you regain your breath, you can't help but notice a couple of drops of cum on her desk.<</narrate>>
<<say "mc">>Fuck me that was good.<</say>>
<<if $tempvar3 == "sophiawatch">>
<<say "kp">>All the better for having an audience.<</say>>
<<narrate>>She gives $sophia.name a little wave and grin.<</narrate>>
<<say "mc">>You said it!<</say>>
<</if>>
<<narrate>>She collects her bra from the floor and places her hand seductively on your chest.<</narrate>>
<<say "kp" "" "(Whispering in your ear)" "whisper">>Any time you want to start some rumors, you come find me!<</say>>
<<if $sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Office">>
<<think "mc">>Well, I can't hear $sophia.name humming now. No idea where she is, though.<</think>>
<</if>>
<<button "Continue" housestuff>>
<<unlock "kp" "gossip">>
<<lust "kp" 3>>
<<like "kp" 3>>
<<if ($sophia.events.relationship != undefined && $sophia.events.relationship != "friends" && $sophia.events.watchchat == undefined && getCurrentLocation('sophia') == "Office") || $tempvar3 == "sophiawatch">>
<<set $sophia.events.watched++>>
<<corrupt "sophia" 2>>
<<lust "sophia" 3>>
<<set $tempvar3 = "">>
<</if>>
<<time 1.5>>
<<temp "">>
<</button>>
<<case "docs01">>
<<vid "kp/docs01.mp4">>
<<say "mc">>God, that feels good.<</say>>
<<say "kp">>It can feel better yet.<</say>>
<<button "Continue" kpsex>>
<<temp "docs02">>
<</button>>
<<case "docs02">>
<<narrate>>She discards her coat and pushes you down on to the table.<</narrate>>
<<vid "kp/docs02.mp4">>
<<say "kp">>Enough foreplay, I'm going to ride your dick like a goddamn camel.<</say>>
<<think "mc">>What the hell is with that metaphor?<</think>>
<<button "Continue" kpsex>>
<<temp "docs03">>
<</button>>
<<case "docs03">>
<<narrate>>She climbs atop you and lowers herself on to your dick.<</narrate>>
<<vid "kp/docs03.mp4">>
<<say "kp">>Oh god, yes, fuck!<</say>>
<<narrate>>The clap of her ass cheeks against your thighs sends pangs of pleasure through your groin with each slap.<</narrate>>
<<say "mc">>Ride it, slut. Show me just how fucking dirty you are!<</say>>
<<button "Continue" kpsex>>
<<temp "docs04">>
<</button>>
<<case "docs04">>
<<narrate>>You grab her by the waist and toss her about until you're pummeling her from behind.<</narrate>>
<<vid "kp/docs04.mp4">>
<<say "kp">>Ooooh, yeah yeah!<</say>>
<<say "mc">>Take it like the fucking cock-hungry bitch that you are!<</say>>
<<say "kp">>Yes, oh my fucking god!<</say>>
<<button "Continue" kpsex>>
<<temp "docs05">>
<</button>>
<<case "docs05">>
<<narrate>>You push her on to the table.<</narrate>>
<<vid "kp/docs05.mp4">>
<<say "kp">>Oh, holy fuck, right there, right there!<</say>>
<<say "mc">>That's it, slut, show me just how much your twat needs my dick!<</say>>
<<say "kp">>Oh. My. Fuuuck!<</say>>
<<button "Cum" kpsex>>
<<temp "docs06">>
<</button>>
<<case "docs06">>
<<narrate>>Through the screams of pleasure and dirty talk, you barely catch yourself as you explode onto her stomach.<</narrate>>
<<vid "kp/docs06.mp4">>
<<say "kp">>Fuck. You were a beast. I loved it.<</say>>
<<say "mc">>You weren't so bad yourself, doc.<</say>>
<<if $tempvar3 == "krissy">>
<<say kp>>Well, I must really get back to it. I hope you enjoyed the show, $krissy.name.<</say>>
<<krissyreply>>
<<button "Continue" housestuff>>
<<like "kp" 3>>
<<lust "kp" 5>>
<<unlock "kp" "docs">>
<<lust "krissy" 4>>
<<corrupt "krissy" 5>>
<<set $tempvar3 = "">>
<<set $krissy.relief = 3>>
<<run overrideSchedule('krissy', 0, 24, 'bedrooms')>>
<<time 1.5>>
<</button>>
<<else>>
<<say "kp">>Well, you have a clean bill of health from me, but maybe we should schedule another session soon to be safe?<</say>>
<<narrate>>You grin.<</narrate>>
<<say "mc">>You got it, doc.<</say>>
<<think "mc">>Certainly helped take my mind off the no-male revelation, but I guess there's no reason to dwell on it. Not like it changes anything, I guess.<</think>>
<<button "Continue" townhub>>
<<temp "">>
<<like "kp" 3>>
<<lust "kp" 5>>
<<unlock "kp" "docs">>
<<event "kp" "checkup">>
<<time 2>>
<</button>>
<</if>>
<<case "done">>
<<vid "kp/done01.mp4">>
<<narrate>>You gently tease her with your finger as she rubs her clit.<</narrate>>
<<say "kp">>Mhhhm, yeah. That's good.<</say>>
<<say "mc">>This is not what I expected when I met you.<</say>>
<<say "kp">>Ooooaa, yes, just like that! Me neither.<</say>>
<<if $tempvar2 == "ds">><center><<choices>>
<<button "Cum" kpsex>><<temp "donecum">><</button>>
<<button "Blowjob" kpsex>><<temp "done02">><</button>>
<<button "Stand & Deliver" kpsex>><<temp "done03">><</button>>
<<button "Doggy" kpsex>><<temp "done04">><</button>>
<<button "Reverse Cowgirl" kpsex>><<temp "done05">><</button>><</choices>></center>
<<else>>
<<button "Continue" kpsex>>
<<temp "done02">>
<</button>>
<</if>>
<<case "done02">>
<<vid "kp/done02.mp4">>
<<say "mc">>Suck it. I wanna see the enthusiasm in your eyes as I fuck your throat.<</say>>
<<if $tempvar2 == "ds">><center><<choices>>
<<button "Cum" kpsex>><<temp "donecum">><</button>>
<<button "Fingerbang" kpsex>><<temp "done">><</button>>
<<button "Stand & Deliver" kpsex>><<temp "done03">><</button>>
<<button "Doggy" kpsex>><<temp "done04">><</button>>
<<button "Reverse Cowgirl" kpsex>><<temp "done05">><</button>><</choices>></center>
<<else>>
<<button "Continue" kpsex>>
<<temp "done03">>
<</button>>
<</if>>
<<case "done03">>
<<narrate>>You drag her on to the bed and pull her by her ankles back down the sheets.<</narrate>>
<<vid "kp/done03.mp4">>
<<narrate>>Her moans grow increasingly passionate as you continue to thrust into her.<</narrate>>
<<say "kp">>Oh fuck yes, just like that, baby!<</say>>
<<if $tempvar2 == "ds">><center><<choices>>
<<button "Cum" kpsex>><<temp "donecum">><</button>>
<<button "Fingerbang" kpsex>><<temp "done">><</button>>
<<button "Blowjob" kpsex>><<temp "done02">><</button>>
<<button "Doggy" kpsex>><<temp "done04">><</button>>
<<button "Reverse Cowgirl" kpsex>><<temp "done05">><</button>><</choices>></center>
<<else>>
<<button "Continue" kpsex>>
<<temp "done04">>
<</button>>
<</if>>
<<case "done04">>
<<narrate>>You flip her over and aggressively pull her panties down and over her feet.<</narrate>>
<<vid "kp/done04.mp4">>
<<narrate>>You slam against her, the clap of her ass cheeks sending you wild.<</narrate>>
<<say "kp">>Oh, shit yes!<</say>>
<<if $tempvar2 == "ds">><center><<choices>>
<<button "Cum" kpsex>><<temp "donecum">><</button>>
<<button "Fingerbang" kpsex>><<temp "done">><</button>>
<<button "Blowjob" kpsex>><<temp "done02">><</button>>
<<button "Stand & Deliver" kpsex>><<temp "done03">><</button>>
<<button "Reverse Cowgirl" kpsex>><<temp "done05">><</button>><</choices>></center>
<<else>>
<<button "Continue" kpsex>>
<<temp "done05">>
<</button>>
<</if>>
<<case "done05">>
<<narrate>>You fall back on to the bed, and she lowers herself on to your dick.<</narrate>>
<<vid "kp/done05.mp4">>
<<say "kp">>Oh fuck, yeah... fuck baby!<</say>>
<<narrate>>It's all you can do to stop yourself from spanking the bouncing ass in front of your face.<</narrate>>
<<say "kp">>Give it to me, baby!<</say>>
<<set $tempvar2 = "ds">>
<center><<choices>>
<<button "Cum" kpsex>><<temp "donecum">><</button>>
<<button "Fingerbang" kpsex>><<temp "done">><</button>>
<<button "Blowjob" kpsex>><<temp "done02">><</button>>
<<button "Stand & Deliver" kpsex>><<temp "done03">><</button>>
<<button "Doggy" kpsex>><<temp "done04">><</button>>
<</choices>></center>
<<case "donecum">>
<<vid "kp/donecum.mp4">>
<<set $tempvar2 = "ds">>
<<narrate>>As you feel the climax of your passion nearing, you toss her around on the bed and jerk off onto her stomach.<</narrate>>
<<say "kp">>Cover me in your love, baby. Shower me in spunk!<</say>>
<<narrate>>Her words take you over the edge, and you unload onto her stomach.<</narrate>>
<<say "kp">>Fuck, they're right. You are good.<</say>>
<<narrate>>Out of breath, you let out a small chuckle.<</narrate>>
<<if !$completeTasks.includes('inspectinteract')>>
<<say "kp">>I got a little distracted there. Meet me at your gateway tomorrow, and I'll explain more about reducing the limiters.<</say>>
<</if>>
<<if $completeTasks.includes('inspectinteract')>>
<<button "Continue" housestuff>>
<<unlock "kp" "done">>
<<lust "kp" 5>>
<<like "kp" 3>>
<<time 2>>
<</button>>
<<else>>
<<button "Sleep" sleep>>
<<unlock "kp" "done">>
<<lust "kp" 5>>
<<like "kp" 3>>
<<taskdone "inspectinteract">>
<<taskdone "inspectrelax">>
<<run overrideSchedule('kp', 8, 18, "gatewayb")>>
<<run overrideSchedule('kp', 18, 24, "Off World")>>
<<time 2 h false>>
<</button>>
<</if>>
<</switch>><<scene>>
<<set _img = getFolder('kp') + "/$location01.jpg">>
<<if $hour < 10>>
<<set _time = 12>>
<<set _time2 = 12>>
<<elseif $hour < 13>>
<<set _time = 12>>
<<set _time2 = 16>>
<<elseif $hour == 13>>
<<set _time = 16>>
<<set _time2 = 16>>
<<elseif $hour < 17>>
<<set _time = 16>>
<<set _time2 = 19>>
<<elseif $hour < 20>>
<<set _time = 19>>
<<set _time2 = 23>>
<<else>>
<<set _time = 23>>
<<set _time2 = 23>>
<</if>>
<<if $kp.events.class == undefined>>
<<left2 _img>>
<<say "kp">>Well, this isn't a bad facility. You really did your homework, pardon the pun.<</say>>
<<say "mc">>I only want the best for my companions.<</say>>
<<say "kp">>Hmm, yes, certainly. Well, this will do well.<</say>>
<<say "mc">>So what can you teach?<</say>>
<<say "kp">>Anything.<</say>>
<<say "mc">>Surely you don't know <i>everything</i>!<</say>>
<<say "kp">>I have a great knowledge of many things, but I can't claim to know even a fraction of all there is to know. But contextually, relevant to your needs, I can teach your workers any skill you need.<</say>>
<<say "mc">>Wow, that's pretty amazing.<</say>>
<<say "kp">>Providing they know the basics, that is, I have no patience for teaching people who know nothing already.<</say>>
<<say "mc">>Understood.<</say>>
<<say "kp">>Let's begin.<</say>>
<<button "Continue" kpteach>>
<<like "kp" 3>>
<<set $student = undefined>>
<<event "kp" "class">>
<<time 0.5>>
<</button>>
<<else>>
<<if $student != undefined && $student != "">>
<<block _img>>
<<set _who = State.variables[$student]>>
<<say "kp">>And what you like me to teach _who.name?<</say>>
<div id="replace">
<<choices "Select Subject">>
<<for _k, _s range State.variables[$student].skills>>
<<if _s < 10 || _s >= 60>><<continue>><</if>>
<<set _uc = _k.toUpperFirst()>>
<<capture _k _s _uc>>
<<link "_uc (_s)">>
<<replace "#replace">>
<<say "mc">>_uc.<</say>>
<<say "kp">>Great, we'll be done in four hours.<</say>>
<<button "Continue" housestuff>>
<<set $teaching = {hour: $hour+4, who: $student, skill: _k, teacher: "kp", gain: 5, start: $hour}>>
<<if $schedules[$student] == undefined>>
<<set $schedules[$student] = {}>>
<</if>>
<<if $schedules.kp == undefined>>
<<set $schedules.kp = {}>>
<</if>>
/*
<<set $schedules[$student][$hour] = "study">>
<<set $schedules[$student][$hour+1] = "study">>
<<set $schedules[$student][$hour+2] = "study">>
<<set $schedules[$student][$hour+3] = "study">>
<<set $schedules['kp'][$hour] = "study">>
<<set $schedules['kp'][$hour+1] = "study">>
<<set $schedules['kp'][$hour+2] = "study">>
<<set $schedules['kp'][$hour+3] = "study">>
*/
<<run checkSchedules()>>
<<like "kp" 1>>
<<like $student 2>>
<<set $kp.teachspy = 0>>
<<set $kp.taught = 1>>
<<set $student = "">>
<</button>>
<</replace>>
<</link>><br>
<</capture>>
<</for>>
<<link "Cancel" kpteach>><<set $student = "">><</link>>
<</choices>>
</div>
<</block>>
<<else>>
<<block _img>>
<<say "kp">>Who would you like me to teach?<</say>>
<<notice>>
$kp.name can teach anything, but she has little patience for complete rookies. They must have attained a skill level of 10 before she'll assist. She can teach up to a skill level of 60.<br>
After four hours, the student will gain 5 skill.<br>
She will only teach once a day.
<</notice>>
<<set $subject = "">>
<center>
<<choices "Select Student">>
<div class="flex">
<<set _i = 0>>
<<for _g range $workers>>
<<if characterinfo[_g] != undefined && characterinfo[_g].traits != undefined && characterinfo[_g].traits.includes('off world worker')>>
<<continue>>
<</if>>
<<capture _g>>
<<if $working == undefined>>
<<set $working = {}>>
<</if>>
<<if $working[_g] == undefined>>
<<set $working[_g] = {}>>
<</if>>
<<if $working[_g][_time] == undefined>>
<<set $working[_g][_time] = null>>
<</if>>
<<if $working[_g][_time2] == undefined>>
<<set $working[_g][_time2] = null>>
<</if>>
<<if _g == "kp" || !$girlsavailable.includes(_g) || $working[_g][_time] != null || $working[_g][_time2] != null>>
<<continue>>
<</if>>
<<set _w = State.variables[_g].name>>
<<if skillLevelCheck(_g, 10, 60) == 0>><<continue>><</if>>
<<set _folder = getFolder(_g)>>
<div class="girlChoice hover" title="" @girl="_g" data-passage="kpteach" data-setter="$student = _g"><img @src="setup.img+_folder+'/badge.jpg'" style="width:100px" class="imghover"><br>_w<br>
<<skills _g 10 60>>
</div>
<<set _i++>>
<</capture>>
<</for>>
<<if _i == 0>>No eligible students available.<</if>>
</div>
<<script>>
$(document).ready(function() {
$('.em').tooltip({
position: {
my: "center bottom-5",
at: "center top-5"
},
track: true
});
let selector = ".imghover";
$(selector).tooltip({
position: {
my: "right bottom-10",
at: "right top-10"
},
track: true,
content: function() {
if ($(this).hasClass('empty')) return;
let girl = $(this).attr('girl');
let info = State.variables[girl];
let ci = characterinfo[girl];
let title = "<h3>"+info.name+"</h3>";
title += "👍"+info.like+" ❤️"+info.lust;
title += "<br>Fatigue: "+info.fatigue;
title += "<br><h3>Traits</h3>";
for (let x in info.traits) {
title += info.traits[x].toUpperFirst();
if (x != info.traits.length-1) title += "<br>";
}
if (ci.only != undefined) {
title += "<br><h3>Constraints</h3>";
for (let x in ci.only) {
if (State.variables.buildings[ci.only[x]] != undefined) title += State.variables.buildings[ci.only[x]].name;
if (x != ci.only.length-1) title += "<br>";
}
}
if (ci.nowork != undefined) {
title += "<br><h3>Exclusions</h3>";
for (let x in ci.nowork) {
if (State.variables.buildings[ci.nowork[x]] != undefined) title += State.variables.buildings[ci.nowork[x]].name;
if (x != ci.nowork.length-1) title += "<br>";
}
}
return title;
}
});
});
<</script>>
<<link "Never mind" housestuff>><</link>>
<</choices>>
</center>
<</block>>
<</if>>
<</if>><<tracker "kp">>
<<if $tasks.avafind != undefined && !$girlsavailable.includes('kp')>>
<<step "Unavailable due to council matters" "She's dealing with the council right now. She'll be back eventually...">>
<<elseif $mc.events.metinspector == 1 && getCurrentLocation('kp') == "Unavailable" && $tasks.inspectgateway != undefined>>
<<step "Sleep on it" "Her inspection will start tomorrow.">>
<<elseif $tasks.inspectgateway != undefined>>
<<step "Gateway Meetup" "Meet her at Gateway A to move the inspection forward. Optionally, you may also want to observe her doing her the inspection before 15:00 when she then makes her way to the Gateway A. You will not be able to interact with her from 18:00 if you chose not to finish this task today.">>
<<elseif $tasks.inspectinteract != undefined>>
<<step "Nighttime Results" "Join her in her room after 22:00 or by sneaking around after midnight. Optionally, you may also want to chat with her at Gateway A and observe or interact with her in the gym and/or pool.">>
<<elseif $tasks.inspectlimitbreak != undefined>>
<<step "Gateway B Meetup" "Meet her at Gateway B, or wait until 17:00 when the event will automatically trigger.">>
<<elseif $kp.lust < 25>>
<<step "She doesn't desire you enough." "25 needed. Some ways to increase lust.<br>Discuss available topics.<br>Flirt with her.<br>Swim when she's in the pool.<br>Peep on her.">>
<<elseif $buildings.docs == undefined>>
<<step "What's up, Doc?" "Build the doctor's surgery.">>
<<elseif $kp.events.checkup == undefined>>
<<step "Checkup" "Visit her at the doctors office to get a checkup.">>
<<elseif !$completeTasks.includes('newplanets')>>
<<step "Progress the story" "Follow the story tasks to trigger the next event">>
<<elseif !$completeTasks.includes('newplanets2')>>
<<step "Unknown worlds" "Discuss connecting to unknown worlds with her.">>
<<elseif $buildings.study == undefined>>
<<step "Build a Study Room" "Research and build the study room">>
<<elseif $kp.events.class == undefined>>
<<step "Start Class" "Head to the study before 14:00 and ask her to teach someone.">>
<<else>>
<<movielist kp>>
<</if>>
<</tracker>><<if $kp.events.met == undefined>>
<<set $kp.events.met = 0>>
<</if>>
<<if $kp.events.mcspoke == undefined>>
<<set $kp.events.mcspoke = 0>>
<</if>>
<<switch $location>>
<<case "kitchen">>
<<set $girlshere.delete('kp')>>
<<if $kp.events.lacykitchen != undefined>>
<<set $girlshere.delete('lacy')>>
<</if>>
<<if $kp.events.emberkitchen != undefined>>
<<set $girlshere.delete('ember')>>
<</if>>
<<if $kp.events.theodorakitchen != undefined>>
<<set $girlshere.delete('theodora')>>
<</if>>
<<set _time = 1>>
<<if $girlshere.length > 0>>
<<set _w = either($girlshere)>>
<<set _n = State.variables[_w]>>
<<narrate>>She grabs herself a coffee then mills around for a moment, then looks over _n.name's shoulder.<</narrate>>
<<say _w>>Can I help you?<</say>>
<<block "kp/kitchen01.jpg">>
<<say "kp">>That you may. Tell me about $name.<</say>>
<<switch _w>>
<<case "lacy">>
<<say _w>>Certainly. Could you answer some questions about patrons, the council and the gateways?<</say>>
<<say "kp">>No.<</say>>
<<say _w>>Why not?<</say>>
<<say "kp">>Protocol dictates I can not divulge any information to an outsider.<</say>>
<<say _w>>I see.<</say>>
<<say "kp">>So, first, can you tell me—<</say>>
<<say _w>>I'm sorry, protocol dictates I can not divulge any information to an outsider.<</say>>
<<narrate>>She picks up her food and moves to another table. $kp.name just grins to herself.<</narrate>>
<<event "kp" "lacykitchen">>
<<set $kp.events.met++>>
<<case "theodora">>
<<say _w>>Oh, sure. I used to really dislike him, but since coming here he's been super cool, and I love this place.<</say>>
<<say "kp">>So you knew him from his home world?<</say>>
<<say _w>>Yes, I'm his $theodora.them.<</say>>
<<say "kp">>Are you indeed? You must be from the buffer. It's quite something to be kept in there so long, it baffled even the council.<</say>>
<<narrate>>$theodora.name shrugs.<</narrate>>
<<say "kp">>So, you felt differently after you came here?<</say>>
<<say _w>>I guess.<</say>>
<<narrate>>$kp.name scribbles some notes on her clipboard.<</narrate>>
<<event "kp" "theodorakitchen">>
<<event "kp" "gatewayknow">>
<<event "kp" "familymembers">>
<<set $kp.events.met++>>
<<case "ember">>
<<say _w>>He's a pretty good boss. I haven't felt so engaged for decades.<</say>>
<<say "kp">>In what way?<</say>>
<<say _w>>He keeps me busy with tasks and jobs, and I've felt a renewed purpose since he got here.<</say>>
<<say "kp">>So you were here before him?<</say>>
<<say _w>>Yes, I came through the other gateway.<</say>>
<<narrate>>$kp.name raises her eyebrows while jotting down some notes.<</narrate>>
<<say "kp">>I see.<</say>>
<<event "kp" "emberkitchen">>
<<set $kp.events.met++>>
<</switch>>
<</block>>
<<elseif $kp.events.mckitchen != undefined>>
<<block "kp/$location01.jpg">>
<<say "kp">>Do you have nothing better to do with your time? I have nothing further to do here. Meet me later today.<</say>>
<<set _time = 0>>
<</block>>
<<else>>
<<narrate>>She grabs herself a coffee, then mills around for a moment before standing at the counter to review her notes.<</narrate>>
<<block "kp/kitchen01.jpg">>
<<say "kp">>You know it's rude to stare?<</say>>
<<say "mc">>Honestly, you've given me no reason to trust you yet. I'm simply making sure my friends are safe.<</say>>
<<say "kp">>Friends or lovers? It's painfully obvious this is your harem. I'm unsure if it includes everyone, but you're certainly enjoying your life here, aren't you?<</say>>
<<say "mc">>They can be both. I don't want to see any harm come to them.<</say>>
<<say "kp">>Admirable, but believe me, boy, in your current state, you could not stop me should I decide to cause them, or even you, harm.<</say>>
<</block>>
<<narrate>>She struts off before you can get a chance to respond.<</narrate>>
<<think "mc">>The fuck was that? Forgetting the condescending tone, how can she feel so menacing?<</think>>
<<set $kp.events.mcspoke++>>
<<event "kp" "mckitchen">>
<</if>>
<<set $girlshere.pushUnique('kp')>>
<<set $girlshere.pushUnique('theodora')>>
<<set $girlshere.pushUnique('ember')>>
<<set $girlshere.pushUnique('lacy')>>
<<button "Continue" housestuff>>
<<time _time>>
<</button>>
<<case "office">>
<<set $girlshere.delete('kp')>>
<<if $kp.events.cassieoffice != undefined>>
<<set $girlshere.delete('cassie')>>
<</if>>
<<if $kp.events.moniqueoffice != undefined>>
<<set $girlshere.delete('monique')>>
<</if>>
<<set _time = 1>>
<<if $girlshere.length > 0>>
<<set _w = either($girlshere)>>
<<set _n = State.variables[_w]>>
<<switch _w>>
<<case "cassie">>
<<block "kp/$location01.jpg">>
<<say "kp">>_n.name, was it? Tell me, what do you know of $name?<</say>>
<<say "cassie">>Despite him not seeing it in himself, he is a strong dependable leader that everyone here fell under with remarkable swiftness and ease. Myself included.<</say>>
<<say "kp">>He certainly has your admiration.<</say>>
<<say "cassie">>He is quite the man. He has not long since been in our lives, and before him we did not know we were missing anything, but everything just sort of clicked once he got his bearings, and here we are better for it.<</say>>
<<say "kp">>So you were here before him?<</say>>
<</block>>
<<say "cassie">>That is correct.<</say>>
<<say "kp">>How?<</say>>
<<narrate>>$cassie.name looks confused.<</narrate>>
<<say "cassie">>Through the gateway of course.<</say>>
<<say "kp">>How can you travel through his gateway when he was yet to be here?<</say>>
<<say "cassie">>The first gateway predates him.<</say>>
<<if $kp.events.gatewayknow!= undefined>>
<<say "kp">>$ember.name mentioned the other gateway too. Intriguing.<</say>>
<<else>>
<<narrate>>$kp.name raises her eyebrows while jotting down some notes.<</narrate>>
<<event "kp" "gatewayknow">>
<</if>>
<<event "kp" "cassieoffice">>
<<set $kp.events.met++>>
<<case "monique">>
<<block "kp/$location01.jpg">>
<<say "kp">>May I ask your opinion of $name?<</say>>
<<say "monique">>He's the best $monique.you one could ask for. Loving and tender. Takes care of all my needs.<</say>>
<<say "kp">>Right, you must have been part of his initial buffer if you knew him before he was a patron.<</say>>
<<say "monique">>No. I was here before him. Long before him. It was a surprise he was here. I came through just before everyone moved to the East.<</say>>
<</block>>
<<say "kp">>Sorry. Everyone? East?<</say>>
<<say "monique">>Yes, the original settlers moved out east after trying to destroy the previous patron.<</say>>
<<narrate>>$kp.name stares blankly at $monique.name for a moment before scribbling down some notes.<</narrate>>
<<event "kp" "eastknow">>
<<event "kp" "gatewayknow">>
<<event "kp" "moniqueoffice">>
<<event "kp" "familymembers">>
<<set $kp.events.met++>>
<</switch>>
<<elseif $kp.events.mcoffice != undefined>>
<<block "kp/$location01.jpg">>
<<say "kp">>Do you have nothing better to do with your time? I have nothing further to do here. Meet me later today.<</say>>
<<set _time = 0>>
<</block>>
<<else>>
<<block "kp/office01.jpg">>
<<say "kp">>Are you going to be my shadow for the rest of the day?<</say>>
<<say "mc">>I haven't decided yet.<</say>>
<<say "kp">>At least tell me something useful then. How long have you been serving here?<</say>>
<<say "mc">>About $day days.<</say>>
<<narrate>>She burst out laughing.<</narrate>>
<</block>>
<<say "kp">>Haha! Sure, sure. I hadn't taken you for a joker when we first met.<</say>>
<<narrate>>She catches your glance.<</narrate>>
<<say "kp">>Wait, you're not joking, are you? Are days here stupidly long? How many hours in a day here?<</say>>
<<say "mc">>Twenty-four.<</say>>
<<say "kp">>TWENTY-FOUR?! <i>Less</i> than average?! How the hell do you have a limiter-removal inspection so soon? Patrons seldom get inspections before their first centennial.<</say>>
<<narrate>>She furiously jots more notes down, muttering under her breath about just how green you are.<</narrate>>
<<think "mc">>Limiter-removal? She makes it sounds like I'm on training wheels.<</think>>
<<set $kp.events.mcspoke++>>
<<event "kp" "mcoffice">>
<</if>>
<<set $girlshere.pushUnique('kp')>>
<<set $girlshere.pushUnique('cassie')>>
<<set $girlshere.pushUnique('monique')>>
<<button "Continue" housestuff>>
<<time _time>>
<</button>>
<<case "lounge">>
<<set $girlshere.delete('kp')>>
<<if $kp.events.kaylalounge != undefined>>
<<set $girlshere.delete('kayla')>>
<</if>>
<<if $kp.events.lexilounge != undefined>>
<<set $girlshere.delete('lexi')>>
<</if>>
<<set _time = 1>>
<<if $girlshere.length > 0>>
<<set _w = either($girlshere)>>
<<set _n = State.variables[_w]>>
<<switch _w>>
<<case "kayla">>
<<block "kp/$location01.jpg">>
<<say "kp">>$kayla.name, correct? I'd very much appreciate the input of somebody like you on the patron.<</say>>
<<say "kayla">>Oh, he's so cool, like really, really good at stuff.<</say>>
<<narrate>>She looks at $kayla.name, a little dumbfounded for a moment. $kayla.name simply stares back at her blankly.<</narrate>>
<<say "kp">>Right, so how would you rate his performance as a patron?<</say>>
<<narrate>>$kayla.name giggles while $kp.name continues to stare at her, bemused.<</narrate>>
<</block>>
<<say "kayla">>Like super good, he takes care of us all and like makes us feel valued. Gives us purpose I guess, and he's just real fun too!<</say>>
<<say "kp">>Right I see. Thank you.<</say>>
<<narrate>>You can't tell for sure as you're not quite close enough, but you think it reads "WTF?!" on her clipboard.<</narrate>>
<<think "mc">>That's a bit rude, I know the language she uses isn't always the best, but the meaning behind them is no less important.<</think>>
<<event "kp" "kaylalounge">>
<<set $kp.events.met++>>
<<case "lexi">>
<<block "kp/$location01.jpg">>
<<say "kp">>What can you tell me about $name?<</say>>
<<say "lexi">>He's capable, dependable and willing to help, listen to, and nurture those he believes in, even if they do not believe in themselves.<</say>>
<<say "kp">>Kind words. How long have you been working for him?<</say>>
<<say "lexi">>Not that long to be honest, but I have known him his entire life.<</say>>
<</block>>
<<if $kp.events.familymembers != undefined>>
<<say "kp">>It's quite unique how many people here knew him before he was a patron.<</say>>
<<say "lexi">>I was just glad to be reunited with him.<</say>>
<<narrate>>She pauses for a moment to make some more notes.<</narrate>>
<<else>>
<<say "kp">>Ah, I suppose you were part of his initial buffer.<</say>>
<<say "lexi">>Not at all. I was here long before him, I was staying with the original settlers of this place.<</say>>
<<say "kp">>Original settlers?<</say>>
<<narrate>>$lexi.name summarizes the Eastlanders and their plot to destroy $voice.name. $kp.name asks her to pause multiple times as she makes notes.<</narrate>>
<<event "kp" "eastknow">>
<<event "kp" "gatewayknow">>
<</if>>
<<set $kp.events.met++>>
<<event "kp" "lexilounge">>
<<event "kp" "familymembers">>
<</switch>>
<<elseif $kp.events.mclounge != undefined>>
<<block "kp/$location01.jpg">>
<<say "kp">>Do you have nothing better to do with your time? I have nothing further to do here. Meet me later today.<</say>>
<<set _time = 0>>
<</block>>
<<else>>
<<block "kp/$location01.jpg">>
<<say "kp">>You'd make a terrible spy, you know?<</say>>
<<say "mc">>I don't care if you know I'm here or not, I just want to ensure my friends are safe.<</say>>
<<say "kp">>Even if that may mean you fail the inspection?<</say>>
<<say "mc">>Their safety is more important to me.<</say>>
<<say "kp">>You actually mean that, don't you?<</say>>
<<say "mc">>Of course, is it not normal to worry about your friends?<</say>>
<</block>>
<<narrate>>She pops her clipboard down for a moment.<</narrate>>
<<say "kp">>So you legitimately consider these people your peers, and not just fucktoys?<</say>>
<<narrate>>You cough at the unexpected crass nature of her comment.<</narrate>>
<<say "mc">>Of course. I'm not going to lie, I do indulge in some... fantasies with them, but I genuinely care about them all, yes.<</say>>
<<say "kp">>How obtuse.<</say>>
<<set $kp.events.mcspoke++>>
<<event "kp" "mclounge">>
<</if>>
<<set $girlshere.pushUnique('kp')>>
<<set $girlshere.pushUnique('kayla')>>
<<set $girlshere.pushUnique('lexi')>>
<<button "Continue" housestuff>>
<<time _time>>
<</button>>
<<case "gatewaya">>
<<block "kp/$location01.jpg">>
<<say "kp">>Good, you're here.<</say>>
<<say "mc">>Yes, something I can help you with?<</say>>
<<narrate>>You can't help but notice how much more casual she's dressed.<</narrate>>
<<say "kp">>Why didn't you mention this patron?<</say>>
<<say "mc">>I assumed you were fully aware already.<</say>>
<</block>>
<<say "kp">>No. Two patrons on a world, while exceedingly rare and usually temporary or an act of war, isn't unheard of, but there being two gateways is.<</say>>
<<say "mc">>But if all patrons need inspections, surely you should be aware of us both already?<</say>>
<<say "kp">>That's where I am unsure exactly what has occurred. Patrons seldom have inspections before their centennial anniversary.<</say>>
<<narrate>>She pauses for a moment.<</narrate>>
<<block "kp/$location03.jpg">><<say "kp">>Converted to the local time, 100 years on central would probably be about 320 here.<</say>>
<<say "mc">>What?!<</say>>
<<say "kp">>Exactly. You've been here mere days. When I learned of this second gateway, I thought perhaps there was a clerical error, and it was meant for them, not you. Not the case, it is most definitely for you. And even if it weren't for you, it doesn't explain why there are two gateways.<</say>>
<<say "mc">>Honestly, I'm as clueless as you. But you said inspections seldom happen so soon, so they do happen sometimes?<</say>>
<<say "kp">>Not for anything good. Your inspection is to remove or decrease your limiters, allowing you to access more of the gateway's potential. All other inspections for young patrons are because they've abused their power too quickly and need to be limited further or sometimes even destroyed.<</say>>
<</block>>
<<say "mc">>Please tell me it's not a clerical error and that's what you're meant to be doing.<</say>>
<<block "kp/$location02.jpg">>
<<say "kp">>No, I've double-, triple- and quadruple-checked that too. This is quite the mystery. I've spoken to a few of the inhabitants and will speak to more after I've finished here, however, I'd like to do it in a more casual environment. I have misjudged the situation and I feel a more laid-back friendly attitude will be more amenable to your companions, and hopefully give me more information to help solve this mystery.<</say>>
<<say "mc">>Oh, right, sure.<</say>>
<<say "kp">>Please do join me in the gym or pool later, and that sentiment extends to you too. I don't need to see much more, so perhaps you'd like to meet my in my room after, where we will discuss your results.<</say>>
<<say "mc">>Wow, that quick?<</say>>
<</block>>
<<say "kp">>Indeed. Meet me later and we can talk. <<if $kp.events.peeped != undefined>>Perhaps you could knock this time?<</if>><</say>>
<<say "mc">>Understood.<</say>>
<<think "mc">>Didn't call me boy even once this time; has this mystery softened her opinion of me?<</think>>
<<button "Continue" gatewaya>>
<<event "mc" "metinspector" 2>>
<<taskdone "inspectgateway">>
<<taskdone "inspectobserve">>
<<time 2>>
<</button>>
<<case "gym">>
<<set $girlshere.delete('kp')>>
<<if $kp.events.aubreegym != undefined>>
<<set $girlshere.delete('aubree')>>
<</if>>
<<if $girlshere.length > 0>>
<<set _w = either($girlshere)>>
<<set _n = State.variables[_w]>>
<<narrate>>She lifts some weights tentatively, then pears over at _n.name.<</narrate>>
<<switch _w>>
<<case "aubree">>
<<block "kp/gym04.jpg">>
<<say "kp">>Nothing like working up a sweat, huh?<</say>>
<<say "aubree">>Yeah, I guess.<</say>>
<<say "kp">>Mind if I join you?<</say>>
<<say "aubree">>If you want.<</say>>
<<think "mc">>Wow, so welcoming!<</think>>
<</block>>
<<center "aubree/kpworkout01.jpg">>
<<think "mc">>Shit, look at that ass.<</think>>
<<narrate>>$kp.name notices your gaze and grins to herself.<</narrate>>
<<say "kp">>So, $aubree.name, what can you tell me about the $name? Quite the handsome chap, isn't he?<</say>>
<<think "mc">>What's she doing?<</think>>
<<say "aubree">>Yeah, he's pretty fit.<</say>>
<<say "kp">>Like to get your hands on him?<</say>>
<<say "aubree">>I want to feel his hard cock thrust deep inside me.<</say>>
<<think "mc">>Where the fuck did that come from?!<</think>>
<<say "kp">>Haha! You're an honest one, what about his ability to lead?<</say>>
<<say "aubree">>As much as I hate to admit it, he's damn good at that too. Everyone here follows him without question, he keeps morale high, and people genuinely seem to enjoy working for him. It's like his superpower or something.<</say>>
<<say "kp">>Great, thanks $aubree.name.<</say>>
<<block "kp/gym05.jpg">>
<<narrate>>You watch the two of them workout before pulling $kp.name to one side.<</narrate>>
<<say "mc">>What was that with $aubree.name?<</say>>
<<say "kp">>One of my many talents is the ability to draw the truth out of people. It's easier on some than it is others, but it's especially easy to use when the other person feels relaxed. She won't have even realized quite what she said. Did you really think people were just opening up to me so freely?<</say>>
<<say "mc">>I guess that makes sense, I just didn't expect such crass words from my $aubree.them, especially to a relative stranger.<</say>>
<<narrate>>She shrugs as if she doesn't care.<</narrate>>
<<say "kp">>There are a couple of your companions that aren't susceptible to my ability, but that's within normal tolerances.<</say>>
<<set $girlshere.pushUnique('kp')>>
<<set $girlshere.pushUnique('aubree')>>
<<button "Continue" housestuff>>
<<corrupt "aubree" 3>>
<<lust "aubree" 3>>
<<event "kp" "aubreegym">>
<<time 1>>
<</button>>
<</block>>
<</switch>>
<<elseif $kp.events.mcgym != undefined>>
<<block "kp/$location01.jpg">>
<<say "kp">>I have nothing further to discuss with you at the moment. Meet me later this evening.<</say>>
<<button "Continue" housestuff>>
<</button>>
<</block>>
<<else>>
<<block "kp/gym05.jpg">>
<<narrate>>She glances back at you.<</narrate>>
<<say "kp">>Do you want to work out together, or you are you just going to watch?<</say>>
<<choices>>
<<link "Workout Together" kpanswers>>
<<temp "workout">>
<<set $tempvar2 = "wt">>
<</link>><br>
<<link "Nah" housestuff>>
<</link>>
<</choices>>
<</block>>
<</if>>
<<case "pool">>
<<set $girlshere.delete('kp')>>
<<if $kp.events.lacypool != undefined>>
<<set $girlshere.delete('lacy')>>
<</if>>
<<if $kp.events.brittpool != undefined>>
<<set $girlshere.delete('britt')>>
<</if>>
<<if $kp.events.armanipool != undefined>>
<<set $girlshere.delete('armani')>>
<</if>>
<<if $girlshere.length > 0>>
<<set _w = either($girlshere)>>
<<set _n = State.variables[_w]>>
<<narrate>>She casually floats around in the pool.<</narrate>>
<<switch _w>>
<<case "lacy">>
<<block "kp/$location01.jpg">>
<<say "kp">>Loving this pool. So relaxing.<</say>>
<<say "lacy">>It certainly assists with that, yes.<</say>>
<<say "kp">>Anything else you do to unwind?<</say>>
<<say "lacy">>I enjoy research, reading books, masturbation and sexual relations.<</say>>
<<think "mc">>Wow, that response seems a bit too honest and direct even for her!<</think>>
<</block>>
<<say "kp">>And what of $name?<</say>>
<<if $kp.events.lacykitchen != undefined>>
<<think "kp">>Hopefully now we're in a more relaxed environment, I can get something from her this time.<</think>>
<</if>>
<<say "lacy">>He is a good leader, trustworthy, dependable and <<if $lacy.sex > 0>>a <b>very</b> capable lover.<<else>>and I hope to engage him in coitus.<</if>><</say>>
<<say "kp">>I see, and how does he treat the travelers?<</say>>
<<say "lacy">>For the most part, I have automated the task for him. But when he welcomes them personally, he deals with them appropriate to their personality.<</say>>
<<say "kp">>You created automated tour guides, not him?<</say>>
<<say "lacy">>Of course, it's his power running through the gateway, but it was me that automated the task, yes.<</say>>
<<say "kp">>For someone other than a patron or a tour guide to utilize a gateway at that level is both amazing and scary. I'd love to speak to you more about this later.<</say>>
<<say "lacy">>I would welcome that chance, providing you are willing to share information too.<</say>>
<<say "kp">>Very well, I think I can accept those terms.<</say>>
<<think "mc">>Why do I feel I've just watched the creation of an unholy union?<</think>>
<<event "kp" "lacypool">>
<<case "britt">>
<<block "kp/$location01.jpg">>
<<say "kp">>This pool really helps unwind, doesn't it?<</say>>
<<say "britt">>Aye, it's bloody brill.<</say>>
<<say "kp">>Great minds, eh?<</say>>
<<say "britt">>F'sure.<</say>>
<<say "kp">>So, what's it like around here with $name running this place?<</say>>
<</block>>
<<say "britt">>He's a good boss. I really like working for 'im, especially on expeditions. He's not too proud or stubborn to ignore our advice, and actively tries to make us all feel special n' valued.<</say>>
<<say "kp">>Sounds good. What about the travelers?<</say>>
<<say "britt">>I can't say that's my strong suit, but 'e does well with 'em.<</say>>
<<say "kp">>Great, thanks $britt.name.<</say>>
<<event "kp" "brittpool">>
<<case "armani">>
<<block "kp/$location01.jpg">>
<<say "kp">>Wow you look amazing. You clearly look after you body.<</say>>
<<say "armani">>Thank you, I do try. You're not so bad yourself.<</say>>
<<say "kp">>Thanks. I like to maintain a good figure.<</say>>
<<say "armani">>I can tell.<</say>>
<<say "kp">>Does $name appreciate it?<</say>>
<</block>>
<<say "armani">>That oaf loves nothing more than to perv over me. He's constantly salivating over me.<</say>>
<<say "kp">>Oh that's terrible, do you ever feel in danger?<</say>>
<<say "armani">>Ha! No, it's great, and danger? Never. I wouldn't tell him any of this to his face, of course, but he's damn good leader, the others really rallied around him. We didn't really have a single leader before, we all deferred to each other based on our skill set, there were only nine of us after all.<</say>>
<<say "kp">>Oh, uh, I see.<</say>>
<<say "armani">>Don't get me wrong, he still makes use our skill sets and knowledge to make the appropriate decisions, but it's like a completely different feeling around the place now.<</say>>
<<say "kp">>Right, and the travelers?<</say>>
<<say "armani">>Besotted!<</say>>
<<say "kp">>Sorry?<</say>>
<<say "armani">>The ones he deals with directly just love him. It's crazy.<</say>>
<<say "kp">>Right, I see. Thanks $armani.name.<</say>>
<<narrate>>You motion over to $kp.name.<</narrate>>
<<block "kp/pool02.jpg">>
<<say "mc">>What was that?<</say>>
<<say "kp">>What do you mean?<</say>>
<<say "mc">>She was such an open book with you, she's not usually so complimentary to me.<</say>>
<<if $kp.events.aubreegym != undefined>>
<<say "kp">>Like I mentioned at the gym, my abilities allow me to extract the truth from people rather easily. She was especially susceptible.<</say>>
<<else>>
<<say "kp">>One of my many talents is the ability to draw the truth out of people. It's easier on some than it is others, but it's especially easy to use when the other person feels relaxed. She won't have even realized quite what she said. Did you really think people were just opening up to me so freely?<</say>>
<<say "mc">>I guess that makes sense, I just didn't expect such openly kind words from my her, especially to a relative stranger.<</say>>
<<narrate>>She shrugs as if she doesn't care.<</narrate>>
<<say "kp">>There's a couple of your companions that aren't susceptible to my ability, but that's within normal tolerances.<</say>>
<</if>>
<</block>>
<<event "kp" "armanipool">>
<</switch>>
<<set $girlshere.pushUnique('kp')>>
<<set $girlshere.pushUnique('lacy')>>
<<set $girlshere.pushUnique('britt')>>
<<set $girlshere.pushUnique('armani')>>
<<button "Continue" housestuff>>
<<time 1>>
<</button>>
<<elseif $kp.events.mcswim != undefined>>
<<block "kp/$location01.jpg">>
<<say "kp">>I have nothing further to discuss with you at the moment. Meet me later this evening.<</say>>
<<button "Continue" housestuff>>
<</button>>
<</block>>
<<else>>
<<block "kp/$location01.jpg">>
<<narrate>>She glances back at you.<</narrate>>
<<say "kp">>How about we take a dip together?<</say>>
<<choices>>
<<link "Relax in the Pool Together" kpanswers>>
<<temp "swim">>
<<set $tempvar2 = "wt">>
<</link>><br>
<<link "Nah" housestuff>>
<</link>>
<</choices>>
<</block>>
<</if>>
<</switch>><<set $scene = 0>>
<<if $location.toLowerCase() == "home">>
<<set $worklocation = false>>
<</if>>
<<if $tasks.gembar != undefined>>
<<think mc>>I should leave her be until we talk later.<</think>>
<<button "Continue" housestuff>>
<</button>>
<<elseif $kenna.events.krissy == 2>>
<<scene>>
<<narrate>>You knock on her door.<</narrate>>
<<say krissy>>Who is it?<</say>>
<<say mc>>$name. Can we talk?<</say>>
<<narrate>>There's a moment of silence before she responds.<</narrate>>
<<say krissy>>Yeah... okay.<</say>>
<<if $hour < 20>>
<<say mc>>Great, I'll meet you in the bar at 20:00 then.<</say>>
<<say krissy>>The bar? Right... okay... sure...<</say>>
<<button "Continue" housestuff>>
<<task "gembar">>
<</button>>
<<else>>
<<say mc>>Great, let's head to the bar together then.<</say>>
<<say krissy>>The bar?<</say>>
<<say mc>>Yeah. I figured it might be better than discussing it in here...<</say>>
<<say krissy>>Right... give me a few minutes first.<</say>>
<<button "Continue" krissyanswers>>
<<temp "gembar">>
<</button>>
<</if>>
<<elseif $krissy.relief == 5 && $krissy.tabooalt == undefined && $krissy.events.sdream == undefined>>
<<say krissy>>I'm busy.<</say>>
<<think mc>>I think she's avoiding me for now...<</think>>
<<cont "housestuff">>
<<elseif $krissy.relief == 3 && checkUnlocks('movie', 'peep02', 'krissy') == false && $location == "bedrooms">>
<<narrate>>As you go to knock on her door, you hear the distinct buzzing sound you've become accustomed to living in a hotel full of women.<</narrate>>
<<think mc>>Well, she didn't say she wasn't getting enough action...<</think>>
<<narrate>>The buzzing stops for a moment, so you carefully push the door open and gaze through the crack to see if you've missed the show.<</narrate>>
<<cont "krissysex" "peep201">>
<<elseif $krissy.events.welcome == undefined>>
<<set _uc = $krissy.refer.toUpperFirst()>>
<<say "mc">>_uc, I am so relieved to see you!<</say>>
<<block "krissy/office01.jpg">>
<<narrate>>She spins around and gives you a cold stare over her shoulder.<</narrate>>
<<say "krissy">>Don't give me that crap. First thing I see on entering the building? You in the middle of a damn orgy!<</say>>
<<say "mc">>It wasn't an—<</say>>
<<say "krissy">>I know. I know. $lexi.name explained. To think, my $krissy.you is a patron. Wow.<</say>>
<<say "mc">>I really have missed you, $krissy.refer. I've thought about you so much. I know it wasn't the ideal reunion but the limit break side effects are quite powerful.<</say>>
<<think "mc">>I'd best not reveal exactly what thoughts I've been having.<</think>>
<</block>>
<<narrate>>She sighs.<</narrate>>
<<say "krissy">>I know. I understand, for me it was a few minutes between you going to the toilet and appearing in this world. For you it's been weeks, maybe even months since you last saw me. Besides, this is your home, it's not for me to tell you what you can and can't do here. It was just... a shock.<</say>>
<<narrate>>You reach out and hug her.<</narrate>>
<<say "mc">>I've missed you so much!<</say>>
<<narrate>>She hugs you back, the feeling of her breasts squeezing against you immediately filling your head with salacious thoughts, giving you a boner.<</narrate>>
<<think "mc">>Oh, god. Please don't notice.<</think>>
<<think "krissy">>Is that his dick brushing against my thigh? For crying out loud! Just grin and bear it for now $krissy.name. He's still your $krissy.you. It doesn't mean anything; it's just the side effects of the limit break. Wow, it's pretty big, though.<</think>>
<<narrate>>She shakes her head as if casting out a bad thought, grabs your shoulders and steps back.<</narrate>>
<<button "Continue" krissyanswers>>
<<corrupt "krissy" 2>>
<<temp "welcome">>
<</button>>
<<elseif $location != $currentlocations.krissy && $location != "firstIntros" && $replay == false>>
<<say "krissy">>Sorry, $krissy.calls, I can't stay and chat. Let's talk later.<</say>>
<<follow krissy>>
<<button "Continue" $return>>
<</button>>
<<elseif ($location == "home" || $location == "office" || $location == "study") && $gsec.events.kyler == 1 && ($krissy.events.hotel == undefined || $krissy.events.hotel == 3)>>
<<scene>>
<<narrate>>As you enter, you hear Howard's voice.<</narrate>>
<<say "howard">>So she'd really love to do a show with you.<</say>>
<<think "mc">>Must be talking about that performance offer from one of his friends. I didn't really give it much thought before, but am I really okay with my $krissy.them working at $stripname like this?<</think>>
<<narrate>>As you're lost in thought, the conversation between the two continues. You snap out of it when you hear Howard's words.<</narrate>>
<<say "howard">>You know I always had a thing for blondes, $krissy.name.<</say>>
<<say "krissy">>And just a thing for me in general, I seem to recall.<</say>>
<<think "mc">>Fuck, I can see where this is going. What should I do?<</think>>
<<brothel "krissy">>
<<event "gsec" "kyler" 2>>
<div id="replace">
<<choices>>
<<link "Stop it">>
<<replace "#replace">>
<<think "mc">>I don't have to make it obvious, just head in like I'm wanting to discuss things normally and hope they're still dressed!<</think>>
<<narrate>>You take a deep breath, then walk into the room. Both of them regard you with a look of annoyance, but otherwise say nothing.<</narrate>>
<<say "mc">>Howard, good to see you.<</say>>
<<narrate>>$krissy.name rolls her eyes.<</narrate>>
<<think "mc">>Phew, looks like I made it in time.<</think>>
<<narrate>>You make small talk for a little while, then Howard makes his excuses and leaves. After he's gone, $krissy.name turns to face you.<</narrate>>
<<set _uc = $krissy.calls.toUpperFirst()>>
<<say "krissy">>_uc, I think I've sat here on my laurels long enough. I'd like to get out there and help you by working.<</say>>
<<say "mc">>Anything you had in mind?<</say>>
<<say "krissy">>Seems a little awkward given what happens there, but we're both adults. I have some experience working at places like $stripname.<</say>>
<<say "mc">>You want to be a performer?!<</say>>
<<narrate>>You feign surprise.<</narrate>>
<<say "krissy">>Whoa, whoa. No.<</say>>
<<think "krissy">>Yes.<</think>>
<<say "krissy">>I just think if I work there I can help guide the others.<</say>>
<<think "mc">>It must be because of Howard's friend. I know she's saying otherwise, but it seems obvious she wants to perform with her at least.<</think>>
<<say "krissy">>You okay, $krissy.calls?<</say>>
<<say "mc">>Sorry, yes, just trying to work out what title to give you.<</say>>
<<think "mc">>I can probably influence the management of $stripname to convince her to perform while she's working there, should I chose to...<</think>>
<<notice>>
$krissy.name can now work at $stripname.<br>
She will not perform with you or anyone else at this stage.<br>Visit $stripname while she's working if you'd like to influence that.
<</notice>>
<<button "Continue" townhub>>
<<lust "krissy" 3>>
<<corrupt "krissy" 5>>
<<like "krissy" 7>>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<link "Leave them to it">>
<<replace "#replace">>
<<think "mc">>I don't want to know about it, but I'm not gonna deny $krissy.refer her fun, even if that makes me uncomfortable. I'll ask Dave to talk to her about using her experience to help the workers at $stripname. I'll worry about whether I'm okay with her performing there or not at a later stage.<</think>>
<<notice>>
$krissy.name can now work at $stripname.<br>
She will not perform with you or anyone else at this stage.<br>Visit $stripname while she's working if you'd like to influence that.
<</notice>>
<<button "Continue" townhub>>
<<lust "krissy" 3>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<<if $krissy.events.relationship == undefined || $krissy.events.relationship != "friends">>
<br>
<<link "Watch them" eastsex>>
<<set $tempvar2 = "ne">>
<<temp "krissyhoward">>
<</link>>
<</if>>
<</choices>>
</div>
<<else>>
<<set _img = getImg('krissy')>>
<<left2 _img>>
<<if $tempvar == "badflirt">>
<<narrate>>You start making an innuendo when she interrupts you.<</narrate>>
<<set _uc = $krissy.calls.toUpperFirst()>>
<<say "krissy">>_uc. Let me stop you there. I don't think that's an appropriate discussion topic with your $krissy.them.<</say>>
<<think "mc">>She probably needs a bit more convincing before she responds differently.<</think>>
<<temp "">>
<<like "krissy" -1>>
<<elseif $tempvar == "zoeflirt">>
<<narrate>>She laughs and caresses your thigh as use cheesy pick up lines on her.<</narrate>>
<<say krissy>>You know I was talking to $britt.name recently.<</say>>
<<say mc>>Right...?<</say>>
<<say krissy>>And she likes to watch.<</say>>
<<narrate>>She grins at you.<</narrate>>
<<say krissy>>Just something to think about...<</say>>
<<think mc>>I think I know exactly what she's getting at... I'd better just double check with $britt.name first.<</think>>
<<event britt krissy>>
<<elseif $tempvar == "semibadflirt">>
<<set _uc = $krissy.calls.toUpperFirst()>>
<<say "krissy">>_uc, while I appreciate you're just trying to make me feel more comfortable here, I'm not sure this level of... familiarity is appropriate.<</say>>
<<narrate>>Despite her words, you can't help but notice she's trying to hide a smile and her cheeks are a little flush.<</narrate>>
<<say "mc">>Sorry, $krissy.refer. Just want you to know how amazing you are!<</say>>
<<temp "">>
<<else>>
<<if $hour < 12>>
<<set _gm = "Good morning">>
<<elseif $hour < 17>>
<<set _gm = "Good afternoon">>
<<else>>
<<set _gm = "Good evening">>
<</if>>
<<if $krissy.sex != undefined && $krissy.sex != 0>>
<<say krissy>>There's my sexy little toyboy!<</say>>
<<if $krissy.events.sdream == 4>>
<<event krissy sdream 4.1>>
<<think mc>>Okay, now that's a turnaround!<</think>>
<<say mc>>You seem chipper.<</say>>
<<say krissy>>Of course, $krissy.calls. Loving life because I'm loving you! I just feel... amazing.<</say>>
<<think mc>>She's riding high right now, but I guess at some point she'll start fretting, even if just a little, over $kenna.name again.<</think>>
<</if>>
<<else>>
<<say "krissy">>_gm, $krissy.calls. Everything okay?<</say>>
<</if>>
<<say "mc">>Hey, $krissy.refer.<</say>>
<<say "krissy">>Want to chat?<</say>>
<<if $krissy.events.hair == undefined>>
<<say "mc">>I don't know if I'm going mad, but I could have sworn your hair was different earlier.<</say>>
<<say "krissy">>Gift of the gateway. From you presumably, even if you hadn't realized. I've always enjoyed playing with my hair, lots of different colors and styles, but it's a bit of a pain to maintain. Much like $monique.name, the Gateway provided me this special cosmetic ability.<</say>>
<<say "mc">>Awesome! But why don't more travelers have such unique abilities?<</say>>
<<say "krissy">>Most patrons only provide to their champions or tour guides. And they generally get a lot more than just cosmetic abilities. Remember, what you're doing here is quite a rarity, most patrons don't really bother; you're lucky to have a toilet during your wait.<</say>>
<<event "krissy" "hair">>
<</if>>
<</if>>
<<choices "What do you want to discuss?" "topics">><</choices>>
<</if>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("krissydiscussions").processText());
})
<</script>><<set _img = getImg('krissy')>>
<<scene>>
<<switch $tempvar>>
<<case "founderplan">>
<<left2 _img>>
<<say krissy>>What's wrong, $krissy.calls? You look confused.<</say>>
<<say mc>>I am, a little. $kenna.name wanted me to speak to you. Let you know what we're planning...<</say>>
<<say krissy>>Okay, what do you need me to do?<</say>>
<<say mc>>Nothing, we've got it all planned out. We've deceived the council, and I had to hide it from $kenna.name originally too, but we're going to help $founder.name take down $kenzie.name.<</say>>
<<say krissy>>You hid it from $kenna.name? Why? Surely she could have helped plan it.<</say>>
<<say mc>>For her safety.<</say>>
<<say krissy>>How would it make her safer? I think she can hold her own.<</say>>
<<say mc>>Well, that is... uhh... the council had to be deceived, they needed to believe I was on their side.<</say>>
<<say krissy>>You're not making sense, $krissy.calls. Did you not trust her? Did you think that after everything she's done for you, all the drama and hatred she and I faced, that she'd sell you out to the council?<</say>>
<<say mc>>What... no. Of course not. It was just for her safety.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say krissy>>You're a stuck record. Start from the beginning, tell me the plan, what you've done and how it came about.<</say>>
<<narrate>>You go on to recount the tale from memory, explaining as much as you can.<</narrate>>
<<say krissy>>Let's go back a little. You decided to tell $kenzie.name basically everything $founder.name had told you, which was all truthful information, but not once did anything to deceive them? Likewise, you openly told them $kenna.name was complicit and did all you could to spare her?<</say>>
<<say mc>>Yes, above all else, the lives of her, you, and all my companions are my priority.<</say>>
<<say krissy>>So, you don't see the irony? Why would you reveal that to $kenzie.name if you had planned to side with $founder.name all along?<</say>>
<<say mc>>For her safety.<</say>>
<<say krissy>>Elaborate.<</say>>
<<say mc>>Well, if the council knew she was working with $founder.name she would be—<</say>>
<<say krissy>>But you'd already revealed she'd been working with $founder.name at this stage.<</say>>
<<say mc>>Yeah, but... uhh... if they knew she and I were working together.<</say>>
<<say krissy>>Of course, but if you wanted to protect her while working with $founder.name what benefit was there to telling her about $kenna.name?<</say>>
<<think mc>>This is confusing me... I get the logic, but it was all for $kenna.refer's safety!<</think>>
<<say mc>>For her safety.<</say>>
<<narrate>>She sighs, and places her fingers on the bridge of her nose.<</narrate>>
<<say krissy>>What is $founder.name's power, $krissy.calls?<</say>>
<<say mc>>Manipulation. She can twist people's will.<</say>>
<<say krissy>>Do you think perhaps that has happened to you?<</say>>
<<narrate>>You stare blankly at her for a moment, perplexed.<</narrate>>
<<say mc>>I... how would I know?<</say>>
<<say krissy>>You'd be stuck spouting the same nonsense without being able to apply any logic to it.<</say>>
<<say mc>>Shit... shit... what do I do? What if there's something else? How do I know what's real and what isn't?<</say>>
<<say krissy>>Focus your power, $krissy.calls. Take your mind into the gateway. Focus on what matters to you, and channel all your power into the memory of your last meeting with $founder.name.<</say>>
<<narrate>>You focus, thinking back to your meeting with $founder.name. After a moment, there's a metaphorical smashing of glass and your true thoughts come running back through.<</narrate>>
<<say mc>>Holy shit... how did she... how do I stop it happening again?<</say>>
<<say krissy>>Ideally you stay away from her, but I realize with everything going on, that's unlikely. Now you've recognized it in yourself, it should be easier to resist in the future. You need her gone. She's too dangerous to have here, even if you're able to resist her, who's to say she doesn't use that power on someone else? What if she has poor $adria.name come to your room at night and drive a stake through your heart?!<</say>>
<<say mc>>I'm not a vampire!<</say>>
<<say krissy>>Very funny. But this isn't a humorous situation. You need to take this seriously.<</say>>
<<say mc>>I know, $krissy.refer, I know. I'll be vigilant.<</say>>
<<say krissy>>I'll check in with you regularly. Please, just get her out of here!<</say>>
<<button "Continue" $return>>
<<event "founder" "planresist" "broken">>
<<taskdone "mommabear">>
<<time 1.5>>
<</button>>
<<case "kmiss">>
<<left2 _img>>
<<say mc>>Have you seen $kenna.name recently, $krissy.refer?<</say>>
<<say krissy>>No... is everything okay?<</say>>
<<say mc>>When I told her we couldn't be together... she zooped away, angry, and I can't find her!<</say>>
<<say krissy>>She probably just needs time to cool down. Maybe she went to Central?<</say>>
<<say mc>>Maybe... I'll check with $kp.name.<</say>>
<<button "Continue" krissy>>
<<event krissy kennaseek>>
<<time 0.5>>
<</button>>
<<case "angered">>
<<narrate>>$krissy.name comes bounding toward you, her face a picture of anger as she's shouting obscenities at you.<</narrate>>
<<left2 "mc/limit2/krissy01.jpg">>
<<say krissy>>How dare you fucking do this to me! Humiliating me like that. I told you not to, and then you go and fucking do it in front of everyone?! Letting the entire world know you're fucking my daughter and that you defied me?!<</say>>
<<say mc>> And I told <b>you</b>. You do not control our lives. It's not for you to say who I can and can't sleep with.<</say>>
<<say krissy>>I told you I'd stop her. And I will. She will not take you away from this place. She will not banish. I will not lose my family just because she can't keep her fucking slutty claws to herself.<</say>>
<<say mc>>Whoa, whoa, whoa. What the fuck? Why do you seem so fixated on the idea she'd take me away... and now also losing your family?<</say>>
<<say krissy>>No. It's too late for talk. She's fucking started a war, and I won't back down. She crossed a line, and I'll do whatever it takes to keep my family together, even if that means I have to lose her.<</say>>
<<narrate>>She turns on her heel and strides off.<</narrate>>
<<think mc>>Shit... what the fuck is she going to do?<</think>>
<<if $krissy.events.kenna == "lied">>
<<button "Continue" mngbrothel>>
<<event "krissy" "kenna" "taboo">>
<<event krissy kennalied>>
<<unavailable "krissy">>
<<event krissy anger>>
<<set $scene = 0>>
<<like krissy -20>>
<<time 1.5>>
<</button>>
<<else>>
<center>
<<button "Close">>
<<unavailable "krissy">>
<<event krissy anger>>
<<set $scene = 0>>
<<script>>
Engine.play(State.active.title, true);
closeDialog()
<</script>>
<</button>>
</center>
<</if>>
<<case "bartalk">>
<<narrate>>You hear a knock at the door.<</narrate>>
<<say krissy>>I'm coming in.<</say>>
<<narrate>>Somehow she looks nervous, inquisitive, and annoyed all at once.<</narrate>>
<<left2 "krissy/kenna01.jpg">>
<<say krissy>>Did you come into my dream last night?<</say>>
<<say mc>>Yeah...<</say>>
<<say krissy>>Do you remember what I said, and what you said?<</say>>
<<say mc>>Of course. And I meant every word.<</say>>
<<say krissy>><<if $krissy.events.ally == "lexi">>My sister<<else>><<who "ds">><</if>> was trying to get me to talk to you... to open up... though I don't think they realized what you have in mind.<</say>>
<<narrate>>She averts her gaze.<</narrate>>
<<say krissy>>We can't do that, though!<</say>>
<<say mc>>Why not? We're not on Earth now... and you said you wanted to.<</say>>
<<narrate>>She throws her hands up in the air.<</narrate>>
<<say krissy>>No, no, no, no!<</say>>
<<narrate>>She turns to leave.<</narrate>>
<<say mc>>Wait, at least let's talk about this. You owe me that at least. This is not going anywhere now it's in the open. <</say>>
<<say krissy>>I just can't deal with this right now.<</say>>
<<say mc>>I'm not taking no for an answer. Let's discuss tonight, okay?<</say>>
<<say krissy>>Fine. I'm going to go chat with my <<if $girlsavailable.includes('sophia')>>wife<<else>>husband<</if>> about it in the meantime, because things are getting out of hand!<</say>>
<<think mc>>Pretty sure that'll work in my favor...<</think>>
<<say mc>>I'll meet you in the bar at 20:00.<</say>>
<<say krissy "" "(Sarcastically)">>Great. I'm looking forward to it.<</say>>
<<think mc>>Despite her sarcasm, I figure a public place means she's less likely to make a scene.<</think>>
<<button "Continue" homehub>>
<<set $krissy.relief = 4.4>>
<<event kenna krissy 2>>
<<task "gembar">>
<</button>>
<<case "wtf">>
<<narrate>>As you head back into the changing room, $krissy.name is stood, arms-folded, glaring angrily at you.<</narrate>>
<<say krissy>>What the fuck was that?!<</say>>
<<think mc>>Yeah... I guessed this'd happen.<</think>>
<<say mc>>A performance for the club. I thought you might like to see me in action.<</say>>
<<left2 "krissy/wtf.jpg">>
<<say krissy>>You know what I mean! I can't believe you did that to me. I can't believe you humiliated me like that, fucking her right up there in front of everyone. And you asked me to come watch, like some sick declaration of war.<</say>>
<<say mc>>Stop. Please. Just let's talk this out.<</say>>
<<say krissy>>Talk this out? Why, so you can backstab me again?!<</say>>
<<say mc>>No. Let's not forget I made it clear I wouldn't let you dictate my sleeping partners long ago. But that aside, let's just try and get to the bottom of all this once and for all.<</say>>
<<narrate>>She begrudgingly sits down.<</narrate>>
<<say mc>>Did you know it was $kenna.refer?<</say>>
<<say krissy>>Not until you were cumming on her face, calling her out. I don't know how I didn't notice before, maybe it was because it was so dark... but it doesn't matter regardless I—<</say>>
<<say mc>>Okay, okay. And before you realized it was her, and be honest, were you enjoying the show?<</say>>
<<say krissy>>Of course, but that's not relevant!<</say>>
<<say mc>>I think it is. So actually, you're quite happy to watch me fuck others, then?<</say>>
<<say krissy>>Well, when it's by choice, sure, but not when I turn a corner, and you have your cock down some girl's throat... but again, it's not about that, it's about $kenna.name!<</say>>
<<say mc>>Why? What's the difference, you've probably watched things far more depraved on various worlds during your travels, right? Based on your drunken antics, I'm also pretty sure you have no problem even partaking. So why do you care so much with $kenna.name?<</say>>
<<say krissy>>Because she told me she'd steal you away! I lost her once through this, just so I wouldn't lose you both. And now... now it feels like I'm going to lose you both anyway.<</say>>
<<say mc>>That's the bit that makes no sense to me. Why would you lose us?<</say>>
<<cont "krissyanswers" "wtf2">>
<<case "wtf2">>
<<left2 "krissy/wtf02.jpg">>
<<krissydefeat>>
<<say krissy>>I am still angry at how you forced me into this... but even I see if I try to keep you apart, it'll cause my fears to become reality. It's clear you don't need my blessing.<</say>>
<<say mc>>But, I want it. You mean the world to me, $krissy.refer, and I have not enjoyed this animosity between the three of us.<</say>>
<<say krissy>>Very well... it's hard for me to admit when I'm defeated, but please, please, honor your promise today.<</say>>
<<say mc>>I will.<</say>>
<<think mc>>Though I still need to fuck her too...<</think>>
<<say krissy>>We'll talk later.<</say>>
<<say mc>>Wait. Before you, go; there's still the matter of you and I.<</say>>
<<say krissy>>Can we discuss another time? I'm not really in the mood right now. I'm happy to hear that wasn't just a way to butter me up, but... I just need more time. As much as I've backed down, it's not that easy for me to just let go.<</say>>
<<say mc>>I get it...<</say>>
<<if $completeTasks.includes('shareddreams2')>>
<<think mc>>Maybe she'd be more at ease in the dreamworld...<</think>>
<</if>>
<<dreamer "krissy">>
<<button "Continue" mngbrothel>>
<<event kenna krissy 6>>
<<corrupt krissy 11>>
<<lust krissy 3>>
<<event krissy kennapform>>
<<set $tempvar3 = "">>
<<time 2>>
<</button>>
<<case "hwife">>
<<left2 _img>>
<<event "krissy" "anger" 99>>
<<say mc>>I'm glad you seem so much happier, $krissy.refer.<</say>>
<<say krissy>>I just needed some special loving from my special $krissy.you.<</say>>
<<say mc>>Haha... yeah...<</say>>
<<say krissy>>I just want to shout it out to the world! But, don't worry, I won't.<</say>>
<<say mc>>I wouldn't mind. Nothing to be ashamed of.<</say>>
<<think krissy>>If that's the case, maybe <<if $girlsavailable.includes('sophia')>>$sophia.name<<else>>$derek.name<</if>> would like to watch us?<</think>>
<<narrate>>You see the grin on her face grow.<</narrate>>
<<say mc>>What are you thinking about?<</say>>
<<if $krissy.events.kennapform == 1>>
<<say krissy>>Something for another time... so you really wouldn't care if anyone knew? Even $anna.name?<</say>>
<<if $anna.corruptmax > 100>>
<<say mc>>I daresay she'd find it hot. She's a bit like you; likes to be watched.<</say>>
<<say krissy>>Mother like daughter I guess... wait... how... it's not just $kenna.name is it?<</say>>
<<narrate>>You shake your head.<</narrate>>
<<say krissy>>I guess that may explain why none of them wanted to come live with me when I arrived here...<</say>>
<<else>>
<<say mc>>Not at all. $anna.refer, $lexi.refer... whoever you want to tell. We've got nothing to hide.<</say>>
<</if>>
<<narrate>>She gives you a sweet smile.<</narrate>>
<<say krissy>>You really have grown accustomed to this place, haven't you?<</say>>
<<button "Continue" $return>>
<<like krissy 4>>
<<lust krissy 4>>
<<corrupt krissy 10>>
<<event "krissy" "kenna" "taboo">>
<<time 1>>
<</button>>
<<else>>
<<say krissy>>Something for another time... listen. Fun aside, we do need to speak about $kenna.name.<</say>>
<<say mc>>I thought we came to an understanding.<</say>>
<<say krissy>>We did. Providing you keep your promise, I won't stand in your way. I just want to be sure, is this what you want? I'm sure <<if $girlsavailable.includes('sophia')>>$sophia.name<<else>>$derek.name<</if>> will be fine with it, but I'm not sure about <<if $girlsavailable.includes('theodora')>>$theodora.name<<else>>$charlie.name<</if>> or $anna.name. Either way, I will support you.<</say>>
<<think mc>>Given the whirlwind of everything, I was so upset by her demands and rules, I never actually stopped to think about it. Do I actually want to sleep with $kenna.name?<</think>>
<div id="replace">
<<choices>>
<<link "Yes">>
<<replace "#replace">>
<<say mc>>It is. She's my next stop after checking in with you.<</say>>
<<say krissy>>Alright. Then... enjoy. That feels kinda wrong... but also kinda naughty. I'm effectively telling you, my $krissy.you, to go fuck my daughter!<</say>>
<<say mc>>Come watch if you like.<</say>>
<<narrate>>She pauses, looking at you blankly as she contemplates it.<</narrate>>
<<say krissy>>No... not just yet, I don't think I'm quite ready for that.<</say>>
<<say mc>>Okay, understood... but if she wanted to watch us...?<</say>>
<<narrate>>She inflates her cheeks and blows the air out slowly.<</narrate>>
<<say krissy>>Let's cross that bridge when we get to it, okay, $krissy.calls?<</say>>
<<button "Continue" $return>>
<<like krissy 3>>
<<lust krissy 3>>
<<corrupt krissy 5>>
<<event "krissy" "kenna" "taboo">>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<say mc>>You know I don't think it is. I got that swept up in everything, I think I just wanted to revolt against your silly rules.<</say>>
<<say krissy>>Oh, $krissy.calls... I'm so sorry if my interference warped your feelings. She's... she's going to be devastated.<</say>>
<<say mc>>Yeah... fuck... I kept telling her this is what I wanted... I've built up her hopes and promised her things all just to defy you.<</say>>
<<say krissy>>Do you want me to be there when you tell her, $krissy.calls?<</say>>
<<say mc>>No... I think that'll make things worse.<</say>>
<<narrate>>She pulls you in for a hug.<</narrate>>
<<say krissy>>Just... make sure she knows I'm here for her. She's my daughter after all.<</say>>
<<think mc>>Fuck... I am a terrible person.<</think>>
<<button "Continue" $return>>
<<corrupt krissy 4>>
<<event "krissy" "kenna" "friends">>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<</if>>
<<case "interdream">>
<<left2 _img>>
<<say mc>>What happened in that dream?<</say>>
<<narrate>>She looks far away for a moment, as if contemplating the very existence of the universe.<</narrate>>
<<say mc>><<uf $krissy.refer>>?<</say>>
<<say krissy>>I can't stop you, can I?<</say>>
<<say mc>>What do you mean? I wouldn't force myself on you!<</say>>
<<say krissy>>No... not that. Everything felt so real... the words, the feelings, your breath on my neck... all my senses told me it was real.<</say>>
<<say mc>>Everything that you feel, both physically and mentally, is real. The setting might be fantastical, unreal, or maybe even just something bland, but what we experience there is real.<</say>>
<<say krissy>>And that's what made me realize...<</say>>
<<narrate>>She sighs.<</narrate>>
<<say krissy>>Can we talk about this privately?<</say>>
<<if $girlshere.length == 1>>
<<say mc>>It's just us here.<</say>>
<<else>>
<<say mc>>Nobody else is paying any attention.<</say>>
<</if>>
<<say krissy>>I'd just feel... more comfortable in the dreamscape.<</say>>
<<say mc>>Okay, but ideally, I don't have to fall asleep every time there's something you want to discuss.<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say krissy>>No... just give me this one time.<</say>>
<<button "Continue" househub>>
<<event krissy sdream 3>>
<<like "krissy" 5>>
<<dreamer "krissy">>
<<time 1>>
<</button>>
<<case "interdream2">>
<<left2 "krissy/dream02.jpg">>
<<krissydefeat>>
<<say krissy>>I think you've made it abundantly clear that you don't need my blessing.<</say>>
<<say mc>>But I want it.<</say>>
<<say krissy>>Very well... it's hard for me to admit when I'm defeated, but please, please, honor your promise today.<</say>>
<<say mc>>I will.<</say>>
<<say krissy>>Good, but there's still a small victory I can attain, as petty as it sounds.<</say>>
<<say mc>>Oh?<</say>>
<<narrate>>The background fades, her hair grows longer and her clothes morph.<</narrate>>
<<cont "krissysex" "sdream00">>
<<case "shareddream">>
<<narrate>>$krissy.name approaches as you leave your room.<</narrate>>
<<left2 "krissy/ava01.png">>
<<say krissy>>$voice.name's aspect is dream-related, right?<</say>>
<<say mc>>Yeah...<</say>>
<<say krissy>>Did you have her use her power on me last night?<</say>>
<<say mc>>What? No!<</say>>
<<say krissy>>I had a dream... it was so real... I was in something like a cage while you were lusting over me.... and well, given recent events you'll forgive me if I'm not a little wary.<</say>>
<<if $completeTasks.includes('shareddreams')>>
<<say mc>>I had the same dream... $voice.name thinks I might have a second aspect. But I swear it wasn't on purpose, she's gonna show me how to control it.<</say>>
<<elseif $tasks.shareddreams != undefined>>
<<say mc>>Another shared dream? I really need to check on this with $voice.name.<</say>>
<<else>>
<<say mc>>I think we had the same dream... but it wasn't anything to do with me. I'll go talk to $voice.name.<</say>>
<<task "shareddreams">>
<</if>>
<<narrate>>She gives you a look of skepticism.<</narrate>>
<<say krissy>>Just... be careful, okay?<</say>>
<<button "Continue" househub>>
<<event krissy sdream 1>>
<<time 0.5>>
<<set $tempvar3 = "">>
<</button>>
<<case "drunkennight">>
<<narrate>>You hear $krissy.name groaning as she wakes.<</narrate>>
<<say mc>>Heavy night?<</say>>
<<say krissy>>Why...<</say>><<narrate>>She holds her head and groans.<</narrate>><<say krissy>>...am I here?<</say>>
<<say mc>>You barged in my room, demanding I fuck you, and wouldn't leave.<</say>>
<<narrate>>You see the panic in her eyes.<</narrate>>
<<say mc>>We didn't, don't worry. As much I want to, not while you're in that state.<</say>>
<<say krissy>>I...<</say>>
<<say mc>>You need some water. But it's clear that you need a good fuck too.<</say>>
<<narrate>>She groans again.<</narrate>>
<<think mc>>She likes to watch... and also to be watched, that's what <<if $krissy.tabooalt == undefined>>$kenna.name said<<else>>I was told<</if>>...<</think>>
<<say mc>>Sober up for now. But maybe later you should come watch me perform.<</say>>
<<narrate>>She flaps her hand vaguely in your direction, then shuffles out of your room.<</narrate>>
<<think mc>>I wonder if she'll actually come... either way, I'm pretty sure she won't be in a fit state until this afternoon.<</think>>
<<if $krissy.tabooalt == undefined && $girlsavailable.includes('kenna') && $kenna.events.upset == undefined>>
<<narrate>>As you're heading out the door, $kenna.name calls over to you.<</narrate>>
<<left2 "kenna/hall01.jpg">>
<<say kenna>>Drunken mom is the worst! You survive?<</say>>
<<say mc>>Ha, yeah, just about.<</say>>
<<say kenna>>You didn't...?<</say>>
<<say mc>>No, no. Even I'm not that depraved.<</say>>
<<say kenna>>Good, good. So what's the plan?<</say>>
<<say mc>>I've invited her to watch me perform with someone at $stripname. You said she likes watching, right?<</say>>
<<say kenna>>Yeah... but you really think she'll just go there?<</say>>
<<say mc>>I do. I think her turning up to my room drunk might be the jump start she needs. I'll let the staff know to cut her off after a few drinks if she does turn up, though.<</say>>
<<say kenna>>What if it was you and I performing?<</say>>
<<say mc>>That's not an angle I'd considered, but I don't think she'd go for it.<</say>>
<<say kenna>>Well... we could find out...<</say>>
<<say mc>>I'll think about it. Either way, it's probably gonna be a few hours until she's in a fit state.<</say>>
<<think mc>>I can't imagine that would go down well. But I'm also getting a bit impatient myself... it could be a good way to really drive it home that we will not have our lives dictated by her...<</think>>
<</if>>
<<button "Continue" homehub>>
<<if $krissy.tabooalt == undefined && $girlsavailable.includes('kenna') && $kenna.events.upset == undefined>>
<<like "kenna" 4>>
<<lust "kenna" 2>>
<</if>>
<<unavailable "krissy">>
<<event "kenna" "krissy" 4>>
<<time 1>>
<</button>>
<<case "gembar">>
<<if $tempvar2 == "force">>
<<narrate>>Noticing the time, you rush over to the bar to meet $krissy.name.<</narrate>>
<</if>>
<<narrate>>She's already sat at the bar with a drink in hand when you arrive.<</narrate>>
<<left2 "krissy/bar03.jpg">>
<<narrate>>She raises her glass to catch your attention, though her face is somewhat impassive.<</narrate>>
<<say mc>>So... about what happened.<</say>>
<<narrate>>She takes a deep breath.<</narrate>>
<<say krissy>>I am a woman with needs, $krissy.calls. And those needs have been largely unfulfilled as of late. Seeing you with other women makes me jealous of what I'm not getting.<</say>>
<<say mc>>Finally, some honesty.<</say>>
<<narrate>>She downs the rest of her drink and orders another.<</narrate>>
<<say krissy>>Liquid courage.<</say>>
<<say mc>>So, what now? Do you just need to get laid... because—<</say>>
<<say krissy>>Stop! No. Stop. It was a lapse. A mistake in the heat of the moment, an intrusive thought due to being undersexed and overstimulated<<if $krissy.relief == 4.4>> in the dreamworld<</if>>. This is such a cursed conversation! And you, $krissy.calls, it was your lust aspect. You saw me... <<if $krissy.relief == 4.4>>parading<<else>>enjoying<</if>> myself, and your lust aspect took hold.<</say>>
<<say mc>>I disagree.<</say>>
<<narrate>>She downs another drink.<</narrate>>
<<say mc>>Slow down on the drinks.<</say>>
<<say krissy>>I need the help for this discussion.<</say>>
<<narrate>>You place your hand on her shoulder and look into her eyes.<</narrate>>
<<say mc>>$krissy.refer, you're an attractive woman, and I'm definitely into you. Is it the lust aspect? I don't know, and I don't care. I want you.<</say>>
<<narrate>>Her bottom lip quivers and she gulps.<</narrate>>
<<say krissy>>You can't say those things, $krissy.calls! It's not right.<</say>>
<<say mc>>I keep telling you. We're not on Earth now.<</say>>
<<narrate>>You grab her hand and try to tug her away.<</narrate>>
<<say mc>>Come on, let's go fix you being undersexed, shall we?<</say>>
<<narrate>>She pulls back.<</narrate>>
<<say krissy>>No. Just go... leave me here. I need another drink... without you trying to seduce me. I'm your $krissy.them!<</say>>
<<think mc>>Hmm, just how many drinks does she need to be true to herself? Probably too many to make it meaningful to her sober-self.<</think>>
<<button "Continue" "townhub">>
<<lust "krissy" 4>>
<<corrupt "krissy" 4>>
<<taskdone "gembar">>
<<event "kenna" "krissy" 3>>
<<time 2>>
<</button>>
<<case "respect">>
<<left2 _img>>
<<say mc>>I wanted to talk about your respect comment.<</say>>
<<say krissy>>It's okay, $krissy.calls, I know you're sorry, just do better.<</say>>
<<say mc>>Excuse me? No, $krissy.refer. It's your respect I wanted to discuss.<</say>>
<<narrate>>She pulls her face back and furrows her brow.<</narrate>>
<<say mc>>You suggested I have a lack of respect for you because of where I was fucking my companions. You know more about patrons than most normal travelers. It's my respect for you that's kept me from fucking people right under your nose. It's my respect for you that I've held back from engaging with $kenna.name.<</say>>
<<think mc>>I'm laying it on thicker than I expected, none of it is untrue as such, but that do better comment has really fucked me off. I guess $anna.name and $charlie.name had to get the attitude from somewhere.<</think>>
<<narrate>>She grimaces, and takes a breath.<</narrate>>
<<say krissy>>So, are you telling me if I let you fuck whoever you want right in front of me, you and $kenna.name will stay away from each other?<</say>>
<<think mc>>Uh... no...<</think>>
<<say krissy>>Fine. If that's the price I have to pay, go fetch your entire fucking harem, have a fucking orgy right here in front of me! If that's what it takes, I'll grin and bear it.<</say>>
<<think mc>>Do I call her bluff... or back down?<</think>>
<div id="replace">
<<choices>>
<<link "Call her bluff">>
<<replace "#replace">>
<<say mc>>Yeah... okay, I certainly could do with release right now.<</say>>
<<narrate>>She stands glaring at you, her mouth open and her jaw crooked as she contemplates her next move.<</narrate>>
<<think krissy>>I will not back down. I will not lose.<</think>>
<<say krissy>>Well, what are you waiting for?<</say>>
<div id="replace2">
<<choices "Who do you call?">>
<div class="flex">
<<switch $location>>
<<case "office">>
<<if $girlsavailable.includes('monique') && $monique.events.truthwait == 3 && $monique.young != true && checkUnlocks('movie', 'ethic', 'monique')>>
<<link '<div class="girlChoice"><<center "monique/moniquecrop.jpg">>$monique.name</div>'>>
<<replace "#replace2">>
<<narrate>>$monique.name doesn't take long to arrive.<</narrate>>
<<say monique>>You wanted me?<</say>>
<<narrate>>You stare at $krissy.name as you reply, but $monique.name hasn't noticed $krissy.name yet.<</narrate>>
<<say mc>>Oh, I want you alright. Have you been a bad girl again?<</say>>
<<narrate>>$krissy.name finally recognizes the voice, her eyes bulge and you see her grind her teeth.<</narrate>>
<<say monique>>Oh, I've been a very bad gi— $krissy.name?!<</say>>
<<say mc>>Oh, don't mind her, she's just here for the show.<</say>>
<<say krissy>>That's not what— you know what, it's fine. Go ahead. Continue.<</say>>
<<think krissy>>This is a game of chicken, and I will win. There's no way those two would actually fuck, let alone in front of me.<</think>>
<<narrate>>$monique.name grins.<</narrate>>
<<say monique>>You always did like to watch, huh, $krissy.name? But your $krissy.you? I'm glad you came you came around... I guess I'm not the only bad girl around here.<</say>>
<<think krissy>>Yeah, yeah, play it up. I'm not buying it.<</think>>
<<say mc>>Over the table and lift up your skirt. I'll show you what bad girls get!<</say>>
<<vid "monique/ethic01.mp4">>
<<say monique>>This feels so naughty with your $krissy.them watching us!<</say>>
<<krissyseen "monique">>
<<set $tempvar3 = "krissy">>
<<cont "moniquesex" "ethic01">>
<</replace>>
<<temp "docs">>
<</link>>
<</if>>
<<if $girlsavailable.includes('vanna') && $vanna.mature != true>>
<<link '<div class="girlChoice"><<center "vanna/vannacrop.jpg">>$vanna.name</div>'>>
<<replace "#replace2">>
<<narrate>>$vanna.name arrives shortly after. As soon as she sees you, she perches herself on your desk.<</narrate>>
<<left2 "vanna/office01.jpg">>
<<say vanna>>I do hope you called me here because you were horny.<</say>>
<<say mc>>Very much so!<</say>>
<<narrate>>She grins and pulls your chair closer while lying back on the desk.<</narrate>>
<<say vanna>>Good, then how about a quickie, because I'm gagging for it!<</say>>
<<say mc>>Oh, I've not got you gagging just yet!<</say>>
<<narrate>>As she throws her hair back she notices $krissy.name. She pauses for a moment.<</narrate>>
<<say krissy>>Oh, don't stop on my account.<</say>>
<<narrate>>She looks at you and raises an eyebrow.<</narrate>>
<<say mc>>She's being serious.<</say>>
<<think krissy>>He's trying to prove a point. I won't be manipulated like that, and if it keeps $kenna.name away from him, so be it.<</think>>
<<narrate>>$vanna.name's smile widens as you stand and she tugs at your trousers.<</narrate>>
<<say vanna>>This is my kind of party.<</say>>
<<krissyseen "vanna">>
<<set $tempvar3 = "krissy">>
<<cont "vannasex" "office01">>
<</replace>>
<</link>>
<</if>>
<<if $girlsavailable.includes('vanna') && $vanna.mature == true>>
<<link '<div class="girlChoice"><<center "vanna/mature/vannacrop.jpg">>$vanna.name</div>'>>
<<replace "#replace2">>
<<narrate>>$vanna.name arrives a little later, grinning at you as she swaggers into the room.<</narrate>>
<<left2 "vanna/mature/office01.jpg">>
<<say vanna>>Booty call?<</say>>
<<narrate>>She lifts her eyebrows up and down almost comically. You laugh and nod.<</narrate>>
<<say mc>>Booty call.<</say>>
<<narrate>>She looks at $krissy.name.<</narrate>>
<<say vanna>>Ah, $krissy.name, sorry, I'll take him out your hair...<</say>>
<<think krissy>>He's trying to prove a point. I won't be manipulated like that, and if it keeps $kenna.name away from him, so be it.<</think>>
<<say krissy>>No, no, please, go ahead. Don't mind me.<</say>>
<<narrate>>You can detect the sarcasm in her voice. $vanna.name looks back at you, smirks and starts pulling her dress straps over her shoulders.<</narrate>>
<<left2 "vanna/mature/booty02.jpg">>
<<say vanna>>Oh, you're bad!<</say>>
<<narrate>>You violently clear off the desk spraying equipment over the floor. They both look on with surprise.<</narrate>>
<<think mc>>A little far... I think I broke that printer...<</think>>
<<say mc>>Just making room for our fun. Now... on your knees.<</say>>
<<krissyseen "vanna">>
<<set $tempvar3 = "krissy">>
<<cont "vannasex" "matureoffice01">>
<</replace>>
<</link>>
<</if>>
<<case "bedrooms">>
<<link '<div class="girlChoice"><<center "lacy/lacycrop.jpg">>$lacy.name</div>'>>
<<replace "#replace2">>
<<narrate>>$lacy.name arrives a moment later.<</narrate>>
<<say lacy>>I take it you need a release? I am feeling quite horny myself.<</say>>
<<narrate>>She looks at $krissy.name.<</narrate>>
<<say lacy>>Will you be watching us, $krissy.name?<</say>>
<<think krissy>>He's trying to prove a point. I won't be manipulated like that, and if it keeps $kenna.name away from him, so be it.<</think>>
<<say krissy>>That I am, looking forward to it, $lacy.name.<</say>>
<<narrate>>You can detect the sarcasm in her voice.<</narrate>>
<<say mc>>Why don't you get on the bed for me?<</say>>
<<narrate>>She undresses, and lies on the bed, looking at you expectantly.<</narrate>>
<<say "mc">>That's what I'm talking about...<</say>>
<<narrate>>You walk to the edge of the bed, admiring her beauty. You lean over and caress her thigh. Slowly teasing her, inching your fingers ever closer to her pussy as her eyes plead for more.<</narrate>>
<<krissyseen "lacy">>
<<set $tempvar3 = "krissy">>
<<cont "lacysex" "gway">>
<</replace>>
<</link>>
<<case "docs">>
<<link '<div class="girlChoice"><<center "kp/kpcrop.jpg">>$kp.name</div>'>>
<<replace "#replace2">>
<<if !$girlsavailable.includes('kp')>>
<<say kp>>It's not often you call for me from Central. Is something wrong?<</say>>
<<else>>
<<say kp>>Is everything alright, $name?<</say>>
<</if>>
<<say mc>>Yes... it's been too long since I felt you skin against mine.<</say>>
<<narrate>>She grins, then notices $krissy.name.<</narrate>>
<<say kp>>$krissy.name? I didn't see you there. Umm, $name should we maybe talk later?<</say>>
<<think krissy>>He's trying to prove a point. I won't be manipulated like that, and if it keeps $kenna.name away from him, so be it.<</think>>
<<say krissy>>Please, don't stop on my account.<</say>>
<<narrate>>She raises an eyebrow and looks back at you. You smirk and nod at her.<</narrate>>
<<say kp>>Well, you certainly are full of surprises, I knew you liked watching, but your $krissy.you? Nasty! I'll be sure to entertain you.<</say>>
<<narrate>>Slowly, she moves her hands down to your crotch and tugs at your trousers.<</narrate>>
<<krissyseen "kp">>
<<set $tempvar3 = "krissy">>
<<cont "kpsex" "docs01">>
<</replace>>
<</link>>
<<case "gym">>
<<link '<div class="girlChoice"><<center "cassie/cassiecrop.jpg">>$cassie.name</div>' cassieanswers>>
<<temp "gym">>
<<krissyseen "cassie">>
<<set $tempvar3 = "krissy">>
<</link>>
<</switch>>
</div>
<</choices>>
</div>
<</replace>>
<</link>><br>
<<link "Back Down">>
<<replace "#replace">>
<<say mc>>No... no, that's not what I'm saying. I'm not trying to bargain with you. I am simply stating fact. You think I'm disrespecting you when I'm going out my way to keep my lust aspect away from you.<</say>>
<<think krissy>>Yeah, I knew you'd back off with that. I win, $krissy.calls.<</think>>
<<say krissy>>Fine. I'll be more tolerant of your aspect, but at least try to be less distracting.<</say>>
<<think mc>>Okay, clearly I hit a nerve, but I don't think pushing her was a good idea right now. In her last outburst, she insinuated she wasn't getting laid enough. Obviously I'd be happy to help with that, but she's not ready yet. Maybe I should mention it to <<if $girlsavailable.includes('sophia')>>$sophia.refer<<else>>$derek.refer<</if>> or $lexi.refer about her.<</think>>
<<cont "housestuff">>
<<set $krissy.relief = 4>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "annoyed">>
<<narrate>>$krissy.name storms over to you.<</narrate>>
<<left2 "krissy/annoyed.jpg">>
<<say krissy>>Just what the hell are you playing at?!<</say>>
<<say mc>>What do you mean?<</say>>
<<say krissy>>You know exactly what I mean! It's a complete lack of respect.<</say>>
<<narrate>>You raise an eyebrow.<</narrate>>
<<say krissy>>I offer to you help you out so you can fuck only the gods know who, which in itself is bad enough, I'm your $krissy.them for crying out loud, but then you do it within earshot so I have to hear and see every grimy detail.<</say>>
<<say mc>>See?<</say>>
<<say krissy>>I didn't want to stay in the hotel because I didn't want to have to walk around a corner and see your massive cock down some poor girl's throat. But, I made peace with that for the sake of ensuring <i><b>she</b></i> doesn't get her claws in you. But in the work place? It's too much!<</say>>
<<say mc>>Massive cock?<</say>>
<<say krissy>>You need to show some damn respect!<</say>>
<<think mc>>She's on tirade, she's not listening to anything I say.<</think>>
<<say krissy>>I'm done. I'm not covering any more shifts just so you can rub it in how you're getting laid and I'm not!<</say>>
<<narrate>>You can see she's surprised herself saying that out loud, but she's that stubborn she tries to plow through.<</narrate>>
<<say krissy>>If you wanna fuck them at work, you'll do so without my help!<</say>>
<<say mc>>Okay but I...<</say>>
<<narrate>>She storms off without giving you chance to reply.<</narrate>>
<<think mc>>Okay, despite that shouting fit, it sounds like my plan is working a little. I should go talk to her properly now she's got it out of her system. Now I play the lack of respect for me card. She's right though, nothing stopping me having some fun with people on shift.<</think>>
<<notice>>Assisting workers with shifts may now sometimes lead to lewds.<</notice>>
<center>
<<button "Close">>
<<set $scene = 0>>
<<set $krissy.relief = 2>>
<<run overrideSchedule('krissy', 10, 12, "office")>>
<<run overrideSchedule('krissy', 12, 14, "bedrooms")>>
<<script>>
Engine.play(State.active.title, true);
closeDialog()
<</script>>
<</button>>
</center>
<<case "needs">>
<<left2 _img>>
<<if $krissy.tabooalt != undefined && ($kenna.events.upset == undefined || $krissy.events.kenna == "taboo")>>
<<say mc>>I'm so glad you've become accepting of me and $kenna.name.<</say>>
<<say krissy>>I'm still not happy about it, but as long as we're all together, I can get through it.<</say>>
<<think mc>>Yeah... I'd rather you be part of it, though!<</think>>
<<say mc>>Her supple skin against mine. The touch of her breasts as—<</say>>
<<say krissy>><<uc $name>>! That's highly inappropriate.<</say>>
<<say mc>>I'm sorry, but I just wanted you to know how happy I am. How she ensures my needs are met.<</say>>
<<say krissy>>She is not the only person who can help you with your so-called needs!<</say>>
<<else>>
<<say mc>>It's about $kenna.name...<</say>>
<<say krissy>>What is it, $krissy.calls, is she okay?<</say>>
<<say mc>>No, no, nothing like that. I just don't like how things were left with her.<</say>>
<<say krissy>>I understand, but it's for the best.<</say>>
<<say mc>>But I can't get the thought of her naked skin pressed against mine out of my head.<</say>>
<<say krissy>><<uc $name>>! That's highly inappropriate.<</say>>
<<say mc>>I'm sorry, but I just don't know how to move forward.<</say>>
<</if>>
<<narrate>>She sighs.<</narrate>>
<<say krissy>>I'm your $krissy.them, so I don't really think it's appropriate we discuss this. But, I guess things are a little different here, and given your lust aspect, maybe I should make more of an effort to help with that.<</say>>
<<think mc>>Wait, is she... was it that easy?<</think>>
<<if $krissy.tabooalt != undefined>>
<<say krissy>>You've got quite the harem, what if you put me to work so they have to do fewer shifts? That way they can spend a little more time with you maybe you'll spend less time with my daughter.<</say>>
<<say mc>>I thought you weren't going to come between us!<</say>>
<<say krissy>>I'm not, I'm simply trying to save myself the imagery of you and her...<</say>>
<<say mc>>I appreciate that, but... it just feels different with $kenna.name.<</say>>
<<say krissy>>I understand, but please don't forget those that came before.<</say>>
<<think mc>>I wonder if I can use this somehow...?<</think>>
<<set _return = "krissy">>
<<else>>
<<say krissy>>You've got quite the harem, what if you put me to work so they have to do fewer shifts? That way they can spend a little more time with you and get your mind off this silly $kenna.name infatuation.<</say>>
<<think mc>>Okay, totally misjudged where she was going with that. Of course she wouldn't just bend over for me that easily!<</think>>
<<say mc>>I appreciate that, but it's just not the same. I care deeply for my companions, of course, but I don't know, I just can't get $kenna.refer outta my mind.<</say>>
<<say krissy>>Try, for me?<</say>>
<<say mc>>Alright... I'll try.<</say>>
<<think mc>>Until I come up with a plan, at least...<</think>>
<<if $girlsavailable.includes('kenna') && $kenna.events.upset == undefined>>
<<set _return = "kennaanswers">>
<<else>>
<<set _return = "krissy">>
<</if>>
<</if>>
<<say krissy>>As for me working for you, not to toot my own horn, but I can turn my hand to anything.<</say>>
<<say mc>>Right... yeah...<</say>>
<<think mc>>Hmm, how do I turn this around. For now, maybe I'll just take her up on her offer, but I really don't want to have to mess with more schedules, so I'll just call her in when I need her and I can think of something else later.<</think>>
<<say mc>>I'll let you know when a relief shift is needed.<</say>>
<<say krissy>>Huh, okay... I guess we can do it that way too...<</say>>
<<think mc>>Actually, this could work; I don't need to think of anything later! I got this. I go visit someone while they're working, $krissy.refer frees them up... and then I just have fun with them right there, loudly making sure to get $krissy.refer's attention. Heh, having an audience around here has become pretty common...<</think>>
<<button "Continue" _return>>
<<if $krissy.tabooalt == undefined && $girlsavailable.includes('kenna') && $kenna.events.upset == undefined>>
<<temp "overheard">>
<</if>>
<<corruptmax "krissy" 75>>
<<lust krissy 2>>
<<like krissy 2>>
<<corrupt krissy 5>>
<<set $krissy.relief = 1>>
<<event krissy relief 0>>
<<if $krissy.tabooalt != undefined && $girlsavailable.includes('kenna') && $kenna.events.upset == undefined>>
<<time 1>>
<</if>>
<</button>>
<<case "kenna">>
<<left2 _img>>
<<say mc>>Yeah, I kinda wanna chat about $kenna.name.<</say>>
<<say krissy>>My darling daughter. We've had some major disagreements, as you know, but I'm still so proud of everything she's done. And I've made things clear now, so we can move past that unpleasantness.<</say>>
<<say mc>>That's just it, I don't think we can, not just like that.<</say>>
<<say krissy>>I've told you both I've forbidden it. There's nothing more to discuss.<</say>>
<<say mc>>No, $krissy.refer. That's not how this works.<</say>>
<<narrate>>She looks at you with scorn.<</narrate>>
<<say mc>>I love you both. But, we're adults, $krissy.refer. You have no right to forbid it.<</say>>
<<say krissy>>Are you disobeying me, $krissy.calls?<</say>>
<<narrate>>You take a deep breath.<</narrate>>
<<say krissy>>She won't take you away from me! You're my special little man, and her influence will only lead you to ruin!<</say>>
<<say mc>>We've still been hanging out recently, right? And why would that change? Where would she even take me away to? It's not like I can travel anymore, is it?<</say>>
<<say krissy>>I... no. $name. You are not having relations with your $kenna.them!<</say>>
<<think mc>>Okay... I've tried to take it slow, butter her up so to speak, show her that I value her time regardless, but it's clearly not getting through to her. I'm gonna have to make a decision here, do I tell her $kenna.refer and I will continue with or without her permission, or call it off with $kenna.refer entirely? I guess I could also try to keep it going behind her back...<</think>>
<div id="replace">
<<choices>>
<<link "Continue relations with $kenna.name">>
<<replace "#replace">>
<<say mc>>I don't have the patience for this. $kenna.refer and I won't stop. We've held off while we tried to reason with you, but clearly that's not working. I'm sorry, $krissy.refer, but you're gonna have to get used to it.<</say>>
<<say krissy>>Please, $krissy.calls, don't do this.<</say>>
<<say mc>>That's my line. Your stubbornness is driving a wedge between us.<</say>>
<<narrate>>She grimaces, and grits her teeth. You can see the anger growing in her eyes.<</narrate>>
<<say krissy>>I <b>will</b> stop her, one way or another.<</say>>
<<say mc>>No... you won't.<</say>>
<<narrate>>Your heart pounding and your adrenaline spiking, you turn on your heel and walk away, not daring to look back.<</narrate>>
<<think mc>>I need to go speak with $kenna.refer.<</think>>
<<button "Continue" $return>>
<<event "krissy" "kenna" "taboo">>
<<set $krissy.locked = 1>>
<<like krissy -20>>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<link "Call it off with $kenna.name">>
<<replace "#replace">>
<<say mc>>I can't take this anymore. You won't stop, will you? You'll never change your mind.<</say>>
<<narrate>>She shakes her head.<</narrate>>
<<narrate>>You take a deep breath and sigh.<</narrate>>
<<say mc>>Fine, I won't take things any further with $kenna.refer. I can't tell you how disappointed in you, though, $krissy.refer. I thought you were better than this.<</say>>
<<narrate>>She looks at you with astonishment.<</narrate>>
<<say krissy>>What? That makes no sense! It was you two who—<</say>>
<<say mc>>You're too stubborn to see how much you're hurting us.<</say>>
<<narrate>>She says nothing, but her face is a mess of emotions.<</narrate>>
<<button "Continue" $return>>
<<event "krissy" "kenna" "friends">>
<<time 1>>
<</button>>
<</replace>>
<</link>><br>
<<link "Lie about calling it off with $kenna.name">>
<<replace "#replace">>
<<say mc>>If it really means that much to you, we'll stop. I can't say I'm happy about it, though.<</say>>
<<say krissy>>It's for the best, $krissy.calls.<</say>>
<<say mc>>For who?<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say krissy>>For all of us, of course!<</say>>
<<say mc>>Sure... sure...<</say>>
<<think mc>>I am gonna fuck her on your bed, just to spite you! Where's $kenna.refer right now?<</think>>
<<button "Continue" $return>>
<<event "krissy" "kenna" "lied">>
<<set $krissy.locked = 1>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
<<notice>>If you decide not to take things further with $kenna.name right now, there will be further opportunities in the future.<br>Pursuing a taboo relationship with $kenna.name will lock the ability to change your relationship $krissy.name for a little while.<</notice>>
</div>
<<case "hang">>
<<switch $location>>
<<case "gym">>
<<say mc>>Maybe we could work out together?<</say>>
<<say krissy>>Yeah, that sounds good.<</say>>
<<narrate>>She picks up some weights and starts pumping.<</narrate>>
<<left2 "krissy/gym02.jpg">>
<<say krissy>>You know, I never really was much of a gym rat before.<</say>>
<<say mc>>Looking at how little weight you've got there, I don't think you're much of one now!<</say>>
<<say krissy>>Cheeky! But, it was <<if $girlsavailable.includes('sophia')>>$sophia.name<<else>>$derek.name<</if>> who got me into it. As you know, they're definitely a gym rat.<</say>>
<<say mc>>Yeah, definitely.<</say>>
<<say krissy>>While keeping in shape is important, I was happier behind a computer or with my nose in a book.<</say>>
<<say mc>>But <<if $girlsavailable.includes('sophia')>>$sophia.refer<<else>>$derek.refer<</if>> changed that?<</say>>
<<say krissy>>Yeah, I wanted them to notice me!<</say>>
<<narrate>>She goes on to talk about how they met... but it's a long-drawn-out story where she goes on several tangents about people you've never heard of. Your mind becomes hazy, and you don't even realize you're watching every rep, every movement of hers intently as she increasingly glistens with sweat.<</narrate>>
<div id="fanta">
<<choices>>
<<link "Fantasize">>
<<toggleclass '#fanta' noshow>>
<<toggleclass '#fanta2' noshow>>
<<toggleclass '#fanta3' noshow>>
<<toggleclass '#nofanta' noshow>>
<<set $krissy.fanta.pushUnique('gym')>>
<<ScrollTo "fanta2">>
<</link>>
<br>
<<link "Focus">>
<<toggleclass '#fanta' noshow>>
<<toggleclass '#nofanta' noshow>>
<</link>>
<</choices>>
</div>
<div class="noshow fantasy" id="fanta2" style="width: 100%">
<<say krissy>>Counting my reps...?<</say>>
<<narrate>>You nod while continuing to stare.<</narrate>>
<<left2 "krissy/fanta12.jpg">>
<<say krissy>>Or just enjoying the view?<</say>>
<<narrate>>You grin wickedly.<</narrate>>
<<say krissy>><<if $defaultRel == "family" || $defaulRel == "step">>Your own mother?<<else>>I'm old enough to be your mother!<</if>> Such a depraved young man.<</say>>
<<narrate>>She continues lifting her weights, but you can't help but notice the additional motion in her ass and forced jiggle each time she pulls back.<</narrate>>
<<say krissy>>Yeah, you like what you see?<</say>>
<<left2 "krissy/fanta13.jpg">>
<<narrate>>She spreads her legs and starts to moan suggestively with each rep, clearly trying to elicit a reaction.<</narrate>>
<<say krissy>>Yes~ look at me, look at your <<if $defaultRel == "family" || $defaulRel == "step">>mother<<else>>favorite MILF<</if>> getting hot and sweaty.<</say>>
<<narrate>>The gym shorts do nothing to hide your erection.<</narrate>>
<<say krissy>>I can't bear, it's too hot.<</say>>
<<narrate>>She unclasps her bra while staring directly at you, then tosses it at your feet.<</narrate>>
<<left2 "krissy/fanta14.jpg">>
<<say krissy>>That's so much better. Maybe you should try it... unburden yourself from those shorts...<</say>>
<<narrate>>She bites her bottom lip as you lower your shorts, revealing your rock hard manhood.<</narrate>>
<<say krissy>>Oh, god, look at that thing. <<if $defaultRel == "family" || $defaulRel == "step">>Momma's<<else>>I'm<</if>> going to get some reps in on that bad boy.<</say>>
<<say mc>>I'm gonna go so deep you'll be unable to walk for a week!<</say>>
</div>
<div class="noshow" id="fanta3">
<<say krissy>>Oh, challenging me, are you?<</say>>
<<think mc>>Shit! Fuck!<</think>>
<<left2 "krissy/gym03.jpg">>
<<say krissy>>You don't stand a chance, I'll easily outlast you.<</say>>
<<say mc>>Uh... yeah sure, in your dreams.<</say>>
<<say krissy>>Ha! You don't have the stamina.<</say>>
<<narrate>>The two of you continue to work out, each glancing at the other on occasion as you try to outdo one another.<</narrate>>
</div>
<div class="noshow" id="nofanta">
<<say krissy>>Wow, that a work-out!<</say>>
<<if $krissy.fanta.includes('gym')>>
<<say mc>>Oh, giving up, huh?<</say>>
<<say krissy>>You're more competitive than I thought. And the way you kept staring at me to put me off my game... cheating I say!<</say>>
<<say mc>>Just what a loser would say!<</say>>
<<think mc>>I really need to stop my mind drifting like that. Holy fuck.<</think>>
<</if>>
<<button "Continue" krissy>>
<<event "krissy" "roads">>
<<if $krissy.fanta.includes('gym')>>
<<lust "krissy" 3>>
<<corrupt "krissy" 3>>
<<else>>
<<corrupt "krissy" 1>>
<<lust "krissy" 1>>
<</if>>
<<set $krissy.events.together++>>
<<like "krissy" 3>>
<<time 1>>
<</button>>
</div>
<<case "docs">>
<<say mc>>How are you getting on, has it been busy?<</say>>
<<say krissy>>Not really, it never really is. I hang around here more for fun than anything meaningful.<</say>>
<<say mc>>Fun?<</say>>
<<narrate>>She sits on one of the empty beds.<</narrate>>
<<left2 "krissy/docs02.jpg">>
<<say krissy>>Oh, yes. There's a lot of information and medical equipment here.<</say>>
<<say mc>>Right, and that keeps you entertained?<</say>>
<<say krissy>>Learning about some of the many diseases and ailments spread over the various worlds is fascinating, don't you think? Some of them are real gruesome!<</say>>
<<say mc>>Uh, right... but I thought the Gateway prevented any of that? Isn't this place meant for injuries?<</say>>
<<say krissy>>It is, but it's still good to know about diseases and stuff on other worlds. You might get a traveler come through who seeks aid for a loved one who is unable to travel for instance.<</say>>
<<say mc>>Does that happen a lot?<</say>>
<<say krissy>>Not once, to me at least; not that I've been here long. But you get the point. Mostly I just enjoy learning about it all! Though another benefit is if you notice any of these symptoms while off world you can quickly travel back through the Gateway to cure yourself before it progresses.<</say>>
<<say mc>>Hmm, yeah, that seems practical. And that gateway can heal anything?<</say>>
<<say krissy>>No... to my understanding, and honestly $krissy.calls, you should know better than I do at this stage, there's a database constantly being updated as new ailments are found and cured. Oh, that reminds me!<</say>>
<<narrate>>She excitedly gets out a large leather-bound medical journal, and flips through the pages.<</narrate>>
<<say krissy>>So there was this one case a few hundred years ago that I found fascinating...<</say>>
<<narrate>>She goes on to talk enthusiastically about an old outbreak. You feel yourself dissociating and staring at her stomach where, thanks to the way she's sat on the bed, her scrubs have ridden up revealing her belly button.<</narrate>>
<div id="fanta">
<<choices>>
<<link "Fantasize">>
<<toggleclass '#fanta' noshow>>
<<toggleclass '#fanta2' noshow>>
<<toggleclass '#fanta3' noshow>>
<<toggleclass '#nofanta' noshow>>
<<set $krissy.fanta.pushUnique('docs')>>
<<ScrollTo "fanta2">>
<</link>>
<br>
<<link "Focus">>
<<toggleclass '#fanta' noshow>>
<<toggleclass '#nofanta' noshow>>
<</link>>
<</choices>>
</div>
<div class="noshow fantasy" id="fanta2" style="width: 100%">
<<say krissy>>Just a little bit of skin has you that enthralled?<</say>>
<<say mc>>I... no, sorry!<</say>>
<<narrate>>She chuckles, and lifts her scrubs further.<</narrate>>
<<left2 "krissy/fanta09.jpg">>
<<say krissy>>Oh, don't be...<</say>>
<<narrate>>She stares at you, a fiery lust building in her eyes.<</narrate>>
<<say krissy>>Oh, no... these clothes are so ill-fitting... I hope they don't come loose.<</say>>
<<narrate>>She starts tugging at her trouser drawstring.<</narrate>>
<<left2 "krissy/fanta10.jpg">>
<<say krissy>>Oh, gosh, I hope they stay on, I wouldn't want my perverted <<if $defaultRel == "family" || $defaulRel == "step">>son<<else>>friend<</if>> thinking I'm trying to seduce him.<</say>>
<<narrate>>She continues to make exaggerated movements while feigning surprise, lowering her trousers over her butt.<</narrate>>
<<say krissy>>This is so embarrassing...<</say>>
<<narrate>>Your cock twitches, getting harder as she shows more skin.<</narrate>>
<<say krissy>>Now look what's happened! Whatever shall we do?<</say>>
<<narrate>>She throws off her top and crawls on back on to the bed.<</narrate>>
<<left2 "krissy/fanta11.jpg">>
<<say krissy>>I guess it's my fault you're so hard... and as your <<if $defaultRel == "family" || $defaulRel == "step">>mother<<else>>favorite MILF<</if>> it's only right I take responsibility.<</say>>
<<narrate>>She beckons you over.<</narrate>>
<<say krissy>>Come, let <<if $defaultRel == "family" || $defaulRel == "step">>momma<<else>>me<</if>> take care of that big stiff cock.<</say>>
<<say mc>>I'm gonna make you scream!<</say>>
</div>
<div class="noshow" id="fanta3">
<<say krissy>>Oh, not at all. I'm not squeamish.<</say>>
<<narrate>>Your eyes bulge and you feel the guilt in the pit of your stomach.<</narrate>>
<<left2 "krissy/docs03.jpg">>
<<say mc>>Right, yeah, of course.<</say>>
<<think mc>>Fucking hell... how do I keep getting away with this shit?<</think>>
<<say krissy>>The things I've seen, the things I've done, hell the people I've d—<</say>>
<<narrate>>She stops herself and clears her throat.<</narrate>>
<<say krissy>>Point is, I've seen a lot, and these kinds of things don't bother me.<</say>>
<<narrate>>She goes back to talking about the outbreak.<</narrate>>
</div>
<div class="noshow" id="nofanta">
<<say krissy>>Crazy, huh?<</say>>
<<say mc>>Yeah... wow...<</say>>
<<think mc>>I really was not paying attention.<</think>>
<<say krissy>>Luckily, there's been nothing like that since.<</say>>
<<if $krissy.fanta.includes('docs')>>
<<think krissy>>Hmm, did I bore him? His eyes just seemed to be staring through me...<</say>>
<</if>>
<<button "Continue" krissy>>
<<event "krissy" "roads">>
<<if $krissy.fanta.includes('docs')>>
<<lust "krissy" 3>>
<<corrupt "krissy" 3>>
<<else>>
<<corrupt "krissy" 1>>
<<lust "krissy" 1>>
<</if>>
<<set $krissy.events.together++>>
<<like "krissy" 3>>
<<time 1>>
<</button>>
</div>
<<case "bedrooms">>
<<say mc>>We can chat now if you want?<</say>>
<<say krissy>>I'd love to, $krissy.calls.<</say>>
<<narrate>>She stands up and gives you a hug.<</narrate>>
<<say mc>>What's that for?<</say>>
<<block "krissy/bedrooms02.jpg">>
<<say krissy>>For coming and spending the time with me.<</say>>
<<say mc>>It's my pleasure.<</say>>
<<say krissy>>So, I was thinking about the old town, and the hub. With a bit of work we could revitalize the area, and maybe plan out the facilities on the hub a little more strategically so...<</say>>
<<narrate>>You're struggling to look away from her legs and not really following. Your mind is on something else...<</narrate>>
<div id="fanta">
<<choices>>
<<link "Fantasize">>
<<toggleclass '#fanta' noshow>>
<<toggleclass '#fanta2' noshow>>
<<toggleclass '#fanta3' noshow>>
<<toggleclass '#nofanta' noshow>>
<<set $krissy.fanta.pushUnique('bedrooms')>>
<<ScrollTo "fanta2">>
<</link>>
<br>
<<link "Focus">>
<<toggleclass '#fanta' noshow>>
<<toggleclass '#nofanta' noshow>>
<</link>>
<</choices>>
</div>
<</block>>
<div class="noshow fantasy" id="fanta2" style="width: 100%">
<<say krissy>>Oh, I see what <<if $defaultRel == "family" || $defaulRel == "step">>my perverted son<<else>>my special little pervert<</if>> really wants...<</say>>
<<narrate>>She unbuttons her shorts<</narrate>>
<<left2 "krissy/fanta06.jpg">>
<<say krissy>>But clearly there's something impeding your view.<</say>>
<<narrate>>She lets her shorts sit there for a while, the anticipation of what's to come making your dick throb with excitement.<</narrate>>
<<say krissy>>Yeah... you want more, don't you?<</say>>
<<narrate>>She slowly lowers the shorts around her knees.<</narrate>>
<<say krissy>>Just look at your cock, lusting for <<if $defaultRel == "family" || $defaulRel == "step">>your mother<<else>>me<</if>> like a filthy degenerate.<</say>>
<<narrate>>She drops the shorts around her ankles, takes one foot out then stretches the other, dangling the shorts on her toe.<</narrate>>
<<say krissy>>Just imagine my smooth thighs wrapped around your head...<</say>>
<<narrate>>You start to unzip, hoping you won't have to imagine for much longer.<</narrate>>
<<say krissy>>Look at that cock, so eager to please your <<if $defaultRel == "family" || $defaulRel == "step">>mother<<else>>favorite MILF<</if>>.<</say>>
<<narrate>>She kicks off the shorts in your direction.<</narrate>>
<<left2 "krissy/fanta07.jpg">>
<<say krissy>>I think the time for imagination is over. Come, show <<if $defaultRel == "family" || $defaulRel == "step">>momma<<else>>me<</if>> what that tongue can do.<</say>>
<<narrate>>As you move closer, she spreads her legs, slowly, and deliberately while maintaining eye contact.<</narrate>>
<<say krissy>>Make <<if $defaultRel == "family" || $defaulRel == "step">>momma<<else>>me<</if>> proud.<</say>>
<<say mc>>I am gonna make you so fucking proud, $krissy.refer, you'll be squirming!<</say>>
</div>
<div class="noshow" id="fanta3">
<<say krissy>>What does that even mean? I'm proud of you already, $krissy.calls.<</say>>
<<left2 "krissy/bedrooms03.jpg">>
<<narrate>>She cocks her head while waiting for an answer.<</narrate>>
<<think mc>>Fuck, I got completely lost in the fantasy, I'm lucky I didn't just whip my cock out, jeez.<</think>>
<<say mc>>It's just with the talk of the town and the hub, it just really made me want to make you proud. So proud, you uhh... squirm with excitement.<</say>>
<<say krissy>>What a weird turn of phrase, but $krissy.calls, you've already done an amazing job, and I am already so, so proud of you. I've told you so many times already!<</say>>
<<narrate>>She goes back to talking about the hub.<</narrate>>
</div>
<div class="noshow" id="nofanta">
<<say krissy>>So, what do you think?<</say>>
<<say mc>>I think it's great.<</say>>
<<think mc>>At least... the bits I could follow.<</think>>
<<say krissy>>Perfect. I'll talk to $ember.name and $lacy.name then. By improving the aesthetic and signage of the roads and walkways, it should make things more efficient, increasing traveler's approval and willingness to spend.<</say>>
<<think mc>>Yeah... I definitely wasn't paying enough attention.<</think>>
<<notice>>A new project is available at the construction facility.<</notice>>
<<if $krissy.fanta.includes('bedrooms')>>
<<narrate>>$krissy.name lifts her leg and looks at it with a furrowed brow before repeating the process with the other.<</narrate>>
<<say krissy>>Is there's something on my legs?<</say>>
<<say mc>>I don't think so...<</say>>
<<say krissy>>You were giving item some weird looks...<</say>>
<<say mc>>Oh, uh, I thought I saw a spider—<</say>>
<<narrate>>She yelps and jumps away from the bed, frantically checking her legs for any sign of the invader.<</narrate>>
<<say mc>>No, no, sorry, I think it was just a bit of fluff...<</say>>
<<say krissy>>If you were just trying to wind me up, it worked, mister! You know I don't like spider, it's not laughing matter!<</say>>
<<say mc>>Yeah... sorry...<</say>>
<<think mc>>I think I got away with that...<</think>>
<</if>>
<<button "Continue" krissy>>
<<breakcheck>>
<<event "krissy" "roads">>
<<if $krissy.fanta.includes('bedrooms')>>
<<lust "krissy" 3>>
<<corrupt "krissy" 3>>
<<else>>
<<corrupt "krissy" 1>>
<<lust "krissy" 1>>
<</if>>
<<set $krissy.events.together++>>
<<like "krissy" 3>>
<<time 1>>
<</button>>
</div>
<<case "study">>
<<say mc>>So what do you do in here?<</say>>
<<say krissy>>I just like to read through the texts, maybe mess a little with the equipment, and generally just keep myself sharp.<</say>>
<<say mc>>Well, I am told you are a genius. I guess it only makes sense you'd want to make use of that.<</say>>
<<left2 "krissy/study02.jpg">>
<<narrate>>She beams.<</narrate>>
<<say krissy>>Ha, genius... I'd like to consider myself an intellectual, and I guess I am in the top 2%... by Earth standards.<</say>>
<<say mc>>Top 2%?<</say>>
<<say krissy>>Oh, I was a member of Mensa back on Earth. They only allow the top 2% of IQs to join.<</say>>
<<say mc>>Wow, I knew you were intelligent, I didn't know you were super-intelligent.<</say>>
<<narrate>>She swells with pride.<</narrate>>
<<say krissy>>Oh, stop it!<</say>>
<<narrate>>Despite her words, she's got a massive smile on her face and starts going into details about all the projects she got involved in and people she met thanks to her Mensa membership. She even starts using the blackboard to draw diagrams and charts of things way beyond your understanding.<</narrate>>
<<narrate>>Unable to keep up, your mind drifts and your eyes seem to be drawn to her posterior.<</narrate>>
<div id="fanta">
<<choices>>
<<link "Fantasize">>
<<toggleclass '#fanta' noshow>>
<<toggleclass '#fanta2' noshow>>
<<toggleclass '#fanta3' noshow>>
<<toggleclass '#nofanta' noshow>>
<<set $krissy.fanta.pushUnique('study')>>
<<ScrollTo "fanta2">>
<</link>>
<br>
<<link "Focus">>
<<toggleclass '#fanta' noshow>>
<<toggleclass '#nofanta' noshow>>
<</link>>
<</choices>>
</div>
<div class="noshow fantasy" id="fanta2">
<<narrate>>She turns and grins at you.<</narrate>>
<<say krissy>>Absolute pervert!<</say>>
<<narrate>>While saying this, she unfastens her blouse.<</narrate>>
<<say krissy>>Oh, you like the look of my tushy, do you? How about a closer look?<</say>>
<<narrate>>She lowers her skirt.<</narrate>>
<<left2 "krissy/fanta04.jpg">>
<<say krissy>>Yeah, just look at my lovely juicy peach.<</say>>
<<narrate>>She wiggles from side to side.<</narrate>>
<<say krissy>>You want to taste <<if $defaultRel == "family" || $defaulRel == "step">>momma's<<else>>my<</if>> cake, $krissy.calls?<</say>>
<<narrate>>Your dick starts to stir as her lustful gaze bores into you.<</narrate>>
<<say krissy>>Look at that tent you're pitching... need a hand?<</say>>
<<narrate>>You lick your lips and nod as she unburdens herself from more of her clothing.<</narrate>>
<<say krissy>>Does watching your <<if $defaultRel == "family" || $defaulRel == "step">>mother<<else>>favorite MILF<</if>> get naked do it for you? I fucking love it!<</say>>
<<narrate>>She cocks her leg up on to the desk and looks back at you while holding her ass taut.<</narrate>>
<<left2 "krissy/fanta05.jpg">>
<<say krissy>>I want you to crawl over here, and peel off my panties with your dirty little mouth.<</say>>
<<narrate>>You crawl over, more than willing.<</narrate>>
<<say krissy>>Look at you, such a perverted little boy, so eager to taste <<if $defaultRel == "family" || $defaulRel == "step">>your mother's<<else>>my<</if>> cake. You're practically drooling!<</say>>
<<say mc>>I'm gonna make you drip!<</say>>
</div>
<div class="noshow" id="fanta3">
<<say krissy>>What are you talking about? There's no way you could make it drip, I engineered it perfectly!<</say>>
<<left2 "krissy/study03.jpg">>
<<narrate>>She looks at you, irritated.<</narrate>>
<<think mc>>I have no idea what she's been talking about. Shit...<</think>>
<<say mc>>Of course, I just thought if you uhhh...<</say>>
<<say krissy>>You're talking rubbish, $krissy.calls. Leave these things to the professionals.<</say>>
<<narrate>>She goes back to talking about some of her favorite projects.<</narrate>>
</div>
<div class="noshow" id="nofanta">
<<say krissy>>And it's thanks to you that I got to meet all these people, and contribute to all these amazing projects!<</say>>
<<say mc>>Huh, what, how?<</say>>
<<say krissy>>When you were little I took you to an ice cream place. There were no seats available, but there was a woman in a booth sat alone who was kind enough to let us sit across from her.<</say>>
<<think mc>>I really think I've lost the plot here...<</think>>
<<say krissy>>And well, she was working on a rather complex equation... that I gave her the answer to without really paying attention. She was astounded as her colleagues had all been trying to deal with it for weeks, and I just gave her the solution in minutes.<</say>>
<<say mc>>And she introduced you to Mensa?<</say>>
<<say krissy>>Basically yeah, I still had to the IQ tests of course, but thanks to you being so adamant you wanted ice cream that day, I got to experience the whole thing. I really enjoyed chatting today, thanks $krissy.calls.<</say>>
<<say mc>>Of course, me too.<</say>>
<<think mc>>And wow, she really takes pride in her past achievements... and clearly it's one of her favorite subjects.<</think>>
<<if $krissy.fanta.includes('study')>>
<<think krissy>>I didn't take him for an ass man.. what am I saying? His eyes probably just drifted, it won't have been on purpose.<</think>>
<</if>>
<<button "Continue" krissy>>
<<if $krissy.fanta.includes('study')>>
<<lust "krissy" 3>>
<<corrupt "krissy" 3>>
<<else>>
<<corrupt "krissy" 1>>
<<lust "krissy" 1>>
<</if>>
<<set $krissy.events.together++>>
<<like "krissy" 3>>
<<time 1>>
<</button>>
</div>
<<case "office">>
<<left2 "krissy/office02.jpg">>
<<say mc>>I'd love to chat, $krissy.refer, what are you up to?<</say>>
<<say krissy>>Nothing really, just messing around on the computer trying to fight boredom! Still, it's better than being cooped up in the house... even if I do have to deal with your... activities on occasion.<</say>>
<<say mc>>Yeah, I'm not sorry about those activities, but I guess I am sorry you have to witness it if you're not into that.<</say>>
<<say krissy>>Into it? Of course not, I'm your $krissy.them!<</say>>
<<say mc>>Yeah, of course. Bad choice of words.<</say>>
<<narrate>>As she goes on to monologue, you can't help but feel your gaze drift to her bosom...<</narrate>>
<div id="fanta">
<<choices>>
<<link "Fantasize">>
<<toggleclass '#fanta' noshow>>
<<toggleclass '#fanta2' noshow>>
<<toggleclass '#fanta3' noshow>>
<<toggleclass '#nofanta' noshow>>
<<set $krissy.fanta.pushUnique('office')>>
<<ScrollTo "fanta2">>
<</link>>
<br>
<<link "Focus">>
<<toggleclass '#fanta' noshow>>
<<toggleclass '#nofanta' noshow>>
<</link>>
<</choices>>
</div>
<div class="noshow fantasy" id="fanta2">
<<say krissy>>Oh, $krissy.calls, you know how I get when you look at me like that!<</say>>
<<narrate>>She unbuttons her blouse.<</narrate>>
<<left2 "krissy/fanta01.jpg">>
<<say krissy>>It makes me so hot... gosh, I just can't stand the heat.<</say>>
<<narrate>>She grasps her breasts while looking you directly in the eye.<</narrate>>
<<say krissy>>You really love <<if $defaultRel == "family" || $defaulRel == "step">>momma's<<else>>my<</if>> boobs, huh?<</say>>
<<narrate>>You feel your erection begging for release. She grins when she notices your bulge.<</narrate>>
<<say krissy>><<if $defaultRel == "family" || $defaulRel == "step">>A mother's work is never done, huh?<<else>>You really do like to keep me distracted, huh?<</if>> Let me take care of that for you.<</say>>
<<narrate>>She untucks her blouse, allowing it to fall off her arms, and shimmies out of her skirt as your manhood becomes increasing impatient.<</narrate>>
<<say krissy>>Yeah, you like watching your <<if $defaultRel == "family" || $defaulRel == "step">>mother<<else>>favorite MILF<</if>> strip for you? Dirty boy!<</say>>
<<narrate>>She pulls off her bra while blowing you a kiss, then leaves it hanging on the end of her finger for a moment.<</narrate>>
<<say krissy>>Why don't you come make <<if $defaultRel == "family" || $defaulRel == "step">>mommy<<else>>me<</if>> scream?<</say>>
<<left2 "krissy/fanta02.jpg">>
<<narrate>>She crawls up on to the desk and beckons you over.<</narrate>>
<<say krissy>>Let me taste that cock, you dirty fucking boy. I'm going to suck you dry!<</say>>
<<say mc>>Oh, I'm going to fill that mouth of yours!<</say>>
</div>
<div class="noshow" id="fanta3">
<<say krissy>>What do you mean, $krissy.calls? I'm not hungry right now...<</say>>
<<left2 "krissy/office03.jpg">>
<<narrate>>She looks at you, clearly annoyed you interrupted her.<</narrate>>
<<say mc>>Right, yeah... sorry, $krissy.refer.<</say>>
<<say krissy>>So, anyway, as I was saying...<</say>>
<<think mc>>Phew, I really got into that fantasy...<</think>>
</div>
<div class="noshow" id="nofanta">
<<say krissy>>That's why I'm so proud of you. You've achieved so much.<</say>>
<<say mc>>I really had no choice with this patron stuff, though.<</say>>
<<say krissy>>You've had nothing but choices, you could have done nothing. You could have been like several other low level patrons, but you decided to be good... to do good.<</say>>
<<think mc>>And to do as many women as I can...<</think>>
<<narrate>>You chuckle to yourself.<</narrate>>
<<say krissy>>Did I say something funny, $krissy.calls?<</say>>
<<say mc>>No, no, it just made me think of another conversation, sorry.<</say>>
<<say krissy>>Well, anyway, I enjoyed this chat. We should do this more often.<</say>>
<<if $krissy.fanta.includes('office')>>
<<think krissy>>I could have sworn he was staring at my breasts... but maybe I was imagining things.<</think>>
<</if>>
<<button "Continue" krissy>>
<<if $krissy.fanta.includes('office')>>
<<lust "krissy" 3>>
<<corrupt "krissy" 3>>
<<else>>
<<corrupt "krissy" 1>>
<<lust "krissy" 1>>
<</if>>
<<set $krissy.events.together++>>
<<like "krissy" 3>>
<<time 1>>
<</button>>
</div>
<</switch>>
<<case "moved">>
<<narrate>>As you enter the hall and close your door, you hear another door close a few doors down. You turn to see $krissy.name smiling at you.<</narrate>>
<<left2 "krissy/krissy01.jpg">>
<<say krissy>>Good morning, $krissy.calls. Sleep well?<</say>>
<<say mc>>Uh yeah... are you staying in $armani.name's room?<</say>>
<<say krissy>>It's not her room anymore. She's a few doors further down now. She let me have hers so I could be as close to you as possible.<</say>>
<<think mc>>How on Earth did she convince $armani.name?<</think>>
<<say mc>>Why is this such a big deal to you?<</say>>
<<say krissy>>You were living under my roof and I told everyone you were out of bounds!<</say>>
<<say mc>>Sorry... everyone... and just me? Why?<</say>>
<<say krissy>>Because you weren't a traveler yet, you'd only experienced Earth and the taboos that come with it. $kenna.name was well-traveled, and while the other two hadn't traveled much... they knew things were different almost everywhere else.<</say>>
<<say mc>>You were protecting me?<</say>>
<<say krissy>>I wanted your life to be as normal as possible on Earth.<</say>>
<<say mc>>But, $krissy.refer... we're not on Earth anymore, and things certainly aren't normal.<</say>>
<<say krissy>>Rules are rules! You can't break them just because you move house. She will not take you away from me!<</say>>
<<say mc>>Why would our relationship take me away from you?<</say>>
<<think mc>>And why is she so insistent on keeping us apart?<</think>>
<<say krissy>>I'm not gonna listen to you trying to sweet talk me, okay. It's wrong because I said it is. I forbid it.<</say>>
<<think mc>>She can forbid it all she wants, I'm still gonna fuck $kenna.refer. But, I'd rather find a way to settle this without making her an enemy if possible. I don't want to choose between them; I shouldn't have to.<</think>>
<<say krissy>>I'll make sure she doesn't corrupt you, don't worry.<</say>>
<<think mc>>I'm pretty confident I'm beyond redemption on that score...<</think>>
<<say krissy>>Anyway, you'll see more of me around the hotel now... and I'll see more of you two. I'm watching.<</say>>
<<think mc>>I need to figure this out... maybe $lexi.refer or <<if $girlsavailable.includes('sophia')>>$sophia.refer<<else>>$derek.refer<</if>> can offer some help.<</think>>
<<notice>>$krissy.name won't work at $stripname until further notice.<</notice>>
<<button "Continue" househub>>
<<event "krissy" "hotel">>
<<set delete $schedules.krissy>>
<<run overrideSchedule('krissy', 0, 24, "")>>
<<run unassignWork('krissy')>>
<<set $brothel.delete('krissy')>>
<<time 0.5>>
<</button>>
<<case "planets">>
<<left2 _img>>
<<say "mc">>$krissy.refer, you used to travel a lot, right? Do you think you could give me the coordinates for some of the worlds you used to connect to?<</say>>
<<say "krissy">>It wouldn't do you much good, a lot of the worlds will be beyond your reach right now. We could spend years until we found one, or we could find several within months, but it'd be like finding a needle in a barn full of haystacks.<</say>>
<<say "mc">>What, why?<</say>>
<<say "krissy">>Different planets need different levels of power to connect to based on several factors, but most notably their population of travelers. The only surefire planet you could connect to that I know is Earth, and you already have that.<</say>>
<<say "mc">>But is there any quicker way?<</say>>
<<say "krissy">>Of course, $krissy.calls, otherwise I'd happily go through that haystack with you.<</say>>
<<say "mc">>Great, so what do I need to do?<</say>>
<<say "krissy">>Here I promised $kp.name I wouldn't reveal too much. The council want to ensure you're capable of putting the pieces together for yourself, sorry $krissy.calls. However, hopefully I can at least point you in the right direction. To arrive at this hub, you must be from a compatible world.<</say>>
<<say "mc">>Right, okay, thanks $krissy.refer.<</say>>
<<button "Continue" $return>>
<<like "krissy" 3>>
<<event "krissy" "planets">>
<<time 1>>
<</button>>
<<case "drunken">>
<<narrate>>You head over to your $krissy.them's home, not wanting to leave her alone at night. At least during the day, there are others about.<</narrate>>
<<say "krissy">>Ish thats you sexy? Come see... come... wife. Your wife see.<</say>>
<<narrate>>She can barely keep her head up as she incoherently calls you from the living room.<</narrate>>
<<think "mc">>She must think I'm <<if $girlsavailable.includes('sophia')>>$sophia.refer<<else>>$derek.refer<</if>>. Just how much did she drink?<</think>>
<<say "krissy">>Wanna watch me... watch me with another? Honey let's— honey let's play.<</say>>
<<set _uc = $krissy.refer.toUpperFirst()>>
<<say "mc">>_uc, it's me. $name!<</say>>
<<narrate>>She struggles to hold herself upright as she turns to face you, bleary-eyed.<</narrate>>
<<say "krissy">>He's not here... just us. Let's... fun...<</say>>
<<narrate>>Her eyes slowly close.<</narrate>>
<<center "krissy/drunk01.jpg">>
<<think "mc">>I've had plenty of indecent thoughts... but even I'm not depraved enough to take advantage of a drunken grieving woman who has mistaken me for someone else.<</think>>
<<narrate>>She starts snoring loudly as you wonder how the hell you get out of this situation.<</narrate>>
<<think "mc">>Ah, that makes it easier. Let's take her up to bed.<</think>>
<<narrate>>You scoop her up and take her upstairs, she mumbles in her drunken stupor.<</narrate>>
<<say "krissy" "" "(Mumbling)" "whisper">>$kenna.name...<</say>>
<<narrate>>The emotions well inside of you and your eyes become watery as you carry her to bed. You tuck her into bed, still fully clothed, and turn to leave when she suddenly grabs you by the wrist.<</narrate>>
<<say "krissy">>Stay... please...<</say>>
<<say "mc">>Of course, $krissy.refer. Let me just get you a glass of water.<</say>>
<<narrate>>When you return her clothes are tossed beside the bed leaving her stark naked with the duvet held back while snoring loudly. You place the glass on her bedside cabinet, tuck her in again, and settle into the uncomfortable chair just like the night before.<</narrate>>
<<button "Sleep" krissyanswers>>
<<temp "drunken02">>
<<time 3 h false>>
<</button>>
<<case "drunken02">>
<<narrate>>You're startled awake when you hear something clatter from the bathroom. Quickly you notice the bed is empty and rush out to check on $krissy.name.<</narrate>>
<<think "mc">>Shit, is she okay?<</think>>
<<narrate>>She's sat naked in the shower looking sorry for herself, though clearly still drunk.<</narrate>>
<<say "krissy" "" "(Mumbling)" "whisper">>...real... what if gone... I... my baby...<</say>>
<<say "mc">>Come on, $krissy.refer, let's get you back to bed.<</say>>
<<say "krissy">>I... jush hol... hold me.<</say>>
<<think "mc">>Maybe she's coming to terms with it. I don't know, seeing her like this just makes it feel so much more real. Maybe I'd been trying to throw it to the back of my mind too.<</think>>
<<narrate>>As you're trying to pull your $krissy.them up, she sits back firmly down, defiant.<</narrate>>
<<set _uc = $krissy.refer.toUpperFirst()>>
<<say "mc">>_uc, please, let's get you back to bed.<</say>>
<<say "krissy">>Bed? Right... right... here good.<</say>>
<<unavailable "kp">>
<div id="replace2">
<<button "Continue">>
<<set $councilmeet-->>
<<replace "#replace2">>
<<narrate>>To your shock she starts rubbing your crotch.<</narrate>>
<<vid "krissy/drunkbj01.mp4">>
<<say "mc">>_uc!<</say>>
<<say "krissy">>I just think maybe... what am I doing? I'm drunk, I'm drunk.<</say>>
<<think "mc">>Fuck. A part of me really wants to... but this is so wrong. It's the mixture of the grief, the drink, and probably some of my lust aspect. But... and maybe it's my own grief talking, I can't help but feel I want to be closer to her. Do... do I give in to temptation? Am I taking advantage of this... is she taking advantage of me even? Is this what she really wants, will the comfort ease her grief, or am I just making excuses?<</think>>
<<vid "krissy/drunkbj02.mp4">>
<<narrate>>She pulls out your dick while the thoughts are racing through your mind.<</narrate>>
<<think "mc">>Shit, I need to make a decision right now.<</think>>
<div id="replace">
<<choices>>
<<link "Let it happen" krissysex>>
<<temp "drunkbj">>
<</link>><br>
<<if $replay == false>>
<<link "Stop it">>
<<replace "#replace">>
<<narrate>>You stand back and pull your shorts back up.<</narrate>>
<<think "mc">>No, not like this. Though the thought sleeping with $krissy.refer has crossed my mind, this isn't the time to be giving into that temptation.<</think>>
<<say "krissy">>Wh... why?<</say>>
<<narrate>>You make a renewed effort to heave her up and take her to bed. She doesn't resist as before, merely allows you to carry her, staying silent. As you tuck her into bed yet again, you hear her mumble.<</narrate>>
<<say "krissy" "" "(Mumbling)" "whisper">>I... rock... world. Coulda...<</say>>
<<think "mc">>This is a side of her I've never seen. She's always enjoyed a drink to unwind, but nothing like this. I think I should speak to <<if $girlsavailable.includes('sophia')>>$sophia.refer<<else>>$derek.refer<</if>>.<</think>>
<<button "Sleep" krissyanswers>>
<<end>>
<<temp "apology">>
<</button>>
<</replace>>
<</link>>
<</if>>
<</choices>>
</div>
<</replace>>
<</button>>
</div>
<<case "apology">>
<<if $councilmeet < 0>><<set $councilmeet = 0>><</if>>
<<narrate>>You awake to the sounds of clattering downstairs, you rush down to find $krissy.name holding her head and groaning over a pile of pans on the floor.<</narrate>>
<<left2 "krissy/drunk02.jpg">>
<<say "krissy">>I drank far too much last night...<</say>>
<<think "mc">>Even hungover she still manages to look good.<</think>>
<<narrate>>She looks over at you and quickly averts her gaze.<</narrate>>
<<say "krissy">>I'm... I'm sorry you had to see me in that state, and for what I did. It was... highly inappropriate. I just... I just don't know what to think and you were there to comfort me.<</say>>
<<say "mc">>You knew it was me? I thought you thought I was <<if $girlsavailable.includes('sophia')>>$sophia.refer<<else>>$derek.refer<</if>>.<</say>>
<<narrate>>She can't even look you in the eye as she responds.<</narrate>>
<<say "krissy">>Huh, what makes you think that? No, I knew you were the one caring for me, got me the water, made sure I got to bed safely. Thank you.<</say>>
<<say "mc">>Do you want to talk about it?<</say>>
<<say "krissy">>No... I just... I don't know what to think. Logically she's gone... but my heart, my heart tells me otherwise and I have to cling on to that. But, last night the doubt got the better of me and I found solace at the bottom of a bottle. I'm sorry you saw me like that.<</say>>
<<say "mc">>Maybe we should tell <<if $girlsavailable.includes('sophia')>>$sophia.refer<<else>>$derek.refer<</if>>, at least?<</say>>
<<say "krissy">>No... I'm not strong enough for that. Let me process this first, please.<</say>>
<<say "mc">>And about what happened in the bathroom—<</say>>
<<say "krissy">>Bathroom? I don't recall anything in the bathroom. Did I vomit? I must have been really drunk. Sorry, $krissy.calls.<</say>>
<<narrate>>Still averting her gaze, she busies herself.<</narrate>>
<<think "krissy">>I can't believe I did that, he's my $krissy.you for crying out loud. No matter how much I craved the comfort it was just wrong to use him like that. God, I hope he can forgive me.<</think>>
<<say "mc">>Well, uhh...<</say>>
<<say "krissy">>Sorry, $krissy.calls, I've got a banging headache I'm going to go get some water and try to shake off this hangover. We'll talk later after $kp.name returns from the meeting, okay?<</say>>
<<say "mc">>Uh... yeah, sure.<</say>>
<<think "mc">>Does she really not recall what happened? Then what was she apologizing for being inappropriate for?<</think>>
<<button "Continue" townhub>>
<<corruptmax "krissy" 50>>
<<if $krissy.events.drunkbj == undefined>>
<<corrupt "krissy" 10>>
<<else>>
<<corrupt "krissy" 15>>
<</if>>
<<time 1>>
<<temp "">>
<</button>>
<<case "loss">>
<<narrate>>You awake, to your surprise, inside $krissy.name's bed.<</narrate>>
<<think "mc">>I fell asleep in the chair...<</think>>
<<narrate>>You look to your side, but the bed is otherwise empty. You get out, still dressed in yesterday's clothes, and head down the stairs.<</narrate>>
<<say "krissy">>Good morning, $krissy.calls. You hungry? I'll make breakfast.<</say>>
<<narrate>>You take a seat.<</narrate>>
<<think "mc">>Why does she seem so... bright?<</think>>
<<say "mc">>Is everything okay?<</say>>
<<left2 "krissy/hungry01.jpg">>
<<say "krissy">>Yes, I'm fine. I'm sorry for yesterday. I really overacted, huh? Of course $kenna.name is fine! She'll be somewhere doing something, she'll turn up when we least expect her.<</say>>
<<set _uc = $krissy.refer.toUpperFirst()>>
<<say "mc">>_uc, I don't think—<</say>>
<<say "krissy">>So, I don't think we should tell the others what happened. We'll only worry them needlessly.<</say>>
<<say "mc">>_uc, listen—<</say>>
<<say "krissy">>And thanks for staying with me. I moved you into the bed when I woke up this morning. That chair did not look comfortable!<</say>>
<<think "mc">>I don't know how to deal with this. Do I just go along with it? That feels wrong, but if she thinks her daughter is still out there somewhere, it may ease her grief.<</think>>
<<narrate>>You sigh, the empty void created in your heart yesterday isn't going anywhere, regardless of $krissy.name's actions.<</narrate>>
<<say "krissy">>Eat up!<</say>>
<<think "mc">>I think I should stay with her. She's clearly not coping with this well.<</think>>
<<say "mc">>Shall we spend the day together?<</say>>
<<say "krissy">>Oh, no. Don't be silly! You've got a hub to run and a new guest to meet.<</say>>
<<say "mc">>I can get someone—<</say>>
<<say "krissy">>Don't be silly, eat your breakfast then get off.<</say>>
<<think "mc">>I need to let her deal with this her own way, but be here for her when she needs me, I'll stay over again tonight. Keeping this from the others doesn't feel right, but maybe if I let $krissy.name work through it first, we can be there together for the others when they find out.<</think>>
<<button "Continue" townhub>>
<<task "waitress">>
<<available "waitress">>
<<run overrideSchedule('waitress', 8, 16, 'office')>>
<<run overrideSchedule('waitress', 16, 24, 'lounge')>>
<<time 0.5>>
<</button>>
<<case "eden">>
<<block _img>>
<<say "mc">>I wanted to talk to you about the events back in New Eden.<</say>>
<<narrate>>She looks away from you, avoiding eye contact.<</narrate>>
<<say "krissy">>Listen, I'd rather not. I'm your $krissy.them. But I'm still a woman with needs. We were in a small building, had I realized I'd never have—<</say>>
<<say "mc">>Wait, wait. I was talking about the stuff with the cabinet, what did you think I was talking about?<</say>>
<<narrate>>Her face goes bright red.<</narrate>>
<<say "krissy">>Forget it. Just, this whole situation has got me on edge.<</say>>
<</block>>
<<think "mc">>That definitely wasn't nothing. Did I miss something while we were there?<</think>>
<<say "mc">>Then maybe you need to relax a little? Have you relaxed since you got here?<</say>>
<<say "krissy">>No. How could I? Everything is just...<</say>>
<<narrate>>She throws her hands in the air.<</narrate>>
<<say "mc">>Okay. We're going to fix that.<</say>>
<<say "krissy">>Not until—<</say>>
<<say "mc">>No buts. You remember when I was little and you took care of me? I know you're stubborn, but let me take care of you for a little bit. Besides, I want to spend some time with you.<</say>>
<<say "krissy">>Stubborn?<</say>>
<<narrate>>You give her a sarcastic look.<</narrate>>
<<say "krissy">>Fine. Fine. But nothing too fancy!<</say>>
<<say "mc">>Alright, I'll let you know when.<</say>>
<<think "mc">>Hmm, I could send her for a massage maybe, but I'd like to spend some time with her and I don't think she'd appreciate it if I were the one giving her a massage. Maybe just a quiet drink at a bar?<</think>>
<<button "Continue" krissy>>
<<tech "bar">>
<<like "krissy" 3>>
<<lust "krissy" 2>>
<<corrupt "krissy" 1>>
<<event "krissy" "eden">>
<<time 1>>
<</button>>
<<case "bar">>
<<block _img>>
<<say "mc">>Get yourself ready, I've come to take you out, $krissy.refer.<</say>>
<<say "krissy">>Oh? Where are you taking me?<</say>>
<<say "mc">>To the bar. A nice place to have a drink and a quiet chat.<</say>>
<<say "krissy">>The bar? Won't it just be full of dancing drunks?<</say>>
<<say "mc">>It's a bar, not a night club. It'll be fine. Come on, let me treat you. I'll meet you there in thirty minutes.<</say>>
<</block>>
<<narrate>>She looks a bit skeptical.<</narrate>>
<<say "krissy">>Alright. I'll go get changed and play with my hair a little. It'll be nice to get out of my own head for a while, I guess.<</say>>
<<say "mc">>Great, I'll see you there!<</say>>
<<narrate>>You head back to the hotel to get changed yourself. You arrive at the bar around thirty-five minutes later, $krissy.name is already sat with a glass of wine waiting for you.<</narrate>>
<<center "krissy/bar01.jpg">>
<<say "mc">>Wow, $krissy.refer. You look great. I hope you haven't been here long.<</say>>
<<say "krissy">>No, no. Not at all. This is a lovely place, you've done well here, $krissy.calls.<</say>>
<<narrate>>The two of you chat. For you, it's been over $day days since you've had this level of conversation with her. For her, it wasn't long before the journey to New Eden. Yet both of you seem grateful of this opportunity, speaking almost like it's been years since you've caught up.<</narrate>>
<<say "krissy">>Gosh, you were such a terror as a boy. Nowhere near as bad as $kenna.name, obviously. She was a little devil! The two of you were inseparable.<</say>>
<<say "mc">>Haha, yeah, I guess it wasn't all bad.<</say>>
<<say "krissy">>But just look at what you've become. A patron... a caring patron. People actually come here for the hub... they're not just traveling through. You've built something amazing here, $krissy.calls. I'm proud of you.<</say>>
<<narrate>>You feel an emotion welling inside of you. Sheer unbridled happiness from her praise.<</narrate>>
<<say "krissy">>Let's get a few more drinks in. To you, $name!<</say>>
<<narrate>>You clank your drinks together and carry on drinking. You can't help but notice her top slide lower, your eyes drawn to her cleavage you feel your cock stirring.<</narrate>>
<<block "/krissy/bar02.jpg">>
<<say "krissy">>Ha, and then you remember how $anna.name reacted? I don't know she ever forgave you.<</say>>
<<say "mc">>Haha, yeah. Maybe that's why she's always had it out for me.<</say>>
<<narrate>>You continue to stare absent-mindedly at your $krissy.them's ample bosom.<</narrate>>
<<say "krissy">>You okay there? You seem lost in space.<</say>>
<<think "mc">>Fuck. I'm just stood staring at my $krissy.them's tits!<</think>>
<<say "mc">>Sorry, think I've had a bit to drink.<</say>>
<</block>>
<<say "krissy">>Yeah, we've had quite a few, huh? I'm gonna get off.<</say>>
<<narrate>>She stands up, wraps her hands around you and squeezes you tight.<</narrate>>
<<say "krissy">>I love you, $krissy.calls. No matter what, I want you to know I'm always here for you.<</say>>
<<say "mc">>Thanks, $krissy.refer. I love you too.<</say>>
<<narrate>>You feel her breasts pressing against you and as the two of you embrace you can't help but notice her ass in the mirror.<</narrate>>
<<think "mc">>Has she always been this hot? The hell am I thinking?!<</think>>
<<say "krissy">>And thank you for this. I really enjoyed it, I really did need some time to just... unwind, and I'm glad we got to spend some time together too.<</say>>
<<narrate>>She lets you go, and only now do you notice your boner.<</narrate>>
<<think "mc">>Ah, shit. I hope she didn't notice that.<</think>>
<<narrate>>She quickly looks at your crotch then away, saying nothing.<</narrate>>
<<think "mc">>Fuck.<</think>>
<<say "krissy">>Let's do this again soon. It'd be nice maybe if we could do something with everyone too.<</say>>
<<say "mc">>Yeah, that'd be good.<</say>>
<<narrate>>You watch her ass sway from side to side as she leaves the bar. You shake your head as she rounds the corner, trying to dismiss the intrusive thoughts.<</narrate>>
<<think "mc">>Well, that was certainly nice... but I really shouldn't be perving on my $krissy.them.<</think>>
<<button "Continue" homehub>>
<<event "krissy" "bar">>
<<like "krissy" 4>>
<<lust "krissy" 2>>
<<corrupt "krissy" 1>>
<<time 2>>
<</button>>
<<case "east">>
<<block _img>>
<<say "mc">>Can you tell me anything about the East?<</say>>
<<say "krissy">>I know the city, but not its people. At best I can tell you a bit about the leaders that were around when I was the planner.<</say>>
<<say "mc">>Okay, what do you know of them?<</say>>
<<say "krissy">>We've got a long journey ahead of us soon; lets discuss on the way there so it's fresh in your mind.<</say>>
<<say "mc">>But wouldn't it be useful for making plans now?<</say>>
<</block>>
<<say "krissy">>No. Until we see the state of the city and find out when and if we can speak to the leadership we can't really plan anything. Sure you could make a dozen, a hundred, a thousand plans for all eventualities, but by the time we've sat and around and done that, the army or assassins or whatever will be at the door.<</say>>
<<say "mc">>Yeah... I guess.<</say>>
<<say "krissy">>We assess the situation and plan once we have more information. Right now the plan is to get in, stay low and monitor what's happening so we can formulate a larger plan.<</say>>
<<think "mc">>Why do I feel I've lost control of this operation?<</think>>
<<button "Continue" krissy>>
<<like "krissy" 3>>
<<event "krissy" "east">>
<<time 1>>
<</button>>
<<case "kp">>
<<block _img>>
<<say "mc">>What can you tell me about $kp.name?<</say>>
<<say "krissy">>Doesn't suffer fools. Takes her job very seriously and clearly has a soft spot for you.<</say>>
<<think "mc">>And then some!<</think>>
<<say "mc">>Anything else?<</say>>
<<say "krissy">>Nothing you don't already know. She and I used to travel together. She's a good person, heart of gold, but you must earn her respect for her to treat you well. Clearly, you have done that.<</say>>
<</block>>
<<say "mc">>I don't think I did anything special.<</say>>
<<say "krissy">>I'm not saying this just because I am your $krissy.them, but you have done something very special here. $kp.name would not be so invested were you just a regular patron. She treats most patrons she inspects with contempt, calling them girl or boy purposefully to put them in their place.<</say>>
<<say "mc">>Ah, yeah, that was our first meeting.<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say "krissy">>Of course it was. But the fact she didn't continue that way means you earned her respect, remarkably quickly it seems, too.<</say>>
<<say "mc">>Do you think it's because she knew you were my $krissy.them?<</say>>
<<say "krissy">>No. I did not keep in touch with the council after I left to raise a family. You earned her respect entirely on your own merit.<<if $mc.events.eastreturn == undefined>> Rest assured, your harem...<</if>><</say>>
<<if $mc.events.eastreturn == undefined>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "krissy">>...will be perfectly safe while she's here.<</say>>
<<say "mc">>That's a relief to hear.<</say>>
<</if>>
<<button "Continue" krissy>>
<<like "krissy" 3>>
<<event "krissy" "kp">>
<<time 1>>
<</button>>
<<case "council2">>
<<block _img>>
<<if $krissy.events.council == undefined>>
<<say "mc">>What can you tell me about the council?<</say>>
<<else>>
<<say "mc">>Will you tell me what you know about the council now?<</say>>
<</if>>
<<say "krissy">>It's a group of six beings whose task is meant to be protecting the travelers and the gateway network.<</say>>
<<say "mc">>So can you tell me anything else about them, given you were a candidate?<</say>>
<<narrate>>She pauses for a moment.<</narrate>>
<<say "krissy">>A little, but probably not much that helps. I don't even know if it's the same council. Three of the positions are people who oversee certain systems or functions within the Gateway network. $kp.name being the head inspector for instance.<</say>>
<</block>>
<<say "mc">>What are the other systems or functions?<</say>>
<<say "krissy">>Well, the enforcers for one. There's also the Equalizers.<</say>>
<<say "mc">>Equalizers?<</say>>
<<say "krissy">>They're the ones who route traffic to your hub.<</say>>
<<say "mc">>Wait, what? I thought that was all automatic!<</say>>
<<say "krissy">>Not from your side at least. I don't really know how much the Equalizers do manually vs automatically, but when a traveler connects to the Gateway network their consciousness is routed to the relevant destination because of the Equalizers. Hub worlds exists to give their body a quick rest before continuing their journey. If the destination universe is particularly distant from their origin, they may have to make multiple hub visits. Every hub can reach roughly a hundred thousand universes.<</say>>
<<say "mc">>Wow. It does make me wonder how the whole network was created. If it needs a patron and an equalizer for a traveler to make use of it, how did they all find each other?<</say>>
<<say "krissy">>I don't know for sure, but I believe it's to do with the original travelers and them creating those roles to expand the network beyond themselves. I had the same intrigue you did when I learned of them, but the council never gave me the answer.<</say>>
<<say "mc">>Huh, hopefully I'll get a chance to learn. Okay, so the other members?<</say>>
<<say "krissy">>A patron and a traveler both serve to ensure all sides of any given argument or such like are considered. The sixth however, I have no idea what they are.<</say>>
<<say "mc">>A mysterious sixth position, huh? Maybe I should ask $kp.name.<</say>>
<<say "krissy">>I wouldn't bother her with it. I was told all the positions when I was a candidate for the traveler position apart from that one. All they told me was the sixth does not serve like the others. I've never really understood what that means, but unless you're a council member you won't get to know.<</say>>
<<say "mc">>How curious. Now I'm intrigued.<</say>>
<<say "krissy">>Of course you are.<</say>>
<<button "Continue" krissy>>
<<like "krissy" 3>>
<<event "krissy" "council2">>
<<time 1>>
<</button>>
<<case "council">>
<<block _img>>
<<say "mc">>What can you tell me about the council?<</say>>
<<say "krissy">>A group of six beings whose task is meant to be protecting the travelers and the gateway network.<</say>>
<<say "mc">>And their members?<</say>>
<<say "krissy">>I have met some of them. Remind me, what has $kp.name told you?<</say>>
<<say "mc">>Pretty much what you just said. Since the power surge everything with her seems to be "a discussion for another time".<</say>>
<</block>>
<<say "krissy">>Yes, she's always been like that. She'll happily share information once you've jumped through the relevant hoops. Her presence means the council are watching you. But, I'm going to have to agree with her on this one. There's no use worrying about the council while we have things to do in the East.<</say>>
<<say "mc">>Are my friends safe from them?<</say>>
<<narrate>>She chuckles.<</narrate>>
<<say "krissy">>The fact an enforcer showed up after your surge, and that you're still here and $kp.name is staying here should tell you everything you need to know.<</say>>
<<say "mc">>It should?<</say>>
<<say "krissy">>They're safe.<</say>>
<<say "mc">>That's all you're going to tell me?<</say>>
<<say "krissy">>Yes.<</say>>
<<think "mc">>She's doing that thing she does when she gets irritated with the conversation, simple answers. I better revisit this topic later as she suggests.<</think>>
<<button "Continue" krissy>>
<<like "krissy" 1>>
<<event "krissy" "council">>
<<time 1>>
<</button>>
<<case "cityplan">>
<<block _img>>
<<say "mc">>$lexi.name mentioned you were the city planner for the East.<</say>>
<<say "krissy">>The East? We were going to call it New Eden! Still a terrible name, mind.<</say>>
<<think "mc">>Actually, I've just referred to it as the East because that's what the strays did. I never actually asked any of the Eastlanders what they referred to it as.<</think>>
<<say "krissy">>But yes, I helped plan the place. I suspect it's a different beast now, but the foundations should all be the same. $lexi.name says they built it to my specification. That means there will be several ways for me to get in without going through the front door.<</say>>
<<narrate>>She pauses for a moment.<</narrate>>
<</block>>
<<say "krissy">>Though tell me, why aren't we going in the front door?<</say>>
<<say "mc">>Their people fear me and $gerald.name is riling them up for war, at least that's what we're assuming. Showing up like that may have me killed on the spot, or be a spark for war.<</say>>
<<say "krissy">>So you're going to sneak in and do what, exactly?<</say>>
<<say "mc">>I'm going to learn more about the place, the leadership and try to build diplomatic channels with them.<</say>>
<<say "krissy">>And you don't think they'll see your skulking around and trespassing as an act of war?<</say>>
<<say "mc">>Only if they find out about it. Though I'm hoping I can approach one of the more moderate members without causing alarm.<</say>>
<<say "krissy">>I don't know $va.name, but I know the others. $gerald.name is a no-go, the man is almost as stubborn as a mule.<</say>>
<<think "mc">>Pot calling kettle black.<</think>>
<<narrate>>She notices your expression.<</narrate>>
<<say "krissy">>Something to add?<</say>>
<<say "mc">>No, no. Please, continue.<</say>>
<<say "krissy">>$eva.name I think would be willing to meet with you if you can make contact. She'll not appreciate the cloak and dagger, but she'll understand it. $howard.name is a good man, but he has no backbone, if you show up out of the blue with him, he'll likely run. But maybe if you cornered him you could get him to listen. But the risk is knowing whether he's been agreeable to save his own skin or not.<</say>>
<<say "mc">>Wow. How did you know them so well?<</say>>
<<say "krissy">>I had to work closely with them when planning the city.<</say>>
<<say "mc">>Yeah, I guess that makes sense. Will you not get recognized there, then?<</say>>
<<say "krissy">>By the leadership? Sure, but that could be to our benefit. I would hope I still have their trust. But to the regular citizen I'll blend in.<</say>>
<<say "mc">>Okay, thanks $krissy.refer. That should be useful info.<</say>>
<<button "Continue" krissy>>
<<like "krissy" 3>>
<<event "krissy" "cityplan">>
<<taskdone "krissyinfo">>
<<time 1>>
<</button>>
<<case "buffer">>
<<block _img>>
<<say "mc">>Do you know much about buffers?<</say>>
<<say "krissy">>I thought I did until I heard how long I'd been stuck in one and that somehow accessing it has been gated behind your power level. Not something the council would have done; at least not as I knew them.<</say>>
<<say "mc">>How do they normally work?<</say>>
<<say "krissy">>It's simply the temporary storage place used while travelers cross from one realm to the next. Other than a patron's initial buffer, the only time you're in one for more than a second or two is when receiving a boon or transformation. Even then, it's still only a few seconds extra.<</say>>
<<say "mc">>$kp.name mentioned the initial buffer before too. What's so special about it?<</say>>
<</block>>
<<say "krissy">>When a patron first comes into their power, they can choose to take people with them. Often, to make them champions or tour guides. It's generally those close to them.<</say>>
<<if $mc.events.eastreturn == undefined>>
<<say "mc">>So the last person in the buffer...?<</say>>
<<block "krissy/home02.jpg">>
<<narrate>>A massive smile creeps across her face.<</narrate>>
<<say "krissy">>I'm almost certain it's her, yes. I can't wait to see her again.<</say>>
<<say "mc">>I remember us talking about her in the restaurant... $anna.name said she was in Spain, but $lexi.name filled in on the truth.<</say>>
<<say "krissy">>My apologies for that, we didn't know if you were able to travel yet, I wanted you to live as normal a life as you could if it wasn't possible. But yes, she decided to go traveling after she and I had a... disagreement.<</say>>
<<say "mc">>About what?<</say>>
<<say "krissy">>A story for another time. Right now, I'm just excited to see her again!<</say>>
<</block>>
<<say "mc">>Why don't we go get her right now?<</say>>
<<say "krissy">>No. I don't think that would be wise. We're about to journey East, and while $kp.name is extremely capable and I'm confident she can protect my family from basically anything, the buffer is still safer. I'd put them all back in if I could. Besides, it would be bittersweet to see her again then suddenly have to leave.<</say>>
<<say "mc">>I understand. It's weird though, the voice that sent me here never asked about her.<</say>>
<<narrate>>She raises an eyebrow.<</narrate>>
<<say "krissy">>Asked about her? What do you mean?<</say>>
<<say "mc">>Well, the voice asked about everyone else. She understood how you guys were related but couldn't quite sense my connection to you all. It was very peculiar but given everything else that's happened hardly the weirdest thing.<</say>>
<<say "krissy">>That was probably your ascension rite. Effectively where you choose who will come with you, though it sounds like this voice kind of made the choice for you. They probably inferred her relationship given it's the same as the others.<</say>>
<<say "mc">>Yeah, I guess.<</say>>
<<think "mc">>She was always my favorite of the three. Kind, caring, and loving. I was devastated when she moved out. She left me alone with $charlie.name and $anna.name!<</think>>
<<say "krissy">>I really do miss her.<</say>>
<<say "mc">>We'll just have to rush back here as soon as possible!<</say>>
<<say "krissy">>You're right. The quicker we resolve this East situation, the quicker I can see my daughter again!<</say>>
<</if>>
<<button "Continue" krissy>>
<<like "krissy" 4>>
<<event "krissy" "buffer">>
<<time 1>>
<</button>>
<<case "welcome">>
<<block "krissy/office02.jpg">>
<<say "krissy">>Okay, so my sister filled me in on most everything. But she said it would be best for you to talk to me about the East.<</say>>
<<say "mc">>Basically, I'm going there to negotiate with the leaders. They want my power, and seem set to go to war for it.<</say>>
<<say "krissy">>Over my dead body. Get Thomas on the line, I'll sort it right out!<</say>>
<<say "mc">>We haven't opened any lines of negotiation yet... who is Thomas?<</say>>
<<say "krissy">>Is he not one of the leaders?<</say>>
<</block>>
<<say "mc">>To my understanding the leadership consists of $gerald.name, $howard.name, $eva.name & $va.name.<</say>>
<<say "krissy">>$va.name? She's new. Must have taken Thomas' spot. Shame, that man would have done anything I told him.<</say>>
<<say "mc">>So will you help us?<</say>>
<<say "krissy">>Of course I will, $krissy.calls. But, I'm not staying in the hotel.<</say>>
<<say "mc">>Why's that?<</say>>
<<say "krissy">>Honestly, I'm surprised $anna.name and <<if $girlsavailable.includes('theodora')>>$theodora.name<<else>>$charlie.name<</if>> wanted to stay here given your harem. <<if $girlsavailable.includes('sophia')>>$sophia.name<<else>>$derek.name<</if>> is relatively nonplussed about anything going on, so not surprised they don't care; probably haven't even noticed. But for me? No, thank you. Who knows when I'll walk around a corner and have to witness my $krissy.you screwing someone?<</say>>
<<say "mc">>I... uhh...<</say>>
<<say "krissy">>I get it, okay? It's your aspect. But it doesn't mean I have to live around it.<</say>>
<<say "mc">>Got it, there are some abandoned buildings out—<</say>>
<<say "krissy">>My old house is still standing; I'm staying there. Do come visit me. I'll also spend some time at the surgery, I'm no doctor, but I know enough first aid to offer some triage should your travelers require it.<</say>>
<<say "mc">>That's great!<</say>>
<<say "krissy">>There's more I need to tell you, but now is probably not the time. We'll discuss the East... terrible name, very unimaginative, by the way... on our way out there. But I can probably tell you a little about the council, if $kp.name hasn't already.<</say>>
<<say "mc">>She's told me very little to be honest. I know there's six of them.<</say>>
<<say "krissy">>Ha, figures. She's never been one to offer information without reason.<</say>>
<<say "mc">>You know her?<</say>>
<<say "krissy">>A discussion for another time.<</say>>
<<button "Continue" housestuff>>
<<set $schedules.krissy = {
8: "home",
9: "home",
10: "home",
11: "home",
12: "home",
13: "home",
14: "home",
15: "home",
16: "home",
17: "home",
18: "docs",
19: "docs",
20: "docs",
21: "docs",
22: "home",
23: "home"
}>>
<<event "krissy" "welcome">>
<<taskdone "krissychat">>
<<run checkSchedules()>>
<</button>>
<</switch>><<set $scene = 0>>
<<set _active = "krissy">>
<<meet _active>>
<<set $return = returnLocation()>>
<<set _passage = _active+"answers">>
<<if $location == "home">>
<<set $return = "townhub">>
<</if>>
<<smallflirt _active>>
<<if $tasks.mommabear != undefined>>
<<opt "Plan with $founder.name" _passage founderplan>><</opt>>
<</if>>
<<if $kenna.events.upset == 1 && $krissy.events.kennaseek == undefined>>
<<opt "$kenna.name's Missing" _passage kmiss>><</opt>>
<</if>>
<<if $krissy.events.hotel >= 2>>
<<if $krissy.fanta == undefined>>
<<set $krissy.fanta = []>>
<</if>>
<<set _okaylocations = ['office', 'study', 'bedrooms', 'docs', 'gym']>>
<<if _okaylocations.includes($location) && !$krissy.fanta.includes($location)>>
<<opt "Hangout" _passage hang>><</opt>>
<</if>>
<</if>>
<<if $krissy.events.sdream == 4.1 && $krissy.events.kenna == undefined>>
<<opt "Seem Happy" _passage hwife>><</opt>>
<</if>>
<<if $krissy.events.sdream == 2>>
<<opt "The Dream" _passage interdream>><</opt>>
<</if>>
<<if $krissy.relief == 2>>
<<opt "Respect" _passage respect>><</opt>>
<</if>>
<<if $krissy.events.relationship != undefined && $krissy.events.relationship == "taboo" && $krissy.events.needs == undefined && $krissy.relief == undefined>>
<<opt "About $kenna.name" _passage needs>><</opt>>
<</if>>
<<if $krissy.events.relationship != undefined && $krissy.events.relationship != "taboo" && $krissy.events.kenna == undefined>>
<<opt "$kenna.name" _passage kenna>><</opt>>
<</if>>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $krissy.events.planets == undefined>>
<<link "Planets" krissyanswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if $krissy.events.buffer == undefined && $location == "home">>
<<link "Buffer" krissyanswers>>
<<temp "buffer">>
<</link>><br>
<</if>>
<<if $mc.events.eastreturn == undefined>>
<<if $krissy.events.cityplan == undefined>>
<<link "City Planning" krissyanswers>>
<<temp "cityplan">>
<</link>><br>
<</if>>
<<if $krissy.events.council == undefined && $mc.events.councilmet == undefined>>
<<link "Council" krissyanswers>>
<<temp "council">>
<</link>><br>
<</if>>
<<if $krissy.events.east == undefined>>
<<link "East" krissyanswers>>
<<temp "east">>
<</link>><br>
<</if>>
<<else>>
<<if $krissy.events.eden == undefined>>
<<link "New Eden" krissyanswers>>
<<temp "eden">>
<</link>><br>
<</if>>
<<if $krissy.events.bar == undefined && $location == "home" && $krissy.events.eden != undefined>>
<<link "Bar" krissyanswers>>
<<temp "bar">>
<</link>><br>
<</if>>
<<if $krissy.events.council2 == undefined && $mc.events.councilmet == undefined>>
<<link "Council" krissyanswers>>
<<temp "council2">>
<</link>><br>
<</if>>
<</if>>
<<if $krissy.events.kp == undefined>>
<<link "$kp.name" krissyanswers>>
<<temp "kp">>
<</link>><br>
<</if>>
<<link "Never mind" $return>><</link>><<scene>>
<<switch $tempvar>>
<<case "brittwatch">>
<<if $replay == true>>
<<set _img = "britt/lounge01.jpg">>
<<else>>
<<set _img = getImg('britt')>>
<</if>>
<<left2 _img>>
<<say mc>>Were you talking to $krissy.refer recently... about watching her?<</say>>
<<say britt>>Yeah, she's a hot piece of ass... I'd love to watch 'er getting stuffed with your fat cock!<</say>>
<<think mc>>So eloquently put...<</think>>
<<say mc>>Well... you got time now?<</say>>
<<narrate>>A grin creeps across her face.<</narrate>>
<<say britt>>Fuck yeah! I'll grab 'er. Meet me in ten!<</say>>
<<cont "krissysex" "bwatch01">>
<<case "bwatch01">>
<<narrate>>As you approach the lounge you can hear $krissy.name and $britt.name talking.<</narrate>>
<<say britt>>Fuck, you're hot.<</say>>
<<say krissy>>Ha, you think so? Just wait until I'm riding his cock!<</say>>
<<narrate>>You peer through the door and spy her on the sofa, happily posing for $britt.name in her lingerie.<</narrate>>
<<center "krissy/bwatch01.jpg">>
<<think mc>>$britt.name's right about that.<</think>>
<<narrate>>You push the door open and head inside.<</narrate>>
<<say britt>>There 'e is! I wo about to jump 'er myself!<</say>>
<<narrate>>$krissy.name gets up to greet you, pulling your face down to hers and locking your lips.<</narrate>>
<<say britt>>Mmm, that's so hot.<</say>>
<<narrate>>$krissy.name winks at $britt.name then tugs your jeans down, your hard cock whacking into her chin as it escapes.<</narrate>>
<<say britt>>Fuckin' yes!<</say>>
<<cont "krissysex" "bwatch02">>
<<case "bwatch02">>
<<narrate>>$krissy.name gets on her knees before you and looks up at you while her tongue rests on your helm.<</narrate>>
<<vid "krissy/lounge01.mp4">>
<<say krissy>>I'm gonna tease it.<</say>>
<<cont "krissysex" "bwatch03">>
<<case "bwatch03">>
<<vid "krissy/lounge02.mp4">>
<<narrate>>As her lips wraps around your glans you hear $britt.name undoing her belt.<</narrate>>
<<say krissy>>Oh, god, it's so perfect.<</say>>
<<say krissy>>I'm gonna get my pretty pink lipstick all over your cock.<</say>>
<<say britt>>Oh, fuck yeah!<</say>>
<<cont "krissysex" "bwatch04">>
<<case "bwatch04">>
<<vid "krissy/lounge03.mp4">>
<<say krissy>>I love this cock. I worship this cock. <br>And these...<</say>>
<<narrate>>She tickles your tip with her nipples.<</narrate>>
<<say krissy>>...belong right here.<br>Ohhh~ so sensitive on my nipple.<</say>>
<<say krissy>>Just stick your cock right there.<</say>>
<<cont "krissysex" "bwatch05">>
<<case "bwatch05">>
<<narrate>>She squeezes her tits around your cock and slowly moves up and down.<</narrate>>
<<vid "krissy/lounge04.mp4">>
<<say krissy>>You like that?<</say>>
<<say krissy>>Get it nice and wet.<</say>>
<<say britt>>Oh, I'm fuckin' downin'!<</say>>
<<say krissy>>I love titty fucking. Especially when your cock is so big... so perfect. The head of your cock is like... so big and round.<</say>>
<<say britt>>Yes, yes, keep going!<</say>>
<<narrate>>$krissy.name grins while tossing off her panties in $britt.name's direction, then gestures you to the floor.<</narrate>>
<<cont "krissysex" "bwatch06">>
<<case "bwatch06">>
<<narrate>>To your surprise, the teasing doesn't stop. Instead of mounting you, she holds your manhood with her feet.<</narrate>>
<<vid "krissy/lounge09.mp4">>
<<narrate>>She looks almost possessed as she furiously runs her feet up and down your shaft.<</narrate>>
<<say mc>>Fuck me!<</say>>
<<narrate>>Her pussy glistening, teasing you even more, you can barely control yourself.<</narrate>>
<<say britt>>Please, please, just fuck already!<</say>>
<<narrate>>$krissy.name smirks, turns her back to you and shakes her ass in your direction.<</narrate>>
<<cont "krissysex" "bwatch06.1">>
<<case "bwatch06.1">>
<<narrate>>You can barely hold back after all that teasing you. Your ram into her and pound furiously.<</narrate>>
<<vid "krissy/lounge05.mp4">>
<<say krissy>>Mmm~I want to grab your balls; pull your dick right into me. Pull it right in there.<</say>>
<<narrate>>Behind you, $britt.name starts to moan as the sloppy sounds of her masturbation speed up.<</narrate>>
<<say krissy>>Right there, fuck.<</say>>
<<cont "krissysex" "bwatch07">>
<<case "bwatch07">>
<<left2 "krissy/lounge06.mp4" v>>
<<say britt>>Oh, my god, yes!<</say>>
<<narrate>>Your movements are entirely guided by lust.<</narrate>>
<<say krissy>>Keep going!<</say>>
<<narrate>>Your $krissy.them's eyes looking up at you as you piston away, and the sounds of $britt.name's fapping behind you urging you closer to orgasm.<</narrate>>
<<say krissy>>Oh, my fuck, oh yes! $krissy.calls!<</say>>
<<narrate>>Her pussy tightens around your manhood, she bites down hard on her bottom lip and she slaps down repeatedly on the sofa with her free hand.<</narrate>>
<<say britt>>I'm close... I'm close, keep fucking, keep fucking!<</say>>
<<cont "krissysex" "bwatch08">>
<<case "bwatch08">>
<<narrate>>She pushes you back on to the floor, giving herself a brief respite to compose herself before she lowers herself to your dick.<</narrate>>
<<vid "krissy/lounge08.mp4">>
<<say krissy>>Oh, ohh~ I like this so much! So much...<</say>>
<<narrate>>She slowly picks up the pace, her moans and gasps becoming ever more frequent.<</narrate>>
<<cont "krissysex" "bwatch09">>
<<case "bwatch09">>
<<vid "krissy/lounge07.mp4">>
<<say krissy>>I can just fuck you like that anytime that I want.<</say>>
<<narrate>>As she bounces on your dick, her kamarband jiggles and rattles.<</narrate>>
<<say krissy>>It sounds like Christmas!<</say>>
<<say mc>>Oh, fuck, keep going! My gift is nearly ready!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<narrate>>She laughs, grabs your cock, and jerks you to completion.<</narrate>>
<<vid "krissy/lounge10.mp4">>
<<say mc>>Fuuuuck, yes, fucking yes!<</say>>
<<say britt>>Yeah... give your $krissy.them that dirty fuckin' seed. Ahh~!<</say>>
<<narrate>>$krissy.name chuckles again as both you and $britt.name are overcome with pleasure.<</narrate>>
<<say krissy>>It's always better with an audience huh? But even better when it's someone you know and you can watch them getting off on it too!<</say>>
<<if checkUnlocks('movie', 'bwatch', 'krissy') == false>>
<<say britt>>Fuck that was good... but what the hell is Christmas?<</say>>
<<say mc>>It's a holiday on my world where everyone gives each other gifts. Originally it was a religious thing... but it kinda morphed into more than that and it's become more a celebration of family and friends.<</say>>
<<say britt>>Lots of fuckin'?<</say>>
<<narrate>>You chuckle.<</narrate>>
<<say mc>>I mean... yeah, but that's not really the point of the holiday.<</say>>
<<say britt>>It's the only fuckin' gift I want! I'mma look into it.<</say>>
<<narrate>>You shrug.<</narrate>>
<</if>>
<<unlock "krissy" "bwatch">>
<<button "Continue" housestuff>>
<<set $location = "lounge">>
<<corrupt "krissy" 15>>
<<lust "krissy" 5>>
<<lust "britt" 4>>
<<time 1.5>>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "sdream01">>
<<say mc>>Here... it's a safe space. You and I... alone.<</say>>
<<narrate>>You see her eyes dart around.<</narrate>>
<<left2 "krissy/dream01.jpg">>
<<if $krissy.relief == 4.4>>
<<say krissy>>You came back... you are real, right?<</say>>
<<else>>
<<say krissy>>This... dream... you're real?<</say>>
<</if>>
<<narrate>>You nod.<</narrate>>
<<say mc>>And you seem to have locked yourself in a cage... which is probably a good metaphor for your stubbornness!<</say>>
<<say krissy>>I am not stub—<</say>>
<<say mc>>Show me. Open the gate.<</say>>
<<narrate>>You lower your trousers as she looks at you confused.<</narrate>>
<<say krissy>>And this... place is our own, nobody would ever know?<</say>>
<<think mc>>I've got her...<</think>>
<<say mc>>Yes. Just you and I... all the senses, every moment vivid and real... but within our own private dreamscape.<</say>>
<<narrate>>She swings the gate open carefully and looks nervous as she gets on her knees.<</narrate>>
<<if $krissy.events.kennapform == 1 || $replay == true || $krissy.tabooalt != undefined>>
<<cont "krissysex" "sdream04">>
<<else>>
<<cont "krissysex" "sdream02">>
<</if>>
<<case "sdream02">>
<<narrate>>All signs of anxiety are lost when her lips wraps around your cock.<</narrate>>
<<vid "krissy/sdream02.mp4">>
<<say mc>>Ahhh, yeah, that feels good.<</say>>
<<say krissy>>I can be such a bad girl for you.<</say>>
<<think mc>>Holy shit!<</think>>
<<say mc>>Yeah? Show me!<</say>>
<<narrate>>She spins around, parading her ass at you.<</narrate>>
<<vid "krissy/sdream03.mp4">>
<<cont "krissysex" "sdream03">>
<<case "sdream03">>
<<narrate>>As you feel the thrill of your cock sliding inside her, the world fades away and the dream ends.<</narrate>>
<<think mc>>For fuck's sake! Why did it end?!<</think>>
<<event krissy sdream 2>>
<<set $dreamer.delete('krissy')>>
<<cont "sleep" "focused">>
<<case "sdream00">>
<<left2 "krissy/dream01.jpg">>
<<say krissy>>Get me out of my cage?<</say>>
<<narrate>>You grin.<</narrate>>
<<think mc>>Finally!<</think>>
<<say krissy>>As petty as it is, I want you first, and it's not like you don't want me too...<</say>>
<<say mc>>Oh, I think I can help.<</say>>
<<say krissy>>Now... where did we leave off?<</say>>
<<narrate>>She swings the gate open and looks up at you, a sly grin on her face, as she gets on her knees.<</narrate>>
<<cont "krissysex" "sdream04">>
<<case "sdream04">>
<<vid "krissy/sdream02.mp4">>
<<say mc>>Ahhh, yeah, that feels good.<</say>>
<<say krissy>>I can be such a bad girl for you.<</say>>
<<narrate>>You get a weird sense of déjà vu.<</narrate>>
<<say mc>>Yeah? Show me!<</say>>
<<narrate>>The cage vanishes, and she stretches out as a bed forms beneath her.<</narrate>>
<<cont "krissysex" "sdream05">>
<<case "sdream05">>
<<vid "krissy/sdream04.mp4">>
<<say krissy>>I love to suck it up in my mouth.<</say>>
<<narrate>>You hold her head and guide her up and down your shaft.<</narrate>>
<<say mc>>Oh, yeah. Turn around, let me give you what you're really craving.<</say>>
<<narrate>>She grins and eagerly spins around, waggling her ass at you expectantly.<</narrate>>
<<cont "krissysex" "sdream06">>
<<case "sdream06">>
<<narrate>>You thrust inside. Her pussy gripping you tightly as she gasps with excitement.<</narrate>>
<<vid "krissy/sdream05.mp4">>
<<narrate>>You just hold there, reveling in the moment, but her impatience gets the better of her, and she's quickly twerking on your cock.<</narrate>>
<<say mc>>Yes, $krissy.refer, show me how much you love that cock!<</say>>
<<say krissy>>Ohhhh~ it's so good!<</say>>
<<cont "krissysex" "sdream07">>
<<case "sdream07">>
<<vid "krissy/sdream06.mp4">>
<<narrate>>Your lustful eyes meet, both of you lost in the moment as a wave of euphoria overcomes you.<</narrate>>
<<say mc>><<uf $krissy.refer>>... oh, my god...<</say>>
<<say krissy>>I know, $krissy.calls... it feels so good.<</say>>
<<cont "krissysex" "sdream08">>
<<case "sdream08">>
<<vid "krissy/sdream07.mp4">>
<<narrate>>She moans and writhes as she rides your dick. Her breath becoming ever shorter and her moans ever louder.<</narrate>>
<<say mc>>Yes, $krissy.refer... that's... yes... I'm so close!<</say>>
<<narrate>>She shivers with excitement at your words, and a few moments later her grip on you tightens, she looses balance, falling forward, while screaming your name.<</narrate>>
<<say krissy>>YES! <<uc $krissy.calls>>!<</say>>
<<narrate>>Her body quivers under your touch and she slams her fist repeatedly into the pillow.<</narrate>>
<<say mc>>Fuuuck!<</say>>
<<narrate>>You wrap your arms around her waist and pull her back upright before pounding away upwards, eager to find your own end.<</narrate>>
<<say mc>>Yes, yes, yea! Fucking take it, $krissy.refer... yes!<</say>>
<<narrate>>You explode into her, your warm goo filling her pussy and oozing down her thigh.<</narrate>>
<<say mc>>Holy fucking shit.<</say>>
<<narrate>>You release her and fall forward on to the bed, landing beside her.<</narrate>>
<<say krissy>>That was... amazing, $krissy.calls. Wow.<</say>>
<<narrate>>You grin and say nothing as you just stare dreamily into her eyes.<</narrate>>
<<narrate>>The moment passes as your dreamworld is torn asunder by the rudeness of the waking world.<</narrate>>
<<unlock "krissy" "sdream">>
<<button "Continue" sleep>>
<<temp "focused">>
<<lust "krissy" 10>>
<<corrupt "krissy" 15>>
<<corruptmax "krissy" 150>>
<<like "krissy" 5>>
<<if $replay == false>>
<<set $dreamer.delete('krissy')>>
<<brothel "krissy">>
<</if>>
<<if $krissy.tabooalt == true>>
<<set $krissy.tabooalt = 'done'>>
<</if>>
<<event "krissy" "sdream" 4>>
<</button>>
<<case "peep201">>
<<vid "krissy/peep201.mp4">>
<<narrate>>Clearly not done, the vibrator starts again a few moments later.<</narrate>>
<<think mc>>Just you wait... you won't need toys soon.<</think>>
<<cont "krissysex" "peep202">>
<<case "peep202">>
<<vid "krissy/peep202.mp4">>
<<narrate>>Your cock fights for freedom as she continues.<</narrate>>
<<say krissy>>Ohhh~ fuck, fuck, ffffuck!<</say>>
<<think mc>>Yes... that's it!<</think>>
<<say krissy>>Oh! Oh, my god.<</say>>
<<narrate>>She reaches over and grabs another toy.<</narrate>>
<<cont "krissysex" "peep203">>
<<case "peep203">>
<<vid "krissy/peep203.mp4">>
<<narrate>>She holds the wand to her clit while furiously sliding the dildo in and out of her pussy.<</narrate>>
<<say krissy>>Yes! Yes! Just like that, just like that, $name, yes!<</say>>
<<narrate>>You see the shock on her eyes, but she just continues, speeding up even.<</narrate>>
<<think mc>>I've got her. That's it. I'm going in.<</think>>
<<narrate>>You push the door open.<</narrate>>
<<unlock "krissy" "peep2">>
<<button "Continue" "krissysex">>
<<lust "krissy" 3>>
<<corrupt "krissy" 4>>
<<temp "peep204">>
<</button>>
<<case "peep204">>
<<narrate>>You feel a hand on your shoulder.<</narrate>>
<<if $girlsavailable.includes('sophia')>>
<<set _who = "sophia">>
<<set _refer = $sophia.calls>>
<<set _nm = $sophia.name>>
<<else>>
<<set _who = "derek">>
<<set _refer = $derek.calls>>
<<set _nm = $derek.name>>
<</if>>
<<say _who>>Why are you stood at $krissy.name's door like that, _refer?<</say>>
<<narrate>>$krissy.name gasps, drops the toys, and grabs the pillows to cover herself up. You're stood in the doorway, the door half open, with $krissy.name looking angry at you on one side and _nm looking puzzled on the other.<</narrate>>
<<think mc>>Fuck, fuck, fuck, fuck! Okay... I can play this off...<</think>>
<<say mc>>I was just walking by and I heard $krissy.refer call my name.<</say>>
<<say krissy>>Oh, my god. No! NO!<</say>>
<<narrate>>_nm peers inside the door.<</narrate>>
<<if $girlsavailable.includes('sophia')>><<left2 "sophia/krissysee.jpg">><</if>>
<<say _who>>Oh, honey, were you...?<</say>>
<<narrate>>She bursts out laughing.<</narrate>>
<<say _who>>And, _refer, you were enjoying the show?<</say>>
<<narrate>>Her laughter intensifies.<</narrate>>
<<say mc>>No, no. I was just walking by and she called me and...<</say>>
<<say _who>>You were stood there for a good five minutes.<</say>>
<<think mc>>Fuck.<</think>>
<<say _who>>And honey, what happened to all those rules and sensibilities?<</say>>
<<say krissy>>I didn't... I didn't call his name.<</say>>
<<say _who>>Honey... I heard you.<</say>>
<<narrate>>You and $krissy.name look at each other. She immediately turns away, embarrassed.<</narrate>>
<<say _who>>Did you enjoy it, _refer?<</say>>
<<say mc>>What do you mean?<</say>>
<<say krissy>><<uc _nm>>!<</say>>
<<say _who>>Watching your $krissy.them masturbate while calling your name? Did it turn you on?<</say>>
<<say krissy>><<uc _nm>>! Stop this!<</say>>
<<say _who>>Honey, dear, we need to address this. Otherwise, things will just fester and get worse.<</say>>
<<think mc>>I guess there's no backing down now.<</think>>
<<say mc>>Yeah...<</say>>
<<narrate>>$krissy.name shoots daggers at you while _nm starts laughing again.<</narrate>>
<<say _who>>Oh, this is precious. Everything you did back on Earth to protect him from the so-called corruption of the other worlds, and here he is, lusting after you regardless... and here you are, masturbating while thinking of him. I think you failed, honey.<</say>>
<<say krissy>>It was just a mistake. I didn't mean– it's nothing.<</say>>
<<say _who>>Honey, don't lie to yourself. <<uf _refer>>, will you give us the room? As amused as I am, I think she and I need to have a little talk.<</say>>
<<say mc>>Right... yeah...<</say>>
<<say _who>>Oh, just one thing, though. Do you wanna fuck her?<</say>>
<<say krissy>><<uc _nm>>! For fuck's sake!<</say>>
<<say _who>>And be honest.<</say>>
<<think mc>>Why do I feel like I've just gained an ally?<</think>>
<<say mc>>I mean... yeah... kinda...<</say>>
<<say krissy>>Oh my god! I'm your $krissy.them!<</say>>
<<say _who>>I appreciate that honesty, _refer. Leave it with me, okay? We'll talk later.<</say>>
<<say krissy>>What do you mean leave it with you? What are you even saying?<</say>>
<<narrate>>_nm gives you a wink and ushers you out the door.<</narrate>>
<<think mc>>Okay... this is wild.<</think>>
<<narrate>>From behind the closed door, you hear $krissy.name.<</narrate>>
<<say krissy>>What the hell, _nm?! You know the rules I have on this!<</say>>
<<narrate>>You decide to leave them to it.<</narrate>>
<<button "Continue" housestuff>>
<<corruptmax "krissy" 100>>
<<corrupt "krissy" 14>>
<<corrupt _who 4>>
<<set $krissy.relief = 5>>
<<if $krissy.tabooalt != undefined || !$girlsavailable.includes('kenna') || $kenna.events.upset != undefined>>
<<set $kenna.events.krissy = 1>>
<</if>>
<<time 1>>
<</button>>
<<case "dream01">>
<<narrate>>Your dream takes you to a vaguely familiar scene. Perhaps a dream you've had long ago, a mystery woman toying with your balls while you rub her clit.<</narrate>>
<<vid "krissy/dream01.mp4">>
<<say mc>>Yes, lick those fucking balls!<</say>>
<<case "dream02">>
<<narrate>>The woman takes your cock into her mouth revealing her face.<</narrate>>
<<vid "krissy/dream04.mp4">>
<<say mc>>$krissy.refer?!<</say>>
<<narrate>>Her eyes open wide as she looks at you confused by your sudden outburst, but continues to suck.<</narrate>>
<<if $completeTasks.includes('shareddreams2')>>
<<think mc>>This doesn't feel like a shared dream... yet I feel pretty lucid...<</think>>
<<else>>
<<think mc>>I'm dreaming of fucking my $krissy.them?<</think>>
<</if>>
<<narrate>>The thought makes the fantasy fade, as if you've broken some magical spell by perceiving it's not real.<</narrate>>
<<case "dream03">>
<<event krissy "dream">>
<<event krissy "hotel" 3>>
<<narrate>>You groggily open your eyes.<</narrate>>
<<think mc>>I know I've had sex dream about her before, but this felt... different... like I willed it to happen rather than a dream I was thrust into.<</think>>
<<think mc>>Shit, everything I've seen and done on since coming here... is trying to fuck $krissy.refer taking it too far?<</think>>
<div id="replace">
<<choices>>
<<link "Push it further">>
<<replace "#replace">>
<<think mc>>Apparently I'm her favorite... so let's really test that theory. It probably won't be easy, she's extremely stubborn, but maybe I can use this rivalry she has with $kenna.refer to my advantage. <<if $krissy.events.drunkbj != undefined>>And, while I know she was grieving, but there was that blowjob when she was drunk outta her mind, so maybe there was more to it.<</if>> Either way, I need to tread carefully, if I get this wrong, it will destroy our current relationship.<</think>>
<</replace>>
<<event krissy "relationship" "taboo">>
<<script>>
$('#button').show();
<</script>>
<</link>><br>
<<link "Stay platonic">>
<<replace "#replace">>
<<think mc>>I can't take it that far, not with her. Not now.<</think>>
<</replace>>
<<event krissy "relationship" "friends">>
<<script>>
$('#button').show();
<</script>>
<</link>><br>
<<link "Stick to watching">>
<<replace "#replace">>
<<think mc>>I absolutely get off on watching her, but I can't cross that boundary, not yet, maybe not ever.<</think>>
<</replace>>
<<event krissy "relationship" "peep">>
<<script>>
$('#button').show();
<</script>>
<</link>>
<</choices>>
</div>
<br>
<<notice>>If you choose against pursuing a carnal relationship, you can collect your thoughts at night and change your mind later.<</notice>>
<<case "dream04">>
<<narrate>>You drift back to sleep.<</narrate>>
<<case "Influence">>
<<center "krissy/krissycrop.jpg">>
<<if checkUnlocks('movie', 'pf01', 'krissy') == true>>
<<choices "Who should $krissy.name perform with?">>
<div class="flex">
<<if $kyler.performed == undefined>>
<div class="girlChoice">
<<link '<<center "kyler/badge.jpg">>$kyler.name' krissysex>>
<<temp "kyler02">>
<</link>>
</div>
<<else>>
<div class="girlChoice" style="cursor: default;">$kyler.name already performed today.</div>
<</if>>
</div>
<<link "Never mind" mngbrothel>><</link>>
<</choices>>
<<else>>
<<think "mc">>It's obvious she wants to perform with Howard's friend. But, am I really okay with my $krissy.them performing with another woman in front of god knows who?<</think>>
<div id="replace">
<<choices>>
<<link "Fuck yeah" krissysex>>
<<temp "kyler">>
<</link>><br>
<<link "Fuck no" mngbrothel>>
<</link>>
<</choices>>
</div>
<</if>>
<<case "kyler">>
<<narrate>>You ask Dave if he has the info for Howard's friend. He confirms that he does, and sends someone to New Eden to relay the message. To your surprise, the friend returns with the messenger twenty minutes later.<</narrate>>
<<meet "kyler">>
<<left2 "kyler/meet01.png">>
<<say "kyler" "???">>Hey, you must be $name. I'm <<textbox "$kyler.name" $kyler.name>>.<</say>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#textbox-kylername').change(function() {
$('.kyler .speakername').html($('#textbox-kylername').val());
});
})
<</script>>
<<think "mc">>Fuck me, I don't think I've met an ugly person since I set foot on this world. Everyone is so fucking gorgeous!<</think>>
<<say "mc">>Yes, an absolute pleasure to meet you.<</say>>
<<say "kyler">>Oh, you've not had the pleasure yet.<</say>>
<<narrate>>She grins, then continues before you can respond.<</narrate>>
<<say "kyler">>So, Howard used to talk about $krissy.name all the time. I'd love to give her a good massage... if you know what I mean, and I know she loves to be watched. I just want to see if she's as amazing as the rumors. When the messenger said she was here working right now, I just had to come immediately!<</say>>
<<say "mc">>Well, you'll need to talk her into it, but I'm sure I can bring some supplies from the spa over and get something setup. Why don't you go talk to her, see how things go? Dave and I will set things up in case she agrees. Uhh, probably best not to tell her I'm here, though.<</say>>
<<say "kyler">>This is gonna be so fun! I hope she's as good as Howard said.<</say>>
<<narrate>>She skips off to find $krissy.name before you can even tell her where to go.<</narrate>>
<<think "mc">>Hopefully I can have some fun with her myself too!<</think>>
<<say "dave">>She's a live one. I've not seen her perform for decades, though. She was a real crowd pleaser, even though she rarely did shows.<</say>>
<<cont "krissysex" "kyler01">>
<<case "kyler01">>
<<narrate>>Not long after you and Dave finish setting up, you hear an announcement through the sound system.<</narrate>>
<<say "krissy" "" "(Through Speakers)">>We have a special unscheduled show, join us in room four for some massage therapy with $krissy.name and $kyler.name in ten minutes.<</say>>
<<say "mc">>Wow, she works quick!<</say>>
<<say "dave">>Sounds like $krissy.name doesn't want to hang around either.<</say>>
<<narrate>>You distance yourself from the room, and wait a while after the show has started before going back in, blending in with the crowd.<</narrate>>
<<cont "krissysex" "kyler02">>
<<case "kyler02">>
<<set $krissy.performed = 1>>
<<set $kyler.performed = 1>>
<<vid "krissy/kk01.mp4">>
<<cont "krissysex" "kyler03">>
<<case "kyler03">>
<<vid "krissy/kk02.mp4">>
<<cont "krissysex" "kyler04">>
<<case "kyler04">>
<<vid "krissy/kk03.mp4">>
<<cont "krissysex" "kyler05">>
<<case "kyler05">>
<<vid "krissy/kk04.mp4">>
<<cont "krissysex" "kyler06">>
<<case "kyler06">>
<<vid "krissy/kk05.mp4">>
<<cont "krissysex" "kyler07">>
<<case "kyler07">>
<<vid "krissy/kk06.mp4">>
<<cont "krissysex" "kyler08">>
<<case "kyler08">>
<<vid "krissy/kk07.mp4">>
<<cont "krissysex" "kyler09">>
<<case "kyler09">>
<<vid "krissy/kk08.mp4">>
<<cont "krissysex" "kyler10">>
<<case "kyler10">>
<<vid "krissy/kk09.mp4">>
<<unlock "kyler" "pf01">>
<<unlock "krissy" "pf01">>
<<perform "krissy" "kyler">>
<<button "Continue" mngbrothel>>
<<corrupt "krissy" 4>>
<<lust "krissy" 4>>
<<time 2>>
<</button>>
<<case "drunkbj">>
<<think "mc">>Maybe it's what we both need, just something to ease the burden of this secret we share.<</think>>
<<vid "krissy/drunkbj03.mp4">>
<<narrate>>You say nothing as she starts stroking your cock, a mixture of guilt and pleasure heightening your senses.<</narrate>>
<<say "krissy">>Ohhh baby. I just never... ah... I'm sorry, I just...<</say>>
<<narrate>>The feeling of her breath over your helmet as she guides your cock into her mouth fills you with excitement, your previous misgivings slowly fading away.<</narrate>>
<<cont "krissysex" "drunkbj02">>
<<case "drunkbj02">>
<<narrate>>Her tongue wraps around your glans as she rubs your thigh with her free hand.<</narrate>>
<<vid "krissy/drunkbj04.mp4">>
<<narrate>>She looks up at you briefly, her eyes full of guilty gratitude.<</narrate>>
<<cont "krissysex" "drunkbj03">>
<<case "drunkbj03">>
<<vid "krissy/drunkbj05.mp4">>
<<say "krissy">>Just let me...<</say>>
<<narrate>>Each time she looks up at you, you feel a bolt of emotion, a delight in the wretchedness of the situation.<</narrate>>
<<say "krissy">>I can't stop myself, I'm sorry.<</say>>
<<set _uc = $krissy.refer.toUpperFirst()>>
<<say "mc">>_uc... oh, god...<</say>>
<<narrate>>She continues unperturbed until you're at your limit.<</narrate>>
<<say "mc">>Fuck, I'm—<</say>>
<<narrate>>She increases her pace, her tongue speeds up and you explode down her throat while she tries to keep herself from coughing.<</narrate>>
<<say "krissy">>I'm sorry... I needed that... I just needed your warmth. I...<</say>>
<<narrate>>She looks up at you, her face a picture of guilt.<</narrate>>
<<say "mc">>Let's just get you back to bed.<</say>>
<<button "Sleep" krissyanswers>>
<<unlock "krissy" "drunkbj">>
<<event "krissy" "drunkbj">>
<<end>>
<<temp "apology">>
<</button>>
<</switch>><<tracker "krissy" 1>>
<<if $krissy.events.welcome == undefined>>
<<step "Welcome" "Welcome her">>
<<elseif $krissy.events.hotel != undefined && $krissy.events.hotel != 3>>
<<if $krissy.events.hotel == 1>>
<<step "Familial Help" `"Ask "+($girlsavailable.includes('sophia') ? $sophia.name : $derek.name)+" or "+$lexi.name+" for advice."`>>
<<elseif $krissy.events.together < 4>>
<<step "Hanging Out $krissy.events.together/4" `"Spend time with "+$krissy.name+".<br>Where?<ul>
<li>Office 08:00 - 10:00</li>
<li>Study 10:00 - 14:00</li>
<li>Her Room 14:00 - 18:00</li>
<li>Doctor's Surgery 18:00 - 22:00</li>
<li>Gym 22:00 - 00:00</li></ul>"`>>
<<elseif $krissy.fanta.length == 0>>
<<step "Forbidden Thoughts" `"Hangout with her again and fantasize about her at least once.<br>Where?<ul>
<li>Office 08:00 - 10:00</li>
<li>Study 10:00 - 14:00</li>
<li>Her Room 14:00 - 18:00</li>
<li>Doctor's Surgery 18:00 - 22:00</li>
<li>Gym 22:00 - 00:00</li></ul>"`>>
<<elseif $krissy.events.dream == undefined>>
<<step "Carry on" "The next step will become available with time.">>
<</if>>
<<elseif $mc.events.eastreturn == undefined>>
<<step "Progress the story" "This will trigger automatically if you continue to follow the story tasks.">>
<<elseif $krissy.events.eden == undefined>>
<<step "New Eden" "Speak to her about the events of New Eden.">>
<<elseif $buildings.bar == undefined>>
<<step "Build bar" "Research running a bar - go to the monitoring station, assign a worker and select the relevant project.<br>
Once complete, build the bar - go to the construction facility, assign a worker to the rota and select the bar project">>
<<elseif $krissy.events.bar == undefined>>
<<step "Quiet Drink" "Invite her to the bar while she's at home.">>
<<elseif $tasks.bufferfin5 != undefined>>
<<step "Progress the story" "This will trigger automatically if you continue to follow the story tasks.">>
<<elseif $councilmeet == 1>>
<<step "Staying With Her" "You're currently sleeping over at her home.">>
<<elseif $tasks.councilmeet != undefined>>
<<step "Council Meeting" "Wait for the results of the council meeting.">>
<<elseif $tasks.meriyareconnect != undefined>>
<<step "$kenna.name Lives?" `"Follow the story tasks to discover more about "+$kenna.name+"."`>>
<<elseif $tasks.avafind != undefined>>
<<step "$kp.name's Return" `"Once "+$kp.name+" returns to the hub, question her about "+$kenna.name+"."`>>
<<elseif $kenna.events.step == undefined>>
<<step "She lives!" `"Wait for "+$kenna.name+" to arrive."`>>
<<elseif $tasks.avagreet == undefined && !$completeTasks.includes('avagreet')>>
<<step "Check messages" `"From "+$lacy.name`>>
<<elseif $tasks.avagreet != undefined>>
<<step "Greet $kenna.name" "At Gateway B.">>
<<elseif !$completeTasks.includes('fyodr')>>
<<step "Progress the story" "This will trigger automatically if you continue to follow the story tasks.">>
<<elseif $neweden != true>>
<<step "Reconnect with New Eden" `"Follow the story tasks."`>>
<<elseif $buildings.spa == undefined>>
<<step "Relaxation Station" `"Research and build a spa. This tech can be learned from various substories, including "+$maddy.name+", "+$whitney.name+", "+$kleio.name+", "+$kylie.name+", and "+$monique.name+"."`>>
<<elseif !$completeTasks.includes('kennaattr') && $tasks.kennaattr == undefined>>
<<step "$kenna.name's Task" `"Start "+$kenna.name+"'s task."`>>
<<elseif !$girlsmet.includes('gsec')>>
<<step "Aegis Management" `"Meet the new manager of Aegis' 'other' business activities."`>>
<<elseif !$girlsmet.includes('genvoy')>>
<<step "New Eden Explorer" `"Explore New Eden and follow its various events until you've met Gerald's former envoy."`>>
<<elseif $genvoy.events.step == undefined && $east.gerald == undefined>>
<<step "All That Glitters" `"Visit the Glitter Box in New Eden."`>>
<<elseif $buildings.brothel == undefined >>
<<step "Adult Entertainment" `"Talk to "+$cassie.name+" about new facilities while she's in the office, then build something similar to the Glitter Box."`>>
<<elseif $gsec.events.kyler == undefined>>
<<step "Howard's Friend" `"Visit New Eden"`>>
<<elseif $brothel == undefined || (!$brothel.includes('krissy') && $krissy.events.hotel == undefined)>>
<<step "Howard's Visit" `"Visit "+$krissy.name+"'s home while Howard is there."`>>
<<elseif !$completeTasks.includes('fivek') >>
<<step "Council Tasks" "Finish the council tasks">>
<<elseif $kylie.altsched != true>>
<<step "Progress the story" "This will trigger automatically if you continue to follow the story tasks.">>
<<elseif $kenna.events.spy < 3>>
<<step "Progress with $kenna.name" `"Progress "+$kenna.name+"'s substory to unlock the next step."`>>
<<elseif $schedules.krissy != undefined && $schedules.krissy[2] == "Unavailable">>
<<step "Moving Day" "She's moving into the hotel... talk to her tomorrow.">>
<<elseif $krissy.events.kenna == "taboo" && $krissy.events.anger == undefined && $krissy.events.kennapform == undefined>>
<<step "Wait" `"Wait for "+$krissy.name+" to find out."`>>
<<elseif $krissy.events.kenna == "taboo" && $krissy.events.anger == 1>>
<<step "$kenna.name Checkup" `"Check up on "+$kenna.name+"."`>>
<<elseif $krissy.events.kenna == "taboo" && $krissy.events.anger == 2>>
<<step "Calm Before the Storm" `"Who knows what "+$krissy.name+" is up to. Nothing to do but wait."`>>
<<elseif $krissy.events.kenna == "taboo" && $krissy.events.anger == 3>>
<<step "Banishment & $kp.name" `"Ask "+$kp.name+" what's going on."`>>
<<elseif $krissy.events.kenna == "taboo" && $krissy.events.anger == 3.5>>
<<step "Allied Front" `"Ask "+$kp.name+" to take you to "+$krissy.name+" when you're ready."`>>
<<elseif $krissy.events.relationship != undefined && ($krissy.events.kenna == undefined || $krissy.tabooalt == true)>>
<<switch $krissy.events.relationship>>
<<case "taboo">>
<<if $krissy.relief == undefined>>
<<step "Laying it on Thick" `"Explain to her "+$kenna.name+" is able to satisfy you in ways "+$krissy.name+" can't."`>>
<<elseif $krissy.events.relief < 3>>
<<step "Punching Out $krissy.events.relief/3" `"Have "+$krissy.name+" cover for at least 3 workers while you fuck them.<br><b>Options</b><ul>
<li>"+(!$girlsavailable.includes('skin') ? "Recruit more offworlders to see this hint." : ($skin.events.shift == undefined ? "Assist "+$skin.name+" with a shift first." : $skin.name+" in most facilities."))+"</li>
<li>"+(!$girlsavailable.includes('lacy') ? $lacy.name +" is currently unavailable." : ($lacy.events.labsex == undefined ? "Progress "+$lacy.name+"'s substory first." : $lacy.name+" in the monitoring station."))+"</li>
<li>"+(!$girlsavailable.includes('kayla') ? $kayla.name +" is currently unavailable." : ($kayla.bimbo == true ? $kayla.name+" needs to be in her original form." : ($kayla.events.bakevisit == undefined ? "Progress "+$kayla.name+"'s substory first." : $kayla.name+" at the bakery.")))+"</li>
<li>"+(!$girlsmet.includes('katie') ? "You haven't met this person. Ask "+$aubree.name+" about her friend from New Eden." : (!$workers.includes('katie') ? "You need to talk to "+$katie.name+" more first." : $katie.name+" at the farm."))+"</li>
<li>"+(!$girlsmet.includes('jade') ? "You haven't met this person. Follow "+$ember.name+"'s substory." : (!checkUnlocks('movie', 'jadebj', 'ember') ? "Evaluate "+$jade.name+" during "+$ember.name+"'s substory first." : $jade.name+" in the bar."))+"</li>
<li>"+(!$girlsmet.includes('christy') ? "Recruit more offworlders to see this hint." : (!checkUnlocks('movie', 'bike', 'christy') ? "Follow "+$sophia.name+"'s substory first." : $christy.name+" at the New Eden office."))+"</li>
</ul>
"`>>
<<elseif $krissy.relief == 1>>
<<step "Lack of Respect" "She's not happy... she'll speak to you soon.">>
<<elseif $krissy.relief == 2>>
<<step "R E S P E C T" "Talk to her about her outburst.">>
<<elseif $krissy.relief == 3>>
<<step "Bedroom Checkup" "Check up on her in her room.">>
<<elseif $krissy.relief == 4>>
<<step "$lexi.name or <<who 'ds'>>" `"Talk to one of them."`>>
<<elseif $krissy.relief == 4 && !$completeTasks.includes('shareddreams2')>>
<<step "Progress the story" "This will trigger automatically if you continue to follow the story tasks.">>
<<elseif ($krissy.relief == 4.2 || $krissy.relief == 4.1) && !$completeTasks.includes('shareddreams2')>>
<<step "Progress the story" "This will trigger automatically if you continue to follow the story tasks.">>
<<elseif $krissy.relief == 4.2 || $krissy.relief == 4.3>>
<<step "Sweet Dreams" `"Focus your dreams before bed on "+$krissy.name+"."`>>
<<elseif $krissy.relief == 5 && $kenna.events.krissy == undefined>>
<<step "Updating $kenna.name" "Let her know about your progress.">>
<<elseif $kenna.events.krissy == 1>>
<<step "Spousal Assistance" `"Talk to "+($girlsavailable.includes('sophia') ? $sophia.name : $derek.name)+"."`>>
<<elseif $kenna.events.krissy == 2>>
<<step "Not a date" "Invite "+$krissy.name+" out and meet at the bar.">>
<<elseif $kenna.events.krissy == 3>>
<<step "Bedtime" "Sleep.">>
<<elseif $kenna.events.krissy == 4 && !$girlsavailable.includes('krissy')>>
<<step "Sobering up" `"She'll be unavailable until the afternoon."`>>
<<elseif $kenna.events.krissy == 4>>
<<step "Putting on a Performance" `"Perform with someone at "+$stripname+"."`>>
<<elseif !$completeTasks.includes('shareddreams2')>>
<<step "Progress the story" "This will trigger automatically if you continue to follow the story tasks.">>
<<elseif $kenna.events.krissy == 6 && ($krissy.events.sdream == undefined || $krissy.events.sdream == 1)>>
<<step "Sweet Dreams" `"Focus your dreams before bed on "+$krissy.name+"."`>>
<<elseif $krissy.events.sdream == 2>>
<<step "Broken Dreams" `"Ask her what happened."`>>
<<elseif $krissy.events.sdream == 3>>
<<step "Dreaming Again" `"Focus your dream on her... again."`>>
<<elseif ($krissy.events.sdream == 4 || $krissy.events.sdream == 4.1) && $krissy.tabooalt == undefined>>
<<step "Happy Wife" `"Catch up with her."`>>
<</if>>
<<default>>
<<step "Convincing Argument" `"Try approaching the subject of your relationship "+$kenna.name+" with her again."`>>
<</switch>>
<<elseif $krissy.events.kenna == "lied" && $kenna.events.first == undefined>>
<<step "Revenge Fuck" `"Find "+$kenna.name+" and take her to "+$krissy.name+"'s room."`>>
<<elseif $krissy.events.kenna == "lied" && $kenna.events.cosy != 3>>
<<step "Progress with $kenna.name" `"Progress "+$kenna.name+"'s substory to unlock the next step."`>>
<<elseif $krissy.events.kenna == "taboo" && $kenna.events.first == undefined>>
<<step "PDA" `"Find "+$kenna.name+" and make your relationship public."`>>
<<else>>
<<movielist krissy>>
<</if>>
<</tracker>><<nobr>>
<<set $scene = 0>>
<<if $location.toLowerCase() == "home">>
<<set $worklocation = false>>
<</if>>
<<if $currentlocations == undefined || $currentlocations.kylie == undefined>>
<<run parseLocations()>>
<</if>>
<<if (($replay == true && $tempvar == "kenzie") || $location == "spa" && $kylie.events.kenzie == undefined && $kylie.lust > 14)>>
<<scene>>
<<narrate>>You decide to check up on $kylie.name. As you turn the corner into her room, your mouth drops.<</narrate>>
<<vid "kylie/kenzie01.mp4">>
<<if $kenzie.name == "???">>
<<narrate>>An unknown blonde woman is eating $kylie.name out.<</narrate>>
<<else>>
<<narrate>>$kenzie.name is eating out $kylie.name. You're unsure how to react...<</narrate>>
<<think "mc">>Whatever, for now let's just enjoy the show!<</think>>
<</if>>
<<think "mc">>$kylie.name. Don't ever change!<</think>>
<<say "kylie">>Ohhhh my god.<</say>>
<<narrate>>$kylie.name's moans start to get louder.<</narrate>>
<<say "kylie">>Ohhhh Yeah! Yes, yes, yes!<</say>>
<<think "mc">>Did she notice me? Did she get into it more because I'm here?<</think>>
<<say "kylie">>Aaaah, ohhh, fuck. Aaaaah, mhhhmmm. That's so fucking good.<</say>>
<<narrate>>You unzip and start jerking off.<</narrate>>
<<button "Continue" kyliesex>>
<<temp "kenzie">>
<</button>>
<<elseif $replay == false && $location.toLowerCase() != $currentlocations.kylie.toLowerCase() && $location != "firstIntros">>
<<say "kylie">>Gotta go, let's catch up later.<</say>>
<<follow kylie>>
<<button "Continue" $return>>
<</button>>
<<elseif $location == "home" && $tasks.kylietrainer2 != undefined && getRawLocation('kenna') == "kyliehome" && $kylie.mature != true>>
<<taskdone "kylietrainer2">>
<<narrate>>You head out back to the garden expecting her and $kenna.name to be there, but find nobody. You notice the backdoor is wide open, so head inside.<</narrate>>
<<say "mc">>You guys in here?<</say>>
<<narrate>>There's no response, but you hear some giggling upstairs.<</narrate>>
<<think "mc">>Are they playing hide and seek with me or something?<</think>>
<<narrate>>You follow the sounds upstairs to her bedroom.<</narrate>>
<<center "kylie/kenna01.jpg">>
<<narrate>>$kylie.name grins at you and makes a shushing gesture. $kenna.name is yet unaware of your presence.<</narrate>>
<<think "mc">>Whoa... my $kenna.them and my champion, huh?<</think>>
<div id="replace">
<<set _home = "<<say kylie>>I really thought you'd want this, why do you think I invited you to the training session?<</say>>
<<narrate>>She sighs.<</narrate>>
<<say mc>>A miscommunication, alright. Let's just put it behind us. So how was your actual training?<</say>>
<<say kylie>>Fine. Though we were just about to get to the good bit before you interrupted.<</say>>
<<narrate>>She sticks her tongue out at you.<</narrate>>
<<say kylie>>Anyway, I did want to talk to you about something... about this house.<</say>>
<<say mc>>Is everything okay?<</say>>
<<say kylie>>I don't want to live here anymore.<</say>>
<<say mc>>Oh... I hadn't really thought what I'd do if you wanted to return to your home world... but if that's what you—<</say>>
<<say kylie>>What? No. I want to move into the hotel. I want to be closer to you; I want to be there when $founder.name shows up.<</say>>
<<say mc>>Oh, thank fuck for that. I was worried I was going to lose you.<</say>>
<<say kylie>>You'll not get rid of me that easily!<</say>>
<<say mc>>Talk to $armani.name, she'll get you a room setup.<</say>>
<<say kylie>>Already done, just wanted the go-ahead from you! I'll move in tomorrow.<</say>>
<<say mc>>Great, looking forward to it.<</say>>
">>
<<choices>>
<<link "Watch">>
<<event "kenna" "kylie" "watched">>
<<temp "kenna">>
<<replace "#replace">>
<<narrate>>You settle in, peeping from behind a bookcase.<</narrate>>
<<think mc>>This is so wrong, yet watching $kylie.name sleeping with $kenna.refer is such a turn on.<</think>>
<<narrate>>$kylie.name grins, then turns her attention back to $kenna.name.<</narrate>>
<<say "kylie">>Show me what that tongue can do.<</say>>
<<cont "kyliesex" "kenna">>
<</replace>>
<</link>><br>
<<link "Leave">>
<<replace "#replace">>
<<narrate>>You turn to leave and $kylie.name frowns.<</narrate>>
<<think "mc">>I have no problem with her sleeping with other women... but I'm not interested in watching her with $kenna.refer.<</think>>
<<narrate>>As you're leaving her home, $kylie.name chases after you.<</narrate>>
<<say kylie>>You didn't want to watch?<</say>>
<<say mc>>Not really. If that's what you wanna do, I have no problem with you sleeping with other women... but I don't want to see you with $kenna.name.<</say>>
<<say kylie>>She wasn't too pleased when I stopped her. She's a little angry right now.<</say>>
<<say mc>>Why did you?<</say>>
<<say kylie>>Well, I was doing it for you... so if you're not into it, there was no reason to continue.<</say>>
<<think mc>>That doesn't feel in character for her... maybe becoming a champion changed her motivations a little.<</think>>
_home
<<event "kenna" "kylie" "left">>
<<run overrideSchedule('kenna', 18, 22, "")>>
<<cont "townhub" "" 0.5>>
<</replace>>
<</link>><br>
<<link "Stop It">>
<<replace "#replace">>
<<say mc>>What the hell is going on here?!<</say>>
<<say kenna>>$name! We were just... training.<</say>>
<<say mc>>How is this training?<</say>>
<<say kylie>>Well, maybe having a little bit of fun... I thought you liked it when I was with other women?<</say>>
<<say mc>>That's my $kenna.them.<</say>>
<<narrate>>She stares at you blankly.<</narrate>>
<<say mc>>I'm not okay with this.<</say>>
<<narrate>>$kenna.name seems angry.<</narrate>>
<<say kenna>>This is getting ridiculous. How are you so dense?! Ugh!<</say>>
<<narrate>>She storms off.<</narrate>>
_home
<<event "kenna" "kylie" "stopped">>
<<run overrideSchedule('kenna', 18, 22, "")>>
<<cont "townhub" "" 1>>
<</replace>>
<</link>>
<</choices>>
</div>
<<else>>
<<set _img = getImg('kylie')>>
<<if $kylie.events.lexi == undefined && $lexi.events.relationship == "taboo" && $kylie.mature != true>>
<<set _img = "kylie/strat01.jpg">>
<</if>>
<<if $location == "garden">>
<<center _img>>
<<else>>
<<left2 _img>>
<</if>>
<<if $helena.events.step == 4>>
<<narrate>>She gives you a malicious grin as you approach.<</narrate>>
<<say kylie>>I hear you and mom had some fun together.<</say>>
<<say mc>>Yeah, she's quite the woman!<</say>>
<<say kylie>>Haha, now you know where I get it from. By the way, I asked $armani.name if my mom could use my old house. She said she didn't really care... and that you wouldn't have an issue.<</say>>
<<say mc>>Sounds like her. So your mom wants to move here?<</say>>
<<say kylie>>Not exactly. But she said it'd be helpful for work if she could stay here sometimes... and well, as much as I love my mom, I don't exactly want to bunk with her too frequently.<</say>>
<<say mc>>Hmm, well, like $armani.name said, I have no issue with it.<</say>>
<<say kylie>>Great, she's already settled in; she seems to really like it here.<</say>>
<<think mc>>Gives me something to talk to her mom about next time she's working.<</think>>
<<event "helena" step 5>>
<<elseif $tasks.festival4 != undefined && $helena.events.step >= 7 && $kylie.events.momteach == undefined>>
<<say kylie>>I was thinking, with all the festival prep going on, maybe you should speak to my mom?<</say>>
<<say mc>>Oh?<</say>>
<<say kylie>>She used to travel the worlds as a music teacher before she retired. She might be of help.<</say>>
<<say mc>>Great, I'll check her out.<</say>>
<<say kylie>>Oh, I heard you already did more than just check her out.<</say>>
<<narrate>>You grin.<</narrate>>
<<say mc>>What can I say?<</say>>
<<say kylie>>Hey, she's hot, I totally would if I were you.<</say>>
<<event "kylie" "momteach">>
<<else>>
<<say "kylie">>Hey, handsome, <<if $location == "study">>come to help me study<<else>>what's up<</if>>?<</say>>
<</if>>
<<choices "What do you want to discuss?" "topics">>
<</choices>>
<</if>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("kyliediscussions").processText());
})
<</script>>
<</nobr>><<scene>>
<<set _img = getImg('kylie')>>
<<switch $tempvar>>
<<case "lexithree2">>
<<left2 _img>>
<<say kylie>>I'm impressed how quickly you've brought $lexi.name out of her shell!<</say>>
<<say mc>>I think she wanted to be brought out of it... needed it even.<</say>>
<<say kylie>>Oh yeah, and we're just the right pair to help her. So you remember our ploy for her to catch us fucking?<</say>>
<<say mc>>Yes...<</say>>
<<say kylie>>And that I said it might take a few attempts?<</say>>
<<narrate>>You nod.<</narrate>>
<<say kylie>>I think she's already there. She's practically fucking you anywhere and anytime now. I think her shame has long left the building.<</say>>
<<say mc>>Never anything to be ashamed of!<</say>>
<<say kylie>>And that's why it's gone! So, let's capitalize on that. Another session together in the lounge. If she's not at work she comes around there at noon, so when you're good to go, we'll meet there at 11:00.<</say>>
<<think mc>>To be honest, I'm quite happy with the status quo... but if I can have fun with them both together, why not?<</think>>
<<say mc>>Already looking forward to it.<</say>>
<<say kylie>>Oh, I bet you are!<</say>>
<<narrate>>She grins at you.<</narrate>>
<<say kylie>>Oh, I wanna fool around with her mature form if that's cool with you. Nothing against her younger form, but it's the mature form I lusted after on first sight.<</say>>
<<say mc>>Sometimes I wonder which of us is the most depraved.<</say>>
<<say kylie>>I'd say it's about equal, it's why we work so well together.<</say>>
<<narrate>>You chuckle.<</narrate>>
<<say kylie>>Best I'm in my original form too, she's more familiar with it.<</say>>
<<say mc "" "(Sarcastically)">>Any more rules or conditions?<</say>>
<<narrate>>She gives you a sarcastic glare.<</narrate>>
<<say kylie>>I just wanna fuck the version of the woman I originally met, okay? And I want her to be under no illusion it's me when she sees us. She's more familiar with this form than any other.<</say>>
<<say mc>>I get it, don't worry.<</say>>
<<button "Continue" kylie>>
<<lust "kylie" 4>>
<<like "kylie" 3>>
<<temp "">>
<<event kylie lexithree 4>>
<<time 1>>
<</button>>
<<case "lexithree">>
<<left2 _img>>
<<say mc>>About $lexi.name...<</say>>
<<say kylie>>You finally fucked her? Tell me all about it. How fucking hot was it?<</say>>
<<narrate>>You go on to recount every detail.<</narrate>>
<<say kylie>>Fuck that's hot. She really played into the teacher motif, huh? God, I love that. So, now we just gotta get her ready for me to join, huh?<</say>>
<<say mc>>Hell yeah!<</say>>
<<say kylie>>I say fuck her a few more times, let her get used to being with you a little more, then we can enrich her with my involvement. I can't fucking wait!<</say>>
<<say mc>>I am so fucking lucky to have you.<</say>>
<<say kylie>>Hell yeah you are!<</say>>
<<button "Continue" kylie>>
<<lust "kylie" 4>>
<<like "kylie" 3>>
<<temp "">>
<<event kylie lexithree 3>>
<<set $lexi.sextarget = $lexi.sex + 3>>
<<time 0.5>>
<</button>>
<<case "wholaur">>
<<left2 _img>>
<<say mc>>Who is Laurence?<</say>>
<<say kylie>>Wait, she didn't even tell you that much? Wow. Okay, so, Laurence is my brother, and he's a musician that would fit your lineup perfectly.<</say>>
<<say mc>>That's great! Why all the cloak and dagger, though?<</say>>
<<say kylie>>Well... he's been trying to fuck mom for years, and as much as she loves him, she's not into him like that so things get a bit awkward. They have a... strained relationship at best. I didn't want to put him forward unless she was okay with it, and I knew if it was just me asking she'd shoot it down immediately.<</say>>
<<say mc>>Wow... okay, it feels like maybe the first family I've met since becoming a patron that isn't fucking each other.<</say>>
<<say kylie>>Oh, no, me and mom used to fool around all the time.<</say>>
<<say mc>>I really should be more surprised by that statement, but I think I'm getting desensitized to such things.<</say>>
<<think mc>>Does every place outside of Earth have families fucking each other or am I just a lightning rod for them?<</think>>
<<say kylie>>Perhaps I was too vague when mentioning Laurence. Mom and I always took it for what it was; a bit of casual fun. Laurence's feelings were a bit more than carnal, but, well, mom doesn't reciprocate; I'm sure if it was just about the sex, she'd have been down.<</say>>
<<say mc>>Will everything be okay? Is the potential drama worth it?<</say>>
<<say kylie>>Oh, yeah, I'll handle him if he tries anything. He's a damn good musician, and he'll bring a number of groupies with him, no doubt.<</say>>
<<say mc>>Great... so let's circle back to you and your mom...<</say>>
<<narrate>>She grins.<</narrate>>
<<say kylie>>We've not done anything for a little while, I've had someone else keeping me plenty satisfied as late... but I'm sure something can be arranged if you're looking for a show. Though maybe let's wait until we've dealt with Laurence; I don't want to see his reaction if he were to find out.<</say>>
<<think mc>>I guess I can worry about whether I wanna encourage that at a later date.<</think>>
<<notice>>Laurence will now perform at the festival.<</notice>>
<<button "Continue" kylie>>
<<lust "kylie" 4>>
<<like "kylie" 3>>
<<set $festival.stats.hype += 6>>
<<temp "">>
<<event kylie momteach 5>>
<<time 1>>
<</button>>
<<case "momma">>
<<left2 _img>>
<<say mc>>Hey, about your mom...<</say>>
<<say kylie>>Oh, no. Did she mess up... do you need to fire her?<</say>>
<<say mc>>What? No. I was talking to her in the kitchen and well, she seems pretty chill.<</say>>
<<say kylie>>Yeah, I hope it was okay she stayed over. She and <<who ds>> seem to have become fast friends too. They play tennis together off world.<</say>>
<<say mc>>You think others would like to play?<</say>>
<<say kylie>>Dunno, maybe...<</say>>
<<think mc>>I should look into that.<</think>>
<<say mc>>But yeah, she's welcome whenever. To be honest, I thought she was flirting with me at one point, I guess I misread that.<</say>>
<<say kylie>>Oh, she definitely will have been. You should totally fuck her.<</say>>
<<say mc>>You'd be okay with me fucking your mom?<</say>>
<<say kylie>>Okay with it? $name, given everybody we've done together, and everyone I've helped you do... do you really think I'd be so hypocritical as to think my mother, who is smoking hot, would be out of bounds?<</say>>
<<say mc>>Yeah... I guess I should have expected that answer from you.<</say>>
<<say kylie>>Dad has been out of the picture for years, mom likes to play around... probably not as much as you, but I say go for it.<</say>>
<<narrate>>You chuckle.<</narrate>>
<<say mc>>Yeah, okay... maybe I will.<</say>>
<<think mc>>I can try my flirting with her next time she's on shift.<</think>>
<<say kylie>>Good, then she can see everything I've said about you is true!<</say>>
<<notice>>You can now build tennis courts for the hotel.<</notice>>
<<button "Continue" kylie>>
<<build "tennis">>
<<lust "kylie" 4>>
<<like "kylie" 3>>
<<event helena step 2>>
<<time 1>>
<</button>>
<<case "kyliefarm">>
<<set _p = State.variables[$piggy]>>
<<if !$breakdone.farm.includes('animals')>>
<<narrate>>Nothing remarkable happened. You were bored out of your mind.<</narrate>>
<<say $piggy>>Isn't this $kylie.name's world? Didn't she want to see some cute animals on the farm or something?<</say>>
<<button "Continue" yourroom>>
<<like $piggy 5>>
<<run delete $piggy>>
<<time 2>>
<</button>>
<<else>>
<<narrate>>Having sourced some cute animals for the farm, specifically <s>to get laid</s> for $kylie.name, you can't help but want to see her reaction in person and as she barely knows you, having her summoned to you might have put her off.<</narrate>>
<<think "mc">>I hope she's as fun today as she has been previously. I wonder if she'll try anything on with _p.name? That might be fun!<</think>>
<<narrate>>_p.name is looking at her map, then around at her surroundings, confused.<</narrate>>
<<think "mc">>Dammit, I wish you could hear me. Look over there to your left!<</think>>
<<narrate>>Unsure whether your thoughts actually reached her or it's just coincidence, _p.name looks over to the building on the left.<</narrate>>
<<say $piggy>>Ah, there it is.<</say>>
<<narrate>>She heads over to find $kylie.name on the porch.<</narrate>>
<<block "kylie/piggy01.jpg">>
<<say "kylie">>Hi.<</say>>
<<think "mc">>She looks down.<</think>>
<<say $piggy>>$name sent me.<</say>>
<<say "kylie">>Uh-huh.<</say>>
<<think "mc">>...and kinda absent.<</think>>
<</block>>
<<say $piggy>>Everything okay?<</say>>
<<say "kylie">>Yeah, sure. Just leave it there, that's fine.<</say>>
<<say $piggy>>Uhh...?<</say>>
<<think "mc">>What's going on here?<</think>>
<<say "kylie">>Oh, do I need to sign?<</say>>
<<narrate>>She absent-mindedly holds her thumb out, as if expecting a machine to take her print.<</narrate>>
<<say $piggy>>$kylie.name. I'm here from $name's hub. The patron. I'm not a delivery person!<</say>>
<<block "kylie/piggy02.jpg">>
<<say "kylie">>Oh, right. Sorry. I'm expecting a package today.<</say>>
<<think "mc">>Why is she so different? Where's the fun-loving girl I met?!<</think>>
<<say $piggy>>Is something wrong?<</say>>
<<say "kylie">>Nothing to trouble you with. What brings you here?<</say>>
<<say $piggy>>$name wanted to let you know the farm now has cute animals.<</say>>
<</block>>
<<say "kylie">>That's great, but I don't think I can come by any time soon.<</say>>
<<think "mc">>What! No way!<</think>>
<<say $piggy>>Why ever not?<</say>>
<<say "kylie">>From next week, I'll be homeless.<</say>>
<<say $piggy>>What?!<</say>>
<<say "kylie">>I haven't paid my rent for months. I'm working two jobs, and it's just not enough. I don't even have a car to live in.<</say>>
<<think "mc">>Not a chance. We have a giant hotel and an abandoned town for crying out loud!<</think>>
<<say $piggy>>You won't be homeless. Come back with me. $name will sort this out.<</say>>
<<think "mc">>_p.name knows me so well.<</think>>
<<narrate>>$kylie.name starts sobbing.<</narrate>>
<<say "kylie">>I can't possibly expect that. I need to sort this myself.<</say>>
<<say $piggy>>Just, let's go and talk to him. I'll be back in three hours. Get yourself ready, okay?<</say>>
<<button "Continue" yourroom>>
<<like $piggy 5>>
<<event "kylie" "homeless" $piggy>>
<<eventdone "kyliefarm">>
<<temp "kyliehomeless">>
<<task "kyliereturn">>
<<taskdone "kylie">>
<<time 2>>
<<event "kylie" "timer" 3>>
<<run delete $piggy>>
<</button>>
<</if>>
<<case "gerald">>
<<if debug == true>>
<div class="debug">
New Eden: $mc.events.eastresolved<br>
Told council about Gerald: $mc.events.geraldmentioned<br>
<<button "NE Convinced" kylieanswers>>
<<set $mc.events.eastresolved = "convinced">>
<</button>>
<<button "NE Cab Enforcer" kylieanswers>>
<<set $mc.events.eastresolved = "enforcer2">>
<</button>>
<<button "NE Skipped" kylieanswers>>
<<set $mc.events.eastresolved = "enforcer1">>
<</button>>
<<button "Council Gerald Yes" kylieanswers>>
<<set $mc.events.geraldmentioned = "1">>
<</button>>
<<button "Council Gerald No" kylieanswers>>
<<set delete $mc.events.geraldmentioned>>
<</button>>
</div>
<</if>>
<<narrate>>As you settle in to your breakfast, $kylie.name strikes up a conversation.<</narrate>>
<<left2 "kylie/morning.jpg">>
<<say kylie>>I've been thinking...<</say>>
<<narrate>>You grin.<</narrate>>
<<say mc>>Normally when you start a sentence like that, we end up in a big sweaty naked mess.<</say>>
<<narrate>>She cackles.<</narrate>>
<<say kylie>>Maybe... but this is a bit more serious. I think we should speak to Gerald.<</say>>
<<narrate>>You push your head back and scrunch your face.<</narrate>>
<<say mc>>Why?<</say>>
<<if $mc.events.eastresolved == "convinced">>
<<say kylie>>He obviously knew something.<</say>>
<<else>>
<<say kylie>>Maybe he's got a better idea of what $founder.name is planning.<</say>>
<</if>>
<<say mc>>What makes you say that?<</say>>
<<if $mc.events.eastresolved == "convinced">>
<<say kylie>>Well, the big disgusting red mess he became certainly wasn't normal, and given the old stories talk about $voice.name or $founder.name, depending on which version you believe, messing with transformation, it seems likely he was involved with that.<</say>>
<<else>>
<<say kylie>>He tried to kill you, but I don't know, I've been thinking about it and it just doesn't sit right with me. Even if I truly believed the stories about $voice.name being evil, why would he dismiss every message $kayla.name sent him after her initial blunder without at the very least sending some scouts or spies or something?<</say>>
<</if>>
<<say mc>>I really don't want to talk to that prick.<</say>>
<<say kylie>>I know, but I've been training, so nothing'll happen.<</say>>
<<say mc>>That's really not why... I just don't know if I'll be able to remain calm around him. He wanted to hurt you, $kylie.name, you and everyone else I care about.<</say>>
<<say kylie>>Can you try? It might help us understand what we're dealing with better.<</say>>
<<narrate>>You sigh.<</narrate>>
<<say mc>>I'll ask $am.name where he's being held.<</say>>
<<if $mc.events.eastresolved == "convinced">>
<<say kylie>>No need, I helped haul him away and ensure the receptors were able to keep him locked up. I know exactly where he is. In a bunker under the training camp.<</say>>
<<say mc>>Alright, I guess I'll meet you there.<</say>>
<</if>>
<<say kylie>>Thanks, $name!<</say>>
<<button "Continue" homehub>>
<<set $geraldtimer = 3>>
<<if $mc.events.eastresolved == "convinced">>
<<task "visitgerald2">>
<<else>>
<<task "visitgerald">>
<</if>>
<<time 0.5>>
<</button>>
<<case "champ">>
<<left2 _img>>
<<say "mc">>How's the training going?<</say>>
<<say kylie>>Pretty good. And recently I've been able to do even more, $kenna.name says that's because your limits were raised again.<</say>>
<<say mc>>I guess that makes sense if you're getting your power from me.<</say>>
<<say kylie>>Yeah, it's weird. It's like I can feel your energy all over the hub. But... it's different to before. It feels like I'm part of it now, and it flows through me, allowing me to harness it.<</say>>
<<say mc>>I'll have to be careful you don't overpower me!<</say>>
<<narrate>>You chuckle, but she looks at you seriously.<</narrate>>
<<say kylie>>That can't happen. If I grow my own power beyond yours, if that were even possible, it would sever our bond.<</say>>
<<say mc>>What, why?<</say>>
<<say kylie>>I don't know, $kp.name mentioned it when she was originally training me. Something about my own power overwhelming yours.<</say>>
<<say mc>>Well, if that ever did happen, we'd still share our bond.<</say>>
<<say kylie>>No, that'll never happen. The connection we share is too precious to me. It's not just about the power, it's the feeling... the emotions, it makes me feel so close to you.<</say>>
<<say mc>>Wow, I feel loved! So, how's training going now $kenna.name has taken over?<</say>>
<<say kylie>>We've not really done much yet, she's made it clear I am no match for $founder.name, but the more powerful I am, the more likely I am to be able to at least pose enough of a threat to distract her enough for you or one of the council to intervene.<</say>>
<<say mc>>That's a pretty bleak output.<</say>>
<<say kylie>>It is what it is. Hey, you should come by the house when $kenna.name is with me and I'm in my original form. We'll be doing some training in the garden. There's something I need to check with $kenna.name too, and then discuss with you.<</say>>
<<say mc>>Oh? I'm intrigued.<</say>>
<<say kylie>>Good, come by soon, okay?<</say>>
<<narrate>>You nod.<</narrate>>
<<button "Continue" $return>>
<<like "kylie" 5>>
<<lust "kylie" 2>>
<<taskdone "kylietrainer">>
<<run overrideSchedule('kenna', 18, 22, "kyliehome")>>
<<time 1>>
<</button>>
<<case "planets">>
<<left2 _img>>
<<say "mc">>Could you help me connect to some new worlds, $kylie.name?<</say>>
<<say "kylie">>Looking to do some exploring? I've got a couple of globes you can <i>really</i> connect to.<</say>>
<<say "mc">>Oh, I think that sounds a lot more exciting than what I had in mind.<</say>>
<<say "kylie">>Okay, but seriously, you just want me to go to some worlds you don't know, right?<</say>>
<<say "mc">>Yes... well, I did, but now I'm more interested in those globes you mentioned.<</say>>
<<say "kylie">>Ha! Okay, c'mon, we'll connect to a few worlds I know... then we'll do the fun stuff!<</say>>
<<narrate>>You head over the gateway together.<</narrate>>
<<say "kylie">>Alright, let me think of a few good ones, will four or five be enough?<</say>>
<<say "mc">>Plenty.<</say>>
<<say "kylie">>Perfect. This world... oh wow, you'll love this world. They have the same sensibilities as you and me... we'll definitely find a good few playmates there.<</say>>
<<narrate>>The gateway seems to draw upon your power and then stop abruptly, as if someone had pressed the emergency switch on an escalator. For a moment, you feel somehow stranded, despite not having moved.<</narrate>>
<<think "mc">>What is—<</think>>
<<narrate>>Flashing text appears in your mind's eye.<</narrate>>
<div class="choices" style="margin:auto">
<center class="blink">SAFETY PROTOCOL ENGAGED.</center>
<center class="blink">PATRON CONNECTIONS TO THIS WORLD HAVE BEEN RESTRICTED DUE TO A HISTORY OF FIGHTING FOR CONTROL AMONG PATRONS.</center>
<center class="blink">REROUTING THROUGH THE EQUALIZER NETWORK.</center>
</div>
<<narrate>>The gateway crashes open with a dark purple and red glint. You feel weary and struggle to keep your eyes open, but the expected explosion of ecstasy is noticeably lacking.<</narrate>>
<<say "kylie">>Oh, man, I love this world.<</say>>
<<narrate>>She steps through and returns a moment later to find you napping at the gateway entrance. After a few minutes, she gently wakes you.<</narrate>>
<<say "mc">>Huh? What happened?<</say>>
<<say "kylie">>You fell asleep... at first I thought maybe it was the pleasure overwhelming you and somehow that made you look comatose, but... I felt no emotion from you. Any ideas why? Did you manage to connect okay?<</say>>
<<say "mc">>No, not at all. I'm not allowed to connect there, apparently patrons used to fight over the world, so all connections are routed via the equalizers... but it still sapped a lot of my energy. I guess I just fell asleep. That's kinda embarrassing.<</say>>
<<say "kylie">>It is what it is. Let's get you back to the hotel so you can take a proper nap. Let's hold off on connecting to random worlds for now, huh?<</say>>
<<if $completeTasks.includes('safety')>>
<<say "mc">>It's the first time it's hit me like this, but I was pre-warned connecting to random planets might not be feasible.<</say>>
<<say "kylie">>Sounds like advice you should have taken. Do you know anyone that might offer a surefire connection?<</say>>
<<say "mc">>The only hint I have is that everyone on the hub that came through the gateway must have come from a world I'd have been compatible with at the time.<</say>>
<<say "kylie">>Okay, so, is there anyone's home world you haven't connected to before?<</say>>
<<say "mc">>Hmm... maybe...<</say>>
<<else>>
<<say "mc">>Yeah... maybe I should ask $kp.name or $kenna.name about this.<</say>>
<</if>>
<<button "Continue" yourroom>>
<<event "kylie" "planets">>
<<task "safety">>
<<like "kylie" 3>>
<<lust "kylie" 2>>
<<time 1.5>>
<</button>>
<<case "maddyoffice">>
<<block _img>>
<<say "mc">>Not that you're unwelcome, but I don't usually see you in here.<</say>>
<<say "kylie">>You forget we share a connection now, your horniness spiked a little earlier and I was intrigued why.<</say>>
<<say "mc">>You feel what I feel?<</say>>
<<say "kylie">>More like slithers, so really only when you have a particularly strong emotion... and it's usually your lust.<</say>>
<<narrate>>You chuckle.<</narrate>>
<<say "kylie">>But enough about that boring stuff. She really is fucking gorgeous, huh?<</say>>
<</block>>
<<say "mc">>Yeah... and then some.<</say>>
<<say "kylie">>Well, I'm gonna have some fun if you wanna watch.<</say>>
<<narrate>>She heads toward $maddy.name without giving you change to say anything else.<</narrate>>
<<think "mc">>Yeah, $maddy.name is gonna lap that right up. No way she turns her down.<</think>>
<div id="replace">
<<choices "Stay and watch?">>
<<link "Fuck yeah">>
<<replace "#replace">>
<<think "mc">>In what world would I not stick around for this?<</think>>
<<narrate>>She tries to walk past $maddy.name with some swagger, but gets no response... so takes a more direct approach, pushing her on to the desk and running her hands up her leg.<</narrate>>
<<think "mc">>Wow, she really isn't messing around.<</think>>
<<say "kylie">>Oops, I slipped.<</say>>
<<narrate>>$maddy.name grins.<</narrate>>
<<say "maddy">>Oh, really?<</say>>
<<cont "maddysex" "kyliemaddy">>
<</replace>>
<</link>><br>
<<link "Nah" housestuff>>
<</link>>
<</choices>>
</div>
<<case "anna">>
<<block _img>>
<<say "mc">>I was wondering—<</say>>
<<say "kylie">>If I'd help you teach that bitch a lesson? Oh, I'm so down.<</say>>
<<say "mc">>How'd you know?<</say>>
<<say "kylie">>I'm your champion, I could feel your anger and annoyance when I saw you attempting to do that photo shoot.<</say>>
<<say "mc">>Ha, I guess I can't hide much from you, huh?<</say>>
<<say "kylie">>Eh, I can't feel everything, just when you have a particularly strong emotion. So, what's the plan?<</say>>
<</block>>
<<say "mc">>The other day $armani.name bore into her.<</say>>
<<say "kylie">>Shit, sad I missed that one.<</say>>
<<say "mc">>Ha, yeah! But it was while she was cleaning, $anna.name thought $armani.name didn't do anything. But anyway, $armani.name needs help... $anna.name needs work.<</say>>
<<say "kylie">>And where do I come in?<</say>>
<<say "mc">>If I send her to $armani.name in her current state, they'll just be at odds with each other. I've no doubt $armani.name will come out on top, but it won't teach $anna.name anything. So, can she clean your place?<</say>>
<<say "kylie">>Wow...<</say>>
<<narrate>>She thinks for a moment.<</narrate>>
<<say "kylie">>Sure, but I'm gonna observe her, don't trust her one bit. I also don't think any amount of practice will improve her attitude.<</say>>
<<say "mc">>I'm hoping the uhh.. uniform... may help soften her.<</say>>
<<say "kylie">>Ha! So we're also perving on her? Got it! But she and I didn't really get along the other day. So, I want to be someone else. You like MILFs? Great... let's go to the gateway and you can transform me.<</say>>
<<say "mc">>Just like that?<</say>>
<<say "kylie">>Just like that.<</say>>
<<say "mc">>You'll still be you... just with a different exterior.<</say>>
<<say "kylie">>I know that, you know that, but unless we tell her, she won't.<</say>>
<<say "mc">>Gotcha. Sure, let's go.<</say>>
<<cont "transformation" "kylie">>
<<case "homed">>
<<block "kylie/clean01.jpg">>
<<say "mc">>Hey, $kylie.name, just came over to see how you're settling in.<</say>>
<<say "kylie">>This place is great. I really don't know how to thank you.<</say>>
<<say "mc">>You say that, but it looks like you've been doing a hell of a job cleaning the place up.<</say>>
<<say "kylie">>It certainly was a bit of a mess. And still a ways to go, but it's home, y'know? And while it needs a clean now, the end result will be better than anything I could ever afford. Besides, I quite like cleaning!<</say>>
<<say "mc">>That's great.<</say>>
<</block>>
<<think "mc">>$kylie.name seemed pretty fun-loving before and very flirtatious. I suspect it won't be long until she's waking up in my bed. But I think I'll let her settle in first.<</think>>
<<say "kylie">>...she like?<</say>>
<<say "mc">>Sorry, was lost in thought. Can you repeat that?<</say>>
<<say "kylie">>So there was a woman I met yesterday, $lexi.name. She seems nice. What's she like?<</say>>
<<say "mc">>$lexi.name? She's my $lexi.them. Known her my entire life. Lovely woman. Why do you ask?<</say>>
<<say "kylie">>Well, she's hot. You hitting that?<</say>>
<<think "mc">>Haha, there's the $kylie.name I originally met!<</think>>
<<say "mc">>No, she's my $lexi.them, remember.<</say>>
<<say "kylie">>Yeah, so? She's hot. You're hot. What's the issue?<</say>>
<<say "mc">>Oh, you got a crush on my $lexi.them?<</say>>
<<block "kylie/clean02.jpg">>
<<say "kylie">>Not a crush. I <b>am</b> going to fuck her.<</say>>
<<say "mc">>Shit, you don't mess around, do you?<</say>>
<<say "kylie">>If I wasn't cleaning, believe me, I'd most definitely be messing around with you right now.<</say>>
<<say "mc">>Is that so, want a hand? We can finish up quicker together.<</say>>
<<think "mc">>Quicker she's done... quicker I get done.<</think>>
<<narrate>>She grins.<</narrate>>
<</block>>
<<say "kylie">>Ha! No, don't worry about it. You've already done enough. And believe me, I'll soon show you just how grateful I am.<</say>>
<<say "mc">>Can't wait!<</say>>
<<think "mc">>Hell yeah!<</think>>
<<say "kylie">>Don't forget, I'm happy to work for you now too. Bar, spa, whatever, but I'd really like to work the spa, get my hands all over the hotties passing through!<</say>>
<<say "mc">>You and me both.<</say>>
<<narrate>>She laughs.<</narrate>>
<<say "kylie">>You and I are going to get along fine. We'll fuck your $lexi.them together!<</say>>
<<event "kylie" "days" 1>>
<<if $lexi.events.relationship == undefined>>
<<think "mc">>Hmm, would I like that... would I like to fuck $lexi.name?<</think>>
<div id="replace">
<<notice>>If you decide against pursuing a carnal relationship with $lexi.name, you can change your mind any time by collecting your thoughts at night.<</notice>>
<<corruptmax "lexi" 40>>
<<choices "Do you want to sleep with your $lexi.them?">>
<<link "Yes">>
<<replace "#replace">>
<<say "mc">>You know what, as wrong as it sounds, the idea of fucking my $lexi.them is a massive turn on.<</say>>
<<say "kylie">>You and I were destined to meet. I can't wait to see you tear up her pussy.<</say>>
<<narrate>>She bites her lip and checks you out as she walks past you and into her new home.<</narrate>>
<<say "kylie">>Don't be a stranger.<</say>>
<<think "mc">>Ha! Did I just find a partner in crime?<</think>>
<<button "Continue" townhub>>
<<lust "kylie" 4>>
<<like "kylie" 3>>
<<event "lexi" "relationship" "taboo">>
<<event "kylie" "homed">>
<</button>>
<</replace>>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<say "mc">>$kylie.name. She's my $lexi.them, it ain't happening.<</say>>
<<say "kylie">>But why? You're both hot as fuck, the three of us could have suc fun.<</say>>
<<say "mc">>Nah, I'm not into it.<</say>>
<<say "kylie">>Booooring! You know where I am <b>when</b> you change your mind.<</say>>
<<narrate>>She heads into the house.<</narrate>>
<<say "kylie">>Don't be a stranger.<</say>>
<<button "Continue" townhub>>
<<lust "kylie" 3>>
<<event "lexi" "relationship" "platonic">>
<<event "kylie" "homed">>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<elseif $lexi.events.relationship == "taboo">>
<<say "mc">>Fucking my $lexi.them? Fuck yeah.<</say>>
<<say "kylie">>You and I were destined to meet. I can't wait to see you tear up her pussy.<</say>>
<<narrate>>She bites her lip and checks you out as she walks past you and into her new home.<</narrate>>
<<say "kylie">>Don't be a stranger.<</say>>
<<think "mc">>Ha! Did I just find a partner in crime?<</think>>
<<button "Continue" townhub>>
<<lust "kylie" 4>>
<<like "kylie" 3>>
<<event "lexi" "relationship" "taboo">>
<<event "kylie" "homed">>
<</button>>
<<else>>
<<say "mc">>$kylie.name. She's my $lexi.them, it ain't happening.<</say>>
<<say "kylie">>But why? You're both hot as fuck, the three of us could have suc fun.<</say>>
<<say "mc">>Nah, I'm not into it.<</say>>
<<say "kylie">>Booooring! You know where I am <b>when</b> you change your mind.<</say>>
<<narrate>>She heads into the house.<</narrate>>
<<say "kylie">>Don't be a stranger.<</say>>
<<button "Continue" townhub>>
<<lust "kylie" 3>>
<<event "lexi" "relationship" "platonic">>
<<event "kylie" "homed">>
<<time 1>>
<</button>>
<</if>>
<<case "settled">>
<<narrate>>You knock on $kylie.name's door.<</narrate>>
<<say "kylie">>Come in.<</say>>
<<narrate>>You enter the door expecting it to be a bit of a mess still. You are astonished to see it is in fact spotless.<</narrate>>
<<block "kylie/settled01.jpg">>
<<say "kylie">>Hey, handsome!<</say>>
<<narrate>>She waves her arms around theatrically.<</narrate>>
<<say "kylie">>Ta-da! What do you think?<</say>>
<<say "mc">>I can't believe how different it is - and how quickly you achieved it!<</say>>
<<say "kylie">>So, you here to discuss our grand plan to fuck your $lexi.them?<</say>>
<<narrate>>You laugh.<</narrate>>
<</block>>
<<if $lexi.events.relationship == "taboo">>
<<say "mc">>You're extremely eager.<</say>>
<<say "kylie">>And you're not? Look at her, she's like a fucking goddess.<</say>>
<<say "mc">>Well, then, what's your plan?<</say>>
<<narrate>>She comically raises her eyebrows up and down.<</narrate>>
<<say "kylie">>It's simple, you and I are gonna fuck...<</say>>
<<say "mc">>One hundred percent on board.<</say>>
<<say "kylie">>Figured you might be. But there's more. We're gonna fuck and she's gonna catch us.<</say>>
<<if checkUnlocks('movie', 'lexiwatchvanna', 'vanna') == false>>
<<say "mc">>How will that help?<</say>>
<<say "kylie">>Oh, you'll see. Don't worry, once we've torn down her barriers, the three of us will be at it like rabbits.<</say>>
<<else>>
<<say "mc">>She saw me screwing $vanna.name already.<</say>>
<<say "kylie">>Yeah, but $vanna.name won't be putting the work in with $lexi.name beforehand like I will be.<</say>>
<</if>>
<<else>>
<<say "mc">>I told you before, I've no interest in that.<</say>>
<<say "kylie">>Ugh, whatever. But, you and I can still have fun, right? And if she just so happened to be there...?<</say>>
<<say "mc">>Then we'd stop or ask her to leave.<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "kylie">>You're no fun!<</say>>
<</if>>
<<think "mc">>I wonder... The day I met her she and $alexis.name were caught screwing in $harley.name's living room. <<if $kylie.events.kenzie != undefined>> There was also the event at the spa.<</if>> Now she's talking about similar scenarios. Does she get off on being watched, or maybe even just the thought of getting caught?<</think>>
<<notice>>Now she's settled, you can visit her when she's home whenever you like.<</notice>>
<<button "Continue" townhub>>
<<taskdone "kylie2">>
<<lust "kylie" 3>>
<<like "kylie" 3>>
<<event "kylie" "settledin">>
<<time 1>>
<</button>>
<<case "homeless">>
<<narrate>>You notice the time and rush over to speak with $kylie.name.<</narrate>>
<<think "mc">>Homeless? The woman is crazy!<</think>>
<<block "kylie/homeless01.jpg">>
<<set _p = State.variables[$kylie.events.homeless]>>
<<narrate>>She's chatting to _p.name when you arrive. She looks over at you nervously as you enter the room.<</narrate>>
<<say "mc">>There's no way you're going homeless when I have these damn empty homes and rooms here!<</say>>
<<narrate>>You blurt it out without even greeting her.<</narrate>>
<<say "kylie">>But I can't— wait, how did you even know? _p.name hasn't left me since we arrived.<</say>>
<<say $kylie.events.homeless>>He could see and hear through me when we were talking.<</say>>
<<say "kylie">>Holy shit. But, really, I don't want to impose.<</say>>
<</block>>
<<say "mc">>It's no imposition. We've literally a bunch of empty buildings and a hotel at minimal occupancy. We'd love you at the hotel!<</say>>
<<say "kylie">>But... but why?<</say>>
<<say "mc">>Why what?<</say>>
<<say "kylie">>Why would you help me?<</say>>
<<say "mc">>Because you need help and I have the means? I don't think I understand the question.<</say>>
<<think "mc">>And I have a weakness for beautiful women.<</think>>
<<say "kylie">>But I don't even know you, not really.<</say>>
<<say "mc">>Well, from what little I have seen of you, you're heaps of fun. If you're around then we can get to know each other. If you suck, I'll just ignore you.<</say>>
<<think "mc">>Actually, if you suck, I'll come see you daily!<</think>>
<<narrate>>She finally cracks a smile and takes a seat.<</narrate>>
<<block "kylie/homeless03.jpg">>
<<say "kylie">>This is amazing. I can't even. But, what about rent? I don't earn—<</say>>
<<say "mc">>There's no rent. And if you want a job, we can see if anything here would suit you. Or you can commute off world to your existing jobs.<</say>>
<<say "kylie">>This... this is too good to be true. But, I don't think I can stay at the hotel with you all. I don't want to rely on you guys any further. It's already too much.<</say>>
<<say "mc">>No problem, there's a town full of real estate, take your pick. They may need some work as they've been empty a while.<</say>>
<<narrate>>She almost seems giddy now. A far cry from her sobbing on her porch just a few hours ago.<</narrate>>
<</block>>
<<say "mc">>Do you want to work here too?<</say>>
<<say "kylie">>Honestly, I hate my jobs... but it kinda depends on what you want me to do. But if it helps repay my debt to you, definitely.<</say>>
<<think "mc">>Oh, there are several things I want you to do.<</think>>
<<say $kylie.events.homeless>>What about the farm? You seem to like animals.<</say>>
<<think "mc">>I almost forgot _p.name was here!<</think>>
<<say "kylie">>Yeah, I guess I could do that.<</say>>
<<say "mc">>You don't seem too enthusiastic.<</say>>
<<say "kylie">>Sorry, I am, this is truly a fantastic offer. But farm work never interested me. I'll do it, though!<</say>>
<<say "mc">>Well, what are your skills? What do you think you're best at?<</say>>
<<say "kylie">>Hmm, I have some bar tending experience and I used to work as a cook in a small restaurant, but what I've always enjoyed most is massage.<</say>>
<<if $buildings.spa != undefined>>
<<say "mc">>Perfect! We have a spa you can work at.<</say>>
<<else>>
<<think "mc">>Regardless of $kylie.name, I think a spa would be a really good idea. It would give the workers somewhere to relax and reduce their fatigue too.<</think>>
<<tech "spa">>
<<say "mc">>We're working on the spa, but in the meantime it sounds like we can make use of your other skills.<</say>>
<</if>>
<<block "kylie/homeless02.jpg">>
<<say "kylie">>This is fantastic. How can I ever make it up to you?<</say>>
<<say "mc">>Oh, I'm sure we'll figure something out.<</say>>
<<narrate>>_p.name rolls her eyes.<</narrate>>
<<say $kylie.events.homeless>>Let me show you the town.<</say>>
<<say "mc">>Thanks, _p.name.<</say>>
<</block>>
<<if $kylie.events.homeless == "lexi">>
<<narrate>>As they're leaving, you can't help but notice the way $kylie.name is looking at _p.name.<</narrate>>
<<else>>
<<narrate>>As they're leaving, $lexi.name walks by. You can't help but notice the way $kylie.name is looking at her<</narrate>>
<</if>>
<<notice>>$kylie.name has taken up residence in one of the abandoned buildings in town.
<br>When she's available to you, there will be an option to speak to her in town.
<</notice>>
<<button "Continue" homehub>>
<<taskdone "kyliereturn">>
<<like "kylie" 15>>
<<lust "kylie" 5>>
<<like $kylie.events.homeless 3>>
<<event "kylie" "settled">>
<<set delete $schedules.kylie>>
<<set delete $kylie.events.timer>>
<<temp "">>
<<time 1>>
<</button>>
<<case "lexi">>
<<block "kylie/strat01.jpg">>
<<say "mc">>Shall we discuss our $lexi.name plans?<</say>>
<<narrate>>She nods enthusiastically.<</narrate>>
<<say "kylie">>So, it's gonna be super simple. We fuck somewhere we know she's gonna go.<</say>>
<<say "mc">>She goes to the lounge most days at noon if she's not working.<</say>>
<<say "kylie">>Exactly, so we go in about 11:00, get ourselves setup then start fucking just before she's due!<</say>>
<</block>>
<<say "mc">>And if it doesn't work, we still had fun.<</say>>
<<say "kylie">>Oh, it'll work!<</say>>
<<if checkUnlocks('movie', 'lexiwatchvanna', 'vanna') == false>>
<<say "mc">>How can you be so sure? She watched me and $vanna.name fucking and didn't just magically fall into my bed.<</say>>
<<else>>
<<say "mc">>How can you be so sure? How is seeing us fucking going to make her magically fall into my bed?<</say>>
<</if>>
<<say "kylie">>You let me worry about the details. But basically, we'll work together to, shall we say, corrupt her. Couple that with the constant exposure of us two fucking like rabbits, we'll have her on her knees licking my pussy while you're clapping her ass cheeks in no time.<</say>>
<<say "mc">>You have such a way with words. So this isn't a one time thing?<</say>>
<<say "kylie">>Nope, it's gonna take two or three attempts, I reckon.<</say>>
<<say "mc" "" "(Sarcastically)">>Oh. No. Having to fuck you so much. Whatever will I do?<</say>>
<<think "mc">>But seriously, how would she know that? She's just picking numbers out of thin air, surely.<</think>>
<<say "kylie">>Ha, I'm sure you'll be able to endure it.<</say>>
<<narrate>>She starts rubbing your thigh.<</narrate>>
<<say "kylie">>Though before the main event, there's something I quickly want to check out.<</say>>
<<narrate>>She unzips your jeans while you watch with delight.<</narrate>>
<<say "mc">>Please. Be my guest.<</say>>
<<narrate>>Before your jeans have even hit the floor, your dick is in her grasp.<</narrate>>
<<button "Continue" kyliesex>>
<<temp "homebj">>
<</button>>
<</switch>><<set _active = "kylie">>
<<set _passage = _active+"answers">>
<<set $return = returnLocation()>>
<<smallflirt _active>>
<<if $location == "home">>
<<set $return = "townhub">>
<</if>>
<<if $tasks.kylietrainer>>
<<link "Champion" kylieanswers>>
<<temp champ>>
<</link>><br>
<</if>>
<<if $kylie.events.lexithree == 2>>
<<opt "Gory Details" _passage "lexithree">><</opt>>
<</if>>
<<if $kylie.events.lexithree == 3 && $lexi.sex >= $lexi.sextarget>>
<<opt "$lexi.name's Corruption" _passage "lexithree2">><</opt>>
<</if>>
<<if $kylie.events.momteach == 4>>
<<opt "Laurence" _passage "wholaur">><</opt>>
<</if>>
<<if $helena.events.step == 1>>
<<opt "Her Mom" _passage "momma">><</opt>>
<</if>>
<<if ($tasks.fyodr != undefined || $completeTasks.includes('fyodr')) && $kylie.events.planets == undefined>>
<<link "Planets" kylieanswers>>
<<temp "planets">>
<</link>><br>
<</if>>
<<if $kylie.events.lexi == undefined && $lexi.events.relationship == "taboo">>
<<link $lexi.name kylieanswers>>
<<temp "lexi">>
<</link>><br>
<</if>>
<<if $anna.events.model == 2>>
<<link $anna.name kylieanswers>>
<<temp "anna">>
<</link>><br>
<</if>>
<<if $location == "office" && $girlshere.includes('maddy')>>
<<link "What are you doing here?" kylieanswers>>
<<temp "maddyoffice">>
<</link>><br>
<</if>>
<<link "Never mind" $return>><</link>><<scene>>
<<narrate>>You search for $kylie.name around the Gateway facilities, you'd all but given up, assuming she'd gone home, when someone taps your shoulder.<</narrate>>
<<say "kylie">>Are you looking for someone, handsome?<</say>>
<<block "kylie/meet.jpg">>
<<say "mc">>Not anymore.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kylie">>Oh, and why's that, then?<</say>>
<<say "mc">>Because I was looking for you, $kylie.name.<</say>>
<<narrate>>Her face drops and her posture changes.<</narrate>>
<<say "kylie">>Who are you? How do you know my name?<</say>>
<</block>>
<<say "mc">>Whoa, whoa! I'm $name, I was told you wanted to check out this world.<</say>>
<<narrate>>She relaxes.<</narrate>>
<<say "kylie">>Holy shit, a real life patron, huh? I thought you might be some creepy stalker!<</say>>
<<say "mc">>I guess with your beauty, you get plenty of those, eh?<</say>>
<<say "kylie">>Ha!<</say>>
<<say "mc">>So how have you found the place?<</say>>
<<block "kylie/meet02.jpg">>
<<say "kylie">>Pretty cool. <<if $buildings.farm != undefined>>I really loved the farm, wish there were a few more animals, though.<<build "farm">><</if>><<if $buildings.farm == undefined>>Though have you thought about a farm with lots of cute animals?<</if>><</say>>
<<say "mc">>Uh... I'll see what I can do.<</say>>
<<say "kylie">>Awesome, and a personal visit from the patron? Crazy!<</say>>
<<say "mc">>Well if you ever want a proper tour or to stay over for a bit, you don't seem behind the door, and I'd really like to get to know you better.<</say>>
<</block>>
<<say "kylie">>Oh, I am so down. For now, I need to get going. Would you send me home?<</say>>
<<say "mc">>Sure, just remember it's an open invitation.<</say>>
<<narrate>>The two of you head back to the gateway, as you draw close, you feel the power inside you reacting.<</narrate>>
<<say "kylie">>Well, my home world is $planets[5].name, the coordinates are 30510-78541-8.<</say>>
<<say "mc">>Oh, I don't think I've ever accessed that world, I don't know that—<</say>>
<<narrate>>It feels as if your power explodes from ever pore as the gateway crashes open. You vaguely feel $kylie.name stroke your crotch and whisper in your ear something about an exciting time when she's next here, but you're so consumed in the powerful pleasure swelling inside you that you can't concentrate on her.<</narrate>>
<<think "mc">>This is so much stronger than previously!<</think>>
<<narrate>>As the pleasure dissipates, you're left in a sweaty heap on the floor, with $kylie.name nowhere to be found. You notice your mental address book has a new entry.<</narrate>>
<<think "mc">>I thought I could only send travelers to places they'd come from, or I'd discovered previously? Maybe I should ask $kp.name or $voice.name about this.<</think>>
<<notice>>
<ul>
<li>Your power has increased.</li>
<li>Your max energy has massively increased.</li>
<li>$kylie.name's home world is now available for expeditions.</li>
</ul>
<</notice>>
<<button "Continue" gatewayb>>
<<like "kylie" 10>>
<<lust "kylie" 10>>
<<event "kylie" "met">>
<<event "kylie" "hello">>
<<set $planets[5].unlocked = true>>
<<unavailable "kylie">>
<<piggy "kyliefarm">>
<<set $power += 2>>
<<set $maxenergy += 10>>
<<taskdone "kyliegreet">>
<<task "kylie">>
<<set $scene = 0>>
<<run overrideSchedule('kylie', 8, 24, "Off World")>>
<<run checkSchedules()>>
<</button>><<scene>>
<<switch $tempvar>>
<<case "fest">>
<<narrate>>You look around the campgrounds for $kylie.name.<</narrate>>
<<left2 "kylie/camp01.jpg">>
<<if $festival.kylie.les == true>>
<<say kylie>>You're not gonna believe this shit, come with me!<</say>>
<<say mc>>What is it?<</say>>
<<narrate>>She grabs your hand and leads you to the camper van area.<</narrate>>
<<say kylie>>You'll see.<</say>>
<<narrate>>As you approach, $lala.name is stood outside a grotty looking camper van.<</narrate>>
<<say lala>>It's seen better days... but it gets the job done.<</say>>
<<say kylie>>Oh, something's about to get <b>done</b>, alright.<</say>>
<<else>>
<<say kylie>>Found us some fun... a young musician from New Eden. She's... very interested in your reputation.<</say>>
<<say mc>>Oh? What reputation is that.<</say>>
<<narrate>>She gives you sarcastic look.<</narrate>>
<<say kylie>>The only one you care about. Come on, she's got a shitty RV.<</say>>
<<narrate>>She grabs your hand and leads you to the camper van area. As you approach there's a woman looking rather nervous.<</narrate>>
<<say kylie>>That's her. Be cool.<</say>>
<<say mc>>Be cool...? Not heard you talk like that before, but when am I not?<</say>>
<<say kylie>>Ha! Just follow my lead.<</say>>
<<meet lala>>
<<left2 "east/lala/camp01.jpg">>
<<narrate>>She confidently strides over to her, grabs her ass, pulls her face toward hers and kisses her. The other woman visibly relaxes at this, the nervousness apparently just washing away.<</narrate>>
<<say lala "???">>I wasn't sure when she first suggested it, but when I heard it was you she was talking about, well, I was obviously down for it. You've quite the reputation back home.<</say>>
<<say mc>>I'm guessing you must be from New Eden.<</say>>
<<if $va.events.music >= 1 && $festival.dream >= 1>>
<<say lala "???">>Ouch, does that mean you didn't come to see me play with <em>Dirty Doughnuts</em>? I'm <<textbox "$lala.name" $lala.name>>, the lead singer.<</say>>
<<think mc>>Honestly, I've heard and seen so many different acts I haven't a clue. But they've all been fantastic, so...<</think>>
<<say mc>>You guys put on a great show!<</say>>
<<say kylie>>Well, how bout we put on a show together?<</say>>
<<elseif $va.events.music >= 1>>
<<say lala "???">>Did $va.name not even give you my headshot?<</say>>
<<say mc>>Huh?<</say>>
<<say lala "???">>She's the one who got me and my band, <em>Dirty Doughnuts</em>, the gig. I was told on your request...<</say>>
<<say mc>>Yeah, I asked her for some talent, but she was a little woolly on the details, I have to be honest.<</say>>
<<say lala "???">> I'm <<textbox "$lala.name" $lala.name>>, the lead singer.<</say>>
<<say kylie>>All this business talk when we could be naked...<</say>>
<<else>>
<<say lala "???">>I wish I'd got to play this kinda show. I'm <<textbox "$lala.name" $lala.name>>, the lead singer of <em>Dirty Doughnuts</em>.<</say>>
<<say kylie>>Well, now we can all put a show on together!<</say>>
<</if>>
<</if>>
<<cont "kyliesex" "fest00">>
<<case "fest00">>
<<narrate>>$lala.name swings the door open, politely gesturing $kylie.name to go forward.<</narrate>>
<<say kylie>>This is gonna be fun...<</say>>
<<narrate>>She pushes you through the open entrance, almost causing you to trip on the steps. You stumble back on to the kitchen cabinets where $kylie.name quickly descends on you, her tongue finding its way into your mouth before you've even had a moment to react.<</narrate>>
<<say lala>>Holy shit, you don't mess around.<</say>>
<<say kylie>>You ain't seen nothing yet.<</say>>
<<narrate>>She drops to her knees, claws at your belt and tugs at your trousers until your cock is firmly in her grasp.<</narrate>>
<<say kylie>>Just look at this magnificent specimen.<</say>>
<<say lala>>Wow... I guess the rumors were true!<</say>>
<<narrate>>$kylie.name winks at $lala.name then takes your cock into her mouth. The sudden warmth and feeling making you rolle you head back in delight.<</narrate>>
<<say lala>>Well now... I thought we were sharing?<</say>>
<<narrate>>$kylie.name chuckles.<</narrate>>
<<say kylie>>C'mon big boy, on the bed!<</say>>
<<cont "kyliesex" "fest01">>
<<case "fest01">>
<<narrate>>She pushes you down on the bed and the two of the descend upon your cock as if they haven't eaten for days.<</narrate>>
<<vid "kylie/f01.mp4">>
<<say kylie>>Ohh~ yeah, suck that fucking cock. Yeah, suck it.<</say>>
<<narrate>>She massages your balls as $lala.name continues to work your rod.<</narrate>>
<<say kylie>>Yeah, you like that? You like that?<</say>>
<<narrate>>You nod.<</narrate>>
<<say mc>>Fuckin' love it!<</say>>
<<say lala>>Then you'll love this!<</say>>
<<narrate>>She casts off her clothes while grinning at you.<</narrate>>
<<cont "kyliesex" "fest02">>
<<case "fest02">>
<<narrate>>Her body quivers as she lowers herself gently on to your manhood.<</narrate>>
<<vid "kylie/f02.mp4">>
<<say lala>>Feels so nice just like that.<</say>>
<<narrate>>$kylie.name hungrily tries to suck on $lala.name's tits while she bounces on your cock.<</narrate>>
<<say lala>>Oh, my god, just like that. It feels so fucking good. Feels so good. That's it.<</say>>
<<say kylie>>You're such a good girl, baby.<</say>>
<<cont "kyliesex" "fest03">>
<<case "fest03">>
<<vid "kylie/f03.mp4">>
<<say lala>>You look so hot taking that big dick.<</say>>
<<say lala>>You guys look so good.<</say>>
<<say kylie>>My pussy's so wet<</say>>
<<cont "kyliesex" "fest04">>
<<case "fest04">>
<<vid "kylie/f04.mp4">>
<<say lala>>Oh, yes, baby, just like that.<</say>>
<<narrate>>$lala.name massages your balls as $kylie.name bounces happily on your cock.<</narrate>>
<<say kylie>>it's so good.<</say>>
<<say lala>>So fucking hot, just like that.<</say>>
<<narrate>>With the two of them so eager and rough, you struggle to hold yourself back, and can already feel your end closing in.<</narrate>>
<<cont "kyliesex" "fest05">>
<<case "fest05">>
<<vid "kylie/f05.mp4">>
<<say kylie>>Yeah, baby, you look so good with that dick in your pussy.<</say>>
<<say lala>>It feels so fucking good.<</say>>
<<narrate>>As you pound away, holding on to $lala.name hips trying to hold yourself back, she starts lapping at $kylie.name's pussy.<</narrate>>
<<say kylie>>So good...<</say>>
<<narrate>>The sensations are too much and the pleasure inside you is speeding to its exit.<</narrate>>
<<say mc>>Shit, shit, shit, I'm gonna blow!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<narrate>>$lala.name pulls $kylie.name up and they hurry to kneel before you.<</narrate>>
<<vid "kylie/f07.mp4">>
<<narrate>>Having the two of them looking up at you, mouths wide open as they await your seed, it only takes a moment to release.<</narrate>>
<<say mc>>Fucking, fuck, fuck, yes, fucking take it bitches!<</say>>
<<narrate>>The two of them happily take every last drop as you explode over their faces.<</narrate>>
<<say kylie>>Yes, give it to me!<</say>>
<<narrate>>After you're done, they face each before embracing, exchanging your cum between them as they kiss.<</narrate>>
<<say mc>>Fuck that's dirty. I love it.<</say>>
<<narrate>>The two of them giggle as they continue.<</narrate>>
<<unlock "kylie" "f">>
<<unlock "lala" "f">>
<<button "Continue" festival>>
<<set $horny = 0>>
<<lust "kylie" 4>>
<<temp $festival.next>>
<<time 3>>
<</button>>
<</replace>>
<<ScrollTo "replace">>
<</button>>
</div>
<<case "camp">>
<<narrate>>You look around the campgrounds for $kylie.name.<</narrate>>
<<left2 "kylie/camp01.jpg">>
<<say kylie>>You know, I was starting to worry you'd not show.<</say>>
<<say mc>>And miss a potential show? I don't think so.<</say>>
<<narrate>>She grins at you.<</narrate>>
<<say kylie>>I think that's one of things I like about you most...<</say>>
<<say mc>>What's that?<</say>>
<<say kylie>>You think with your cock.<</say>>
<<narrate>>You chuckle.<</narrate>>
<<left2 "east/lala/camp01.jpg">>
<<say kylie>>Anyway, my friend and I are gonna go have some fun...<</say>>
<<narrate>>The other woman smiles at you confidently.<</narrate>>
<<meet lala>>
<<say lala "???">>I wasn't sure when she first suggested it, but when I heard it was you she was talking about, well, I was obviously down for it. You have quite the reputation back home.<</say>>
<<say mc>>I'm guessing you must be from New Eden.<</say>>
<<if $va.events.music >= 1 && $festival.dream >= 1>>
<<say lala "???">>Ouch, does that mean you didn't come to see me play with <em>Dirty Doughnuts</em>? I'm <<textbox "$lala.name" $lala.name>>, the lead singer.<</say>>
<<think mc>>Honestly, I've heard and seen so many different acts I haven't a clue. But they've all been fantastic, so...<</think>>
<<say mc>>You guys put on a great show!<</say>>
<<say kylie>>Well, she's about to put on an even better one!<</say>>
<<elseif $va.events.music >= 1>>
<<say lala "???">>Did $va.name not even give you my headshot?<</say>>
<<say mc>>Huh?<</say>>
<<say lala "???">>She's the one who got me and my band, <em>Dirty Doughnuts</em>, the gig. I was told on your request...<</say>>
<<say mc>>Yeah, I asked her for some talent, but she was a little woolly on the details, I have to be honest.<</say>>
<<say lala "???">> I'm <<textbox "$lala.name" $lala.name>>, the lead singer.<</say>>
<<say kylie>>All this business talk when I could be naked...<</say>>
<<else>>
<<say lala "???">>I wish I'd got to play this kinda show. I'm <<textbox "$lala.name" $lala.name>>, the lead singer of <em>Dirty Doughnuts</em>.<</say>>
<<say kylie>>Well, now you can do a private show for the patron himself!<</say>>
<</if>>
<<narrate>>$kylie.name grabs her by the hand, gives you a wink, then guides her inside a nearby tent.<</narrate>>
<<cont "kyliesex" "camp01">>
<<case "camp01">>
<<narrate>>You're only a few seconds behind them, but by the time you're inside the tent, their lips are already locked together and $lala.name's top is halfway off.<</narrate>>
<<vid "kylie/camp01.mp4">>
<<narrate>>You watch with a fascination as $kylie.name's wandering hand further loosens $lala.name's top. It doesn't take her long to get the hint.<</narrate>>
<<say kylie>>Let's get these off...<</say>>
<<think mc>>She never fails to deliver...<</think>>
<<cont "kyliesex" "camp02">>
<<case "camp02">>
<<vid "kylie/camp02.mp4">>
<<narrate>>$kylie.name once again takes charge, bearing down on the naked $lala.name, and gently teasing her.<</narrate>>
<<say kylie>>You like the way I play with it?<</say>>
<<say lala>>It's so good. Yes, just like that.<</say>>
<<cont "kyliesex" "camp03">>
<<case "camp03">>
<<narrate>>$kylie.name turns to face you, gives you a quick wink, then lowers her face to $lala.name's pussy.<</narrate>>
<<vid "kylie/camp03.mp4">>
<<say lala>>You're so sexy... yes, just like that.<</say>>
<<narrate>>As $kylie.name starts to caress herself, her vagina very much in your direction, you fight the temptation to grab her by the hips and turn it into a threeway.<</narrate>>
<<think mc>>We agreed they could have some fun together first... $lala.name might need easing into things before I get involved. But damn, she's definitely toying with me there!<</think>>
<<narrate>>As if reading thoughts, $kylie.name looks back over her shoulder at you and chuckles.<</narrate>>
<<cont "kyliesex" "camp04">>
<<case "camp04">>
<<narrate>>In the moment $kylie.name is temporarily distracted by you, $lala.name takes the offensive, pushing $kylie.name back to the other side of the tent so she can repay the oral favor.<</narrate>>
<<vid "kylie/camp04.mp4">>
<<narrate>>She teases $kylie.name, kissing and sucking at her clit while sliding her finger in and out.<</narrate>>
<<say lala>>Oh, yes.<</say>>
<<narrate>>She licks her labia up and down.<</narrate>>
<center>
<<say kylie "" "" "" "width:45%; display: inline-block;">>That feels soo good.<</say>>
<<say lala "" "" "" "width:45%; display: inline-block; margin-left: 20px;">>I love your pretty pussy.<</say>>
</center>
<<narrate>>$lala.name goes in for another taste, this time having two fingers inside $kylie.name.<</narrate>>
<<cont "kyliesex" "camp05">>
<<case "camp05">>
<<narrate>>$kylie.name puts two fingers under $lala.name's chin and raises her head to face her.<</narrate>>
<<say kylie>>There's no reason we can't both eat...<</say>>
<<vid "kylie/camp05.mp4">>
<<say lala>>Oh, yes, ahhh~<</say>>
<<say lala>>Yeah, that's so good. My pussy's so wet.~<</say>>
<<cont "kyliesex" "camp06">>
<<case "camp06">>
<<vid "kylie/camp06.mp4">>
<<say kylie>>Oh, my god, your pussy's so wet!<</say>>
<<narrate>>The sounds of their moans and flesh colliding fill the immediate area, and you can't help but wonder if they're purposefully trying to attract a larger audience.<</narrate>>
<<say kylie>>Oh, god, your pussy feels so good against mine.<</say>>
<<narrate>>They keep going until $lala.name is unable to take anymore. Her arms give way and her head slides over the wall of the tent.<</narrate>>
<<narrate>>They lay there sweaty and out of breath for a few minutes.<</narrate>>
<<say lala>>That... was incredible... and it felt so naughty with him watching us.<</say>>
<<say mc>>Hey, glad I could be of service.<</say>>
<<say lala>>Oh, I'm sure there's more you can help with yet.<</say>>
<<narrate>>She gives you a wink.<</narrate>>
<<say kylie>>We probably got some unwanted attention here, maybe we should use your camper van next time?<</say>>
<<say lala>>Yeah, good idea. Come on let's get outta here.<</say>>
<<say mc>>Wait, you're not saying here?<</say>>
<<say lala>>No, camping isn't my thing.<</say>>
<<say mc>>Then whose tent is this?<</say>>
<<narrate>>They look at each other, shrug, and then burst out laughing before skipping away.<</narrate>>
<<think mc>>Fuck, that's not cool. Hopefully we didn't disturb anything that'll upset the actual owner.<</think>>
<<set $festival.kylie.watched = true>>
<<unlock "kylie" "camp">>
<<unlock "lala" "camp">>
<<button "Continue" festival>>
<<set $horny += 5>>
<<lust "kylie" 4>>
<<temp $festival.next>>
<<time 3>>
<</button>>
<<case "kenna">>
<<narrate>>$kenna.name pulls her top off over her head and throws it behind her. Almost comically, it lands on your head, you quickly push it aside, not wanting to miss the show.<</narrate>>
<<vid "kylie/kenna01.mp4">>
<<narrate>>As the two passionately embrace, $kenna.name's hand wanders downwards towards $kylie.name's pussy.<</narrate>>
<<think mc>>Noice!<</think>>
<<cont "kyliesex" "kenna02">>
<<case "kenna02">>
<<vid "kylie/kenna02.mp4">>
<<say kylie>>Mhmm, that's good.<</say>>
<<narrate>>The moment between them is almost tender, loving, and not the usual lust-fueled fucking you've come to expect from $kylie.name.<</narrate>>
<<cont "kyliesex" "kenna03">>
<<case "kenna03">>
<<vid "kylie/kenna03.mp4">>
<<say "kenna">>Yeah... yeah...<</say>>
<<narrate>>$kenna.name presses $kylie.name's face down on to her pussy as she moans with joy.<</narrate>>
<<think "mc">>Fuck...<</think>>
<<narrate>>You pull down your pants, a risky wank only turning you on more.<</narrate>>
<<cont "kyliesex" "kenna04">>
<<case "kenna04">>
<<vid "kylie/kenna04.mp4">>
<<say "kenna">>Fuck, yes!<</say>>
<<narrate>>You watch as $kylie.name delivers $kenna.name an orgasm with her ravenous tongue. $kenna.name clenches her muscles, completely lost to her climax.<</narrate>>
<<think mc>>Fuck, I could just take $kylie.name right now... would $kenna.name even notice?<</think>>
<<narrate>>You bottle up your intrusive thoughts and continue watching.<</narrate>>
<<cont "kyliesex" "kenna05">>
<<case "kenna05">>
<<vid "kylie/kenna05.mp4">>
<<say "kylie">>My turn.<</say>>
<<narrate>>She sits on $kenna.name's face.<</narrate>>
<<say kylie>>oh, fuck... yes... that's so good!<</say>>
<<narrate>>She looks over at you, while whimpering with joy. You blow your load right there, her eye contact and the depravity of the situation sending you over the edge.<</narrate>>
<<say kylie>>Yes, just like that...<</say>>
<<cont "kyliesex" "kenna06">>
<<case "kenna06">>
<<vid "kylie/kenna06.mp4">>
<<narrate>>$kenna.name rocks her hips back and forth over $kylie.name's face.<</narrate>>
<<say kenna>>Yes, yes, yes, yes!<</say>>
<<narrate>>A moment later, she collapses forward, another climax taking control. They both lie, out of breath and content.<</narrate>>
<<say kenna>>How was that for training?<</say>>
<<say kylie>>Amazing... I could really feel $name's power flowing through me as I reached orgasm.<</say>>
<<say kenna>>Benefits of his lust aspect.<</say>>
<<think mc>>This was actually training? Whoa...<</think>>
<<narrate>>You sneak out while you can.<</narrate>>
<<unlock "kylie" "kenna">>
<<unlock "kenna" "kylie">>
<<cont "kyliesex" "kenna07">>
<<case "kenna07">>
<<lust "kylie" 4>>
<<run overrideSchedule('kenna', 18, 22, "")>>
<<like "kylie" 6>>
<<narrate>>As you're quietly trying to leave, you hear footsteps running down the stairs.<</narrate>>
<<say "kylie" "" "(Shouting Upstairs)" "shout">>I'll just be a minute.<</say>>
<<narrate>>She throws herself on the sofa; still naked.<</narrate>>
<<center "kylie/kenna02.jpg">>
<<say kylie>>Enjoy the show, $name?<</say>>
<<say mc>>Shhh, what if she hears you?<</say>>
<<say kylie>>What about it? Anyway, I did actually wanna talk to you, I didn't invite you here <b>just</b> to watch me fuck your $kenna.them... although that was the most fun part of course.<</say>>
<<say mc>>Oh?<</say>>
<<say kylie>>I don't want to live here anymore.<</say>>
<<say mc>>Oh... I hadn't really thought what I'd do if you wanted to return to your home world... but if that's what you—<</say>>
<<say kylie>>What? No. I want to move into the hotel. I want to be closer to you; I want to be there when $founder.name shows up.<</say>>
<<say mc>>Oh, thank fuck for that. I was worried I was going to lose you.<</say>>
<<say kylie>>You'll not get rid of me that easily!<</say>>
<<say mc>>Talk to $armani.name, she'll get you a room setup.<</say>>
<<say kylie>>Already done, just wanted the go-ahead from you! I'll move in tomorrow.<</say>>
<<say mc>>Great, looking forward to it.<</say>>
<<say kenna "" "(Shouting Downstairs)" "shout">>I'm gonna take off, I need to catch up with $kenna.calls.<</say>>
<<say mc>>That's my cue to leave, speak to you later.<</say>>
<<cont townhub "" 2>>
<<case "docs">>
<<run newMessage("kylie", "docs")>>
<<run newMessage("kylie", "docs2")>>
<<run forceRead('kylie')>>
<<say "mc">>She'll be here in a mo... I'm gonna put some scrubs on.<</say>>
<<say "azul">>That's the spirit!<</say>>
<<narrate>>She arrives a moment after you finish getting changed.<</narrate>>
<<say "kylie">>Doctor, doctor! Please, I need that vitamin D!<</say>>
<<say "mc">>Come with me, we'll get you the medicine you need right away.<</say>>
<<narrate>>You both sit on the bed.<</narrate>>
<<say "mc">>So, it's not good. You're gonna need a long, hard treatment with plenty of medication.<</say>>
<<narrate>>She grins.<</narrate>>
<<say "kylie">>Is it administered orally?<</say>>
<<say "mc">>Oh, yes, very much so... but there's also a cream.<</say>>
<<narrate>>She tugs at your trousers.<</narrate>>
<<cont "kyliesex" "docs01">>
<<case "docs01">>
<<vid "kylie/docs01.mp4">>
<<narrate>>You let out a whimper of joy as she takes you into her mouth.<</narrate>>
<<say "kylie">>I want that dick so bad.<</say>>
<<script>>
setup.scriptpromise.then(function () {
if (settings['loopVid'] == true) {
var video = $('video')[0];
video.addEventListener("timeupdate", midloop);
function midloop() {
if (video.duration - video.currentTime < 0.5){
video.currentTime = 14.5;
}
}
}
});
<</script>>
<<cont "kyliesex" "docs02">>
<<case "docs02">>
<<narrate>>You both toss your clothes off then she sits back on the bed, eager for more of her medicine.<</narrate>>
<<vid "kylie/docs02.mp4">>
<<narrate>>You gaze into $azul.name's eyes and viscerally grunt as you fuck $kylie.name's mouth.<</narrate>>
<<cont "kyliesex" "docs03">>
<<case "docs03">>
<<vid "kylie/docs03.mp4">>
<<say "kylie">>Oh, shi– yes<</say>>
<<narrate>>She twerks on your dick as $azul.name looks on lustfully.<</narrate>>
<<cont "kyliesex" "docs04">>
<<case "docs04">>
<<vid "kylie/docs04.mp4">>
<<narrate>>The bed screams out in pain as $kylie.name bounces up and down on our dick.<</narrate>>
<<say "kylie">>Yes, yes. Ahh~<</say>>
<<narrate>>Unable to hold back, you piston into her with a frightful speed. Your assault causing her moans to become ever louder.<</narrate>>
<<cont "kyliesex" "docs05">>
<<case "docs05">>
<<vid "kylie/docs05.mp4">>
<<narrate>>You feel the touch of $azul.name on your back as you pound away at $kylie.name's pussy.<</narrate>>
<<say "mc">>Oh, shit, fuck!<</say>>
<<say "azul">>Yes, give her your cream. Give that dirty bitch exactly what she needs!<</say>>
<<say "kylie">>Ah~ fuck!<</say>>
<<say "mc">>Oh, god, yes, right there!<</say>>
<div id="replace">
<<button "Cum">>
<<replace "#replace">>
<<vid "kylie/docs06.mp4">>
<<narrate>>You pull out and explode over $kylie.name's body. Your cream spread unevenly across her torso.<</narrate>>
<<say "mc">>Holy fucking shit balls, yes, fuck!<</say>>
<<narrate>>She uses her finger to scoop up your cum, licking it off and smirks at you as she looks you in the eyes.<</narrate>>
<<say "kylie">>Wouldn't want to waste any vital medication, right?<</say>>
<<say "mc">>Maybe you need to come for regular checkups?<</say>>
<<narrate>>She giggles.<</narrate>>
<<button "Continue" kyliesex>>
<<temp "docs06">>
<<event "azul" "championobs">>
<<unlock "kylie" "docs">>
<<lust "kylie" 6>>
<<like "kylie" 3>>
<</button>>
<</replace>>
<<ScrollTo 'replace'>>
<</button>>
</div>
<<case "docs06">>
<<left2 "azul/nurse01.jpg">>
<<say "azul">>Now that was hot.<</say>>
<<say "kylie">>I'll say.<</say>>
<<say "mc">>Well, let's not make this a one-time thing, then.<</say>>
<<say "kylie">>You're definitely speaking my language.<</say>>
<<cont "housestuff" "" 2>>
<<case "annammeet">>
<<left2 "kylie/mature/follow01.jpg">>
<<narrate>>You look over at $kylie.name who almost immediately spots you and skips over.<</narrate>>
<<if checkUnlocks('movie', 'annameet', 'kylie') == false && $replay == false>>
<<say "kylie">>I was coming over to have some fun with your $anna.them, $anna.name. But, I think I'd prefer to try her regular form first.<</say>>
<<say "mc">>But you're not in your form... and you've already—<</say>>
<<say "kylie">>Yeah... but not properly.<</say>>
<<narrate>>She gives you a kiss then walks off.<</narrate>>
<<think "mc">>I wonder what she'd have done if $anna.name was in her regular form...<</think>>
<<if $replay == false>>
<<set $kylie.follow = 1>>
<</if>>
<<cont "housestuff">>
<<elseif $anna.events.maturefuck == undefined && $replay == false>>
<<say "kylie">>I thought the three of us could have some fun...<</say>>
<<say "mc">>Three?<</say>>
<<say "kylie">>You, me, and your $anna.them, $anna.name.<</say>>
<<say "mc">>Well, fuck, sign me up!<</say>>
<<say "kylie">>But you haven't fucked her in her mature form yet...<</say>>
<<say "mc">>Well, let's do that together.<</say>>
<<say "kylie">>As hot as that would be, I think she'd want you alone for her first time in that form.<</say>>
<<narrate>>She gives you a kiss then walks off.<</narrate>>
<<think "mc">>I need to fuck mature $anna.name right fucking now... I want this threesome!<</think>>
<<if $replay == false>>
<<set $kylie.follow = 1>>
<</if>>
<<cont "housestuff">>
<<else>>
<<say "kylie">>We're gonna have some fun today, sexy!<</say>>
<<say "mc">>Every moment with you is fun!<</say>>
<<say "kylie">>We're gonna fuck your $anna.them, $anna.name, together.<</say>>
<<say "mc">>Hell, yeah!<</say>>
<<say "kylie">>I'll warm her up, give me ten to fifteen, then you can <b>cum</b> right in!<</say>>
<<narrate>>She gives you a kiss then walks off to $anna.name's room.<</narrate>>
<<if $replay == false>>
<<set $kylie.follow = 1>>
<</if>>
<<choices>>
<<link "Follow Her" kyliesex>>
<<temp "annamaturethree">>
<</link>>
<<if $replay == false>>
<br>
<<link "Stay" housestuff>>
<</link>>
<</if>>
<</choices>>
<</if>>
<<case "annamaturethree">>
<<narrate>>The two of their bodies are already deeply intertwined when you arrive.<</narrate>>
<<vid "anna/mature/matthree01.mp4">>
<<narrate>>$anna.name bites her lip as she notices your arrival. The two of them continue their show, each of them stealing glances at you as you jerk off to the action.<</narrate>>
<<say "anna">>Want your $anna.them to help you out with that?<</say>>
<<cont "kyliesex" "annamaturethree02">>
<<case "annamaturethree02">>
<<vid "anna/mature/matthree02.mp4">>
<<say "anna">>Oh my god, yes, yes, yes. Oh, fuck!<</say>>
<<narrate>>$kylie.name furiously rubs $anna.name's clit as you slide in and out of her.<</narrate>>
<<say "anna">>God, that cock is so big.<</say>>
<<cont "kyliesex" "annamaturethree03">>
<<case "annamaturethree03">>
<<narrate>>$kylie.name kneels over $anna.name, presenting herself to you.<</narrate>>
<<vid "anna/mature/matthree03.mp4">>
<<say "kylie">>Fuck, yes, right there.<br>Oh, my god, yes, give it to me.<</say>>
<<cont "kyliesex" "annamaturethree04">>
<<case "annamaturethree04">>
<<vid "anna/mature/matthree04.mp4">>
<<say "kylie">>Yes, yes, yes!<</say>>
<<say "anna">>Oh my god that's so good!<</say>>
<<narrate>>Watching and feeling the scene unfold, you feel you've one last push left in you.<</narrate>>
<<cont "kyliesex" "annamaturethree05">>
<<case "annamaturethree05">>
<<vid "anna/mature/matthree05.mp4">>
<<say "mc">>Yes, fucking yes, take it, take my fucking YES!<</say>>
<<narrate>>The two of them exchange your cum between them while kissing.<</narrate>>
<<say "mc">>That's fucking dirty, I love it.<</say>>
<<button "Continue" yourroom>>
<<unlock "anna" "matthree">>
<<unlock "kylie" "matthree">>
<<lust "anna" 4>>
<<lust "kylie" 4>>
<<like "kylie" 2>>
<<corrupt "anna" 2>>
<<time 2>>
<</button>>
<<case "annameet">>
<<if $replay == true || checkUnlocks('movie', 'annameet', 'kylie') == false>>
<<think "mc">>Huh, $kylie.name isn't usually around here at this time, and it doesn't look like she's after me... just what is she up to?<</think>>
<<narrate>>She grins at you when she spots you and gives you a wink, but otherwise carries on walking. She knocks on $anna.name's door but doesn't wait for an answer.<</narrate>>
<<think "mc">>Just what is she up to?<</think>>
<<narrate>>As you're about to follow her, $anna.name comes out of her room, notices you and rolls her eyes, then skips off in the same direction as $kylie.name.<</narrate>>
<<think "mc">>Huh, I wonder where they're going.<</think>>
<<else>>
<<think "mc">>Looks like $kylie.name is visiting $anna.name again...<</think>>
<</if>>
<<if $replay == false>>
<<set $kylie.follow = 1>>
<</if>>
<<choices>>
<<link "Follow Them" kyliesex>>
<<temp "annameet01">>
<</link>>
<<if $replay == false>>
<br>
<<link "Stay" housestuff>>
<</link>>
<</if>>
<</choices>>
<<case "annameet01">>
<<if $replay == true || checkUnlocks('movie', 'annameet', 'kylie') == false>>
<<narrate>>You follow them down the corridor and down some stairs into a side of the hotel not often used. It looks to be another lounge; you can even see one of the pools outside.<</narrate>>
<<think "mc">>Given $anna.name's exhibitionism, I wouldn't have expected them to come somewhere so secluded, but maybe she chose here so the people in the pool can see her?<</think>>
<<narrate>>You can hear them giggling inside, then the sound of clothes hitting the floor following by the unmistakable sound of lips smacking together.<</narrate>>
<<think "mc">>Sounds like they are adequately engrossed in each other. That's my cue to sneak in.<</think>>
<div id="replace">
<<button "Sneak Inside">>
<<replace "#replace">>
<<vid "kylie/mature/ameet01.mp4">>
<<think "mc">>Is... that an ice cube in their mouths? Hot... ha!<</think>>
<<narrate>>You can't help but notice a particularly large array of sex toys over on the other side of the couch.<</narrate>>
<<think "mc">>Oh... this is going to be a good show!<</think>>
<<cont "kyliesex" "annameet02">>
<</replace>>
<</button>>
</div>
<<else>>
<<think "mc">>No point trying to sneak in... they were both aware of my presence last time and seemed absolutely fine with it... I daresay $anna.name even got off on it.<</think>>
<<narrate>>You let yourself in, the two of them already underway.<</narrate>>
<<vid "kylie/mature/ameet01.mp4">>
<<cont "kyliesex" "annameet02">>
<</if>>
<<case "annameet02">>
<<vid "kylie/mature/ameet02.mp4">>
<<narrate>>You continue to enjoy the show as the ice makes it way down $kylie.name's body.<</narrate>>
<<say "kylie">>Fuck, yes.<</say>>
<<cont "kyliesex" "annameet03">>
<<case "annameet03">>
<<vid "kylie/mature/ameet03.mp4">>
<<say "kylie">>Fuck... just like that, oh my god.<</say>>
<<narrate>>$anna.name's movements become quicker as $kylie.name breathes become shorter.<</narrate>>
<<say "kylie">>Yeah, yeah, don't stop. Oh, my god.<</say>>
<<cont "kyliesex" "annameet04">>
<<case "annameet04">>
<<narrate>>$kylie.name grabs more ice and they switch positions.<</narrate>>
<<vid "kylie/mature/ameet04.mp4">>
<<narrate>>After a few minutes, $anna.name's hand wanders to the side of the sofa to grab a dildo.<</narrate>>
<<cont "kyliesex" "annameet05">>
<<case "annameet05">>
<<narrate>>$kylie.name grins and takes a wand.<</narrate>>
<<vid "kylie/mature/ameet05.mp4">>
<<say "kylie">>Yeah, do that, do that, do that, fuck.<</say>>
<<say "kylie">>Yeah, yeah, I'm gonna squirt everywhere.<</say>>
<<cont "kyliesex" "annameet06">>
<<case "annameet06">>
<<vid "kylie/mature/ameet06.mp4">>
<<say "anna">>Yes, yes, yes, yes, yes. Keep going, keep going, keep going, keep go—.<</say>>
<<say "kylie">>Do it, do it, do it.<</say>>
<<say "anna">>Oh my god, <span style="font-size:120%">oh my god,</span> <span style="font-size:140%">oh my god,</span> <b style="font-size:160%">oh my god,</b> <b style="font-size:200%">oh my god,</b> <b style="font-size:250%">oh my god.</b><</say>>
<<cont "kyliesex" "annameet07">>
<<case "annameet07">>
<<vid "kylie/mature/ameet07.mp4">>
<<say "anna">>I'm so close, I'm so close. Fuck.<</say>>
<center>
<<say "anna" "" "" "" "width:40%; display: inline-block;">>Oh my god, fuuck!<</say>>
<<say "kylie" "" "" "" "width:40%; display: inline-block; margin-left: 20px;">>Fuuuuuuck!<</say>>
</center>
<<think "mc">>Shit, that was quite the show.<</think>>
<<narrate>>As you turn to leave, $anna.name speaks up.<</narrate>>
<<say "anna">>Hey, fuckface, I hope you enjoyed the show!<</say>>
<<think "mc">>Ha, I guess you can never fully remove the bitch. <</think>>
<<narrate>>You just give her a wave and head out.<</narrate>>
<<if $replay == true || checkUnlocks('movie', 'annameet', 'kylie') == false>>
<<think "mc">>So they knew I was there the whole time... probably don't need to sneak around next time and $anna.name certainly seems to enjoy an audience.<</think>>
<</if>>
<<button "Continue" househub>>
<<unlock "kylie" "annameet">>
<<unlock "anna" "kyliemeet">>
<<lust "kylie" 4>>
<<lust "anna" 4>>
<<like "kylie" 2>>
<<like "anna" 1>>
<<corrupt "anna" 5>>
<<time 2>>
<</button>>
<<case "firstt">>
<<narrate>>As soon as you're inside, you both throw off your clothes then she kneels before you.<</narrate>>
<<vid "kylie/mature/firstt01.mp4">>
<<narrate>>She wastes no time talking, and is quickly gagging on your cock.<</narrate>>
<<say "kylie">>I could do this all day, but my pussy needs to get fucked.<</say>>
<<vid "kylie/mature/firstt02.mp4">>
<<narrate>>You grin and tap your dick playfully across her vulva.<</narrate>>
<<cont "kyliesex" "firstt02">>
<<case "firstt02">>
<<vid "kylie/mature/firstt03.mp4">>
<<say "kylie">>Oh my god.<</say>>
<<narrate>>You start gently, letting her get used to her new body.<</narrate>>
<<say "kylie">>Yeah, that's it, nice and deep.<</say>>
<<narrate>>You cast caution aside as she moves her body in sync with yours, clearly wanting more.<</narrate>>
<<say "kylie">>Stretch that little pussy out.<</say>>
<<cont "kyliesex" "firstt03">>
<<case "firstt03">>
<<narrate>>She gestures you on to the bed.<</narrate>>
<<vid "kylie/mature/firstt04.mp4">>
<<narrate>>Barely able to form coherent sentences, she simply moans as she pleasures herself on your rod.<</narrate>>
<<say "kylie">>Oh, shit.<</say>>
<<cont "kyliesex" "firstt04">>
<<case "firstt04">>
<<narrate>>Lusting for more you throw her on to the bed and kneel behind her. She waggles her hips invitingly.<</narrate>>
<<vid "kylie/mature/firstt05.mp4">>
<<say "kylie">>Yes, yes, yes, don't fucking stop.<</say>>
<<narrate>>The bed wails out in anguish as you pound her from behind.<</narrate>>
<<say "kylie">>Oh my god, I'm cumming!<</say>>
<<narrate>>You relent briefly, to give her time to recover before your final onslaught.<</narrate>>
<<cont "kyliesex" "firstt05">>
<<case "firstt05">>
<<vid "kylie/mature/firstt06.mp4">>
<<say "kylie">>Oh yeah, don't fucking stop.<</say>>
<<narrate>>The cacophony of the springs, mixed with her moans and groans, fuel your lust to near breaking point.<</narrate>>
<<say "kylie">>Holy shit. Oh my god hnnng~<</say>>
<<narrate>>She climaxes again, and as her vaginal muscles tighten around your cock, you too are taken to the brink.<</narrate>>
<<say "mc">>Shit, I'm gonna—<</say>>
<<say "kylie">>My face. I want you to use me like a canvas!<</say>>
<<vid "kylie/mature/firstt07.mp4">>
<<unlock "kylie" "firstt">>
<<cont "kyliesex" "firstt06">>
<<case "firstt06">>
<<narrate>>The two of you lie together, panting from exhaustion and completely spent.<</narrate>>
<<say "mc">>That was wild.<</say>>
<<say "kylie">>This body made it feel so new... so fucking exciting. Maybe I should get a new one every week!<</say>>
<<narrate>>You both chuckle.<</narrate>>
<<say "mc">>You might wanna get a new bed first, this thing sounded like it was yearning for death.<</say>>
<<say "kylie">>Ha! So... $anna.name?<</say>>
<<say "mc">>Shit, yeah, I'd completely forgotten about her.<</say>>
<<say "kylie">>I'd be upset if you were thinking about anyone but me just now. But yeah, just send her around whenever you're ready... but only when I'm in this form.<</say>>
<<say "mc">>You got it, thanks $kylie.name.<</say>>
<<notice>>You've unlocked $kylie.name's mature form.<br>You can change her form at Gateway B.<</notice>>
<<button "Continue" townhub>>
<<lust "kylie" 6>>
<<like "kylie" 4>>
<<event "anna" "model" 3>>
<<time 2>>
<</button>>
<<case "lexilounge">>
<<run newMessage('kylie', 'lexi')>>
<<run newMessage('kylie', 'lexi2')>>
<<run forceRead("kylie")>>
<<narrate>>You put your phone in your pocket and sit on the couch.<</narrate>>
<<think "mc">>Is this really a good idea, will it work?<</think>>
<<narrate>>You watch TV for a bit until $kylie.name arrives.<</narrate>>
<<cont "kyliesex" "lexilounge2">>
<<case "lexilounge2">>
<<narrate>>About twenty-five minutes later, $kylie.name arrive and plonks herself down next to you on the sofa.<</narrate>>
<<block "kylie/lexi00.jpg">>
<<say "kylie">>This is gonna be so much fun, I can't wait to see the look on her face!<</say>>
<<if $girlshere.length > 0>>
<<say "mc">>What about the others in the lounge?<</say>>
<<say "kylie">>Eh? Isn't basically everyone living here part of your harem? I'm sure they're used to it by now.<</say>>
<<think "mc">>I mean... I guess...<</think>>
<</if>>
<<say "mc">>And you really think this will work?<</say>>
<<say "kylie">>I'm pretty sure, but you get to fuck me either way, right? So win-win!<</say>>
<</block>>
<<narrate>>You laugh.<</narrate>>
<<say "mc">>True, I'm having fun regardless... on that note...<</say>>
<<narrate>>You stand up, pull down your trousers and stand with your dick in front of her face.<</narrate>>
<<center "kylie/lexi01.jpg">>
<<say "kylie">>Raring to go, huh? No time for foreplay though, fuck me. She'll be here soon.<</say>>
<<narrate>>She pulls her jeans down to her knees and waggles her ass in the air at you.<</narrate>>
<<cont "kyliesex" "lexilounge01">>
<<case "lexilounge01">>
<<narrate>>You give her a few gentle nudges, but she's already dripping wet. She pushes her body back into you, signaling her intent.<</narrate>>
<<vid "kylie/lexilounge01.mp4">>
<<narrate>>You grab her hips and pound away, eager to have as much fun with it as you can.<</narrate>>
<<say "kylie">>Fuck me, fuck me, fuck me just like that!<</say>>
<<cont "kyliesex" "lexilounge02">>
<<case "lexilounge02">>
<<vid "kylie/lexilounge02.mp4">>
<<narrate>>You grunt as the pleasure consumes you. All thoughts of $lexi.name long stricken from your mind as you focus on the woman before you.<</narrate>>
<<say "kylie">>Aaaargh~ fuck yes, yes, yes!<</say>>
<<narrate>>She pushes her arm back, grabbing on to yours and providing you more leverage as you pummel away at her pussy.<</narrate>>
<<say "kylie">>Oh, fuck yes! She's almost due— oh fuck! Let's give her a better view.<</say>>
<<narrate>>She pushes you away for a moment then lays, to your surprise, on the back of the couch, presenting her pussy while looking at you lustfully.<</narrate>>
<<cont "kyliesex" "lexilounge03">>
<<case "lexilounge03">>
<<vid "kylie/lexilounge03.mp4">>
<<block "lexi/kcatch01.jpg">>
<<narrate>>You continue plowing $kylie.name as, unbeknownst to you, $lexi.name walks in to the lounge.<</narrate>>
<<say "lexi" "" "(Whispering to herself)" "whisper">>In broad daylight?! Have they no shame?<</say>>
<<narrate>>You'd all but forgotten the reason for this charade, you're too busy enjoying yourself. But you note $kylie.name's infectious smile becomes wider and her moans louder.<</narrate>>
<<say "kylie">>Yes, just like that, just like that!<</say>>
<<think "lexi">>I should go...<</think>>
<<narrate>>She turns to head out then stops.<</narrate>>
<<think "lexi">>But maybe I should just watch a little... $name said it was okay and maybe it'll help get it out of my system? Maybe it can satiate these desires...<</think>>
<</block>>
<<block "lexi/kcatch02.jpg">>
<<narrate>>She cranes over to get a better look.<</narrate>>
<<say "kylie">>Right there! Right there!<</say>>
<<say "kylie" "" "(Attempting to whisper)">>We've got a watcher!<</say>>
<<narrate>>$lexi.name's face goes pale upon hearing $kylie.name warn you.<</narrate>>
<<say "mc">>Whoever it is, let them enjoy the show!<</say>>
<<narrate>>You purposefully don't turn around, knowing exactly who it is.<</narrate>>
<<say "mc">>Oh, shit, I'm close!<</say>>
<</block>>
<<say "mc">>Yes, fucking, yes, $kylie.name! Fuuuck!<</say>>
<<narrate>>You unload into $kylie.name, giving her a creampie for her trouble. She giggles.<</narrate>>
<<say "kylie">>Now that was fun!<</say>>
<<narrate>>You turn to see what $lexi.name's reaction is, but she's already gone.<</narrate>>
<<say "kylie">>She left as you were screaming my name... but from how intently she was watching, I'd say it was a great success! Let me have a word with her. I'll message you when it's time to go again.<</say>>
<<button "Continue" housestuff>>
<<lust "kylie" 5>>
<<like "kylie" 3>>
<<lust "lexi" 2>>
<<corruptmax "lexi" 60>>
<<corrupt "lexi" 5>>
<<unlock "kylie" "lexilounge">>
<<event "lexi" "kyliecaught">>
<<run queueMessage(48, 'kylie', 'lexiteach')>>
<<time 1.5>>
<</button>>
<<case "kenzie">>
<<narrate>><<if $kenzie.name == "???">>The woman<<else>>$kenzie.name<</if>> pulls $kylie.name off the chair and waggles her own pussy in $kylie.name's face.<</narrate>>
<<say "kenzie">>Eat it!<</say>>
<<vid "kylie/kenzie02.mp4">>
<<narrate>>$kylie.name wastes no time running her tongue along <<if $kenzie.name == "???">>the woman's<<else>>$kenzie.name's<</if>> pussy.<</narrate>>
<<say "kenzie">>Oooh, mmmmm. Fuuuck.<</say>>
<<think "mc">>Did she just jab her tongue in her ass? Dirty girl!<</think>>
<<say "kenzie">>You look so pretty eating pussy.<</say>>
<<narrate>>Her moans are almost ethereal, chilling yet exciting.<</narrate>>
<<say "kenzie">>Yes! Oh, ohhh! I wanna taste you again.<</say>>
<<button "Continue" kyliesex>>
<<temp "kenzie02">>
<</button>>
<<case "kenzie02">>
<<vid "kylie/kenzie03.mp4">>
<<say "kylie">>Ohhhh Fuuuck, yeah.<</say>>
<<narrate>>They massage each other's boobs as <<if $kenzie.name == "???">>the woman<<else>>$kenzie.name<</if>> continues to greedily lap at $kylie.name's pussy.<</narrate>>
<<say "kylie">>Oh my god! I love how fucking great you are with this pussy.<</say>>
<<think "mc">>Mmm, you dirty slut, I love it.<</think>>
<<narrate>>You start stroking your cock faster as $kylie.name's moan grow louder and more passionate still.<</narrate>>
<<button "Continue" kyliesex>>
<<temp "kenzie03">>
<</button>>
<<case "kenzie03">>
<<narrate>><<if $kenzie.name == "???">>The woman<<else>>$kenzie.name<</if>> stands up, pushes $kylie.name back to the floor and stands over her, holding one leg up on the nearby counter.<</narrate>>
<<vid "kylie/kenzie04.mp4">>
<<say "kenzie">>Fuck. Oh my god. You are so fucking hot.<</say>>
<<narrate>>$kylie.name looks up at her with pure lust as she starts sucking on her clit.<</narrate>>
<<say "kenzie">>Oh, oh, yes. Fuck.<</say>>
<<narrate>>It's clear her orgasm is close, so too is yours.<</narrate>>
<<say "kenzie">>Fuck yeah. Oh, god. Oh, baaabe.<</say>>
<<narrate>>As <<if $kenzie.name == "???">>the woman's<<else>>$kenzie.name's<</if>> writhes in the pleasure $kylie.name's tongue brings her, you too reach your climax, jizzing across the floor.<</narrate>>
<<say "kylie">>Shit, that was hot.<</say>>
<<say "kenzie">>Babe, that was fucking fantastic. You're so fucking hot. I'll definitely be back.<</say>>
<<narrate>>Without another word, she picks up her clothing and starts heading toward the exit... in your direction.<</narrate>>
<<think "mc">>Shit! Shit! Shit!<</think>>
<<narrate>>The end of the hall is too far away. Your eyes dart around looking for a hiding spot but you realize it's all too late.<</narrate>>
<<say "kenzie">>Ha! Don't worry, $name, I'm not here for you today. We'll have fun some other time. I hope you enjoyed the show. Might wanna get that cleaned up, though.<</say>>
<<narrate>>She points to the floor. Your eyes dart to the cum patch you just made, and when you look back up, she's already halfway down the hall. She holds a hand in the air to wave at you without looking back.<</narrate>>
<<say "kenzie">>Bye for now!<</say>>
<<if $kenzie.name != "???">>
<<say "mc">>As terrifying as she is, damn me she's fucking hot. Have fun, $kylie.name? You looked incredible.<</say>>
<<say "kylie">>That was out of this world. I hope she visits again. And holy shit, it was fucking hot when I saw you watching us. I loved it.<</say>>
<<else>>
<<say "mc">>Who the hell was that, $kylie.name?<</say>>
<<say "kylie">>I have no idea... but god, wasn't she great? Did you like the show we put on for you? I knew you were watching, it made it so much hotter.<</say>>
<<say "mc">>Heh, I thought you'd spotted me. What was her name?<</say>>
<<say "kylie">>Not a clue. I had assumed she was one of yours. Fuck, I hope she visits again soon.<</say>>
<<say "mc">>Huh, probably just a regular traveler I guess.<</say>>
<<think "mc">>She knew my name, though... and that "don't worry"... well that has me worried.<</think>>
<</if>>
<<button "Continue" mngspa>>
<<lust "kylie" 5>>
<<unlock "kylie" "kenzie">>
<<unlock "kenzie" "kylie">>
<<event "kylie" "kenzie">>
<<meet "kenzie">>
<<time 1>>
<</button>>
<<case "homebj">>
<<vid "kylie/strat01.mp4">>
<<narrate>>She mumbles something incoherent, almost like she's talking to your cock as she expertly works your shaft and massages your balls.<</narrate>>
<<say "mc">>Oh, shit.<</say>>
<<button "Continue" kyliesex>>
<<temp "homebj02">>
<</button>>
<<case "homebj02">>
<<vid "kylie/strat02.mp4">>
<<narrate>>She takes your dick into her mouth true, massaging your glans with her tongue each time she runs her head down your hard cock.<</narrate>>
<<say "mc">>Fuck. $kylie.name, yes!<</say>>
<<narrate>>The pace quickens and then she stops suddenly and looks you in the eye.<</narrate>>
<<say "kylie">>Well, you've got the equipment. Now let's see if you've got the skills to impress $lexi.name.<</say>>
<<say "mc">>Uh-huh. For $lexi.name, sure.<</say>>
<<narrate>>You violently pull down her panties and toss her onto the sofa in front of you.<</narrate>>
<<button "Continue" kyliesex>>
<<temp "homebj03">>
<</button>>
<<case "homebj03">>
<<vid "kylie/strat04.mp4">>
<<narrate>>She moans in delight as soon as you enter her.<</narrate>>
<<say "kylie">>Fuck yeah.<</say>>
<<narrate>>The sounds of her pleasure driving you crazy, you start rubbing her clit, eager to hear more as you bring her to ecstasy.<</narrate>>
<<button "Continue" kyliesex>>
<<temp "homebj04">>
<</button>>
<<case "homebj04">>
<<vid "kylie/strat03.mp4">>
<<say "kylie">>Ah, yes, yes, yes.<</say>>
<<narrate>>The passion taking full control you start thrusting furiously, aiming for your climax.<</narrate>>
<<say "kylie">>Just like that. I want that fucking cock in that pussy. Yeees!<</say>>
<<narrate>>Her final scream of pleasure sends shivers of pleasure down your spine as you erupt inside her quivering body.<</narrate>>
<<say "kylie" "" "(Out of Breath)">>Shit... you're not half bad. There's no.... no way we can let $lexi.name miss something this good.<</say>>
<<narrate>>She rolls over on the sofa and sprawls out.<</narrate>>
<<say "kylie">>I think I'm gonna take a quick rest, text me when you've found some good spots where she's sure to catch us.<</say>>
<<say "mc">>Oh, you got a phone?<</say>>
<<say "kylie">>Yeah, $moriah.name dropped it off. Kinda surprised the Wi-Fi reaches this far to be honest.<</say>>
<<narrate>>You shrug.<</narrate>>
<<say "mc">>I'll let you know when I'm ready.<</say>>
<<narrate>>She grins.<</narrate>>
<<button "Continue" townhub>>
<<unlock "kylie" "try">>
<<lust "kylie" 4>>
<<like "kylie" 4>>
<<event "kylie" "lexi">>
<<time 1.5>>
<</button>>
<</switch>><<tracker "kylie">>
<<if $girlsmet.includes('kylie') && $kylie.events.met != 1>>
<<step "Wait" "Wait for the expedition to finish">>
<<elseif $kylie.events.hello == undefined>>
<<step "Greet her" "She'll frequent the facilities at Gateway B">>
<<elseif $lexi.events.lexitruth == undefined>>
<<step "Progress with $lexi.name" `"Progress with "+$lexi.name+" until you're able to build the farm."`>>
<<elseif $buildings.farm == undefined>>
<<step "Build a farm" "Assign someone to work the farm project in the monitoring station, then after assign someone to build it in the construction facility.">>
<<elseif $breakdone == undefined || !$breakdone.farm == undefined || !$breakdone.farm.includes('animals')>>
<<step "Cute animals" "Assign someone to work the cute animals upgrade project in the monitoring station.">>
<<elseif $kylie.events.homeless == undefined>>
<<step "Cute Piggy" "Send an expedition to her home world while using the piggyback ability.">>
<<elseif $kylie.events.timer != undefined>>
<<step "Wait" `State.variables[State.variables.kylie.events.homeless].name + " will return in " + State.variables.kylie.events.timer + " hour(s)."`>>
<<elseif $kylie.events.settled != undefined>>
<<step "Getting Settled" `"Leave her to settle in."`>>
<<elseif $kylie.events.homed == undefined>>
<<step "Home Visit" `"Talk to her in town."`>>
<<elseif $kylie.events.days != undefined>>
<<step "Clean Home" `"Give her a few days to finish cleaning."`>>
<<elseif $kylie.events.settledin == undefined>>
<<step "Revisit" `"Visit her at her home in town."`>>
<<elseif $lexi.events.relationship == "platonic">>
<<step "End of current non-$lexi.name content" `"Collect your thoughts at night should you decide to change your relationship with "+$lexi.name+"."`>>
<<elseif $lexi.events.feelings == undefined>>
<<step "Progress with $lexi.name" `"Follow "+$lexi.name+"'s substsory to progress with "+$kylie.name+"."`>>
<<elseif $kylie.events.lexi == undefined>>
<<step "Strategy Meeting" `"Discuss "+$lexi.name+" with her."`>>
<<elseif !$completeTasks.includes('fivek')>>
<<step "Progress the main story" "Keep playing to unlock her next steps.">>
<<elseif !$completeTasks.includes('kylietrainer')>>
<<step "Training Hard" "Talk to her about her champion training, then visit her at home during a session.">>
<<elseif $kylie.mature == true && !$completeTasks.includes('kylietrainer2')>>
<<step "Original Flavor" `"Transform her to her original form."`>>
<<elseif !$completeTasks.includes('kylietrainer2')>>
<<step "Training Hard" `"Check up on their training sessions with "+$kenna.name+"."`>>
<<elseif $kylie.events.moved == undefined>>
<<step "Moving Day" "Wait for her to move into the hotel.">>
<<else>>
<<movielist kylie>>
<</if>>
<</tracker>><<nobr>>
<<set $scene = 0>>
<<if $location != $currentlocations.lacy && $location != "firstIntros" && $replay == false>>
<<say "lacy">>I need to go. Let's speak later.<</say>>
<<follow lacy>>
<<button "Continue" $return>>
<</button>>
<<elseif $location == "bedrooms" && $girlsavailable.includes('vanna') && $vanna.lust > 20 && $vanna.events.sneaky != 1>>
<<scene>>
<<narrate>>You go to knock on her door when you notice it's open.<</narrate>>
<<if $vanna.mature == true>>
<<left2 "vanna/mature/lacyroom01.jpg">>
<<say mc>>You're looking as good as ever, $vanna.name. $lacy.name around?<</say>>
<<say vanna>>She's taking a shower...<</say>>
<<narrate>>She lets her robe slip slightly.<</narrate>>
<<say vanna>>But I am ever so lonely waiting for her...<</say>>
<<say mc>>Oh, I'm sure...<</say>>
<<narrate>>She tries to give you puppy dog eyes, but her massive grin kind of ruins the intent.<</narrate>>
<<say vanna>>But maybe you'd like to keep me company?<</say>>
<<narrate>>She gives you a wink, places her hand to her mouth and uses her tongue in her cheek to gesture a blowjob.<</narrate>>
<div id="replaceme">
<<choices>>
<<link "Nah">>
<<replace "#replaceme">>
<<say "mc">>Nah, don't worry about it. I'll come back later.<</say>>
<<narrate>>Her shoulders sag at your words.<</narrate>>
<<say "vanna">>Yeah, okay, I'll let her know you're after her.<</say>>
<<say "mc">>Thanks $vanna.name.<</say>>
<<button "Continue" housestuff>>
<</button>>
<</replace>>
<</link>><br>
<<link "Sure" >>
<<replace "#replaceme">>
<<say mc>>I think there's certainly something we can do together to while away the time... but we'd best be quiet while she's in there... and quick!<</say>>
<<left2 "vanna/mature/lacyroom02.jpg">>
<<narrate>>She puts her finger to her mouth and whispers.<</narrate>>
<<say vanna "" "(Whispering)" "whisper">>You know me, super quiet!<</say>>
<<say mc>>Ha! We'll see. Whoever she hears loses, and if she catches us, it's on you.<</say>>
<<narrate>>She frowns at you, but doesn't stop undoing your belt.<</narrate>>
<<button "Continue" vannasex>>
<<temp "sneakym">>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<else>>
<<left2 "vanna/sneak01.jpg">>
<<say "mc">>$vanna.name, what are you doing in here?<</say>>
<<narrate>>She drops her phone on the bed in surprise.<</narrate>>
<<say "vanna">>I... uhhhh, this is my daughter's room, why shouldn't I be here?<</say>>
<<say "mc">>Yeah, I guess. Where's $lacy.name then?<</say>>
<<think "vanna">>Phew! But now let's see if I can really have some fun!<</think>>
<<say "vanna">>She's just in the shower, but now that you're here, how about you keep me company while she finishes?<</say>>
<<event "vanna" "sneaky">>
<div id="replaceme">
<<choices>>
<<link "Nah">>
<<replace "#replaceme">>
<<say "mc">>Nah, don't worry about it. I'll come back later.<</say>>
<<narrate>>Her shoulders sag at your words.<</narrate>>
<<say "vanna">>Yeah, okay, I'll let her know you're after her.<</say>>
<<say "mc">>Thanks $vanna.name.<</say>>
<<button "Continue" housestuff>>
/*<<time 0.25>>*/
<</button>>
<</replace>>
<</link>><br>
<<link "Sure" >>
<<replace "#replaceme">>
<<left2 "vanna/sneak02.jpg">>
<<say "mc">>Yeah, sure. I always enjoy your company.<</say>>
<<narrate>>She crawls onto the bed.<</narrate>>
<<say "vanna">>Oh, I bet you do, your dirty dog.<</say>>
<<narrate>>She throws her panties at you.<</narrate>>
<<say "vanna">>But we need to be quick.<</say>>
<<think "mc">>This is not what I expected, but fuck yeah!<</think>>
<<button "Continue" vannasex>>
<<temp "sneaky">>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<</if>>
<<elseif $lacy.events.science == 2>>
<<scene>>
<<set _img = "lacy/loungealt01.jpg">>
<<narrate>>She moves to greet you as soon as she notices you come in.<</narrate>>
<<left2 _img>>
<<say "lacy">>We've discovered it. We've proven my theory. I can barely contain my excitement!<</say>>
<<say "mc">>Tell me!<</say>>
<<say "lacy">>So, I can detect your connection to the various worlds now. That means my theory was correct, you're constantly connected to them, it's minor, very faint, but it could lead to so much!<</say>>
<<say "mc">>It sounds great.<</say>>
<<say "lacy">>Now that's an understatement! Just imagine if we can understand the signal more? Just what could we achieve! I already have one idea.<</say>>
<<say "mc">>Oh?<</say>>
<<say "lacy">>I believe I can increase the bandwidth by applying some of the principles of the automation technology.<<if $shalina.events.bang != undefined>> I suspect you'll need to undergo another limit break before we can properly make use of this, though.<</if>><</say>>
<<narrate>>She sees your look of confusion.<</narrate>>
<<say "lacy">>We'll make the signal stronger, allowing more power to flow to you.<</say>>
<<say "mc">>That sounds great.<</say>>
<<think "mc">>Though I'm still unsure what more power actually grants me...<</think>>
<<say "lacy">>If I can make this breakthrough, we'll need to build anchor points off world to facilitate it, but that should have the consequence of increasing the number of travelers from that world too as any travelers coming from those points will just default to our hub world. However I should point out that these will be expensive in both time and resources and other projects are likely to have more immediate benefits.<</say>>
<<say "mc">>That's incredible!<</say>>
<<say "lacy">>Though, you're still not as excited as I am. That said... I know what will excite you, and I could certainly use the release myself...<</say>>
<<narrate>>She lays back on the ottoman and sucks her finger seductively.<</narrate>>
<<center "lacy/loungealt02.jpg">>
<<say "mc">>Well, I can certainly feel some power flowing now!<</say>>
<<narrate>>She grins.<</narrate>>
<<say "lacy">>Let me taste your power.<</say>>
<<tech "anchor">>
<<cont "lacysex" "sig01">>
<<elseif $lacy.events.labsex == 3 && $mc.events.kaylagone != undefined && $power > 5 && $lacy.events.science == undefined>>
<<scene>>
<<set _img = getImg('lacy')>>
<<left2 _img>>
<<say "lacy">>$name. Good timing. I've had an idea.<</say>>
<<say "mc">>Oh?<</say>>
<<say "lacy">>Right now I've automated a lot of the transfers through the Gateway using your power from within the Gateway itself. But, I haven't worked out how to store a location in the address book. I hypothesize the address book itself isn't within the Gateway, but purely within your head and for whatever reason I can't figure out how to parse the location from the transfer data.<</say>>
<<say "mc">>That would explain why I only seem to learn of new locations when I administer the transfer myself.<</say>>
<<say "lacy">>Precisely. I also have a theory that by connecting to a new location you actually form some sort of permanent connection, even if nobody is traveling, and this is how knowing more worlds grants you power and energy.<</say>>
<<say "mc">>Sorry, how does that grant me power and energy?<</say>>
<<say "lacy">>You yourself are connected to the worlds, not the gateway in that instance. The gateway after all is merely a conduit of your power and a battery for your energy. Well, that and a regulator or limiter of sorts. I believe power is transferred to you via the connection to these worlds. Think of yourself as a sort of satellite dish.<</say>>
<<say "mc">>How? What is creating the power?<</say>>
<<say "lacy">>I have yet to develop a working theory on that.<</say>>
<<say "mc">>So you're saying I gain power from connecting to more worlds?<</say>>
<<say "lacy">>That is correct.<</say>>
<<say "mc">>That's great, $lacy.name, thanks.<</say>>
<<say "lacy">>For what? You knew much of this already. I haven't got to the good bit yet!<</say>>
<<say "mc">>Please, continue.<</say>>
<<say "lacy">>I've been researching this, trying to measure or otherwise detect those signals. And my initial tests look positive. I'd therefore like to explore the opportunity further at the monitoring station. I did try to question $kp.name about this, but she didn't reveal any information to me. She did, in a roundabout way, encourage me to pursue this theory, though.<</say>>
<<say "mc">>Yeah, I think I understand that feeling. And, absolutely you can do this at the monitoring station, you really don't need to ask. This is why it exists.<</say>>
<<say "lacy">>Great. If my theories are correct, it may lead to some very exciting discoveries.<</say>>
<<say "mc">>Oh?<</say>>
<<say "lacy">>I may be able to adjust the regulators, or increase the flow from these connections. Perhaps even place blockages on any outgoing connections to places you don't already know, ensuring you get to form more connections by dealing with them personally. This is all hypothetical of course, I need to detect and measure these wavelengths first.<</say>>
<<say "mc">>Uh... yes, of course.<</say>>
<<narrate>>She almost seems disappointed you're not as excited as her.<</narrate>>
<<say "lacy">>I can see you're not fully appreciating the potential of this. Let's get working on the research, and then I'm sure results will get you as excited as I am. I must pre-warn you it may be quite a lengthy task, so you may wish to prioritize other projects for now.<</say>>
<<say "mc">>Great, thanks, $lacy.name.<</say>>
<<notice>>Signal Scanning research now available.<</notice>>
<<tech "signal">>
<<event "lacy" "science">>
<<cont "lacy" "" 1>>
<<else>>
<<if $location == "firstIntros">>
<<set _img = "lacy/lounge01.jpg">>
<<else>>
<<set _img = getImg('lacy')>>
<</if>>
<<left2 _img>>
<<if $tasks.ellamats != undefined>>
<<say "lacy">>Did you get the materials? Can we start the project?<</say>>
<<think "mc">>She's had a one-track mind ever since that conversation!<</think>>
<<else>>
<<say "lacy">>Hello.<</say>>
<<narrate>>She stares at you intently.<</narrate>>
<<say "mc">>Hey, $lacy.name, just wondered if you had a moment to talk.<</say>>
<<say "lacy">>Yes, I can make myself available for you.<</say>>
<</if>>
<<choices "What do you want to discuss?" "topics">><</choices>>
<</if>>
<<script>>
$(document).one(':passageend', function (ev) {
$('#topics').wiki(Story.get("lacydiscussions").processText());
})
<</script>>
<</nobr>><<nobr>>
<<set _img = getImg('lacy')>>
<<scene>>
<<switch $tempvar>>
<<case "tracktrav">>
<<left2 _img>>
<<say mc>>Can we track travelers?<</say>>
<<set _p = planets[11].name>>
<<say lacy>>Not with exact precision, but I can tell you that scumbag from the restaurant is from _p.<</say>>
<<if $planets[11].unlocked != true>>
<<say mc>>That's not a world I'm familiar with...<</say>>
<<say lacy>>I vaguely recall it being $moriah.name's home world.<</say>>
<<think mc>>If I want to connect to it, I should probably talk to her.<</think>>
<</if>>
<<say mc>>So you know he's still on the world?<</say>>
<<say lacy>>I have been unable to confirm. His signature is relatively weak, so his connection to the network is difficult for me to isolate.<</say>>
<<say mc>>Right... but it's likely?<</say>>
<<say lacy>>Yes, though I'm unsure how you'd find him if that's what you're intending to do.<</say>>
<<say mc>>We have an image from the security cameras, right? I could start there.<</say>>
<<say lacy>>It's possible it may yield results, though unlikely.<</say>>
<<say mc>>I can't just leave him be, he might be doing that to countless other people.<</say>>
<<say lacy>>I understand.<</say>>
<<influence "scumbag">>
<<event "lacy" "scumbag">>
<<cont lacy "" 1>>
<<case "artinstall">>
<<think mc>>Hmm, I'm still a little unsure about this, I mean it looks great, she's super talented, but it really doesn't feel like the kind of thing you'd gift to your daughter.<</think>>
<<narrate>>You start hanging the picture above her bed.<</narrate>>
<<if ($compback.startsWith("krissy") || $phoneback.startsWith("krissy") || $compback.startsWith("sophia") || $phoneback.startsWith("sophia") ||
$compback.startsWith("kenna") || $phoneback.startsWith("kenna") || $compback.startsWith("theodora") || $phoneback.startsWith("theodora") ||
$compback.startsWith("anna") || $phoneback.startsWith("anna")
) && ($defaultRel == "family" || $defaultRel == "step")>>
<<if $phoneback.startsWith("krissy") || $phoneback.startsWith("sophia") || $phoneback.startsWith("kenna") || $phoneback.startsWith("theodora") || $phoneback.startsWith("anna")>>
<<set _bck = "phone">>
<<elseif $compback.startsWith("krissy") || $compback.startsWith("sophia") || $compback.startsWith("kenna") || $compback.startsWith("theodora") || $compback.startsWith("anna")>>
<<set _bck = "computer">>
<</if>>
<<think mc>>Although given my _bck background, I'm not really one to talk.<</think>>
<<narrate>>You shrug.<</narrate>>
<</if>>
<<think mc>>Maybe I'm just reading into it too much, and I should just take it for the beautiful piece of art that it is.<</think>>
<<narrate>>You finish hanging the picture, take a step back to make sure it's level, see that's it not and go on to repeat this process another five times before deciding it's just your eyes.<</narrate>>
<<think mc>>Alright. I'd better message her to come over.<</think>>
<<narrate>>She arrives ten minutes later.<</narrate>>
<<left2 "lacy/noback3.png">>
<<say lacy>>What is it, have you learned something new?<</say>>
<<say mc>>Not exactly... remember that surprise I mentioned?<</say>>
<<narrate>>She looks at you suspiciously.<</narrate>>
<<say lacy>>If $molly.name jumps out of my closest dressed as a clown again, I swear...<</say>>
<<say mc>>No, no, nothing like that. Wait... again?<</say>>
<<say lacy>>I don't want to talk about it.<</say>>
<<say mc>>Right... well, just turn around.<</say>>
<<narrate>>You can see her shoulder stiffen up as she turns nervously. All the tension suddenly melting away when she spots the painting.<</narrate>>
<<say lacy>>Wow. My mom is so hot. Did you paint this?<</say>>
<<say mc>>No, no, your mom did.<</say>>
<<say lacy>>For you? Then why—<</say>>
<<say mc>>No, no. For you.<</say>>
<<say lacy>>She really is talented. Did she not want to reveal it to me?<</say>>
<<say mc>>She said she thought it would better if I did.<</say>>
<<say lacy>>I see...<</say>>
<<narrate>>She looks back at the painting and sighs.<</narrate>>
<<say mc>>Is something wrong?<</say>>
<<left2 "lacy/noback.png">>
<<say lacy>>It's nothing, it's just seeing this picture reminds me of what I've lost.<</say>>
<<say mc>>Sorry, what?<</say>>
<<say lacy>>I know it's illogical. I know she's the same woman, but she's now younger than me. It's like she turned into the woman before she was my mom, and I feel like our relationship changed so much that day. I miss the mom I used to know, the one who held me in her arms while I sobbed after my first boyfriend dumped me. I know it's silly...<</say>>
<<say mc>>Not at all...<</say>>
<<say lacy>>She's thirty years older than she appears. Every image I remember of my mother growing up, she appears older than she is now. I came to terms with it quickly, she was so happy after all, and was always trying to appear younger anyway. Besides, I've known her in this form longer than her original now. I know she's the same person, I know it's illogical, and it's why I've never said anything, but the irrational part of me...<</say>>
<<narrate>>She takes another deep sigh.<</narrate>>
<<say lacy>>Sometimes I just miss my mom.<</say>>
<<say mc>>Wow... I had no idea. You should talk to her about this. Wait thirty? I thought she was only made twenty years younger? Sorry, that's not important right now.<</say>>
<<say lacy>>Ah, oops. Yeah, she's a bit older than she lets on. She doesn't want people to know she's in her fifties. Please don't say anything; I realize I'm being selfish and I absolutely love and adore her in any form, so let's just forget I said anything. This painting just stirred these nonsensical feelings up.<</say>>
<<say mc>>No, $lacy.name, I won't forget it. It's not like you to talk like this. I'll talk to her.<</say>>
<<narrate>>You hear a faint noise at the door like someone sniffling.<</narrate>>
<<say lacy>>It's fine. Really, I'm just being silly.<</say>>
<<think mc>>I suspect, from that noise at the door, she may already be aware...<</think>>
<<narrate>>As you turn to leave, you hear someone running down the corridor, though $lacy.name doesn't appear to have noticed as she's still looking up at the painting wistfully.<</narrate>>
<<say lacy>>Hmm, it's not level...<</say>>
<<button "Continue" housestuff>>
<<like "lacy" 5>>
<<run overrideSchedule('vanna', 16, 19, "")>>
<<event "vanna" "surprise" 5>>
<<time 1>>
<</button>>
/*
Victoria was at door spying, heard it all.
Go speak to her.
Can revert her.
Megan suggests hanging portraits in the facilities to increase attractiveness.
Ask Victoria to do so.
After the first one for the waiting area, discover her 'blue painting'
Lacy reveals she sees her younger mom as an object of desire.
Make it so.
*/
<<case "pc">>
<<left2 _img>>
<<say mc>>Do you think you could help me with my power control?<</say>>
<<say lacy>>In what way?<</say>>
<<say mc>>It just feels slow, like I can't truly utilize my power. Given what you know about how I'm connected with the signal or whatever, I wondered if there was maybe a way to strengthen it?<</say>>
<<narrate>>She looks a little annoyed when you say "whatever".<</narrate>>
<<say lacy>>Or whatever? The signal is an amazing discovery, I don't think you truly understand how fascinating it is. I know the council have confirmed you have a passive connection to these worlds, but being able to detect it is another thing entirely! Anchor points already strengthen it.<</say>>
<<narrate>>She takes a deep breath.<</narrate>>
<<say lacy>>Sorry. Sorry. I know not everyone gets as excited about this kind of thing as me... but... well, it really is beyond fascinating. Anyway, isn't that exactly what your power control is for, strengthening the connection to those worlds?<</say>>
<<say mc>>Sorry, $lacy.name. I didn't mean to downplay anything. I know how amazing it is, and how much more amazing you are for discovering it.<</say>>
<<narrate>>She thinks for a moment.<</narrate>>
<<say lacy>>So the anchor points help focus the signal on that side of the connection, and the gateway does the same on this side. I think with a bit of tinkering, I might be able to calibrate the gateway to focus a connection. It'll need some calculations and testing to see if it's possible first, though.<</say>>
<<say mc>>Great! You never cease to amaze me.<</say>>
<<say lacy>>And you never fail to keep me occupied!<</say>>
<<notice>>You can now research Signal Calibration.<</notice>>
<<button "Continue" $return>>
<<event "lacy" "science" 5>>
<<like "lacy" 4>>
<<tech "calibrate">>
<<time 1>>
<</button>>
<<case "minidone">>
<<set delete $twodays>>
<<say "lacy">>$name, come on! Wake up!<</say>>
<<narrate>>$lacy.name is shaking you awake. You look up at her, bleary-eyed.<</narrate>>
<<say "mc">>What is it?<</say>>
<<say "lacy">>It's done. It's ready!! Come see, come on!<</say>>
<<think "mc">>As much as I'd love another couple of hours in bed, I can't dismiss her excitement.<</think>>
<<narrate>>You get dressed and follow $lacy.name into town.<</narrate>>
<<say "lacy">>You didn't look, did you?<</say>>
<<say "mc">>No, I left it well alone as not to break anything!<</say>>
<<narrate>>She grins.<</narrate>>
<<say "lacy">>Here it is, the fruits of our labor!<</say>>
<<narrate>>She pulls at a sheet, revealing an archway, smaller than the gateway, but large enough to fit a vehicle through.<</narrate>>
<<say "lacy">>Are you ready for the maiden voyage?<</say>>
<<say "mc">>I thought you were going to use it to return here?<</say>>
<<say "ember">>We decided you should get to be first.<</say>>
<<if $mc.events.eastresolved == "convinced">>
<<think "mc">>From my understanding of what $kp.name said, I should be able to travel like that without a device... but then again, they also think I should be able to take some sort of ethereal form. Given everything in their world seems to take centuries, perhaps I'm just too new at this.<</think>>
<<else>>
<<think "mc">>Something still doesn't sit right with me, though. Why do we need this devices at all? Why can't travelers just... well travel wherever they like on the hub, or even their own world for that matter.<</think>>
<</if>>
<<if $completeTasks.includes('roadtrip2')>>
<<say "lexi">>Lost in thought, $lexi.calls?<</say>>
<<else>>
<<say "kayla">>You okay? You seem to be lost in thought.<</say>>
<</if>>
<<say "mc">>Sorry, just thinking about how far we've come. Let's all go together. We just walk through?<</say>>
<<say "lacy">>Well, press this button here first, but otherwise, yes!<</say>>
<<narrate>>You offer your arms to the others to link up, $lacy.name is too distracted to notice, but $ember.name and <<if $completeTasks.includes('roadtrip2')>>$lexi.name<<else>>$kayla.name<</if>> get the hint. The four of you head through.<</narrate>>
<<button "Continue" neweden>>
<<temp "first">>
<</button>>
<<case "neweden2">>
<<left2 _img>>
<<say "mc">>I think we're ready to start.<</say>>
<<set _mt = 6 - $matsFound>>
<<set _cost = 950>>
<<if _mt == 4>><<set _cost = 2150>><</if>>
<<if _mt == 3>><<set _cost = 1550>><</if>>
<<set _tc = _cost + 150>>
<<say "lacy">>This is amazing. So with $maddy.name providing _mt of the materials, it's going to cost _cost for the precious materials and 150 for everything else.
<<if $matsFound < 4>>
But we're not locked in to that, so if you still want to try and procure them elsewhere, you can. Though, I'm really eager to start!
<</if>>
<</say>>
<<say "mc">>Not cheap, is it?<</say>>
<<say "lacy">>No, but just imagine all the benefits, and future potential.<</say>>
<<set _ns = "<<say 'mc'>>I'm not ready to start just yet, sorry, $lacy.name.<</say>>
<<say 'lacy'>>Oh... right... okay.<</say>>
<<narrate>>There's a noticeable show of disappointment on her face and in her voice.<</narrate>>">>
<<if $resources < _tc>>
<<think "mc">>Crap, I don't have enough resources. Now I feel bad for getting her worked up about it again.<</think>>
_ns
<<button "Continue" housestuff>>
<<time 0.5>>
<</button>>
<<else>>
<<think "mc">>So the total cost is _tc. It's no small sum, is it better to wait a little longer, I wonder?<</think>>
<<say "lacy">>When you're ready, we'll get the first part of the project set up here, it'll probably take a day, but $ember.name and I will be unavailable during that time. Then, we'll head to New Eden with <<if $completeTasks.includes('roadtrip2')>>$lexi.name<<else>>$kayla.name<</if>>, and that'll take another two days. In short, $ember.name and I will be out of action for three days and <<if $completeTasks.includes('roadtrip2')>>$lexi.name<<else>>$kayla.name<</if>> for two.<</say>>
<<if $completeTasks.includes('roadtrip2')>>
<<say "mc">>Why $lexi.name?<</say>>
<<say "lacy">>She gained their trust after her last visit, and it would therefore be prudent for her to be there and to explain what we're trying to achieve.<</say>>
<<say "mc">>Understood.<</say>>
<</if>>
<div id="replace">
<<choices>>
<<link "Start Project">>
<<replace "#replace">>
<<set $resources -= _tc>>
<<say "mc">>Let's get started, then!<</say>>
<<say "lacy">>That's great news! I'll let $ember.name know and we'll start first thing in the morning.<</say>>
<<button "Continue" housestuff>>
<<like "lacy" 20>>
<<set $lacy.events.minigateway = 3>>
<<time 0.5>>
<<taskdone "ellamats">>
<<eventdone "matsDee">>
<<eventdone "matsCee">>
<</button>>
<</replace>>
<</link>><br>
<<link "Wait">>
<<replace "#replace">>
_ns
<<button "Continue" housestuff>>
<<time 0.5>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<</if>>
<<case "neweden">>
<<narrate>>$lacy.name is stood at your door about to knock when you open it to leave.<</narrate>>
<<say "lacy">>Good. You're awake. Let's grab a coffee.<</say>>
<<narrate>>She drags you to the kitchen without even waiting for a response.<</narrate>>
<<left2 "lacy/coffee01.jpg">>
<<if $completeTasks.includes('roadtrip2')>>
<<say "lacy">>Myself and $lexi.name headed over to the location New Eden provided us. What we found was... amazing.<</say>>
<<say "mc">>We can expand the network closer to the hub?<</say>>
<<say "lacy">>Oh, no. Nothing like that, the terminal is fine, but there are relays along the path of the cable checking the data has the correct encryption key and...<</say>>
<<narrate>>She pauses.<</narrate>>
<<say "lacy">>Right, that's just not important. What $kayla.name left us behind is, however, amazing!<</say>>
<<else>>
<<say "lacy">>What the hell did you do to $kayla.name?<</say>>
<</if>>
<<say "mc">>What do you mean?<</say>>
<<say "lacy">>I've long suspected she was intelligent, but uninterested. She always seemed to understand exactly what I was talking about, even when others didn't... but often seemed bored by it. The way she talks and acts, I fear others have judged her poorly. And let's be honest, you don't employ a fool to be a spy.<</say>>
<<say "mc">>I've never thought her a fool, though admittedly I didn't think she was the brightest spark either.<</say>>
<<say "lacy">>That's just it. I think she is. <<if $completeTasks.includes('roadtrip2')>>Inside the building I found plans and scrawling. Incomplete, but amazing nonetheless. <<else>>She came to me with an idea the other day about how to improve our communications with New Eden.<</if>><</say>>
<<if $completeTasks.includes('roadtrip2')>>
<<say "mc">>Something we can use I take it.<</say>>
<<else>>
<<say "mc">>She mentioned she had an idea she was going to run by you.<</say>>
<</if>>
<<say "lacy">>It's brilliant. She wants to use the concept of you being able to call a champion anywhere on the hub along with the gateway taking travelers to effectively create two smaller gateways here and in New Eden. Two-way quick travel over miles!<</say>>
<<say "mc">>Wow. Sounds like a great idea.<</say>>
<<say "lacy">>But that's not what floored me. I, too, had been pondering if anything like that was possible, as I'm sure you had. What amazed me is how detailed her idea is. Apparently they had something like this back on her home world. But... she described how to harness the power you emit within this world and turn it into more than just electricity! I can't tell you how exciting this is!<</say>>
<<say "mc">>It sounds amazing. I don't think I've seen you gush this much before.<</say>>
<<say "lacy">>It's incredible. She described the process between two-anchored points and that it used similar concepts to the gateway and by using your energy to power and focus it, you'd be able to control the flow of who or what goes through. There were some things she was unsure of, but with the knowledge she gave me, <<if $completeTasks.includes('roadtrip2')>>I should be able to work on a solution.<<else>>the two of us quickly managed to think up solutions.<</if>><</say>>
<<say "mc">>Sounds like the cable won't be needed.<</say>>
<<say "lacy">>Not at all. Moreover, we'll be able to visit whenever we want too! There is, however, one small issue...<</say>>
<<say "mc">>What's that?<</say>>
<<say "lacy">>The alloy we need, it's made from extremely rare and precious materials. Right now, I don't know where to get them from. I've informed the expedition teams, but if you have any ideas, or want to join them, it may expedite matters.<</say>>
<<say "mc">>Okay, so effectively we need several rare materials before we can make the project a reality?<</say>>
<<say "lacy">>Correct.<</say>>
<<narrate>>She slides you a list of four materials. You recognize none of them.<</narrate>>
<<say "lacy">>This is going to be amazing. I really can't wait!<</say>>
<<narrate>>She skips off happily.<</narrate>>
<<think "mc">>I don't think I've ever seen her this excited or filled with emotion.<</think>>
<<piggy "minigateway">>
<<influence "minigateway">>
<<influence "matsDee">>
<<influence "matsCee">>
<<event "lacy" "minigateway">>
<<set $matsFound = 0>>
<<button "Continue" homehub>>
<<like "lacy" 10>>
<<lust "lacy" 3>>
<<task "ellamats">>
<<time 1>>
<</button>>
<<case "planets">>
<<left2 _img>>
<<say "mc">>What can you tell me about your home world?<</say>>
<<say "lacy">>It was uneventful and uninterested in scientific discovery. I was bored out of my mind.<</say>>
<<say "mc">>So it was technologically behind?<</say>>
<<say "lacy">>No. Just stagnant.<</say>>
<<say "mc">>Would you ever wish to revisit?<</say>>
<<say "lacy">>Not particularly.<</say>>
<<say "mc">>What if I could help me become more powerful?<</say>>
<<if $techscomplete.signal != undefined>>
<<say "lacy">>Of course! The signal. I'm ashamed I didn't think to connect you to my home world originally. You should connect to everyone's home world that you haven't already in fact, and any other planets they know too!<</say>>
<<say "mc">>I'm working on it.<</say>>
<</if>>
<<say "lacy">>Then let's go right away.<</say>>
<<narrate>>She pauses for a moment.<</narrate>>
<<say "lacy">>Actually, I should probably invite my mother too. I don't think she's interested in returning home either, but I feel it would be wrong not to include her.<</say>>
<<say "mc">>I'll meet you there.<</say>>
<<cont "lacyanswers" "planets2">>
<<case "planets2">>
<<left2 "lacy/noback.png">>
<<say "lacy">>I have no love for my old world, but I appreciate that it can help you.<</say>>
<<say "vanna">>I had some fun back there, but... well, I looked 20 years older, so I think I prefer it here.<</say>>
<<say "mc">>I'm glad for that, I wouldn't like to think what things would be like without you two around.<</say>>
<<say "lacy">>We'll step through and come right back. Neither of us has any desire to stay there.<</say>>
<<say "mc">>Thank you, both.<</say>>
<<narrate>>The gateway bursts open with an ugly brown, but as the women step through, the pleasure takes control as you're blinded by a white light. You feel your body growing increasingly warm, sweat forming on your brow, and your cock swell as if it's on fire. The pleasure turns into pain as it courses through your body. Your arms feel heavy. The pain expands further until your head feels like it's about to explode.<</narrate>>
<<say "vanna">>$name! Are you okay? $name?!<</say>>
<<narrate>>You open your eyes to the concerned faces of both $lacy.name and $vanna.name, the pain has mostly subsided, but your clothes are wet-through from sweat and you're breathing heavily from the strain.<</narrate>>
<<say "mc">>It was... so painful. I've never felt anything like that.<</say>>
<<say "lacy">>I'm guessing this one was right on the threshold of your limits. $kp.name did mention trying to connect to worlds unknown could sometimes be painful if the patron is not powerful enough.<</say>>
<<say "mc">>I vaguely recall that from when I first discovered $kylie.name's world, but I never expected it to be anything like this. I feel fine, now... but I really never want to feel that again. Did $voice.name feel this way when she summoned you?<</say>>
<<say "lacy">>Given my understanding of her power level back then, and your reaction now, I'm surprised she even managed to connect to this world, but I suspect it was much more painful for her when she did.<</say>>
<<notice>>
<ul>
<li>Your power has increased.</li>
<li>Your max energy has massively increased.</li>
<li>$vanna.name's & $lacy.name's home world is now available for expeditions.</li>
</ul>
<</notice>>
<<button "Continue" gatewayb>>
<<like "vanna" 3>>
<<like "lacy" 3>>
<<lust "vanna" 2>>
<<lust "lacy" 1>>
<<set $planets[13].unlocked = true>>
<<set $power += 3>>
<<set $maxenergy += 20>>
<<event "lacy" "planets">>
<<time 2>>
<</button>>
<<case "kaylaback">>
<<left2 _img>>
<<say "mc">>You mentioned you knew where $kayla.name was?<</say>>
<<say "lacy">>Yes, she was a friend of many years, irrelevant of your decision, I intended to find her for myself from the start. However, I also understood why you chose not to retrieve her and it was never my intention to do anything more than ensure she was safe.<</say>>
<<say "mc">>I understand. But if we know roughly where she is, we should be able to find her.<</say>>
<<say "lacy">>Something $kp.name said intrigued me a little.<</say>>
<<say "mc">>Oh?<</say>>
<<say "lacy">>She said, like it's something we should all know, that $kayla.name would want to stay close to a hub... and that she wouldn't want to live on an empty hub. Why does she not think she'd want to stay off world?<</say>>
<<say "mc">>I assume most people living on a hub don't want to return off world.<</say>>
<<say "lacy">>Perhaps, but I feel there's more to it. But, I digress. If you want to retrieve her, I can let you know roughly where she is so you can investigate. Though, and I didn't really want to say this in front of everyone else, I'm pretty sure I can set up a system to communicate with them regardless. I don't want to force your hand either way. It will likely take longer to setup, but I'm confident I can do it without her.<</say>>
<<say "mc">>And what's your opinion on retrieving her?<</say>>
<<say "lacy">>That we absolutely should. If you wish to truly nurture peace and prosperity with New Eden, then she deserves the same forgiveness you gave them.<</say>>
<<say "mc">>But you wouldn't hold it against me if I left her off world? The situation is a little different after all, she deceived us.<</say>>
<<say "lacy">>I would not regard you any differently, I would understand your decision and while I disagree with it, I would respect it. You have to weigh the lives of many, and I would not wish such responsibility on anyone.<</say>>
<div id="replace">
<<choices "Retrieve $kayla.name?">>
<<link "Yes">>
<<replace "#replace">>
<<say "mc">>Thanks $lacy.name. Let's get her back.<</say>>
<<say "lacy">>I am relieved to hear you say that. I know what city she's in, same as $val.name, so it may be prudent to speak to her, or seven just send some ours down there on an expedition.<</say>>
<<say "mc">>I'll handle it. Out of curiosity, what was your idea without her?<</say>>
<<say "lacy">>Just as your $krissy.them suggested, going back to New Eden and asking them so I can decide whether it's better to retrofit the existing communications network or create a new one. But I daresay that would have them question what happened to $kayla.name creating some mistrust between us.<</say>>
<<say "mc">>Ah, that simple, huh?<</say>>
<<narrate>>She nods.<</narrate>>
<<button "Continue" housestuff>>
<<like "lacy" 5>>
<<time 1>>
<</button>>
<</replace>>
<<taskdone "kaylaback0">>
<<event "mc" "kaylagone" "yes">>
<<task "kaylaback">>
<<task "eastcomms">>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<say "mc">>Her betrayal concerns me, and I do not wish any harm to come to you guys.<</say>>
<<say "lacy">>I see. Well, in that case the only option is to head back East and ask them how it worked. My suspicion is we'll have to create a new communications network but I need to understand their current methods before we decide whether it's worth retrofitting that or creating a new one. I must admit though, they are going to question what happened to $kayla.name. It may lead to some mistrust.<</say>>
<<say "mc">>I think given the capacity in which they sent her here, they can't really be surprised.<</say>>
<<say "lacy">>That's not the reason. You're going to claim she's gone off world when you discovered she was a spy. They are going to assume you killed her, maybe banished her at best.<</say>>
<<say "mc">>Seriously?<</say>>
<<say "lacy">>It's only logical, what would you think if you had sent one of us to spy on them, and then after you made friends with them they told you we'd just decided to go do our own thing without telling you?<</say>>
<<say "mc">>Shit...<</say>>
<<say "lacy">>I'm sure it's something you can overcome. You should take one of the vehicles from the garage and have $britt.name or $moriah.name accompany you. Also, I'm going to keep tracking her in hopes you change your mind in the future.<</say>>
<<say "mc">>Thanks, $lacy.name.<</say>>
<<button "Continue" housestuff>>
<<task "roadtrip">>
<<time 1>>
<</button>>
<</replace>>
<<taskdone "kaylaback0">>
<</link>>
<</choices>>
</div>
<<case "kaylaback2">>
<<left2 _img>>
<<say "mc">>About $kayla.name...<</say>>
<<narrate>>A smile creeps across her face.<</narrate>>
<<say "lacy">>You've decided to try and track her down?<</say>>
<div id="replace">
<<choices "Retrieve $kayla.name?">>
<<link "Yes">>
<<replace "#replace">>
<<say "mc">>Yes! Let's get her back.<</say>>
<<say "lacy">>I am relieved to hear you say that. I know what city she's in, same as $val.name, so it may be prudent to speak to her, or seven just send some ours down there on an expedition.<</say>>
<<say "mc">>Great, thanks $lacy.name.<</say>>
<<button "Continue" housestuff>>
<<like "lacy" 5>>
<<time 1>>
<</button>>
<</replace>>
<<event "mc" "kaylagone" "yes">>
<<task "kaylaback">>
<</link>><br>
<<link "No">>
<<replace "#replace">>
<<say "mc">>No, sorry... I just wanted to make sure she was still safe.<</say>>
<<say "lacy">>Oh, that is upsetting to hear. But I can tell you she's still in the city she portalled to. I can't really tell you much about her safety I'm afraid, all I can tell you is she's alive and roughly where she is within maybe 10 miles.<</say>>
<<say "mc">>understood, thanks, $lacy.name.<</say>>
<<button "Continue" housestuff>>
<<time 1>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "champions">>
<<block _img>>
<<say "mc">>I need your help with something, $lacy.name.<</say>>
<<say "lacy">>I do enjoy it when you give me something new to ponder. What mystery have you unearthed now?<</say>>
<<say "mc">>There's only eight champions.<</say>>
<<say "lacy">>So what is the ninth, just a regular traveler?<</say>>
<<say "mc">>I don't know, I'm about to go discuss it with $voice.name. She came to me last night mentioned she felt power in her eight champions, and well, that's when the fact there are nine strays became apparent to her.<</say>>
<<say "lacy">>She's more powerful now? You think I can perceive her?<</say>>
<</block>>
<<say "mc">>I don't know, but we need to ensure there's nothing nefarious about the extra stray.<</say>>
<<say "lacy">>I'm sure if there was, they'd have done something by now, come on, let's go to Gateway A together, I want to see what's changed, maybe I can learn something new!<</say>>
<<button "Continue" voiceanswers>>
<<temp "eight">>
<<set $mc.events.eight = "lacy">>
<<like "lacy" 3>>
<<time 1>>
<</button>>
<<case "possession">>
<<narrate>>A little hazy about the details of yesterday, you decide to pay $lacy.name a visit.<</narrate>>
<<center "lacy/possess01.jpg">>
<<narrate>>She looks up at you with a mixture of fear and lust.<</narrate>>
<<say "lacy">>Please, I don't think I have the stamina for another round.<</say>>
<<say "mc">>Uhh, what? No. I just wanted to understand what happened.<</say>>
<<say "lacy">>You were a beast! It was so damn hot, but exhausting... hence I'm in this state.<</say>>
<<narrate>>It suddenly dawns on you that she's naked.<</narrate>>
<<say "mc">>You want me to come back once you're dressed?<</say>>
<<say "lacy">>Really?<</say>>
<<narrate>>She rolls her eyes.<</narrate>>
<<say "lacy">>$kp.name gave me some info. Basically, increasing your limits means you've gained more capacity for power, as well as a sharp increase immediately.<</say>>
<<think "mc">>I guess she doesn't care about being naked.<</think>>
<<say "lacy">>It really is a marvel you're able to move around freely after that fuck fest last night!<</say>>
<<narrate>>You grin at her.<</narrate>>
<<say "mc">>I could definitely go for that again.<</say>>
<<say "lacy">>I'm sure it won't be the last time.<</say>>
<<say "mc">>And the possession ability?<</say>>
<<say "lacy">>I've uploaded details to the system. The best way to learn is by doing. Next time you organize an expedition, why not give it a go?<</say>>
<<say "mc">>Yeah, okay. Thanks for everything, $lacy.name!<</say>>
<<say "lacy">>Any time, I mean that. You have no idea how much satisfaction I get from looking into the many mysteries that surround you.<</say>>
<<button "Continue" househub>>
<<like "lacy" 2>>
<<time 0.5>>
<<temp "">>
<</button>>
<<case "gatewaya-2">>
<<block _img>>
<<say "mc">>I'm going to go talk to the voice again, you want to come with?<</say>>
<<narrate>>She pauses for thought.<</narrate>>
<<think "lacy">>He's clearly holding something back from me, but I'm here now and I'm itching to see if I can see this coalescence too!<</think>>
<<say "lacy">>Okay. Let's go.<</say>>
<<button "Continue" voicetalk>>
<<event "mc" "gatewayacompanion" "lacy">>
<</button>>
<</block>>
<<case "stockpile">>
<<block _img>>
<<say "mc">>Could you help me with something else?<</say>>
<<say "lacy">>Depends, are you going to be more honest with me?<</say>>
<<say "mc">>I haven't lied to you!<</say>>
<<think "mc">>Just omitted.<</think>>
<<say "lacy">>Perhaps, but there's something you're not telling me.<</say>>
<</block>>
<<think "mc">>I haven't mentioned Gateway A to her yet, but I could certainly do with some help figuring out what to do with those resource.<</think>>
<div id="replaceme">
<<choices "How do you proceed?">>
<<link "Tell her about Gateway B, but you didn't realize that's what the glass arch was.">>
<<replace "#replaceme">>
<<narrate>>You tell her about Gateway B and the stockpile.<</narrate>>
<<say "mc">>I wasn't sure the glass arch was meaningful to our discussion, and the stockpile is new.<</say>>
<<say "lacy">>I guess you might not know if the glass arch predated you or not, but the stockpile is new?<</say>>
<<say "mc">>Yeah, I think I'm meant to use to build with.<</say>>
<<say "lacy">>Build what?<</say>>
<<think "mc">>I'm still not comfortable trusting her with everything yet.<</think>>
<<say "mc">>I have no idea.<</say>>
<<narrate>>You describe the resources included in the stockpile and her face seems to light up.<</narrate>>
<<say "lacy">>There's probably enough to build a research outpost. That would help me set up shop there to try and figure out what's going on. We'll need $ember.name's help for that though.<</say>>
<<event 'mc' 'embermention'>>
<<say "mc">>$moriah.name said I'd see her this evening?<</say>>
<<say "lacy">>That's right, we're having a meeting after they've debriefed to introduce you. I'm going to stay here for a while, see if I can uncover anything else. I'll see you this evening.<</say>>
<<say "mc">>See you later.<</say>>
<<button "Continue" gatewaya>>
<<time 1>>
<<event "mc" "stockpile">>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Tell her about Gateway B but that you were trying to understand it yourself before burdening her.">>
<<replace "#replaceme">>
<<narrate>>You tell her about Gateway B.<</narrate>>
<<say "mc">>I'm still struggling to get my head around everything and I didn't really want to burden you until I understood more.<</say>>
<<say "lacy">>That's actually kind of sweet. But $name, it's also illogical. Besides, I thrive on this stuff. Nothing excites me more than researching and discovering something new. It's not even close to a burden!<</say>>
<<say "mc">>Right, sorry $lacy.name, I'll bear that in mind for the future. So what are your initial thoughts?<</say>>
<<say "lacy">>Well, foremost it sounds like there are enough resources there to build a research outpost. That would allow me to do some investigating and experimentation on site and hopefully help us uncover what's going on sooner.<</say>>
<<say "mc">>I'm not adverse to that, but I don't know how to build something of that nature.<</say>>
<<say "lacy">>Oh, don't worry about that. You'll meet $ember.name later, but she'll be in her element with this!<</say>>
<<event 'mc' 'embermention'>>
<<button "Continue" townhub>>
<<set $lacy.trust++>>
<<like 'lacy' 1>>
<<time 1>>
<<event "mc" "stockpile">>
<</button>>
<</replace>>
<</link>>
<br>
<<link "Tell her nothing further.">>
<<replace "#replaceme">>
<<say "mc">>I get it. Don't worry about it.<</say>>
<<narrate>>You leave before she can respond.<</narrate>>
<<button "Continue" gatewaya>>
<</button>>
<</replace>>
<</link>>
<</choices>>
</div>
<<case "caughtmom">>
<<left2 _img>>
<<say "mc">>Sorry if it was a bit weird when you walked in.<</say>>
<<say "lacy">>What do you mean?<</say>>
<<say "mc">>You know, with your mom...<</say>>
<<narrate>>She cocks her head on its side as if you're making no sense.<</narrate>>
<<say "lacy">>Perhaps I am missing some context.<</say>>
<<narrate>>Your cheeks go red.<</narrate>>
<<say "mc">>Uh, you know... when your mom and I did... and you...<</say>>
<<narrate>>She starts laughing.<</narrate>>
<<say "lacy">>You're so sweet. I knew what you were getting at, I was just winding you up. As I told you then, it does not bother me.<</say>>
<<say "mc">>So you're really okay with me sleeping with both of you?<</say>>
<<say "lacy">>Indeed. My mother is an attractive woman, and very forward. I'd be surprised if you weren't.<</say>>
<<say "mc">>Great, thanks $lacy.name. I was worried I might have crossed some sort of boundary.<</say>>
<<say "lacy">>Perhaps we just come from different cultures, but I am quite comfortable with the current situation.<</say>>
<<think "mc">>She really is okay with it... I wonder how far I can push it.<</think>>
<<button "Continue" "lacy">>
<<if $vanna.events.lacyinterupt == 1>>
<<event 'vanna' 'lacyinterupt' 2>>
<<lust 'lacy' 2>>
<<like 'lacy' 3>>
<</if>>
<<time 1>>
<</button>>
<<case "station">>
<<block "lacy/lab01.jpg">>
<<say "mc">>How are you finding it here? What you've already done is nothing short of incredible, and yet I feel like you've only just begun.<</say>>
<<narrate>>She grins at you.<</narrate>>
<<say "lacy">>I hope my services have been of help to you. I have thoroughly enjoyed every moment and indeed, I feel I have yet more to offer you.<</say>>
<<say "mc">>You've been amazing already, I can only imagine what else you have planned.<</say>>
<<if $lacy.like < 15>>
<<say "lacy">>Indeed, with that in mind I still have work to do.<</say>>
<<think "lacy">>I'd love to thank him properly, but I think he needs to put more effort into getting to know me.<</think>>
<<button "Continue" mnglab>>
<<time 0.5>>
<</button>>
<<elseif $lacy.lust < 20>>
<<say "lacy">>It is a joint effort, and I would love to show my gratitude but I don't think that would be appropriate here. I'd better get back to work.<</say>>
<<think "mc">>Hmmm, perhaps if she was a bit more lustful, she wouldn't have such reservations.<</think>>
<<button "Continue" mnglab>>
<<time 0.5>>
<</button>>
<</if>>
<</block>>
<<if $lacy.lust > 19 && $lacy.like > 14>>
<<say "lacy">>I was somewhat shocked when your <<if $girlsmet.includes('theodora')>>$theodora.them<<else>>$charlie.them<</if>> was in the buffer, but for allowing me to be part of that discovery, I should be thanking you. While I certainly have contributed, literally none of this would be possible without you. In fact, I have just about finished up for the day, perhaps you'll allow me to show my gratitude.<</say>>
<<narrate>>She moves over to the wall of screens, turns off the monitors, and then returns to the couch, draping herself across it.<</narrate>>
<<center "lacy/lab03.jpg">>
<<say "lacy">>The couch is quite cozy, isn't it? To be surrounded by the books we've accumulated while across from the equipment - it's truly my favorite place here. And you made this possible.<</say>>
<<narrate>>She pats the sofa, as if beckoning you to sit beside her.<</narrate>>
<<say "mc">>Nonsense, we did this together.<</say>>
<<narrate>>You sit beside her, and it's not long until her hand wanders to your thigh, gently stroking you and sending a tickling sensation up your leg. Your dick slowly grows into a semi.<</narrate>>
<<say "lacy">>Oh, I'm fully aware I have played a big part in this. But you are the director, and you cast me in this role. Speaking of big parts...<</say>>
<<block "lacy/lab04.jpg">>
<<say "lacy">>I think you might have a big part to play in me rather shortly.<</say>>
<<narrate>>She stands in front of you and unties her dress and lets it fall down to drape over her arms.<</narrate>>
<<say "mc">>Holy shit, $lacy.name, you look incredible.<</say>>
<<think "mc">>This woman drives me wild, she seems so devoid of emotion most of the time, but when it comes to getting intimate it's like there's a fire within her.<</think>>
<<say "mc">>So, what do you have in mind?<</say>>
<<say "lacy">>Playing stupid does not suit you, $name. But, please, allow me to clarify.<</say>>
<<think "mc">>Eh... perhaps I spoke too soon.<</think>>
<</block>>
<<narrate>>She climbs onto you and starts rocking her hips back and forth over your lap a