Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
Loading…
,,,<div align='center' style='font-size: 150%;'>\
HELLO! \
</div>
My nickname is Mord. I am the creator of Futaland. This game is entirely free. If you paid any money for this game then you have been robbed! Futaland is an adult game, entirely fictional, and no ages are mentioned. Feel free to imagine yourself and the characters at an age that seems appropriate to you. Futaland is only meant for a way to have fun and not meant to be taken literally. The outcome of this adventure depends on the player decisions. Many types of fetishes and different storylines are planned to be added. Please notice that the game is in its early development. All resources used are sourced from the public domain. Since my native language is not English, your notes about the improvement of the texts are welcome. Enjoy the game!
----
<div align='center' style='font-size: 150%;'>\
Random NPC Generator DLC!
</div>
It is downloadable separately due to the file size. It is not connecting to the main storyline, so if you don't want to download it, you still can play with the base game. It is just a test version now. You have to go to a club and dance. You will find five different, randomly generated NPC. You can go home and spend a lovely hour with them. If you want new NPCs generated just start a new game.
----
<div align='center'>
<b>WARNING: Tha game has sound!!!</b>
What is your male character's first name?
<<textbox "$fname" "John">>
What is your male character's last name?
<<textbox "$lname" "Doe">>
<div style='font-size: 150%;'><b>Starting options</b></div>\
<<button "Start with Intro" "Intro">><<set $malename = $fname>><<set $intro = 1>><</button>>
<<button "Skip the Intro" "Lab Player">><<set $malename = $fname>><<addhours 13>><<addmins 50>><<set $intro = 21>><<addenergy 100>><</button>><<set
window.GameDays to ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
window.GameMonths to ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
$gameDate to new Date(2015, 6, 19, 20, 0); /* e.g. Mar 17, 2015 03:24 */
>>
<<widget "addmins">>\
<<run $gameDate.setMinutes($gameDate.getMinutes() + $args[0])>>\
<</widget>>
<<widget "addhours">>\
<<run $gameDate.setHours($gameDate.getHours() + $args[0])>>\
<</widget>>
<<widget "adddays">>\
<<run $gameDate.setHours($gameDate.getHours() + $args[0] * 24)>>\
<</widget>>
<<widget "date">>\
<<print String.format("{0} {1} {2}",
GameDays[$gameDate.getDay()],
GameMonths[$gameDate.getMonth()],
$gameDate.getDate()
)>>\
<</widget>>
<<widget "time12hr">>\
<<if $gameDate.getHours() eq 0>>\
12\
<<elseif $gameDate.getHours() gt 12>>\
<<print $gameDate.getHours() - 12>>\
<<else>>\
<<print $gameDate.getHours()>>\
<</if>>:\
<<if $gameDate.getMinutes() lt 10>>0<</if>><<print $gameDate.getMinutes()>> \
<<if $gameDate.getHours() gte 12>>PM<<else>>AM<</if>>\
<</widget>>
<<widget "time24hr">>\
<<if $gameDate.getHours() lt 10>>0<</if>><<print $gameDate.getHours()>>:\
<<if $gameDate.getMinutes() lt 10>>0<</if>><<print $gameDate.getMinutes()>>\
<</widget>>
<<widget "datetime">><<date>> <<time12hr>> (<<time24hr>>)<</widget>><span id="CapTxt"></span>
<div id="verticalenergybarbkg" class="vertbarbkg"><div id="verticalenergybar" class="vertbar"></div></div>
<div id="verticalarousalbarbkg" class="vertbarbkg"><div id="verticalarousalbar" class="vertbar"></div></div>[[Patreon website|https://www.patreon.com/user?u=8070383]]
[[TFGames website|https://tfgames.site/index.php?module=viewgame&id=2099]]<img src="content/ui/logo.jpg" style="max-width: 100%;">
Chapter 1
Version: 0.4.6.<span id="display-Paperdoll"><<display "Paperdoll">></span>\<<nobr>>
/* <<initNPCs count>> : Adds "count" number of NPC objects to the $NPCs array. */
<<widget "initNPCs">>
<<for _npcNum = 0; _npcNum < $args[0]; _npcNum++>> /* $args[0] is the first parameter passed to the <<initNPCs>> widget. */
<<set _tempNPC = {}>> /* Create an NPC object. */
<<if (ndef _tempHair) or (_tempHair.length === 0) >>
/* Fill _tempHair array with a copy of hair list if _tempHair is undefined or empty. */
<<set _tempHair = clone(setup.hairlist)>>
<</if>>
<<if (ndef _tempName) or (_tempName.length === 0) >>
<<set _tempName = clone(setup.namelistf)>>
<</if>>
<<if (ndef _tempBodyColor) or (_tempBodyColor.length === 0) >>
<<set _tempBodyColor = clone(setup.bodycolorlist)>>
<</if>>
<<if (ndef _tempSexType) or (_tempSexType.length === 0) >>
<<set _tempSexType = clone(setup.sextypelistf)>>
<</if>>
<<if (ndef _tempTrait) or (_tempTrait.length === 0) >>
<<set _tempTrait = clone(setup.traitlist)>>
<</if>>
<<set _tempNPC.name = _tempName.pluck()>> /* Move a random name from the name list to _tempNPC.name . */
<<set _tempNPC.hair = _tempHair.pluck()>>
<<set _tempNPC.bodyColor = _tempBodyColor.pluck()>>
<<set _tempNPC.sexType = _tempSexType.pluck()>>
<<set _tempNPC.trait = _tempTrait.pluck()>>
<<set _tempRnd = "content/npc/female/" + _tempNPC.hair + "/" + _tempNPC.sexType + "/" + _tempNPC.bodyColor + random(1, 3)>>
<<set _tempNPC.portrait = _tempRnd + "p.png">>
<<set _tempNPC.center = _tempRnd + ".jpg">>
<<set $NPCs.push(_tempNPC)>> /* Add random NPC object to $NPCs array. */
<</for>>
<</widget>>
<</nobr>>
<<nobr>>
<<widget "mnpckiss">>
<video @src="'content/npcsex/maleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/kiss.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "mnpclick">>
<video @src="'content/npcsex/maleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/lick.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "mnpclicked">>
<video @src="'content/npcsex/maleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/licked.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "mnpcsuck">>
<video @src="'content/npcsex/maleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/suck.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "mnpcsucked">>
<video @src="'content/npcsex/maleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/sucked.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "mnpcfuck">>
<video @src="'content/npcsex/maleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/fuck.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "mnpcanalfuck">>
<video @src="'content/npcsex/maleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/analfuck.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "mnpcfucked">>
<video @src="'content/npcsex/maleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/fucked.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "msnpccum">>
<video @src="'content/npcsex/maleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/scum.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "msnpccumed">>
<video @src="'content/npcsex/maleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/scumed.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "mdnpccum">>
<video @src="'content/npcsex/maleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/dcum.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "mdnpccumed">>
<video @src="'content/npcsex/maleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/dcumed.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
\
\
\
\
\
<<widget "fnpckiss">>
<video @src="'content/npcsex/femaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/kiss.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "fnpclick">>
<video @src="'content/npcsex/femaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/lick.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "fnpclicked">>
<video @src="'content/npcsex/femaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/licked.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "fnpcsuck">>
<video @src="'content/npcsex/femaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/suck.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "fnpcfuck">>
<video @src="'content/npcsex/femaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/pfuck.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "fnpcanalfuck">>
<video @src="'content/npcsex/femaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/afuck.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "fnpcfucked">>
<video @src="'content/npcsex/femaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/pfucked.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "fnpcanalfucked">>
<video @src="'content/npcsex/femaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/afucked.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "fsnpccum">>
<video @src="'content/npcsex/femaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/scum.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "fsnpccumed">>
<video @src="'content/npcsex/femaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/scumed.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "fdnpccum">>
<video @src="'content/npcsex/femaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/dcum.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "fdnpccumed">>
<video @src="'content/npcsex/femaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/dcumed.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<</nobr>>
\
\
\
\
\
<<nobr>>
<<widget "snpckiss">>
<video @src="'content/npcsex/shemaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/kiss.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "snpclick">>
<video @src="'content/npcsex/shemaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/lick.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "snpclicked">>
<video @src="'content/npcsex/shemaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/licked.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "snpcsuck">>
<video @src="'content/npcsex/shemaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/suck.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "snpcsucked">>
<video @src="'content/npcsex/shemaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/sucked.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "snpcfuck">>
<video @src="'content/npcsex/shemaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/fuck.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "snpcanalfuck">>
<video @src="'content/npcsex/shemaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/analfuck.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "snpcfucked">>
<video @src="'content/npcsex/shemaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/fucked.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "ssnpccum">>
<video @src="'content/npcsex/shemaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/scum.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "ssnpccumed">>
<video @src="'content/npcsex/shemaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/scumed.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "sdnpccum">>
<video @src="'content/npcsex/shemaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/dcum.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<<widget "sdnpccumed">>
<video @src="'content/npcsex/shemaleplayer/' + $NPCs[$args[0]].sexType + '/' + $NPCs[$args[0]].hair + '/' + $NPCs[$args[0]].bodyColor + '/dcumed.mp4'" style="width: 100%;" autoplay loop></video>
<</widget>>
<</nobr>>
<<if $pgender is "male">>\
<<if $CurEN == 0 and $CurOG < 100>>\
<<set $npcsp = 15>>\
<img @src="$NPCs[$npcnumber].center">
<div align='center'>You don`t have enough energy to continue. She is very disappointed.</div>\
<<button "Go home and sleep" "Player Sleep">><<set $npcsp = 1>><<set $CurOG = 0>><<addhours 1>><</button>>
\
\
\
<<elseif $npcsp == 1 and $CurOG < 100 and $CurEN >= 5>>\
<img @src="$NPCs[$npcnumber].center">
<div align='center'>You get back to her place. It isn’t anything fancy but it is clean and well decorated. She clearly has some good tastes.</div>\
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Show me what you got!<</speechnpc>>
\
\
\
<<elseif $npcsp == 2 and $CurOG < 100 and $CurEN >= 5>>\
<<mnpckiss $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Mmmppphhh. You have a soft lips.<</speechnpc>>
\
\
\
<<elseif $npcsp == 3 and $CurOG < 100 and $CurEN >= 5>>\
<<mnpclick $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Ohh yeah. Push your tongue inside me!<</speechnpc>>
\
\
\
<<elseif $npcsp == 4 and $CurOG < 100 and $CurEN >= 5>>\
<<mnpclicked $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Your hole is so tasty!!<</speechnpc>>
\
\
\
<<elseif $npcsp == 5 and $CurOG < 100 and $CurEN >= 5>>\
<<mnpcsuck $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Suck it!<</speechnpc>>
\
\
\
<<elseif $npcsp == 6 and $CurOG < 100 and $CurEN >= 5>>\
<<mnpcsucked $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>You have a delicious cock.<</speechnpc>>
\
\
\
<<elseif $npcsp == 7 and $CurOG < 100 and $CurEN >= 5>>\
<<mnpcfuck $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Fuck me harder!<</speechnpc>>
\
\
\
<<elseif $npcsp == 8 and $CurOG < 100 and $CurEN >= 5>>\
<<mnpcanalfuck $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Ohh. You stretching my ass!<</speechnpc>>
\
\
\
<<elseif $npcsp == 9 and $CurOG < 100 and $CurEN >= 5>>\
<<mnpcfucked $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Oohhh you are so tight.<</speechnpc>>
\
\
\
<<elseif $npcsp == 10 and $NPCs[$npcnumber].trait is "submissive">>\
<<msnpccum $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Yeah cum everywhere!<</speechnpc>>
\
\
\
<<elseif $npcsp == 10 and $NPCs[$npcnumber].trait is "dominant">>\
<<mdnpccum $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>You wasn't bad.<</speechnpc>>
\
\
\
<<elseif $CurOG == 100 and $NPCs[$npcnumber].trait is "submissive">>\
<<msnpccumed $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Yeaahh!<</speechnpc>>
\
\
\
<<elseif $CurOG == 100 and $NPCs[$npcnumber].trait is "dominant">>\
<<mdnpccumed $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Yeaahh!<</speechnpc>>
<</if>>\
\
\
\
<div align='center' style='color:#f0ffff;'>$NPCs[$npcnumber].name`s Orgasm Meter</div>
<div id="horizontalorgasmbarbkg" class="hzbarbkg">\
<div id="horizontalorgasmbar" class="hzbar">\
</div>\
</div>\
<<script>>$(document).one(':passagerender', function (ev) {
Orgasm(State.variables.CurOG, State.variables.MaxOG, "horizontalorgasmbar", true, ev.content);
});<</script>>
<<if $CurOG < 100 and $CurEN >= 5 and $npcsp < 10>>\
<<button "Kiss her" "NPC Sex">>
<<set $npcsp = 2>>
<<set $tongueskill += 1>>
<<set $mkisscounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
\
\
<<button "Lick her" "NPC Sex">>
<<set $npcsp = 3>>
<<set $tongueskill += 1>>
<<set $masslickcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
\
\
<<if $NPCs[$npcnumber].sexType is "shemale">>\
<<button "Get licked" "NPC Sex">>
<<set $npcsp = 4>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
\
\
<<button "Suck her" "NPC Sex">>
<<set $npcsp = 5>>
<<set $blowjobskill += 1>>
<<set $mgblowjobcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<if $locked is true>>\
<div align='center'>Your cock is locked, she can`t suck you.</div>\
<<else>>\
<<button "Get sucked" "NPC Sex">>
<<set $npcsp = 6>>
<<set $mrblowjobcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<if $locked is true>>\
<div align='center'>Your cock is locked, you can`t fuck her.</div>\
<<else>>\
<<button "Fuck her" "NPC Sex">>
<<set $npcsp = 7>>
<<set $sexskill += 1>>
<<set $mganalcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<if $NPCs[$npcnumber].sexType isnot "shemale">>\
<<if $locked is true>>\
<div align='center'>Your cock is locked, you can`t anal fuck her.</div>\
<<else>>\
<<button "Anal fuck her" "NPC Sex">>
<<set $npcsp = 8>>
<<set $sexskill += 1>>
<<set $mganalcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
<</if>>\
\
\
<<if $NPCs[$npcnumber].sexType is "shemale">>\
<<button "Get fucked" "NPC Sex">>
<<set $npcsp = 9>>
<<set $sexskill += 1>>
<<set $analskill += 1>>
<<set $mranalcounter += 1>>
<<set $analsize += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<elseif $CurOG == 100>>\
<<if $locked is true>>\
<div align='center'>You are locked and can`t cum.</div>\
<<button "Go home and sleep" "Player Sleep">><<set $cumplayskill += 1>><<set $CurOG = 0>><<set $npcsp = 1>><<addhours 1>><</button>>
<<else>>\
<<button "Cum" "NPC Sex">>
<<set $npcsp = 10>>
<<set $mcumcounter += 1>>
<<set $noorgasm = 0>>
<<set $cumplayskill += 1>>
<<set $CurOG = 0>>
<<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<</button>>
<</if>>\
<<elseif $npcsp == 10>>\
<div align='center'>You excuse yourself and step into the small bathroom and clean yourself up. As she walks you to the front door, you exchange numbers and then a quick kiss and you are on your way home.</div>\
<<button "Go home and sleep" "Player Sleep">>
<<set $npcsp = 1>>
<<addhours 1>>
<</button>>
<</if>>\
\
\
\
\
\
<<elseif $pgender is "female">>\
<<if $CurEN == 0 and $CurOG < 100>>\
<<set $npcsp = 15>>\
<img @src="$NPCs[$npcnumber].center">
<div align='center'>You don`t have enough energy to continue. She is very disappointed.</div>\
<<button "Go home and sleep" "Player Sleep">><<set $npcsp = 1>><<set $CurOG = 0>><<addhours 1>><</button>>
\
\
\
<<elseif $npcsp == 1 and $CurOG < 100 and $CurEN >= 5>>\
<img @src="$NPCs[$npcnumber].center">
<div align='center'>You get back to her place. It isn’t anything fancy but it is clean and well decorated. She clearly has some good tastes.</div>\
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Show me what you got!<</speechnpc>>
\
\
\
<<elseif $npcsp == 2 and $CurOG < 100 and $CurEN >= 5>>\
<<fnpckiss $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Mmmppphhh. You have a soft lips.<</speechnpc>>
\
\
\
<<elseif $npcsp == 3 and $CurOG < 100 and $CurEN >= 5>>\
<<fnpclick $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Ohh yeah. Push your tongue inside me!<</speechnpc>>
\
\
\
<<elseif $npcsp == 4 and $CurOG < 100 and $CurEN >= 5>>\
<<fnpclicked $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Your hole is so tasty!!<</speechnpc>>
\
\
\
<<elseif $npcsp == 5 and $CurOG < 100 and $CurEN >= 5>>\
<<fnpcsuck $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Suck it!<</speechnpc>>
\
\
\
<<elseif $npcsp == 6 and $CurOG < 100 and $CurEN >= 5>>\
<<fnpcfuck $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Fuck me harder!<</speechnpc>>
\
\
\
<<elseif $npcsp == 7 and $CurOG < 100 and $CurEN >= 5>>\
<<fnpcanalfuck $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Ohh. You stretching my ass!<</speechnpc>>
\
\
\
<<elseif $npcsp == 8 and $CurOG < 100 and $CurEN >= 5>>\
<<fnpcfucked $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Oohhh you are so wet.<</speechnpc>>
\
\
\
<<elseif $npcsp == 9 and $CurOG < 100 and $CurEN >= 5>>\
<<fnpcanalfucked $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Oohhh you are so tight.<</speechnpc>>
\
\
\
<<elseif $npcsp == 10 and $NPCs[$npcnumber].trait is "submissive">>\
<<fsnpccum $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Yeah cum everywhere!<</speechnpc>>
\
\
\
<<elseif $npcsp == 10 and $NPCs[$npcnumber].trait is "dominant">>\
<<fdnpccum $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>You wasn't bad.<</speechnpc>>
\
\
\
<<elseif $CurOG == 100 and $NPCs[$npcnumber].trait is "submissive">>\
<<fsnpccumed $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Yeaahh!<</speechnpc>>
\
\
\
<<elseif $CurOG == 100 and $NPCs[$npcnumber].trait is "dominant">>\
<<fdnpccumed $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Yeaahh!<</speechnpc>>
<</if>>\
<div align='center' style='color:#f0ffff;'>$NPCs[$npcnumber].name`s Orgasm Meter</div>
<div id="horizontalorgasmbarbkg" class="hzbarbkg">\
<div id="horizontalorgasmbar" class="hzbar">\
</div>\
</div>\
<<script>>$(document).one(':passagerender', function (ev) {
Orgasm(State.variables.CurOG, State.variables.MaxOG, "horizontalorgasmbar", true, ev.content);
});<</script>>
<<if $CurOG < 100 and $CurEN >= 5 and $npcsp < 10>>\
<<button "Kiss her" "NPC Sex">>
<<set $npcsp = 2>>
<<set $tongueskill += 1>>
<<set $fkisscounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
\
\
<<if $NPCs[$npcnumber].sexType is "bisexual" or $NPCs[$npcnumber].sexType is "lesbian">>\
<<button "Lick her" "NPC Sex">>
<<set $npcsp = 3>>
<<set $tongueskill += 1>>
<<set $fgpussylickcounter += 1>>
<<set $fasslickcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<if $NPCs[$npcnumber].sexType is "shemale">>\
<<button "Lick her" "NPC Sex">>
<<set $npcsp = 3>>
<<set $tongueskill += 1>>
<<set $fasslickcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
\
\
<<button "Suck her" "NPC Sex">>
<<set $npcsp = 5>>
<<set $blowjobskill += 1>>
<<set $fgblowjobcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<button "Get licked" "NPC Sex">>
<<set $npcsp = 4>>
<<set $frpussylickcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
\
\
<<if $NPCs[$npcnumber].trait is "submissive">>\
<<if $NPCs[$npcnumber].sexType isnot "shemale">>\
<<button "Fuck her pussy" "NPC Sex">>
<<set $npcsp = 6>>
<<set $sexskill += 1>>
<<set $fstraponcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<button "Fuck her ass" "NPC Sex">>
<<set $npcsp = 7>>
<<set $sexskill += 1>>
<<set $fstraponcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<if $NPCs[$npcnumber].trait is "dominant">>\
<<button "Get pussy fucked" "NPC Sex">>
<<set $npcsp = 8>>
<<set $sexskill += 1>>
<<set $pussysize += 1>>
<<set $frpussyfuckcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
\
\
<<button "Get anal fucked" "NPC Sex">>
<<set $npcsp = 9>>
<<set $sexskill += 1>>
<<set $analsize += 1>>
<<set $franalcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<elseif $CurOG == 100>>\
<<button "Cum" "NPC Sex">>
<<set $npcsp = 10>>
<<set $fcumcounter += 1>>
<<set $noorgasm = 0>>
<<set $cumplayskill += 1>>
<<set $CurOG = 0>>
<<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<</button>>
<<elseif $npcsp == 10>>
<div align='center'>You excuse yourself and step into the small bathroom and clean yourself up. As she walks you to the front door, you exchange numbers and then a quick kiss and you are on your way home.</div>\
<<button "Go home and sleep" "Player Sleep">>
<<set $npcsp = 1>>
<<addhours 1>>
<</button>>
<</if>>\
\
\
\
\
\
<<elseif $pgender is "shemale">>\
<<if $CurEN == 0 and $CurOG < 100>>\
<<set $npcsp = 15>>\
<img @src="$NPCs[$npcnumber].center">
<div align='center'>You don`t have enough energy to continue. She is very disappointed.</div>\
<<button "Go home and sleep" "Player Sleep">><<set $npcsp = 1>><<set $CurOG = 0>><<addhours 1>><</button>>
\
\
\
<<elseif $npcsp == 1 and $CurOG < 100 and $CurEN >= 5>>\
<img @src="$NPCs[$npcnumber].center"><br>
<div align='center'>You get back to her place. It isn’t anything fancy but it is clean and well decorated. She clearly has some good tastes.</div>\
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Show me what you got!<</speechnpc>>
\
\
\
<<elseif $npcsp == 2 and $CurOG < 100 and $CurEN >= 5>>\
<<snpckiss $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Mmmppphhh. You have a soft lips.<</speechnpc>>
\
\
\
<<elseif $npcsp == 3 and $CurOG < 100 and $CurEN >= 5>>\
<<snpclick $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Ohh yeah. Push your tongue inside me!<</speechnpc>>
\
\
\
<<elseif $npcsp == 4 and $CurOG < 100 and $CurEN >= 5>>\
<<snpclicked $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Your hole is so tasty!!<</speechnpc>>
\
\
\
<<elseif $npcsp == 5 and $CurOG < 100 and $CurEN >= 5>>\
<<snpcsuck $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Suck it!<</speechnpc>>
\
\
\
<<elseif $npcsp == 6 and $CurOG < 100 and $CurEN >= 5>>\
<<snpcsucked $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>You have a delicious cock.<</speechnpc>>
\
\
\
<<elseif $npcsp == 7 and $CurOG < 100 and $CurEN >= 5>>\
<<snpcfuck $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Fuck me harder!<</speechnpc>>
\
\
\
<<elseif $npcsp == 8 and $CurOG < 100 and $CurEN >= 5>>\
<<snpcanalfuck $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Ohh. You stretching my ass!<</speechnpc>>
\
\
\
<<elseif $npcsp == 9 and $CurOG < 100 and $CurEN >= 5>>\
<<snpcfucked $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Oohhh you are so tight.<</speechnpc>>
\
\
\
<<elseif $npcsp == 10 and $NPCs[$npcnumber].trait is "submissive">>\
<<ssnpccum $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Yeah cum everywhere!<</speechnpc>>
\
\
\
<<elseif $npcsp == 10 and $NPCs[$npcnumber].trait is "dominant">>\
<<sdnpccum $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>You wasn't bad.<</speechnpc>>
\
\
\
<<elseif $CurOG == 100 and $NPCs[$npcnumber].trait is "submissive">>\
<<ssnpccumed $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Yeaahh!<</speechnpc>>
\
\
\
<<elseif $CurOG == 100 and $NPCs[$npcnumber].trait is "dominant">>\
<<sdnpccumed $npcnumber>>
<<speechnpc $npcnumber "$NPCs[$npcnumber].name">>Yeaahh!<</speechnpc>>
<</if>>\
<div align='center' style='color:#f0ffff;'>$NPCs[$npcnumber].name`s Orgasm Meter</div>
<div id="horizontalorgasmbarbkg" class="hzbarbkg">\
<div id="horizontalorgasmbar" class="hzbar">\
</div>\
</div>\
<<script>>$(document).one(':passagerender', function (ev) {
Orgasm(State.variables.CurOG, State.variables.MaxOG, "horizontalorgasmbar", true, ev.content);
});<</script>>
<<if $CurOG < 100 and $CurEN >= 5 and $npcsp < 10>>\
<<button "Kiss her" "NPC Sex">>
<<set $npcsp = 2>>
<<set $tongueskill += 1>>
<<set $skisscounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
\
\
<<button "Lick her" "NPC Sex">>
<<set $npcsp = 3>>
<<set $tongueskill += 1>>
<<set $sasslickcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
\
\
<<if $NPCs[$npcnumber].sexType is "shemale">>\
<<button "Get licked" "NPC Sex">>
<<set $npcsp = 4>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
\
\
<<button "Suck her" "NPC Sex">>
<<set $npcsp = 5>>
<<set $blowjobskill += 1>>
<<set $sgblowjobcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<if $locked is true>>\
Your cock is locked, she can`t suck you.
<<else>>\
<<button "Get sucked" "NPC Sex">>
<<set $npcsp = 6>>
<<set $srblowjobcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<if $locked is true>>\
Your cock is locked, you can`t fuck her.
<<else>>\
<<button "Fuck her" "NPC Sex">>
<<set $npcsp = 7>>
<<set $sexskill += 1>>
<<set $sganalcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<if $NPCs[$npcnumber].sexType isnot "shemale">>\
<<if $locked is true>>\
Your cock is locked, you can`t anal fuck her.
<<else>>\
<<button "Anal fuck her" "NPC Sex">>
<<set $npcsp = 8>>
<<set $sexskill += 1>>
<<set $sganalcounter += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
<</if>>\
\
\
<<if $NPCs[$npcnumber].sexType is "shemale">>\
<<button "Get fucked" "NPC Sex">>
<<set $npcsp = 9>>
<<set $sexskill += 1>>
<<set $analskill += 1>>
<<set $sranalcounter += 1>>
<<set $analsize += 1>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<set $CurOG = ($CurOG + 10).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<</button>>
<</if>>\
\
\
<<elseif $CurOG == 100>>\
<<if $locked is true>>\
You are locked and can`t cum. <<button "Go home and sleep" "Player Sleep">><<set $cumplayskill += 1>><<set $CurOG = 0>><<set $npcsp = 1>><<addhours 1>><</button>>
<<else>>\
<<button "Cum" "NPC Sex">>
<<set $npcsp = 10>>
<<set $scumcounter += 1>>
<<set $noorgasm = 0>>
<<set $cumplayskill += 1>>
<<set $CurOG = 0>>
<<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<set $CurEN = ($CurEN - 5).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<</button>>
<</if>>\
<<elseif $npcsp == 10>>
You excuse yourself and step into the small bathroom and clean yourself up. As she walks you to the front door, you exchange numbers and then a quick kiss and you are on your way home.
<<button "Go home and sleep" "Player Sleep">>
<<set $npcsp = 1>>
<<addhours 1>>
<</button>>
<</if>>\
<</if>>\
<b>Time:</b> <<time24hr>>
<b>Date:</b> <<date>>
<<if $gameDate.getHours() < "6">>\
We have a $weathertype night.
<<elseif $gameDate.getHours() >= "6" and $gameDate.getHours() < "20">>\
We have a $weathertype day.
<<elseif $gameDate.getHours() >= "20">>\
We have a $weathertype night.
<</if>>\
----
<b>Day counter:</b> $daycount
<b>Cash:</b> $money
<b>Credits:</b> $credit
<b>Day without orgasm:</b> $noorgasm
<<if $locked is true and $ht >= 11>>\
<b>Days in chastity:</b> $lockeddays
<</if>>\
----
<<if $gameDate.getHours() >= "6" and $gameDate.getHours() < "20">>\
<<button "Wait 1 hour">><<addhours 1>><<script>>state.display(state.active.title, null, "back")<</script>><</button>>
<</if>>\
----
<<if $intro == 21>>\
<b>Tablet:</b>
<<button "Quests" "Quests">><</button>>
<<button "E-mails" "Emails">><</button>>
<<button "Inventory" "Inventory">><</button>>
<<button "Messages" "Messages">><</button>>
<<button "Contacts" "Contacts">><</button>>
<<button "Stats" "Stats">><</button>>
<<button "Hints, Tips" "Hints, Tips">><</button>>
<</if>>\
/* ----------------- PAPERDOLL WIDGETS ------------------------------ */
/* MALE */
/* NAKED CUM */
<<widget "mpdollcum">>\
<<if $locked is false>>\
<img @src="'content/pdoll/male/cum' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/male/chastitycum.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* NAKED AROUSED */
<<widget "mpdollaroused">>\
<<if $locked is false>>\
<img @src="'content/pdoll/male/aroused' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/male/chastity.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* NAKED NAKED */
<<widget "mpdollnaked">>\
<<if $locked is false>>\
<img @src="'content/pdoll/male/naked' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/male/chastity.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* UNDERWEAR */
<<widget "mpdollunderwear">>\
<<if $punderwear isnot "none">>\
<img @src="'content/pdoll/male/' + $currUnderwear + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $ptrousers isnot "none">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<img @src="'content/pdoll/male/naked.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $CurAR >= 40>>\
<<mpdollaroused>>
<<else>>\
<<mpdollnaked>>
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<</widget>>
/* BRA */
<<widget "mpdollbra">>\
<<if $pbra isnot "none">>\
<img @src="'content/pdoll/male/' + $currBra + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* SOCKS */
<<widget "mpdollsocks">>\
<<if $psocks isnot "none">>\
<img @src="'content/pdoll/male/' + $currSocks + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* SHOES */
<<widget "mpdollshoes">>\
<<if $pshoes isnot "none">>\
<img @src="'content/pdoll/male/' + $currShoes + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* TROUSERS */
<<widget "mpdolltrousers">>\
<<if $ptrousers isnot "none">>\
<img @src="'content/pdoll/male/' + $currTrousers + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* SHIRT */
<<widget "mpdollshirt">>\
<<if $pshirt isnot "none">>\
<img @src="'content/pdoll/male/' + $currShirt + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* JUMPER */
<<widget "mpdolljumper">>\
<<if $pjumper isnot "none">>\
<img @src="'content/pdoll/male/' + $currJumper + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* SHEMALE */
/* NAKED CUM */
<<widget "spdollcum">>\
<<if $locked is false>>\
<img @src="'content/pdoll/shemale/cum' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/shemale/chastitycum.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* NAKED AROUSED */
<<widget "spdollaroused">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<<if $currShoes is "shoes3">>\
<<if $locked is false>>\
<img @src="'content/pdoll/shemale/leglessaroused' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/shemale/leglesschastity.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<<else>>\
<<if $locked is false>>\
<img @src="'content/pdoll/shemale/aroused' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/shemale/chastity.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</if>>\
<<else>>\
<<if $locked is false>>\
<img @src="'content/pdoll/shemale/aroused' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/shemale/chastity.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</if>>\
<</widget>>
/* NAKED NAKED */
<<widget "spdollnaked">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<<if $currShoes is "shoes3">>\
<<if $locked is false>>\
<img @src="'content/pdoll/shemale/leglessnaked' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/shemale/leglesschastity.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<<else>>\
<<if $locked is false>>\
<img @src="'content/pdoll/shemale/naked' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/shemale/chastity.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</if>>\
<<else>>\
<<if $locked is false>>\
<img @src="'content/pdoll/shemale/naked' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/shemale/chastity.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</if>>\
<</widget>>
/* UNDERWEAR */
<<widget "spdollunderwear">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<<if $currShoes is "shoes3">>\
<<if $punderwear isnot "none">>\
<img @src="'content/pdoll/shemale/legless' + $currUnderwear + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $ptrousers isnot "none">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<img @src="'content/pdoll/shemale/leglessnaked.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $CurAR >= 40>>\
<<spdollaroused>>
<<else>>\
<<spdollnaked>>
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<<else>>\
<<if $punderwear isnot "none">>\
<img @src="'content/pdoll/shemale/' + $currUnderwear + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $ptrousers isnot "none">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<img @src="'content/pdoll/shemale/naked.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $CurAR >= 40>>\
<<spdollaroused>>
<<else>>\
<<spdollnaked>>
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<<else>>\
<<if $punderwear isnot "none">>\
<img @src="'content/pdoll/shemale/' + $currUnderwear + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $ptrousers isnot "none">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<img @src="'content/pdoll/shemale/naked.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $CurAR >= 40>>\
<<spdollaroused>>
<<else>>\
<<spdollnaked>>
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<</widget>>
/* BRA */
<<widget "spdollbra">>\
<<if $pbra isnot "none">>\
<img @src="'content/pdoll/shemale/' + $currBra + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* SOCKS */
<<widget "spdollsocks">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<<if $currShoes is "shoes3">>\
<<if $psocks isnot "none">>\
<img @src="'content/pdoll/shemale/legless' + $currSocks + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<<else>>\
<<if $psocks isnot "none">>\
<img @src="'content/pdoll/shemale/' + $currSocks + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</if>>\
<<else>>\
<<if $psocks isnot "none">>\
<img @src="'content/pdoll/shemale/' + $currSocks + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</if>>\
<</widget>>
/* SHOES */
<<widget "spdollshoes">>\
<<if $pshoes isnot "none">>\
<img @src="'content/pdoll/shemale/' + $currShoes + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* TROUSERS */
<<widget "spdolltrousers">>\
<<if $ptrousers isnot "none">>\
<img @src="'content/pdoll/shemale/' + $currTrousers + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* SHIRT */
<<widget "spdollshirt">>\
<<if $pshirt isnot "none">>\
<img @src="'content/pdoll/shemale/' + $currShirt + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* JUMPER */
<<widget "spdolljumper">>\
<<if $pjumper isnot "none">>\
<img @src="'content/pdoll/shemale/' + $currJumper + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* SHEMALE */
/* NAKED CUM */
<<widget "fpdollcum">>\
<<if $locked is false>>\
<img @src="'content/pdoll/female/cum' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/female/chastitycum' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* NAKED AROUSED */
<<widget "fpdollaroused">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<<if $currShoes is "shoes3">>\
<<if $locked is false>>\
<img @src="'content/pdoll/female/leglessaroused' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/female/leglesschastity.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<<else>>\
<<if $locked is false>>\
<img @src="'content/pdoll/female/aroused' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/female/chastity' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</if>>\
<<else>>\
<<if $locked is false>>\
<img @src="'content/pdoll/female/aroused' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/female/chastity' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</if>>\
<</widget>>
/* NAKED NAKED */
<<widget "fpdollnaked">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<<if $currShoes is "shoes3">>\
<<if $locked is false>>\
<img @src="'content/pdoll/female/leglessnaked' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/female/leglesschastity' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<<else>>\
<<if $locked is false>>\
<img @src="'content/pdoll/female/naked' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/female/chastity.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</if>>\
<<else>>\
<<if $locked is false>>\
<img @src="'content/pdoll/female/naked' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<img @src="'content/pdoll/female/chastity' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</if>>\
<</widget>>
/* UNDERWEAR */
<<widget "fpdollunderwear">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<<if $currShoes is "shoes3">>\
<<if $punderwear isnot "none">>\
<img @src="'content/pdoll/female/legless' + $currUnderwear + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $ptrousers isnot "none">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<img @src="'content/pdoll/female/leglessnaked' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $CurAR >= 40>>\
<<fpdollaroused>>
<<else>>\
<<fpdollnaked>>
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<<else>>\
<<if $punderwear isnot "none">>\
<img @src="'content/pdoll/female/' + $currUnderwear + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $ptrousers isnot "none">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<img @src="'content/pdoll/female/naked' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $CurAR >= 40>>\
<<fpdollaroused>>
<<else>>\
<<fpdollnaked>>
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<<else>>\
<<if $punderwear isnot "none">>\
<img @src="'content/pdoll/female/' + $currUnderwear + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $ptrousers isnot "none">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<img @src="'content/pdoll/female/naked' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<<else>>\
<<if $CurAR >= 40>>\
<<fpdollaroused>>
<<else>>\
<<fpdollnaked>>
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<</widget>>
/* BRA */
<<widget "fpdollbra">>\
<<if $pbra isnot "none">>\
<img @src="'content/pdoll/female/' + $currBra + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* SOCKS */
<<widget "fpdollsocks">>\
<<if $viewmode is "Normal" or $viewmode is "Overwear">>\
<<if $currShoes is "shoes3">>\
<<if $psocks isnot "none">>\
<img @src="'content/pdoll/female/legless' + $currSocks + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<<else>>\
<<if $psocks isnot "none">>\
<img @src="'content/pdoll/female/' + $currSocks + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</if>>\
<<else>>\
<<if $psocks isnot "none">>\
<img @src="'content/pdoll/female/' + $currSocks + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</if>>\
<</widget>>
/* SHOES */
<<widget "fpdollshoes">>\
<<if $pshoes isnot "none">>\
<img @src="'content/pdoll/female/' + $currShoes + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* TROUSERS */
<<widget "fpdolltrousers">>\
<<if $ptrousers isnot "none">>\
<img @src="'content/pdoll/female/' + $currTrousers + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* SHIRT */
<<widget "fpdollshirt">>\
<<if $pshirt isnot "none">>\
<img @src="'content/pdoll/female/' + $currShirt + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
/* JUMPER */
<<widget "fpdolljumper">>\
<<if $pjumper isnot "none">>\
<img @src="'content/pdoll/female/' + $currJumper + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
<</if>>\
<</widget>>
<!-- <<image "path" [height [width]]>> draws the image at a path with the specified height and width -->
<<widget "image">>\
<<if $args[2]>>\
<<print '<img src=' + $args[0] + ' height="' + $args[1] + 'px" width="' + $args[2] + 'px">'>>\
<<elseif $args[1]>>\
<<print '<img src=' + $args[0] + ' height="' + $args[1] + 'px">'>>\
<<elseif $args[0]>>\
<<print '<img src=' + $args[0] + ' height="400">'>>\
<</if>>\
<</widget>>
<<widget "printobjects">>\
<<if $args[0]>>\
<<if $inventory.indexOf($args[0]) != -1>>\
<<print '<img src=content/objects/' + $args[0] + '.png' height="100px">'>>\
<</if>>\
<</if>>\
<</widget>>
<!-- <<displayTableBuy "price" "objectName" "locationName">> -->
<<widget displayTableBuy>>\
<<if $args[2]>>\
<<if $credit >= $args[0] && $inventory.indexOf($args[1]) == -1>>\
<<button "Buy" $args[2]>>\
<<set $credit -= $args[0]>>\
<<addToInv $args[1]>>\
<</button>>\
<<elseif $inventory.indexOf($args[1]) != -1>>\
Owned
<<else>>\
Not enough credit
<</if>>\
<</if>>\
<</widget>>
/* ------------------- CLOTHES --------------------------- */
<<widget displayUnderwear>>\
<<if $args[1]>>\
<<if $currUnderwear != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currUnderwear = $args[0]>>\
<<set $punderwear to "male">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currUnderwear = "none">>\
<<set $punderwear to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displayBra>>\
<<if $args[1]>>\
<<if $currBra != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currBra = $args[0]>>\
<<set $pbra to "female">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currBra = "none">>\
<<set $pbra to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displaySocks>>\
<<if $args[1]>>\
<<if $currSocks != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currSocks = $args[0]>>\
<<set $psocks to "male">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currSocks = "none">>\
<<set $psocks to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displayShoes>>\
<<if $args[1]>>\
<<if $currShoes != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currShoes = $args[0]>>\
<<set $pshoes to "male">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currShoes = "none">>\
<<set $pshoes to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displayTrousers>>\
<<if $args[1]>>\
<<if $currTrousers != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currTrousers = $args[0]>>\
<<set $ptrousers to "male">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currTrousers = "none">>\
<<set $ptrousers to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displayShirt>>\
<<if $args[1]>>\
<<if $currShirt != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currShirt = $args[0]>>\
<<set $pshirt to "male">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currShirt = "none">>\
<<set $pshirt to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displayJumper>>\
<<if $args[1]>>\
<<if $currJumper != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currJumper = $args[0]>>\
<<set $pjumper to "male">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currJumper = "none">>\
<<set $pjumper to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
/* ------------------- FEMALE CLOTHES --------------------------- */
<<widget displayUnderwearw>>\
<<if $args[1]>>\
<<if $currUnderwear != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currUnderwear = $args[0]>>\
<<set $punderwear to "female">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currUnderwear = "none">>\
<<set $punderwear to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displayBraw>>\
<<if $args[1]>>\
<<if $currBra != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currBra = $args[0]>>\
<<set $pbra to "female">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currBra = "none">>\
<<set $pbra to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displaySocksw>>\
<<if $args[1]>>\
<<if $currSocks != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currSocks = $args[0]>>\
<<set $psocks to "female">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currSocks = "none">>\
<<set $psocks to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displayShoesw>>\
<<if $args[1]>>\
<<if $currShoes != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currShoes = $args[0]>>\
<<set $pshoes to "female">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currShoes = "none">>\
<<set $pshoes to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displayTrousersw>>\
<<if $args[1]>>\
<<if $currTrousers != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currTrousers = $args[0]>>\
<<set $ptrousers to "female">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currTrousers = "none">>\
<<set $ptrousers to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displayShirtw>>\
<<if $args[1]>>\
<<if $currShirt != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currShirt = $args[0]>>\
<<set $pshirt to "female">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currShirt = "none">>\
<<set $pshirt to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displayJumperw>>\
<<if $args[1]>>\
<<if $currJumper != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currJumper = $args[0]>>\
<<set $pjumper to "female">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currJumper = "none">>\
<<set $pjumper to "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
<<widget displayDressw>>\
<<if $args[1]>>\
<<if $currShirt != $args[0]>>\
<<button "Wear" $args[1]>>\
<<set $currShirt = $args[0]>>\
<<set $currTrousers = $args[0]>>\
<<set $pshirt to "female">>\
<<set $ptrousers to "female">>\
<</button>>\
<<else>>\
<<button "Take it off" $args[1]>>\
<<set $currShirt = "none">>\
<<set $currTrousers = "none">>\
<<set $pshirt to "none">>\
<<set $ptrousers = "none">>\
<</button>>\
<</if>>\
<</if>>\
<</widget>>
/* ---------------------- CLUB TOILET MOVIES ----------------------- */
/* Male male bj */
<<widget "tmmbj">>
<div align='center'><video @src="'content/porn/toilet/male/bj/' + random(1, 12) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* Male shemale bj */
<<widget "tmsbj">>
<div align='center'><video @src="'content/porn/toilet/male/bj/' + random(13, 15) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* Male male fuck */
<<widget "tmmfuck">>
<div align='center'><video @src="'content/porn/toilet/male/fuck/' + random(1, 9) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* Male shemale fuck */
<<widget "tmsfuck">>
<div align='center'><video @src="'content/porn/toilet/male/fuck/' + random(6, 12) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* Male male cum */
<<widget "tmmcum">>
<div align='center'><video @src="'content/porn/toilet/male/cum/' + random(1, 5) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* Male shemale cum */
<<widget "tmscum">>
<div align='center'><video @src="'content/porn/toilet/male/cum/' + random(6, 8) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* Shemale male bj */
<<widget "tsmbj">>
<div align='center'><video @src="'content/porn/toilet/female/bj/' + random(1, 30) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* Female male bj */
<<widget "tfmbj">>
<div align='center'><video @src="'content/porn/toilet/female/bj/' + random(1, 38) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* Shemale Female, male cum */
<<widget "tsmcum">>
<div align='center'><video @src="'content/porn/toilet/female/cum/' + random(1, 11) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* Female female cum */
<<widget "tffcum">>
<div align='center'><video @src="'content/porn/toilet/female/cum/' + random(12, 31) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* Shemale male fuck */
<<widget "tsmfuck">>
<div align='center'><video @src="'content/porn/toilet/female/fuck/' + random(1, 15) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* Female male fuck */
<<widget "tfmfuck">>
<div align='center'><video @src="'content/porn/toilet/female/fuck/' + random(1, 36) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* female female lick */
<<widget "tfflick">>
<div align='center'><video @src="'content/porn/toilet/female/lick/' + random(1, 9) + '.mp4'" autoplay loop></video></div>
<</widget>>
/* ----------------- SKILL NOTIFY ------------------------------ */
<<nobr>>\
<<widget "tongueskill">>
<<set $tongueskill += 1>>
<<notify1>>+1 Tongue skill point<</notify1>>
<</widget>>
<<widget "handskill">>
<<set $handskill += 1>>
<<notify2>>+1 Hand skill point<</notify2>>
<</widget>>
<<widget "blowjobskill">>
<<set $blowjobskill += 1>>
<<notify3>>+1 Blowjob skill point<</notify3>>
<</widget>>
<<widget "sexskill">>
<<set $sexskill += 1>>
<<notify4>>+1 Sex skill point<</notify4>>
<</widget>>
<<widget "cumplayskill">>
<<set $cumplayskill += 1>>
<<notify5>>+1 Cumplay skill point<</notify5>>
<</widget>>
<<widget "willingness">>
<<set $willingness += 1>>
<<notify6>>+1 Willingness point<</notify6>>
<</widget>>
<<widget "willingness5">>
<<set $willingness += 5>>
<<notify7>>+5 Willingness points<</notify7>>
<</widget>>
<<widget "strength">>
<<set $strength += 1>>
<<notify8>>+1 Strength point<</notify8>>
<</widget>>
<<widget "flexibility">>
<<set $flexibility += 1>>
<<notify9>>+1 Flexibility point<</notify9>>
<</widget>>
<<widget "stamina">>
<<set $stamina += 1>>
<<notify10>>+1 Stamina point<</notify10>>
<</widget>>
<<widget "pissplay">>
<<set $pissplayskill += 1>>
<<notify10>>+1 Pissplay skill point<</notify10>>
<</widget>>
<</nobr>>\
/* ----------------- EMAILS ------------------------------ */
/* <<addMail IDnum>> : Adds mail "IDnum" to the beginning of the $mailbox array. */
<<widget "addMail">>
<<set $mailbox.unshift($args[0])>> /* Adds mail to the front of the mailbox. */
<<notify>>You have a new email!<</notify>>
<<audio "mailalert" play>>
<</widget>>
/* <<showMail IDnum>> : Displays mail "IDnum". */
<<nobr>>\
<<widget "showMail">>
<<switch $args[0]>>
<<case 1>>
BONNIE <bonnie@hacklife.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Hello!<br>
<br>
I need a microscope as soon as possible. Bring it to me! After that you have to make the Female Body Serum!<br>
<hr>
<br>
<<case 2>>
BONNIE <bonnie@hacklife.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Hello!<br>
<br>
Try to get some rest, you need it. Now You can research a new serum. Just stay calm. I sent some hypno videos to your computer. You have to start watching them to increase your willingness. Come and see me in my shop!<br>
<hr>
<br>
<<case 3>>
BONNIE <bonnie@hacklife.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Hello!<br>
<br>
The security guy`s name is Peter. He loves to go to club. You can find him there. You have to make yourself very pretty. Nice eyebrows, shaved legs and some sexy clothes from the shop. Once you bring me the Energy Serum, I will give you the cloning device. Then you just need to have sex with him, and after he fell asleep you can clone his bracelet, and that is it. You need at least 50 willingness point to do that.<br>
<hr>
<br>
<<case 4>>
BONNIE <bonnie@hacklife.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Hello!<br>
<br>
The device for the server room will be ready soon. You can collect it on Thursday.<br>
<hr>
<br>
<<case 5>>
BONNIE <bonnie@hacklife.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Hello!<br>
<br>
You can work any time in the gloryhole but sometimes nobody shows up and you just wait there for nothing. The payment will be random.<br>
<hr>
<br>
<<case 6>>
BONNIE <bonnie@hacklife.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Hello!<br>
<br>
I have a good news. I just check the server room schedule. There is a one hour gap at 23:00 on Saturday. This is your chance. Get a male body. Put the uniform on. Make sure the device is in your pocket and it is connected to your bracelet. When you touching your bracelet the device will send the new codes to the system. Good luck!<br>
<hr>
<br>
<<case 7>>
VENUS LUX <venuslux@nemesis.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Dear $fname $lname !<br>
<br>
This is your first warning in relation to your continuous absenteeism. Continued unacceptable behaviour will result in further disciplinary action wich may ultimately result in the termination of your employment. This warning will be placed on your personnel file.<br>
Venus Lux<br>
HR Department<br>
<hr>
<br>
<<case 8>>
VENUS LUX <venuslux@nemesis.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Dear $fname $lname !<br>
<br>
This is your second warning in relation to your continuous absenteeism. Continued unacceptable behaviour will result in further disciplinary action wich may ultimately result in the termination of your employment. This warning will be placed on your personnel file.<br>
Venus Lux<br>
HR Department<br>
<hr>
<br>
<<case 9>>
VENUS LUX <venuslux@nemesis.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Dear $fname $lname !<br>
<br>
This is your last warning in relation to your continuous absenteeism. This warning follows the disciplinary interview held in the HR Office next week any time. It will be placed on your personnel file.<br>
Venus Lux<br>
HR Department<br>
<hr>
<br>
<<case 10>>
DAVE <dave@nemesispcshop.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Dear Customer !<br>
<br>
I hope you are very happy with your spycam. I would like to let you know we have brand new product. It is the new professional spycam. Much smaller version than the old type. If you hide this nobody can find it. Guranteed! Just come in to our shop and you can buy it!<br>
Have a good day!<br>
<hr>
<br>
<<case 11>>
KIMBERLEE <kimberlee@nemesis.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Hi honey!<br>
<br>
I hope you haven’t forgotten about your date. Meet me at the mall around 8pm. I know a really good restaurant. Be sure you come with that super cute shemale body of yours. Kisses!<br>
<hr>
<br>
<<case 12>>
KIMBERLEE <kimberlee@nemesis.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Hey sweetie!<br>
<br>
I had so much fun on our last date. I am looking forward to spending more time with you. Meet me at the mall in your sexy-ass shemale body and let’s make some more wonderful memories together! Dress casual and meet me at the central fountain.<br>
Hugs and kisses<br>
Your sweetheart<br>
<hr>
<br>
<<case 13>>
BONNIE <bonnie@hacklife.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Hey squirt, come see me in the shop when you are available next.<br>
<hr>
<br>
<<case 14>>
BONNIE <bonnie@hacklife.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Exciting news. Come see me ASAP.<br>
<hr>
<br>
<<case 15>>
BONNIE <bonnie@hacklife.com><br>
To: $fname $lname @nemesis.com<br>
<br>
Come and see me. I think we have something.<br>
<hr>
<br>
<<case 16>>
LIANNA <lianna@nemesis.com><br>
To: $fname $lname @nemesis.com<br>
<br>
I can’t wait to see you tomorrow! You had some great ideas on that USB drive. Just in case you forgot it, here’s my address and a little something to whet your appetite.<br>
<img src="content/peoples/lianna/1.jpg"><br>
<hr>
<br>
<</switch>>
<</widget>>
<</nobr>>\
<<widget addenergy>>\
<<if $args[0]>>\
<<set $CurEN = ($CurEN += $args[0]).clamp(0, $MaxEN)>>\
<<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<</if>>\
<</widget>>
<<widget takeenergy>>\
<<if $args[0]>>\
<<set $CurEN = ($CurEN -= $args[0]).clamp(0, $MaxEN)>>\
<<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<</if>>\
<</widget>>
<<widget addarousal>>\
<<if $args[0]>>\
<<set $CurAR = ($CurAR += $args[0]).clamp(0, $MaxAR)>>\
<<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<</if>>\
<</widget>>
<<widget zeroarousal>>\
<<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>>\
<<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<</widget>>/* PALYER VARIABLES */
\
<<set $fname to "">> /* PLAYER FIRST NAME */
<<set $lname to "">> /* PLAYER LAST NAME */
<<set $malename to "">> /* PLAYER MALE BODY NAME */
<<set $femalename to "">> /* PLAYER FEMALE BODY NAME */
<<set $pgender to "male">> /* GENDER */
<<set $pgenital to "penis">> /* GENITAL */
<<set $credit = 1000>> /* CREDIT */
<<set $money = 0>> /* MONEY */
<<set $workdays = 0>> /* WORKDAYS */
<<set $noorgasm = 0>> /* NO ORGASM DAYS COUNTER */
<<set $CurEN = 50>> /* CURRENT ENERGY */
<<set $MaxEN = 100>> /* MAX ENERGY */
<<set $CurAR = 50>> /* CURRENT AROUSAL */
<<set $MaxAR = 100>> /* MAX AROUSAL */
<<set $CurOG = 0>> /* CURRENT ORGASM */
<<set $MaxOG = 100>> /* MAX ORGASM */
/* --------------- BODY ------------------------ */
<<set $pussysize = 0>> /* PUSSY SIZE */
<<set $penissize = 3>> /* COCK SIZE */
<<set $analsize = 0>> /* ANAL SIZE */
<<set $boobsize = 3>> /* BOOBS SIZE */
<<set $facialhair = 0>> /* EYEBROWS */
<<set $bodyhair = 0>> /* BODYHAIR */
<<set $bodywash = 0>> /* BODY WASH COUNTER */
<<set $flexibility = 0>> /* FLEXIBILITY */
<<set $strength = 0>> /* STRENGTH */
<<set $stamina = 0>> /* STAMINA */
<<set $willingness = 0>> /* WILLINGNESS */
/* -------------- INVENTORY ------------- */
<<initInv>>
<<set $gymcard = 0>> /* GYM MEMBERSHIP */
<<set $microscope = 0>> /* MICROSCOPE */
<<set $cloningdevice = 0>> /* CLONING DEVICE */
<<set $razor = 5>> /* RAZOR */
<<set $spycam = 0>> /* SPYCAM */
<<set $superspycam = 0>> /* SUPER SPYCAM */
/* -------------------- EVENTS -------------------------- */
<<set $mgarden = 0>>
<<set $mgarden1 is false>>
<<set $mbedroom = 0>>
<<set $mbedroom1 to false>>
<<set $mlivingroom = 0>>
<<set $mlivingroom1 to false>>
<<set $marianaspycam = 0>>
<<set $chanelspycam = 0>>
<<set $questmaid = 0>>
<<set $chanelroomcleaning to false>>
<<set $maid1 = 0>>
<<set $maid2 = 0>>
<<set $maid3 = 0>>
<<set $maid4 = 0>>
<<set $maid5 = 0>>
<<set $maiduniform = 0>>
<<set $chanelmessage = 0>>
<<set $endingpoint = 0>>
<<set $mendingpoint = 1>>
<<set $fendingpoint = 1>>
<<set $sendingpoint = 1>>
<<set $workwarning = 0>>
<<set $workend to false>>
<<set $voffice = 0>>
<<set $clroom1 to false>>
<<set $sexactions1 to true>>
<<set $sexactions2 to false>>
<<set $sexactions3 to false>>
<<set $gymmmnpc = 0>>
<<set $gymmfnpc = 0>>
<<set $gymmsnpc = 0>>
<<set $gymfmnpc = 0>>
<<set $gymffnpc = 0>>
<<set $gymfsnpc = 0>>
<<set $gymsmnpc = 0>>
<<set $gymsfnpc = 0>>
<<set $gymssnpc = 0>>
<<set $gymffscene = 1>>
<<set $gymmsscene = 1>>
<<set $gymfsscene = 1>>
<<set $natfemkit = 0>>
<<set $natchakit1 = 0>>
<<set $natchakit2 = 0>>
<<set $choffice1 to false>>
<<set $chofficefirst to false>>
<<set $choffice = 0>>
<<set $natfemyoga = 0>>
<<set $natalieyogareplay to false>>
<<set $chanelyogareplay to false>>
<<set $chamalyoga = 0>>
<<set $chanelshower = 1>>
<<set $chanelshowerdaily to false>>
<<set $chanelshowerdaily2 to false>>
<<set $marianashowerdaily to false>>
<<set $marianashower = 1>>
/* -------------------- CLOTHES -------------------------- */
<<set $punderwear to "male">>
<<set $psocks to "male">>
<<set $pshoes to "male">>
<<set $pbra to "none">>
<<set $ptrousers to "male">>
<<set $pshirt to "male">>
<<set $pjumper to "male">>
<<set $currUnderwear to "underwear1">>
<<set $currSocks to "socks1">>
<<set $currShoes to "shoes1">>
<<set $currBra to "none">>
<<set $currTrousers to "trousers1">>
<<set $currShirt to "shirt1">>
<<set $currJumper to "jumper1">>
<<addToInv "underwear1">>
<<addToInv "socks1">>
<<addToInv "shoes1">>
<<addToInv "trousers1">>
<<addToInv "shirt1">>
<<addToInv "jumper1">>
<<set $nakedview to true>>
<<set $underwearview to true>>
<<set $braview to false>>
<<set $socksview to true>>
<<set $normalwearview to true>>
<<set $topwearview to true>>
<<set $viewmode to "Overwear">>
<<set $locked to false>>
/* -------------------- GAME MECHANISM ---------------- */
<<set $dailyswim to false>>
<<set $dailyyoga to false>>
<<set $dailysauna to false>>
<<set $dailygymweight to false>>
<<set $dailygymrun to false>>
<<set $weatherkey to false>> /* WEATHER KEY */
<<set $weatherday = ["sunny", "cloudy", "rainy", "sunny"]>> /* DAYTIME */
<<set $weathernight = ["cloudy", "rainy", "clear sky"]>> /* NIGHTTIME*/
<<set $weathertype to "cloudy">> /* STARTING WEATHER */
<<set $daykey = 1>> /* DAY COUNTER KEY */
<<set $daycount = 0>> /* DAY COUNTER */
<<set $NPCs = []>>
<<initNPCs 5>>
<<set $npcsp = 1>>
/* ---------------- RELATIONSHIP POINTS ------------------ */
<<set $marianarepo = 0>> /* MARIANA RELATIONSHIP POINT */
<<set $chanelrepo = 0>> /* CHANEL RELATIONSHIP POINT */
<<set $natalierepo = 0>> /* NATALIE RELATIONSHIP POINT */
<<set $jordirepo = 0>> /* JORDI RELATIONSHIP POINT */
<<set $bonnierepo = 0>> /* BONNIE RELATIONSHIP POINT */
<<set $venusrepo = 0>> /* VENUS RELATIONSHIP POINT */
<<set $kimberleerepo = 0>> /* KIMBERLEE RELATIONSHIP POINT */
<<set $angelesrepo = 0>> /* LIANNA RELATIONSHIP POINTS */
<<set $liannarepo = 0>> /* LIANNA RELATIONSHIP POINTS */
<<set $venuscum to false>>
/* ----------------- SERUMS ---------------------- */
<<set $ess = 0>> /* ENERGY SERUM STATUS */
<<set $esv = 0>> /* ENERGY SERUM VIAL */
<<set $fbss = 0>> /* FEMALE BODY SERUM STATUS */
<<set $fbsv = 0>> /* FEMALE BODY SERUM VIAL */
<<set $mbss = 0>> /* MALE BODY SERUM STATUS */
<<set $mbsv = 0>> /* MALE BODY SERUM VIAL */
<<set $sbss = 0>> /* SHEMALE BODY SERUM STATUS */
<<set $sbsv = 0>> /* SHEMALE BODY SERUM VIAL */
<<set $pess = 0>> /* PENIS ENLARGEMENT SERUM STATUS */
<<set $pesv = 0>> /* PENIS ENLRAGEMENT SERUM VIAL */
<<set $prss = 0>> /* PENIS REDUCTION SERUM STATUS */
<<set $prsv = 0>> /* PENIS REDUCTION SERUM VIAL */
<<set $bess = 0>> /* BREAST ENCHANCER SERUM STATUS */
<<set $besv = 0>> /* BREAST ENCHANCER SERUM VIAL */
<<set $bdss = 0>> /* BREAST DECREASER SERUM STATUS */
<<set $bdsv = 0>> /* BREAST DECREASER SERUM VIAL */
<<set $stsv = 0>>
<<set $stss = 0>>
/* --------------------- QUESTS -------------------- */
<<set $pcshopfirst to false>> /* PC SHOP FIRST VISIT */
<<set $questmicroscope = 0>> /* QUEST MICROSCOPE */
<<set $questtransformation = 0>> /* QUEST FIRST TRANSFORMATION */
<<set $questsecurityguy = 0>>
<<set $ht = 0>> /* HOME TRANSFORMATION */
<<set $htlast to false>> /* HOME TRANSFORMATION */
<<set $htcumcheck = 0>> /* MARIANA CUM CHECK */
<<set $htlastwarning to false>> /* HT LAST WARNING */
<<set $htpoint = 0>>
<<set $mdcheckup to false>> /* MARIANA LAB DAILY CHECK */
<<set $mpunishment to false>> /* MARIANA NIGHT PUNISHMENT */
<<set $dream1 to true>> /* DREAM 1 */
<<set $kimquest = 0>> /* KIMBERLEE QUEST */
<<set $kimemail1 to false>> /* KIMBERLEE EMAIL 1*/
<<set $kimemail2 to false>> /* KIMBERLEE EMAIL 1*/
<<set $shadyguyfirst to false>> /* SHADY GUY FIRST MEET */
<<set $bdayquest = 0>> /* MARIANA BIRTHDAY QUEST */
<<set $questdaycount = 0>> /* KIM. TRACKING DAY COUNT */
<<set $labside = 0>> /* LAB SIDE QUESTS */
<<set $b1 = 1>>
<<set $b4 = 1>>
<<set $angelesquest = 0>> /* ANGELES QUEST */
<<set $finalquest = 0>>
<<set $dailylianna to false>>
<<set $jorditalk to false>>
<<set $jordidailyplay to false>>
<<set $jordiplayroom = 1>>
<<set $jordimast = 1>>
<<set $jordistrip = 1>>
<<set $parkrapecheck to false>>
<<set $parkrape = 0>>
<<set $shoesstorefetish = 0>>
<<set $toiletsex = 0>>
<<set $sexpoint = 1>>
<<set $natalieshowerdaily to false>>
<<set $nataliespycam = 0>>
<<set $nataliecamcounter = 0>>
/* -------------------- MAILS ------------------------ */
<<set $mailbox = []>> /* MAILBOX */
<<set $mailalert to false>> /* MAIL ALERT */
<<cacheaudio "mailalert" "content/alert.mp3">>
/* -------------------- GALLERY REPLAYS ------------------------ */
<<set $marianagardenreplay to false>>
<<set $marianalivingroomreplay to false>>
<<set $marianabedroomreplay to false>>
<<set $venusworkendingreplay to false>>
<<set $chanelmaidendingreplay to false>>
<<set $jordistripreplay to false>>
/* ------------------- SKILLS --------------------- */
<<set $tongueskill = 0>>
<<set $handskill = 0>>
<<set $blowjobskill = 0>>
<<set $sexskill = 0>>
<<set $cumplayskill = 0>>
<<set $domskill = 0>>
<<set $subskill = 0>>
<<set $pissplayskill = 0>>
<<set $tonguemaxskill = 50>>
<<set $handmaxskill = 50>>
<<set $blowjobmaxskill = 50>>
<<set $sexmaxskill = 50>>
<<set $cumplaymaxskill = 50>>
<<set $dommaxskill = 50>>
<<set $submaxskill = 50>>
<<set $pissplaymaxskill = 50>>
<<set $tonguelvl = 0>>
<<set $handlvl = 0>>
<<set $blowjoblvl = 0>>
<<set $sexlvl = 0>>
<<set $cumplaylvl = 0>>
<<set $domlvl = 0>>
<<set $sublvl = 0>>
<<set $pissplaylvl = 0>>
<<set $tonguemaxlvl = 5>>
<<set $handmaxlvl = 5>>
<<set $blowjobmaxlvl = 5>>
<<set $sexmaxlvl = 5>>
<<set $cumplaymaxlvl = 5>>
<<set $dommaxlvl = 5>>
<<set $submaxlvl = 5>>
<<set $pissplaymaxlvl = 5>>
/* ------------------- COUNTERS -------------------------------- */
/* MALE */
<<set $mcumcounter = 0>> /* CUM */
<<set $mkisscounter = 0>> /* KISS */
<<set $mghjcounter = 0>> /* GIVE HANDJOB */
<<set $mrhjcounter = 0>> /* RECEIVE HANDJOB */
<<set $mpussylickcounter = 0>> /* LICK PUSSY */
<<set $mcocklickcounter = 0>> /* LICK COCK */
<<set $mgblowjobcounter = 0>> /* GIVE BLOWJOB */
<<set $mgdeeptcounter = 0>> /* DEEPTHROAT COCK */
<<set $mrblowjobcounter = 0>> /* RECEIVE BLOWJOB */
<<set $mpussyfuckcounter = 0>> /* FUCK PUSSY */
<<set $mganalcounter = 0>> /* FUCK ANAL */
<<set $mranalcounter = 0>> /* RECEIVE ANAL */
<<set $mcumswallowcounter = 0>> /* SWALLOW CUM */
/* FEMALE */
<<set $fcumcounter = 0>> /* CUM */
<<set $fkisscounter = 0>> /* KISS */
<<set $fghjcounter = 0>> /* GIVE HANDJOB */
<<set $frhjcounter = 0>> /* RECEIVE HANDJOB */
<<set $fgpussylickcounter = 0>> /* LICK PUSSY */
<<set $fcocklickcounter = 0>> /* LICK COCK */
<<set $fgblowjobcounter = 0>> /* GIVE BLOWJOB */
<<set $fgdeeptcounter = 0>> /* DEEPTHROAT COCK */
<<set $frpussylickcounter = 0>> /* RECEIVE PUSSY LICK */
<<set $frpussyfuckcounter = 0>> /* RECEIVE PUSSY FUCK */
<<set $franalcounter = 0>> /* RECEIVE ANAL */
<<set $fstraponcounter = 0>> /* STRAP ON */
<<set $fcumswallowcounter = 0>> /* CUM SWALLOW */
/* SHEMALE */
<<set $scumcounter = 0>> /* CUM */
<<set $skisscounter = 0>> /* KISS */
<<set $sghjcounter = 0>> /* GIVE HANDJOB */
<<set $srhjcounter = 0>> /* RECEIVE HANDJOB */
<<set $spussylickcounter = 0>> /* LICK PUSSY */
<<set $scocklickcounter = 0>> /* LICK COCK */
<<set $sgblowjobcounter = 0>> /* GIVE BLOWJOB */
<<set $sgdeeptcounter = 0>> /* DEEPTHROAT COCK */
<<set $srblowjobcounter = 0>> /* RECEIVE BLOWJOB */
<<set $spussyfuckcounter = 0>> /* FUCK PUSSY */
<<set $sganalcounter = 0>> /* FUCK ANAL */
<<set $sranalcounter = 0>> /* RECEIVE ANAL */
<<set $scumswallowcounter = 0>> /* SWALLOW CUM */
/* GLORYHOLE */
<<set $ghblowjobcounter = 0>> /* GLORYHOLE BLOWJOB */
<<set $ghmoneycounter = 0>> /* GLORYHOLE MONEY */
/* MIX COUNTER */
<<set $creditcounter = 0>> /* CREDIT */
<<set $moneycounter = 0>> /* MONEY */
<<set $saunacounter = 0>> /* SAUNA */
<<set $swimmingcounter = 0>> /* SWIMMING */
<<set $yogacounter = 0>> /* YOGA */
<<set $gymweightcounter = 0>>
<<set $gymruncounter = 0>>
/* PORN */
<<set $fmascounter = 0>> /* FEMALE MASTURBATION */
<<set $mmascounter = 0>> /* MALE MASTURBATION */
<<set $blowjobcounter = 0>> /* BLOWJOB */
<<set $toyscounter = 0>> /* TOYS */
<<set $hccounter = 0>> /* HC */
<<set $lesbiancounter = 0>> /* LESBIAN */
<<set $gaycounter = 0>> /* GAY */
<<set $sissycounter = 0>> /* SISSY */
<<set $shemalecounter = 0>> /* SHEMALE */
<<set $bdsmcounter = 0>> /* BDSM */
<<set $hypnocounter = 0>> /* HYPNO */
<<set $marianacamcounter = 0>> /* MARIANA CAM COUNTER */
<<set $chanelcamcounter = 0>> /* CHANEL CAM COUNTER */
/* TOYS */
<<set $dildo1 = 0>> /* SMALL DILDO */
<<set $dildo2 = 0>>
<<set $dildo3 = 0>>
<<set $dildo4 = 0>>
<<set $dildo5 = 0>>
<<set $dildo6 = 0>>
<<set $dildo7 = 0>>
<<set $buttplug1 = 0>>
<<set $buttplug2 = 0>>
<<set $buttplug3 = 0>>
<<set $buttplug4 = 0>>
<<set $buttplug5 = 0>>
<<set $buttplug6 = 0>>
<<set $strapon1 = 0>>
<<set $vibrator1 = 0>>
<<set $vibrator2 = 0>>
<<set $vibrator3 = 0>>
<<set $vibrator4 = 0>>
<<set $vibrator5 = 0>>
<<set $toy1 = 0>>
<<set $toy2 = 0>>
<<set $toy3 = 0>>
<<set $toy4 = 0>>
<<set $toy5 = 0>>
<<set $toy6 = 0>>
<<set $toy7 = 0>>
<<set $toy8 = 0>>
/* METERS */
<<newmeter '$tonguebar' 0>>
<<colors '#2ECC40' '#2ECC40'>>
<<label '$tongueskill' 'black' center>>
<<animation false>>
<</newmeter>>
<<newmeter '$handbar' 0>>
<<colors '#2ECC40' '#2ECC40'>>
<<label '$handskill' 'black' center>>
<<animation false>>
<</newmeter>>
<<newmeter '$blowjobbar' 0>>
<<colors '#2ECC40' '#2ECC40'>>
<<label '$blowjobskill' 'black' center>>
<<animation false>>
<</newmeter>>
<<newmeter '$sexbar' 0>>
<<colors '#2ECC40' '#2ECC40'>>
<<label '$sexskill' 'black' center>>
<<animation false>>
<</newmeter>>
<<newmeter '$cumplaybar' 0>>
<<colors '#2ECC40' '#2ECC40'>>
<<label '$cumplayskill' 'black' center>>
<<animation false>>
<</newmeter>>
<<newmeter '$dombar' 0>>
<<colors '#2ECC40' '#2ECC40'>>
<<label '$domskill' 'black' center>>
<<animation false>>
<</newmeter>>
<<newmeter '$subbar' 0>>
<<colors '#2ECC40' '#2ECC40'>>
<<label '$subskill' 'black' center>>
<<animation false>>
<</newmeter>>
<<newmeter '$pissplaybar' 0>>
<<colors '#2ECC40' '#2ECC40'>>
<<label '$pissplayskill' 'black' center>>
<<animation false>>
<</newmeter>>
<<set $sandbox to false>>
<<if $questtracking >= 5 and $questtracking < 10>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/male/security.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<elseif $ht >= 12 and $ht <= 20>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/female/naked3.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<elseif $pdollsex is true>>\
<<if $pgender is "male">>\
<<if $locked is true>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/male/chastity.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<else>>\
<<if $CurAR < 40>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/male/naked' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<else>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/male/aroused' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<</if>>\
<</if>>\
<<elseif $pgender is "shemale">>\
<<if $locked is true>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/shemale/chastity.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<else>>\
<<if $CurAR < 40>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/shemale/naked' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<else>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/shemale/aroused' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<</if>>\
<</if>>\
<<else>>\
<<if $locked is true>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/female/chastity' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<else>>\
<<if $CurAR < 40>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/female/naked' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<else>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/female/aroused' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<</if>>\
<</if>>\
<</if>>\
<<elseif $pdollcum is true>>\
<<if $pgender is "male">>\
<<if $locked is true>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/male/chastitycum.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<else>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/male/cum' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<</if>>\
<<elseif $pgender is "shemale">>\
<<if $locked is true>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/shemale/chastitycum.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<else>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/shemale/cum' + $penissize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<</if>>\
<<else>>\
<<if $locked is true>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/female/chastitycum' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<else>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/female/cum' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<</if>>\
<</if>>\
<<elseif $pdollmaid is true>>\
<<if $pgender is "male">>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/male/maid.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<elseif $pgender is "shemale">>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/shemale/maid.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<<else>>\
<div style="position: relative; width: 100%;">\
<img @src="'content/pdoll/female/maid' + $boobsize + '.png'" style="position: absolute; width: 100%;left: 0; top: 0;">
</div>\
<</if>>\
<<elseif $pgender is "male">>\
<div id="sidebarbuttons">\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:25%"></th>
<th style="width:25%"></th>
<th style="width:25%"></th>
<th style="width:25%"></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<button "Naked">>\
<<replace "#paperdoll">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<set $braview to false>>\
<<set $socksview to false>>\
<<set $normalwearview to false>>\
<<set $topwearview to false>>\
<<set $viewmode to "Naked">>\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" and $ptrousers is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<mpdollaroused>>
<<else>>\
<<mpdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<mpdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<mpdollbra>>
<</if>>\
<<if $socksview is true>>\
<<mpdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<mpdollshoes>>
<<mpdolltrousers>>
<<mpdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<mpdolljumper>>
<</if>>\
</div>\
<</replace>>\
<</button>>\
</td>\
<td>\
<<button "Under">>\
<<replace "#paperdoll">>\
<<set $viewmode to "Underwear">>\
<<if $punderwear is "none">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to false>>\
<<set $topwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to false>>\
<<set $topwearview to false>>\
<</if>>\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<mpdollaroused>>
<<else>>\
<<mpdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<mpdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<mpdollbra>>
<</if>>\
<<if $socksview is true>>\
<<mpdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<mpdollshoes>>
<<mpdolltrousers>>
<<mpdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<mpdolljumper>>
<</if>>\
</div>\
<</replace>>\
<</button>>\
</td>\
<td>\
<<button "Normal">>\
<<replace "#paperdoll">>\
<<set $viewmode to "Normal">>\
<<if $punderwear is "none" and $ptrousers is "none">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to true>>\
<<set $topwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to true>>\
<<set $topwearview to false>>\
<</if>>\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" and $ptrousers is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<mpdollaroused>>
<<else>>\
<<mpdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<mpdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<mpdollbra>>
<</if>>\
<<if $socksview is true>>\
<<mpdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<mpdollshoes>>
<<mpdolltrousers>>
<<mpdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<mpdolljumper>>
<</if>>\
</div>\
<</replace>>\
<</button>>\
</td>\
<td>\
<<button "Over">>\
<<replace "#paperdoll">>\
<<set $viewmode to "Overwear">>\
<<if $punderwear is "none" and $ptrousers is "none">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to true>>\
<<set $topwearview to true>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to true>>\
<<set $topwearview to true>>\
<</if>>\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" and $ptrousers is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<mpdollaroused>>
<<else>>\
<<mpdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<mpdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<mpdollbra>>
<</if>>\
<<if $socksview is true>>\
<<mpdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<mpdollshoes>>
<<mpdolltrousers>>
<<mpdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<mpdolljumper>>
<</if>>\
</div>\
<</replace>>\
<</button>>\
</td>\
</tr>\
</tbody>\
</table>\
</div>\
<div id="paperdoll">\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" and $ptrousers is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<mpdollaroused>>
<<else>>\
<<mpdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<mpdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<mpdollbra>>
<</if>>\
<<if $socksview is true>>\
<<mpdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<mpdollshoes>>
<<mpdolltrousers>>
<<mpdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<mpdolljumper>>
<</if>>\
</div>\
</div>\
\
\
\
\
\
<<elseif $pgender is "shemale">>\
<div id="sidebarbuttons">\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:25%"></th>
<th style="width:25%"></th>
<th style="width:25%"></th>
<th style="width:25%"></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<button "Naked">>\
<<replace "#paperdoll">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<set $braview to false>>\
<<set $socksview to false>>\
<<set $normalwearview to false>>\
<<set $topwearview to false>>\
<<set $viewmode to "Naked">>\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" and $ptrousers is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<spdollaroused>>
<<else>>\
<<spdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<spdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<spdollbra>>
<</if>>\
<<if $socksview is true>>\
<<spdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<spdollshoes>>
<<spdolltrousers>>
<<spdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<spdolljumper>>
<</if>>\
</div>\
<</replace>>\
<</button>>\
</td>\
<td>\
<<button "Under">>\
<<replace "#paperdoll">>\
<<set $viewmode to "Underwear">>\
<<if $punderwear is "none">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to false>>\
<<set $topwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to false>>\
<<set $topwearview to false>>\
<</if>>\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<spdollaroused>>
<<else>>\
<<spdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<spdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<spdollbra>>
<</if>>\
<<if $socksview is true>>\
<<spdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<spdollshoes>>
<<spdolltrousers>>
<<spdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<spdolljumper>>
<</if>>\
</div>\
<</replace>>\
<</button>>\
</td>\
<td>\
<<button "Normal">>\
<<replace "#paperdoll">>\
<<set $viewmode to "Normal">>\
<<if $punderwear is "none" and $ptrousers is "none">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to true>>\
<<set $topwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to true>>\
<<set $topwearview to false>>\
<</if>>\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" and $ptrousers is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<spdollaroused>>
<<else>>\
<<spdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<spdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<spdollbra>>
<</if>>\
<<if $socksview is true>>\
<<spdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<spdollshoes>>
<<spdolltrousers>>
<<spdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<spdolljumper>>
<</if>>\
</div>\
<</replace>>\
<</button>>\
</td>\
<td>\
<<button "Over">>\
<<replace "#paperdoll">>\
<<set $viewmode to "Overwear">>\
<<if $punderwear is "none" and $ptrousers is "none">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to true>>\
<<set $topwearview to true>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to true>>\
<<set $topwearview to true>>\
<</if>>\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" and $ptrousers is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<spdollaroused>>
<<else>>\
<<spdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<spdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<spdollbra>>
<</if>>\
<<if $socksview is true>>\
<<spdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<spdollshoes>>
<<spdolltrousers>>
<<spdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<spdolljumper>>
<</if>>\
</div>\
<</replace>>\
<</button>>\
</td>\
</tr>\
</tbody>\
</table>\
</div>\
<div id="paperdoll">\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" and $ptrousers is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<spdollaroused>>
<<else>>\
<<spdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<spdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<spdollbra>>
<</if>>\
<<if $socksview is true>>\
<<spdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<spdollshoes>>
<<spdolltrousers>>
<<spdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<spdolljumper>>
<</if>>\
</div>\
</div>\
\
\
\
\
\
<<elseif $pgender is "female">>\
<div id="sidebarbuttons">\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:25%"></th>
<th style="width:25%"></th>
<th style="width:25%"></th>
<th style="width:25%"></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<button "Naked">>\
<<replace "#paperdoll">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<set $braview to false>>\
<<set $socksview to false>>\
<<set $normalwearview to false>>\
<<set $topwearview to false>>\
<<set $viewmode to "Naked">>\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" and $ptrousers is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<fpdollaroused>>
<<else>>\
<<fpdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<fpdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<fpdollbra>>
<</if>>\
<<if $socksview is true>>\
<<fpdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<fpdollshoes>>
<<fpdolltrousers>>
<<fpdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<fpdolljumper>>
<</if>>\
</div>\
<</replace>>\
<</button>>\
</td>\
<td>\
<<button "Under">>\
<<replace "#paperdoll">>\
<<set $viewmode to "Underwear">>\
<<if $punderwear is "none">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to false>>\
<<set $topwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to false>>\
<<set $topwearview to false>>\
<</if>>\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<fpdollaroused>>
<<else>>\
<<fpdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<fpdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<fpdollbra>>
<</if>>\
<<if $socksview is true>>\
<<fpdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<fpdollshoes>>
<<fpdolltrousers>>
<<fpdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<fpdolljumper>>
<</if>>\
</div>\
<</replace>>\
<</button>>\
</td>\
<td>\
<<button "Normal">>\
<<replace "#paperdoll">>\
<<set $viewmode to "Normal">>\
<<if $punderwear is "none" and $ptrousers is "none">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to true>>\
<<set $topwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to true>>\
<<set $topwearview to false>>\
<</if>>\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" and $ptrousers is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<fpdollaroused>>
<<else>>\
<<fpdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<fpdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<fpdollbra>>
<</if>>\
<<if $socksview is true>>\
<<fpdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<fpdollshoes>>
<<fpdolltrousers>>
<<fpdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<fpdolljumper>>
<</if>>\
</div>\
<</replace>>\
<</button>>\
</td>\
<td>\
<<button "Over">>\
<<replace "#paperdoll">>\
<<set $viewmode to "Overwear">>\
<<if $punderwear is "none" and $ptrousers is "none">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to true>>\
<<set $topwearview to true>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<<set $braview to true>>\
<<set $socksview to true>>\
<<set $normalwearview to true>>\
<<set $topwearview to true>>\
<</if>>\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" and $ptrousers is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<fpdollaroused>>
<<else>>\
<<fpdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<fpdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<fpdollbra>>
<</if>>\
<<if $socksview is true>>\
<<fpdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<fpdollshoes>>
<<fpdolltrousers>>
<<fpdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<fpdolljumper>>
<</if>>\
</div>\
<</replace>>\
<</button>>\
</td>\
</tr>\
</tbody>\
</table>\
</div>\
<div id="paperdoll">\
<div align='center'>\
<b>View mode: $viewmode </b>
</div>\
<div style="position: relative; width: 100%;">\
<<if $punderwear is "none" and $ptrousers is "none" or $viewmode is "Naked">>\
<<set $nakedview to true>>\
<<set $underwearview to false>>\
<<else>>\
<<set $nakedview to false>>\
<<set $underwearview to true>>\
<</if>>\
<<if $nakedview is true>>\
<<if $CurAR >= 40>>\
<<fpdollaroused>>
<<else>>\
<<fpdollnaked>>
<</if>>\
<</if>>\
<<if $underwearview is true>>\
<<fpdollunderwear>>
<</if>>\
<<if $braview is true>>\
<<fpdollbra>>
<</if>>\
<<if $socksview is true>>\
<<fpdollsocks>>
<</if>>\
<<if $normalwearview is true>>\
<<fpdollshoes>>
<<fpdolltrousers>>
<<fpdollshirt>>
<</if>>\
<<if $topwearview is true>>\
<<fpdolljumper>>
<</if>>\
</div>\
</div>\
<</if>>\<<if $intro == 1>>\
<img src="content/location/intro_family.jpg" style="max-width: 50%;">
\
<div align='center'>\
There is a quote from the actress Drew Barrymore that you have found to be very true in your life. “Life is very interesting.. in the end, some of your greatest pains, become your greatest strengths."
Your life started very well. You are the only child of two very loving parents. You sometimes wonder how life would have been different if you had had siblings but really, it is the only life you have known so it is hard to miss what you don’t have. Your parents treated you very well and despite both being very busy with work, they spent as much time with you as they could. They worked for a prestigious private laboratory and they loved their job. They instilled in you a natural curiosity for the world around you and how it worked. They homeschooled you and they assured you that you were a gifted pupil. This had the unfortunate side effect of making you a bit socially awkward as you mostly only interacted with your parents and your grandmother when they needed someone to watch you.
And then the unthinkable happened. It seemed so amazing. Your parents came home so excited about something that had happened at work. They couldn’t talk about it of course but you were used to it at this point. They took you to dinner at a fancy restaurant to celebrate. When you got home, you packed your bags for another stay with your grandmother so they could travel to the company headquarters.
Staying with your grandmother was always rather tedious as she had no idea what to do with you. Your parents would usually leave instructions on what you should be reading and any assignments for school that needed to be worked on. However as your parents' trip was so unexpected, you didn’t have any of that. So you found yourself doing a lot of reading. Finally, the day of their trip home had come and you had finished all your books. Your grandmother allowed you to watch television as she had nothing else for you to do.
</div>\
<<button "Continue" "Intro">><<set $intro = 2>><</button>>
\
\
\
\
\
<<elseif $intro == 2>>\
<img src="content/location/intro_sad.jpg" style="max-width: 50%;">
\
<div align='center'>\
You were sitting there in front of the television when you heard the knock on the door. Thinking it was your parents, you jump up and run to the door to open it. You find yourself looking up at an older girl with a peculiar expression on her face. Your grandmother comes up behind you and greets the girl. You go back to the television to let them talk. Just a minute or so later, you hear your grandmother make a strange noise and you look over to see her leaning against the door jam sobbing. You get to your knees but you are not sure what to do. She closes the door softly and turns to you with tears running down her cheek. You ask her what happened but she just softly whispers to go to your room.
Feeling very confused and scared, you obey. You take your teddy bear from the top of your packed bag and hug it tight as you sit on the bed. After a few minutes, your grandmother walks in looking a bit more composed.
</div>\
<<speech "Random" "Grandmother">>Sweatheart, that has been an accident. Your parents won’t be coming to pick you up.<</speech>>
<div align='center'>\
She swallows hard and you can see that she is about to start crying again and she continues in a strained whisper.
</div>\
<<speech "Random" "Grandmother">>There was an accident on the way home from the airport. Your parents are gone.<</speech>>
<div align='center'>\
Your whole world crumbled that day. You felt like you were falling down a bottomless hole as the world started spinning.
</div>\
<<button "Continue" "Intro">><<set $intro = 3>><</button>>
\
\
\
\
\
<<elseif $intro == 3>>\
<img src="content/location/intro_mom.jpg" style="max-width: 30%;">
\
<div align='center'>\
You stayed with your grandmother from then on. You began to attend public school but you never really fit in there. You were way ahead of everyone in your classes and the other students resented you for it. You eventually made a few friends but they were more like acquaintances that were happy to get your help with school than what others would call friends.
As you got close to graduating from High School, your grandmother’s health had begun to deteriorate. You were offered scholarships to prestigious schools but you turned them down so you could stay close to her and care for her in her time of need. You took a job in your town to help pay for the medical bills.
</div>\
<<button "Continue" "Intro">><<set $intro = 4>><</button>>
\
\
\
\
\
<<elseif $intro == 4>>\
<img src="content/location/intro_garage.jpg" style="max-width: 50%;">
\
<div align='center'>\
While your grandmother was less mobile, you decided it was time to clear the clutter around the house and have a garage sale. While rummaging around collecting items, you found your childhood teddy bear wedged under an old kitchen mixer. You tug at it to pull it free and it tears at the seam. You sit down on the ground and begin to cry as the loss of your teddy bear brings back memories of your parents' death.
As you inspect the damage of the bear, you notice something unexpected. There is a USB thumb drive tucked into the fuzz of the bear inside the seam. You sniffle back your tears and pick out the drive and plug it into your laptop. Just as you had thought, the drive belonged to your parents. It contained what looked to be the complete files and notes on the project they had been working on around the time of their death.
</div>\
<<button "Continue" "Intro">><<set $intro = 5>><</button>>
\
\
\
\
\
<<elseif $intro == 5>>\
<img src="content/location/intro_pendrive.jpg" style="max-width: 50%;">
\
<div align='center'>\
You spend the next several weeks digging through the notes trying to make sense of it all. It is nothing short of astounding. And that might be an understatement. Essentially, it was about cellular regeneration on an extreme level. From their tests, they were able to achieve regeneration at x10 normal rates. They had found that it could make the test subjects faster, stronger and even increased their mental functions. And even more astounding than that, they had even been able to alter chromosomes causing a sex change in the test subjects.
You also found that your parents had been documenting some of the alarming breaches in safety protocols and even illegal activities being performed in the lab. They were gathering evidence it seems to try to hold the company accountable for some of the inexcusable activities being carried out under their direction. There were dates and full names of witnesses and infractions. It is all there on the drive. There is one encrypted file with your name in it that you were unable to access which causes you no end of frustration trying to decrypt. It looks like they were working with someone else to bring all this information to light. There is correspondence with someone that they trusted this information with named Bonnie that promised to help them while keeping their involvement anonymous.
Your parents’ “accident” was looking more and more suspect. You decided to look up Bonnie and see if she had any more damning information. You did some digging on the internet and found that she ran a small computer store and you saw some clues that made you suspect that she might be a skilled computer hacker. You were about to write her an email when you began to have second thoughts about the message being tracked. You have to find another way to contact her that wouldn’t be traced! That will be tricky as she lives so far away.
The emotions in your stomach continue to churn and your anger begins to boil over. You swear in your wrath that you will find justice for your lost parents and retribution for the company that stole them from you: the ominously named company Nemisis Corp.
</div>\
<<button "Continue" "Intro">><<set $intro = 6>><</button>>
\
\
\
\
\
<<elseif $intro == 6>>\
<img src="content/location/intro_graduation.jpg" style="max-width: 50%;">
\
<div align='center'>\
Your grandmother’s fading health doesn’t hold out much longer. Less than a year later, she passes gently in her sleep. The week after her funeral, you enrol in a school well known for its biotech degrees. You breeze through your classes like the other students are standing still. You are respected by fellow students and even the faculty. You earn your undergraduate in just 18 months graduating cum laude in your class. You enrol at another school’s PhD program planning to continue your parent’s research when the unexpected happens.
As you are walking back to your flat, a man in a dark suit steps out of a car to greet you and hands you an envelope. You begin to ask him a question but he steps back into the car and drives away. Back in your flat, you open the envelope and read the letter inside. It is from Doctor Mariana Cordoba who runs a lab for Nemesis Corp. Looking up more about her, you can see that she specializes in the same field as your parents. She says that your achievements at the school have been noticed and they are offering you a job.
Your first reaction is to wad the letter up and burn it but once you calm down, you see this as an opportunity to work against them from the inside. What’s more, the lab is located in the same town that your parent’s collaborator Bonnie runs her shop. This will be the perfect opportunity to contact her as well. The job offer itself is very generous. In addition to a generous wage, they are also offering to cover your living arrangements.
</div>\
<<button "Continue" "Intro">><<set $intro = 7>><</button>>
\
\
\
\
\
<<elseif $intro == 7>>\
<img src="content/location/jet.jpg" style="max-width: 50%;">
\
<div align='center'>\
You reach out to Dr. Cordoba’s assistant using the included contact details and accept the offer. You withdraw from school and less than a week later, you find yourself on a private jet being flown to your new job.
</div>\
<<button "Continue" "Intro">><<set $intro = 8>><</button>>
\
\
\
\
\
<<elseif $intro == 8>>\
<img src="content/location/rr1.jpg" style="max-width: 50%;">
\
<div align='center'>\
The flight goes remarkably fast and when you land, you find a Rolls-Royce limousine there to escort you the rest of the way. The driver informs you that the drive will be about two hours so you settle back and enjoy watching the view out your window. The drive to the town is very lovely with views of rugged mountains and forested hills.
As you near the town, the car is stopped at a security checkpoint. Your ID is checked and verified and then the guard asks to see your wrist. He places a metallic bracelet on your wrist and it locks into place with a quiet snap. He informs you that all Nemesis Corp employees wear one at all times. It acts as your identification in town and can also be used to make transactions. A starting balance of 1000 credits has been applied to your account and your salary will be automatically added to your balance.
You have a very uneasy feeling begin to settle in as you drive away from the checkpoint. This might be a lot trickier than you expected.
</div>\
<<button "Continue" "Intro">><<set $intro = 9>><</button>>
\
\
\
\
\
<<elseif $intro == 9>>\
<img src="content/map.jpg" style="max-width: 70%;">
\
<div align='center'>\
The car rounds a bend on the forested road and you see a large sign welcoming you to your new home. It reads in large bold letters, “Welcome to Futaland” with a smaller subscript “a Nemesis Corp. Operation”.
Futaland? Was the founder’s last name Futa? That would be an unusual name. You continue to ponder on the name’s origin wondering if it has something to do with the Futa river in Chile or the Futa mountain pass between Florence and Bologna in Italy. It continues to nag at you in the back of your mind as the drive continues. You drive through the town passing quaint little shops and houses. You see a very nice school as well as a very modern-looking hospital. You notice with interest that there is a lovely park as well that you are excited to explore. The town looks remarkably large for a place that is so remote.
</div>\
<<button "Continue" "Intro">><<set $intro = 10>><</button>>
\
\
\
\
\
<<elseif $intro == 10>>\
<img src="content/location/house_day.jpg" style="max-width: 50%;">
\
<div align='center'>\
You finally pull into a long estate driveway and arrive in front of a gorgeous mansion. It is massive and has extensive grounds with meticulously manicured trees and hedges. This can’t be where you are staying.
</div>\
<<button "Continue" "Intro">><<set $intro = 11>><</button>>
\
\
\
\
\
<<elseif $intro == 11>>\
<img src="content/peoples/maid/profile_full.jpg" style="max-width: 30%;">
\
<div align='center'>\
A girl in maid livery approaches the car as the chauffeur opens the door for you.
</div>\
<<speech "Maid" "Natalie">>Welcome, Mister $lname. We have been eagerly expecting you. My name is Natalie and I’m the maid of the house. Please, follow me inside.<</speech>>
<div align='center'>\
You go to pick up your luggage but she politely insists on carrying it for you as she enters the house. You can’t help but notice that her ass is rather well-shaped even if it is a bit on the small side as she walks in front of you causing her skirt to swish most appealingly as she pulling your luggage.
</div>\
<<button "Follow her" "Intro">><<set $intro = 12>><</button>>
\
\
\
\
\
<<elseif $intro == 12>>\
<img src="content/location/hallway_down.jpg" style="max-width: 50%;">
\
<div align='center'>\
As you enter the house, the magnificence of it sinks in as the tastefully furnished hallway speaks to the wealth of the owner. Your confusion mounts as you are sure there must be some mistake as there is no way that you could afford to live here even with the generous salary that was offered. Of course, they did say the living accommodations were provided. But this is way beyond anything that could be expected. You realize with all your gawking that you have fallen behind the maid and rush to catch up with her as she is just about to the top of the very wide stairs leading to the second floor.
</div>\
<<button "Follow her" "Intro">><<set $intro = 13>><</button>>
\
\
\
\
\
<<elseif $intro == 13>>\
<img src="content/location/bedroom1.jpg" style="max-width: 50%;">
\
<div align='center'>\
You manage to catch up with Natalie just as she opens the door to a room and pushes your luggage inside. You step in to see a tastefully appointed bedroom suite fully furnished with a kingsized bed, a walk-in closet, an attached full-sized bathroom and large windows overlooking the beautiful landscape outside.
Your mouth is hanging open a bit and look at Natalie in shock. You are about to explain to her that there must be a mistake when Natalie cuts you off.
</div>\
<<speech "Maid" "Natalie">>Miss Mariana and her family will be dining soon and you are invited to join them. Feel free to freshen up and then come down to the dining hall on the ground floor.<</speech>>
<div align='center'>\
With that, she closes the door behind her as she exits. Miss Mariana? Mariana Cordoba? Are you living with your boss? That would seem most unusual but as you look around, you realize that you couldn’t ask for better accommodations. They certainly are not being stingy with you. You sit down on the bed and take it all in for a moment. Why not give this a try and see if it works? You can always request different more modest accommodations if it becomes uncomfortable. You take a few minutes and freshen up in the bathroom and then head downstairs to meet your new boss and her family.
</div>\
<<button "Go down to the dining room" "Intro">><<set $intro = 14>><<addhours 1>><</button>>
\
\
\
\
\
<<elseif $intro == 14>>\
<img src="content/location/dining_room.jpg" style="max-width: 60%;">
\
<div align='center'>\
Walking down the stairs you begin to notice a delicious aroma and follow it to the dining hall where everyone is already seated around the table. As you step into the room, all eyes turn towards you. A stately woman seated at the head of the table gracefully rises from her chair greeting you with a warm smile.
</div>\
<img src="content/peoples/mariana/dining_table.jpg" style="max-width: 60%;">
\
<<speech "Mariana">>Welcome Mister $lname, It is so nice to finally meet you! We are glad to have you join us. I’m Doctor Mariana Cordoba but here in my home, please call me Mariana. And let me introduce you to my two children. This is my daughter Chanel and this, of course, is my son Jordi.<</speech>>
\
<img src="content/peoples/chanel/cdining.jpg" style="max-width: 100%;">
\
<<speech "Chanel">>Hello Mister $lname, It is nice to meet you. It will be so nice to have a fresh face around the house. Please tell me you don’t spend all your time playing video games like Jordi here.<</speech>>
<<speech "Mariana">>Chanel… please be civil!<</speech>>
<<speech "Mariana">>My apologies Mister $lname. Jordi, would you please say hello to my newest research associate?<</speech>>
\
<img src="content/peoples/jordi/jdining.jpg" style="max-width: 100%;">
\
<<speech "Jordi">>Yeah, uh... hi Mister $lname.<</speech>>
<<speech "player" "$fname">>Please, everyone just call me $fname. I’m not much for formalities. Miss Cordo… uh, Mariana, the food smells delicious. You must be an amazing cook!<</speech>>
<<speech "Mariana">>I can’t take any credit, unfortunately. While I do know my way around a kitchen, I’m far too busy these days to spend a lot of time there. This meal has been prepared by our maid Natalie. She is a culinary genius. She will be glad to assist you with anything that you may need around the house as well. Please direct any such questions to her.<</speech>>
<div align='center'>\
Mariana invites you to sit and everyone begins to dish up their food. The smell of the morsels was not in any way misleading. The flavour of the food is all exquisite and you are happy to observe that it appears to be rather healthy as well. Your initial concern for your waistline seems to be unfounded. You are slow to open up to the conversation feeling a bit shy and more than a little intimidated by your boss. They all seem to be genuinely friendly and approachable with the possible exception of Jordi who seems pretty quiet keeping to himself. The time quickly flies by. Finally, Mariana stands as she finishes wiping her rather succulent lips with a napkin.
</div>\
<<speech "Mariana">>Oh $fname, you must be exhausted after a long day of travel. We won’t detain you any further. We can discuss any items of business tomorrow. Please feel free to unwind and get a good night’s rest. Tomorrow will be a big day.<</speech>>
<<speech "player" "$fname">>That is very kind Mariana. I am a bit weary. It was so nice to meet you all. Have a good night everyone.<</speech>>
<<speech "Chanel">>Good night $fname!<</speech>>
<<speech "Jordi">>Yeah, night!<</speech>>
\
<<button "Go back to your room" "Intro">><<set $intro = 15>><</button>>
\
\
\
\
\
<<elseif $intro == 15>>\
<img src="content/location/bedroom1.jpg" style="max-width: 50%;">
\
<div align='center'>\
You make your way slowly back to your room feeling especially tired now that you have eaten. You finish unpacking your bags and settle in for the night.
</div>\
<<button "Go to sleep" "Intro">><<set $intro = 16>><<addhours 11>><</button>>
\
\
\
\
\
<<elseif $intro == 16>>\
<img src="content/location/bedroom1.jpg" style="max-width: 50%;">
\
<div align='center'>\
You wake up slowly in the morning having rested especially well in what must be the most comfortable bed you have ever slept in. The light streams in through the windows and you rub your eyes wiping the crust out of them. You feel really good and full of energy. You take a slow shower and put on your clothes before walking downstairs to look for breakfast.
</div>\
<<addenergy 100>>\
<<button "Go to dining room" "Intro">><<set $intro = 17>><<addhours 1>><</button>>
\
\
\
\
\
<<elseif $intro == 17>>\
<img src="content/location/dining_room.jpg" style="max-width: 60%;">
\
<div align='center'>\
You poke your head into the dining room and see that it has been filled with various breakfast foods. Mariana is sitting alone at the table reading on her phone as she slowly eats from the small plate in front of her.
</div>\
<<speech "player" "$fname">>Good morning Mariana. Your beds are the most amazing that I’ve ever slept in. I had the best night's sleep I could imagine.<</speech>>
<<speech "Mariana">>Good morning $fname. I’m so glad to hear that! I take my beds very VERY seriously. I’m happy to see your tastes agree with mine.<</speech>>
<<speech "player" "$fname">>I hope I didn’t keep you waiting long. I probably should have set an alarm to wake up sooner.<</speech>>
<<speech "Mariana">>You are fine. I am glad you took your time. Please help yourself to breakfast and we can talk a little business while you eat. We are very happy to have you join our lab. I was rather eager to hire you. Might I ask you a personal question? I truly admire your apparent passion for the sciences. What is it that drives you?<</speech>>
<<speech "player" "$fname">>Well, that is a bit of a story. The short version is that I got it from my parents. They were passionate about science and taught me from a very young age to appreciate everything around me.<</speech>>
<div align='center'>\
You take the next several minutes explaining your childhood and relationship with your mother and father. You are intentionally vague as you explain their trip and accident leading to their death. You tell her about your dear grandmother and finish up by describing your time finishing your undergraduate degree. Mariana seems genuinely sorrowful hearing about your parents and listens raptly while you share your story.
</div>\
<<speech "player" "$fname">>So that is me in a nutshell. I like to think that my hardships have made me stronger and shaped me into someone with more purpose. So how about you? Being the head of a research division for a company like Nemesis corp. is no small accomplishment. What is it that drives you?<</speech>>
<<speech "Mariana">>Hmmm, yes… Well, I’m no stranger to tragedy myself. My husband and I worked together, much like your parents. We were very happy together, the four of us. Until the unthinkable happened. There was an accident in that lab that caused an explosion. My husband was killed in the blast. My whole life changed that day in more ways than you can imagine. Chanel was a perfect student getting perfect marks in all her classes. Once her father died, she began to ditch classes and eventually dropped out altogether. Jordi is still attending school but has withdrawn into himself completely. He locks himself up in his room and plays video games all day. As for me, I tried to smother my grief at the loss by diving into the project that we had been working on. He was very passionate about genetic modification and I wanted to honor his legacy by finishing what he started. You are very gifted on the subject I know. Is there a reason you chose that specific line of research?<</speech>>
<<speech "player" "$fname">>I guess you could say that. It was mostly because of my parents' accident. I am very interested in finding a way to make humans less fragile. So that… I…<</speech>>
<<speech "Mariana">>It’s okay $fname, I think that is very noble of you. I think you are honoring your parents' memories by the way you are living your life. Well, if you have finished your breakfast now, let's head into the lab, shall we?<</speech>>
\
<<button "Go with her" "Intro">><<set $intro = 18>><</button>>
\
\
\
\
\
<<elseif $intro == 18>>\
<img src="content/location/lab_reception.jpg" style="max-width: 70%;">
\
<div align='center'>\
Coming to the lab, you can see that the complex is by far the biggest part of the town. Mariana escorts you to the front desk and introduces you to the receptionist.
</div>\
<<speech "Mariana">>Good morning Kimberlee, please meet our newest hire $fname $lname.<</speech>>
<<speech "Kimberlee">>Good morning Doctor Cordoba. Hello Mister $lname, so nice to meet you.<</speech>>
<div align='center'>\
You greet Kimberlee warmly enjoying the pretty smile on her face. Mariana shows you how you can gain admittance using your bracelet. She explains that as a new employee that your access level is only the most basic giving you access to common areas and your work areas.
</div>\
<<addmins 20>>\
<<button "Follow her" "Intro">><<set $intro = 19>><</button>>
\
\
\
\
\
<<elseif $intro == 19>>\
<img src="content/location/lab_hallway.jpg">
\
<div align='center'>\
She escorts you down hallways pointing out the canteen, equipment and materials storage as well as the administrative offices. Finally, she escorts you down the hallway with several doors that she explains are work areas for other researchers on her team.
</div>\
<<button "Follow her" "Intro">><<set $intro = 20>><</button>>
\
\
\
\
\
<<elseif $intro == 20>>\
<img src="content/location/lab_player.jpg">
\
<<speech "Mariana">>And finally, this is your lab. It should have everything you need. If you run out of anything or don’t have something you need, you can pick it up from the equipment storage that I showed you earlier. Just scan it on your way out with your bracelet and it will be added to your account. The reception desk for the lab will permit you entrance between the hours of 08:00 and 10:00. Once that closes you will not be permitted entry. Lunch starts at 13:00 and then the lab closes at 18:00. You are expected to be here Monday through Friday and if you want to work on anything over the weekend, that is open to you as well but not required. Otherwise, I hope you can enjoy exploring the town. As outlined in your offer letter, your salary is 100 credits for each day worked. I sent you an email this morning with your first work assignment. And that should be it. Do you have any questions?<</speech>>
<<speech "player" "$fname">>That was a great tour, Doctor Cordoba. I’ll take a look at the email which I’m sure will cover everything else I need to know. I really appreciate you taking the time to show me around personally when I’m pretty sure you are very busy. I won’t take up any more of your time. I’ll get settled in here and then see you back at the house I guess.<</speech>>
From: MARIANA mariana@nemesis.com
To: $fname $fname,$lname@nemesis.com
Dear Mr $lname
For your first project, we would like you to work on improving a serum that improves the amount of energy available that the human body can metabolize. The attached formula has been shown to increase energy production by 20% but there is evidence that it can be improved by as much as 50% or more. With your background, this should be an easy first project. Please complete the work no later than five weeks from now.
Regards,
Dr. Cordoba
<<addmins 30>>\
<<button "Start working" "Lab Player">><<set $intro = 21>><</button>>
<</if>>\<div align='center' style='font-size: 150%;'><b>Your Lab</b></div>\
<img src="content/location/lab_player.jpg" style="max-width: 70%;">
<div align='center'>\
\
<<if GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun">>\
<<if $gameDate.getHours() < "17">>\
<<if $questtransformation >= 1 and $questtransformation < 4>>\
<b>\
PRIVATE PROJECTS:
<<if $fbss < 100>>\
Female Body Serum status: <<print $fbss>>%
<<else>>\
Female Body Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
<<if $CurEN >= 20>>\
<<if $fbss < 100>>\
<<button "Develop Female Body Serum" "Lab Player">>\
<<set $fbss += 25>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<<else>>\
<<button "Produce and take Female Body Serum" "Lab Player">>\
<<set $fbsv += 1>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<</if>>\
<<else>>\
<div align='center'>You are tired to work.</div>\
<</if>>\
<<elseif $questtransformation >= 4>>\
<<if $CurEN >= 20>>\
<b>PRIVATE PROJECTS:</b>
<<if $finalquest == 14>>\
<<button "Combine the special serum with Lianna's sperm" "Lab Player">><<set $finalquest = 15>><<set $liannaserum = 1>><<set $stsv -= 1>><<set $finalquest = 15>><</button>>
<</if>>\
<<if $finalquest >= 10 and $finalquest <= 16>>\
<b>\
<<if $stss < 100>>\
Special Transformation Serum status: <<print $stss>>%
<<else>>\
Special Transformation Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
<<if $stss < 100>>\
<<button "Develop Special Transformation Serum" "Lab Player">>\
<<set $stss += 25>>\
<<addhours 4>>\
<<set $CurEN = ($CurEN - 20).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<</button>>
<<else>>\
<<button "Produce and take the Special Transformation Serum" "Lab Player">>\
<<set $stsv += 1>>\
<<addhours 4>>\
<<set $CurEN = ($CurEN - 20).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $specserum to true>>\
<</button>>
<</if>>\
<</if>>\
<b>\
<<if $mbss < 100>>\
Male Body Serum status: <<print $mbss>>%
<<else>>\
Male Body Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
<<if $mbss < 100>>\
<<button "Develop Male Body Serum" "Lab Player">>\
<<set $mbss += 25>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<<else>>\
<<button "Produce and take Male Body Serum" "Lab Player">>\
<<set $mbsv += 1>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<</if>>\
<b>\
<<if $fbss < 100>>\
Female Body Serum status: <<print $fbss>>%
<<else>>\
Female Body Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
<<if $fbss < 100>>\
<<button "Develop Female Body Serum" "Lab Player">>\
<<set $fbss += 25>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<<else>>\
<<button "Produce and take Female Body Serum" "Lab Player">>\
<<set $fbsv += 1>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<</if>>\
<b>\
<<if $sbss < 100>>\
Shemale Body Serum status: <<print $sbss>>%
<<else>>\
Shemale Body Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
<<if $sbss < 100>>\
<<button "Develop Female Body Serum" "Lab Player">>\
<<set $sbss += 25>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<<else>>\
<<button "Produce and take Female Body Serum" "Lab Player">>\
<<set $sbsv += 1>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<</if>>\
<b>\
<<if $pess < 100>>\
Penis Enlargement Serum status: <<print $pess>>%
<<else>>\
Penis Enlargement Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
<<if $pess < 100>>\
<<button "Develop Penis Enlargement Serum" "Lab Player">>\
<<set $pess += 25>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<<else>>\
<<button "Produce and take Penis Enlargement Serum" "Lab Player">>\
<<set $pesv += 1>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<</if>>\
<b>\
<<if $prss < 100>>\
Penis Reduction Serum status: <<print $prss>>%
<<else>>\
Penis Reduction Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
<<if $prss < 100>>\
<<button "Develop Penis Reduction Serum" "Lab Player">>\
<<set $prss += 25>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<<else>>\
<<button "Produce and take Penis Reduction Serum" "Lab Player">>\
<<set $prsv += 1>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<</if>>\
<b>\
<<if $bess < 100>>\
Breast Enhancer Serum status: <<print $bess>>%
<<else>>\
Breast Enhancer Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
<<if $bess < 100>>\
<<button "Develop Breast Enhancer Serum" "Lab Player">>\
<<set $bess += 25>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<<else>>\
<<button "Produce and take Breast Enhancer Serum" "Lab Player">>\
<<set $besv += 1>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<</if>>\
<b>\
<<if $bdss < 100>>\
Breast Decrease Serum status: <<print $bdss>>%
<<else>>\
Breast Decrease Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
<<if $bdss < 100>>\
<<button "Develop Breast Decrease Serum" "Lab Player">>\
<<set $bdss += 25>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<<else>>\
<<button "Produce and take Breast Decrease Serum" "Lab Player">>\
<<set $bdsv += 1>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<</if>>\
<<else>>\
<b>PRIVATE PROJECTS:
<<if $mbss < 100>>\
Male Body Serum status: <<print $mbss>>%
<<else>>\
Male Body Serum status: <span style="color:green">Complete</span>
<</if>>\
<<if $fbss < 100>>\
Female Body Serum status: <<print $fbss>>%
<<else>>\
Female Body Serum status: <span style="color:green">Complete</span>
<</if>>\
<<if $sbss < 100>>\
Shemale Body Serum status: <<print $sbss>>%
<<else>>\
Shemale Body Serum status: <span style="color:green">Complete</span>
<</if>>\
<<if $pess < 100>>\
Penis Enlargement Serum status: <<print $pess>>%
<<else>>\
Penis Enlargement Serum status: <span style="color:green">Complete</span>
<</if>>\
<<if $prss < 100>>\
Penis Reduction Serum status: <<print $prss>>%
<<else>>\
Penis Reduction Serum status: <span style="color:green">Complete</span>
<</if>>\
<<if $bess < 100>>\
Breast Enhancer Serum status: <<print $bess>>%
<<else>>\
Breast Enhancer Serum status: <span style="color:green">Complete</span>
<</if>>\
<<if $bdss < 100>>\
Breast Decrease Serum status: <<print $bdss>>%
<<else>>\
Breast Decrease Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
You are tired to work.
<</if>>\
<</if>>\
<<else>>\
<b>PRIVATE PROJECTS:
<<if $mbss < 100>>\
Male Body Serum status: <<print $mbss>>%
<<else>>\
Male Body Serum status: <span style="color:green">Complete</span>
<</if>>\
<<if $fbss < 100>>\
Female Body Serum status: <<print $fbss>>%
<<else>>\
Female Body Serum status: <span style="color:green">Complete</span>
<</if>>\
<<if $sbss < 100>>\
Shemale Body Serum status: <<print $sbss>>%
<<else>>\
Shemale Body Serum status: <span style="color:green">Complete</span>
<</if>>\
<<if $pess < 100>>\
Penis Enlargement Serum status: <<print $pess>>%
<<else>>\
Penis Enlargement Serum status: <span style="color:green">Complete</span>
<</if>>\
<<if $prss < 100>>\
Penis Reduction Serum status: <<print $prss>>%
<<else>>\
Penis Reduction Serum status: <span style="color:green">Complete</span>
<</if>>\
<<if $bess < 100>>\
Breast Enhancer Serum status: <<print $bess>>%
<<else>>\
Breast Enhancer Serum status: <span style="color:green">Complete</span>
<</if>>\
<<if $bdss < 100>>\
Breast Decrease Serum status: <<print $bdss>>%
<<else>>\
Breast Decrease Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
It is too late now. The lab is closing and you have to leave the premises.
<</if>>\
<<else>>\
<<if $gameDate.getHours() < "17">>\
<<if $CurEN >= 20>>\
<b>LAB RESEARCHES:</b>
<<if $finalquest == 14>>\
<<button "Combine the special serum with Lianna's sperm" "Lab Player">><<set $finalquest = 15>><<set $liannaserum = 1>><<set $stsv -= 1>><<set $finalquest = 15>><</button>>
<</if>>\
<<if $finalquest >= 10 and $finalquest <= 16>>\
<b>\
<<if $stss < 100>>\
Special Transformation Serum status: <<print $stss>>%
<<else>>\
Special Transformation Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
<<if $stss < 100>>\
<<button "Develop Special Transformation Serum" "Lab Player">>\
<<set $stss += 25>>\
<<addhours 4>>\
<<takeenergy 20>>\
<</button>>
<<else>>\
<<button "Produce and take the Special Transformation Serum" "Lab Player">>\
<<set $stsv += 1>>\
<<addhours 4>>\
<<takeenergy 20>>\
<<set $specserum to true>>\
<</button>>
<</if>>\
<</if>>\
\
<b>\
<<if $ess < 100>>\
Energy Serum status: <<print $ess>>%
<<else>>\
Energy Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
<<if $ess < 100>>\
<<button "Develop Energy Serum" "Lab Player">>
<<set $ess += 25>>\
<<addhours 4>>\
<<set $workdays += 0.5>>\
<<takeenergy 20>>\
<</button>>
<<else>>\
@@#links;\
<<button "Produce Energy Serum">>\
<<addhours 4>>\
<<set $workdays += 0.5>>\
<<takeenergy 20>>\
<<replace "#links">>\
You produced 5 Energy Serums.
<<button "Steal one" "Lab Player">><<set $esv += 1>><</button>>
<</replace>>\
<</button>>
<</if>>\
<<else>>\
<b>LAB RESEARCHES:
<<if $ess < 100>>\
Energy Serum status: <<print $ess>>%
<<else>>\
Energy Serum status: <span style="color:green">Complete</span>
<</if>>
</b>\
You are tired to work.
<</if>>\
<<else>>\
<b>LAB RESEARCHES:
<<if $ess < 100>>\
Energy Serum status: <<print $ess>>%
<<else>>\
Energy Serum status: <span style="color:green">Complete</span>
<</if>>\
</b>\
It is too late now. The lab is closing and you have to leave the premises.
<</if>>\
<</if>>\
<<button "Leave" "Lab Reception">><</button>>
</div>\
<div align='center' style='font-size: 150%;'><b>Lab Reception</b></div>\
<img src="content/location/lab_reception.jpg" style="max-width: 60%;">
\
<<button "Your lab" "Lab Player">><</button>>
<<button "Lab Storage" "Lab Store">><</button>>
<<if $liannaquest >= 1>>\
<<button "Canteen" "Lab Canteen">><</button>>
<<else>>\
<<button "Canteen" "Lab Canteen">><<set $liannaquest = 1>><</button>>
<</if>>\
<<button "HR Office" "Lab HR Office">><</button>>
<<if $ht >= 4>>\
<<button "Mariana`s office" "Mariana`s Office">><</button>>
<<if $labside >= 2>>\
<<button "Elevator" "Elevator">><</button>>
<</if>>\
<</if>>\
<<button "Leave the Lab" "Map">><</button>><div align='center' style='font-size: 150%;'><b>Lab Storage</b></div>\
<img src="content/location/lab_store.jpg" style="max-width: 60%;">
\
<<if $questmicroscope == 1 and $microscope == 0>>\
<span id='text'>\
<<button "Try to find a microscope for Bonnie">>
<<replace "#text">>\
<div align='center'>\
<img src="content/objects/microscope.jpg">
\
You found the microscope. Give it to Bonnie.
</div>\
<<set $microscope += 1>>\
<<set $questmicroscope =2>>\
<</replace>>\
<</button>>
</span>\
<</if>>\
<<button "Leave" "Lab Reception">><</button>>
<div align='center' style='font-size: 150%;'><b>Lab Canteen</b></div>\
<img src="content/location/lab_canteen.jpg">
\
<<if $liannaquest == 1 and $dailylianna is false>>\
<div align='center'>\
You notice a weird item on the floor.
</div>\
<<button "Pick it up" "Lianna Quest">><</button>>
\
\
\
\
\
<<elseif $liannaquest == 2 and $dailylianna is false>>\
<<button "Order your food" "Lianna Quest">><</button>>
\
\
\
\
\
<<elseif $liannaquest == 3 and $dailylianna is false>>\
<div align='center'>\
You’ve been thinking about the mysterious vibrator girl from the cantina a lot lately. As you walk by the cantina, you often poke your head in just to see if she is in there. Today, you are in luck! She is sitting at her table, reading a book while she slowly eats her lunch. The book must be very good because she seems completely absorbed in it. You are very curious to know what it is but you don’t want to get too close and distract her in the process.
</div>\
<<button "Sit down" "Lianna Quest">><</button>>
\
\
\
\
\
<<elseif $liannaquest == 5 and $finalquest == 4>>\
<div align='center'>\
You see Lianna looking at her phone while in line getting her food. You walk up to her and give her a playful hip bump.
</div>\
<<speech "Lianna">>Oh, hey $fname. Sorry, I was a bit distracted. You wouldn’t believe how crazy work has been the last couple of days.<</speech>>
<<speech "player" "$fname">>Oh, did something happen? I don’t actually know what you do here. Is that awful?<</speech>>
<<speech "Lianna">>Oh, don’t worry about it. I’m an assistant to the IT manager. I can’t talk too much about it but we had a security breach and the hacker has been leading us down a primrose path, the slippery bastard. He seems to be one step ahead of us at every turn. We have all been getting by on just a couple of hours of sleep per night. I don’t think my boss has slept more than two hours in a row since the whole thing started.<</speech>>
<<speech "player" "$fname">>Wow, I’m sorry. I hope you can get some rest. I guess I shouldn’t distract you from what you are doing.<</speech>>
<<speech "Lianna">>I’d like that. I still think about how fun our date was. I hope we can do more again soon!<</speech>>
<<set $finalquest = 5>>\
\
\
\
\
\
<<elseif $finalquest == 10 and $specserum is true>>\
<div align='center'>\
Seeing Lianna eating her lunch at the table, you walk straight over and sit across from her at the table. Her eyes light up as she looks up from her phone to see you there.
</div>\
<<speech "player" "$fname">>You are looking more bright-eyed and bushy-tailed. Looks like you caught up on your rest.<</speech>>
<<speech "Lianna">>Yes, oh my gawd, that was such an awful time. I wanted to sleep for two days straight. But yeah, I caught up eventually.<</speech>>
<<speech "player" "$fname">>So you caught the bastard that was torturing your team then? I bet you enjoyed getting some sweet revenge.<</speech>>
<<speech "Lianna">>Well… uhm… yeah. I… can’t really talk about it. I’m sure the little shit will get what’s coming to him.<</speech>>
<<speech "player" "$fname">>So, I’ve been thinking about our last date a lot. What are the chances that we could hang out again? I’d love to do some more dress-up with you.<</speech>>
<<speech "Lianna">>Yeah, I’m sure we could find some time. I’m free tomorrow night. We can get our cosplay on.<</speech>>
<<speech "player" "$fname">>I had some ideas of things I wanted to try and downloaded some pics from the web. I put them on a USB drive if you want to take a look after lunch.<</speech>>
<<speech "Lianna">>Oh, that’s awesome. I’ll have to look at them when I get home. You know that USB drives don’t work on corporate laptops due to security, don’t you?<</speech>>
<<speech "player" "$fname">>Unless… You happen to have a corporate USB drive. Like this one!<</speech>>
<<speech "Lianna">>Oh sweet! There aren’t too many of those floating around. Some people might think that is a frivolous use of company property. But for those that take cosplay seriously, it sounds fucking awesome. I’ll take a look when I get back to my desk. Any hints at what I’ll see?<</speech>>
<<speech "player" "$fname">>I don’t want to give you spoilers. Perhaps just one teaser though. I hope you live long and prosper.<</speech>>
<<speech "Lianna">>Oh! Fuck yeah. Are you thinking TOS or DSC or what?<</speech>>
<<speech "player" "$fname">>Uh… I’m not sure what you are asking.<</speech>>
<<speech "Lianna">>You know, like The Original Series or Discovery?<</speech>>
<<speech "player" "$fname">>Oh! Sorry, I should have known that. I’m not going to give you any more spoilers. You’ll just have to see for yourself.<</speech>>
<<speech "Lianna">>You big tease! And I thought you were bad when you were controlling my vibrator! Come by my house tomorrow at 7 PM and I’ll see what I can rustle up from your ideas on this drive.<</speech>>
<<speech "player" "$fname">>Sounds like a plan, Stan. See you tomorrow!<</speech>>
<<set $finalquest = 11>>\
<</if>>\
\
\
\
<<if $kimquest == 10>>\
<<button "Make a speacial coffee for Kimberlee" "Kimberlee quest 2">><</button>>
<</if>>\
<<button "Hallway" "Lab Reception">><</button>>
<<if $liannaquest == 1>>\
<div align='center'>\
As you enter, you notice a white plastic somewhat egg-shaped object laying on the floor. You pick it up and notice that it has a few buttons on it.
<img src="content/peoples/lianna/canteen/1.jpg">
\
You decide you will turn it into the reception desk for lost and found after your break. You order your food and as you wait for it to be prepared, your curiosity gets the better of you and you inspect the remote looking device more closely to see if you can figure out what it is a remote for. It has a power-on button and a couple of slider switches that slide up and down. There is no logos or product labels of any kind. It has a soft almost velvet feel to it giving it a quality feel. This doesn’t look like it would be a cheap item in a store. You slide one of the sliders up a little and press the power button to see what it does.
You hear a soft yelp from across the room and look up to see a girl eating her lunch has dropped her fork. She is looking down on the floor between her legs like she dropped something else and then looks around at everyone else looking at her after your sudden reaction. You look back down at the remote and slide the other switch up slowly. The girl across the room gives another sharp little squeaky noise and brings her hand up to her mouth as a rosy blush flushes her cheeks pink.
<img src="content/peoples/lianna/canteen/2.jpg">
\
It is beginning to dawn on you as to what the remote is for and to whom it belongs. Your hand holding the remote slips under the table and your other hand covers your mouth to hide the wicked smile on it. Pretending to look down at your phone laying on the table, you peak up at the pretty girl and continue your sexual torment. You see her clench her legs together under the table and one hand goes down to press at the top of her legs.
<video src="content/peoples/lianna/canteen/1.mp4" style="width: 100%;" autoplay loop></video>
She looks back up and slowly scans the room clearly wondering if the culprit is present. You notice her gaze settle on your for just a moment before continuing on her search. She looks to be about to stand up when you shoot one of the sliders up higher and she immediately plops back down into her seat. Her eyes close and her eyebrows knit together as she takes a look of intense concentration. You experiment with the sliders trying different patterns trying not to push them up too high just too soon.
<video src="content/peoples/lianna/canteen/3.mp4" style="width: 100%;" autoplay loop></video>
You are enjoying this and you want to milk it for all you can. It is very exciting to anonymously pleasure this sexy girl in public. Perhaps you can make her cum right here in front of everyone. Will she cry out and bring everyone’s attention back to her as she reaches climax? You sincerely hope so! You notice her breathing getting faster as her chest is rising and falling with greater rapidity. Too bad you were not sitting closer to see if she is making any soft noises. You gradually work the sliders higher to the top making them pulse by sliding them up and down quickly. You idly wonder why there are two and how they are different. You try to give them both equal attention as you are uncertain, working them in opposite directions, counterpoint to each other. You finally decide to go for broke and push the sliders all the way to the top leaving them there for a second or so before bringing them back down. You continue this until you notice your sexy anonymous companion begin to shudder in a telling way before slumping gently to the side. You slide the switches down to the bottom and press the power button finally giving the poor girl a break. You watch her closely as your concern grows that you might have gone too far. As she begins to stir, you feel a wave of relief wash over you. She looks down between her legs again and then clenches her legs tightly together.
<video src="content/peoples/lianna/canteen/2.mp4" style="width: 100%;" autoplay loop></video>
It seems she may have a bit of a moisture problem down there. She picks up her wadded napkin and sets it back down again. She looks over at the dispenser but it is too far away to get to unnoticed. You decide to take pity on her as it was after all you that got her into this mess. You put your phone away and walk to the front to pick up your to-go order and grab some extra napkins. On your way out, you stop near her setting the remote down with the napkins over it.
</div>\
<<speech "player" "$fname">>The atmosphere in this place seems to have improved. It has a nice sexy vibe to it now.<</speech>>
<div align='center'>\
You walk towards the exit looking over your shoulder back at her bewildered expression as she picks up the napkins and notices the remote under them. You smile happily as you walk out the door.
</div>\
<<addarousal 25>>\
<<addmins 10>>\
<<button "Leave" "Lab Reception">><<set $dailylianna to true>><<set $liannaquest = 2>><</button>>
\
\
\
\
\
<<elseif $liannaquest == 2>>\
<div align='center'>\
You order your food and take a seat in your regular spot to enjoy it. You are lost in your own thoughts when you feel someone brush near you. Looking up, you see the rear profile of an attractive girl walking towards the front of the canteen to order food. Looking back down, you see the familiar-looking remote sitting next to you with a small sticky note on it with one word.
<img src="content/peoples/lianna/canteen/3.jpg">
\
You quickly look back up and see the remote vibe girl looking back at you with an amused smile on her face.
<img src="content/peoples/lianna/canteen/4.jpg">
\
Your eyebrows lift in a look of surprise that slowly morphs into a lopsided grin. You purse your lips as you watch her delicate features pick up a banana and after paying, sits down where she can watch you from across the room. She begins to slowly peel the still somewhat green banana and as she does so, you press the power button on the remote and bump both sliders up to a one. She jumps almost imperceptibly as she is obviously expecting your actions. She slowly wraps her mouth around the tip of the banana and just sucks on it lightly as her eyes close so she can focus on the vibration down in her panties you imagine.
<video src="content/peoples/lianna/canteen/4.mp4" style="width: 100%;" autoplay loop></video>
You give her a little more to think about as you begin to slowly rock the sliders between a one and a three in alternating movements. She bites off the tip of the banana and opens her eyes smiling at you as she chews. She slowly licks her lips in a somewhat suggestive way.
<video src="content/peoples/lianna/canteen/5.mp4" style="width: 100%;" autoplay loop></video>
Then puts more of the banana in her mouth and just holds it there as she looks intently at you. She slowly nods her head as if to tell you she is ready for more. You slide your fingers higher and begin to pulse both sliders up and down in unison going between a three and five. She takes a deep breath as she bites off the next section of the banana. You can see her small chest begin to heave faster making her shirt move in a rather attractive manner. She closes her eyes once more and her eyes clench lightly together almost as if she is trying to focus on not getting too excited too quickly. She seems to be battling with herself trying to enjoy the experience without rushing to climax but clearly very excited by the public setting.
<video src="content/peoples/lianna/canteen/6.mp4" style="width: 100%;" autoplay loop></video>
The movement of her breasts begins to slow somewhat and she opens her eyes once more. At this point, you don’t even notice anyone else in the room as the two of your stare at each other from your separate seats. She lifts her eyebrows and gives you a small but energetic nod encouraging you further.
<video src="content/peoples/lianna/canteen/7.mp4" style="width: 100%;" autoplay loop></video>
You go back to your alternating pattern but with a more swooping motion ranging between a four and eight. Her eyes glaze over and she slowly inserts half the banana in her mouth deep throating it.
<video src="content/peoples/lianna/canteen/8.mp4" style="width: 100%;" autoplay loop></video>
You are so turned on right now. You have never seen such a sexy but lewd act in a public setting before. You might be in love! In your excitement, you begin to push the sliders higher bouncing all the way to a ten and back to a seven. She takes one final bite of the banana and sets it down in front of her and places both hands palm down on the table as she begins to slowly gyrate her hips in her seat working her body on the vibrator. Her eyes are squeezed tightly shut and her eyebrows are slowly sinking down her face as you imagine she is right on the brink. The slides the switches to the top and keep them there as you stare at her trying to drink in every detail of her. Her back arches and you can see her begin to shudder and her neck twitches as you see her go over. What control she has to be able to keep it all bottled in as it looks to be a rather powerful orgasm. You slide the switches back down to zero and press the power button as you watch the aftershocks play over her lovely body. She finally regains her composure and taking a deep breath, stands and walks over to your table and puts another sticky note next to you, and walks out without a single word.
<img src="content/peoples/lianna/canteen/5.jpg">
\
You look at her go in shock and disappointment and then look down at the note that says, ‘Keep the remote for next time ~Lianna’. You can’t help the amused smile as it spreads across your face like the rays of the sun from a beautiful sunrise. You can’t wait!
</div>\
<<addarousal 50>>\
<<addmins 10>>\
<<button "Leave" "Lab Canteen">><<set $liannaquest = 3>><<set $dailylianna to true>><</button>>
\
\
\
\
\
<<elseif $liannaquest == 3>>\
<div align='center'>\
Instead, you find a seat with a good view and pull out the remote for her toy. A grin slowly spreads across your face in anticipation as you get ready to turn the toy on. You briefly wonder if perhaps she is not wearing the vibrator today before inching the slider up one notch as you watch closely to see if she reacts. You do your best to suppress a child-like giggle as you see her lurch unexpectedly in her seat and her eyes find you immediately. Her look of shock quickly morphs into a grin as she sees you. She quietly sets down her book and rests both of her hands on the table palms down. She sucks her lower lip between her teeth as her eyes close halfway. You work your fingers up and down the sliders of the remote making the vibrator dance like a puppet on your strings. She slowly rotates her hips and you chuckle to yourself as you notice her right-hand slip from the tabletop down between her legs. From the way her arm is moving, it looks as though she is rubbing herself in sync with the rhythm you are pulsing her toy. After a few minutes, her mouth opens as her eyes clench shut. She is doing her best to suppress the shudders of her orgasm but watching closely, you can see her cumming. You are dialing down the vibration slowly when she reaches a hand to feel her forehead. When her eyes finally slide open, she gives you a big smile that makes you feel like you just won the lottery. She beacons you over with her fingers. You move over to her table and sit across from her.
</div>\
<img src="content/peoples/lianna/canteen/6.jpg">
\
<<speech "player" "$fname">>Hi! You looked like you enjoyed that.<</speech>>
<<speech "Lianna">>You could say that. It is so fucking hot that you can do that to me here in public. Did you have fun? From the look on your face, it would seem you did.<</speech>>
<<speech "player" "$fname">>I have to admit, it was a lot of fun to play with you like that. You have the best expressions. I’m $fname by the way. And you are… Leanne?<</speech>>
<<speech "Lianna">>Lianna. Hi, nice to meet you properly, $fname. I’ve been hanging out here for a while today hoping I’d see you. I’m afraid all the anticipation means I didn’t last very long. I hope it was good for you.<</speech>>
<<speech "player" "$fname">>You are too funny. And very pretty too. Uhm, this might be an odd question given how we met but, would you like to do out on a date with me?<</speech>>
<<speech "Lianna">>You aren’t so bad to look at yourself. Sure, I’d love to. What do you have in mind? Take me to a fancy restaurant and buzz my brains out with my vibrator there?<</speech>>
<<speech "player" "$fname">>That wasn’t my first thought but now that you mention it, that does sound pretty appealing! Why don’t you meet me Friday night at the fountain at the mall around 7 PM? We’ll figure it out from there.<</speech>>
<<speech "Lianna">>It’s a date!<</speech>>
<<button "Leave" "Lab Canteen">><<set $liannaquest = 4>><<set $dailylianna to true>><</button>>
\
\
\
\
\
<<elseif $liannaquest == 4>>\
<div align='center'>\
You are sitting near the fountain as you take in the view. As you wait for your date, your thoughts begin to wander as you watch the people carrying on with their lives and you begin to speculate on what they are on their way to or where they are coming from. You hear someone approach you from behind. Just as you begin to turn, you feel hands dart around your head to cover your eyes.
</div>\
<<speech "Lianna">>Guess who?<</speech>>
<<speech "player" "$fname">>Lianna! I give up. You’ve got me.<</speech>>
<div align='center'>\
Her hands retreat and you turn to see Lianna looking as lovely as ever giving you that knowing grin of hers that makes you feel lucky to be alive.
</div>\
<img src="content/peoples/lianna/date/1.jpg">
\
<<speech "Lianna">>Well, that was easier than I expected. And here I thought you would put up more of a struggle. You are looking nice. So, where are we headed?<</speech>>
<<speech "player" "$fname">>I know a good restaurant. I hope you remembered to bring your appetite. It’s this way.<</speech>>
<<speech "Lianna">>This is the way.<</speech>>
<<speech "player" "$fname">>Was that a ‘Mandalorian’ quote?<</speech>>
<<speech "Lianna">>Guilty! One thing you should know about me: I’m a bit of a nerd. I hope you don’t mind. It isn’t too late to back out of the date.<</speech>>
<<speech "player" "$fname">>I wouldn’t dream of it. I’m not the best at pop culture but I’m open to learning.<</speech>>
<<speech "Lianna">>Oh good. I guess I can put away the chloroform. I won’t have to drug you after all.<</speech>>
<div align='center'>\
You give her a quizzical look and she looks back at you with a serious expression. After a couple of seconds, she can’t hold it back anymore and her laughter comes out in a burst. Her laughter is contagious and you laugh in return. You continue to make small talk as you walk to the restaurant. Once you both finish ordering, Lianna leans across the table towards you and whispers conspiratorially to you.
</div>\
<<speech "Lianna">>I brought you something. Here… I have a matching one already in. Head to the bathroom and put it in before our food comes.<</speech>>
<div align='center'>\
You look down to see a small box with a ribbon on it. You pull up the lid to see a compact vibrator inside. You close the box quickly and look up at her questioningly. She smiles and gives you a reassuring nod. Taking a deep breath, you take the package and walk back towards the restrooms. Once in a stall, you open the box to get a better look at the vibrator and a small packet of lube. There is a small note that says: “Remember to turn it on before you put it in”. You inspect the toy getting a better look at it.
<img src="content/peoples/lianna/date/2.jpg">
\
The soft rubbery toy has a small power button on the bottom and after holding it down for a couple of seconds, you feel it give a small vibration in your hand so you know it is on. You open the packet of lube and give the head a liberal coating before slowly slipping it inside. You pull your clothes back into place and walk slowly back to the table. You realize that you are walking a little differently as you feel the toy inside you as your legs move.
</div>\
<<speech "Lianna">>How does it feel? From the way you are walking, I can tell that this is your first time with one in public. So, this toy connects to your phone using Bluetooth and once it is connected, I can control it from anywhere in the world from my phone. The same goes for you with my toy. Let me see your phone and I’ll get it set up for you. Thanks. Give me just a couple of minutes and I’ll show you how it works. Here you go. I paired it with your vibrator and added me as a friend so you can always see if I have the toy powered on. Feel free to play with it anytime if it is turned on. It works pretty much just like the remote for my other toy. Two sliders that control two different motors. One is for the part that is inside and the other vibrates the part outside. I’m going to turn yours on now so you know what it feels like.<</speech>>
<div align='center'>\
Taking your phone back, you feel suddenly feel the toy give a short buzz. Your mouth makes a silent “O” as it begins to dawn on you how this date is going to go. You look up at Lianna in shock which in turn causes her to bust out in a fit of giggles. You realize that two can play this game and in just a couple of seconds, you have the controls for her toy at your fingertips to return fire. Both of you look surprised when your dinner is brought out and she declares a cease-fire while the two of you eat. She asks more about you and you tell her about being raised by your grandmother and your academic years doing your best to stay clear of any topics that might reveal your clandestine activities in town.
</div>\
<img src="content/peoples/lianna/date/3.jpg">
\
<<speech "Lianna">>That sounds pretty cool. You must be really smart. I’m just an assistant to one of the executives in the lab. It is nothing glamorous and a lot of it is pretty tedious. It would be a bit mind-numbing if I didn’t have to be so meticulous about details. I’ve recently gotten into cosplay to pass my time after work.<</speech>>
<<speech "player" "$fname">>Coz play? Tell me that isn’t where you dress up as Bill Cosby and go around drugging people.<</speech>>
<<speech "Lianna">>Coz…? Oh! I get it. Ha! No. Well, you are part right. Cosplay stands for costume play. I like dressing up as characters from video games, comic books, movie characters, and that kind of stuff. Do you want to see one? This is from Star Trek The Original Series or T.O.S. I’m Chekov in this one. Cool, huh?<</speech>>
\
<img src="content/peoples/lianna/date/4.jpg">
\
<<speech "player" "$fname">>I haven’t really had much time for stuff like Star Trek but you look kind of hot dressed up like that.<</speech>>
<<speech "Lianna">>That’s the idea. Well, at least it is for me. I love the attention I get from dressing up. Maybe you’d like to dress up as a character with me and we can take some pictures together.<</speech>>
<<speech "player" "$fname">>That could be fun. I could certainly use some help catching up on my pop culture references.<</speech>>
<div align='center'>\
The two of you enjoy your meal as you continue to share stories as you get to know each other better. You find that you rather enjoy Lianna’s sense of humor and relaxed attitude.
</div>\
<<speech "player" "$fname">>Lianna, I can’t remember the last time I had this much fun on a date. I love talking with you. I hope this isn’t the last time we do this.<</speech>>
<<speech "Lianna">>The date isn’t over yet, is it? I thought you were going to come home with me so we could do a little dress-up together.<</speech>>
<<speech "player" "$fname">>Oh, you meant tonight! Yeah! I’d love that. I wasn’t sure if you were being serious when you offered.<</speech>>
<<speech "Lianna">>One thing you don’t know about me yet apparently is… when it comes to cosplay, I don’t play around. No, that’s not right. Cosplay, it’s all fun and games until someone loses an eye. Nah, how about… Cosplay, it’s a serious business. Eh, close enough. I do have fun with it but I have put a lot of time into putting together the costumes. A lot of the stuff is handmade. You’ll just have to see it to understand I think. Come on. Finish paying and let’s head back to my place. Unless you have another hot date tonight that is…<</speech>>
<div align='center'>\
You finish paying for the meal and you follow Lianna back to her house. On your walk back, the two of you continue to talk and joke. You hardly notice as Lianna pulls out her phone as if to check a notification but you quickly realize that she had something else in mind when your toy turns on. Your step stumbles a bit but you quickly recover giving her a ‘naughty-naughty look. You quickly pull out your phone and follow suit. The two of you attract some funny looks due to your loud laughter and the peculiar way you both would occasionally walk. Eventually, you arrive at her home and she shows you to her living room and invites you to sit.
</div>\
<<addarousal 25>>\
<<addmins 10>>\
<<button "Sit down" "Lianna Quest">><<set $liannaquest = 5>><</button>>
\
\
\
\
\
<<elseif $liannaquest == 5>>\
<img src="content/peoples/lianna/date/5.jpg">
\
<<if $pgender is "male">>\
<<set $pdollcum to true>>\
<<speech "Lianna">>So, this is me. Nothing fancy but it suits me well. Make yourself comfortable. Would you like a drink?<</speech>>
<<speech "player" "$fname">>Thanks, Lianna. I’ll have whatever you are having. It’s a nice play! It must be nice to have it all to yourself.<</speech>>
<<speech "Lianna">>It can be a bit quiet at times but I find ways to liven it up. So… what shall we dress up as tonight? Pink Power Ranger? Or perhaps Harley Quinn? No, I’m a bit tired of her. Hmmm, Oh! How about Sheikah button from Legend of Zelda? Let me put on some music to chill to while I get changed.<</speech>>
<div align='center'>\
You sit back enjoying your rum and coke taking in the decorations on the wall and shelves. They seem to have a pretty common theme of Japanese animation and video games. You idly wonder how your childhood would have been different if your parents had not been taken from you. Would you have been more interested in video games and movies? Not for the first time, you wish that things had been different and you would have made more friends and enjoyed spending time with them doing simple things like just hanging out and listening to music while flipping through comic books or the like. You are a bit embarrassed to admit that you have no idea what a sheik is. The name Zelda rings a bell that it might be related to a video game but you are not sure. Easier to just nod and go with it. Clearly, she is much more into that world than you. You are startled from your reverie by the sound of Lianna clearing her throat in the hallway before making her entrance once your eyes are on her. She struts in wearing a tight leotard with a noticeable swish in her hips. She brushes her hair back and you notice that she has pointy ear prosthetics on too.
</div>\
<img src="content/peoples/lianna/date/6.jpg">
\
<<speech "Lianna">>So…? What do you think? Pretty good, right?<</speech>>
<<speech "player" "$fname">>Lianna, I have to admit something to you. I have no idea who you are supposed to be. That being said, you look stunning. But then again, any skin-tight clothes would probably have a similar effect on me.<</speech>>
<<speech "Lianna">>Aren’t you sweet? I guess you don’t play too many video games, do you? I have some wonderful associations with Zelda and button due to a previous boyfriend. It always makes me think of getting captured and tied up.<</speech>>
<<speech "player" "$fname">>How kinky! Ropes can be a lot of fun. Don’t laugh at me but I did some macrame crafts with my grandmother when I was little. I have seen some adult photography of what essentially looks like macrame on people.<</speech>>
<<speech "Lianna">>They call it kinbaku or commonly known as shibari. It’s a Japanese. I think it is super hot. Hey, do you want to show me what you remember from your macaroni days? I’d love to see how similar it is to what I’m familiar with.<</speech>>
<<speech "player" "$fname">>Macrame, not macaroni. Okay, if you are really interested. Do you have rope?<</speech>>
<<speech "Lianna">>I know, I was just being silly. Do I have rope? Do I have rope you ask? How much do you need? I should have enough for what you have in mind.<</speech>>
<div align='center'>\
Lianna ducks back down the hall and less than a minute later returns with a tub full of ropes with labels indicating the rope type and length. You laugh when you realize how naive you were asking if she had any rope which makes Lianna blush a bit. You pick out a fairly short rope and Lianna offers her arm to show off your knot skills. As you tie, Lianna offers a couple of suggestions of alternate ways you could do the same knot. She then demonstrates a couple of them and has you try them on her. The next thing you know, you have Lianna tied up on her couch in a most provocative manner.
</div>\
<<speech "Lianna">>My goodness, you are a natural with ropes. You have no idea how turned on I am right now, Master. Oops… Oh, I’m so embarrassed. I didn’t mean to call you that. Force of habit. Please, do me a favor so I don’t let anything else slip out. In that drawer next to the couch should be a gag. Put it on me?<</speech>>
<div align='center'>\
Your excitement continues to grow. Hearing her call you master gave you an instant hardon and you felt it surge in your pants. You retrieved the peculiar-looking gag that looks more like a horse bridle and slid the bar of it between her teeth before latching it behind her head. Stepping back, you admire your handiwork. The way her butt stretches out the fabric of her costume is rather enticing. Without thinking, you lean in and give her ass a few firm smacks and are rewarded with a firm jiggle of her flesh and a sharp sound. It is then that you notice the small toothed zipper running down the crotch of it. With an evil grin on your face, you locate the tab of the zipper and pull it down and around the curve of her ass exposing her from front to back. Her cute little dicklet and balls came free and you got your first glimpse of the tight little hole where the vibrating toy that you have become so familiar with must spend a lot of time. Your dick is aching it is so hard in your pants as you admire her shapely posterior and give it more appreciative smacks. As you do, her eyes close and she begins to moan softly through the gag. Feeling encouraged, you continue to grope her body feeling her breasts and pinching her nipples and so forth. You begin to get concerned that she might cramp up so you remove her gag to check on her.
</div>\
<<speech "player" "$fname">>You seem to be enjoying yourself.<</speech>>
<<speech "Lianna">>Fuck, I’m so turned on right now! I love how you are manhandling me. Keep going! Choke me. Put your hands around my neck and squeeze.<</speech>>
<div align='center'>\
As you wrap your fingers around her neck and begin to gently squeeze, she smiles at you and nods you on to squeeze harder. This is beyond anything you have ever done before. While you are turned on, you are feeling a bit out of your depth. You slide your hands down the back of her thighs and take hold of her ropes and imagine using them as handles to pull her back down on your cock. You want so bad to fuck her right now but decide it would be best to wait until she is untied for your first time together. Otherwise, you can just imagine standing in front of a judge on rape allegations trying to explain how you thought it was alright to have your way with her ass when you had her all tied up. Instead, your hands begin to tease the perineum above her ass and then fondle her cock and balls. The grin she gives you dazzles you and then her eyes carefully watch your fingers as they move over her sex. Her chest begins to heave up and down faster as she gets more and more aroused.
</div>\
<<speech "Lianna">>Please, $fname, I want you to fuck me. Please, I need you so bad!<</speech>>
<<speech "player" "$fname">>I’m not going to do it unless you are untied for our first time. Let’s get you out of these ropes.<</speech>>
<<speech "Lianna">>There are some EMT shears there in the basket. Fucking cut me out. To hell with these ropes. I need you NOW!<</speech>>
<div align='center'>\
Finding the fancy scissors, you make short work of the ropes tying her and she practically rips your clothes off as you in turn do the same to her costume. She pushes you back into the couch and straddles your legs. Taking hold of your hard member, she guides it to her eager hole and sinks down plunging it inside. Hooking her heels behind your knees, she uses the leverage to rock back and forth sending you into heaven as her ass begins to milk at your shaft. She pushed you further back and rests her hands on your shoulders to allow her to ride you. You begin to thrust back up meeting her halfway and the sound of your bodies pounding each other mixes with both of your panting and moaning.
</div>\
<video src="content/peoples/lianna/date/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
It still isn’t enough for Lianna as she begs for harder and deeper. You push her off and bending her over, enter her doggy style.
</div>\
<video src="content/peoples/lianna/date/2.mp4" style="width: 100%;" autoplay loop></video>
<<speech "player" "$fname">>Lianna, you feel so fucking good. I’m going to cum!<</speech>>
<<speech "Lianna">>Cum on my face, $fname. I want to see you shot for me!<</speech>>
<div align='center'>\
She pulls off and spins around getting up close as you jerk yourself for her. She opens up her mouth and extends her tongue showing you where she wants it. Seconds later, she is rewarded with your spunk which she quickly swallows as more is milked out.
</div>\
<video src="content/peoples/lianna/date/3.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Lianna">>It’s been so long since I’ve tasted anyone else’s cum. I love your cum. Please tell me we can do this again sometime.<</speech>>
<<speech "player" "$fname">>It has been a great evening! Anytime Lianna. Really, any time.<</speech>>
<<speech "Lianna">>The app for the vibrator has a messaging feature. We can text and send photos as well as control our toys. Do you mind if I message you from time to time on it?<</speech>>
<<speech "player" "$fname">>That sounds like a lot of fun! I’m looking forward to it.<</speech>>
<div align='center'>\
The two of you get cleaned up and chat a bit longer before calling it a night and you head back home.
</div>\
<<zeroarousal>>\
<<takeenergy 20>>\
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<timed 900ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $mcumcounter += 1>>\
<<set $mkisscounter += 1>>\
<<set $mganalcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<set $liannarepo += 1>>\
<<set $noorgasm = 0>>\
<<addhours 2>>\
<<button "Leave" "Map">><<set $pdollcum to false>><</button>>
\
\
\
\
\
<<elseif $pgender is "shemale">>\
<<set $pdollcum to true>>\
<<speech "Lianna">>So… let’s take a look at you. How shall we dress you up? Hmmm… With that long dark hair of yours... Perhaps we add some glasses and some tight dark clothes. Yes! I think that would do very well. You can be the Baroness from the movie G.I. Joe.<</speech>>
<<speech "player" "$fname">>G.I. Joe? As in the 80s cartoon? Who is the Baroness?<</speech>>
<<speech "Lianna">>Yes, it started out as a cartoon in the 80s but they made a couple of movies some years back. She was played by none other than the smoking hot Sienna Miller. I should have some clothes that will fit. Let’s head back to my closet and see what we can throw together.<</speech>>
<div align='center'>\
Taking your hand, she excitedly tugs you up off the couch and down the hall to her room and walk-in closet. She quickly shuffles through some clothes hanging up and tosses the black clothes she finds on the floor for review. She settles on a black leather jacket and pulls out some shiny black ‘wet look’ leggings. She taps her lips as she ponders and finally pulls out a black floral lace see-through blouse.
</div>\
<<speech "Lianna">>It’s not perfect but it will do in a pinch. I’d pull out my whalebone corset but that will just take too bloody long and I have plans for you. Try them on and let’s see how you look!<</speech>>
<div align='center'>\
Feeling shy for only a minute, you strip down to your bra and panties. You pull on the stretchy leggings and are again reminded of how much you enjoy the feeling of tight stretchy clothes on your body. You slip the blouse on and then follow it with the jacket. Lianna looks you up and down with a coy smile and a delightful twinkle in her eye. She leans over to look at some boxes on the floor which presents you with a beautiful sight of her ass in her dress as the bulge in your leggings lurch.
</div>\
<<speech "Lianna">>Okay, now I have some glasses in one of these boxes that should work. Something with black rims. Oh! Hey, hold your horses, missy!<</speech>>
<div align='center'>\
You take hold of her posterior and grind your bulge against the crack of her ass that she unwittingly tantalized you with. She stands and as she turns to face you, your hands slide around her waist to pull you closer for a kiss. She giggles at the level of your ardor and you push her backward back towards her bed. Not to be deterred, you continue to kiss her smiling lips.
<video src="content/peoples/lianna/date/4.mp4" style="width: 100%;" autoplay loop></video>
Your hands wander down over the round curve of her bottom to squeeze it. You take half a step back and turn Lianna to get another look at her ass. You take hold of the hem and tug it up to her tiny waist and cute tanga-style panties. Goodness gracious but her ass is yummy! You give it an appreciative spank making it jiggle most delightfully. You kneel down giving each cheek a soft kiss. Seeing the bulge of the toy protruding slightly, you give it a soft pat.
<video src="content/peoples/lianna/date/5.mp4" style="width: 100%;" autoplay loop></video>
Standing back up, you turn her around to give her one more kiss before shoving her backward to fall on the mattress behind her. You resist the urge to dive down on top of her but decide you are wearing too many clothes and practically throw the leather coat to the floor. You crawl between her legs and your lips hone in on hers for more kissing.
<video src="content/peoples/lianna/date/6.mp4" style="width: 100%;" autoplay loop></video>
</div>\
<<speech "Lianna">>I like this side of you! It is like you are channeling the Baroness! I think I’m wearing too much clothes. Help me out of this dress.<</speech>>
<div align='center'>\
You don’t need any further encouragement as you peel it down her body to reveal her bra-covered breasts and smooth creamy tummy. You kiss her lips once more and then kiss down her chin and neck making your way towards her breasts. Pushing down the cups, your lips find her nipples and give them hungry kisses. She reaches behind her back and unclasps it and tosses it across the room a split second before your lips launch back towards her breasts. You lick, nibble and kiss her nipples enjoying their perky hard texture.
</div>\
<video src="content/peoples/lianna/date/7.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Lianna">>That feels so good! I know you just put those clothes on but I think it is time for them to hit the floor again. I’m especially glad I didn’t try pulling out the corset now!<</speech>>
<div align='center'>\
You pull the blouse off as she works on slipping the leggings down over your hips and down your legs. She reaches behind her and removes the toy from her hole and drops it to the side of the bed. You quickly do the same with yours. Soon enough, both of you are down to your bulging lacy underwear and Lianna’s eyebrows wiggle when she gets a better look at your package stretching out the front of your black panties. She leans in and tugs the front of your panties to the side letting your cock out and wrapping her soft lips around it. She takes it deep and you moan as you feel her tongue slide across the bottom of it as it slides in and out of her wet mouth. Her lips pull off with a loud pop and she flashes you her amazing smile.
</div>\
<video src="content/peoples/lianna/date/8.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Lianna">>I want you to fuck my face. Ride my face and don’t be gentle!<</speech>>
<div align='center'>\
She spins around to her back and tilts her head backward opening her mouth to allow you to shove yourself back inside. You spend the next few minutes abusing her mouth while you tweak and pinch at her nipples.
</div>\
<video src="content/peoples/lianna/date/9.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You are done with foreplay. You want a piece of that ass now! Encouraging her up, you spin her around to her hands and knees. You part the cheeks of her ass to kiss the crack and then lick up and down getting it nice and wet for what is to come. You reach beneath her to take hold of her hard dick and grip it as if it were a handle to hold her steady while your lips and tongue work on her backside.
</div>\
<video src="content/peoples/lianna/date/10.mp4" style="width: 100%;" autoplay loop></video>
<<speech "player" "$fname">>Bend over the edge of the bed for me. I’m going to give your ass a fucking it won’t soon forget.<</speech>>
<div align='center'>\
She moans in response and quickly positions herself with legs spread on the floor leaning forward on her hands on the mattress waiting for you. You rub your hard dick along her crack smearing your precum in with your saliva. It naturally gravitates to the indent made by the pucker of her hole and with just a little pressure, you find yourself slipping inside causing her to moan as you split her open.
</div>\
<<speech "player" "$fname">>You feel so fucking good. Your hole is so hot! Take my cock, Lianna. Take it all.<</speech>>
<<speech "Lianna">>Fuck! You feel good too! It has been so long since I’ve had anything except toys in me. I’ve missed this! Fuck me, $fname!<</speech>>
<div align='center'>\
With one hand on your waist and the other on hers, you begin to pump. You start slow and work yourself all the way in before speeding up. She rests her head on the mattress and rub her breasts. As you pound away at her, the rest of her body falls to the bed. Her hands grip her ass spreading it open wider as she seems eager to feel you deeper. Her moans continue to punctuate the sound of your bodies coming together.
</div>\
<video src="content/peoples/lianna/date/11.mp4" style="width: 100%;" autoplay loop></video>
<<speech "player" "$fname">>Oh fuck, that feels so good! Get on your back. Good girl!<</speech>>
<div align='center'>\
She quickly rolls over and lifts her legs obediently. You press against the back of her legs to lift her ass a bit more as you position yourself. Less than a second later, you are back inside and your hips are moving you back and forth. You love fucking in this position where you can watch her expressions and her cock bobs up and down so enticingly. You reach down to stroke it in harmony with the motion of your body against hers. You feel your balls beginning to tingle and you can tell that Lianna must be getting close too.
</div>\
<video src="content/peoples/lianna/date/12.mp4" style="width: 100%;" autoplay loop></video>
<<speech "player" "$fname">>I can’t hold back anymore. I’m going to cum. You are making me cum!<</speech>>
<<speech "Lianna">>Yes, cum on me. I want to feel your cum on my body. Do it! Cum on my tummy!<</speech>>
<div align='center'>\
You pull out and stroke as fast as your hand will go. Your eyes close as your mouth opens to emit a loud groan as you shoot your load. Lianna moans as she continues to stroke herself as she watches your dick closely. Her head flies back and then her back arches as she crosses over the brink to climax. It squirts through the air to mingle with your seed. Her hand continues the slow milking motions as she squeezes out the last pearly drips.
</div>\
<video src="content/peoples/lianna/date/13.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Lianna">>That felt so fucking good! Please tell me we can do this again sometime.<</speech>>
<<speech "player" "$fname">>It has been a great evening! Anytime Lianna. Really, any time.<</speech>>
<<speech "Lianna">>The app for the vibrator has a messaging feature. We can text and send photos as well as control our toys. Do you mind if I message you from time to time on it?<</speech>>
<<speech "player" "$fname">>That sounds like a lot of fun! I’m looking forward to it.<</speech>>
<div align='center'>\
The two of you get cleaned up and chat a bit longer before calling it a night and you head back home.
</div>\
<<zeroarousal>>\
<<takeenergy 20>>\
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<handskill>>\
<</timed>>\
<<timed 900ms>>\
<<sexskill>>\
<</timed>>\
<<set $scumcounter += 1>>\
<<set $skisscounter += 1>>\
<<set $sghjcounter += 1>>\
<<set $srblowjobcounter += 1>>\
<<set $sganalcounter += 1>>\
<<set $noorgasm = 0>>\
<<addhours 1>>\
<<set $liannarepo += 1>>\
<<button "Leave" "Map">><<set $pdollcum to false>><</button>>
\
\
\
\
\
<<elseif $pgender is "female">>\
<<set $pdollcum to true>>\
<<speech "Lianna">>So… let’s take a look at you. How shall we dress you up? Hmmm… I have a thought. It isn’t really cosplay. Do you like latex? I mean, you aren’t allergic or anything, are you?<</speech>>
<<speech "player" "$fname">>No, I’m not allergic. To be honest, I don’t have much experience with latex. Other than latex gloves of course. I’m open to trying it.<</speech>>
<<speech "Lianna">>Good! Your curves would look stunning in latex Yay! I can’t wait to dress you up. My own latex sex doll!<</speech>>
<<speech "player" "$fname">>Let’s not get too carried away. Are you going to dress up with me?<</speech>>
<<speech "Lianna">>Of course! Latex is so much more fun with a partner. It has been a long time since I’ve dressed up in latex with anyone else. You’re gonna love it!<</speech>>
<div align='center'>\
Taking your hand, she excitedly tugs you up off the couch and down the hall to her room and walk-in closet. She has a whole section with just latex clothes hanging on hangers. She flips between the outfits and then eyes you up and down before selecting a shiny red piece. She hands it to you and goes back to flipping through to select a teal-colored one.
</div>\
<<speech "Lianna">>I think that will suit you rather well. Red should go well with your dark-colored hair. It is part of a devil costume but I don’t want to take the time getting out all the accessories so we’ll just go with that one. For me, this is part of my Lara Croft latex costume from Tomb Raider.<</speech>>
<<speech "player" "$fname">>I actually saw the Tomb Raider movie. It was pretty good.<</speech>>
<<speech "Lianna">>Which one did you see? The Alicia Vikander one or the Angelina Jolie ones?<</speech>>
<<speech "player" "$fname">>Angelina was in Lara Croft? It must have been the Alicia whoever one then. It came out kind of recent, right?<</speech>>
<<speech "Lianna">>It is sort of adorable how culturally illiterate you are. You come across as delightfully innocent to the chic geek culture. Hang around me long enough and I’ll cure you of that! Anyway, this is from the Angelina version of Tomb Raider that came out in 2001 I think. I’m not going to bother with the shorts. For one they are a bit of a pain to put on and for two, I don’t think they will be staying on for long; wink, wink. I can do the gun holsters though. They shouldn’t get in the way too much, right?<</speech>>
<div align='center'>\
At Lianna’s encouragement, you strip out of all your clothes including your new toy and she helps you into your costume. It feels really snug. It feels a little cool at first but heats up quickly. It doesn’t have a cover for your breasts which makes you feel slightly self-conscious the way your breasts squeeze out of the holes in the front. Lianna in turns strips down and slips into her tight translucent latex suit and clips on the straps around her waist and thighs. Letting out a little giggle, Lianna takes both your hands and pulls you over to the couch to sit with her. She leans in to kiss you as her palms squeeze against your exposed breasts.
</div>\
<video src="content/peoples/lianna/date/14.mp4" style="width: 100%;" autoplay loop></video>
<<speech "player" "$fname">>No fair, your breasts are covered up!<</speech>>
<<speech "Lianna">>That is easy to solve!<</speech>>
<div align='center'>\
Lianna pulls down the top of her suit to expose her breasts with their hard nipples at the end. You lean in to kiss her again and the two of you make out slowly on the couch. Your lips and fingers wander as does hers as you explore each other’s latex-covered bodies.
</div>\
<video src="content/peoples/lianna/date/15.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Lianna">>Don’t you love the sound of our latex squeaking? It is a big turn-on for me. Lay back, I want to taste you. Oh, look at that pussy! And look how wet you are! Oh, this is going to be fun. Wow, look at you! You are practically dripping. My fingers just slid right in with no resistance. It seems I’m not the only one enjoying their latex. Hmmm, listen to the sound of my finger going in and out of you. Yes and your clitty is standing up at attention like a tiny little dick. It looks so yummy.<</speech>>
<div align='center'>\
As her finger continues to slide in and out of you, she leans in to give your clit a kiss. She continues planting kisses on and around it before finally taking it between her lips and sucking on it drawing out a long sigh from you. She licks along your wet lips trying to pick up all your juices with her tongue but they flowing too fast. It feels amazing though! Laying on your back, you begin to think about how hard her cock must be and begin to fantasize about it.
</div>\
<video src="content/peoples/lianna/date/16.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Before too long, your desire for the fantasy to become reality is too much and you sit up asking to switch places. She doesn’t put up too much of an argument as you push her down and your fingers slip beneath the thin latex to pull her out.
</div>\
<<speech "player" "$fname">>Oh, look at that. Look at you! You're beautiful!<</speech>>
<<speech "Lianna">>Look who’s talking!<</speech>>
<div align='center'>\
You swallow her dick whole and your cheeks go concave as you suck it deep. Her hand rests behind your head and encourages you deeper as you pleasure her cock.
</div>\
<video src="content/peoples/lianna/date/17.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Lianna">>Yes take it. Take it all. Fucking gag on it! You are so eager to eat my fucking cock.<</speech>>
<div align='center'>\
You slip your index finger down between her balls and down into the crack of her ass looking for the pucker of her hole. She nods at you encouragingly and you press the digit inside. As your head moves up and down, your finger slips in and out.
</div>\
<video src="content/peoples/lianna/date/18.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Lianna">>Fuck, you are going to make me cum. Stop stop stop, I’m not ready yet.<</speech>>
<div align='center'>\
With a giggle, you pop her out of your mouth but your finger continues to move inside her ass. With a lopsided smile, you slip a second finger in causing her eyebrows to climb her forehead.
</div>\
<<speech "Lianna">>You naughty girl! Climb up here and let me fuck that wet pussy of yours. I want you to ride me. Make those titties dance for me while I fill you with my cock.<</speech>>
<div align='center'>\
You kneel to her side and swing your leg over her. She guides her cock to your hole as you sink backward. She enters you with almost no resistance. She moans as your pussy wraps around her cock and you squeeze your pelvic muscles trying to grip her harder. She leans towards your breast and sucks on your nipple. Your head tilts back and you begin to undulate your hips causing her to move in and out of you. Her hands grip your ass and she looks up at you with a smile that makes your tummy ripple with butterflies. As you pick up your pace, she gives your ass a spank in encouragement. It seems she wants more! Trying to tease her, you slow down. She takes over as her hips begin to thrust up into you making you moan. She reaches up and pinches your nipples.
</div>\
<video src="content/peoples/lianna/date/19.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Lianna">>You like that, don’t you? I’m fucking you so deep. Your nipples are so hard. I want to fuck you harder. Get on your knees; I’m going to fuck you like the slut you are. That’s a good girl. Rest your head against the couch. Here comes mamma!<</speech>>
<<speech "player" "$fname">>Yes! Oh, fuck my pussy! Destroy it! Oh, you are so fucking pretty when you fuck me like that. Oh, fuck yeah! Fuck my little pussy! Oh, you make me so fucking wet. I love the way you feel inside me. Oh, thank you, thank you! Oh don’t stop, don’t fucking stop! You are going to make me cum!<</speech>>
\
<video src="content/peoples/lianna/date/20.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Lianna">>I’m close to but I’m not done with you. I’m going to get you off with my fingers.<</speech>>
<div align='center'>\
She shoves two fingers into your sloppy wet pussy and rubs you so fast that her hands become a blur. Your eyes go cross as you feel the waves of euphoria wash over making you shudder with your climax. As the feeling begins to subside, her fingers continue to move and you feel it building again giving you a second orgasm close on the heels of the first.
</div>\
<video src="content/peoples/lianna/date/21.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Lianna">>That was so fucking hot. I loved feeling you cum on my fingers. It’s my turn. I’m going to fuck your pussy until I cum.<</speech>>
<div align='center'>\
You just nod your head in response as your head is still spinning a bit from the double orgasm she just gave you. She slips back in easily and resumes her steady cadence as her hips thrust her wonderful dick into your juicy hole.
</div>\
<<speech "player" "$fname">>Yes, fuck me more. Fucking cum in my pussy. Breed me with your dick, Lianna.<</speech>>
<<speech "Lianna">>Oh yes, I’m going to fill your pussy with my seed. Let me knock you up, $fname. Here it comes! Take my sperm. Fuck yes!<</speech>>
<div align='center'>\
You feel her cock pulsing inside you and the warm sensation as her jizz coats the walls of your vagina giving you an indescribable thrill. Still inside you, she bends down and kisses you thoroughly.
</div>\
<video src="content/peoples/lianna/date/22.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Lianna">>That felt so fucking good! Please tell me we can do this again sometime.<</speech>>
<<speech "player" "$fname">>It has been a great evening! Anytime Lianna. Really, any time.<</speech>>
<<speech "Lianna">>The app for the vibrator has a messaging feature. We can text and send photos as well as control our toys. Do you mind if I message you from time to time on it?<</speech>>
<<speech "player" "$fname">>That sounds like a lot of fun! I’m looking forward to it.<</speech>>
<div align='center'>\
The two of you get cleaned up and chat a bit longer before calling it a night and you head back home.
</div>\
<<zeroarousal>>\
<<takeenergy 20>>\
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<handskill>>\
<</timed>>\
<<timed 900ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 1200ms>>\
<<sexskill>>\
<</timed>>\
<<set $pussysize += 1>>\
<<set $fcumcounter += 1>>\
<<set $fkisscounter += 1>>\
<<set $fghjcounter += 1>>\
<<set $frhjcounter += 1>>\
<<set $fgblowjobcounter += 1>>\
<<set $fgdeeptcounter += 1>>\
<<set $frpussylickcounter += 1>>\
<<set $frpussyfuckcounter += 1>>\
<<set $noorgasm = 0>>\
<<addhours 1>>\
<<set $liannarepo += 1>>\
<<button "Leave" "Map">><<set $pdollcum to false>><</button>>
<</if>>\
<</if>>\
<div align='center' style='font-size: 150%;'><b>Lab HR Office</b></div>\
<img src="content/location/lab_hroffice.jpg">
\
<<if $workwarning == 3>>\
<img src="content/peoples/venus/office/office1.jpg" style="max-width: 100%;">
\
<<speech "Venus">>Good Day $fname $lname ! This is your disciplinary interview. If you can not explain what is the reason to missing your workdays, then you will be fired. Sit Down!<</speech>>
<<button "Sit down" "Event: Venus Office 1">><<set $voffice = 0>><</button>>
\
\
\
\
\
<<else>>\
<div align='center'>\
The office is closed.
</div>\
<<button "Leave" "Lab Reception">><</button>>
<</if>>\
<<if $voffice == 0>>\
<img src="content/peoples/venus/office/office2.jpg" style="max-width: 100%;">
\
<<speech "Venus">>I am listening!<</speech>>
<<speech "player" "$fname">>The truth is I didn't feel well and I had to stay at home.<</speech>>
<<speech "Venus">>Do you expect me to believe you? Do you have any idea how close you are to be terminated?<</speech>>
<<button "Just listen" "Event: Venus Office 1">><<set $voffice = 1>><</button>>
\
\
\
<<elseif $voffice == 1>>\
<img src="content/peoples/venus/office/office3.jpg" style="max-width: 100%;">
\
<<speech "Venus">>You have two choices! You can stick to your stupid story and get fired or you can pleasure me and I will clear your files.<</speech>>
<<button "Stick to your story" "Ending HR Office">><</button>>
<<button "Pleasure Her" "Event: Venus Office 1">><<set $voffice = 2>><</button>>
\
\
\
<<elseif $voffice == 2>>\
<img src="content/peoples/venus/office/office4.jpg" style="max-width: 100%;">
\
<<speech "Venus">>Smart choice. Let's start the business. Come here and kiss me!<</speech>>
<<if $pgender is "female">>\
<<button "Obey" "Event: Venus Office Female">><<set $pdollsex to true>><<set $scene = 1>><<set $workwarning = 0>><<set $voffice = 0>><<set $venuscum to false>><</button>>
<<elseif $pgender is "male">>\
<<button "Obey" "Event: Venus Office Male">><<set $pdollsex to true>><<set $scene = 1>><<set $workwarning = 0>><<set $voffice = 0>><<set $venuscum to false>><</button>>
<<else>>\
<<button "Obey" "Event: Venus Office Shemale">><<set $pdollsex to true>><<set $scene = 1>><<set $workwarning = 0>><<set $voffice = 0>><<set $venuscum to false>><</button>>
<</if>>\
<</if>>\
<<if $CurEN == 0 and $CurOG < $MaxOG and $venuscum is false>>\
<div align='center'>\
You run out of energy and can not make her cum.
</div>\
<img src="content/peoples/venus/dis.jpg" style="max-width: 100%;">
\
<<speech "Venus">>I am very disappointed. I let you go now, but I want you to finish me if I see you again.<</speech>>
<<button "Leave" "Lab Reception">><<set $pdollsex to false>><</button>>
\
\
\
<<elseif $CurAR >= $MaxAR and $CurOG < $MaxOG and $locked is false and $venuscum is false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<video src="content/peoples/venus/office/mcum.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You cum too early, and she is not happy about it.
</div>\
<img src="content/peoples/venus/dis.jpg" style="max-width: 100%;">
\
<<zeroarousal>>\
<<set $noorgasm = 0>>\
<<set $mcumcounter += 1>>\
<<speech "Venus">>I am very disappointed. I let you go now, but I want you to finish me if I see you again.<</speech>>
<<button "Leave" "Lab Reception">><<set $pdollcum to false>><</button>>
\
\
\
<<elseif $CurOG >= $MaxOG>>\
<<set $venuscum to true>>\
<video src="content/peoples/venus/office/mcummed.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is spraying her hot cum all over your body.
</div>\
<<set $CurOG = 0>>\
<<willingness>>\
<<set $venusrepo += 1>>\
<<if $locked is true>>\
<<speech "Venus">>You weren't that bad. I will clear your files. You are free to go now.<</speech>>
<div align='center'>\
Your penis is locked, so you can not cum.
</div>\
<<button "Leave" "Lab Reception">><<set $pdollsex to false>><</button>>
<<else>>\
<<speech "Venus">>You weren't that bad.<</speech>>
<<button "Cum" "Event: Venus Office Male">>
<<set $scene = 10>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<takeenergy 2>>\
<</button>>
<</if>>\
\
\
\
<<elseif $scene == 1>>\
<video src="content/peoples/venus/office/mkiss.mp4" style="width: 100%;" autoplay loop></video>
<<tongueskill>>\
<<set $mkisscounter += 1>>\
\
\
\
<<elseif $scene == 2>>\
<video src="content/peoples/venus/office/msuck.mp4" style="width: 100%;" autoplay loop></video>
<<blowjobskill>>\
<<set $mgblowjobcounter += 1>>\
\
\
\
<<elseif $scene == 3>>\
<video src="content/peoples/venus/office/msucked.mp4" style="width: 100%;" autoplay loop></video>
<<sexskill>>\
<<set $mrblowjobcounter += 1>>\
\
\
\
<<elseif $scene == 4>>\
<video src="content/peoples/venus/office/mlick.mp4" style="width: 100%;" autoplay loop></video>
<<tongueskill>>\
\
\
\
<<elseif $scene == 5>>\
<video src="content/peoples/venus/office/mlicked.mp4" style="width: 100%;" autoplay loop></video>
<<sexskill>>\
\
\
\
<<elseif $scene == 6>>\
<video src="content/peoples/venus/office/mfuck.mp4" style="width: 100%;" autoplay loop></video>
<<sexskill>>\
<<set $mganalcounter += 1>>\
\
\
\
<<elseif $scene == 7>>\
<video src="content/peoples/venus/office/mfucked.mp4" style="width: 100%;" autoplay loop></video>
<<sexskill>>\
<<set $mranalcounter += 1>>\
<<set $analsize += 1>>\
\
\
\
<<elseif $scene == 10>>\
<video src="content/peoples/venus/office/mcum.mp4" style="width: 100%;" autoplay loop></video>
<<zeroarousal>>\
<<set $noorgasm = 0>>\
<<set $mcumcounter += 1>>\
<<speech "Venus">>I will clear your files. You are free to go now.<</speech>>
<<button "Leave" "Lab Reception">><<set $pdollcum to false>><</button>>
<</if>>\
<<if $scene < 10 and $venuscum is false>>\
<div align='center' style='color:#f0ffff;'><b>Venus`s Orgasm Level</b></div>
<div id="horizontalorgasmbarbkg" class="hzbarbkg">\
<div id="horizontalorgasmbar" class="hzbar">\
</div>\
</div>\
<<script>>$(document).one(':passagerender', function (ev) {
Orgasm(State.variables.CurOG, State.variables.MaxOG, "horizontalorgasmbar", true, ev.content);
});<</script>>
\
<<button "Kiss her" "Event: Venus Office Male">>
<<set $scene = 1>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<<button "Suck her" "Event: Venus Office Male">>
<<set $scene = 2>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<<if $locked is true>>\
<div align ='center'>\
Your cock is locked, and you can't use it.
</div>\
<<else>>\
<<button "Get sucked" "Event: Venus Office Male">>
<<set $scene = 3>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<</if>>\
<<button "Lick her" "Event: Venus Office Male">>
<<set $scene = 4>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<<button "Get licked" "Event: Venus Office Male">>
<<set $scene = 5>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<<if $locked is true>>\
<div align ='center'>\
Your cock is locked, and you can't use it.
</div>\
<<else>>\
<<button "Fuck her" "Event: Venus Office Male">>
<<set $scene = 6>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<</if>>\
<<button "Get fucked" "Event: Venus Office Male">>
<<set $scene = 7>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<</if>>\<<if $CurEN == 0 and $CurOG < $MaxOG and $venuscum is false>>\
<div align='center'>\
You run out of energy and can not make her cum.
</div>\
<img src="content/peoples/venus/dis.jpg" style="max-width: 100%;">
\
<<speech "Venus">>I am very disappointed. I let you go now, but I want you to finish me if I see you again.<</speech>>
<<button "Leave" "Lab Reception">><<set $pdollsex to false>><</button>>
\
\
\
<<elseif $CurAR >= $MaxAR and $CurOG < $MaxOG and $locked is false and $venuscum is false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<video src="content/peoples/venus/office/fcum.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You cum too early, and she is not happy about it.
</div>\
<img src="content/peoples/venus/dis.jpg" style="max-width: 100%;">
\
<<zeroarousal>>\
<<set $noorgasm = 0>>\
<<set $fcumcounter += 1>>\
<<speech "Venus">>I am very disappointed. I let you go now, but I want you to finish me if I see you again.<</speech>>
<<button "Leave" "Lab Reception">><<set $pdollcum to false>><</button>>
\
\
\
<<elseif $CurOG >= $MaxOG>>\
<<set $venuscum to true>>\
<<if $locked is true>>\
<video src="content/peoples/venus/office/fcumlocked.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You pussy is locked so she finish in your mouth.
</div>\
<<set $CurOG = 0>>\
<<willingness>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $fcumswallowcounter += 1>>\
<<set $venusrepo += 1>>\
<<speech "Venus">>You weren't that bad. I will clear your files. You are free to go now.<</speech>>
<<button "Leave" "Lab Reception">><<set $pdollsex to false>><</button>>
\
\
\
<<else>>\
<video src="content/peoples/venus/office/fcummed.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is filling up your pussy with her hot cum.
</div>\
<</if>>\
<<speech "Venus">>You weren't that bad.<</speech>>
<<set $CurOG = 0>>\
<<willingness>>\
<<set $venusrepo += 1>>\
<<button "Cum" "Event: Venus Office Female">>
<<set $scene = 10>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<takeenergy 2>>\
<</button>>
\
\
\
<<elseif $scene == 1>>\
<video src="content/peoples/venus/office/fkiss.mp4" style="width: 100%;" autoplay loop></video>
<<tongueskill>>\
<<set $fkisscounter += 1>>\
\
\
\
<<elseif $scene == 2>>\
<video src="content/peoples/venus/office/fsuck.mp4" style="width: 100%;" autoplay loop></video>
<<blowjobskill>>\
<<set $fgblowjobcounter += 1>>\
\
\
\
<<elseif $scene == 3>>\
<video src="content/peoples/venus/office/flicked.mp4" style="width: 100%;" autoplay loop></video>
<<sexskill>>\
<<set $frpussylickcounter += 1>>\
\
\
\
<<elseif $scene == 4>>\
<video src="content/peoples/venus/office/fpussyfucked.mp4" style="width: 100%;" autoplay loop></video>
<<sexskill>>\
<<set $frpussyfuckcounter += 1>>\
<<set $pussysize += 1>>\
\
\
\
<<elseif $scene == 5>>\
<video src="content/peoples/venus/office/fanalfucked.mp4" style="width: 100%;" autoplay loop></video>
<<sexskill>>\
<<set $franalcounter += 1>>\
<<set $analsize += 1>>\
\
\
\
<<elseif $scene == 10>>\
<video src="content/peoples/venus/office/fcum.mp4" style="width: 100%;" autoplay loop></video>
<<zeroarousal>>\
<<set $noorgasm = 0>>\
<<set $fcumcounter += 1>>\
<<speech "Venus">>I will clear your files. You are free to go now.<</speech>>
<<button "Leave" "Lab Reception">><<set $pdollcum to false>><</button>>
<</if>>\
<<if $scene < 10 and $venuscum is false>>\
<div align='center' style='color:#f0ffff;'><b>Venus`s Orgasm Level</b></div>
<div id="horizontalorgasmbarbkg" class="hzbarbkg">\
<div id="horizontalorgasmbar" class="hzbar">\
</div>\
</div>\
<<script>>$(document).one(':passagerender', function (ev) {
Orgasm(State.variables.CurOG, State.variables.MaxOG, "horizontalorgasmbar", true, ev.content);
});<</script>>
\
<<button "Kiss her" "Event: Venus Office Female">>
<<set $scene = 1>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<<button "Suck her" "Event: Venus Office Female">>
<<set $scene = 2>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<<if $locked is true>>\
<div align ='center'>\
Your pussy is locked, and you can't use it.
</div>\
<<else>>\
<<button "Get licked" "Event: Venus Office Female">>
<<set $scene = 3>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<<button "Get pussy fucked" "Event: Venus Office Female">>
<<set $scene = 4>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<</if>>\
<<button "Get anal fucked" "Event: Venus Office Female">>
<<set $scene = 5>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<</if>>\<<if GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun">>\
<img src="content/location/officedoor.jpg" style="max-width: 80%;">
\
<div align='center'>\
Mariana's office locked. She is not working over the weekends.
</div>\
<<button "Leave" "Lab Reception">><</button>>
\
\
\
\
\
<<else>>\
<<addarousal 20>>\
<<if $ht == 4>>\
<<if $mdcheckup is false>>\
<div align='center'>\
You give the door a polite knock and step into Mariana’s office.
</div>\
<img src="content/trans/9.jpg" style="max-width: 80%;">
\
<<speech "player" "$fname">>Hello Mariana.<</speech>>
<<speech "Mariana">>Hi $fname. Please pull down your pants and turn around so I can inspect you.<</speech>>
<div align='center'>\
A bit embarrassed at her abrupt request and stern tone, you follow her instructions.
</div>\
<<if $currUnderwear != "underwear2">>\
<div align='center'>\
You are not wearing Chanel`s panties.
</div>\
<<speech "Mariana">>Weren’t my instructions clear? I thought I was quite explicit when I said that you needed to be wearing your panties $fname. Why are you wasting my time? You will have to pay for that… And I know just how too.<</speech>>
<div align='center'>\
Mariana leans back on the desk and pulls her skirt up showing the thick pole she hides between her legs. She gives it a few strokes bringing it to full staff and gives you a sultry look over her glasses.
</div>\
<img src="content/trans/10.jpg" style="max-width: 60%;">
\
<<speech "Mariana">>Yes, you and my third leg here will be spending some quality time together this evening. Now get the fuck out of my office!<</speech>>
<<button "Leave" "Lab Reception">><<set $mdcheckup to true>><<set $mpunishment to true>><</button>>
\
\
\
<<else>>\
<img src="content/trans/11.jpg" style="max-width: 50%;">
\
<<speech "Mariana">>Well done. Don’t they feel so nice against your skin? So much better than the boring underwear that you have been wearing all your life. I’m pleased to see that you followed my orders. If you keep this up, you will soon find that your dreams of being a cute and happy woman become a reality. How do you feel?<</speech>>
<<speech "player" "$fname">>Well, to be honest, I’m surprised at how quickly I’m adjusting. It felt a little odd wearing the panties at first but now they feel so natural on me.<</speech>>
<<speech "Mariana">>That is lovely dear. I’m glad to hear it. You can return to your work now. Be sure to check in with me every workday. That will be all.<</speech>>
<<speech "player" "$fname">>Thank you, Mariana.<</speech>>
<<button "Leave" "Lab Reception">><<set $mdcheckup to true>><<set $mpunishment to false>><<set $htpoint += 1>><</button>>
<</if>>\
\
\
\
<<else>>\
<img src="content/trans/12.jpg" style="max-width: 80%;">
\
<<speech "Mariana">>I already checked you today. Leave me alone, I am busy.<</speech>>
<<button "Leave" "Lab Reception">><</button>>
<</if>>\
\
\
\/* SECOND TYPE CHECK */
\
\
<<elseif $ht >= 5 and $ht < 11>>\
<<if $mdcheckup is false>>\
<img src="content/trans/9.jpg" style="max-width: 80%;">
\
<<speech "player" "$fname">>Hello Mariana. I’m here for my checkup.<</speech>>
<<speech "Mariana">>Hello $fname. It is good to see you. You know what to do.<</speech>>
<<if $currUnderwear != "underwear2" or $currBra != "bra1">>\
<div align='center'>\
You are not wearing the right clothes.
</div>\
<<speech "Mariana">>Weren’t my instructions clear? I thought I was quite explicit when I said that you needed to be wearing your bra and panties $fname. Why are you wasting my time? You will have to pay for that… And I know just how too.<</speech>>
<div align='center'>\
Mariana leans back on the desk and pulls her skirt up showing the thick pole she hides between her legs. She gives it a few strokes bringing it to full staff and gives you a sultry look over her glasses.
</div>\
<img src="content/trans/10.jpg" style="max-width: 60%;">
\
<<speech "Mariana">>Yes, you and my third leg here will be spending some quality time together this evening. Now get the fuck out of my office!<</speech>>
<<button "Leave" "Lab Reception">><<set $mdcheckup to true>><<set $mpunishment to true>><</button>>
\
\
\
<<else>>\
<div align='center'>\
<video src="content/trans/1.mp4" style="width: 70%;" autoplay loop></video>
</div>\
<<speech "Mariana">>Mmmmm, yes. Very good $fname. They look rather good on you I think. That will be all. I’ll see you at home.<</speech>>
<<speech "player" "$fname">>Thank you, Mariana. Goodbye.<</speech>>
<<button "Leave" "Lab Reception">><<set $mdcheckup to true>><<set $mpunishment to false>><<set $htpoint += 1>><</button>>
<</if>>\
\
\
\
<<else>>\
<img src="content/trans/12.jpg" style="max-width: 80%;">
\
<<speech "Mariana">>I already checked you today. Leave me alone I am busy.<</speech>>
<<button "Leave" "Lab Reception">><</button>>
<</if>>\
\
\
\
\
\
<<elseif $ht >= 11 and $ht < 21>>\
<<if $mdcheckup is false>>\
<img src="content/trans/9.jpg" style="max-width: 80%;">
\
<<speech "player" "$fname">>Hello Mariana. I’m here for my checkup.<</speech>>
<<speech "Mariana">>Hello $fname. It is good to see you. Let me check your body.<</speech>>
<<if $facialhair >= 4 or $bodyhair >= 5>>\
<<speech "Mariana">>Weren’t my instructions clear? I thought I was quite explicit when I said that you needed to do your eyebrows and shave your legs $fname. Why are you wasting my time? You will have to pay for that… And I know just how too.<</speech>>
<div align='center'>\
Mariana leans back on the desk and pulls her skirt up showing the thick pole she hides between her legs. She gives it a few strokes bringing it to full staff and gives you a sultry look over her glasses.
</div>\
<img src="content/trans/10.jpg" style="max-width: 60%;">
\
<<speech "Mariana">>Yes, you and my third leg here will be spending some quality time together this evening. Now get the fuck out of my office!<</speech>>
<<button "Leave" "Lab Reception">><<set $mdcheckup to true>><<set $mpunishment to true>><</button>>
\
\
\
<<else>>\
<div align='center'>\
<video src="content/trans/1.mp4" style="width: 70%;" autoplay loop></video>
</div>\
<<if $htpoint >= 5 and $questtracking >= 11>>\
<<speech "Mariana">>Well done $fname. You have been very good and have followed all my instructions. Your body has stayed clean, your body shaved, and have been wearing proper clothes. You have demonstrated that you can be a lovely woman. You have earned the freedom to be the woman you have always wanted to be. Make your female serum and on Sunday night, we will help you transition back to your female body.<</speech>>
<<speech "player" "$fname">>Oh, thank you so much, Mariana. I have been dreaming of this day. I am grateful.<</speech>>
<div align='center'>\
All your patience has finally paid off! Playing Mariana’s little transformation game has finally ended it seems and now you can focus on freeing your parents. You are so happy that you could almost cry.
</div>\
<<button "Leave" "Lab Reception">><<set $mdcheckup to true>><<set $mpunishment to false>><<set $htlast to true>><</button>>
\
\
\
<<else>>\
<<speech "Mariana">>Mmmmm, yes. Very good $fname. Nice plucked eyebrows and clean shaved legs. Keep it up like that and I will let you know when you will be ready for your last test.<</speech>>
<<speech "player" "$fname">>Thank you, Mariana. Goodbye.<</speech>>
<<button "Leave" "Lab Reception">><<set $mdcheckup to true>><<set $mpunishment to false>><<set $htpoint += 1>><</button>>
<</if>>\
<</if>>\
\
\
\
<<else>>\
<img src="content/trans/12.jpg" style="max-width: 80%;">
\
<<speech "Mariana">>I already checked you today. Leave me alone I am busy.<</speech>>
<<button "Leave" "Lab Reception">><</button>>
<</if>>\
\
\
\
<<else>>\
<img src="content/trans/9.jpg" style="max-width: 80%;">
\
<<speech "Mariana">>Hello $fname. It is good to see you. I am missing our checkups<</speech>>
<div align='center'>\
Mariana leans back on the desk and pulls her skirt up showing the thick pole she hides between her legs. She gives it a few strokes bringing it to full staff and gives you a sultry look over her glasses.
</div>\
<img src="content/trans/10.jpg" style="max-width: 60%;">
<<button "Leave" "Lab Reception">><</button>>
<</if>>\
<</if>>\
<div align='center' style='font-size: 150%;'><b>Lab Elevator</b></div>\
<img src="content/location/elevator.jpg" style="max-width: 40%;">
\
<<if $labside == 2>>\
<div align='center'>\
Well, no time like the present, right? Into the great unknown. Time to test the access and see what is down there. It can’t be that bad.
You walk boldly over to the elevator trying to look like you do this every day and press the call button. It chimes as the door opens revealing a well light but sterile metal box. Stepping inside, you turn to face the row of buttons along the wall. You weren’t sure what to expect but you were not expecting there to be THIS many buttons. Which one should you try?
You figure no place to start like at the top so you press the top button B1. You feel the elevator drop briefly and after only a single chime, the door opens. You step out into the hallway.
</div>\
<<button "B1 - Male body only" "B1">><<set $labside = 3>><<set $b1 = 1>><<set $b4 = 1>><</button>>
\
\
\
<<else>>\
<<if $CurEN >= 10>>\
<<button "G" "Lab Reception">><</button>>
<<button "B1 - Male body only" "B1">><</button>>
<<if $b4 == 4 and $pgender is "shemale">>\
<<button "B4" "B4">><</button>>
<<elseif $b4 == 4>>\
<<button "B4" "B4">><<set $b4 = 3>><</button>>
<<else>>\
<<button "B4" "B4">><</button>>
<</if>>\
<<if $pgender is "male">>\
<<button "B6" "B6">><<set $scene = 1>><</button>>
<<else>>\
B6 - male body only.
<</if>>\
<<else>>\
<div align='center'>\
You don't have enough energy to explore the lower levels.
</div>\
<<button "Leave" "Lab Reception">><</button>>
<</if>>\
<</if>>\
<<if $pgender is "male">>\
<<if $b1 == 1>>\
<img src="content/location/b1.jpg">
\
<div align='center'>\
You look around buttoning in mild surprise. At the end of a short hallway, you step out into what looks like a common household livingroom. The furnishings look very typical for a middle-class home. If you hadn’t just walked out of an elevator, you would swear that you had just stepped through the front door of someone’s house.
</div>\
<img src="content/location/b1room.jpg">
\
<<speech "Random" "Woman">>Hello? Is someone here?<</speech>>
<div align='center'>\
You quickly duck behind a couch as you see movement from the corner of your eye as someone walks in from the next room over.
</div>\
<<button "Hide" "B1">><<set $b1 = 2>><</button>>
\
\
\
\
\
<<elseif $b1 == 2>>\
<<speech "Random" "Woman">>What are you doing down there dear? Did you drop something? Stand up for me please.<</speech>>
<div align='center'>\
Your heart is beating fast and you feel your cheeks flushing with embarrassment at being caught so soon.
</div>\
<<speech "Random" "Woman">>Well, hello there. Who are you then? I wasn’t expecting anyone. Did Mariana send you?<</speech>>
<div align='center'>\
All you can do is silently nod your head as you are completely tongue-tied.
</div>\
<<speech "Random" "Woman">>Well, aren’t you precious?! You look like I’m about to pounce on your and gobble you up. Relax dear and tell me your name, won’t you?<</speech>>
<<speech "player" "$fname">>I'm... I'm $fname.<</speech>>
<<speech "B1" "Doctor Quinn">>Good boy. You are a good boy, aren’t you? I’m Doctor Quinn but everyone calls me Mommy. Would you like to call me Mommy? You would like that, wouldn't you? Yes, you do because you are a good boy. Such a good boy for Mommy.<</speech>>
<img src="content/peoples/b1/1.jpg">
\
<<speech "player" "$fname">>Uhm... yes Mommy.<</speech>>
<<speech "B1" "Doctor Quinn">>I can see right away that you are a good boy. Come now, let's get better acquainted. Have a seat for me dear.<</speech>>
<<button "Sit down" "B1">><<set $b1 = 3>><</button>>
\
\
\
\
\
<<elseif $b1 == 3>>\
<div align='center'>\
I sit on the couch and feel yourself sinking deep into the cushions. Doctor Quinn sits uncomfortably close to you on the couch and you feel the heat of her body through her skirt on your thigh. You turn your head to take in the peculiar sight of her which strangely seems to suit this odd place beneath the lab. With her bright red hair piled atop her head in what resembles a bulbous bouffant from the ‘60s, the dark sunglasses covering her eyes, bright red lipstick, the tight button-up shirt pushed out by her breasts and exaggerated by the tight corset around her waist, and the black skirt going down to her knees and the dark stalkings with high heels. She reminds you a lot of Christina Hendricks from the TV show Mad Men. She purses her lips as she seems to be weighing you in her mind and considering something.
</div>\
<<speech "B1" "Doctor Quinn">>You are probably wondering about my sunglasses, aren’t you? I have a sensitivity to light. Even with the lights dimmed here, I still need a little help to prevent me from squinting all the time. And you know what squinting does, right? Crows feet. We can’t have wrinkles on mommies eyes now can we? No no no, that just wouldn’t do. So, you are going to be my new test subject? I’ve been waiting for weeks to have one sent to me. I’m so glad you came! I can tell that you are going to do so well for Mommy. Do you have any questions for Mommy before we begin? I think we should get started right away. No time like the present. We can continue to get acquainted while we work together.<</speech>>
<div align='center'>\
She stands and pulls out a padded stool and sits down crossing her thighs in her skirt. She looks over at you expectantly as she waves you closer.
</div>\
<<speech "B1" "Doctor Quinn">>Come closer baby. Take off your pants please. Let’s see what you have to work with here.<</speech>>
<<speech "player" "$fname">>My pants? Uhm… Doctor Quinn… Doctor Cordoba didn’t tell me what to expect. What is it that you need me for?<</speech>>
<<speech "B1" "Doctor Quinn">>Oh, she didn’t, did she? How interesting. And please, just call me Mommy dear. Well, I’ve been working on a fertility treatment that makes changes to the germ cells in the seminiferous tubules inside your testicles altering how your sperm is produced. Suffice it to say that we make your little swimmers much more potent. We’ll leave it at that for now. Won’t you please drop your drawers sweat heart?<</speech>>
<<button "Obey" "B1">><<set $b1 = 4>><</button>>
\
\
\
\
\
<<elseif $b1 == 4>>\
<div align='center'>\
You slowly unfasten your pants and push them down to your ankles. You can’t see her eyes but you can tell that they are looking very intently at your genitals. As you stand up, her hand slowly reaches out and cups your dangling balls and caresses them gently. You feel a shiver run up your spine and your cock begins to harden rapidly. She coos softly as she continues to fondle the delicate sack containing your family jewels until your erection pulls it up out of her hands.
</div>\
<video src="content/peoples/b1/1.mp4" style="width: 100%;" autoplay loop></video>
<<speech "B1" "Doctor Quinn">>Oh, what a good boy! Look what you brought for mommy. Very nice darling… so nice. They feel so full for me. I don’t think I’ll have much trouble getting a couple of samples from you today. We’ll start with the base sample. Be a good boy and just hold still for me, okay baby? Can you do that for Mommy?<</speech>>
<<addarousal 50>>\
<<button "Hold it" "B1">><<set $b1 = 5>><</button>>
\
\
\
\
\
<<elseif $b1 == 5>>\
<div align='center'>\
Holding you by your cock, she pulls you close so you are straddling her crossed legs. Once she has you positioned where she wants you, oner hand wraps itself around your dangling balls while the other begins to slowly stroke up and down the shaft. Her hand tugs down on your sack and just as it reaches the bottom, her hand slides up from the base of your dick and over the knob. She continues this slow rhythm over and over. The pace is so maddeningly slow that you feel yourself begin to push back against her hand but due to the way she stroking you, your efforts to accelerate are useless. Doctor Quinn continues to coo soft words to you continuing to call you a ‘good boy’ as she not so much as strokes you as she is milking your dick. Not sure what to do with your hands, they grip your shirt as you try your best to control yourself. You want nothing more than to grab her hands and begin pumping against them hard to reach your release.
</div>\
<video src="content/peoples/b1/2.mp4" style="width: 100%;" autoplay loop></video>
<<speech "B1" "Doctor Quinn">>Do you want to cum baby? I can feel you getting close. Ask Mommy to cum. Good boys ask for permission first. Be a good boy for Mommy. That’s it. I can feel you so close now. I’m not going to let you cum just yet. We need to get you good and ready first. I want a good sample for your first time. Can you wait for me baby? Just keep it right there. I’m not ready for you yet.<</speech>>
<<addarousal 50>>\
<<button "Try to hold it" "B1">><<set $b1 = 6>><</button>>
\
\
\
\
\
<<elseif $b1 == 6>>\
<div align='center'>\
You groan in frustration. You feel yourself just about to the edge. You need to cum so fucking bad! It is all you can do to hold yourself still while she reaches over to a table and opens the drawer to pull out a small collection cup. She settles herself back between your legs and her touch sends a jolt down your spine to your balls making them tingle. As she begins to milk you again, it becomes more than you can bear and reach down with one hand and begin to furious wank your cock. It only takes three quick pumps and you are shooting your load across Doctor Quinn’s silky smooth nylons as she looks at you sternly with both hands on her hips.
<video src="content/peoples/b1/3.mp4" style="width: 100%;" autoplay loop></video>
She silently picks up the cup and scoops the chunky cum into it and sets it on the table as she considers you with a frown on her face.
</div>\
<img src="content/peoples/b1/2.jpg">
\
<<speech "B1" "Doctor Quinn">>That was bad. Bad boy… I'm so disappointed with you. You didn’t wait for Mommy! You made a mess all over Mommy’s nice stalkings. What are we going to do with you? Tsk, tsk tsk… First you break into my lab, you lie about why you are here and then you ruin my sample! I think we are going to have to tie you up to make you more manageable. Hush now, I don’t want to hear it. There is nothing you can say right now to make this better so best to just keep quiet, okay baby? I’m going to give you another chance. Just stay right there for Mommy and I’ll be right back.<</speech>>
<<zeroarousal>>\
<<willingness>>\
<<takeenergy 10>>\
<<set $noorgasm = 0>>\
<<set $mcumcounter += 1>>\
<<set $mrhjcounter += 1>>\
<<button "Wait" "B1">><<set $b1 = 7>><</button>>
\
\
\
\
\
<<elseif $b1 == 7>>\
<div align='center'>\
She walks quietly out of the room and you watch her beautiful ass move in her tight skirt as she goes. Your head is reeling as it races to figure out the situation you are in and how to get yourself out. You don’t have long to wait as she comes back less than a minute later with something dark dangling from her hand. She stands right in front of you and as you look up into her dark glasses, she wraps a collar around your neck and you hear it click into place. The collar is connected to a short leash that she holds in her hands. She beckons you to follow and begins to walk out the door. You are taken to another room that resembles more of a sex dungeon with shackles on crosses and frames, some different sized sex toys as well as various punishment implements such as whips and crops. She leads you over to a metal frame with shackles hanging from the top.
<img src="content/peoples/b1/3.jpg">
\
She clicks your collar to the fastening and removes the leash. She then locks both your hands in their shackles leaving you with your head and hands held upright in a very supplicative pose.
</div>\
<<speech "B1" "Doctor Quinn">>There, that is much much better baby. You look much better like this anyway. Oh, and look at this… you are hard again already. I think someone LIKES being locked up. Now you are going to be a good boy for me. You don’t have any choice. Would you like to hear more about what I’m working on? Now that I know you aren’t going anywhere, it is safe to tell you. The fertility drug I’m working on does a few interesting things. First, it greatly increases the rate at which you produce semen. The semen that is produced is much more virile as well. The little swimmers from my drug can stay viable much longer than normal. Doesn’t that sound lovely? Well, there are some side effects, unfortunately. The sperm doesn’t die off so quickly, even inside your testicles and they continue to accumulate until they are… released. To put it mildly, the test subjects thus far have had an unfortunate case of severe and almost constant blue balls. What’s more, the medication seems to have an addictive nature to it. The patients, despite their clear discomfort, continue to yearn and even crave for more. It is still a work in progress. I have taken pity on my dear test subjects by helping them in their times of need. Helping them to… release their pent up need. They have all become my babies, born of the trial medication they have volunteered to test. And they all so gladly call me Mommy. And now you, my dear… You are going to be my next test subject. And Mommy is going to take good care of you.<</speech>>
<<speech "player" "$fname">>What happened to all your previous test subjects?<</speech>>
<<speech "B1" "Doctor Quinn">>Oh, don’t trouble yourself. They are all well and fine. The drug isn’t as awful as all that. Once they go through the withdrawals, they eventually return to normal for the most part. Now then, let’s get you started. The drug is taken orally. It has a milky somewhat chalky taste on its own but I’ve given it a bit of flavor making it taste a bit like sweetened cream. I’m told that it is rather pleasant to take. But you, as this is your first time and you have been a naughty boy, I think I’m going to adjust a favorite toy of a previous subject. He enjoyed taking the medication through a modified penis pacifier while I milked him of his excess cum. For you, I’m going to slip the pacifier into a gag to make sure you don’t spit it out. With your hands bound and your mouth gaged, I will be able to get the unsullied baseline sample I need from you. I trust you won’t thrash too badly for me. I’d hate to have to call security and let you try to explain how and why you came to be down in my lab. No? Good boy. Now, just stay there while I prepare your first dose.<</speech>>
<<button "Wait" "B1">><<set $b1 = 8>><</button>>
\
\
\
\
\
<<elseif $b1 == 8>>\
<div align='center'>\
When she returns, she has a sample cup in one hand and a vial of a milky white fluid in the other. She walks over to a cabinet with deep toys and picks up what looks like a small penis attached to the base of a large baby pacifier.
<img src="content/peoples/b1/4.jpg">
\
With a twist, the base is removed and she pours in the syrupy fluid then the base is replaced. Walking over to the rack of BDSM items, she picks up a penis gag and removes the black dildo and slips the drug-filled penis in. She turns to face you and considers you for a few seconds as a smile grows in her face.
</div>\
<<speech "B1" "Doctor Quinn">>Alright sweetie, let's begin. Open wide for Mommy. There's a good boy. Such a good boy. Don't make me force this in. It will go easier for you to just go with this. Good boy.<</speech>>
\
<video src="content/peoples/b1/4.mp4" style="width: 100%;" autoplay loop></video>
<<speech "B1" "Doctor Quinn">>Now close your lips around it and suck. The drug will come out as you do. You can think of it as Mommy's milk or maybe you prefer to think of it as cum. Now then, we are all fastened now. Comfy dear? Good… good boy. You are already so hard. I see you are going to be such a good boy for Mommy.<</speech>>
<<addarousal 50>>\
<<button "Continue" "B1">><<set $b1 = 9>><</button>>
\
\
\
\
\
<<elseif $b1 == 9>>\
<div align='center'>\
The gag in your mouth is not too tight and you find that you can talk a little through it even if it makes you mumble. The drug begins to ooze from the tip of the little penis and it slides across your tongue. The taste is rather pleasant. You find yourself suckling at it and enjoy the sticky substance as it passes through your mouth and down your throat. Mommy Quinn has pulled out an identical padded stool to the previous one in the other room and once more settled between your legs with her luscious legs crossed over each other beneath you. You let out a low groan as she wraps her hands around your hard dick and brings you closer to her nylon covered leg.
</div>\
<<speech "B1" "Doctor Quinn">>I made it too easy for you to cum last time. You are going to have to work for it now sweetie. Rub yourself on my leg. Make yourself feel good for me baby. Just rub for me. Just be a good boy and rub for Mommy. Thank you. That’s a good boy. Just slide over. Good boy. Thank you. Does that feel soft? Rub your balls for me too. We don’t want to neglect them. You just rub, I’ll guide you.<</speech>>
\
<video src="content/peoples/b1/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Using just a light pressure with her fingers, she presses your erection down giving it a gentle contact with the silky texture of the fabric on her leg. The sensation is as tantalizing as it is exquisite and her constant encouragement elevates the experience. The heady liquid continues to ooze from the tip of the rubber cock and you feel your body begin to tingle. You are not certain if the drug is already having an effect on you or if this is purely her doing. However, you find yourself mumbling through the gag yearning for more contact.
</div>\
<<addarousal 50>>\
<<button "Continue" "B1">><<set $b1 = 10>><</button>>
\
\
\
\
\
<<elseif $b1 == 10>>\
<<speech "B1" "Doctor Quinn">>There you go. Now get your spot on there. Rub your spot on there. Be a good boy and rub your spot. Good boy. That is being a good boy for Mommy. Your dribbling now for me. Look at how excited you are being. You need to calm down. Just focus on your rubbing. I’ll take good care of you. I just want you to enjoy your rub. Don’t rush through it. There you go. Thank you. Don’t cum yet. No, don’t cum yet. You don’t want to spoil it. Don’t disappoint Mommy. Hold it off. Thank you. Thank you so much. There you go. Oh, more dribbles for Mommy. Good boy. No, not yet. Hold it off. Be a good boy and hold it off. Thank you. There you go. Up on your tippy-toes. Just keep rubbing. There you go. Is it so slippery? Just dribbling a little bit more. Getting all swollen for me. That’s a good boy. I’m just going to push back against you a little bit. Good boy.<</speech>>
\
<video src="content/peoples/b1/6.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 50>>\
<<button "Continue" "B1">><<set $b1 = 11>><</button>>
\
\
\
\
\
<<elseif $b1 == 11>>\
<div align='center'>
You begin to plead with her to allow you to cum. You put all the pitiful and plaintive emotion you are able while mumbling around the gag. You groan which sounds oddly mixed with a moan as you try as best as you can to push your cock down harder against her leg to give you the extra stimulation you need to finally climb over the brink.
</div>\
<<speech "B1" "Doctor Quinn">>You want to cum? You want to ask for permission? Do you want to cum right here on my leg? You may cum. There you go. Just rub for me. Rub for Mommy. Good boy. Is that the spot right there? There you go. Just rub for me. Rub for Mommy. Rub for Mommy. Good boy. Uh-huh. That’s a good boy. I’ve got the cup right here.<</speech>>
\
<video src="content/peoples/b1/7.mp4" style="width: 100%;" autoplay loop></video>
<<speech "B1" "Doctor Quinn">>There you go. Just rub for Mommy. Does that feel good? Get it right here. Right here in the cup for Mommy. Come on honey. Thank you! Good boy! You have a little bit more for me? Thank you honey. There you go. Shhhhhh… Shhhh…. There you go.<</speech>>
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $mcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<set $mrhjcounter += 1>>\
<<button "Continue" "B1">><<set $b1 = 12>><</button>>
\
\
\
\
\
<<elseif $b1 == 12>>\
<div align='center'>\
The force with which your cum erupts from your balls is staggering. The jizz makes an audible splat as it hits the back of the cup and Mommy Quinn continues to slide her leg against your cock until she is satisfied that she has collected all that you have to give. Your balls hurt! It is almost like someone has hit them the way they are throbbing after your release. You moan and gasp through the gag in your mouth and your whole body sags in their restraints. She screws a lid on top of the cup and walks out of the room leaving you dangling on the point of passing out. You are not sure if you remain conscious or not but you regain some of your senses when you notice her return and unfasten your hands and neck.
</div>\
<<speech "B1" "Doctor Quinn">>I’m going to let you go now honey. I know you will be a good boy for Mommy or you won’t be able to get your next treatment. The way you came today shows me that you had fun. I am not worried about you not returning to Mommy. You like the way I stroke you, don’t you baby? Wasn’t it so nice the way you were able to release all that pent up cum? When you are ready, you are free to go. Come back to Mommy when you are ready for your next treatment.<</speech>>
<div align='center'>\
On your hands and knees, you look up to see her impressive derriere wiggle in her tight skirt as she walks out of the room leaving you alone to collect yourself. Eventually, you manage to get your clothes back on. You don’t see another soul on your way back out of the lab which you are supremely grateful for because you are sure that anyone looking at you would wonder if there was something wrong with you.
(This is the content ending at the moment. You can come back and replay this scene.)
</div>\
<<button "Leave" "Elevator">><<set $b1 = 1>><<addhours 2>><</button>>
<</if>>\
<<else>>\
<div align='center'>\
You need a male body for this content.
</div>\
<<button "Elevator" "Elevator">><</button>>
<</if>>\
<<if $b4 == 1>>\
<div align='center'>\
Not certain which button to press, you reach out and push on the number 4. Your eyes dart back down as you noticed a brief flash on the button before it lit up. Looking at it now, you don’t notice anything unusual. As you feel the elevator begin to descend, there is an unusual humming noise that you don’t remember hearing in elevators normally. The pitch of the hum drops as the elevator continues its journey down. There also seems to be an odd flicker to the lights that seems oddly in sync with the hum you are hearing. You feel yourself getting heavier as the elevator slows now that it is nearing the designated floor. There is a loud ‘ding’ noise and the door silently slides open.
You step out into a tidy reception area not unlike some doctors offices you have visited before and a smartly dressed woman in glasses looks up from her computer screen to greet you with a coy smile.
</div>\
<img src="content/peoples/b4/1.jpg">
\
<<speech "Phoenix">>Hello… We weren’t expecting any patients at this hour. And who might you be?<</speech>>
<div align='center'>\
The smile on her face widens as your mouth opens and shuts a few times while you try to think of a good explanation.
</div>\
<<speech "Phoenix">>Not to worry dear. I’m sure we can find someone to see you momentarily. Please, have a seat and make yourself comfortable. Would you care for a coffee or tea while you wait?<</speech>>
<<speech "player" "$fname">>Oh, thank you! Uhm, tea would be marvelous. Just a little bit of sugar and no cream thank you.<</speech>>
<<speech "Phoenix">>Not a fan of cream, hmmm? Pity, I personally LOVE the cream. I think I’m a bit addicted to it. You might find your tastes changing over time though, eh? Sit right back and I’ll bring it out shortly to you…?<</speech>>
<<speech "player" "$fname">>My name is $fname. Thank you. And you are?<</speech>>
<<speech "Phoenix">>I’m Phoenix. Pleasure. Just make yourself comfortable.<</speech>>
<div align='center'>\
You walk over to a chair and sit down feeling your weight sink into the soft cushion. You take a deep breath feeling some of your apprehension wash away. The lights seem to be flickering the same way here as they did in the elevator. Your eyelids are beginning to droop. You hadn’t realized that you were drowsy. Perhaps some nice hot tea will help perk you back up. You let your eyes close and only then do you notice the same thumbing humming noise that you heard in the elevator. It’s kind of nice. You start awake when you hear Phoenix speak.
</div>\
<<speech "Phoenix">>Sorry to have kept you waiting so long, $fname. Here is your tea as requested. Doctor Hartley will be free shortly. I’ll let you know once she is ready to receive you.<</speech>>
<div align='center'>\
Kept waiting? How long has it been? It seems like it was only a few seconds since you sat down. You take a slow sip of the tea to make sure it isn’t too hot and find it to be the perfect temperature for sipping. It tastes very nice but you can’t put your finger on what kind it is. It tastes a bit like green tea but has a strange aftertaste. You feel a flush in your cheek as they warm with the hot beverage. You feel strangely more alert and yet relaxed somehow. It is a delicious sensation. Taking another sip of tea, your eyes close gently as you savor the peculiar flavor. With your eyes shut, your mind begins to wander. Does Phoenix think you are sexy? She certainly is. That peculiar smile she wore on her face when you arrived as if she knew you were doing something naughty and approved. Perhaps she is a naughty girl. In your mind’s eye, Phoenix steps out from behind the desk and slides her hands down her skirt as if to smooth it out and then bends down giving you a peek inside her top as it sags open.
<img src="content/peoples/b4/2.jpg">
\
She arches her back up while keeping her round bottom pushed out behind her and slowly begins to caress her body over her clothes.
<img src="content/peoples/b4/3.jpg">
\
Her hands continue to travel up and begin to tousle her hair as she gives you a sly wink over the top of her glasses.
<img src="content/peoples/b4/4.jpg">
\
Leaning forward again, she dips her finger into the top of her sweater and pulls the neck down giving you a better peek into the warm delights inside.
<img src="content/peoples/b4/5.jpg">
\
She shakes her generous hips in a slow hypnotic way and then bends down to slide a hand from her calf up over her knee and then taking the hem of her skirt, begins to slowly tease it up her juicy thigh.
<img src="content/peoples/b4/6.jpg">
\
Bringing her index finger up to her lips, she begins to suck on it softly in a very suggestive way.
<img src="content/peoples/b4/7.jpg">
\
Continuing to look at you while with her finger buried up to the second knuckle in her mouth, she turns around and spreads her legs making her skirt stretch and bulge out as her bottom presses against the fabric.
<img src="content/peoples/b4/8.jpg">
\
She slides her hands up her neck and into her hair again to play with it looking rather excited herself.
<img src="content/peoples/b4/9.jpg">
\
As she spins back around, she lowers herself into the seat behind her, and giving you a playful kissy face.
<img src="content/peoples/b4/10.jpg">
\
She slowly opens her legs giving you a peek at the lacy panties beneath.
\
<img src="content/peoples/b4/11.jpg">
\
She closes them back again with a snap and then in one fluid motion, pulls the sweater off over her head. Her breasts look so amazing in that most alluring of black lace bras.
<img src="content/peoples/b4/12.jpg">
\
Taking off her glasses, she wraps her lips around the tip. Those lips would look so good wrapped around parts of your anatomy!
<img src="content/peoples/b4/13.jpg">
\
Her legs continue to open and close giving you flashes of her panties.
<img src="content/peoples/b4/14.jpg">
\
Standing back up, she places her glasses back on her head and pulls the cups of her bra down revealing her dark hard nipples.
<img src="content/peoples/b4/15.jpg">
\
She gives them each a light pinch making them stand up even taller and strums them with her fingertips.
<img src="content/peoples/b4/16.jpg">
\
Turning once more, she arches her back and reaches for the zipper on her skirt and ever so slowly, pulls it down giving you a good look at her voluptuous backside and the string of her panties diving between her round cheeks.
<img src="content/peoples/b4/17.jpg">
\
Tugging it down further, you can see the tight crinkle of her ass hole peeking out from behind the string.
<img src="content/peoples/b4/18.jpg">
\
Her skirt falls heavily to the floor and she kicks it aside. Turning once more, her hand travels down her tummy and the fingertips are beginning to dip into the top of her panties when you hear a noise that startles you from your fantasy.
<img src="content/peoples/b4/19.jpg">
\
Your eyes pop back open to see Phoenix looking down at you what that same knowing look again as if she could read your thoughts knowing just how naughty your thoughts were. If your cheeks weren’t flushed before, they certainly are now!
</div>\
<<speech "Phoenix">>The doctor will see you now, $fname. Right this way.<</speech>>
<div align='center'>\
As you follow Phoenix through the reception door into the hallway of offices, your eyes naturally fall down to the round curve of her ass as it swishes back and forth, back and forth while she walks. It is mesmerizing. She soon reaches the door at the far end of the hall and opens it showing you into the room.
</div>\
<<addarousal 50>>\
<<button "Go in the room." "B4">><<set $b4 = 2>><<addhours 2>><</button>>
\
\
\
\
\
<<elseif $b4 == 2>>\
<div align='center'>\
You step inside and are greeted by an attractive older lady leaning against her desk.
<img src="content/peoples/b4/20.jpg">
\
She purses her lips as she looks up and down and then smiles warmly. She motions for you to sit and you are quick to obey her direction.
</div>\
<<speech "Nina">>So, $fname is it? I’m Doctor Nina Hartley. Do you know of me? No? I have to admit, $fname, I am very intrigued why you are here. We don’t often get unexpected visitors. No… don’t speak please until given permission. I haven’t finished yet. You will have ample opportunity to tell me all that I wish to know shortly. Nod your head that you understand. Very good. Just so you understand the situation you are in, let me tell you a little about myself. I’m a doctor of biology, medicine, and psychology. I specialize in psychotropic agents that help unlock the mind’s potential. Phoenix was good enough to add a rather powerful agent to your tea that has placed you in a rather vulnerable state. By now, you should be feeling very relaxed and obedient to suggestions… and perhaps just a tiny bit excited. Yes? Nod your head for me, dear. Mmmmm, good. I’m going to ask you a series of questions and I expect the complete truth. You will be unable to obfuscate anything. Now, let's start with why you are here.<</speech>>
<<speech "player" "$fname">>I was exploring. I was curious to know what was down here.<</speech>>
<<speech "Nina">>How curious. So, you have no idea what you have stumbled on. Not just anyone is allowed access to travel in the elevator. Just how is it that you have access to my floor?<</speech>>
<<speech "player" "$fname">>I have access to all the floors. My friend helped me to hack the access to authorize me to visit all the floors down here.<</speech>>
<<speech "Nina">>Oh! You don’t say! How lovely to have such a talented friend. So, exploring… Are you looking for something in particular or else why would you go through the trouble? Are you a spy of some type? Is this about espionage?<</speech>>
<<speech "player" "$fname">>No Doctor, I… Well, I don’t think I’m a spy. I’m looking for my parents. I think they might be held captive down here somewhere.<</speech>>
<<speech "Nina">>My my… Interesting. And who are your parents dear? What makes you think they are here? Tell me the whole story. This should be most entertaining.<</speech>>
<div align='center'>\
You spend the next several minutes explaining the whole story starting with your parent’s trip and subsequent seeming death to today’s trip down the elevator including all the notable details along the way. She listens intently raising her eyebrows now and then. Once you finish your story, she stands and smooths out her skirt and then begins to pace slowly as she thinks.
</div>\
<<speech "Nina">>You are a most fortunate find. I think we can perhaps help each other. Would you be willing to help me in turn for my help in locating your parents? I admit that I’ve never heard of them but to be frank, it doesn’t surprise me to think that they could be here somewhere. I have some connections that I can use to make some discrete inquiries on your behalf. As for you, you have that magnificent free elevator pass. You admit that you are not here for espionage but that is about to change. You are going to help get something from another floor for me. But enough of that for now. The happy little drug coursing through your veins will only last so long. We need to reinforce that so when it wears off, you will still be my compliant little toy. You would like that, wouldn’t you? You want to obey Doctor Hartley. Come, lay down on the couch and make yourself comfortable. There we go. Look straight up at the screen on the ceiling and just relax and enjoy the sensations that wash over you while we program your mind.<</speech>>
<div align='center'>\
Looking up at the white ceiling as you see Doctor Hartley walk behind her desk and type a few things on her computer. A large panel on the ceiling begins to flash black and white in a strobing pattern and your mind begins to go fuzzy as you realize that images and words are flashing on the screen. It is too hard to focus and you just lay there taking it all in letting the program go directly to your subconscious.
<video @src="'content/peoples/b4/hypno/' + random(1, 52) + '.mp4'" autoplay loop></video>
<video @src="'content/peoples/b4/hypno/' + random(1, 52) + '.mp4'" autoplay loop></video>
<video @src="'content/peoples/b4/hypno/' + random(1, 52) + '.mp4'" autoplay loop></video>
Hearing a voice, your eyes flutter open and close as you startle back to consciousness. You look up to Doctor Hartley who has her leg up on a chair flashing you her black lace panties as she is buttoning up her blouse.
</div>\
<img src="content/peoples/b4/21.jpg">
\
<<speech "Nina">>Ah, there you are. Welcome back. That was a very nice session. It has been so long since I have worked directly with a patient. You have reminded me why I got into this business in the first place. I think you should come back and see me again. Very soon. It will take me some time before I expect to find anything on your parents if I can. I will also need some time to prepare for your trip to the sixth floor. Come see me regularly to reinforce your programming and check in to see what progress I have made. Nod your head yes for me. Thank you. Now, you can see yourself out.<</speech>>
<div align='center'>\
You get to your feet feeling somewhat light-headed still. The dizziness passes after just a moment and you give Doctor Hartley a sheepish smile as you silently depart. You slowly make your way down the hallway idly wondering what is behind all the other doors. You are tempted to put your ear up to one of them but continue walking out into the reception room. Looking back at Phoenix, she smiles at you with that incredibly sexy knowing smile of hers and stumble a bit as she winks at you. You catch yourself on the wall and press the up button. As the door opens, you look back at Phoenix one more time and wave shyly to her as you step inside to head back to the main floor.
</div>\
<<addarousal 50>>\
<<button "Leave" "Lab Reception">><<set $b4 = 3>><</button>>
\
\
\
\
\
<<elseif $b4 == 3>>\
<div align='center'>\
Pressing the button for the fourth floor, you notice the button’s number fade and is replaced with a spinning spiral briefly and then the number returns lit up. The lights begin to pulse in time with the hum making you feel very relaxed as the elevator drops. The elevator dings and your smile widens as the doors part.
</div>\
<img src="content/peoples/b4/2.jpg">
\
<<speech "Phoenix">>Welcome back $fname. So lovely to see you again. Please have a seat and I’ll let Doctor Hartley know you are here.<</speech>>
<div align='center'>\
You just barely have a chance to sit down when the door opens and Phoenix ushers you back to the office you are becoming more familiar with. Doctor Hartley greets you with a warm smile and invites you to sit on the couch as before and as you stare at the ceiling, your mind goes numb as the flashing neutralizes your brain and makes you feel so comfortable and happy.
<video @src="'content/peoples/b4/hypno/' + random(1, 52) + '.mp4'" autoplay loop></video>
<video @src="'content/peoples/b4/hypno/' + random(1, 52) + '.mp4'" autoplay loop></video>
<video @src="'content/peoples/b4/hypno/' + random(1, 52) + '.mp4'" autoplay loop></video>
When you come back to yourself, you look up and see Doctor Hartley wiping her mouth and as you walk out the door, she whispers something in your ear that you don’t really hear. You know better than to turn and ask her so you continue back down the corridor and give Phoenix a friendly wave goodbye as you step into the elevator heading back up.
</div>\
<<addarousal 50>>\
<<button "Leave" "Lab Reception">><<addhours 2>><<set $b4 = 4>><</button>>
\
\
\
\
\
<<elseif $b4 == 4>>\
<div align='center'>\
Your hand shakes a little as you reach out to press the button and once it is pressed, as before, the button number fades out into a slowly spinning spiral as you feel yourself begin to drop. As you descend, the gentle hum of the elevator’s motor helps you relax and you feel your shoulders relaxing and your head begins to feel relief from a pressure you didn’t know was present.
The elevator dings with a pleasant chime and the doors slowly slide apart and a sweet aroma fills your nose. You step into the foyer of the office and Phoenix greets you with a very pretty smile.
</div>\
<img src="content/peoples/b4/2.jpg">
\
<<speech "Phoenix">>Welcome back, $fname. I’ll let the doctor know you are here. Make yourself comfortable. Would you like a cup of tea while you wait?<</speech>>
<<speech "player" "$fname">>Thank you, no. I’m good today.<</speech>>
<div align='center'>\
Phoenix picks up a phone receiver and you can hear her talking to someone but can’t make out the words. She looks back up at you as she sets the phone back into its cradle.
</div>\
<<speech "Phoenix">>You are in luck. She can see you now. Just down the hall. You know the way, don’t you?<</speech>>
<div align='center'>\
You nod back to her affirming that you do as you make your way to the door and down to doctor Hartley’s office. The door is cracked open and so you knock twice as you push it open.
</div>\
<<button "Go in the office" "B4">><<set $b4 = 5>><</button>>
\
\
\
\
\
<<elseif $b4 == 5>>\
<img src="content/peoples/b4/20.jpg">
\
<<speech "Nina">>So lovely to see you today, $fname. You have impeccable timing. A very wonderful trait I might add. And how are you today, my dear?<</speech>>
<<speech "player" "$fname">>All in all, I’m doing rather well. I have been looking forward to coming back to visit.<</speech>>
<<speech "Nina">>That is fabulous to hear. I’m so glad to know that you enjoy coming to see me. And tell me, how are things progressing on finding your parents?<</speech>>
<<speech "player" "$fname">>I’m making progress. Why, have you learned anything that might help?<</speech>>
<<speech "Nina">>I’ve been making… discrete inquiries. Nothing tangible yet but I assure you that it is only a matter of time. For today’s session, I would like to try someone new. Are you open to trying something a little more… edgy shall we say?<</speech>>
<<speech "player" "$fname">>I’m up for some adventure. I’m too curious to say no. Not that I could say no to you anyway.<</speech>>
<<speech "Nina">>That is just what I was hoping to hear. I love your curious nature. I have been working on something and it is time to begin human trials. I’m confident that you will enjoy it. Now, why don’t you lay down and make yourself comfortable? You know what to do. Look at the screen now and feel yourself relaxing. And drop.<</speech>>
<<button "Lay down" "B4">><<set $b4 = 6>><<set $pdollsex to true>><</button>>
\
\
\
\
\
<<elseif $b4 == 6>>\
<div align='center'>\
You feel like a heavy weight presses you down into the soft cushion of the couch you are laying on. You hear the doctor speaking to you but your mind seems to be padded with cotton balls. Everything is fuzzy. Your vision is hazy and all the sounds are muffled. You nod your head as you look over at Doctor Hartley and stand up responding to something she said. It feels surreal having your body move on its own as if on its own volition as you take the back seat as someone else is now driving your actions. You remove your shoes and continue to strip the rest of the clothes from your body; your panties are the last to go as you slowly shimmy them down your legs. As you undress, the doctor opens a drawer and pulls out a bottle, a pair of black latex gloves, and a vial containing several white objects that look like large prolate spheroids. She dons the gloves with experienced proficiency and pulls off a rubber stopper and removes one before replacing the stopper and placing the vial back in her drawer. She rolls her chair back against the wall and you see her lips move as she pats her lap. You walk forward as you silently obey her command and lay across her lap.
You feel your bottom being caressed softly before feeling your ass cheeks being parted with gentle but firm fingers. You sigh as you feel a cool damp digit touch your clenched anus. It slides around the opening, spreading the cool moisture as it does. Eventually, it returns to the center of the pucker and begins to slowly prod inward until it finally slips in, easing inside slightly to about the first knuckle on her gloved finger. You feel it slowly twist this way and that and your breathing speeds up slightly as you feel your excitement grow, trapped against the good doctor’s skirted thigh. The finger suddenly disappears and you feel a sense of loss as it does. You just begin to turn your head to look back when you feel the coolness return to your eager hole. The pressure comes again and you feel the penetration going deeper this time. The finger remains still this time, buried up to the second knuckle as the comforting hand begins its soft caresses once more.
<video src="content/peoples/b4/1/0.mp4" autoplay loop></video>
Your breathing settles on a gentle rhythm as you begin to relax into your current position, draped over her lap. You begin to notice a tingling in your ass followed by a warmth that washes slowly over your whole body. You shiver involuntarily as a chill runs down your back. The doctor removes her finger and you feel your body standing and moving back to sit naked back on the couch. You look at the doctor who is grinning back at you as her focused eyes penetrate yours as if she is able to peer into your soul. You notice flecks of light in your vision next which split apart prismatically into tiny shards of rainbows. These pretty little shards multiply and grow as they fragment like you imagine a tiny snowflake might as it forms. Soon, everything is covered in the tiny prisms, and your vision whites out while your head gently spins.
<video src="content/peoples/b4/1/1.mp4" autoplay loop></video>
The prisms start to spin faster and faster and shrink in size and you hear soft tinkling as if tiny bits of glass are taped together.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 7>><</button>>
\
\
\
\
\
<<elseif $b4 == 7>>\
<video src="content/peoples/b4/1/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You are in a stark white room with white furniture and white streamers dangling down from the ceiling. You hear the sound of high heels clicking behind you and spin to see Phoenix stepping up next to you. She is wearing a gossamer-thin white dress over scanty white lace lingerie and draped with strings of varying sizes of white pearlescent spheres. She has her arms crossed under her generous cleavage as she looks at you coyly.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 8>><</button>>
\
\
\
\
\
<<elseif $b4 == 8>>\
<video src="content/peoples/b4/1/3.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Your whole body seems to be vibrating with pulses of energy and you feel a powerful urge to seduce Phoenix. You MUST have her. Your body begins to sway with need and your hands slowly glide over your body as you saunter closer to her. She counters your advance by stepping to the side and the two of you move about each other like two orbiting satellites. You lean over a love seat and present your best asset and she steps up behind you, taking hold of it, and pulls herself closer. You reach back and rest your hand against the back of her head encouraging her on. Her hands glide around your hips and up your tummy to cup your breasts and the further up to turn your head to the side as she leans in for a kiss. Her hands continue to wander then finally take hold of you to spin you around to face her so she can kiss you properly.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 9>><</button>>
\
\
\
\
\
<<elseif $b4 == 9>>\
<video src="content/peoples/b4/1/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She leans down and wraps her big lips around your nipple through your flimsy dress and bra, leaving faint red lipstick marks and the material of your dress turns nearly transparent as it gets wet with her saliva.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 10>><</button>>
\
\
\
\
\
<<elseif $b4 == 10>>\
<video src="content/peoples/b4/1/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Looking into your eyes once more, she reaches forward and pinches your hardened nipples and pinches them hard and giving them a firm twist.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 11>><</button>>
\
\
\
\
\
<<elseif $b4 == 11>>\
<video src="content/peoples/b4/1/6.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She pushes you back over the love seat and a bottle of light-colored fluid suddenly appears in her hand. She upends the bottle squirting warm liquid across your protruding ass turning all the fabric that it touches translucent exposing your wonderful treasures beneath.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 12>><</button>>
\
\
\
\
\
<<elseif $b4 == 12>>\
<video src="content/peoples/b4/1/7.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
At her command, you begin to shake your ass making it bob and sway as she continues to spread the fluid over your clothes.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 13>><</button>>
\
\
\
\
\
<<elseif $b4 == 13>>\
<video src="content/peoples/b4/1/8.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
The tingle in your ass is so strong now and you reach your hand between your legs to rub your hand over your aching hole. You slip a finger very easily into your ass making the hairs all over your body stand on end with excitement. Phoenix gives butt cheeks a wet slap sending your back upright once more.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 14>><</button>>
\
\
\
\
\
<<elseif $b4 == 14>>\
<video src="content/peoples/b4/1/9.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Phoenix, still on her knees, comes eye level with your protruding cock and she reaches under your dress to free your throbbing member. Without hesitation, she takes it deep into her mouth sending rapturous tingles through your body originating from your balls.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 15>><</button>>
\
\
\
\
\
<<elseif $b4 == 15>>\
<video src="content/peoples/b4/1/10.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Seeing your obvious delight at her oral ministrations, she stands and suddenly, she has a rubber dong in her hand that she shoves into your mouth. Before you know it, your throat is bulging as it slips past your uvula. Shoving it in and out, you feel your throat begin to warm and when she pulls it free, you coat it with a generous layer of spit. She takes the saliva-coated toy and shoves it down the cleavage of your dress spreading the translucent quality to more of your dress.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 16>><</button>>
\
\
\
\
\
<<elseif $b4 == 16>>\
<video src="content/peoples/b4/1/11.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Obviously not satisfied, she reaches down to grasp the damp material in her hands and yanks it aside, opening a giant hole over the mounds of your bra-covered tits. A look of shock appears on your face and you reach over to give her top the same treatment to expose her sexy bra. She in turn retaliates and yanks down the front of your bra to expose your tingling nipples to her view. This action does not go unanswered as you pull hers down in turn. You don’t remember your nipples ever feeling so hard before and your knees go weak as she rubs her thumbs over them.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 17>><</button>>
\
\
\
\
\
<<elseif $b4 == 17>>\
<video src="content/peoples/b4/1/12.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She takes obvious delight in your reaction to her touch and then bends over the love seat as well. Suddenly, the container of fluid is in your hand and you begin to cover her ass as well as she jiggles and wiggles it. Your cock is so hard, you feel like it will split open like a ripe banana and rip a hole in the back of her dress and pull her panty to the side and plant your foot on one side of the seat as you lean over her back and thrust into her glistening pussy in a single stroke. It feels so damn good that you don’t miss a beat as you pound away at her hole like a dog in heat. That seems like such an apt metaphor in this case. You idly wonder if this is how dogs feel the whole time they are in heat and let your tongue hang out the side of your mouth as you imagine that that is just what you are. If only you had a knot at the base of your shaft that worked like a dog’s that you could tie your bitch to you as you rut into her.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 18>><</button>>
\
\
\
\
\
<<elseif $b4 == 18>>\
<video src="content/peoples/b4/1/13.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Your thoughts spiral out of control as your head spins and you move almost in a fog, driven by your lust for Phoenix and the pleasure you feel from her body. Both of your bodies are coated from head to toe with the strange elixir; either from the bottle itself or smeared there from somewhere else. In the end, it is all the same.
</div>\
<<addarousal 10>>\
<<button "Continue" "B4">><<set $b4 = 19>><<set $pdollsex to false>><<set $pdollcum to true>><</button>>
\
\
\
\
\
<<elseif $b4 == 19>>\
<video src="content/peoples/b4/1/14.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
The last thing you remember from the bizarre prismatic tryst is Phoenix licking her lips as she begs for your cum with her eyes as you stroke yourself with purpose before coating her tongue with the frosty jism. The jizz takes on a sparkly quality that shimmers vividly and streaks of light begin to shoot inward towards the core of your being as if you are absorbing something from your partner or the encounter. The white streaks multiple until they fill the whole of your site and all is white once more.
</div>\
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 900ms>>\
<<sexskill>>\
<</timed>>\
<<set $scumcounter += 1>>\
<<set $skisscounter += 1>>\
<<set $srblowjobcounter += 1>>\
<<set $spussyfuckcounter += 1>>\
<<takeenergy 10>>\
<<zeroarousal>>\
<<set $noorgasm = 0>>\
<<set $scumcounter += 1>>\
<<set $sranalcounter += 1>>\
<<set $analsize += 1>>\
<<button "Continue" "B4">><<set $b4 = 20>><<set $pdollcum to false>><</button>>
\
\
\
\
\
<<elseif $b4 == 20>>\
<div align='center'>\
You wake up with a massive headache in a dimly lit room laying naked on a sofa. Next to the only door in the room is a small table with your clothes which have been neatly folded. You go to sit up but the sudden movement almost makes you nauseous with vertigo. You lay back down again for a minute as you wait for the spinning to stop. The second time you sit up, you are much slower and make it vertical and lay your head back against the top of the backrest. What did they do to you? You run through some simple meditation exercises that you know trying to calm your body and mind. Once you feel brave enough, you stand slowly and make your way to the table to retrieve your clothes. You return to the couch where you take your time dressing.
You feel a sense of security and normalcy return once your familiar clothes are back on. You open the door and realize where you are. You had wondered what was in the other rooms in the hallway. You see the familiar door at the end of the hall to the doctor’s office is closed so you head the other direction back to the lobby.
<img src="content/peoples/b4/2.jpg">
\
Phoenix gives you a peculiar pursed-lipped smile as she sees you and you have a sudden flashback to the apparent drug-induced trip and begin to wonder how much if any of it was real. You debate on asking and decide it best to not broach the topic. She hands you a paper cup of water and you suddenly realize that you are parched and down it in a single gulp.
</div>\
<<speech "Phoenix">>You look like you enjoyed today's session. You’ll want to be sure to hydrate well once you get home as there are possibly some lingering effects from your medication that would be best diluted outside the safe confines of our or office. The doctor had to leave before you so she asked me to convey her appreciation for participating in the trial. I’m sure she will discuss it with you further in your next session. Have a pleasant rest of your day, $fname.<</speech>>
<div align='center'>\
Speechless, you smile back at her and turn towards the elevator. What the HELL happened to you? You aren’t sure if you enjoyed that or not. Whatever the trial medication was, it was potent. As you ascend in the elevator, your thoughts begin to clear and you think about your plans to find your parents. By the time you reach the main floor, your memory of your visit is cloudy and nebulous. You remember vaguely how you felt but not what happened. Whatever it was, you feel good and full of energy and ready to take on the world. Right after you get another glass of water.
</div>\
<<button "Leave" "Lab Reception">><<set $b4 = 4>><</button>>
<</if>>\
<<if $scene == 1>>\
<div align='center'>\
After stepping into the elevator, you mentally cross your fingers as you press the number 6 which immediately illuminates, and a second later, the doors close. You feel the elevator begin to descend and you hear the chime of the floors as they pass by. With each chime, your anxiety grows as you are uncertain what you will face as you step out. Eventually, the sixth chime sounds, and the doors slide quietly open revealing the light of the room on the other side.
Stepping out, you find yourself in a tastefully appointed reception room. Behind the reception desk is a lovely girl wearing a lab coat. She looks up as you walk in and her eyes immediately go wide.
</div>\
<img src="content/peoples/b6/1.jpg" style="max-width: 50%;">
\
<<speech "Random" "Nurse 1">>Just what do you think you are doing here? You aren’t authorized to be here!<</speech>>
<div align='center'>\
You turn to step back into the elevator but the door has already shut. You turn back around to find the reception and another similarly dressed woman wearing glasses stepping around the desk towards you. They both raise their hands in a soothing manner as they slowly approach you.
</div>\
<img src="content/peoples/b6/2.jpg" style="max-width: 50%;">
\
<<speech "Random" "Nurse 2">>Just relax, no one is going to hurt you. Just stay where you are.<</speech>>
<div align='center'>\
You turn around and pound at the elevator call button. As you turn back to look at them, the second nurse has a syringe in her hand as moves swiftly towards your butt.
</div>\
<img src="content/peoples/b6/3.jpg" style="max-width: 50%;">
\
<<speech "Random" "Nurse 1">>There, there, everything is going to be okay. You are in good hands with us. Don’t fight it. We’ve got you.<</speech>>
\
<img src="content/peoples/b6/4.jpg" style="max-width: 50%;">
\
<div align='center'>\
You feel the room start to spin around you and they reach out to help you to the floor without hurting yourself.
</div>\
<<addmins 30>>\
<<button "Continue" "B6">><<set $scene = 2>><<set $pdollsex to true>><<set $pgender to "female">><<set $currHair = 5>><<set $currMakeup = 0>><<set $currLips = 0>><<set $currFingernails = 0>><<set $currToenails = 0>><<set $fname = $femalename>><<set $punderwear to "female">><<set $psocks to "female">><<set $pshoes to "female">><<set $pbra to "female">><<set $ptrousers to "female">><<set $pshirt to "female">><<set $pjumper to "female">><<set $currUnderwear to "underwear2">><<set $currSocks to "socks3">><<set $currShoes to "shoes2">><<set $currBra to "bra1">><<set $currTrousers to "trousers2">><<set $currShirt to "shirt2">><<set $currJumper to "jumper2">><</button>>
\
\
\
<<elseif $scene == 2>>\
<div align='center'>\
You slowly come back to yourself. You blink as you look around feeling very disoriented. It takes you a couple of minutes before you remember where you are. As you look around several alarming things come to your attention. You see that you are reclined in a chair with your legs strapped down and spread apart and your arms and chest are similarly restrained. You have a gag in your mouth. It takes you longer than it should to realize that you are not just naked, you are naked in a female body. How the hell did THAT happen? You are certain that you were a man when you took the elevator down. However, you can clearly see over your breasts down between your legs to see that $fname junior is no longer between your legs. You squirm around testing the limits of your restraints and noticed one more item of interest. There is something jammed up your ass. It isn’t terribly big but as you move your hips, you feel it moving around inside your bowels.
<img src="content/peoples/b6/5.jpg" style="max-width: 50%;">
\
You must have made too much noise from thrashing because someone opens the door and steps inside the small examination room with you. She is not too tall with somewhat unkempt hair. She stops and takes you in for a moment with an amused smile on her face.
</div>\
<<speech "Random" "Mona">>Hello, I am not sure who you are and right now, I don’t care. You are an intruder in our lab and so I can use you at my leisure. And my leisure as you have undoubtedly noticed is to turn you into a girl. How does it feel? To have the patriarchy ripped from your grasp with no choice of your own? Well, get used to it because if I plan to keep you this way. Let me introduce myself, I’m Doctor Mona Wales. My specialization is genetics and as you can see, I have managed to manipulate your chromosomes from XY to XX.<</speech>>
<div align='center'>\
She steps up close to you and taps the plug in your ass.
</div>\
<<speech "Random" "Mona">>That little puppy in your ass is releasing a special formula that, in a very dumbed down explanation for you, is adding a little extra to your Y chromosome turning it into an X. So long as this formula keeps being secreted into your soft tissue, you will remain a girl. And such a pretty girl you turned out to be as well. So much nice to look at than the hideous man you were when you arrived. Now listen to me closely, It is I and I alone that have the power over your future. If you ever want to see the world outside of this lab, you are going to show me that you will behave. Will you behave for me, dear? Give me a nod. Still feeling a little disoriented, are you? Your head might still be a little sloshy from the benzodiazepine. Just be a good girl for me and I’ll unfasten your bonds. There we go… Let your jaw relax, it might be a bit sore after being forced open for so long.<</speech>>
<<speech "player" "$fname">>What is going on? Why did you do this to me?<</speech>>
<<speech "Random" "Mona">>Very good questions. I’ll keep it short as it looks like you are still suffering ill effects from the Rohypnol. I’ve been working on a cure for the ill effects of the accident that happened years ago that inflicted the good citizens of this community with dicks. I’ve developed a serum I’m calling Monaproxisterone which removes the male genitals and restores the hormonal balance in females. You may recall the two nurses that received you earlier They are two of my first human success trials. I’ve never tried the serum on a male before though. I’ve been petitioning for a male test subject for months. When you intruded into your lab, you became our first volunteer!<</speech>>
<div align='center'>\
You begin to protest but she places a finger against your lips silencing you.
</div>\
<<speech "Random" "Mona">>Hush now, I don’t want to hear your protests. If you are not going to be a good girl for me, you are of no use to me and once I finish my evaluation, I can dispose of you. But… you want to be a good girl for me, don’t you? You don’t want this lab to be the last place you ever see. Now, this is what is going to happen next. I’m going to finish unfastening you and leave the room. You are going to put on the clothes sitting on the table there. You are going to sit on that examination table and wait patiently for me to return. Yay! If I come back into this room and you are not dressed and sitting quietly, I will walk back out and you will be sedated once more I will conduct the examination on your unconscious body, after which your body will be fed into the incinerator. Boo. Now, the choice is up to you. I hope you chose wisely.<</speech>>
<div align='center'>\
She stands and watches you warily as she comes closer. She steps between your legs and you feel her fingers brush against your ass as she takes hold of the object inserted into your ass. With a gentle but insistent tug, your ass gives up the shiny metallic slightly egg-shaped object that looks as best you can tell like a butt plug.
<img src="content/peoples/b6/6.jpg" style="max-width: 50%;">
\
She finishes unfastening your restraints and without another word, she stands back and then turns and leaves the room. She hasn’t really given you much choice. You are your parent’s only hope of freedom and for that to happen, you will need to bide your time with Doctor Wales. You get slowly to your feet still feeling sluggish You walk over to the table to inspect the clothes. You raise your eyebrow as you look at the matching lacy stockings and garter belt. You put them on first, rolling up the stockings and attaching them to the garters. You slip the panties on and then the bra. The tie neck top is remarkably fashionable and you take an extra minute to appreciate the quality article before putting it on and tying it. Finally, you pull up the skirt and slip into the heels on the floor.
The door just begins to open as you hop up onto the examination table and cross your ankles and hold your hands in your lap quietly. Doctor Wales does a double-take as she sees you sitting so elegantly and ladylike.
</div>\
<<speech "Random" "Mona">>Wow, don’t you clean up well? You seem to be a natural at this. It is a sign that you were meant for more. More than a mundane male existence. It must be such a relief to have left the last of your manhood behind and joined the glorious sorority of femininity. Now, let me have a look at you. I am going to perform a routine examination. Just relax and let me do this.<</speech>>
<div align='center'>\
Taking a penlight out of a coat pocket, she shined it across your eyes checking for dilation and then up your nasal cavities. She put on a pair of pale blue latex gloves and retrieved a tongue depressor. Holding your tongue down, she shone her flashlight into the back of your throat and then pressing her fingers into the sides of your neck, checked your lymph nodes.
<video src="content/peoples/b6/1.mp4" autoplay loop></video>
</div>\
<<speech "Random" "Mona">>Thank you for being such a sweetheart. I am impressed by your behavior. I hope we were not too rough on you. How is your jaw feeling? Is it still store from being stretched?<</speech>>
<div align='center'>\
She massages your jaw muscles looking for any tender spots as you shake your head slightly.
</div>\
<<speech "Random" "Mona">>Since you are being such a deer, it would be much simpler if you remove your blouse and skirt. Will you do that for me, sweetheart?<</speech>>
<div align='center'>\
You untie the scarf and unbutton the top before pulling it off your head. Standing momentarily, you push your skirt down and set the clothes to the side.
</div>\
<<speech "Random" "Mona">>I am looking for any adverse reactions to my serum. Please tell me if you feel any tenderness.<</speech>>
<div align='center'>\
She uses the first two fingers of her hand to prod somewhat forcefully against your chest.
</div>\
<<speech "Random" "Mona">>May as well remove the bra also. As lovely as it is, it will just be getting in the way.<</speech>>
<div align='center'>\
You reach behind your back and deftly remove the undergarment as requested and her eyebrows raise at the confident way in which you remove it. It looks like she is about to say something but then her eyes move back to your breasts as if she were admiring them. She goes back to her palpitations focusing on your breasts. You are not certain but it seems that she is spending more time massaging them than may be strictly necessary. She then begins to stimulate the nipples.
<video src="content/peoples/b6/2.mp4" autoplay loop></video>
</div>\
<<speech "Random" "Mona">>How does this feel? Do they seem any more sensitive than they were before? Please be honest, this is for science after all. Interesting…<</speech>>
<div align='center'>\
As she continues to play with your nipples, you let out a little moan giving her all the feedback that she seems to need.
</div>\
<<speech "Random" "Mona">>Alright, now on to the main attraction. Please lay back and remove your panties. There we go. My my my, what a pretty pussy you have. I must say, you have very nice genes. Look at your perfect labium. Oooohhhh, your clitoris looks so lovely! How does it feel when I touch it? Hmmm? Isn’t this so much nicer than how that disgusting dick of yours was? So compact and discrete? Easily tucked away for smooth and sleek lines under clothes? I don’t know how men stand it. This is all so perfect. I’m going to examine inside now. Here, let me pull out the stirrups for you.<</speech>>
<div align='center'>\
Reaching down, she pulls out a couple of metallic support struts that she guides your feet to allow them to hold your legs up and provide her with access to your nether region. Squirting a little clear gel on her fingers she massages the opening for a moment and then slips two fingers inside your pussy.
<video src="content/peoples/b6/3.mp4" autoplay loop></video>
</div>\
<<speech "Random" "Mona">>Oh darling, your vaginal orifice is perfect. Just the right shape and temperature. I am going to get a deeper look now. I’m sure you have no idea what this tool here is. It is called a speculum. It will gently open you enough for me to visually exam this sexy little cavity here. I will be gentle with you, don’t worry. Just relax for me, alright?<</speech>>
<div align='center'>\
She lubricates the tool and with well practices movements, slides it in to the hilt and spreads you open a notch. Using her penlight, she peers inside you. As she looks, her fingers begin to idly stroke down from your clitoral hood down and down over the clit itself causing you to moan. She looks up at you not realizing why you reacted so at first before realizing what her fingers were doing subconsciously.
<video src="content/peoples/b6/4.mp4" autoplay loop></video>
</div>\
<<speech "Random" "Mona">>Oh, you like that, do you? I like it too actually.<</speech>>
<div align='center'>\
She carefully removes the speculum and then rubs your pussy lips a bit more. Her index finger then wanders down to nudge against your ass as she carefully watches your reaction.
<video src="content/peoples/b6/5.mp4" autoplay loop></video>
</div>\
<<speech "Random" "Mona">>The way you seem to be taking to be a female like a duck to water, I’ve been considering the fact that you might be a homosexual. Does this ass of yours have much experience? It looks fairly tight. Yes, it feels nice and tight too. Not too stretched out like I understand that they can get. Alright, so if you were a sissy, you are least weren’t seeing too much action by anyone of considerable size. My goodness… that pussy of yours just looks so damn fine.<</speech>>
<div align='center'>\
She lifts up your leg pressing it against your chest as she leans in to give your pussy a kiss. And then another and another. Her tongue gets in on the action as well as she begins to make out with your female sex. You begin to moan as she very expertly stimulates you. She straightens suddenly as if self-conscious about her actions as she wipes her wet mouth with her gloved hand. You look back at her breathing heavily from the excitement causing your breasts to move up and down rhythmically. Just as she looks like she is under control of herself, she lunges forward again kissing your lips this time. As her lips press against yours, her tongue invades your mouth and her hand roams down your body hitting all her favorite spots along the way. She pulls back again a bit slower this time.
<video src="content/peoples/b6/6.mp4" autoplay loop></video>
</div>\
<<addarousal 50>>\
<<button "Continue" "B6">><<set $scene = 3>><</button>>
\
\
\
<<elseif $scene == 3>>\
<<speech "Random" "Mona">>That was not very professional of me but I just couldn’t help myself. Looking at this innocent virgin girl in front of me has made me so horny. I want to be the first to take your pussy and I will be. How you must be wondering to yourself as I clearly despise the male genitals. Well, I don’t completely hate them. I have found that using a proximation of the male cock is rather empowering. Taking it to the man so to speak by strapping one on. Yes, I’m going to rob your virginity with a strap-on cock.<</speech>>
<div align='center'>\
She opens a drawer and retrieves a flesh-colored rubbery phallic shaped dildo and a black strap harness. She removes her coat and pushes her skirt down and off and her panties quickly fallow. Despite her bravado, she still seems somewhat slowed by the process of attaching it to herself making you think that she is not as practiced at this particular exercise as she seems to be hinting at.
</div>\
<<speech "Random" "Mona">>Hop down and turn around. Face away from me against the table. There you go, just like that. Oh my, what a fine ass. I’m going to enjoy this!<</speech>>
<div align='center'>\
Stepping up close behind you, she rubs the top of the dildo across the wet folds of your pussy. Moving her hips back and forth, she warms herself up and spreads the mixture of lube and juice across the sex toy. Then, pulling back a bit further, she lines up the tip and sets it just inside the opening and then, grasping your hips, slowly plunges into you. She rocks her hips in small movements pushing a little deeper with each stroke forward and she looks down at the swell of your ass with admiration. You moan loudly as you feel your pussy being filled and your noise seems to spur her on as she speeds up the movement of her hips.
<video src="content/peoples/b6/7.mp4" autoplay loop></video>
</div>\
<<speech "Random" "Mona">>“Oh, this is too precious! I need to see your face. Lay back down again, I want to watch you as I fuck this pretty pussy. There you go. Lay back. Put your feet back into the stirrups. Oh, looks how shiny you are down there. Getting nice and wet for me, aren’t you? Here I come again. Keep making those delicious noises for me. They are music to my soul.<</speech>>
<div align='center'>\
Slipping back in with ease, she rests one hand on her hip and begins to strum her thumb over your erect clitty with the other all the while watching your face rapturously. You don’t have to fake anything as it all feels so good and you are soon enough moaning like a cat in heat. Her thumb moves faster and you feel your climax approaching. She moans as well as she is also getting off on the pleasure she is giving you. Her hips move faster and it hits you all at once. Like being launched from a catapult, you feel yourself soaring through wave after wave of exquisite sensations. Doctor Wales continues to stroke in and out of her while her fingers slide across your clitty until she can see that you have had enough.
<video src="content/peoples/b6/8.mp4" autoplay loop></video>
</div>\
<<speech "Random" "Mona">>That looked delicious! Oh, I need a taste of that ex-virgin cum. Mmmmm, so delicious! I can see that you enjoyed that. You are such a treat. Take off the stalkings and garter belter and follow me. I think you deserve a reward for such good behavior.<</speech>>
<div align='center'>\
She loosens the strapon harness and lets it drop to the floor and taking your hand, she leads you out of the examination room and into the room across the hall which appears to be her office. She pulls you closer as she sits on the spartan desk and brings your lips to hers for a sweet and gentle kiss.
<video src="content/peoples/b6/9.mp4" autoplay loop></video>
</div>\
<<speech "Random" "Mona">>You are so lovely. I can’t help myself. Alright, it’s time for your reward. I will allow you to kiss my pussy. These lips are reserved for only pretty female creatures such as you are now. You should feel honored. Now, down on your knees and worship my magnificent pussy. I promise, your lips will know what to do to please me.<</speech>>
<div align='center'>\
She lifts a leg up onto the table opening herself up wide for you and she guides your head in close. The pungent smell of her arousal assails your nose and you give the shiny wet lips a soft kiss. Resting a hand on her thigh and wrapping the fingers of your other hand around her propped-up leg, you begin to flick your tongue through the folds of her lips drawing a moan from her. You pick up your pace and are rewarded with an increase in the volume of sound from your captor. Her back arches and she begins to pant while rubbing her hand over her stomach and up over her breast and choking her throat briefly before coming back down to grope at her breast again. You feel her begin to tremble slightly right before your tongue drives her over the edge and she comes on your face. You keep your tongue moving until she finally stops you and lifts you with a couple of fingers under your chin.
<video src="content/peoples/b6/10.mp4" autoplay loop></video>
</div>\
<<speech "Random" "Mona">>I want to taste myself in your lips. Come give me another kiss!<</speech>>
<div align='center'>\
She practically sucks her juices from your lips as she kisses you passionately, emitting soft moans all the while.
<video src="content/peoples/b6/11.mp4" autoplay loop></video>
</div>\
<<speech "Random" "Mona">>Oh, I love tasting myself on other girls’ lips. That was very good my dear. I’m glad that you have enjoyed your time with me. I’ll let you in on a little secret. It is by design. I added a catalyst to the formula that reacts with my body chemistry. You are now addicted to me. You have a chemical-induced craving for my pussy juices. I can release you with the assurance that you will be back within a week. And before you start thinking ill of me for snaring you in this way, you need to understand that it is necessary. At least for now. The formula for your wonderful transformation is sadly only temporary. You need to have a steady supply of it to maintain the change. Already, I can see your beautiful breasts starting to be resorbed back into your boring male chest. But don’t you worry your pretty head about it. I have a solution for everything.<</speech>>
<div align='center'>\
Going to a drawer in a cabinet, she pulls out several items and begins busing herself with preparing something. As she does, your eyes are drawn to her naked shapely ass which moves side to side as she shifts her weight on the balls of her feet. She looks back at you over her shoulder catching you staring and just gives you a knowing wink before continuing her work.
</div>\
<<speech "Random" "Mona">>So I designed a slow-release delivery method that will give you enough of the serum to maintain the changes. Between the four balls, it will be enough to keep you like this for a full two weeks. More than enough time before your cravings bring you back here to me. Now, these two lovely beauties will be going into your nipples. The bar has a slow-release mechanism like the one in your butt plug earlier but with a smaller aperture as we won’t need nearly so much to maintain the change. Each of the balls has a reservoir that holds the serum. Lovely, aren’t they? No, just breath deep and this will be all over in just a minute.<</speech>>
<div align='center'>\
Wearing blue latex gloves, she quickly swabbed your nipple with an alcohol wipe and pinching the nipple between stainless steel Donnington forceps, she slid a needle through the loop of the tool and pushed the barbell through. Releasing the forceps, she threaded on one of the balls and pushed it in tight against your nipple to unthread the needle and then thread on the matching ball. Looking down at your new piercing, you can see a clear crystalline window on each end to see the dark pink fluid inside. She repeated the process on your other nipple.
</div>\
<img src="content/peoples/b6/7.jpg" style="max-width: 50%;">
\
<<speech "Random" "Mona">>My my my, don’t those look gorgeous on you! Your breasts should start perking back up again soon now. Give me a quick kiss now and then back to the other room to get changed. I expect to see you back here soon. We need to keep those cute little barbells topped up so you can maintain your womanly figure. Good girl.<</speech>>
<div align='center'>\
After a quick kiss, she steps out the door and is gone. You squeeze your breasts feeling a light tingling as you sense an increased blood flow in them. You have to admit, they do look pretty good. Your nipples are still throbbing but not as bad as you would expect. You wonder idly if there is also some type of analgesic effect from the serum or perhaps she treated the bar with some type of topical anesthetic. You stand up and walk back to the room across the hall to put on the clothes Doctor Wales provided you earlier. Your nipples are still very tender under the bra and you try your best not to move in ways that will cause the fabric to tug on the tender flesh. You walk down the hallway and through the door at the end to emerge back in the reception area. One of the nurses from before is watching you with a smug expression on her face and just as you turn towards the elevator doors, you catch her winking at you slyly from the corner of your eye causing you to do a double-take. The elevator doors open after a minute and then you are back on your way up the elevator shaft as your brain whirls with various thoughts regarding being force feminized using a serum with temporary effects that also has the side effect of addicting you to its inventor who happens to be drop-dead gorgeous but also stone-cold crazy. You debate in your head if you want to try to reverse engineer the formula and combat the addiction that you can already feel is trying to pull you back. The elevator doors open allowing you to step back into the foyer of the lab and you step out looking much different than you did going in.
</div>\
<<button "Leave" "Lab Reception">><<set $scene = 1>><<set $pdollsex to false>><</button>>
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 300ms>>\
<<sexskill>>\
<</timed>>\
<<set $noorgasm = 0>>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $pussysize += 1>>\
<<set $fcumcounter += 1>>\
<<set $fkisscounter += 1>>\
<<set $frhjcounter += 1>>\
<<set $frpussylickcounter += 1>>\
<<set $fgpussylickcounter += 1>>\
<<set $frpussyfuckcounter += 1>>\
<</if>>\
<div align='center' style='font-size: 150%;'><b>Town</b></div>\
<img src="content/map.jpg" style="max-width: 60%;">
\
\
\
<<if $kimquest == 1 and $gameDate.getHours() >= "19" and $gameDate.getHours() <= "21">>\
<div align='center'>\
Kimberlee is waiting for you in the Mall.
<<if $credit < 100>>\
You don't have enough credit to take her on a date.
<<else>>\
<<button "Speak with her" "Kimberlee quest">><</button>>
<</if>>\
</div>\
<</if>>\
<<if $kimquest == 4 and $gameDate.getHours() >= "10" and $gameDate.getHours() <= "16" and GameDays[$gameDate.getDay()] is "Sat">>\
<div align='center'>\
Kimberlee is waiting for you in the Mall.
<<if $credit < 300>>\
You don't have enough credit to take her on a date.
<<else>>\
<<button "Speak with her" "Kimberlee quest">><</button>>
<</if>>\
</div>\
<<elseif $kimquest == 4 and $gameDate.getHours() >= "10" and $gameDate.getHours() <= "16" and GameDays[$gameDate.getDay()] is "Sun">>\
<div align='center'>\
Kimberlee is waiting for you in the Mall.
<<if $credit < 300>>\
You don't have enough credit to take her on a date.
<<else>>\
<<button "Speak with her" "Kimberlee quest">><</button>>
<</if>>\
</div>\
<</if>>\
<<if $kimquest == 16 and $gameDate.getHours() >= "17" and $gameDate.getHours() <= "20">>\
<<button "Wait for Kimberlee" "Kimberlee quest 2">><</button>>
<</if>>\
<<if $liannaquest == 4 and $gameDate.getHours() >= "18" and $gameDate.getHours() <= "20" and GameDays[$gameDate.getDay()] is "Fri">>\
<<button "Go on a date with Lianna" "Lianna Quest">><</button>>
<</if>>\
\
\
\
\
\
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:33%"><b>Work</b></th>
<th style="width:33%"><b>Mall</b></th>
<th style="width:33%"><b>Others</b></th>
</tr>
</thead>
<tbody>
<tr>
<td>\
<<if $gameDate.getHours() >= "8" and $gameDate.getHours() <= "10">>\
<<if $workend is true>>\
<<button "Go in the Lab" "Ending Workdays">><<set $endingpoint = 1>><<addmins 10>><</button>>
<<else>>\
<<button "Go in the Lab" "Lab Reception">><<addmins 10>><</button>>
<</if>>\
<<else>>\
Lab Opening Hours: 08:00-10:00
<<if $gameDate.getHours() < "8" and $gameDate.getHours() > "5">>\
Wait <<link "10" "Map">><<addmins 10>><</link>>, <<link "30" "Map">><<addmins 30>><</link>> minutes.
<</if>>\
<</if>>\
<<button "Home" "House Front">><<addmins 10>><</button>>
<<if $gameDate.getHours() >= "6" and $gameDate.getHours() < "23">>\
<<if $CurEN < 5>>\
You are tired.
<<else>>\
<<button "Wander around" "Wander">><<addhours 1>><<takeenergy 5>><</button>>
<</if>>\
<</if>>\
<<if $questtransformation >= 2>>\
<<button "Bonnie`s House" "Bonnie House">><<addmins 10>><</button>>
<</if>>\
<<if $angelesquest >= 1>>\
<<button "Angeles House" "Angeles house">><<addmins 10>><</button>>
<</if>>\
<<if $finalquest == 13>>\
<<button "Lianna House" "Lianna house">><<addmins 10>><</button>>
<</if>>\
</td>\
<td>\
<<if $gameDate.getHours() < "8" or $gameDate.getHours() > "21">>\
The Mall is closed
Opening Hours: 08:00-22:00
<<else>>\
<<if $questsecurityguy >= 3>>\
<<button "Clothing store" "Clothing Store">><<addmins 10>><</button>>
<</if>>\
<<button "Women shoes store" "Women Shoes Store">><<addmins 10>><</button>>
<<button "PC shop" "PC Shop">><<addmins 10>><</button>>
<<if $questmaid > 0>>\
<<button "Adult Shop" "Adult Shop">><<addmins 10>><</button>>
<</if>>\
<</if>>\
</td>\
<td>\
<<if $gameDate.getHours() >= "6" and $gameDate.getHours() < "23">>\
<<set _random = random(1, 6)>>\
<<if _random <= 5>>\
<<button "Park" "Park">><<addmins 10>><<set $park to true>><</button>>
<<else>>\
<<if $parkrapecheck is false>>\
<<button "Park" "Park Rape">><<set $park to true>><</button>>
<<else>>\
<<button "Park" "Park">><<set $park to true>><<addmins 10>><</button>>
<</if>>\
<</if>>\
<<else>>\
Too late to go in the park
<</if>>\
<<if $gameDate.getHours() >= "6" and $gameDate.getHours() < "23">>\
<<button "Fitness Center" "Gym">><<addmins 10>><</button>>
<<else>>\
Fitness Center closed
Opening Hours: 06:00-23:00
<</if>>\
<<if GameDays[$gameDate.getDay()] is "Wed" and $gameDate.getHours() > "19">>\
<<button "Night Club" "Club Dancefloor">><<addmins 10>><</button>>
<<elseif GameDays[$gameDate.getDay()] is "Thu" and $gameDate.getHours() < "4">>\
<<button "Night Club" "Club Dancefloor">><<addmins 10>><</button>>
<<elseif GameDays[$gameDate.getDay()] is "Fri" and $gameDate.getHours() > "19">>\
<<button "Night Club" "Club Dancefloor">><<addmins 10>><</button>>
<<elseif GameDays[$gameDate.getDay()] is "Sat" and $gameDate.getHours() < "4">>\
<<button "Night Club" "Club Dancefloor">><<addmins 10>><</button>>
<<elseif GameDays[$gameDate.getDay()] is "Sat" and $gameDate.getHours() > "19">>\
<<button "Night Club" "Club Dancefloor">><<addmins 10>><</button>>
<<elseif GameDays[$gameDate.getDay()] is "Sun" and $gameDate.getHours() < "4">>\
<<button "Night Club" "Club Dancefloor">><<addmins 10>><</button>>
<<elseif GameDays[$gameDate.getDay()] is "Sun" and $gameDate.getHours() > "19">>\
<<button "Night Club" "Club Dancefloor">><<addmins 10>><</button>>
<<elseif GameDays[$gameDate.getDay()] is "Mon" and $gameDate.getHours() < "4">>\
<<button "Night Club" "Club Dancefloor">><<addmins 10>><</button>>
<<else>>\
Night Club closed
Opening Hours: Wed, Fri-Sun: 20:00-04:00
<</if>>\
<<button "24/7 Corner Shop" "Corner Shop">><<addmins 10>><</button>>
</td>\
</tr>\
</tbody>\
</table>\<<set _random = random(1, 5)>>\
<<if _random == 1>>\
<img src="content/events/random/1.jpg" style="max-width: 70%;">
<div align='center'>\
As you are walking down the sidewalk, you hear a car coming down the street. It starts to slow as it passes you and you look over to the road and see a couple of younger-looking women leaning over looking at you through the car’s open top. The woman in the passenger side leans out the window and gives you a wolf whistle and quickly sits back in her seat. Both girls appear to be laughing their heads off as the car speeds away.
</div>\
<<button "Walk away" "Map">><</button>>
\
\
\
\
\
<<elseif _random == 2>>\
<div align='center'>\
You are walking up some wide concrete stairs going between two buildings just exploring to see where it takes you. Halfway up the stairs, you see an attractive brunet in a form-fitting miniskirt start down the stairs ahead of you.
<img src="content/events/random/2.jpg" style="max-width: 70%;">
You move to the side of the stairs to allow her to pass but she moves over to match you. You continue to get closer and as you are about to move over again to pass her, she suddenly hikes up her skirt and parts her legs slightly exposing her pantyhose and panties beneath. They are both stretched obscenely as they strain to contain what is clearly a very large genital endowment.
<video src="content/events/random/3.mp4" autoplay loop></video>
You blush looking between her legs and her eyes not sure what to do. She begins to hump the air in front of her startling you from your uncertainty. You quickly dart past her and run the rest of the way up the stairs. At the top, panting for breath, you turn and look back down at her as she casually strolls the rest of the way down the stairs as if nothing had happened.
</div>\
<<addarousal 25>>\
<<button "Walk away" "Map">><</button>>
\
\
\
\
\
<<elseif _random == 3>>\
<img src="content/events/random/3.jpg" style="max-width: 50%;">
<div align='center'>\
You find yourself walking down a fairly busy sidewalk along passing by several shops. You stop occasionally window shopping when something catches your eye. You lean forward inspecting the cover of a book in a shop window trying to make out the fine print when you feel a hand grab your tush and give it a firm squeeze. You give out a surprised squeak and spin around to see a middle-aged woman in yoga pants and a jean jacket grinning at you.
</div>\
<img src="content/events/random/4.jpg" style="max-width: 50%;">
<<speech "Random" "Random woman">>You’ve got a pretty fine ass there you know. I wouldn’t mind getting me a piece of that.<</speech>>
<div align='center'>\
Your eyes bulge from your face and you quickly walk away feeling a bit weird being objectified like a piece of meat.
</div>\
<<addarousal 25>>\
<<button "Walk away" "Map">><</button>>
\
\
\
\
\
<<elseif _random == 4>>\
<<if $pgender is "female">>\
<img src="content/events/random/3.jpg">
<div align='center'>\
You wonder around in the town.
</div>\
<<button "Walk away" "Map">><</button>>
\
\
\
<<else>>\
<div align='center'>\
Your feet are tired from walking and you find a bench next to a bus stop to take a break. You pull out your phone to catch up on the latest news while your feet rest. It must be a busy bus because you see several people getting off and on about every 10 minutes or so. You decide to get on to see where it goes and let your feet continue their rest. You sit down on a bench facing the front of the bus and a pretty girl sits next to you. You give her a brief nod hello but she looks to be distracted by her phone so you look out the window watching the city go by. You see her glancing at you from the corner of your eye and then look back away again. She then glances back up at you pausing for a moment as if debating to bother you or not.
</div>\
<<speech "Random" "Random woman">>Pardon, do you know if this bus goes by the police office?<</speech>>
<div align='center'>\
You look back over at her and just shrug.
</div>\
<<speech "Random" "Random woman">>Damn, I can’t seem to find the route it takes.<</speech>>
<div align='center'>\
She continues to flip through pages on her phone. Looking back out the window again, you see a building with a clever mural and as you are admiring its use of trompe l'oeil, you feel a hand rest on your thigh. Except it doesn’t rest long, by the time you look down, you see the girl's hand has slipped further up between your legs and comes to rest cupping your crotch.
</div>\
<<if $locked is true>>\
<<speech "Random" "Random woman">>Oh my, what do we have here? I wasn’t expecting that. You don’t look the type! Don’t stay anything. Just keep looking out the window.<</speech>>
<div align='center'>
Her fingers trace around the edges of the device exploring it with her fingers. You let out an inward sigh of relief as her hand disappears.
<video src="content/events/random/1.mp4" autoplay loop></video>
This is only short-lived because the next thing you know her hand is inching down your back and digging into the waistband of your underwear. You feel her shoulder press against your back forcing you to lean forward practically pressing your face into the glass of the window. A finger traces the crease between your ass cheeks and rests over the hole of your back door. She giggles softly finding it unprotected. With a bit of pressure, her finger slips inside.
</div>\
<<speech "Random" "Random woman">>Just relax and let it happen.<</speech>>
<div align='center'>\
She scoots closer to you using her body to cover the motion of her hand down your back. She focuses her movement on the sensitive p-spot and you bite your lip and close your eyes trying to focus on not cumming. She leans in close to whisper in your ear.
</div>\
<<speech "Random" "Random woman">>You are so fucking hot. When I found you all locked up, I couldn’t help myself. Though I have to say, I half expected this tight little hole of yours would have already been filled. I’m not going to make you cum but I can at least get you nice and horny wishing you could.<</speech>>
<div align='center'>\
You feel your underwear getting damp from precum constantly oozing out through the tip of your cage. You feel your nipples tingling standing erect and perhaps more so as your cock certainly can’t take any more blood. You hardly notice the bus has stopped until suddenly the finger in your hole and the weight on your back is gone. You look back and think you see the girl stepping out the door of the bus. Feeling very dirty and rather embarrassed, you have no choice but to get off the bus at the next stop and finish your walk in this shameful condition.
</div>\
<<addarousal 50>>\
<<button "Walk away" "Map">><</button>>
\
\
\
<<else>>\
<<speech "Random" "Random woman">>Shhhh, don’t say anything. Just keep looking out the window.<</speech>>
<div align='center'>\
Her fingers are gently massaging your cock through the material of your clothes and you are can’t help but react. You feel the erection growing as she uses her fingers to stroke the shaft feeling it grow larger under her fingers delicate movements.
<video src="content/events/random/1.mp4" autoplay loop></video>
</div>\
<<speech "Random" "Random woman">>Just relax and let it happen.<</speech>>
<div align='center'>\
She scoots closer to you using her body to cover the motion of her hands between your legs. She focuses her movement on the sensitive spot just under the head and you bite your lip and close your eyes trying to focus on not cumming. She leans in close to whisper in your ear.
</div>\
<<speech "Random" "Random woman">>You are so fucking hot. I couldn’t help myself. I needed to see what you were packing in there. Such a lovely cock it seems. I want to make you cream yourself. Cum for me. Cum right here on this bus surrounded by people. Yes. Yes… There it is. Mmmmmm.<</speech>>
<div align='center'>\
<video src="content/events/random/2.mp4" autoplay loop></video>
Unable to hold yourself back, you let this stranger’s hands take you over the edge. You do your best to keep quiet so as not to draw any attention to what is happening. You feel yourself squirting making a mess in your underwear. You hear the girl giggle softly and then hop up unexpectedly and exit the bus as it stops.
Feeling very dirty and rather embarrassed, you have no choice but to get off the bus and finish your walk in this shameful condition.
</div>\
<<if $pgender is "male">>\
<<set $mcumcounter += 1>>\
<<else>>\
<<set $scumcounter += 1>>\
<</if>>\
<<set $noorgasm = 0>>\
<<zeroarousal>>\
<<button "Leave" "Map">><</button>>
<</if>>\
<</if>>\
\
\
\
\
\
<<elseif _random == 5>>\
<img src="content/events/random/3.jpg" style="max-width: 50%;">
<div align='center'>\
You wonder around in the town.
</div>\
<<button "Walk away" "Map">><</button>>
<</if>>\
<div align='center' style='font-size: 150%;'><b>Bonnie's house</b></div>\
<img src="content/location/bonnie_house.jpg">
\
<<if $questtransformation == 2 and $gameDate.getHours() >= "20" and GameDays[$gameDate.getDay()] is "Fri">>\
<span id='text'>\
<<button "Knock on the door">>
<<replace "#text">>\
<<speech "Bonnie">>You're late. Come in.<</speech>>
<div align='center'>\
She guides you in the guest room.
</div>\
<<button "Follow her" "Quest Female Transformation">><</button>>
<</replace>>
<</button>>
</span>\
\
\
\
\
\
<<elseif $questtransformation == 7 and $sbsv >= 1 and $gameDate.getHours() >= "10" and $gameDate.getHours() <= "22" and GameDays[$gameDate.getDay()] is "Sat" or $questtransformation == 7 and $sbsv >= 1 and $gameDate.getHours() >= "10" and $gameDate.getHours() <= "22" and GameDays[$gameDate.getDay()] is "Sun">>\
<span id='text'>\
<<button "Knock on the door">>
<<replace "#text">>\
<<speech "Bonnie">>Hi. Come in.<</speech>>
<div align='center'>\
She guides you in the guest room.
</div>\
<<button "Follow her" "Quest Female Transformation">><</button>>
<</replace>>
<</button>>
</span>\
\
\
\
\
\
<<elseif $questtracking == 4 and GameDays[$gameDate.getDay()] is "Sat" and $gameDate.getHours() >= "19" and $gameDate.getHours() < "21">>\
<span id='text'>\
<<button "Knock on the door">>
<<replace "#text">>\
<<speech "Bonnie">>Hello.<</speech>>
<div align='center'>\
Bonnie opens the door.
</div>\
<<button "Follow her" "Quest tracking 1">><</button>>
<</replace>>
<</button>>
</span>\
\
\
\
\
\
<<else>>
<span id='text'>\
<<button "Knock on the door">>
<<replace "#text">>\
<div align='center'>\
Nobody at home.
</div>\
<<button "Go in the Town" "Map">><<addmins 10>><</button>>
<</replace>>
<</button>>
</span>\
<</if>>
<div align='center' style='font-size: 150%;'><b>Angeles house</b></div>\
<img src="content/location/angeles_house.jpg">
<<if $angelesquest == 1 and GameDays[$gameDate.getDay()] is "Sat" and $gameDate.getHours() >= "10" and $gameDate.getHours() <= "20">>\
<<if $pgender is "male">>\
<div align='center'>\
You are a little nervous to visit Angeles for some reason. You had a lot of fun together with her and Mariana but you are not sure if you will live up to her expectations of you after Mariana’s birthday bang. You are pretty certain that she was at least tipsy that night. What if she doesn’t like you as much when she’s sober? You begin to brace yourself for what could potentially be an awkward encounter. As you ring the doorbell, you feel the butterflies in your tummy. The wait for an answer to the bell takes a while and you start wondering if you should ring again or just turn and go home. You are spared from deciding as you hear footsteps approach and the door opens wide. Angeles wearing a short black mini greets you with a warm smile and a hug. Her perfume is strong and fills you with excitement.
</div>\
<<button "Go in" "Angeles quest">><</button>>
\
\
\
<<else>>\
<div align='center'>\
She only likes male body. You should go home and turn yourself into male.
</div>\
<<button "Leave" "Map">><</button>>
<</if>>\
\
\
\
<<else>>\
<div align='center'>\
Looks like she is not at home.
</div>\
<<button "Leave" "Map">><</button>>
<</if>>\
<div align='center' style='font-size: 150%;'><b>Lianna's house</b></div>\
<img src="content/location/angeles_house.jpg">
\
<<if $gameDate.getHours() >= "19" and $gameDate.getHours() <= "22">>\
<div align='center'>\
You step up to the door and press the doorbell. You wait just a few seconds before the door softly creaks open revealing no one behind. You step inside to the dimly lit room and as you turn, you see a silhouette push the door closed behind you. As your eyes begin to acclimate to the dim light, you see it duck down. You notice the light switch on the wall and flip it causing the room to flood with the overhead light. You see Lianna dressed up in a snug-fitting costume.
</div>\
<img src="content/peoples/lianna/2.jpg">
\
<<speech "player" "$fname">>You scared the hell out of me! Wow, you look super hot. I’m not sure who you are supposed to be though. Should I recognize that?<</speech>>
<<speech "Lianna">>I’m so disappointed in you right now! You don't know Gwen Stacy? From ‘Into the Spiderverse’! Perhaps if I had the mask on you might have guessed it. Seeing how you reacted, as priceless as it was, it is probably best I didn’t. It looked like I nearly gave you a heart attack. I’m glad you like it regardless. You are in need of some serious culturing though, you know.<</speech>>
<<speech "player" "$fname">>Hey, I’ve been busy. Do I get any credit for at least having heard of the movie? I think I heard there is a sequel?<</speech>>
<<speech "Lianna">>Yes and I’m so excited to see it! But enough of me geeking out. Come on in and make yourself comfortable. Can I get you something to drink?<</speech>>
<<speech "player" "$fname">>I’m easy. Whatever you’re having I’m sure would be fine.<</speech>>
<<speech "Lianna">>You are easy, huh? I like the sound of that! Maybe we should just skip straight to the bedroom so I can get into your pants.<</speech>>
<<speech "player" "$fname">>I can’t tell if you are joking or not but I’m game. Once my heart stopped trying to jump out of my chest from your greeting, I was able to admire your sexy costume. I expect it isn’t just from your hands that you shoot sticky webs.<</speech>>
<<speech "Lianna">>No, not at all! I have three web-shooters you could say but I do keep one of them undercover. You know, for when I get into tight spots...<</speech>>
<div align='center'>\
Lianna grabs your hand and pulls you up off the couch to lead you back to her room. She hand you a dog mask to wear it. Once you put it on, you fall back onto her bed and pulls back her legs as she pretends to shoot with you webs from both of her hands and slowly pretends to pull you towards her.
</div>\
<img src="content/peoples/lianna/3.jpg">
\
<<speech "Lianna">>Here are two shooters. Come and find my third.<</speech>>
<div align='center'>\
You waste no more time and jump on the bed over her. Your lips quickly find their way to hers as you give her a smoldering kiss. Your lips open and her tongue quickly darts into your mouth. Her legs wrap around you and you can feel her hardness pressing against you through her thin suit. Your hand slips between your bodies and begins to rub it. The heat coming through the suit as you feel her growing harder turns you on even more. You fumble around a little more as your tongues continue to play tonsil hockey until you find the waistband of her leggings and push your hand inside. You take great pleasure in wrapping your fingers around her hardness and feeling it twitch. You break the kiss and sit up long enough to tug down on her tights just far enough down to let her erect web-shooter spring free. You bite your lower lip softly as you admire it and then your mouth dives in to take it in. Lianna arches her back and groans as she feels your hot mouth envelop her sex. Your arms reach around her thighs so your hands can wander over the slippery elastic fabric of her top. Feeling the hard nubbins of her nipples through the fabric, you begin to circle them with your index fingers as your head begins to slowly bob up and down.
</div>\
<video src="content/peoples/lianna/1.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Lianna">>Shit, that feels good! I haven’t cum in a few days so I don’t think I’m going to last long unless you slow down.<</speech>>
<div align='center'>\
In response, you begin to bob faster, working her pole like a pro and lightly pinch her hard nipples with your fingers and thumbs.
</div>\
<<if $pgender is "male">>\
<<speech "Lianna">>Oh gawd! Fuck, I’m going to cum. You bastard!<</speech>>
<<else>>\
<<speech "Lianna">>Oh gawd! Fuck, I’m going to cum. You bitch!<</speech>>
<</if>>\
<video src="content/peoples/lianna/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You carefully work your mouth doing your best to work her dick without it going too deep and when she cums, you feel it shoot against the roof rather than the back of your throat. Her body goes limp as a noodle on the bed and you slowly slip to the floor where you take out a plastic vial out of your pocket and spit the creamy load into it and cap it before slipping the small warm package back into your pocket.
<img src="content/peoples/lianna/4.jpg">
Peaking your head up over the edge of the bed, you see her laying there as her chest heaves up and down. You climb back up onto the bed and snuggle up next to her.
</div>\
<<speech "Lianna">>No fair! You are WAY too good at that. I think I’m going to have to torture you a bit for punishment. I hope you didn’t have any plans for a while. I wonder how many times I can edge you before I finally ruin your orgasm. I am eager to find out!<</speech>>
<div align='center'>\
Her hands begin to slide over your tummy as they slide up higher when you hear a strange vibrating noise followed quickly by a high-pitched ringing noise.
</div>\
<<speech "Lianna">>No! No no no no! Not fair! I’ve been looking forward to this! Shit!<</speech>>
<<speech "player" "$fname">>What’s wrong? What’s happening?<</speech>>
<<speech "Lianna">>It’s my phone. There must have been another security breach. I’m being called back to work. FUCK! We’ll have to pick it up from here next time. I have to go.<</speech>>
<div align='center'>\
You feel ice shooting down your veins as you wonder if Bonnie did something dumb and is about to get caught. Or worse that your parents were caught trying to escape too early! Lianna dashes into her closet and yells loud enough for you to hear her.
</div>\
<<speech "Lianna">>I’m sorry again. Feel free to take your time getting cleaned up. I’m afraid you’ll have to see yourself out.<</speech>>
<<speech "player" "$fname">>It’s okay. I understand. Text me if you can. Otherwise, I’ll see you at work when I see you I guess. I hope it isn’t another crazy week from hell for you.<</speech>>
<<speech "Lianna">>Huh? Oh, yeah! Okay. See you soon I hope.<</speech>>
<div align='center'>\
You quickly clean up and see yourself out the door. Less than 30 seconds later, Lianna dashes out the door and runs towards the office. You take out your phone and quickly text Bonnie that the lab security team just went on alert.
</div>\
<<addarousal 50>>\
<<takeenergy 10>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<if $pgender is "male">>\
<<set $mgblowjobcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<elseif $pgender is "female">>\
<<set $fgblowjobcounter += 1>>\
<<set $fcumswallowcounter += 1>>\
<<elseif $pgender is "shemale">>\
<<set $sgblowjobcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<</if>>\
<<button "Leave" "Map">><<addhours 1>><<set $finalquest = 14>><</button>>
\
\
\
\
\
<<else>>\
<div align='center'>\
She is not at home. Come back in the right time.
</div>\
<<button "Leave" "Map">><</button>>
<</if>>\
<div align='center' style='font-size: 150%;'><b>Night Club</b></div>\
<img src="content/location/club_dance.jpg">
\
<<if $kimquest == 13>>\
<<if GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun">>\
<<if $gameDate.getHours() >= "20">>\
<<button "Find Kimberlee" "Kimberlee quest 2">><<set $kimquest = 14>><</button>>
\
\
\
<<else>>\
<div align='center'>\
You can not find Kimberlee. Looks like she is not here.
</div>\
<<button "Go to the bar" "Club Bar">><</button>>
<<button "Go to the toilet" "Club Toilet">><</button>>
<<button "Dance" "Club Dance">><</button>>
<<button "Leave" "Map">><</button>>
<</if>>\
\
\
\
<<else>>\
<div align='center'>\
You can not find Kimberlee. Looks like she is not here.
</div>\
<<button "Go to the bar" "Club Bar">><</button>>
<<button "Go to the toilet" "Club Toilet">><</button>>
<<button "Dance" "Club Dance">><</button>>
<<button "Leave" "Map">><</button>>
<</if>>\
\
\
\
<<else>>\
<<if $gameDate.getHours() > "3" and $gameDate.getHours() < "20">>\
<div align='center'>\
It is too late. You have to go home.
</div>\
<<button "Leave" "Map">><</button>>
<<else>>\
<<button "Go to the bar" "Club Bar">><</button>>
<<button "Go to the toilet" "Club Toilet">><</button>>
<<button "Dance" "Club Dance">><</button>>
<<button "Leave" "Map">><</button>>
<</if>>\
<</if>>\
<<if $questsecurityguy == 3 and $currUnderwear == "none" and $currBra == "none" and $currSocks == "none" and $currShoes == "shoes3" and $currShirt == "shirt3" and $currTrousers == "trousers3" and $currJumper == "none" and $pgender == "shemale" and $willingness >= 50>>\
<img src="content/location/club_dance.jpg">
\
<div align='center'>\
You found Peter. You walk towards him and start flirty dancing. After a couple of shots he invites you to his place.
</div>\
<<button "Go with him" "Quest security guy 1">><</button>>
\
\
\
\
\
<<elseif $CurEN < 5>>\
<div align='center'>\
<video @src="'content/location/dance' + random(1, 3) + '.mp4'" autoplay loop></video>
You are very tired and you can not dancing anymore.
</div>\
<<button "Leave the club" "Map">><</button>>
\
\
\
\
\
<<else>>\
<div align='center'>\
<video @src="'content/location/dance' + random(1, 3) + '.mp4'" autoplay loop></video>
You and showing your moves on the dance floor as the vibrations of the music resonate through your body. You are lost in a trance of the music and accidentally bump into someone.
</div>\
<<set _randomdance = random(1, 5)>>\
<<if _randomdance == 1>>\
<img @src="$NPCs[0].center">
\
<div align='center'>\
Your spin and apologize simultaneously as a lovely lady with $NPCs[0].bodyColor skin and $NPCs[0].hair hair begins to apologize to you as well. You both laugh and you see that she has a twinkle in her eye as she looks you up and down. You ask her if you can buy her a drink to make up for being so clumsy on the dance floor and she agrees and follows you to the bar. While you wait for the drinks, you begin to chat to get to know her better.
</div>\
<<speech "player" "$fname">>Hi, I'm $fname. I'd apologize again for bumping into you on the dancefloor but I'm afraid I'd be lying. What is your name?<</speech>>
<<speechnpc "0" "$NPCs[0].name">>Hey $fname, I'm $NPCs[0].name. You are really cute. I'm glad I bumped into you as well. Tell me a little about yourself.<</speechnpc>>
<div align='center'>\
Your drinks come and the two of you get to know each other better. You tell her that you are still new in town working at the lab and share some of your interests. You find out that $NPCs[0].name is $NPCs[0].sexType and $NPCs[0].trait. One drink turns into two and then three.
</div>\
<<if $pgender is "male" and $NPCs[0].sexType isnot "lesbian">>\
<<speechnpc "0" "$NPCs[0].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 0>><</button>>
<<elseif $pgender is "female" and $NPCs[0].sexType isnot "hetero">>\
<<speechnpc "0" "$NPCs[0].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 0>><</button>>
<<elseif $pgender is "shemale" and $NPCs[0].sexType is "shemale">>\
<<speechnpc "0" "$NPCs[0].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 0>><</button>>
<<else>>\
<<speechnpc "0" "$NPCs[0].name">>Hey $fname, I am having a lot of fun getting to know you but I don't think it is going to work out. I really do think you are cute but in more of a friend kind of way. Sorry.<</speechnpc>>
<div align='center'>\
The two of you head back out to the dance floor and go your separate ways.
</div>\
<</if>>\
\
\
\
\
\
<<elseif _randomdance == 2>>\
<img @src="$NPCs[1].center">
\
<div align='center'>\
Your spin and apologize simultaneously as a lovely lady with $NPCs[1].bodyColor skin and $NPCs[1].hair hair begins to apologize to you as well. You both laugh and you see that she has a twinkle in her eye as she looks you up and down. You ask her if you can buy her a drink to make up for being so clumsy on the dance floor and she agrees and follows you to the bar. While you wait for the drinks, you begin to chat to get to know her better.
</div>\
<<speech "player" "$fname">>Hi, I'm $fname. I'd apologize again for bumping into you on the dancefloor but I'm afraid I'd be lying. What is your name?<</speech>>
<<speechnpc "1" "$NPCs[1].name">>Hey $fname, I'm $NPCs[1].name. You are really cute. I'm glad I bumped into you as well. Tell me a little about yourself.<</speechnpc>>
<div align='center'>\
Your drinks come and the two of you get to know each other better. You tell her that you are still new in town working at the lab and share some of your interests. You find out that $NPCs[1].name is $NPCs[1].sexType and $NPCs[1].trait. One drink turns into two and then three.
</div>\
<<if $pgender is "male" and $NPCs[1].sexType isnot "lesbian">>\
<<speechnpc "1" "$NPCs[1].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 1>><</button>>
<<elseif $pgender is "female" and $NPCs[1].sexType isnot "hetero">>\
<<speechnpc "1" "$NPCs[1].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 1>><</button>>
<<elseif $pgender is "shemale" and $NPCs[1].sexType is "shemale">>\
<<speechnpc "1" "$NPCs[1].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 1>><</button>>
<<else>>\
<<speechnpc "1" "$NPCs[1].name">>Hey $fname, I am having a lot of fun getting to know you but I don't think it is going to work out. I really do think you are cute but in more of a friend kind of way. Sorry.<</speechnpc>>
<div align='center'>\
The two of you head back out to the dance floor and go your separate ways.
</div>\
<</if>>\
\
\
\
\
\
<<elseif _randomdance == 3>>\
<img @src="$NPCs[2].center">
\
<div align='center'>\
Your spin and apologize simultaneously as a lovely lady with $NPCs[2].bodyColor skin and $NPCs[2].hair hair begins to apologize to you as well. You both laugh and you see that she has a twinkle in her eye as she looks you up and down. You ask her if you can buy her a drink to make up for being so clumsy on the dance floor and she agrees and follows you to the bar. While you wait for the drinks, you begin to chat to get to know her better.
</div>\
<<speech "player" "$fname">>Hi, I'm $fname. I'd apologize again for bumping into you on the dancefloor but I'm afraid I'd be lying. What is your name?<</speech>>
<<speechnpc "2" "$NPCs[2].name">>Hey $fname, I'm $NPCs[2].name. You are really cute. I'm glad I bumped into you as well. Tell me a little about yourself.<</speechnpc>>
<div align='center'>\
Your drinks come and the two of you get to know each other better. You tell her that you are still new in town working at the lab and share some of your interests. You find out that $NPCs[2].name is $NPCs[2].sexType and $NPCs[2].trait. One drink turns into two and then three.
</div>\
<<if $pgender is "male" and $NPCs[2].sexType isnot "lesbian">>\
<<speechnpc "2" "$NPCs[2].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 2>><</button>>
<<elseif $pgender is "female" and $NPCs[2].sexType isnot "hetero">>\
<<speechnpc "2" "$NPCs[2].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 2>><</button>>
<<elseif $pgender is "shemale" and $NPCs[2].sexType is "shemale">>\
<<speechnpc "2" "$NPCs[2].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 2>><</button>>
<<else>>\
<<speechnpc "2" "$NPCs[2].name">>Hey $fname, I am having a lot of fun getting to know you but I don't think it is going to work out. I really do think you are cute but in more of a friend kind of way. Sorry.<</speechnpc>>
<div align='center'>\
The two of you head back out to the dance floor and go your separate ways.
</div>\
<</if>>\
\
\
\
\
\
<<elseif _randomdance == 4>>\
<img @src="$NPCs[3].center">
\
<div align='center'>\
Your spin and apologize simultaneously as a lovely lady with $NPCs[3].bodyColor skin and $NPCs[3].hair hair begins to apologize to you as well. You both laugh and you see that she has a twinkle in her eye as she looks you up and down. You ask her if you can buy her a drink to make up for being so clumsy on the dance floor and she agrees and follows you to the bar. While you wait for the drinks, you begin to chat to get to know her better.
</div>\
<<speech "player" "$fname">>Hi, I'm $fname. I'd apologize again for bumping into you on the dancefloor but I'm afraid I'd be lying. What is your name?<</speech>>
<<speechnpc "3" "$NPCs[3].name">>Hey $fname, I'm $NPCs[3].name. You are really cute. I'm glad I bumped into you as well. Tell me a little about yourself.<</speechnpc>>
<div align='center'>\
Your drinks come and the two of you get to know each other better. You tell her that you are still new in town working at the lab and share some of your interests. You find out that $NPCs[3].name is $NPCs[3].sexType and $NPCs[3].trait. One drink turns into two and then three.
</div>\
<<if $pgender is "male" and $NPCs[3].sexType isnot "lesbian">>\
<<speechnpc "3" "$NPCs[3].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 3>><</button>>
<<elseif $pgender is "female" and $NPCs[3].sexType isnot "hetero">>\
<<speechnpc "3" "$NPCs[3].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 3>><</button>>
<<elseif $pgender is "shemale" and $NPCs[3].sexType is "shemale">>\
<<speechnpc "3" "$NPCs[3].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 3>><</button>>
<<else>>\
<<speechnpc "3" "$NPCs[3].name">>Hey $fname, I am having a lot of fun getting to know you but I don't think it is going to work out. I really do think you are cute but in more of a friend kind of way. Sorry.<</speechnpc>>
<div align='center'>\
The two of you head back out to the dance floor and go your separate ways.
</div>\
<</if>>\
\
\
\
\
\
<<elseif _randomdance == 5>>\
<img @src="$NPCs[4].center">
\
<div align='center'>\
Your spin and apologize simultaneously as a lovely lady with $NPCs[4].bodyColor skin and $NPCs[4].hair hair begins to apologize to you as well. You both laugh and you see that she has a twinkle in her eye as she looks you up and down. You ask her if you can buy her a drink to make up for being so clumsy on the dance floor and she agrees and follows you to the bar. While you wait for the drinks, you begin to chat to get to know her better.
</div>\
<<speech "player" "$fname">>Hi, I'm $fname. I'd apologize again for bumping into you on the dancefloor but I'm afraid I'd be lying. What is your name?<</speech>>
<<speechnpc "4" "$NPCs[4].name">>Hey $fname, I'm $NPCs[4].name. You are really cute. I'm glad I bumped into you as well. Tell me a little about yourself.<</speechnpc>>
<div align='center'>\
Your drinks come and the two of you get to know each other better. You tell her that you are still new in town working at the lab and share some of your interests. You find out that $NPCs[4].name is $NPCs[4].sexType and $NPCs[4].trait. One drink turns into two and then three.
</div>\
<<if $pgender is "male" and $NPCs[4].sexType isnot "lesbian">>\
<<speechnpc "4" "$NPCs[4].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 4>><</button>>
<<elseif $pgender is "female" and $NPCs[4].sexType isnot "hetero">>\
<<speechnpc "4" "$NPCs[4].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 4>><</button>>
<<elseif $pgender is "shemale" and $NPCs[4].sexType is "shemale">>\
<<speechnpc "4" "$NPCs[4].name">>Hey $fname, I am having a lot of fun getting to know you. How would you like to come over to my place and we can continue our dance there?<</speechnpc>>
<<button "Go with her" "NPC Sex">><<set $npcnumber = 4>><</button>>
<<else>>\
<<speechnpc "4" "$NPCs[4].name">>Hey $fname, I am having a lot of fun getting to know you but I don't think it is going to work out. I really do think you are cute but in more of a friend kind of way. Sorry.<</speechnpc>>
<div align='center'>\
The two of you head back out to the dance floor and go your separate ways.
</div>\
<</if>>\
<</if>>\
<<takeenergy 5>>\
<<addmins 30>>\
<<if $CurEN < 5>>\
<div align='center'>\
You are very tired and you can not dancing anymore.
</div>\
<<button "Leave the club" "Map">><</button>>
\
\
\
<<else>>\
<<button "Keep dancing" "Club Dance">><</button>>
<<button "Stop dancing" "Club Dancefloor">><</button>>
<</if>>\
<</if>>\
<div align='center' style='font-size: 150%;'><b>Night Club Bar</b></div>\
<img src="content/location/club_bar.jpg">
\
<<button "Toilet" "Club Toilet">><</button>>
<<button "Dancefloor" "Club Dancefloor">><</button>>
<<button "Leave" "Map">><</button>>
<div align='center' style='font-size: 150%;'><b>Night Club Toilet</b></div>\
<img src="content/location/club_ftoilet.jpg">
\
<div align='center'>\
<<if $pgender is "male">>\
<<set _rnd to random(1, 3)>>\
<<if _rnd == 1>>\
You see a man masturbating in a stall. He turns to you and asks you to join.
<<if $CurEN >= 20>>\
<<button "Accept his offer" "Toilet Sex">><<set $toiletsex = 1>><<set $pdollcum to true>><</button>>
<<else>>\
You are tired to accept his offer.
<</if>>\
\
\
\
<<elseif _rnd == 2>>\
You see a woman masturbating in a stall. She turns to you and asks you to join.
<<if $CurEN >= 20>>\
<<button "Accept her offer" "Toilet Sex">><<set $toiletsex = 2>><<set $pdollcum to true>><</button>>
<<else>>\
You are tired to accept her offer.
<</if>>\
\
\
\
<<else>>\
You see a shemale masturbating in a stall. She turns to you and asks you to join.
<<if $CurEN >= 20>>\
<<button "Accept her offer" "Toilet Sex">><<set $toiletsex = 3>><<set $pdollcum to true>><</button>>
<<else>>\
You are tired to accept her offer.
<</if>>\
<</if>>\
\
\
\
\
\
<<elseif $pgender is "female" and $CurEN >= 10>>\
<<set _rnd to random(1, 2)>>\
<<if _rnd == 1>>\
You see a man masturbating in a stall. He turns to you and asks you to join.
<<if $CurEN >= 20>>\
<<button "Accept his offer" "Toilet Sex">><<set $toiletsex = 4>><<set $pdollcum to true>><</button>>
<<else>>\
You are tired to accept his offer.
<</if>>\
\
\
\
<<elseif _rnd == 2>>\
You see a woman masturbating in a stall. She turns to you and asks you to join.
<<if $CurEN >= 20>>\
<<button "Accept her offer" "Toilet Sex">><<set $toiletsex = 5>><<set $pdollcum to true>><</button>>
<<else>>\
You are tired to accept her offer.
<</if>>\
<</if>>\
\
\
\
\
\
<<elseif $pgender is "shemale" and $CurEN >= 10>>\
You see a man masturbating in a stall. He turns to you and asks you to join.
<<if $CurEN >= 20>>\
<<button "Accept his offer" "Toilet Sex">><<set $toiletsex = 6>><<set $pdollcum to true>><</button>>
<<else>>\
You are tired to accept his offer.
<</if>>\
<</if>>\
</div>\
<<button "Bar" "Club Bar">><</button>>
<<button "Dancefloor" "Club Dancefloor">><</button>>
<<button "Leave" "Map">><</button>>
<div align='center'>\
<<if $toiletsex == 1>>\
You two having fun in the club toilet.
<video @src="'content/porn/toilet/male/bj/' + random(1, 12) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/male/fuck/' + random(1, 9) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/male/cum/' + random(1, 3) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/male/cum/' + random(1, 3) + '.mp4'" autoplay loop></video>
After you helped him, you wash your face.
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<handskill>>\
<</timed>>\
<<timed 900ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 1200ms>>\
<<sexskill>>\
<</timed>>\
<<timed 1500ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $analsize += 1>>\
<<set $mcumcounter += 1>>\
<<set $mkisscounter += 1>>\
<<set $mghjcounter += 1>>\
<<set $mrhjcounter += 1>>\
<<set $mgblowjobcounter += 1>>\
<<set $mrblowjobcounter += 1>>\
<<set $mganalcounter += 1>>\
<<set $mranalcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<set $noorgasm = 0>>\
<<takeenergy 20>>\
<<zeroarousal>>\
<<addmins 30>>\
<<button "Leave" "Club Dancefloor">><<set $pdollcum to false>><</button>>
\
\
\
\
\
<<elseif $toiletsex == 2>>\
You two having fun in the club toilet.
<video @src="'content/porn/toilet/female/bj/' + random(1, 37) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/female/fuck/' + random(1, 34) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/female/cum/' + random(1, 10) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/female/cum/' + random(1, 10) + '.mp4'" autoplay loop></video>
After you helped her, you wash your face.
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<handskill>>\
<</timed>>\
<<timed 900ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 1200ms>>\
<<sexskill>>\
<</timed>>\
<<set $mcumcounter += 1>>\
<<set $mkisscounter += 1>>\
<<set $mghjcounter += 1>>\
<<set $mrhjcounter += 1>>\
<<set $mpussylickcounter += 1>>\
<<set $mrblowjobcounter += 1>>\
<<set $mpussyfuckcounter += 1>>\
<<set $mganalcounter += 1>>\
<<set $noorgasm = 0>>\
<<takeenergy 20>>\
<<zeroarousal>>\
<<addmins 30>>\
<<button "Leave" "Club Dancefloor">><<set $pdollcum to false>><</button>>
\
\
\
\
\
<<elseif $toiletsex == 3>>\
You two having fun in the club toilet.
<video @src="'content/porn/toilet/female/bj/' + random(1, 30) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/female/fuck/' + random(1, 15) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/female/cum/' + random(1, 10) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/female/cum/' + random(1, 10) + '.mp4'" autoplay loop></video>
After you helped her, you wash your face.
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<handskill>>\
<</timed>>\
<<timed 900ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 1200ms>>\
<<sexskill>>\
<</timed>>\
<<timed 1500ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $analsize += 1>>\
<<set $mcumcounter += 1>>\
<<set $mkisscounter += 1>>\
<<set $mghjcounter += 1>>\
<<set $mrhjcounter += 1>>\
<<set $mgblowjobcounter += 1>>\
<<set $mrblowjobcounter += 1>>\
<<set $mganalcounter += 1>>\
<<set $mranalcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<set $noorgasm = 0>>\
<<takeenergy 20>>\
<<zeroarousal>>\
<<addmins 30>>\
<<button "Leave" "Club Dancefloor">><<set $pdollcum to false>><</button>>
\
\
\
\
\
<<elseif $toiletsex == 4>>\
You two having fun in the club toilet.
<video @src="'content/porn/toilet/female/bj/' + random(1, 37) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/female/fuck/' + random(1, 34) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/female/cum/' + random(1, 10) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/female/cum/' + random(1, 10) + '.mp4'" autoplay loop></video>
After you helped him, you wash your face.
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<handskill>>\
<</timed>>\
<<timed 900ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 1200ms>>\
<<sexskill>>\
<</timed>>\
<<timed 1500ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $fcumcounter += 1>>\
<<set $fkisscounter += 1>>\
<<set $fghjcounter += 1>>\
<<set $frhjcounter += 1>>\
<<set $fgblowjobcounter += 1>>\
<<set $frpussylickcounter += 1>>\
<<set $frpussyfuckcounter += 1>>\
<<set $franalcounter += 1>>\
<<set $fcumswallowcounter += 1>>\
<<set $analsize += 1>>\
<<set $pussysize += 1>>\
<<set $noorgasm = 0>>\
<<takeenergy 20>>\
<<zeroarousal>>\
<<addmins 30>>\
<<button "Leave" "Club Dancefloor">><<set $pdollcum to false>><</button>>
\
\
\
\
\
<<elseif $toiletsex == 5>>\
You two having fun in the club toilet.
<video @src="'content/porn/toilet/female/lick/' + random(1, 9) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/female/lick/' + random(1, 9) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/female/cum/' + random(11, 30) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/female/cum/' + random(11, 30) + '.mp4'" autoplay loop></video>
After you helped her, you wash your face.
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<handskill>>\
<</timed>>\
<<timed 900ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 1200ms>>\
<<sexskill>>\
<</timed>>\
<<set $noorgasm = 0>>\
<<set $frpussylickcounter += 1>>\
<<set $fgpussylickcounter += 1>>\
<<set $fkisscounter += 1>>\
<<set $fghjcounter += 1>>\
<<set $frhjcounter += 1>>\
<<takeenergy 20>>\
<<zeroarousal>>\
<<addmins 30>>\
<<button "Leave" "Club Dancefloor">><<set $pdollcum to false>><</button>>
\
\
\
\
\
<<elseif $toiletsex == 6>>\
You two having fun in the club toilet.
<video @src="'content/porn/toilet/male/bj/' + random(13, 15) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/male/fuck/' + random(10, 12) + '.mp4'" autoplay loop></video>
<video @src="'content/porn/toilet/male/cum/' + random(4, 6) + '.mp4'" autoplay loop></video>
After you helped him, you wash your face.
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<handskill>>\
<</timed>>\
<<timed 900ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 1200ms>>\
<<sexskill>>\
<</timed>>\
<<timed 1500ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $scumcounter += 1>>\
<<set $skisscounter += 1>>\
<<set $sghjcounter += 1>>\
<<set $srhjcounter += 1>>\
<<set $sgblowjobcounter += 1>>\
<<set $srblowjobcounter += 1>>\
<<set $sganalcounter += 1>>\
<<set $sranalcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<set $analsize += 1>>\
<<set $noorgasm = 0>>\
<<takeenergy 20>>\
<<zeroarousal>>\
<<addmins 30>>\
<<button "Leave" "Club Dancefloor">><<set $pdollcum to false>><</button>>
<</if>>\
</div>\
<<nobr>>
<<if $gameDate.getHours() >= "0" and $gameDate.getHours() < "2" and $weatherkey is false>>
<<set $weathertype = $weathernight.random()>>
<<set $weatherkey to true>>
<<elseif $gameDate.getHours() >= "2" and $gameDate.getHours() < "4" and $weatherkey is true>>
<<set $weathertype = $weathernight.random()>>
<<set $weatherkey to false>>
<<elseif $gameDate.getHours() >= "4" and $gameDate.getHours() < "6" and $weatherkey is false>>
<<set $weathertype = $weathernight.random()>>
<<set $weatherkey to true>>
<<elseif $gameDate.getHours() >= "6" and $gameDate.getHours() < "8" and $weatherkey is true>>
<<set $weathertype = $weatherday.random()>>
<<set $weatherkey to false>>
<<elseif $gameDate.getHours() >= "8" and $gameDate.getHours() < "10" and $weatherkey is false>>
<<set $weathertype = $weatherday.random()>>
<<set $weatherkey to true>>
<<elseif $gameDate.getHours() >= "10" and $gameDate.getHours() < "12" and $weatherkey is true>>
<<set $weathertype = $weatherday.random()>>
<<set $weatherkey to false>>
<<elseif $gameDate.getHours() >= "12" and $gameDate.getHours() < "14" and $weatherkey is false>>
<<set $weathertype = $weatherday.random()>>
<<set $weatherkey to true>>
<<elseif $gameDate.getHours() >= "14" and $gameDate.getHours() < "16" and $weatherkey is true>>
<<set $weathertype = $weatherday.random()>>
<<set $weatherkey to false>>
<<elseif $gameDate.getHours() >= "16" and $gameDate.getHours() < "18" and $weatherkey is false>>
<<set $weathertype = $weatherday.random()>>
<<set $weatherkey to true>>
<<elseif $gameDate.getHours() >= "18" and $gameDate.getHours() < "20" and $weatherkey is true>>
<<set $weathertype = $weatherday.random()>>
<<set $weatherkey to false>>
<<elseif $gameDate.getHours() >= "20" and $gameDate.getHours() < "22" and $weatherkey is false>>
<<set $weathertype = $weathernight.random()>>
<<set $weatherkey to true>>
<<elseif $gameDate.getHours() >= "22" and $weatherkey is true>>
<<set $weathertype = $weathernight.random()>>
<<set $weatherkey to false>>
<</if>>
<<if GameDays[$gameDate.getDay()] is "Mon" and $daykey == "1">>
<<set $daycount += 1>>
<<set $questdaycount += 1>>
<<set $facialhair += 1>>
<<set $bodyhair += 1>>
<<set $bodywash += 1>>
<<set $noorgasm += 1>>
<<set $choffice1 to false>>
<<set $mbedroom1 to false>>
<<set $mlivingroom1 to false>>
<<set $mgarden1 to false>>
<<set $clroom1 to false>>
<<set $dailyswim to false>>
<<set $dailyyoga to false>>
<<set $dailysauna to false>>
<<set $dailygymweight to false>>
<<set $dailygymrun to false>>
<<set $jordidailyplay to false>>
<<set $chanelshowerdaily to false>>
<<set $chanelshowerdaily2 to false>>
<<set $marianashowerdaily to false>>
<<if $locked is true and $ht >= 11>>
<<set $lockeddays += 1>>
<</if>>
<<set $dailylianna to false>>
<<set $parkrapecheck to false>>
<<if $chanelmessage >= 3 and $chanelroomcleaning is false>><<set $roomcleanend to true>><</if>>
<<if $chanelroomcleaning is true>><<set $chanelroomcleaning to false>><</if>>
<<set $daykey to 2>>
<<elseif GameDays[$gameDate.getDay()] is "Tue" and $daykey == "2">>
<<set $daycount += 1>>
<<set $questdaycount += 1>>
<<set $facialhair += 1>>
<<set $bodyhair += 1>>
<<set $bodywash += 1>>
<<set $noorgasm += 1>>
<<set $choffice1 to false>>
<<set $mbedroom1 to false>>
<<set $mlivingroom1 to false>>
<<set $mgarden1 to false>>
<<set $clroom1 to false>>
<<if $locked is true and $ht >= 11>>
<<set $lockeddays += 1>>
<</if>>
<<set $dailylianna to false>>
<<set $parkrapecheck to false>>
<<set $dailyswim to false>>
<<set $dailyyoga to false>>
<<set $dailysauna to false>>
<<set $dailygymweight to false>>
<<set $dailygymrun to false>>
<<set $jordidailyplay to false>>
<<set $chanelshowerdaily to false>>
<<set $chanelshowerdaily2 to false>>
<<set $marianashowerdaily to false>>
<<set $daykey to 3>>
<<elseif GameDays[$gameDate.getDay()] is "Wed" and $daykey == "3">>
<<set $daycount += 1>>
<<set $questdaycount += 1>>
<<set $facialhair += 1>>
<<set $bodyhair += 1>>
<<set $bodywash += 1>>
<<set $noorgasm += 1>>
<<set $choffice1 to false>>
<<set $mbedroom1 to false>>
<<set $mlivingroom1 to false>>
<<set $mgarden1 to false>>
<<set $clroom1 to false>>
<<if $locked is true and $ht >= 11>>
<<set $lockeddays += 1>>
<</if>>
<<set $dailylianna to false>>
<<set $parkrapecheck to false>>
<<set $dailyswim to false>>
<<set $dailyyoga to false>>
<<set $dailysauna to false>>
<<set $dailygymweight to false>>
<<set $dailygymrun to false>>
<<set $jordidailyplay to false>>
<<set $chanelshowerdaily to false>>
<<set $chanelshowerdaily2 to false>>
<<set $marianashowerdaily to false>>
<<set $daykey to 4>>
<<elseif GameDays[$gameDate.getDay()] is "Thu" and $daykey == "4">>
<<set $daycount += 1>>
<<set $questdaycount += 1>>
<<set $facialhair += 1>>
<<set $bodyhair += 1>>
<<set $bodywash += 1>>
<<set $noorgasm += 1>>
<<set $choffice1 to false>>
<<set $mbedroom1 to false>>
<<set $mlivingroom1 to false>>
<<set $mgarden1 to false>>
<<set $clroom1 to false>>
<<if $locked is true and $ht >= 11>>
<<set $lockeddays += 1>>
<</if>>
<<set $dailylianna to false>>
<<set $parkrapecheck to false>>
<<set $dailyswim to false>>
<<set $dailyyoga to false>>
<<set $dailysauna to false>>
<<set $dailygymweight to false>>
<<set $dailygymrun to false>>
<<set $jordidailyplay to false>>
<<set $chanelshowerdaily to false>>
<<set $chanelshowerdaily2 to false>>
<<set $marianashowerdaily to false>>
<<set $daykey to 5>>
<<set $clroom1 to false>>
<<elseif GameDays[$gameDate.getDay()] is "Fri" and $daykey == "5">>
<<set $daycount += 1>>
<<set $questdaycount += 1>>
<<set $facialhair += 1>>
<<set $bodyhair += 1>>
<<set $bodywash += 1>>
<<set $noorgasm += 1>>
<<set $choffice1 to false>>
<<set $mbedroom1 to false>>
<<set $mlivingroom1 to false>>
<<set $mgarden1 to false>>
<<set $clroom1 to false>>
<<if $locked is true and $ht >= 11>>
<<set $lockeddays += 1>>
<</if>>
<<set $dailylianna to false>>
<<set $parkrapecheck to false>>
<<set $dailyswim to false>>
<<set $dailyyoga to false>>
<<set $dailysauna to false>>
<<set $dailygymweight to false>>
<<set $dailygymrun to false>>
<<set $jordidailyplay to false>>
<<set $chanelshowerdaily to false>>
<<set $chanelshowerdaily2 to false>>
<<set $marianashowerdaily to false>>
<<set $daykey to 6>>
<<elseif GameDays[$gameDate.getDay()] is "Sat" and $daykey == "6">>
<<set $daycount += 1>>
<<set $questdaycount += 1>>
<<set $facialhair += 1>>
<<set $bodyhair += 1>>
<<set $bodywash += 1>>
<<set $noorgasm += 1>>
<<set $choffice1 to false>>
<<set $mbedroom1 to false>>
<<set $mlivingroom1 to false>>
<<set $mgarden1 to false>>
<<set $clroom1 to false>>
<<if $locked is true and $ht >= 11>>
<<set $lockeddays += 1>>
<</if>>
<<set $dailylianna to false>>
<<set $parkrapecheck to false>>
<<set $dailyswim to false>>
<<set $dailyyoga to false>>
<<set $dailysauna to false>>
<<set $dailygymweight to false>>
<<set $dailygymrun to false>>
<<set $jordidailyplay to false>>
<<set $chanelshowerdaily to false>>
<<set $chanelshowerdaily2 to false>>
<<set $marianashowerdaily to false>>
<<set $daykey to 7>>
<<elseif GameDays[$gameDate.getDay()] is "Sun" and $daykey == "7">>
<<set $daycount += 1>>
<<set $questdaycount += 1>>
<<set $facialhair += 1>>
<<set $bodyhair += 1>>
<<set $bodywash += 1>>
<<set $noorgasm += 1>>
<<set $choffice1 to false>>
<<set $mbedroom1 to false>>
<<set $mlivingroom1 to false>>
<<set $mgarden1 to false>>
<<set $clroom1 to false>>
<<if $locked is true and $ht >= 11>>
<<set $lockeddays += 1>>
<</if>>
<<set $dailylianna to false>>
<<set $parkrapecheck to false>>
<<set $dailyswim to false>>
<<set $dailyyoga to false>>
<<set $dailysauna to false>>
<<set $dailygymweight to false>>
<<set $dailygymrun to false>>
<<set $jordidailyplay to false>>
<<set $chanelshowerdaily to false>>
<<set $chanelshowerdaily2 to false>>
<<set $marianashowerdaily to false>>
<<set $daykey to 1>>
<</if>>
<</nobr>>
<<nobr>>
<<if GameDays[$gameDate.getDay()] is "Sat" and $paid is false>>
<<set $credit += $workdays*100>>
<<set $creditcounter += $workdays*100>>
<<if $workwarning == 3>><<set $workend to true>><</if>>
<<if $workdays < 3 and $workwarning == 2>><<set $workwarning += 1>><<addMail 9>><</if>>
<<if $workdays < 3 and $workwarning == 1>><<set $workwarning += 1>><<addMail 8>><</if>>
<<if $workdays < 3 and $workwarning == 0>><<set $workwarning += 1>><<addMail 7>><</if>>
<<set $workdays = 0>>
<<set $paid to true>>
<</if>>
<<if GameDays[$gameDate.getDay()] is "Sun">>
<<set $paid to false>>
<</if>>
<<if $tonguelvl == 0>>
<<set $tonguemaxskill = 50>>
<<if $tongueskill >= $tonguemaxskill>>
<<set $tonguelvl = 1>>
<<set $tongueskill -= 50>>
<</if>>
<<elseif $tonguelvl == 1>>
<<set $tonguemaxskill = 100>>
<<if $tongueskill >= $tonguemaxskill>>
<<set $tonguelvl = 2>>
<<set $tongueskill -= 100>>
<</if>>
<<elseif $tonguelvl == 2>>
<<set $tonguemaxskill = 200>>
<<if $tongueskill >= $tonguemaxskill>>
<<set $tonguelvl = 3>>
<<set $tongueskill -= 200>>
<</if>>
<<elseif $tonguelvl == 3>>
<<set $tonguemaxskill = 300>>
<<if $tongueskill >= $tonguemaxskill>>
<<set $tonguelvl = 4>>
<<set $tongueskill -= 300>>
<</if>>
<<elseif $tonguelvl == 4>>
<<set $tonguemaxskill = 500>>
<<if $tongueskill >= $tonguemaxskill>>
<<set $tonguelvl = 5>>
<<set $tongueskill -= 500>>
<</if>>
<</if>>
<<if $handlvl == 0>>
<<set $handmaxskill = 50>>
<<if $handskill >= $handmaxskill>>
<<set $handlvl = 1>>
<<set $handskill -= 50>>
<</if>>
<<elseif $handlvl == 1>>
<<set $handmaxskill = 100>>
<<if $handskill >= $handmaxskill>>
<<set $handlvl = 2>>
<<set $handskill -= 100>>
<</if>>
<<elseif $handlvl == 2>>
<<set $handmaxskill = 200>>
<<if $handskill >= $handmaxskill>>
<<set $handlvl = 3>>
<<set $handskill -= 200>>
<</if>>
<<elseif $handlvl == 3>>
<<set $handmaxskill = 300>>
<<if $handskill >= $handmaxskill>>
<<set $handlvl = 4>>
<<set $handskill -= 300>>
<</if>>
<<elseif $handlvl == 4>>
<<set $handmaxskill = 500>>
<<if $handskill >= $handmaxskill>>
<<set $handlvl = 5>>
<<set $handskill -= 500>>
<</if>>
<</if>>
<<if $blowjoblvl == 0>>
<<set $blowjobmaxskill = 50>>
<<if $blowjobskill >= $blowjobmaxskill>>
<<set $blowjoblvl = 1>>
<<set $blowjobskill -= 50>>
<</if>>
<<elseif $blowjoblvl == 1>>
<<set $blowjobmaxskill = 100>>
<<if $blowjobskill >= $blowjobmaxskill>>
<<set $blowjoblvl = 2>>
<<set $blowjobskill -= 100>>
<</if>>
<<elseif $blowjoblvl == 2>>
<<set $blowjobmaxskill = 200>>
<<if $blowjobskill >= $blowjobmaxskill>>
<<set $blowjoblvl = 3>>
<<set $blowjobskill -= 200>>
<</if>>
<<elseif $blowjoblvl == 3>>
<<set $blowjobmaxskill = 300>>
<<if $blowjobskill >= $blowjobmaxskill>>
<<set $blowjoblvl = 4>>
<<set $blowjobskill -= 300>>
<</if>>
<<elseif $blowjoblvl == 4>>
<<set $blowjobmaxskill = 500>>
<<if $blowjobskill >= $blowjobmaxskill>>
<<set $blowjoblvl = 5>>
<<set $blowjobskill -= 500>>
<</if>>
<</if>>
<<if $sexlvl == 0>>
<<set $sexmaxskill = 50>>
<<if $sexskill >= $sexmaxskill>>
<<set $sexlvl = 1>>
<<set $sexskill -= 50>>
<</if>>
<<elseif $sexlvl == 1>>
<<set $sexmaxskill = 100>>
<<if $sexskill >= $sexmaxskill>>
<<set $sexlvl = 2>>
<<set $sexskill -= 100>>
<</if>>
<<elseif $sexlvl == 2>>
<<set $sexmaxskill = 200>>
<<if $sexskill >= $sexmaxskill>>
<<set $sexlvl = 3>>
<<set $sexskill -= 200>>
<</if>>
<<elseif $sexlvl == 3>>
<<set $sexmaxskill = 300>>
<<if $sexskill >= $sexmaxskill>>
<<set $sexlvl = 4>>
<<set $sexskill -= 300>>
<</if>>
<<elseif $sexlvl == 4>>
<<set $sexmaxskill = 500>>
<<if $sexskill >= $sexmaxskill>>
<<set $sexlvl = 5>>
<<set $sexskill -= 500>>
<</if>>
<</if>>
<<if $cumplaylvl == 0>>
<<set $cumplaymaxskill = 50>>
<<if $cumplayskill >= $cumplaymaxskill>>
<<set $cumplaylvl = 1>>
<<set $cumplayskill -= 50>>
<</if>>
<<elseif $cumplaylvl == 1>>
<<set $cumplaymaxskill = 100>>
<<if $cumplayskill >= $cumplaymaxskill>>
<<set $cumplaylvl = 2>>
<<set $cumplayskill -= 100>>
<</if>>
<<elseif $cumplaylvl == 2>>
<<set $cumplaymaxskill = 200>>
<<if $cumplayskill >= $cumplaymaxskill>>
<<set $cumplaylvl = 3>>
<<set $cumplayskill -= 200>>
<</if>>
<<elseif $cumplaylvl == 3>>
<<set $cumplaymaxskill = 300>>
<<if $cumplayskill >= $cumplaymaxskill>>
<<set $cumplaylvl = 4>>
<<set $cumplayskill -= 300>>
<</if>>
<<elseif $cumplaylvl == 4>>
<<set $cumplaymaxskill = 500>>
<<if $cumplayskill >= $cumplaymaxskill>>
<<set $cumplaylvl = 5>>
<<set $cumplayskill -= 500>>
<</if>>
<</if>>
<<if $domlvl == 0>>
<<set $dommaxskill = 50>>
<<if $domskill >= $dommaxskill>>
<<set $domlvl = 1>>
<<set $domskill -= 50>>
<</if>>
<<elseif $domlvl == 1>>
<<set $dommaxskill = 100>>
<<if $domskill >= $dommaxskill>>
<<set $domlvl = 2>>
<<set $domskill -= 100>>
<</if>>
<<elseif $domlvl == 2>>
<<set $dommaxskill = 200>>
<<if $domskill >= $dommaxskill>>
<<set $domlvl = 3>>
<<set $domskill -= 200>>
<</if>>
<<elseif $domlvl == 3>>
<<set $dommaxskill = 300>>
<<if $domskill >= $dommaxskill>>
<<set $domlvl = 4>>
<<set $domskill -= 300>>
<</if>>
<<elseif $domlvl == 4>>
<<set $dommaxskill = 500>>
<<if $domskill >= $dommaxskill>>
<<set $domlvl = 5>>
<<set $domskill -= 500>>
<</if>>
<</if>>
<<if $sublvl == 0>>
<<set $submaxskill = 50>>
<<if $subskill >= $submaxskill>>
<<set $sublvl = 1>>
<<set $subskill -= 50>>
<</if>>
<<elseif $sublvl == 1>>
<<set $submaxskill = 100>>
<<if $subskill >= $submaxskill>>
<<set $sublvl = 2>>
<<set $subskill -= 100>>
<</if>>
<<elseif $sublvl == 2>>
<<set $submaxskill = 200>>
<<if $subskill >= $submaxskill>>
<<set $sublvl = 3>>
<<set $subskill -= 200>>
<</if>>
<<elseif $sublvl == 3>>
<<set $submaxskill = 300>>
<<if $subskill >= $submaxskill>>
<<set $sublvl = 4>>
<<set $subskill -= 300>>
<</if>>
<<elseif $sublvl == 4>>
<<set $submaxskill = 500>>
<<if $subskill >= $submaxskill>>
<<set $sublvl = 5>>
<<set $subskill -= 500>>
<</if>>
<</if>>
<<if $pissplaylvl == 0>>
<<set $pissplaymaxskill = 50>>
<<if $pissplayskill >= $pissplaymaxskill>>
<<set $pissplaylvl = 1>>
<<set $pissplayskill -= 50>>
<</if>>
<<elseif $pissplaylvl == 1>>
<<set $pissplaymaxskill = 100>>
<<if $pissplayskill >= $pissplaymaxskill>>
<<set $pissplaylvl = 2>>
<<set $pissplayskill -= 100>>
<</if>>
<<elseif $pissplaylvl == 2>>
<<set $pissplaymaxskill = 200>>
<<if $pissplayskill >= $pissplaymaxskill>>
<<set $pissplaylvl = 3>>
<<set $pissplayskill -= 200>>
<</if>>
<<elseif $pissplaylvl == 3>>
<<set $pissplaymaxskill = 300>>
<<if $pissplayskill >= $pissplaymaxskill>>
<<set $pissplaylvl = 4>>
<<set $pissplayskill -= 300>>
<</if>>
<<elseif $pissplaylvl == 4>>
<<set $pissplaymaxskill = 500>>
<<if $pissplayskill >= $pissplaymaxskill>>
<<set $pissplaylvl = 5>>
<<set $pissplayskill -= 500>>
<</if>>
<</if>>
<</nobr>>
<<button "Return" $return>><</button>>
<b>Main Quests:</b>
<<if $pcshopfirst is false>>\
- Go to the PC Shop.
<</if>>\
<<if $questtransformation == 1>>\
- <b>Body transformation:</b> You have to develop and make the Female Body Serum. You can do it in your lab at weekends. Once you have it go back to Bonnie in the PC Shop.
<<elseif $questtransformation == 2>>\
- <b>Body transformation:</b> Go to Bonnie`s house at 20:00 on Friday.
<<elseif $questtransformation == 4>>\
- <b>Body transformation:</b> You have to tell Bonnie what happened to you.
<<elseif $questtransformation == 5>>\
- <b>Body transformation:</b> Once Mariana lets you fully dress up as a woman, go back to Bonnie.
<<elseif $questtransformation == 6>>\
- <b>Body transformation:</b> You have to speak with Bonnie in the PC shop.
<<elseif $questtransformation == 7>>\
- <b>Body transformation:</b> You have to make a shemale body serum and go to Bonnie`s house at weekends between 10:00-22:00.
<<elseif $questsecurityguy == 1>>\
- <b>Security guy:</b> Speak with Bonnie about your first mission.
<<elseif $questsecurityguy == 2>>\
- <b>Security guy:</b> You have to bring to Bonnie one energy serum and increase your willingness to over 50. More details are in the email.
<<elseif $questsecurityguy == 3>>\
- <b>Security guy:</b> Make yourself pretty, wear sexy clothes and have over 50 willingness. Go to the club and find Peter. (plucked eyebrows, shaved legs, Sexy black clubbing dress, Sexy black trousers for clubbing dress, Sexy black boots for clubbing dress and nothing else)
<<elseif $questsecurityguy == 4>>\
- <b>Security guy:</b> Take the cloning device back to Bonnie.
<<elseif $questtracking == 1>>\
- <b>Tracking device:</b> Go to the PC shop on Thursday and speak with Bonnie.
<<elseif $questtracking == 2>>\
- <b>Tracking device:</b> You have to make $500 in the gloryhole in the park to buy a security uniform. With the money you have to go back to Bonnie.
<<elseif $questtracking == 3>>\
- <b>Tracking device:</b> You have to make $500 in the glory hole in the park to buy a security uniform. With the money, you have to go back to Bonnie.
<<elseif $questtracking == 4>>\
- <b>Tracking device:</b> Go to Bonnie`s house at 19:00-20:59 on Saturday.
<<elseif $questtracking == 11 and $kimquest == 0>>\
- <b>Kimberlee's date:</b> You have to wait for Kimberlee`s e-mail. You have to finish Mariana's home feminization quest first.
<<elseif $kimquest == 1>>\
- <b>Kimberlee's dates:</b> You have to meet with Kimberlee around 8 pm in the Mall with a shemale body.
<<elseif $kimquest == 3>>\
- <b>Kimberlee's dates:</b> You have to wait for Kimberlee's e-mail.
<<elseif $kimquest == 4>>\
- <b>Kimberlee's dates:</b> You have to meet with Kimberlee between 10 am and 4 pm in the Mall with a shemale body on the weekends.
<<elseif $kimquest == 8>>\
- <b>Kimberlee's secret:</b> You have to speak with Bonnie.
<<elseif $kimquest == 9>>\
- <b>Kimberlee's secret:</b> You have to make 1000 cash and go back to Bonnie.
<<elseif $kimquest == 10>>\
- <b>Kimberlee's secret:</b> You have to put a bug in Kimberlee's drink. Then you have two days to track her down from your computer. The best time is on Friday at work.
<<elseif $kimquest == 11>>\
- <b>Kimberlee's secret:</b> You have to keep tracking Kimberlee from your computer at home until you find something suspicious.
<<elseif $kimquest == 12>>\
- <b>Kimberlee's secret:</b> Go and check Kimberlee in the park.
<<elseif $kimquest == 13>>\
- <b>Kimberlee's secret:</b> Keep following Kimberlee from your computer until you find something fishy.
<<elseif $kimquest == 14>>\
- <b>Kimberlee's secret:</b> Go and check Kimberlee in the club.
<<elseif $kimquest == 16>>\
- <b>Kimberlee's secret:</b> Meet with Kimberlee in the Mall between 5pm and 8pm.
<<elseif $kimquest == 17>>\
- <b>Mariana's password:</b> You have to find her password somehow.
<<elseif $bdayquest == 1>>\
- <b>Mariana's password:</b> You have to buy Mariana's birthday cake from the corner shop.
<<elseif $bdayquest == 2>>\
- <b>Mariana's password:</b> You have to give the cake to Chanel.
<<elseif $bdayquest == 3>>\
- <b>Mariana's password:</b> You have to go and take Mariana out for ice cream. She is in her home office and you need a male body.
<<elseif $bdayquest == 55>>\
- <b>Mariana's password:</b> You have to find her password somehow.
<<elseif $bdayquest == 56>>\
- <b>Mariana's password:</b> You have to find her password somehow.
<<elseif $angelesquest == 1>>\
- <b>Mariana's password:</b> Meet with Angeles in her house on Saturday between 10am - 8pm.
<<elseif $angelesquest == 4>>\
- <b>Mariana's password:</b> Try to find Mariana's password in her home office.
<<elseif $angelesquest == 5>>\
- <b>Mariana's password:</b> Speak with Bonnie at the PC Shop.
<<elseif $angelesquest == 6>>\
- <b>Mariana's password:</b> Wait for Bonnie to finish her work with Mariana's password. She will send an e-mail.
<<elseif $angelesquest == 7>>\
- <b>Mariana's password:</b> Wait for Bonnie to finish her work with Mariana's password. She will send an e-mail.
<<elseif $angelesquest == 8>>\
- <b>Mariana's password:</b> Speak with Bonnie at the PC Shop.
<<elseif $finalquest == 1>>\
- <b>Big escape:</b> Speak with Mariana in her home office.
<<elseif $finalquest == 2>>\
- <b>Big escape:</b> Speak with Bonnie in the PC Shop.
<<elseif $finalquest == 3>>\
- <b>Big escape:</b> Speak with Mariana in her home office again.
<<elseif $finalquest == 4 and $liannaquest < 5>>\
- <b>Big escape:</b> Speak with Lianna in the canteen. (You have finish Lianna's date side quest first.)
<<elseif $liannaquest == 5 and $finalquest == 4>>\
- <b>Big escape:</b> Speak with Lianna in the canteen.
<<elseif $finalquest == 5>>
- <b>Big escape:</b> Wait for Mariana visit in your room after 8pm.
<<elseif $finalquest == 6>>
- <b>Big escape:</b> Bring the USB Drive to Bonnie.
<<elseif $finalquest == 7>>
- <b>Big escape:</b> Wait for Bonnie's email.
<<elseif $finalquest == 9>>
- <b>Big escape:</b> Go see Bonnie.
<<elseif $finalquest == 10>>
- <b>Big escape:</b> You have to create a special transformation serum at weekends. Then speak with Lianna in the canteen.
<<elseif $finalquest == 11>>
- <b>Big escape:</b> You have to go to Lianna's house tomorrow after 7pm. She will email you her address.
<<elseif $finalquest == 12>>
- <b>Big escape:</b> You have to go to Lianna's house tomorrow after 7pm. She will email you her address.
<<elseif $finalquest == 13>>
- <b>Big escape:</b> You have to go to Lianna's house today after 7pm.
<<elseif $finalquest == 14>>
- <b>Big escape:</b> You have to combine the Special serum with Lianna's sperm in the lab.
<<elseif $finalquest == 15>>
- <b>Big escape:</b> Test Lianna's serum in your bathroom.
<<elseif $finalquest == 16>>
- <b>Big escape:</b> Have one Special Transformation Serum, have male body and go to see Bonnie before 4pm. (No turning back after that)
<</if>>\
----
<b>Side Quests:</b>
<<if $chanelmessage >= 2>>\
- You have to clean Chanel`s room once a week! <b>This week's cleaning status:</b> <<if $chanelroomcleaning is false>><span style="color: red;"><b>INCOMPLETE</b></span><<else>><span style="color: green;"><b>COMPLETED</b></span><</if>>
<</if>>\
<<if $questmaid == 1 and $chanelmessage == 0>>\
- <b>Chanel`s maid:</b> You have to buy the 5 pieces maid uniform set from the adult shop and send a message to Chanel.
<<elseif $chanelmessage == 2>>\
- <b>Chanel`s maid:</b> Send a selfie from your room.
<<elseif $chanelmessage == 3>>\
- <b>Chanel`s maid:</b> Send a flashing selfie from the park.
<</if>>\
\
<<if $questmicroscope == 1>>\
- <b>Bonnie's microscope:</b> Steal a microscope from the lab storage for Bonnie.
<<elseif $questmicroscope == 2>>\
- <b>Bonnie's microscope:</b> Give the microscope to Bonnie in the Pc Shop.
<</if>>\
\
<<if $ht == 4>>\
- <b>Mariana's home feminization:</b> You have to wear Chanel`s panties and show to Mariana in her office in the Lab on every workdays. Otherwise you will be punished. You will be revisited by Mariana at night in your room, after 5 successful daily check. <b>Compelted daily checks: $htpoint / 5</b> | <b>Today's check status:</b> <<if GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun">><span style="color: green;"><b>No check on weekends</b></span><<elseif $mdcheckup is false>><span style="color: red;"><b>INCOMPLETE</b></span><<elseif $mpunishment is true>><span style="color: red;"><b>FAILED</b></span><<else>><span style="color: green;"><b>PASSED</b></span><</if>>\
<<elseif $ht == 5>>\
- <b>Mariana's home feminization:</b> You have to wear Chanel`s panties and bra and show to Mariana in her office in the Lab on every workdays. Otherwise you will be punished. You was told to NOT CUM till the next visit. You will be revisited by Mariana at night in your room, after 5 successful daily check. <b>Check ups: $htpoint / 5</b> | <b>Today's check status:</b> <<if GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun">><span style="color: green;"><b>No check on weekends</b></span><<elseif $mdcheckup is false>><span style="color: red;"><b>INCOMPLETE</b></span><<elseif $mpunishment is true>><span style="color: red;"><b>FAILED</b></span><<else>><span style="color: green;"><b>PASSED</b></span><</if>> | <b>Cumming status:</b> <<if $noorgasm >= $htcumcheck>><span style="color: green;"><b>Not cummed</b></span><<else>><span style="color: red;"><b>Cummed</b></span><</if>>\
<<elseif $ht == 10>>\
- <b>Mariana's home feminization:</b> You have to wear Chanel`s panties and bra and show to Mariana in her office in the Lab on every workdays. Otherwise you will be punished. You will be revisited by Mariana at night in your room, after 5 successful daily check. Your cock will be locked. <b>Check ups: $htpoint / 5</b> | <b>Today's check status:</b> <<if GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun">><span style="color: green;"><b>No check on weekends</b></span><<elseif $mdcheckup is false>><span style="color: red;"><b>INCOMPLETE</b></span><<elseif $mpunishment is true>><span style="color: red;"><b>FAILED</b></span><<else>><span style="color: green;"><b>PASSED</b></span><</if>>\
<<elseif $ht == 11 and $htlast is false>>\
- <b>Mariana's home feminization:</b> You have to keep your legs shaved and your eyebrows plucked and show to Mariana in her office in the Lab on every workdays. Otherwise you will be punished. You have to finish the tracking function quest at Bonnie before you can complete Mariana's home feminization quest. <b>Check ups: $htpoint / 5</b> | <b>Today's check status:</b> <<if GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun">><span style="color: green;"><b>No check on weekends</b></span><<elseif $mdcheckup is false>><span style="color: red;"><b>INCOMPLETE</b></span><<elseif $mpunishment is true>><span style="color: red;"><b>FAILED</b></span><<else>><span style="color: green;"><b>PASSED</b></span><</if>>\
<<elseif $htlast is true>>\
- <b>Mariana's home feminization:</b> You will be transformed into a woman body on Sunday night at home. Make sure you will make the Female Body Serum otherwise something really bad will happening..
<</if>>\
\
<<if $labside == 1>>\
- <b>Lab secret levels:</b> You have to go in the PC Shop and speak with Bonnie.
<<elseif $labside == 2>>\
- <b>Lab secret levels:</b> You can use the lab elevator and discover the rooms down there.
<</if>>\
\
<<if $liannaquest == 2>>\
- <b>Lianna's dates:</b> Go back to the canteen on the next day after the first meet.
<<elseif $liannaquest == 3>>\
- <b>Lianna's dates:</b> Go back to the canteen on the next day after the first meet.
<<elseif $liannaquest == 4>>\
- <b>Lianna's dates:</b> Go on a date with Lianna on Friday around 7pm in the mall. (Contents: male, female, shemale)
<</if>>\
<<if $labside == 3>>\
----
<b>Lab secret levels:</b>
- <b>B1</b>
- <b>B4</b>
<</if>>\
----
<b>Completed Quests:</b>
<<if $questtransformation == 8>>\
- Body transformation
<</if>>\
<<if $questtracking == 11>>\
- Tracking device
<</if>>\
<<if $kimquest >= 8>>\
- Kimberlee's dates
<</if>>\
<<if $kimquest >= 17>>\
- Kimberlee's secret
<</if>>\
<<if $angelesquest >= 9>>\
- Mariana's password
<</if>>\
<<if $finalquest >= 21>>\
- Big escape
<</if>>\
<<if $questmicroscope == 3>>\
- Bonnie's microscope
<</if>>\
<<if $questsecurityguy == 5>>\
- Security guy
<</if>>\
<<if $ht >= 21>>\
- Mariana's home feminization
<</if>>\
<<if $liannaquest == 5>>\
- Lianna's dates
<</if>>\
<<button "Return" $return>><</button>>
<<button "Return" $return>><</button>>
<b>Basic information:</b>
- Events listed in the contacts menu for each NPC.
- Information from quests and the next step is under the quest menu.
- If you run out from energy, you can drink energy serum from your inventory.
- On the left hand side the purple bar is your arousal level and the gold bar is your energy level. You can hover over the cursor to see exactly how much left.
- Autofellatio limits: Flexibility 5-15 You can cum on yourself. Over 15 You can suck yourself.
- Jordi story line: You have to speak with him first, then his room will be available. You can go in his room and you can talk with him but you have to be a female to play with him and activate all the content with him.
----
<b>Interactiv sex scenes:</b>
It is in the test phase. You can find Chanel in the livingroom masturbating and you can join her. This is a new sex system.
- You have 10 moves at the start but you get 1 extra moves after every 20 stamina points up to 100 stamina. So you can have maximum 15 moves.
- You will start with your current arousal level so make sure to start with lower level if you don't want to cum very early.
- Each sex acion cost one moves. It is increasing your and Chanel's arousal. With higher skill level for that action, you can increase more arousal for Chanel. The giver actions increase less arousal for you then a receive actions.
- If you cum before Chanel then you still can use your rest of your moves but with limited sex actions.
- If Chanel cum first and your arousal over half you can cum instantly otherwise the scene ends.
- If you can not make Chanel cum before you run out from moves then she will be very disappointed and the scene ends.
----
<b>Lab Basement contents:</b>
- It will be available after Mariana's birthday party. Bonnie will send email to you.
- B1 level has one scene for male body. You can replay any times.
- B4 level has one scene for each three body type.
- B4 Second scene for shemale body only.
----
<b>Endings:</b>
- If you are not making the Female Body Serum for the Mariana home feminization quest, you will get a final warning from Mariana and if you still not making it then it is game over.
- If you lie to Venus on the HR meating about missing the work.
----
<b>Random NPC Generator DLC v3:</b>
- You have to copy the npc and npcsex folders in the content folders.
- It is on test mode at the moment and it is working only with male and female player body.
- Go to the club and dance and you will meet with random NPC. At the moment I added 5 to the club. You can find them randomly in the club.
- If you want new NPC generated just restart the game.
<<button "Return" $return>><</button>>
<<button "Mariana Cordoba" "Contact Mariana">><</button>>
<<button "Chanel Santini" "Contact Chanel">><</button>>
<<button "Jordi El Nino" "Contact Jordi">><</button>>
<<button "Natalie Mars" "Contact Natalie">><</button>>
<<button "Bonnie Rotten" "Contact Bonnie">><</button>>
<<button "Kimberlee" "Contact Kimberlee">><</button>>
<<button "Venus Lux" "Contact Venus">><</button>>
<<button "Angeles Cid" "Contact Angeles">><</button>>
<<button "Lianna Lawson" "Contact Lianna">><</button>>
<<button "Return" $return>><</button>>
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:25%"><b></b></th>
<th style="width:25%"><b>Name</b></th>
<th style="width:25%"><b>Quantity</b></th>
<th style="width:25%"><b>Description</b></th>
</tr>
</thead>
<tbody>
<tr>
<<if $esv >= 1>>\
<td><<image "content/objects/e_serum.png" 100 70>></td>\
<td>Energy Serum. Gives you 10 energy.</td>\
<td>$esv</td>\
<td><<button "Drink" "Inventory">><<set $CurEN = ($CurEN + 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>><<set $esv -= 1>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $stsv >= 1>>\
<td><<image "content/objects/st_serum.png" 100 70>></td>\
<td>Special Transformation Serum</td>\
<td>$stsv</td>\
<td>Change your body to somebody else. You have to combine with DNA sample in the lab.</td>\
<</if>>\
</tr>
<tr>
<<if $liannaserum >= 1>>\
<td><<image "content/objects/st_serum.png" 100 70>></td>\
<td>Lianna's Special Transformation Serum</td>\
<td>$liannaserum</td>\
<td>Change your body to Lianna.
Use in your bathroom.</td>\
<</if>>\
</tr>
<tr>
<<if $fbsv >= 1>>\
<td><<image "content/objects/fg_serum.png" 100 70>></td>\
<td>Female Body Serum</td>\
<td>$fbsv</td>\
<td>Change your body to female
Use in your bathroom</td>\
<</if>>\
</tr>
<tr>
<<if $mbsv >= 1>>\
<td><<image "content/objects/mg_serum.png" 100 70>></td>\
<td>Male Body Serum</td>\
<td>$mbsv</td>\
<td>Change your body to male
Use in your bathroom</td>\
<</if>>\
</tr>
<tr>
<<if $sbsv >= 1>>\
<td><<image "content/objects/fg_serum.png" 100 70>></td>\
<td>Shemale Body Serum</td>\
<td>$sbsv</td>\
<td>Change your body to shemale
Use in your bathroom</td>\
<</if>>\
</tr>
<tr>
<<if $pesv >= 1>>\
<td><<image "content/objects/pe_serum.png" 100 70>></td>\
<td>Penis Enlargement Serum</td>\
<td>$pesv</td>\
<td>Make your penis bigger
Use in your bathroom</td>\
<</if>>\
</tr>
<tr>
<<if $prsv >= 1>>\
<td><<image "content/objects/pr_serum.png" 100 70>></td>\
<td>Penis Reduction Serum</td>\
<td>$prsv</td>\
<td>Make your penis smaller
Use in your bathroom</td>\
<</if>>\
</tr>
<tr>
<<if $besv >= 1>>\
<td><<image "content/objects/fg_serum.png" 100 70>></td>\
<td>Breast Enchancer Serum</td>\
<td>$besv</td>\
<td>Make your boobs bigger
Use in your bathroom</td>\
<</if>>\
</tr>
<tr>
<<if $bdsv >= 1>>\
<td><<image "content/objects/fg_serum.png" 100 70>></td>\
<td>Breast Decreaser Serum</td>\
<td>$bdsv</td>\
<td>Make your boobs smaller
Use in your bathroom</td>\
<</if>>\
</tr>
<tr>
<<if $microscope >= 1>>\
<td><<image "content/objects/microscope.jpg" 100 150>></td>\
<td>Special Microscope</td>\
<td>$microscope</td>\
<td>Quest Item</td>\
<</if>>\
</tr>
<tr>
<<if $gymcard >= 1>>\
<td><<image "content/objects/gymcard.jpg" 100>></td>\
<td>Gym Membership Card</td>\
<td>$gymcard</td>\
<td>You can use the gym with this</td>\
<</if>>\
</tr>
<tr>
<<if $cloningdevice >= 1>>\
<td><<image "content/objects/cloning_device.png" 100>></td>\
<td>Electric Cloning Device</td>\
<td>$cloningdevice</td>\
<td>Quest Item</td>\
<</if>>\
</tr>
<tr>
<<if $spycam >= 1>>\
<td><<image "content/objects/spycam.jpg" 100>></td>\
<td>Basic SpyCam</td>\
<td>$spycam</td>\
<td>You can hide it and watch</td>\
<</if>>\
</tr>
<tr>
<<if $superspycam >= 1>>\
<td><<image "content/objects/superspycam.gif" 100>></td>\
<td>Professional SpyCam</td>\
<td>$superspycam</td>\
<td>You can hide it and watch
Nobody will find this</td>\
<</if>>\
</tr>
<tr>
<<if $bdayquest == 2>>\
<td><<image "content/objects/cake.jpg" 100>></td>\
<td>Mariana's Birthday Cake</td>\
<td>1</td>\
<td>Give it to Chanel</td>\
<</if>>\
</tr>
</tbody>
</table>
<<button "Return" $return>><</button>>
<<button "Return" $return>><</button>>
<b>Skills:</b>
<<if $tonguelvl == 5>>\
Tongue level: 5 - Max Level Reached
Tongue skill points: Max Level Reached
<<else>>\
Tongue level: $tonguelvl/$tonguemaxlvl
Tongue skill points: $tongueskill/$tonguemaxskill
<<showmeter '$tonguebar' `$tongueskill / $tonguemaxskill`>>\
<</if>>\
<<if $handlvl == 5>>\
Hand level: 5 - Max Level Reached
Hand skill points: Max Level Reached
<<else>>\
Hand level: $handlvl/$handmaxlvl
Hand skill points: $handskill/$handmaxskill
<<showmeter '$handbar' `$handskill / $handmaxskill`>>\
<</if>>\
<<if $blowjoblvl == 5>>\
Blowjob level: 5 - Max Level Reached
Blowjob skill points: Max Level Reached
<<else>>\
Blowjob level: $blowjoblvl/$blowjobmaxlvl
Blowjob skill points: $blowjobskill/$blowjobmaxskill
<<showmeter '$blowjobbar' `$blowjobskill / $blowjobmaxskill`>>\
<</if>>\
<<if $sexlvl == 5>>\
Sex level: 5 - Max Level Reached
Sex skill points: Max Level Reached
<<else>>\
Sex level: $sexlvl/$sexmaxlvl
Sex skill points: $sexskill/$sexmaxskill
<<showmeter '$sexbar' `$sexskill / $sexmaxskill`>>\
<</if>>\
<<if $cumplaylvl == 5>>\
Cumplay level: 5 - Max Level Reached
Cumplay skill points: Max Level Reached
<<else>>\
Cumplay level: $cumplaylvl/$cumplaymaxlvl
Cumplay skill points: $cumplayskill/$cumplaymaxskill
<<showmeter '$cumplaybar' `$cumplayskill / $cumplaymaxskill`>>\
<</if>>\
<<if $domlvl == 5>>\
Dom level: 5 - Max Level Reached
Dom skill points: Max Level Reached
<<else>>\
Dom level: $domlvl/$dommaxlvl
Dom skill points: $domskill/$dommaxskill
<<showmeter '$dombar' `$domskill / $dommaxskill`>>\
<</if>>\
<<if $sublvl == 5>>\
Sub level: 5 - Max Level Reached
Sub skill points: Max Level Reached
<<else>>\
Sub level: $sublvl/$submaxlvl
Sub skill points: $subskill/$submaxskill
<<showmeter '$subbar' `$subskill / $submaxskill`>>\
<</if>>\
<<if $pissplaylvl == 5>>\
Pissplay level: 5 - Max Level Reached
Pissplay skill points: Max Level Reached
<<else>>\
Pissplay level: $pissplaylvl/$pissplaymaxlvl
Pissplay skill points: $pissplayskill/$pissplaymaxskill
<<showmeter '$pissplaybar' `$pissplayskill / $pissplaymaxskill`>>\
<</if>>\
----
<b>Basic stats:</b>
Willingness points: $willingness
Your total earned credit is $creditcounter
Your total earned cash is $moneycounter
Your strength is $strength
Your flexibility is $flexibility
Your stamina is $stamina
You used the sauna $saunacounter times.
You swam $swimmingcounter times.
You done yoga $yogacounter times.
You lifted weights in the gym $gymweightcounter times.
You ran in the gym $gymruncounter times.
----
<b>Sex stats:</b>
In Male Body
You came $mcumcounter times.
You kissed $mkisscounter times.
You gave handjob $mghjcounter times.
You received handjob $mrhjcounter times.
You licked pussy $mpussylickcounter times.
You licked cock $mcocklickcounter times.
You gave a blowjob $mgblowjobcounter times.
You deepthroat a cock $mgdeeptcounter times.
You received a blowjob $mrblowjobcounter times.
You fucked pussy $mpussyfuckcounter times.
You gave anal $mganalcounter times.
You received anal $mranalcounter times.
You swallowed cum $mcumswallowcounter times.
In Female Body
You came $fcumcounter times.
You kissed $fkisscounter times.
You gave handjob $fghjcounter times.
Your pussy been fingered $frhjcounter times.
You licked pussy $fgpussylickcounter times.
You licked cock $fcocklickcounter times.
You gave blowjob $fgblowjobcounter times.
You deepthroat a cock $fgdeeptcounter times.
Your pussy been licked $frpussylickcounter times.
Your pussy been fucked $frpussyfuckcounter times.
You received anal $franalcounter times.
You used strapon $fstraponcounter times.
You swallowed cum $fcumswallowcounter times.
In Shemale Body
You kissed $skisscounter times.
You gave handjob $sghjcounter times.
You received handjob $srhjcounter times.
You licked pussy $spussylickcounter times.
You licked cock $scocklickcounter times.
You gave a blowjob $sgblowjobcounter times.
You deepthroat a cock $sgdeeptcounter times.
You received a blowjob $srblowjobcounter times.
You fucked pussy $spussyfuckcounter times.
You gave anal $sganalcounter times.
You received anal $sranalcounter times.
You swallowed cum $scumswallowcounter times.
----
<b>Watching porn stats:</b>
You watched female masturbation videos $fmascounter times.
You watched male masturbation videos $mmascounter times.
You watched blowjob videos $blowjobcounter times.
You watched toys videos $toyscounter times.
You watched hardcore videos $hccounter times.
You watched lesbian videos $lesbiancounter times.
You watched gay videos $gaycounter times.
You watched sissy videos $sissycounter times.
You watched shemale videos $shemalecounter times.
You watched BDSM videos $bdsmcounter times.
You watched hypno videos $hypnocounter times.
You watched Mariana on spycam $marianacamcounter times.
You watched Chanel on spycam $chanelcamcounter times.
You watched Chanel on spycam $nataliecamcounter times.
----
<b>Gloryhole stats:</b>
You made $ $moneycounter
You sucked cock $ghblowjobcounter times.
<<button "Return" $return>><</button>>
<<button "Return" $return>><</button>>
<<showMail $mailbox[0]>>
<<showMail $mailbox[1]>>
<<showMail $mailbox[2]>>
<<showMail $mailbox[3]>>
<<showMail $mailbox[4]>>
<<showMail $mailbox[5]>>
<<showMail $mailbox[6]>>
<<showMail $mailbox[7]>>
<<showMail $mailbox[8]>>
<<showMail $mailbox[9]>>
<<showMail $mailbox[10]>>
<<showMail $mailbox[11]>>
<<showMail $mailbox[12]>>
<<showMail $mailbox[13]>>
<<showMail $mailbox[14]>>
<<showMail $mailbox[15]>>
<<showMail $mailbox[16]>>
<<showMail $mailbox[17]>>
<<showMail $mailbox[18]>>
<<showMail $mailbox[19]>>
<<showMail $mailbox[20]>>
<<showMail $mailbox[21]>>
<<showMail $mailbox[22]>>
<<showMail $mailbox[23]>>
<<showMail $mailbox[24]>>
<<showMail $mailbox[25]>>
<<showMail $mailbox[26]>>
<<showMail $mailbox[27]>>
<<showMail $mailbox[28]>>
<<showMail $mailbox[29]>>
<<showMail $mailbox[30]>>
<<showMail $mailbox[31]>>
<<showMail $mailbox[32]>>
<<showMail $mailbox[33]>>
<<showMail $mailbox[34]>>
<<showMail $mailbox[35]>>
<<showMail $mailbox[36]>>
<<showMail $mailbox[37]>>
<<showMail $mailbox[38]>>
<<showMail $mailbox[39]>>
<<button "Return" $return>><</button>>
<div align='center'><b>Name List:</b></div>\
<<button "Chanel" "Chanel Messages">><</button>>
<<button "Return" $return>><</button>>
<div align='center' style='font-size: 150%;'><b>Chanel's messages</b></div>\
<div class="messages-wrapper">
<<if $chanelmessage >= 2>>\
<div class="message to">Okay, I bought it. You said you wanted me to message you when I did.</div>
<div class="message from">Good my little servant. My next order is to clean my room. I want you to do it every week from now on. If you miss a week, I’m going to make you pay.</div>
<div class="message from">Send me a selfie wearing your new uniform.</div>
<div class="message to">Yes Princess Chanel.</div>
<</if>>\
<<if $chanelmessage >= 3>>\
<div class="message to">Does this meet your approval Princess Chanel?</div>
<div class="message to"><<if $pgender is "male">><img src="content/peoples/player/selfie1m.jpg"><<elseif $pgender is "female">><img src="content/peoples/player/selfie1f.jpg"><<elseif $pgender is "shemale">><img src="content/peoples/player/selfie1s.jpg"><</if>></div>
<div class="message from">Yes, you look very nice. Don’t forget, once a week, my room must be spotless.</div>
<div class="message from">Another task for you. I want you to go to the park and take a selfie flashing yourself in public.</div>
<</if>>\
<<if $chanelmessage >= 4>>\
<div class="message to">Here is a picture of me in the park.</div>
<div class="message to"><<if $pgender is "male">><img src="content/peoples/player/chores/m4.jpg"><<elseif $pgender is "female">><img src="content/peoples/player/chors/f4.jpg"><<elseif $pgender is "shemale">><img src="content/peoples/player/chores/s4.jpg"><</if>></div>
<div class="message from">Excellent. You are being a good servant. That is all for now. Just focus on cleaning my room.</div>
<</if>>\
</div>
<<if $maiduniform == 5 and $chanelmessage == 0 and $questmaid == 1>>\
<<button "Tell her you have the outfit." "Chanel Messages">>\
<<set $chanelmessage = 2>>\
<</button>>\
<</if>>\
<<if $proom is true and $chanelmessage == 2>>
<<button "Send the maid selfie." "Chanel Messages">><<set $chanelmessage = 3>><</button>>\
<</if>>\
<<if $park is true and $chanelmessage == 3>>\
<<button "Send the flashing selfie." "Chanel Messages">>\
<<set $chanelmessage = 4>>\
<</button>>\
<</if>>
<<button "Return" $return>><</button>>
<div align='center' style='font-size: 150%;'><b>House Front</b></div>\
<<if $gameDate.getHours() < "8" or $gameDate.getHours() > "20">>\
<img src="content/location/house_night.jpg">
<<else>>\
<img src="content/location/house_day.jpg">
<</if>>\
\
<<if $questtracking == 11 and $ht >= 21 and $kimemail1 is false and GameDays[$gameDate.getDay()] isnot "Sat">>\
<<addMail 11>>\
<<set $kimemail1 to true>>\
<<set $kimquest = 1>>\
<</if>>\
\
\
\
<<if $kimquest == 3 and $kimemail2 is false>>\
<<if GameDays[$gameDate.getDay()] is "Fri">>\
<<addMail 12>>\
<<set $kimemail2 to true>>\
<<set $kimquest = 4>>\
<<elseif GameDays[$gameDate.getDay()] is "Sat">>\
<<addMail 12>>\
<<set $kimemail2 to true>>\
<<set $kimquest = 4>>\
<<elseif GameDays[$gameDate.getDay()] is "Sun">>\
<<addMail 12>>\
<<set $kimemail2 to true>>\
<<set $kimquest = 4>>\
<</if>>\
<</if>>\
\
\
\
<div align='center'>\
<<if GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun">>\
<<if $gameDate.getHours() >= "10" and $gameDate.getHours() <= "18" and $weathertype is "sunny">>\
<span style="color:green"><b>Mariana in the garden!</b></span>
<</if>>\
<</if>>\
</div>\
\
\
\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:33%"><b>Backyard</b></th>
<th style="width:33%"><b>House Front</b></th>
<th style="width:33%"><b>Outside</b></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<button "Garden" "Garden">><</button>>
<<button "Swimming Pool" "Swimming Pool">><</button>>
</td>\
<td>\
<<if $roomcleanend is true>>\
<<button "Go inside" "Ending Cleaning">><<set $endingpoint = 1>><</button>>
<<else>>\
<<button "Go inside" "Hallway Down">><</button>>
<</if>>\
</td>\
<td>\
<<if $gameDate.getHours() < "6">>\
It is too late to go out.
<<else>>\
<<button "Town" "Map">><<addmins 10>><</button>>
<</if>>\
</td>\
</tr>\
</tbody>\
</table>\
<div align='center' style='font-size: 150%;'><b>Garden</b></div>\
<<if $gameDate.getHours() < "8" or $gameDate.getHours() > "20">>\
<img src="content/location/garden_night.jpg">
<<else>>\
<img src="content/location/garden_day.jpg">
<</if>>\
\
<<if GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun">>\
<<if $gameDate.getHours() >= "10" and $gameDate.getHours() <= "18" and $weathertype is "sunny">>\
<div align='center'>\
Mariana is sunbathing.
</div>\
<<if $CurEN >= 10>>\
<<button "Say Hi" "Event: Mariana Garden 1">><</button>>
<<else>>\
<div align='center'>\
You are tired to talk with her.
</div>\
<</if>>\
<</if>>\
<</if>>\
\
\
\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:50%"><b>Garden</b></th>
<th style="width:50%"><b>House Front</b></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<button "Swimming pool" "Swimming Pool">><</button>>
</td>\
<td>\
<<button "House front" "House Front">><</button>>
<<if $gameDate.getHours() < "6">>\
It is too late to go out.
<<else>>\
<<if $currTop is "MaidTop" or $currShoes is "MaidShoes">>\
You can not leave the house in the maid clothing.
<<else>>\
<<button "Town" "Map">><<addmins 10>><</button>>
<</if>>\
<</if>>\
</td>\
</tr>\
</tbody>\
</table>\
<<if $mgarden1 is true>>\
<img src="content/peoples/mariana/garden1/24.jpg" style="max-width: 100%;">
<<speech "Mariana">>You are insatiable! You’ve drained me. Please allow me some quiet time to rest and enjoy the garden.<</speech>>
<<button "Leave her" "Hallway Down">><</button>>
\
\
\
<<else>>\
<<if $mgarden == 0>>\
<img src="content/peoples/mariana/garden1/1.jpg" style="max-width: 100%;">
<div align='center'>\
Following the twisting path through the garden, you find Mariana reclined in an Adirondack chair reading on her phone.
</div>\
<<speech "Mariana">>Ah, perfect timing! I need you.<</speech>>
<<button "Continue" "Event: Mariana Garden 1">><<set $mgarden = 1>><</button>>
\
\
\
<<elseif $mgarden == 1>>\
<img src="content/peoples/mariana/garden1/2.jpg" style="max-width: 100%;">
<div align='center'>\
Reaching up and taking a fist full of your hair, she pulls your head down to her eye level.
</div>\
<<button "Continue" "Event: Mariana Garden 1">><<set $mgarden = 2>><</button>>
\
\
\
<<elseif $mgarden == 2>>\
<img src="content/peoples/mariana/garden1/3.jpg" style="max-width: 100%;">
<<if $pgender is "male">>\
<<speech "Mariana">>Here $fname, I am going to play with you. Be a good boy and do as you are told.<</speech>>
<<else>>\
<<speech "Mariana">>Here $fname, I am going to play with you. Be a good girl and do as you are told.<</speech>>
<</if>>\
<<button "Alright" "Event: Mariana Garden 1">><<set $mgarden = 3>><<set $marianarepo += 1>><</button>>
<<button "Sorry Mariana. I can’t. I just can't. I’m sorry." "Hallway Down">><<set $mgarden = 0>><</button>>
\
\
\
<<elseif $mgarden == 3>>\
<img src="content/peoples/mariana/garden1/3.jpg" style="max-width: 100%;">
<<speech "Mariana">>Don’t say a word. I don’t want to hear anything. Just do as you are told. Good. Now take my breast out.<</speech>>
<div align='center'>\
With her fingers still twined through your hair, you reach a hand up and hook a finger into her top and slowly pull it down revealing one perfectly round breast.
</div>\
<<button "Pull it down" "Event: Mariana Garden 1">><<set $mgarden = 4>><</button>>
\
\
\
<<elseif $mgarden == 4>>\
<img src="content/peoples/mariana/garden1/4.jpg" style="max-width: 100%;">
<<speech "Mariana">>And the other too.<</speech>>
<div align='center'>\
You reach back up and expose the other revealing a perfect pair of tits.
</div>\
<<addarousal 5>>\
<<button "Pull it down the other one" "Event: Mariana Garden 1">><<set $mgarden = 5>><</button>>
\
\
\
<<elseif $mgarden == 5>>\
<img src="content/peoples/mariana/garden1/5.jpg" style="max-width: 100%;">
<div align='center'>\
She smiles watching your reaction to taking in the view. She lifts the bottom of her dress revealing her semi-hard erection already drooling precum.
</div>\
<<addarousal 5>>\
<<button "Look down" "Event: Mariana Garden 1">><<set $mgarden = 6>><</button>>
\
\
\
<<elseif $mgarden == 6>>\
<img src="content/peoples/mariana/garden1/6.jpg" style="max-width: 100%;">
<div align='center'>\
It looks like you must have interrupted her in the middle of something.
</div>\
<<speech "Mariana">>I will permit you to give it one kiss.<</speech>>
<<button "Kiss it" "Event: Mariana Garden 1">><<set $mgarden = 7>><<set $marianarepo += 1>><</button>>
<<button "Sorry Mariana. I can’t. I just can't. I’m sorry." "Hallway Down">><<set $mgarden = 0>><</button>>
\
\
\
<<elseif $mgarden == 7>>\
<img src="content/peoples/mariana/garden1/6.jpg" style="max-width: 100%;">
<div align='center'>\
You feel drawn to it by sexual magnetism. Before you know it, your lips are feeling the heat coming from it and you part your lips slightly as you give it a friendly chaste kiss.
</div>\
<<speech "Mariana">>That was so sweet. Mmmmm, come here.<</speech>>
<<addarousal 5>>\
<<button "Move" "Event: Mariana Garden 1">><<set $mgarden = 8>><</button>>
\
\
\
<<elseif $mgarden == 8>>\
<img src="content/peoples/mariana/garden1/7.jpg" style="max-width: 100%;">
<div align='center'>\
She leans, pulls your head down into her bosom cradling your head between her breasts.
</div>\
<<speech "Mariana">>Just watch.<</speech>>
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 9>><</button>>
\
\
\
<<elseif $mgarden == 9>>\
<img src="content/peoples/mariana/garden1/8.jpg" style="max-width: 100%;">
<div align='center'>\
With your cheek pressed against her soft breast, you watch fascinated as her dick goes from somewhat soft to firm to hard...
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 10>><</button>>
\
\
\
<<elseif $mgarden == 10>>\
<img src="content/peoples/mariana/garden1/9.jpg" style="max-width: 100%;">
<div align='center'>\
as it stands up and falls back against her tummy.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 11>><</button>>
\
\
\
<<elseif $mgarden == 11>>\
<img src="content/peoples/mariana/garden1/10.jpg" style="max-width: 100%;">
<div align='center'>\
She seems to be enjoying your attention.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 12>><</button>>
\
\
\
<<elseif $mgarden == 12>>\
<img src="content/peoples/mariana/garden1/11.jpg" style="max-width: 100%;">
<div align='center'>\
She wraps her fingers around it now and begins to slowly stroke her cock.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 13>><</button>>
\
\
\
<<elseif $mgarden == 13>>\
<img src="content/peoples/mariana/garden1/12.jpg" style="max-width: 100%;">
<div align='center'>\
She switches hands and begins to pump it faster.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 14>><</button>>
\
\
\
<<elseif $mgarden == 14>>\
<img src="content/peoples/mariana/garden1/13.jpg" style="max-width: 100%;">
<div align='center'>\
Her fingers curl into your hair tighter now. Is her cock getting even bigger?
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 15>><</button>>
\
\
\
<<elseif $mgarden == 15>>\
<img src="content/peoples/mariana/garden1/14.jpg" style="max-width: 100%;">
<div align='center'>\
You didn’t think that was possible as it was already so immense. Your eyebrows lift with amazement as it continues to increase in height and girth under her experienced hand.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 16>><</button>>
\
\
\
<<elseif $mgarden == 16>>\
<img src="content/peoples/mariana/garden1/15.jpg" style="max-width: 100%;">
<div align='center'>\
You feel her pulling you down closer as her fingers pull harder on your hair. Her breathing is getting faster and more ragged. She must be getting ready to blow her load.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 17>><</button>>
\
\
\
<<elseif $mgarden == 17>>\
<img src="content/peoples/mariana/garden1/16.jpg" style="max-width: 100%;">
<div align='center'>\
She lets out of moan and you feel her heart beating rapidly in your ear pressed against her breast. Her grip in your hair is turning painful.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 18>><</button>>
\
\
\
<<elseif $mgarden == 18>>\
<img src="content/peoples/mariana/garden1/17.jpg" style="max-width: 100%;">
<div align='center'>\
She lets out a soft cry as her cum starts flying.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 19>><</button>>
\
\
\
<<elseif $mgarden == 19>>\
<img src="content/peoples/mariana/garden1/18.jpg" style="max-width: 100%;">
<div align='center'>\
It is going everywhere! She must have had a lot of pent up cum because it just keeps coming.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 20>><</button>>
\
\
\
<<elseif $mgarden == 20>>\
<img src="content/peoples/mariana/garden1/19.jpg" style="max-width: 100%;">
<div align='center'>\
She finally loosens the grip in your hair and you relax the muscles in your neck that you hadn’t realized you had tensed.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 21>><</button>>
\
\
\
<<elseif $mgarden == 21>>\
<img src="content/peoples/mariana/garden1/20.jpg" style="max-width: 100%;">
<div align='center'>\
Finally, the cum stops shooting but as she continues to slowly milk her dick.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 22>><</button>>
\
\
\
<<elseif $mgarden == 22>>\
<img src="content/peoples/mariana/garden1/21.jpg" style="max-width: 100%;">
<div align='center'>\
It oozes in a steady stream out and down her hand.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Garden 1">><<set $mgarden = 23>><</button>>
\
\
\
<<elseif $mgarden == 23>>\
<img src="content/peoples/mariana/garden1/22.jpg" style="max-width: 100%;">
<div align='center'>\
With one final stroke and squeeze, she releases her cock and her grip on your head.
</div>\
<<addarousal 5>>\
<<button "Stand up" "Event: Mariana Garden 1">><<set $mgarden = 24>><</button>>
\
\
\
<<elseif $mgarden == 24>>\
<img src="content/peoples/mariana/garden1/23.jpg" style="max-width: 100%;">
<<speech "Mariana">>I’ve made a bit of a mess here. I want you to clean it up.<</speech>>
<<button "Obey" "Event: Mariana Garden 1">><<set $mgarden = 25>><<set $marianarepo += 1>><</button>>
<<button "Refuse" "Hallway Down">><<set $mgarden = 0>><</button>>
\
\
\
<<elseif $mgarden == 25>>\
<<if $pgender is "male">>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/mariana/garden1/2.mp4">
</video>
<<addarousal 20>>\
<<addmins 30>>\
<<willingness>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $mcumswallowcounter += 1>>\
<<takeenergy 10>>\
\
\
\
<<elseif $pgender is "female">>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/mariana/garden1/1.mp4">
</video>
<<addarousal 20>>\
<<addmins 30>>\
<<willingness>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $fcumswallowcounter += 1>>\
<<takeenergy 10>>\
\
\
\
<<elseif $pgender is "shemale">>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/mariana/garden1/1.mp4">
</video>
<<addarousal 20>>\
<<addmins 30>>\
<<willingness>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $smcumswallowcounter += 1>>\
<<takeenergy 10>>\
<</if>>\
<div align='center'>\
You use your tongue to scoop up the drops across her pelvis and work up the shaft and press your tongue in between the cracks of her fingers working out every drop you can. By the time you feel satisfied that you have cleaned up everything you can, you look up and see that Mariana has fallen asleep. It seems she really needed that. You straighten yourself up and walk back out of the garden leaving Mariana to her rest.
</div>\
<<button "Leave" "Hallway Down">><<set $mgarden1 to true>><<set $mgarden = 0>><<set $marianagardenreplay to true>><</button>>
<</if>>\
<</if>>\
<div align='center' style='font-size: 150%;'><b>Swimming Pool</b></div>\
<img src="content/location/pool.jpg">
\
<div align='center'>\
<<if GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun">>\
<<if $gameDate.getHours() >= "10" and $gameDate.getHours() <= "18" and $weathertype is "sunny">>\
<span style="color:green"><b>Mariana in the garden!</b></span>
<</if>>\
<</if>>\
</div>\
\
\
\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:50%"><b>Swimming Pool</b></th>
<th style="width:50%"><b>Outside</b></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<if $dailyswim is false and $CurEN >= 10>>\
<<button "Jump in the pool" "Swimming">><<takeenergy 10>><<addhours 1>><<set $swimmingcounter += 1>><</button>>
<<elseif $dailyswim is false and $CurEN < 10>>\
<div align='center'>\
You are tired to swim.
</div>\
<<else>>\
<div align='center'>\
You already swam today.
</div>\
<</if>>\
\
\
\
<<if $dailysauna is false>>\
<<button "Use sauna" "Use Sauna">><<addenergy 10>><<addhours 1>><<set $saunacounter += 1>><</button>>
<<else>>\
<div align='center'>\
You already used the sauna today.
</div>\
<</if>>\
\
\
\
<<if $dailyyoga is false and $CurEN >= 10>>\
<<button "Do Yoga" "Doing Yoga">><<takeenergy 10>><<addhours 1>><<set $yogacounter += 1>><</button>>
<<elseif $dailyyoga is false and $CurEN < 10>>\
<div align='center'>\
You are tired to do yoga.
</div>\
<<else>>\
<div align='center'>\
You already done yoga today.
</div>\
<</if>>\
<<button "Hallway" "Hallway Down">><</button>>
</td>\
<td>\
<<button "Garden" "Garden">><</button>>
<<button "House front" "House Front">><</button>>
</td>\
</tr>\
</tbody>\
</table>\
<<if $pgender is "male">>\
<img src="content/location/mswimming.jpg">
<<elseif $pgender is "female" or $pgender is "shemale">>\
<img src="content/location/fswimming.jpg">
<</if>>\
\
<div align='center'>\
You swam and become a little stronger.
</div>\
<<strength>>\
<<timed 300ms>>\
<<stamina>>\
<</timed>>\
<<button "Leave" "Swimming Pool">><<set $dailyswim to true>><</button>>
<<if $pgender is "male">>\
<img src="content/peoples/player/msauna.jpg">
<<elseif $pgender is "female" or $pgender is "shemale">>\
<img src="content/peoples/player/fsauna.jpg">
<</if>>\
\
<div align='center'>\
You relaxed in the sauna and regenerated some energy. (+10 energy)
</div>\
<<button "Leave" "Swimming Pool">><<set $dailysauna to true>><</button>>
<<if $pgender is "male">>\
<<set _random = random(1, 2)>>\
<<if _random == 1>>\
<div align='center'>\
As you start relaxing before the yoga exercise Chanel comes in.
</div>\
<video src="content/peoples/chanel/1/1.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Hi $fname. Can you teach me some basic positions?<</speech>>
<<button "Of course. Come here." "Chanel male yoga">><</button>>
<<button "I just finished. Maybe next time." "Swimming Pool">><<set $dailyyoga to true>><</button>>
\
\
\
<<else>>\
<img src="content/peoples/player/myoga.jpg">
\
<div align='center'>\
You have practiced yoga and become more flexible.
</div>\
<<button "Leave" "Swimming Pool">><<set $dailyyoga to true>><</button>>
<</if>>\
\
\
\
<<elseif $pgender is "female">>\
<<set _random = random(1, 2)>>\
<<if _random == 1>>\
<img src="content/peoples/player/fyoga.jpg">
\
<div align='center'>\
You have practiced yoga and become more flexible.
</div>\
<<button "Leave" "Swimming Pool">><<set $dailyyoga to true>><</button>>
\
\
\
<<else>>\
<div align='center'>\
You are just beginning your yoga routine with some centering and breathing exercises when you hear footfalls in the room. You open your eyes and look up to see Natalie approaching you dropping a gym back on the floor.
</div>\
<img src="content/peoples/maid/4/1.jpg">
\
<<speech "Maid" "Natalie">>Hi $fname, I hope you don’t mind a little company. Care if I join?<</speech>>
<<button "No, of course not Natalie. Please…" "Natalie female yoga">><</button>>
<<button "Sorry, I already finished for today. Another time perhaps?" "Swimming Pool">><<set $dailyyoga to true>><</button>>
<</if>>\
\
\
\
<<elseif $pgender is "shemale">>\
<img src="content/peoples/player/fyoga.jpg">
\
<div align='center'>\
You have practiced yoga and become more flexible.
</div>\
<<button "Leave" "Swimming Pool">><<set $dailyyoga to true>><</button>>
<</if>>\
<<flexibility>>\
<<if $locked is false>>\
<<if $natfemyoga == 0>>\
<div align='center'>\
You pat the floor beside your mat and she takes a mat out of her bag and rolls it out next to yours. She does some quick stretches while you continue your breathing exercises. She smiles over at you and you take her queue that she is ready to begin. You start off with a few sun salutations and moved into a downward-facing dog pose. You look over and notice Natalie checking out your ass in your exercise clothes. You likewise take a look at her ass as it stretches her shorts most tantalizingly.
<img src="content/peoples/maid/4/2.jpg">
The two of you continue through various yoga poses working your way up to the more advanced postures while you both openly ogle each other.
</div>\
<<addarousal 8>>\
<<addmins 5>>\
<<button "Finish it" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemyoga = 0>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 1>>\
<div align='center'>\
You have finished your routine and you are both sitting on your mats chatting when Natalie scoots closer to you and begins running her hand up your knee. Both of you are pretty turned on from watching your luscious bodies bending, twisting, and flexing.
</div>\
<img src="content/peoples/maid/4/3.jpg">
<<addarousal 8>>\
<<addmins 5>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 2>>\
<div align='center'>\
Natalie leans in and kisses you. You kiss her back and the two of you begin breathing heavily as you make out.
</div>\
<video src="content/peoples/maid/4/1.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<tongueskill>>\
<<set $fkisscounter += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><<set $pdollsex to true>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 3>>\
<div align='center'>\
She gently moves your body around so she can get a better look at your full ass. She runs her hands over it a few times and then pulls your bottoms off and leans down to lick it.
<video src="content/peoples/maid/4/2.mp4" style="width: 100%;" autoplay loop></video>
Your damp face is pressed against the yoga mat as you continue to moan under her talented tongue’s ministrations on your tight ass hole. You look back over your shoulder as you feel her move back.
</div>\
<<addarousal 8>>\
<<addmins 5>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 4>>\
<div align='center'>\
You see she has a medium-sized clear butt plug in her hand. She spits on it and begins to rub it against your tight pink rosebud hole. You feel yourself stretching open to accept the toy and groaning with pleasure, you arch your back as you feel it sliding home pulled tight by your sphincters to bring the flared base firmly against your ass cheeks. Natalie rubs the clear base making sure it is in nice and tight. It feels so good lodged there in your ass.
</div>\
<video src="content/peoples/maid/4/3.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<set $analsize += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 5>>\
<div align='center'>\
She presses you down to the mat and lifts your leg twisting you back onto your back. She opens up your pussy and brings her delightful tongue down to lick its delicate folds while her hand continues to move the plug around in your ass. You pull up your top and play with your breasts enjoying all the sensations driving you mad with passion.
</div>\
<video src="content/peoples/maid/4/4.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<set $analsize += 1>>\
<<set $frpussylickcounter += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 6>>\
<div align='center'>\
She fishes back in her gym back and pulls out a long black double-ended dildo and hands it to you with an adorable expression on her face. You prop yourself up on your knees as she bends over presenting her pale white ass, her hole already opening up for you eager for the toy. Taking the dildo with both hands, you slowly feed it into her greedy ass. It slips in so easily!
</div>\
<video src="content/peoples/maid/4/5.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 7>>\
<div align='center'>\
It is turning you on to see how much she is enjoying being fucked by this big black cock. You can’t believe how easily it is moving in and out of her hole. You see your cock dangling there under the rubber dong and you take hold of it. It feels so good in your hand and you stroke it in time with the toy going in and out of her ass. Without thinking, you wrap your lips around the other end of the dildo as it wobbles around above your hand; almost from instinct. You moan as your slobber rolls down the shaft.
</div>\
<video src="content/peoples/maid/4/6.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<handskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 8>>\
<div align='center'>\
Natalie looks back at you and sees that you are taken in a lustful fit and grins. She sits up and pulls the double-ended dildo out of her ass and presses your back forcing you onto your hands and knees. She removes the butt plug from your ass and begins to push the larger dildo in. Clearly, she has more experience taking things in her ass because it doesn’t slide in nearly as easily to yours. You moan loudly as it fils you up. She allows a little time for you to relax and the hole to stretch enough to move it more. She reaches under and begins to finger your clit. Her fingers speed up strumming your hot little button as she begins to move the dildo in and out of your ass.
</div>\
<video src="content/peoples/maid/4/7.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<set $analsize += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 9>>\
<<speech "Maid" "Natalie">>Oh god $fname, you look so hot! I want to fuck your ass with my ass. Hold still while I put the other end in my ass.<</speech>>
<div align='center'>\
She kneels between your legs and backs her ass up to yours and brings the other end of the double-sided dildo to her experienced hole. She slowly backs herself up pushing more of it inside her until her bum cheeks press against yours. She pulls back and slams back against your ass making a dull slapping sound as your flesh meets. Taking her queue, you begin to move your ass as well and the sounds of your union reverberate through the room.
</div>\
<video src="content/peoples/maid/4/8.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<set $analsize += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 10>>\
<div align='center'>\
You feel her balls swinging back hitting you as you come together. Looking down between your legs, you see her cock is hard between her legs. You slow and then stop fucking back into Natalie as you are taken by another hunger. You pull the dildo from between you and crawl over to her and begin to worship her beautiful dick. You lick and suck at it and take it all the way down to the root feeling it in the back of your throat.
</div>\
<video src="content/peoples/maid/4/9.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Maid" "Natalie">>My my, what a horny slut you are today. You love this dick, don’t you? That’s it, suck it all the way in. Yessss, that feels so good $fname. You have a talented mouth there. I love fucking your mouth but I am ready to fuck you ass now. Bend down and show me sexy little hole again. It is time to ride your ass.<</speech>>
<<addarousal 8>>\
<<addmins 5>>\
<<blowjobskill>>\
<<set $fgblowjobcounter += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 11>>\
<div align='center'>\
She pulls out of your mouth and you turn arching your back making it look so tantalizing for Natalie. She easily mounts you and after all the warmup, it slips in easily. You feel like a bitch in heat as she pounds away at you and you are eager to take it all. She adjusts her position behind you and presses your head down into the mat and you love every minute of it. You reach between your legs to try to play with your pussy but she slaps your hand away.
</div>\
<video src="content/peoples/maid/4/10.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Maid" "Natalie">>None of that bitch, it's my turn right now. You can have your turn in a few more minutes.<</speech>>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<set $pussysize += 1>>\
<<set $frpussyfuckcounter += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 12>>\
<div align='center'>\
With that, she goes into overdrive really slamming hard into you forcing the wind out of you. She quickly tires and pulls out. Going over to her bag again, she pulls out a white leather strapon harness and realistic dick already attached and hands it to you.
</div>\
<<speech "player" "$fname">>You really came prepared for yoga today… Such a horny girl Natalie!<</speech>>
<<speech "Maid" "Natalie">>Just shut up and fuck me already. I am so horny! I want you to fuck me as hard and as long as you can.<</speech>>
<div align='center'>\
You have a little trouble fiddling with the harness getting it on and strapped on tight to you but soon enough, you are locked and loaded, and without preamble, you slam it in all the way to the hilt with a satisfying thump causing Natalie to grunt. It feels a bit foreign to fuck with a toy when you are so used to using your own but the motions are familiar and you give her the good dicking she asked for. You move between different positions and you reach around her to stroke her cock as you pound into her.
</div>\
<video src="content/peoples/maid/4/11.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<set $fstraponcounter += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 13>>\
<div align='center'>\
You are on your back and she is riding you reverse cowgirl stroking her dick when she begins to shudder. You can tell she is getting close to nutting. She reaches down to stroke her dick and you let go allowing her to jerk it at her own pace. You feel her spasming on top of you when she cries out, she shoots her load across her tummy.
<video src="content/peoples/maid/4/12.mp4" style="width: 100%;" autoplay loop></video>
Rolling off you, she pulls out a towel to wipe herself off. Looking up at the clock on the wall she gasps and begins frantically putting her toys and mat back in her back.
</div>\
<<speech "Maid" "Natalie">>Sorry to cum and run but I am really late. I was supposed to have the main floor clean by now. I’m going to have to bust my ass in a different way to catch up. Sorry I can’t help you out. I’ll have to make it up to you next time. That was super hot by the way. You were amazing!<</speech>>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<timed 300ms>>\
<<willingness>>\
<</timed>>\
<<set $fstraponcounter += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><<set $pdollsex to false>><<set $pdollcum to true>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 14>>\
<div align='center'>\
You sit there dumbstruck as you lay back on the mat. Your loins are still aching for attention so you use your fingers. You are still not as familiar with getting yourself off in your female body but you don’t have too much trouble finding what feels good and soon enough, you feel the familiar sensation of a growing orgasm. Your sweet mingles with your pussy juices dripping down your thigh to puddle on the mat under you. It feels amazing of course but after all that build up with Natalie, you can’t help but feel a bit let down at how it ended. You will make sure she makes it up to you at some point. You wipe yourself off and put your clothes back on before closing the studio reeking of sex.
</div>\
<video src="content/peoples/maid/4/13.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<set $fcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<button "Leave" "Hallway Down">><<set $natfemyoga = 0>><<set $pdollsex to false>><<set $pdollcum to false>><<set $natalieyogareplay to true>><</button>>
<</if>>\
\
\
\
\
\
<<else>>\
<<if $natfemyoga == 0>>\
<div align='center'>\
You pat the floor beside your mat and she takes a mat out of her bag and rolls it out next to yours. She does some quick stretches while you continue your breathing exercises. She smiles over at you and you take her queue that she is ready to begin. You start off with a few sun salutations and moved into a downward-facing dog pose. You look over and notice Natalie checking out your ass in your exercise clothes. You likewise take a look at her ass as it stretches her shorts most tantalizingly.
<img src="content/peoples/maid/4/2.jpg">
The two of you continue through various yoga poses working your way up to the more advanced postures while you both openly ogle each other.
</div>\
<<addarousal 8>>\
<<addmins 5>>\
<<button "Finish it" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemyoga = 0>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 1>>\
<div align='center'>\
You have finished your routine and you are both sitting on your mats chatting when Natalie scoots closer to you and begins running her hand up your knee. Both of you are pretty turned on from watching your luscious bodies bending, twisting, and flexing.
</div>\
<img src="content/peoples/maid/4/3.jpg">
<<addarousal 8>>\
<<addmins 5>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 2>>\
<div align='center'>\
Natalie leans in and kisses you. You kiss her back and the two of you begin breathing heavily as you make out.
</div>\
<video src="content/peoples/maid/4/1.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<tongueskill>>\
<<set $fkisscounter += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><<set $pdollsex to true>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 3>>\
<div align='center'>\
She gently moves your body around so she can get a better look at your full ass. She runs her hands over it a few times and then pulls your bottoms off and leans down to lick it.
<video src="content/peoples/maid/4/2.mp4" style="width: 100%;" autoplay loop></video>
Your damp face is pressed against the yoga mat as you continue to moan under her talented tongue’s ministrations on your tight ass hole. You look back over your shoulder as you feel her move back.
</div>\
<<addarousal 8>>\
<<addmins 5>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 4>>\
<div align='center'>\
You see she has a medium-sized clear butt plug in her hand. She spits on it and begins to rub it against your tight pink rosebud hole. You feel yourself stretching open to accept the toy and groaning with pleasure, you arch your back as you feel it sliding home pulled tight by your sphincters to bring the flared base firmly against your ass cheeks. Natalie rubs the clear base making sure it is in nice and tight. It feels so good lodged there in your ass.
</div>\
<video src="content/peoples/maid/4/3.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<set $analsize += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 5>>\
<div align='center'>\
You are wearing a chastity belts so you can not enjoy Natalie's wet tongue.
</div>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 6>>\
<div align='center'>\
She fishes back in her gym back and pulls out a long black double-ended dildo and hands it to you with an adorable expression on her face. You prop yourself up on your knees as she bends over presenting her pale white ass, her hole already opening up for you eager for the toy. Taking the dildo with both hands, you slowly feed it into her greedy ass. It slips in so easily!
</div>\
<video src="content/peoples/maid/4/5.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 7>>\
<div align='center'>\
It is turning you on to see how much she is enjoying being fucked by this big black cock. You can’t believe how easily it is moving in and out of her hole. You see your cock dangling there under the rubber dong and you take hold of it. It feels so good in your hand and you stroke it in time with the toy going in and out of her ass. Without thinking, you wrap your lips around the other end of the dildo as it wobbles around above your hand; almost from instinct. You moan as your slobber rolls down the shaft.
</div>\
<video src="content/peoples/maid/4/6.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<handskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 8>>\
<div align='center'>\
Natalie looks back at you and sees that you are taken in a lustful fit and grins. She sits up and pulls the double-ended dildo out of her ass and presses your back forcing you onto your hands and knees. She removes the butt plug from your ass and begins to push the larger dildo in. Clearly, she has more experience taking things in her ass because it doesn’t slide in nearly as easily to yours. You moan loudly as it fils you up. She allows a little time for you to relax and the hole to stretch enough to move it more. She reaches under and begins to finger your clit. Her fingers speed up strumming your hot little button as she begins to move the dildo in and out of your ass.
</div>\
<video src="content/peoples/maid/4/7.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<set $analsize += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 9>>\
<<speech "Maid" "Natalie">>Oh god $fname, you look so hot! I want to fuck your ass with my ass. Hold still while I put the other end in my ass.<</speech>>
<div align='center'>\
She kneels between your legs and backs her ass up to yours and brings the other end of the double-sided dildo to her experienced hole. She slowly backs herself up pushing more of it inside her until her bum cheeks press against yours. She pulls back and slams back against your ass making a dull slapping sound as your flesh meets. Taking her queue, you begin to move your ass as well and the sounds of your union reverberate through the room.
</div>\
<video src="content/peoples/maid/4/8.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<set $analsize += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 10>>\
<div align='center'>\
You feel her balls swinging back hitting you as you come together. Looking down between your legs, you see her cock is hard between her legs. You slow and then stop fucking back into Natalie as you are taken by another hunger. You pull the dildo from between you and crawl over to her and begin to worship her beautiful dick. You lick and suck at it and take it all the way down to the root feeling it in the back of your throat.
</div>\
<video src="content/peoples/maid/4/9.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Maid" "Natalie">>My my, what a horny slut you are today. You love this dick, don’t you? That’s it, suck it all the way in. Yessss, that feels so good $fname. You have a talented mouth there. I love fucking your mouth but I am ready to fuck you ass now. Bend down and show me sexy little hole again. It is time to ride your ass.<</speech>>
<<addarousal 8>>\
<<addmins 5>>\
<<blowjobskill>>\
<<set $fgblowjobcounter += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 11>>\
<div align='center'>\
She pulls out of your mouth and you turn arching your back making it look so tantalizing for Natalie. She easily mounts you and after all the warmup, it slips in easily. You feel like a bitch in heat as she pounds away at you and you are eager to take it all. She adjusts her position behind you and presses your head down into the mat and you love every minute of it. You reach between your legs to try to play with your pussy but she slaps your hand away.
</div>\
<video src="content/peoples/maid/4/10.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Maid" "Natalie">>None of that bitch, it's my turn right now. You can have your turn in a few more minutes.<</speech>>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<set $analsize += 1>>\
<<set $franalcounter += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 12>>\
<div align='center'>\
With that, she goes into overdrive really slamming hard into you forcing the wind out of you. She quickly tires and pulls out. Going over to her bag again, she pulls out a white leather strapon harness and realistic dick already attached and hands it to you.
</div>\
<<speech "player" "$fname">>You really came prepared for yoga today… Such a horny girl Natalie!<</speech>>
<<speech "Maid" "Natalie">>Just shut up and fuck me already. I am so horny! I want you to fuck me as hard and as long as you can.<</speech>>
<div align='center'>\
You have a little trouble fiddling with the harness getting it on and strapped on tight to you but soon enough, you are locked and loaded, and without preamble, you slam it in all the way to the hilt with a satisfying thump causing Natalie to grunt. It feels a bit foreign to fuck with a toy when you are so used to using your own but the motions are familiar and you give her the good dicking she asked for. You move between different positions and you reach around her to stroke her cock as you pound into her.
</div>\
<video src="content/peoples/maid/4/11.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<set $fstraponcounter += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 13>>\
<div align='center'>\
You are on your back and she is riding you reverse cowgirl stroking her dick when she begins to shudder. You can tell she is getting close to nutting. She reaches down to stroke her dick and you let go allowing her to jerk it at her own pace. You feel her spasming on top of you when she cries out, she shoots her load across her tummy.
</div>\
<video src="content/peoples/maid/4/12.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Rolling off you, she pulls out a towel to wipe herself off. Looking up at the clock on the wall she gasps and begins frantically putting her toys and mat back in her back.
</div>\
<<speech "Maid" "Natalie">>Sorry to cum and run but I am really late. I was supposed to have the main floor clean by now. I’m going to have to bust my ass in a different way to catch up. Sorry I can’t help you out. I’ll have to make it up to you next time. That was super hot by the way. You were amazing!<</speech>>
<<addarousal 8>>\
<<addmins 5>>\
<<sexskill>>\
<<timed 300ms>>\
<<willingness>>\
<</timed>>\
<<set $fstraponcounter += 1>>\
<<button "Continue" "Natalie female yoga">><<set $natfemyoga += 1>><</button>>
\
\
\
\
\
<<elseif $natfemyoga == 14>>\
<div align='center'>\
You sit there dumbstruck as you lay back on the mat. Your loins are still aching for attention. You are wearing a chastity belts so you can not make yourself cum. You put your clothes back on before closing the studio reeking of sex.
</div>\
<<addmins 5>>\
<<button "Leave" "Hallway Down">><<set $natfemyoga = 0>><<set $pdollsex to false>><<set $natalieyogareplay to true>><</button>>
<</if>>\
<</if>>\
<<if $locked is false>>\
<<if $chamalyoga == 0>>\
<div align='center'>\
You show her some positions and you keep touching her and try to tease her.
</div>\
<video src="content/peoples/chanel/1/2.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 1>>\
<div align='center'>\
You can see her cock is rock hard so you tell her to sit down and relax.
</div>\
<video src="content/peoples/chanel/1/3.mp4" style="width: 100%;" autoplay loop></video>
<<<addarousal 10>>\
<<addmins 5>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><<set $pdollsex to true>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 2>>\
<div align='center'>\
This is your chance. You get naked and put your cock right in her face. She doesn’t hesitate and immediately wraps her lips around it.
</div>\
<video src="content/peoples/chanel/1/4.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 3>>\
<div align='center'>\
She gives you and intensive blowjob.
</div>\
<video src="content/peoples/chanel/1/5.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<sexskill>>\
<<set $mrblowjobcounter += 1>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 4>>\
<div align='center'>\
You suck her cock and licking her ass to prepare for the penetration.
</div>\
<video src="content/peoples/chanel/1/6.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<set $mgblowjobcounter += 1>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 5>>\
<div align='center'>\
You fuck her many different positions just like you showed her before.
</div>\
<video src="content/peoples/chanel/1/7.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<sexskill>>\
<<set $mganalcounter += 1>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 6>>\
<div align='center'>\
You feel she is very close to cum so you grabbed her and started licking her asshole and she starts stroking her cock pointing to her face. After a couple of strokes, she covering her face and mouth with her own cum.
</div>\
<video src="content/peoples/chanel/1/8.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<addmins 5>>\
<<tongueskill>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><<set $pdollsex to false>><<set $pdollcum to true>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 7>>\
<div align='center'>\
It was beautiful and very sexy you are ready to cum. You fill her mouth with your seed.
</div>\
<video src="content/peoples/chanel/1/9.mp4" style="width: 100%;" autoplay loop></video>
<<zeroarousal>>\
<<addmins 5>>\
<<set $mcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><<set $pdollsex to true>><<set $pdollcum to false>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 8>>\
<div align='center'>\
She just irresistible with her own cum and your cum mixed on her and in her mouth. You lean closer to her and give her a passionate long kiss. Both of your cum mixing both of your mouth.
</div>\
<video src="content/peoples/chanel/1/10.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>That was a perfect yoga lesson. I will be coming next time. Thanks.<</speech>>
<<addarousal 20>>\
<<addmins 5>>\
<<tongueskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<set $mcumswallowcounter += 1>>\
<<set $chanelrepo += 1>>\
<<button "Leave" "Hallway Down">><<set $chamalyoga = 0>><<set $pdollsex to false>><<set $chanelyogareplay to true>><</button>>
<</if>>\
\
\
\
\
\
<<else>>\
<<if $chamalyoga == 0>>\
<div align='center'>\
You show her some positions and you keep touching her and try to tease her.
</div>\
<video src="content/peoples/chanel/1/2.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 1>>\
<div align='center'>\
You can see her cock is rock hard so you tell her to sit down and relax.
</div>\
<video src="content/peoples/chanel/1/3.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><<set $pdollsex to true>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 2>>\
<div align='center'>\
Your cock is locked so she can not suck it.
</div>\
<<addmins 5>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 3>>\
<div align='center'>\
Your cock is locked so she can not suck it.
</div>\
<<addmins 5>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 4>>\
<div align='center'>\
You suck her cock and licking her ass to prepare for the penetration.
</div>\
<video src="content/peoples/chanel/1/6.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<set $mgblowjobcounter += 1>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 5>>\
<div align='center'>\
Your cock is locked so you can not fuck her.
</div>\
<<addmins 5>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 6>>\
<div align='center'>\
You feel she is very close to cum so you grabbed her and started licking her asshole and she starts stroking her cock pointing to her face. After a couple of strokes, she covering her face and mouth with her own cum.
</div>\
<video src="content/peoples/chanel/1/8.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<addmins 5>>\
<<tongueskill>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 7>>\
<div align='center'>\
Your cock is locked so you can not cum.
</div>\
<<addmins 5>>\
<<button "Continue" "Chanel male yoga">><<set $chamalyoga += 1>><</button>>
\
\
\
\
\
<<elseif $chamalyoga == 8>>\
<div align='center'>\
She just irresistible with her own cum on her and in her mouth. You lean closer to her and give her a passionate long kiss. Her cum mixing in both of your mouth.
</div>\
<video src="content/peoples/chanel/1/10.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>That was a perfect yoga lesson. I will be coming next time. Thanks.<</speech>>
<<addarousal 20>>\
<<addmins 5>>\
<<tongueskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<set $mcumswallowcounter += 1>>\
<<set $chanelrepo += 1>>\
<<button "Leave" "Hallway Down">><<set $chamalyoga = 0>><<set $pdollsex to false>><<set $chanelyogareplay to true>><</button>>
<</if>>\
<</if>>\
<div align='center' style='font-size: 150%;'><b>House</b></div>\
<img src="content/location/hallway_down.jpg" style="max-width: 50%;">
\
<<if $bdayquest == 55>>\
<<addMail 13>>\
<<set $bdayquest = 56>>\
<<set $labside = 1>>\
<</if>>\
\
\
\
<<if $angelesquest == 7>>\
<<addMail 14>>\
<<set $angelesquest = 8>>\
<</if>>\
\
\
\
<<if $finalquest == 8>>\
<<addMail 15>>\
<<set $finalquest = 9>>\
<</if>>\
\
\
\
<<if $finalquest == 11>>\
<<set $finalquest = 12>>\
<<addMail 16>>\
<</if>>\
\
\
\
<<if $ht == 4 and $htpoint >= 5 and $gameDate.getHours() >= "19">>\
<<button "Mariana wan`t to speak with you." "Home transformation 1">><</button>>
\
<<elseif $ht == 5 and $htpoint >= 5 and $gameDate.getHours() >= "19">>\
<<button "Mariana wan`t to speak with you." "Home transformation 1">><</button>>
\
<<elseif $ht == 10 and $htpoint >= 5 and $gameDate.getHours() >= "19">>\
<<button "Mariana wan`t to speak with you." "Home transformation 1">><</button>>
\
<<elseif $htlast is true and GameDays[$gameDate.getDay()] is "Sun" and $gameDate.getHours() >= "19">>\
<<button "Mariana wan`t to speak with you." "Home transformation 1">><</button>>
\
<<elseif $kimquest == 17 and $gameDate.getHours() >= "6" and $gameDate.getHours() <= "20">>\
<div align='center'>\
Chanel calling you in the living room. She wants to tell you something.
</div>\
<<button "Go in the Living Room" "Bday Quest">><<set $bdayquest = 0>><</button>>
\
<<elseif $bdayquest == 2 and $gameDate.getHours() >= "6" and $gameDate.getHours() <= "20">>\
<div align='center'>\
Chanel calling you from the kitchen.
</div>\
<<button "Go in the Living Room" "Bday Quest">><</button>>
\
\
\
\
\
<<else>>\
<div align='center'>\
<<if $gameDate.getHours() >= "18">>\
<<set _random to random(1, 4)>>\
<<if _random == 1>>\
You hear Mariana from the dinning room.
<<button "Check her" "Mariana talk">><</button>>
\
<<elseif _random == 2>>\
You hear Natalie from the kitchen.
<<button "Check her" "Natalie talk">><</button>>
\
<<elseif _random == 3>>\
Chanel just comes down on the stairs.
<<button "Talk with her" "Chanel talk">><</button>>
<</if>>\
\
\
\
<<else>>\
<<set _random to random(1, 5)>>\
<<if _random == 1>>\
You hear somebody moaning in the kitchen.
<<button "Peek inside" "Natalie mast kitchen">><</button>>
\
<<elseif _random == 2>>\
You hear somebody moaning in the kitchen.
<<button "Peek inside" "Chanel and Natalie kitchen 1">><</button>>
\
<<elseif _random == 3>>\
<<if $pgender is "male">>\
You hear somebody moaning in the kitchen.
<<button "Peek inside" "Chanel and Natalie kitchen 2">><</button>>
<</if>>\
\
<<elseif _random == 4>>\
You hear Natalie from the kitchen.
<<button "Check her" "Natalie talk">><</button>>
<</if>>\
<</if>>\
\
\
\
<<set _random to random(1, 3)>>\
<<if _random == 1>>\
Jordi coming out from his room.
<<button "Talk with him" "Jordi talk">><</button>>
<</if>>\
\
\
\
<<if GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun">>\
<<if $gameDate.getHours() >= "10" and $gameDate.getHours() <= "18" and $weathertype is "sunny">>\
<span style="color:green"><b>Mariana in the garden!</b></span>
<</if>>\
<</if>>\
</div>\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:33%"><b>Lower Hallway</b></th>
<th style="width:33%"><b>Upper Hallway</b></th>
<th style="width:33%"><b>Outside</b></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<button "Living room" "Living Room">><</button>>
<<button "Dining room" "Dining Room">><</button>>
<<button "Kitchen" "Kitchen">><</button>>
<<button "Swimming Pool" "Swimming Pool">><</button>>
</td>\
<td>\
<<button "Your room" "Player Room">><<set $proom to true>><</button>>
<<button "Mariana`s bedroom" "Mariana Bedroom">><</button>>
<<button "Mariana`s Office" "Mariana Home Office">><</button>>
<<button "Chanel`s bedroom" "Chanel Bedroom">><</button>>
<<if $jorditalk is true>>\
<<if $gameDate.getHours() >= "16">>\
<<button "Jordi's room" "Jordi room">><</button>>
<<else>>\
Jordi's room locked
<</if>>\
<</if>>\
<<button "Natalie's room" "Natalie Bedroom">><</button>>
</td>\
<td>\
<<button "Garden" "Garden">><</button>>
<<button "House Front" "House Front">><</button>>
<<if $gameDate.getHours() < "6">>\
It is too late to go out.
<<else>>\
<<if $currTop is "MaidTop" or $currShoes is "MaidShoes">>\
You can not leave the house in the maid clothing.
<<else>>\
<<button "Town" "Map">><<addmins 10>><</button>>
<</if>>\
<</if>>\
</td>\
</tr>\
</tbody>\
</table>\
<</if>>\
<img src="content/peoples/mariana/dining_table.jpg" style="max-width: 60%;">
\
<div align='center'>\
Mariana sitting at the dining table and just putting her mobile down.
</div>\
<div id="answers">\
<<speech "player" "$fname">>Hello Mariana. I want to ask something.<</speech>>
</div>\
\
<<button "Ask her about the NEMESIS">>
<<replace "#answers">>\
<<speech "player" "$fname">>How long have you been working for Nemesis now?<</speech>>
<<speech "Mariana">>Just like you, I joined Nemesis right out of school after they offered me a job. That was what… 20 years ago now or so? Wow, the time has really flown by!<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about her husband">>
<<replace "#answers">>\
<<speech "player" "$fname">>That is so awful that you lost your husband in the accident. I can’t even imagine what that would be like. Do you still miss him a lot?<</speech>>
<<speech "Mariana">>That was the hardest thing I’ve ever been through. I hope you never have to go through that experience. I still think of him every day. Losing him broke my heart and I don’t think I will ever love again.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about her work">>
<<replace "#answers">>\
<<speech "player" "$fname">>How has it been working for Nemesis all this time? Are they treating you well?<</speech>>
<<speech "Mariana">>They are the largest private research company in the world working in both the government and public sectors. They are a money-making machine and are too big to care about the little guys. / It sounds like you don’t have a high opinion of the companies motivations. Why don’t you leave? / Oh, I’ve been working here too long for them to just let me go. Unfortunately, I know too much and could never get out without having to change my whole family's identities. Even then… I’d probably end up in a terrible ‘accident’ or something dreadful would happen to my children. It is just too risky to do anything. So I try to keep my head down and just go with the flow, you know? I sometimes wish that something would happen to just burn the whole company to the ground. Just a pipe dream.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about her kids">>
<<replace "#answers">>\
<<speech "player" "$fname">>I’m still trying to get to know your kids. I wish I knew them better. What are they like?<</speech>>
<<speech "Mariana">>I love them with all my heart. They are the only thing that really matters to me anymore. They can be little stinkers sometimes but hey, they are my kids. They are all I have. After… after their dad died, they have not been the same. Chanel just goes from one party to the next sleeping with everyone she sees. I keep hoping it is just a phase she is going through. She has so much potential that she hasn’t tapped into yet. And little Jordi seemed to go the opposite direction. Spending all day in his room on that damn machine. I need to figure out a way to break him of his gaming addiction. I can’t help but think that he just needs one REAL friend to help him get out and see more of the world to help him get away from those bloody video games. I don’t want to push but if you were to make more of an effort to talk to him, I would be eternally grateful.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about her free time">>
<<replace "#answers">>\
<<speech "player" "$fname">>So what do you like to do in your free time?<</speech>>
<<speech "Mariana">>What free time? I guess I do have my weekends… I try to find ways to blow off steam from the work week so I’m mostly looking to relax. If the weather is good, I enjoy sunbathing in the yard. I sometimes enjoy going into town as well. I’ve got a favorite ice cream place that I should introduce you to.<</speech>>
<<speech "player" "$fname">>Oh yeah, I’d love that!<</speech>>
<<speech "Mariana">>Great, come find me on the weekend and we’ll go!<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about her penis">>
<<replace "#answers">>\
<<speech "player" "$fname">>It must have been so strange when you lost your pussy and grew your dick. What was that like for you?<</speech>>
<<speech "Mariana">>You have no fucking idea! The accident didn’t just give me a bloody huge dick but I am horny ALL… THE… TIME! You would think having a third leg would be awesome but… I don’t know… It is so uncomfortable sometimes. Do you know how hard it is to find pretty panties that will fit this monster? And heaven forbid I ever get aroused. If I see a hot looking guy, everything down there just runs out of space really really quick. I just want to rip my god damn pants off so it has room to breathe. You want to hear something funny? I love blow jobs but… I’m only attracted to men. Well, I guess that isn’t so much funny as it is sad. Most guys are petrified when they see my schlong. Anyway… There must be something messed up in my genes. Truth be told, I do miss my pussy sometimes. I loved getting fucked and I could use a dildo. I’ve learned to use the dildo in my ass but it just isn’t the same. Sadly, those days are long gone.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about selfsuck">>
<<replace "#answers">>\
<<speech "player" "$fname">>How did you learn to suck your own cock?<</speech>>
<<speech "Mariana">>I might not look it now but I was a pretty good gymnast in school. I’ve managed to keep my flexibility from doing yoga and trying to take care of my body. Of course, it helps that I have a hose sized dick. I think with enough practice that you could do it too.<</speech>>
<</replace>>\
<</button>>
<<button "Leave her" "Hallway Down">><</button>>
<img src="content/peoples/chanel/cdining.jpg" style="max-width: 30%;">
\
<div id="answers">\
<<speech "player" "$fname">>Hello Chanel. I want to ask something.<</speech>>
</div>\
\
<<button "Ask her about the school">>
<<replace "#answers">>\
<<speech "player" "$fname">>How do you like your school?<</speech>>
<<speech "Chanel">>I dropped out. I don’t care about school anymore. Life is too short to spend the whole damn day in class. I want to… what is the expression? Seize the carp? Carp the diem? Something like that. I just want to grab the day by the throat and squeeze every last drop of fun from it that I can.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her from the parties">>
<<replace "#answers">>\
<<speech "player" "$fname">>How is it that you manage to find a different party every day?<</speech>>
<<speech "Chanel">>Not every day but yeah, most days. There is a really cool club in town and I met a lot of awesome people there. You should come check it out some time.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about her dad">>
<<replace "#answers">>\
<<speech "player" "$fname">>What was your dad like?<</speech>>
<<speech "Chanel">>Dad was awesome. I loved him so much. I… I don’t want to talk about it.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about Jordi">>
<<replace "#answers">>\
<<speech "player" "$fname">>Your brother is really quiet. Has he always been like that?<</speech>>
<<speech "Chanel">>My brother is so boring. He just spends all day playing those lame games. He doesn’t spend time with me anymore. If you want to get to know him better, you will probably need to play those games with him.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about Natalie">>
<<replace "#answers">>\
<<speech "player" "$fname">>I’m so jealous that you have a maid. What do you think of Natalie?<</speech>>
<<speech "Chanel">>Oh, Natalie is the best! And you would never guess what a pervert she is… If you ever need some help getting off, she is always eager to help. And if you are a voyeur at all, she loves to be watched. She probably spends at much time jerking off about as she does cleaning. I’m always catching her around the house spanking her monkey.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about her penis">>
<<replace "#answers">>\
<<speech "player" "$fname">>Was it hard to adjust to having a penis?<</speech>>
<<speech "Chanel">>Oh… my.. god! I love having a cock! It seems like it is always rock hard which keeps me so horny. I pretty much fuck anything that isn’t nailed down.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about Mariana">>
<<replace "#answers">>\
<<speech "player" "$fname">>Your mom seems pretty cool. Do you get along with her well?<</speech>>
<<speech "Chanel">>Mom? Yeah, she is like the queen bee. Everything revolves around her. Oh and don’t get me started on her cock. I think it might be the biggest in the world. Certainly the biggest I have ever seen. Too bad she is only into guys. I wish I could feel what it is like to have it stretch out my ass and pound my stomach from the inside…<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about the lab">>
<<replace "#answers">>\
<<speech "player" "$fname">>Does your mom ever take you to the lab?<</speech>>
<<speech "Chanel">>Not anymore. I’ve been but I don’t like that place and don’t want to have anything to do with it. I think I still have an old lab coat, bracelet and some other lab junk in my room somewhere. I should probably toss them out.<</speech>>
<</replace>>\
<</button>>
<<button "Leave" "Hallway Down">><</button>>
<img src="content/peoples/maid/2/2.jpg">
\
<div align='center'>\
Natalie cooking in the kitchen.
</div>\
<<if $pgender is "female">>\
<<button "Help her cooking" "Natalie kitchen female">><</button>>
<</if>>\
\
<div id="answers">\
<<speech "player" "$fname">>Hello Natalie. I want to ask something.<</speech>>
</div>\
\
<<button "Ask her about work">>
<<replace "#answers">>\
<<speech "player" "$fname">>How long have you been working here?<</speech>>
<<speech "Maid" "Natalie">>I’ve been living here since I was 14. I am an orphan you know. When I was a kid, I snuck out of my group home and broke into the house looking for stuff to steal. Mariana caught me. Instead of turning me in to the police, she sat me down and just talked to me. It… was amazing. She changed my life. She gave me a job and a feeling of self-worth. I owe everything to this family. I am very grateful to work for this family.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her from Mariana">>
<<replace "#answers">>\
<<speech "player" "$fname">>What is it like working for Mariana?<</speech>>
<<speech "Maid" "Natalie">>She is like the mother I never had. She is more than that though of course. She is the mistress, the head of the house, and my boss. I really wish she was more into girls. I have been training my ass in hopes that someday she will, well… just grab me in the hall sometime and throw me against the wall and stab her wang into my ass and fuck me within an inch of my life. I want her to breed my ass with her donkey dick so bad. I know I could please her if only she’d give me a chance.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her from Chanel">>
<<replace "#answers">>\
<<speech "player" "$fname">>What is Chanel like?<</speech>>
<<speech "Maid" "Natalie">>She is a slut! No doubt about it. She will fuck anyone and anything. And the funny thing is that I think she is proud of it. Like being a slut is something to aspire to. We used to be pretty good buddies but it seems that all she really cares about now is partying and fucking.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her from Jordi">>
<<replace "#answers">>\
<<speech "player" "$fname">>What do you think of Jordi?<</speech>>
<<speech "Maid" "Natalie">>I think Jordi is the black sheep of the family. He goes to school in the morning and then comes home and spends the rest of the day in his room. I think he must still be a virgin. He is a pretty handsome guy but he never really gives anyone the time of day.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask her about her penis">>
<<replace "#answers">>\
<<speech "player" "$fname">>What is it like to grow up as a girl and then grow a penis?<</speech>>
<<speech "Maid" "Natalie">>You know, it isn’t all that different. At least in my case. I wasn’t lucky like Mariana. I just got this tiny little dicklette that is really just an oversized clit. I love my ass though. I think it might be more sensitive than my pussy was. I like having it full all the time and it makes me super horny as I move around cleaning. It sometimes gets to be too much and I just have to stop and rub one out. I will get it nice and stretched out so I can take a baseball bat eventually. When I take the bat in my ass, I will cum moaning Mariana’s name.<</speech>>
<</replace>>\
<</button>>
<<button "Leave" "Hallway Down">><</button>>
<img src="content/peoples/jordi/jdining.jpg" style="max-width: 100%;">
\
<div id="answers">\
<<speech "player" "$fname">>Hello Jordi. I want to ask something.<</speech>>
</div>\
\
<<button "Ask him from the school">>
<<replace "#answers">>\
<<speech "player" "$fname">>How is school going?<</speech>>
<<speech "Jordi">>School is fine.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask him from Mariana">>
<<replace "#answers">>\
<<speech "player" "$fname">>Do you get along very well with your mom?<</speech>>
<<speech "Jordi">>I don’t want to talk about her.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask him from Chanel">>
<<replace "#answers">>\
<<speech "player" "$fname">>I’m an only child. I always wished I had a sister growing up. What is your sister like?<</speech>>
<<speech "Jordi">>I don’t want to talk about her.<</speech>>
<</replace>>\
<</button>>
\
<<button "Ask him from relationships">>
<<replace "#answers">>\
<<speech "player" "$fname">>Do you have a girlfriend?<</speech>>
<<speech "Jordi">>No.<</speech>>
<</replace>>\
<</button>>
\
<<button "Try to play with him">>
<<replace "#answers">>\
<<speech "player" "$fname">>Can I play one of your games with you?<</speech>>
<<speech "Jordi">>If you are any good. Drop by my room sometime and if I’m in the mood we can see what you’ve got.<</speech>>
<</replace>>\
<</button>>
<<button "Leave" "Hallway Down">><<set $jorditalk to true>><</button>>
<div align='center' style='font-size: 150%;'><b>Living Room</b></div>\
<img src="content/location/living_room.jpg">
<<button "Watch TV" "Living Room TV">><</button>>
<<button "Leave" "Hallway Down">><</button>>
<div align='center' style='font-size: 150%;'><b>Living Room</b></div>\
<img src="content/location/living_room.jpg">
<div align='center'>\
<<if $gameDate.getHours() >= "21" and $gameDate.getHours() <= "22">>\
<<set _rnd = random(1, 2)>>\
<<if _rnd == 1>>\
Mariana is here.
<<if $CurEN >= 10>>\
<<button "Talk with her" "Event: Mariana Living Room 1">><<set $mlivingroom = 0>><</button>>
<<else>>\
You are tired to talk with her.
<</if>>\
<<button "Leave her" "Hallway Down">><</button>>
\
\
\
<<else>>\
<<if $CurEN >= 10>>\
You sit down and watch TV.
<<addhours 1>>\
<<takeenergy 10>>\
<<button "Stop watching" "Living Room">><</button>>
<<else>>\
You are tired to watch TV.
<<button "Leave her" "Hallway Down">><</button>>
<</if>>\
<</if>>\
<<elseif $gameDate.getHours() >= "19" and $gameDate.getHours() <= "20">>\
<<set _rnd = random(1, 2)>>\
<<if _rnd == 1>>\
You see Chanel on the sofa.
<<if $CurEN >= 10>>\
<<button "Talk with her" "Event: Chanel Living Room 1">><</button>>
<<else>>\
You are tired to talk with her.
<</if>>\
<<button "Leave her" "Hallway Down">><</button>>
\
\
\
<<else>>\
<<if $CurEN >= 10>>\
You sit down and watch TV.
<<addhours 1>>\
<<takeenergy 10>>\
<<button "Stop watching" "Living Room">><</button>>
<<else>>\
You are tired to watch TV.
<<button "Leave" "Hallway Down">><</button>>
<</if>>\
<</if>>\
\
\
\
<<else>>\
<<if $CurEN >= 10>>\
You sit down and watch TV.
<<addhours 1>>\
<<takeenergy 10>>\
<<button "Stop watching" "Living Room">><</button>>
<<else>>\
You are tired to watch TV.
<<button "Leave her" "Hallway Down">><</button>>
<</if>>\
<</if>>\
</div>\
<<if $mlivingroom1 is true>>\
<<if $mlivingroom == 0>>\
<img src="content/peoples/mariana/tv/14.jpg" style="max-width: 100%;">
<div align='center'>\
As you walk into the living room, you see Mariana lie on the couch watching the television. She glances up at you giving you’re a cursory smile and then turns back to the screen. You slowly walk up near her, and she looks up at your again a bit more annoyed at being interrupted.
</div>\
<<speech "Mariana">>What is it $fname? I’m a bit busy at the moment.<</speech>>
<<speech "player" "$fname">>Sorry, I was really hoping I could chat with you for a couple of minutes.<</speech>>
<<speech "Mariana">>It isn’t the best time but if you don’t mind that I’m distracted with my show, go ahead.<</speech>>
<<button "How can you suck your own cock?" "Event: Mariana Living Room 1">><<set $mlivingroom = 1>><</button>>
<<button "Leave" "Hallway Down">><</button>>
\
\
\
<<elseif $mlivingroom == 1>>\
<img src="content/peoples/mariana/tv/14.jpg" style="max-width: 100%;">
<<speech "player" "$fname">>Alright, I’ll jump straight to the point. I have been wondering how you are able to suck your own cock. Is there a trick to it?<</speech>>
<<speech "Mariana">>Well, you need to be pretty flexible or have a long dick. Of course, having both doesn’t hurt either. In your case, you’ll just need to keep stretching. With enough practice, you should be able to get there.<</speech>>
<<speech "player" "$fname">>So I should do more yoga then. I’m so jealous that your cock is so long. It must seem so easy for you.<</speech>>
<<speech "Mariana">>Having a big dick isn’t always that great but when it comes to autofellatio, it has been a no brainer. I just lean forward a little bit and there it is at my lips. Just keep up on your yoga practice and you’ll find your mouth getting closer and closer to your goal. Is there anything else or can I get back to my show?<</speech>>
<<speech "player" "$fname">>No, that was it. Thanks, Mariana. Sorry to have bothered you.<</speech>>
<div align='center'>\
She just waves at you as her attention goes back to the screen.
</div>\
<<button "Leave" "Hallway Down">><<set $mlivingroom = 0>><<addmins 10>><</button>>
<</if>>\
\
\
\
<<else>>\
<<if $mlivingroom == 0>>\
<img src="content/peoples/mariana/tv/1.jpg" style="max-width: 100%;">
<div align='center'>\
You see the familiar glow of the television and step in to find Mariana reclined on the couch. You sit down next to her and she gives you a friendly pat on your knee as her eyes are glued to the screen.
</div>\
<<speech "player" "$fname">>Mind if I join you?<</speech>>
<<speech "Mariana">>No, not at all. Make yourself comfortable.<</speech>>
<<button "Join her" "Event: Mariana Living Room 1">><<set $mlivingroom = 2>><</button>>
<<button "Leave her" "Hallway Down">><</button>>
\
\
\
<<elseif $mlivingroom == 2>>\
<img src="content/peoples/mariana/tv/2.jpg" style="max-width: 100%;">
<div align='center'>\
You settle into the cushion as you try to pick up on what is happening in the movie.
</div>\
<<speech "player" "$fname">>What are you watching?<</speech>>
<<speech "Mariana">>It’s an obscure 80’s action movie that you have probably never heard of. It is a bit of a cult classic. Have you heard of Cherry 2000? Yeah, I didn’t think so. It’s a post-apocalyptic movie with a sexy robot. Pamela Gidley is so hot in this.<</speech>>
<div align='center'>\
Mariana stretches out her arms and repositions herself next to you.
</div>\
<<button "Continue" "Event: Mariana Living Room 1">><<set $mlivingroom = 3>><</button>>
\
\
\
<<elseif $mlivingroom == 3>>\
<img src="content/peoples/mariana/tv/3.jpg" style="max-width: 100%;">
<<speech "Mariana">>My shoulders are so tight. Hey, would you mind giving me a massage?<</speech>>
<<speech "player" "$fname">>No, I wouldn’t mind at all. I’m not a masseuse though. I have no idea what I’m doing.<</speech>>
<div align='center'>\
She lays down on her stomach keeping her head towards the screen arching her back and then settling back down again.
</div>\
<<speech "Mariana">>Just sit on my back and I’ll tell you what to do.<</speech>>
<<speech "player" "$fname">>Are you sure about this. I don’t want to squish you.<</speech>>
<<button "Continue" "Event: Mariana Living Room 1">><<set $mlivingroom = 4>><</button>>
\
\
\
<<elseif $mlivingroom == 4>>\
<img src="content/peoples/mariana/tv/4.jpg" style="max-width: 100%;">
<<speech "Mariana">>Just shut up and do it $fname.<</speech>>
<<button "Obey" "Event: Mariana Living Room 1">><<set $mlivingroom = 5>><</button>>
\
\
\
<<elseif $mlivingroom == 5>>\
<img src="content/peoples/mariana/tv/5.jpg" style="max-width: 100%;">
<div align='center'>\
You slowly shuffle yourself over her and sit back feeling your bottom rest in the small of her back. You reach your hands up and grab handfuls of her shoulders trying to squeeze them as you imagine you would enjoy. She rewards you with some appreciative groaning sounds. Feeling reassured, you continue the motion across her shoulders to her arms. You work your way back to her neck and then experiment with massaging down her back. As your hands move over her skin, you feel yourself starting to get a bit aroused. You shift your weight a bit trying to avoid your growing bulge from being too obvious. She starts to lean up and taking your queue, you slide off her body.
</div>\
<<speech "Mariana">>That was not too bad.<</speech>>
<<addmins 10>>\
<<addarousal 30>>\
<<button "Stand up" "Event: Mariana Living Room 1">><<set $mlivingroom = 6>><</button>>
\
\
\
<<elseif $mlivingroom == 6>>\
<img src="content/peoples/mariana/tv/6.jpg" style="max-width: 100%;">
<<speech "Mariana">>Did you like what you saw? Hmmm?<</speech>>
<div align='center'>\
In case you couldn’t take the hint from her words, she glances down between your legs.
</div>\
<<speech "player" "$fname">>Mariana, I’m sorr...<</speech>>
<<speech "Mariana">>Shut up $fname. Don’t say a word. For the rest of the night, if I ask you a question, just nod or shake your head. Clear?<</speech>>
<div align='center'>\
You jerkily nod your head yes that you understand.
</div>\
<<speech "Mariana">>Good. Now get down on your knees.<</speech>>
<<addarousal 20>>\
<<button "Follow her orders" "Event: Mariana Living Room 1">><<set $mlivingroom = 7>><<set $marianarepo += 1>><</button>>
<<button "You refuse her" "Hallway Down">><<set $mlivingroom = 0>><</button>>
\
\
\
<<elseif $mlivingroom == 7>>\
<img src="content/peoples/mariana/tv/7.jpg" style="max-width: 100%;">
<<speech "Mariana">>You aren’t worthy to touch me yet. Just watch for now. Nod if you understand.<</speech>>
<div align='center'>\
You nod affirmatively and bite your lower lip as you look at her.
</div>\
<<speech "Mariana">>You want to touch me, don’t you. Yes, I can see that you do. You hunger for my body. I will show you how I like it. Once you understand, I will allow you to show me that you are a good slave and please me just the way I want it. Watch and learn.<</speech>>
<<addarousal 20>>\
<<button "You carefully watch her" "Event: Mariana Living Room 1">><<set $mlivingroom = 8>><</button>>
\
\
\
<<elseif $mlivingroom == 8>>\
<img src="content/peoples/mariana/tv/8.jpg" style="max-width: 100%;">
<<speech "Mariana">>You have to start off slow. Like greeting an old lover you haven’t seen in a long time. Stick out your tongue and lick just the tip gently. Like this.<</speech>>
<<addarousal 20>>\
<<button "You continue to watch her" "Event: Mariana Living Room 1">><<set $mlivingroom = 9>><</button>>
\
\
\
<<elseif $mlivingroom == 9>>\
<img src="content/peoples/mariana/tv/9.jpg" style="max-width: 100%;">
<<speech "Mariana">>See how I do that? Very slow and seductive. Just tease it. Do you see?<</speech>>
<<addarousal 20>>\
<<button "You slowly nod your head" "Event: Mariana Living Room 1">><<set $mlivingroom = 10>><</button>>
\
\
\
<<elseif $mlivingroom == 10>>\
<img src="content/peoples/mariana/tv/10.jpg" style="max-width: 100%;">
<<speech "Mariana">>Use lots of tongue. Just like this.<</speech>>
<<addarousal 20>>\
<<button "You watch her admiring how she licks her own cock" "Event: Mariana Living Room 1">><<set $mlivingroom = 11>><</button>>
\
\
\
<<elseif $mlivingroom == 11>>\
<img src="content/peoples/mariana/tv/11.jpg" style="max-width: 100%;">
<div align='center'>She stands and as she rises, her hard cock is pointing right between your eyes. You glance up to her eyes quickly and then back down. Not sure what she wants you to do, you lean in and kiss the tip.</div>\
<<button "Continue" "Event: Mariana Living Room 1">><<set $mlivingroom = 12>><</button>>
\
\
\
<<elseif $mlivingroom == 12>>\
<img src="content/peoples/mariana/tv/12.jpg" style="max-width: 100%;">
<<speech "Mariana">>I can see from the look in your eye that you desire my body. I make you hot, don’t I? I can only imagine how horny you must be right now. Does it feel good to admire my magnificent body?<</speech>>
<<button "Continue" "Event: Mariana Living Room 1">><<set $mlivingroom = 13>><</button>>
\
\
\
<<elseif $mlivingroom == 13>>\
<img src="content/peoples/mariana/tv/13.jpg" style="max-width: 100%;">
<div align='center'>\
She kneels down next to the coffee table and slaps her massive erection on the tabletop hearing it make a solid thump as it hits. That is one solid piece of meat she has there. She slowly strokes it making soft moans that seem to come from the back of her throat. She looks at you and licks her lips.
</div>\
<<speech "Mariana">>You want to taste me, don’t you? Have you imagined what I taste like? Is the hunger to find out eating you up inside? You have probably never tasted anything like me have you?<</speech>>
<div align='center'>\
You’ve never experienced anything like this before. A beautiful woman taking control of you and stoking the flames of your desire while denying them at the same time. You can’t remember the last time you felt so horny. You feel a peculiar desire to please her and follow her every instruction.
</div>\
<<button "You keep nod your head solemnly" "Event: Mariana Living Room 1">><<set $mlivingroom = 14>><</button>>
\
\
\
<<elseif $mlivingroom == 14>>\
<div align='center'>\
Her strokes speed up and you see her flex her hips like she is fucking a phantom lover in front of you. Her breath catches and she holds it for a few seconds before letting it out in a long exhale as her cum flies out landing on the table next to you.
</div>\
<video src="content/peoples/mariana/tv/1.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>Be a good slave for me and lick it up. I want you to clean the table with your tongue. When I come back, I don’t want to see you or any sign of my seed on this table.<</speech>>
<div align='center'>\
She turns off the television and leaves the room.
</div>\
<<button "You obey and lick it up" "Event: Mariana Living Room 1">><<set $mlivingroom = 15>><</button>>
<<button "You are disgusted at the thought of eating her cum and refuse" "Hallway Down">><<set $mlivingroom = 0>><</button>>
\
\
\
<<elseif $mlivingroom == 15>>\
<<if $pgender is "male">>\
<video src="content/peoples/mariana/tv/3.mp4" style="width: 100%;" autoplay loop></video>
<<set $mcumswallowcounter += 1>>\
<<elseif $pgender is "female">>\
<video src="content/peoples/mariana/tv/2.mp4" style="width: 100%;" autoplay loop></video>
<<set $fcumswallowcounter += 1>>\
<<elseif $pgender is "shemale">>\
<video src="content/peoples/mariana/tv/2.mp4" style="width: 100%;" autoplay loop></video>
<<set $scumswallowcounter += 1>>\
<</if>>\
<div align='center'>\
You lean forward and gingerly extend your tongue into the largest glob to take it onto your tongue. The taste is tangy and not at all what you expected. You feel even more turned on obeying her command and doing something so filthy as eating her cum. You continue to lick at the drops and savour it as it slides down your throat. You don’t want to waste a drop of the precious fluid. Once you are confident that you have it all, you stand and leave as well.
</div>\
<<set $marianarepo += 1>>\
<<addmins 20>>\
<<takeenergy 10>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<set $marianalivingroomreplay to true>>\
<<button "Leave" "Hallway Down">><<set $mlivingroom = 0>><<set $mlivingroom1 to true>><</button>>
<</if>>\
<</if>>\
<div align='center' style='font-size: 150%;'><b>Kitchen</b></div>\
<img src="content/location/kitchen.jpg">
<<button "Leave" "Hallway Down">><</button>>
<div align='center' style='font-size: 150%;'><b>Dining Room</b></div>\
<img src="content/location/dining_room.jpg">
<<button "Leave" "Hallway Down">><</button>>
<<if $clroom1 is true>>\
<img src="content/peoples/chanel/livingroom/2.jpg" style="max-width: 50%;">
<<speech "Chanel">>I want to fuck you again, but you completely drained me before, so that is not going to happen now. If you are hungry for my cock, meet with me here tomorrow. I will take a nap. <</speech>>
<<button "Leave" "Hallway Down">><</button>>
\
\
\
<<else>>\
<<set _rnd to random(1, 3)>>\
<<if _rnd == 1>>\
<div align='center'>\
<video src="content/peoples/chanel/livingroom/mas.mp4" autoplay loop></video>
Chanel masturbating on the sofa and you enjoying the view. You feel your excitement grow and your hand slip quietly down between your legs. You jump as you feel a hand on your shoulder and you spin, yanking your hand free in the process.
</div>\
<<speech "Maid" "Natalie">>What the fuck are you doing? I knew you were a giant perv but this is messed up. Spying on Chanel and pleasuring yourself while hiding in the shadows? Oh, you are going to pay… You are coming with me!<</speech>>
<<button "Go with her" "Natalie punishment">><<set $scene = 1>><<addhours 1>><</button>>
\
\
\
<<else>>\
<div align='center'>\
<video src="content/peoples/chanel/livingroom/mas.mp4" autoplay loop></video>
Chanel masturbating on the sofa.
</div>\
<<button "Ask if she need a helping hand" "Event: Chanel Living Room 2">><</button>>
<<button "Leave her alone" "Hallway Down">><</button>>
<</if>>\
<</if>>\
<img src="content/peoples/chanel/livingroom/1.jpg" style="max-width: 100%;">
<<speech "player" "$fname">>Looks like you need a helping hand.<</speech>>
<<speech "Chanel">>Ohh hello $fname. Come here!<</speech>>
<<button "Go to her" "Event: Chanel Living Room 3">>
<<addmins 30>>\
<<set $pdollsex to true>>\
<<set $sexactions1 to true>>\
<<set $moves = 10>>\
<<set $sexpoint = 1>>\
<<if $stamina >= 20>>\
<<if $stamina < 40>>\
<<set $moves += 1>>\
<<elseif $stamina < 60>>\
<<set $moves += 2>>\
<<elseif $stamina < 80>>\
<<set $moves += 3>>\
<<elseif $stamina < 100>>\
<<set $moves += 4>>\
<<else>>\
<<set $moves += 5>>\
<</if>>\
<</if>>\
<</button>>
<<if $moves == 0 and $CurOG < $MaxOG>>\
<img src="content/peoples/chanel/livingroom/dis.jpg" style="max-width: 100%;">
<<speech "Chanel">>You didn't made me cum. I am tired now please leave me alone.<</speech>>
<<button "Leave" "Hallway Down">><<set $pdollsex to false>><<set $pdollcum to false>><<set $clroom1 to true>><</button>>
\
\
\
<<else>>\
<<if $pgender is "male">>\
<div align="center"><b>Moves left: $moves</b></div>\
\
\
\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:50%">\
<<if $CurAR >= $MaxAR and $locked is false or $sexpoint == 0>>\
<video src="content/pov/acum2.mp4" autoplay loop></video>
<<elseif $CurOG >= $MaxOG>>\
<video @src="'content/pov/ccum' + random(1, 2) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 1>>\
<video @src="'content/pov/kiss' + random(1, 3) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 2>>\
<video @src="'content/pov/ghandjob' + random(1, 7) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 3>>\
<video @src="'content/pov/rhandjob' + random(1, 8) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 4>>\
<video src="content/pov/lickcock1.mp4" autoplay loop></video>
<<elseif $sexpoint == 5>>\
<video src="content/pov/gblowjob1.mp4" autoplay loop></video>
<<elseif $sexpoint == 6>>\
<video @src="'content/pov/deepthroat' + random(1, 2) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 7>>\
<video @src="'content/pov/rblowjob' + random(1, 10) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 8>>\
<video @src="'content/pov/fuck' + random(1, 11) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 9>>\
<video @src="'content/pov/fucked' + random(1, 3) + '.mp4'" autoplay loop></video>
<</if>>\
</th>\
<th style="width:50%">\
<<if $CurAR >= $MaxAR and $locked is false or $sexpoint == 0>>\
<video src="content/peoples/chanel/livingroom/mcum.mp4" autoplay loop></video>
<<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $mcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<elseif $CurOG >= $MaxOG>>\
<video src="content/peoples/chanel/livingroom/mcumed.mp4" autoplay loop></video>
<<elseif $sexpoint == 1>>\
<video src="content/peoples/chanel/livingroom/mkiss.mp4" autoplay loop></video>
<<elseif $sexpoint == 2>>\
<video src="content/peoples/chanel/livingroom/mghandjob.mp4" autoplay loop></video>
<<elseif $sexpoint == 3>>\
<video src="content/peoples/chanel/livingroom/mrhandjob.mp4" autoplay loop></video>
<<elseif $sexpoint == 4>>\
<video src="content/peoples/chanel/livingroom/mlickcock.mp4" autoplay loop></video>
<<elseif $sexpoint == 5>>\
<video src="content/peoples/chanel/livingroom/mgblowjob.mp4" autoplay loop></video>
<<elseif $sexpoint == 6>>\
<video src="content/peoples/chanel/livingroom/mdeepthroat.mp4" autoplay loop></video>
<<elseif $sexpoint == 7>>\
<video src="content/peoples/chanel/livingroom/mrblowjob.mp4" autoplay loop></video>
<<elseif $sexpoint == 8>>\
<video src="content/peoples/chanel/livingroom/mfuck.mp4" autoplay loop></video>
<<elseif $sexpoint == 9>>\
<video src="content/peoples/chanel/livingroom/mfucked.mp4" autoplay loop></video>
<</if>>\
</th>\
</tr>\
</thead>\
</table>\
\
\
\
\
<span id="bar">\
<div align='center' style='color:#f0ffff;'>Chanel`s Orgasm Level</div>
<div id="horizontalorgasmbarbkg" class="hzbarbkg">\
<div id="horizontalorgasmbar" class="hzbar">\
</div>\
</div>\
<<script>>$(document).one(':passagerender', function (ev) {
Orgasm(State.variables.CurOG, State.variables.MaxOG, "horizontalorgasmbar", true, ev.content);
});<</script>>
</span>\
\
\
\
<<if $sexactions1 is true>>\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:33.3%"></th>
<th style="width:33.3%"></th>
<th style="width:33.3%"></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<button "Kiss her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 1>>\
<<tongueskill>>\
<<set $moves -= 1>>\
<<set $mkisscounter += 1>>\
<<set $rnd = 5 + (2 * $tonguelvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Lick her cock" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 4>>\
<<tongueskill>>\
<<set $moves -= 1>>\
<<set $mcocklickcounter += 1>>\
<<set $rnd = 5 + (2 * $tonguelvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<if $locked is true>>\
Your penis is locked
<<else>>\
<<button "Get sucked" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 7>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $mrblowjobcounter += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 12).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
<</if>>\
</td>\
</tr>\
<tr>\
<td>\
<<button "Give handjob" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 2>>\
<<handskill>>\
<<set $moves -= 1>>\
<<set $mghjcounter += 1>>\
<<set $rnd = 5 + (2 * $handlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Suck her cock" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 5>>\
<<blowjobskill>>\
<<set $moves -= 1>>\
<<set $mgblowjobcounter += 1>>\
<<set $rnd = 5 + (2 * $blowjoblvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<if $locked is true>>\
Your penis is locked
<<else>>\
<<button "Fuck her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 8>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $mganalcounter += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 12).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
<</if>>\
</td>\
</tr>\
<tr>\
<td>\
<<if $locked is true>>\
Your penis is locked
<<else>>\
<<button "Receive handjob" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 3>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $mrhjcounter += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 12).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
<</if>>\
</td>\
<td>\
<<button "Deepthroat her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 6>>\
<<blowjobskill>>\
<<set $moves -= 1>>\
<<set $mgdeeptcounter += 1>>\
<<set $rnd = 5 + (2 * $blowjoblvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Get fucked" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 9>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $mranalcounter += 1>>\
<<set $analsize += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
</tr>\
</tbody>\
</table>\
<</if>>\
<<if $sexactions2 is true>>\
<<speech "Chanel">>I didn't know you will be that quick. We still have a little time, I hope you will make the effort to make me cum.<</speech>>
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:33.3%"></th>
<th style="width:33.3%"></th>
<th style="width:33.3%"></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<button "Kiss her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 1>>\
<<tongueskill>>\
<<set $moves -= 1>>\
<<set $mkisscounter += 1>>\
<<set $rnd = 5 + (2 * $tonguelvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Lick her cock" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 4>>\
<<tongueskill>>\
<<set $moves -= 1>>\
<<set $mcocklickcounter += 1>>\
<<set $rnd = 5 + (2 * $tonguelvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Deepthroat her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 6>>\
<<blowjobskill>>\
<<set $moves -= 1>>\
<<set $mgdeeptcounter += 1>>\
<<set $rnd = 5 + (2 * $blowjoblvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
</tr>\
<tr>\
<td>\
<<button "Give handjob" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 2>>\
<<handskill>>\
<<set $moves -= 1>>\
<<set $mghjcounter += 1>>\
<<set $rnd = 5 + (2 * $handlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Suck her cock" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 5>>\
<<blowjobskill>>\
<<set $moves -= 1>>\
<<set $mgblowjobcounter += 1>>\
<<set $rnd = 5 + (2 * $blowjoblvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Get fucked" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 9>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $mranalcounter += 1>>\
<<set $analsize += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>\
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
</tr>\
</tbody>\
</table>\
<</if>>\
<<if $sexactions3 is true>>\
<<if $CurAR >= 50>>\
<<speech "Chanel">>I want you to cum in my mouth!<</speech>>
<<if $locked is true>>\
<div align='center'>Your penis is locked, you can not cum.</div>\
<<else>>\
<<button "Cum" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 0>>\
<<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<</button>>
<</if>>\
<<button "Leave" "Hallway Down">><<set $pdollsex to false>><<set $pdollcum to false>><<set $clroom1 to true>><</button>>
<<else>>\
<<speech "Chanel">>I really enjoyed it. I hope I will see you soon. Bye.<</speech>>
<<button "Leave" "Hallway Down">><<set $pdollsex to false>><<set $pdollcum to false>><<set $clroom1 to true>><</button>>
<</if>>\
<<set $CurOG = ($CurOG = 0).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>\
<<set $chanelrepo += 1>>\
<</if>>\
<<elseif $pgender is "shemale">>\
<div align="center"><b>Moves left: $moves</b></div>\
\
\
\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:50%">\
<<if $CurAR >= $MaxAR and $locked is false or $sexpoint == 0>>\
<video src="content/pov/acum2.mp4" autoplay loop></video>
<<elseif $CurOG >= $MaxOG>>\
<video src="content/pov/bcum4.mp4" autoplay loop></video>
<<elseif $sexpoint == 1>>\
<video @src="'content/pov/kiss' + random(1, 3) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 2>>\
<video @src="'content/pov/ghandjob' + random(1, 7) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 3>>\
<video @src="'content/pov/rhandjob' + random(1, 8) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 4>>\
<video src="content/pov/lickcock1.mp4" autoplay loop></video>
<<elseif $sexpoint == 5>>\
<video src="content/pov/gblowjob1.mp4" autoplay loop></video>
<<elseif $sexpoint == 6>>\
<video @src="'content/pov/deepthroat' + random(1, 2) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 7>>\
<video @src="'content/pov/rblowjob' + random(1, 10) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 8>>\
<video @src="'content/pov/fuck' + random(1, 11) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 9>>\
<video @src="'content/pov/fucked' + random(1, 3) + '.mp4'" autoplay loop></video>
<</if>>\
</th>\
<th style="width:50%">\
<<if $CurAR >= $MaxAR and $locked is false or $sexpoint == 0>>\
<video src="content/peoples/chanel/livingroom/scum.mp4" autoplay loop></video>
<<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $scumcounter += 1>>\
<<set $noorgasm = 0>>\
<<elseif $CurOG >= $MaxOG>>\
<video src="content/peoples/chanel/livingroom/scumed.mp4" autoplay loop></video>
<<elseif $sexpoint == 1>>\
<video src="content/peoples/chanel/livingroom/skiss.mp4" autoplay loop></video>
<<elseif $sexpoint == 2>>\
<video src="content/peoples/chanel/livingroom/sghandjob.mp4" autoplay loop></video>
<<elseif $sexpoint == 3>>\
<video src="content/peoples/chanel/livingroom/srhandjob.mp4" autoplay loop></video>
<<elseif $sexpoint == 4>>\
<video src="content/peoples/chanel/livingroom/slickcock.mp4" autoplay loop></video>
<<elseif $sexpoint == 5>>\
<video src="content/peoples/chanel/livingroom/sgblowjob.mp4" autoplay loop></video>
<<elseif $sexpoint == 6>>\
<video src="content/peoples/chanel/livingroom/sdeepthroat.mp4" autoplay loop></video>
<<elseif $sexpoint == 7>>\
<video src="content/peoples/chanel/livingroom/srblowjob.mp4" autoplay loop></video>
<<elseif $sexpoint == 8>>\
<video src="content/peoples/chanel/livingroom/sfuck.mp4" autoplay loop></video>
<<elseif $sexpoint == 9>>\
<video src="content/peoples/chanel/livingroom/sfucked.mp4" autoplay loop></video>
<</if>>\
</th>\
</tr>\
</thead>\
</table>\
\
\
\
\
<span id="bar">\
<div align='center' style='color:#f0ffff;'>Chanel`s Orgasm Level</div>
<div id="horizontalorgasmbarbkg" class="hzbarbkg">\
<div id="horizontalorgasmbar" class="hzbar">\
</div>\
</div>\
<<script>>$(document).one(':passagerender', function (ev) {
Orgasm(State.variables.CurOG, State.variables.MaxOG, "horizontalorgasmbar", true, ev.content);
});<</script>>
</span>\
\
\
\
<<if $sexactions1 is true>>\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:33.3%"></th>
<th style="width:33.3%"></th>
<th style="width:33.3%"></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<button "Kiss her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 1>>\
<<tongueskill>>\
<<set $moves -= 1>>\
<<set $skisscounter += 1>>\
<<set $rnd = 5 + (2 * $tonguelvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Lick her cock" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 4>>\
<<tongueskill>>\
<<set $moves -= 1>>\
<<set $scocklickcounter += 1>>\
<<set $rnd = 5 + (2 * $tonguelvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<if $locked is true>>\
Your penis is locked
<<else>>\
<<button "Get sucked" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 7>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $srblowjobcounter += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 12).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
<</if>>\
</td>\
</tr>\
<tr>\
<td>\
<<button "Give handjob" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 2>>\
<<handskill>>\
<<set $moves -= 1>>\
<<set $sghjcounter += 1>>\
<<set $rnd = 5 + (2 * $handlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Suck her cock" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 5>>\
<<blowjobskill>>\
<<set $moves -= 1>>\
<<set $sgblowjobcounter += 1>>\
<<set $rnd = 5 + (2 * $blowjoblvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<if $locked is true>>\
Your penis is locked
<<else>>\
<<button "Fuck her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 8>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $sganalcounter += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 12).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
<</if>>\
</td>\
</tr>\
<tr>\
<td>\
<<if $locked is true>>\
Your penis is locked
<<else>>\
<<button "Receive handjob" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 3>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $srhjcounter += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 12).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
<</if>>\
</td>\
<td>\
<<button "Deepthroat her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 6>>\
<<blowjobskill>>\
<<set $moves -= 1>>\
<<set $sgdeeptcounter += 1>>\
<<set $rnd = 5 + (2 * $blowjoblvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Get fucked" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 9>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $sranalcounter += 1>>\
<<set $analsize += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
</tr>\
</tbody>\
</table>\
<</if>>\
<<if $sexactions2 is true>>\
<<speech "Chanel">>I didn't know you will be that quick. We still have a little time, I hope you will make the effort to make me cum.<</speech>>
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:33.3%"></th>
<th style="width:33.3%"></th>
<th style="width:33.3%"></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<button "Kiss her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 1>>\
<<tongueskill>>\
<<set $moves -= 1>>\
<<set $skisscounter += 1>>\
<<set $rnd = 5 + (2 * $tonguelvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Lick her cock" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 4>>\
<<tongueskill>>\
<<set $moves -= 1>>\
<<set $scocklickcounter += 1>>\
<<set $rnd = 5 + (2 * $tonguelvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Deepthroat her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 6>>\
<<blowjobskill>>\
<<set $moves -= 1>>\
<<set $sgdeeptcounter += 1>>\
<<set $rnd = 5 + (2 * $blowjoblvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
</tr>\
<tr>\
<td>\
<<button "Give handjob" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 2>>\
<<handskill>>\
<<set $moves -= 1>>\
<<set $sghjcounter += 1>>\
<<set $rnd = 5 + (2 * $handlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Suck her cock" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 5>>\
<<blowjobskill>>\
<<set $moves -= 1>>\
<<set $sgblowjobcounter += 1>>\
<<set $rnd = 5 + (2 * $blowjoblvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Get fucked" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 9>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $sranalcounter += 1>>\
<<set $analsize += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>\
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
</tr>\
</tbody>\
</table>\
<</if>>\
<<if $sexactions3 is true>>\
<<if $CurAR >= 50>>\
<<speech "Chanel">>I want you to cum in my mouth!<</speech>>
<<if $locked is true>>\
<div align='center'>Your penis is locked, you can not cum.</div>\
<<else>>\
<<button "Cum" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 0>>\
<<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<</button>>
<</if>>\
<<button "Leave" "Hallway Down">><<set $pdollsex to false>><<set $pdollcum to false>><<set $clroom1 to true>><</button>>
<<else>>\
<<speech "Chanel">>I really enjoyed it. I hope I will see you soon. Bye.<</speech>>
<<button "Leave" "Hallway Down">><<set $pdollsex to false>><<set $pdollcum to false>><<set $clroom1 to true>><</button>>
<</if>>\
<<set $CurOG = ($CurOG = 0).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>\
<<set $chanelrepo += 1>>\
<</if>>\
<<elseif $pgender is "female">>\
<div align="center"><b>Moves left: $moves</b></div>\
\
\
\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:50%">\
<<if $CurAR >= $MaxAR and $locked is false or $sexpoint == 0>>\
<video src="content/pov/fcum1.mp4" autoplay loop></video>
<<elseif $CurOG >= $MaxOG>>\
<video @src="'content/pov/ccum' + random(1, 2) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 1>>\
<video @src="'content/pov/kiss' + random(1, 3) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 2>>\
<video @src="'content/pov/ghandjob' + random(1, 7) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 3>>\
<video src="content/pov/fingered1.mp4" autoplay loop></video>
<<elseif $sexpoint == 4>>\
<video src="content/pov/lickcock1.mp4" autoplay loop></video>
<<elseif $sexpoint == 5>>\
<video src="content/pov/gblowjob1.mp4" autoplay loop></video>
<<elseif $sexpoint == 6>>\
<video @src="'content/pov/deepthroat' + random(1, 2) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 7>>\
<video @src="'content/pov/licked' + random(1, 2) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 8>>\
<video @src="'content/pov/pfucked' + random(1, 9) + '.mp4'" autoplay loop></video>
<<elseif $sexpoint == 9>>\
<video src="content/pov/pfucked8.mp4" autoplay loop></video>
<</if>>\
</th>\
<th style="width:50%">\
<<if $CurAR >= $MaxAR and $locked is false or $sexpoint == 0>>\
<video src="content/peoples/chanel/livingroom/fcum.mp4" autoplay loop></video>
<<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $fcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<elseif $CurOG >= $MaxOG>>\
<video src="content/peoples/chanel/livingroom/fcumed.mp4" autoplay loop></video>
<<elseif $sexpoint == 1>>\
<video src="content/peoples/chanel/livingroom/fkiss.mp4" autoplay loop></video>
<<elseif $sexpoint == 2>>\
<video src="content/peoples/chanel/livingroom/fghandjob.mp4" autoplay loop></video>
<<elseif $sexpoint == 3>>\
<video src="content/peoples/chanel/livingroom/frhandjob.mp4" autoplay loop></video>
<<elseif $sexpoint == 4>>\
<video src="content/peoples/chanel/livingroom/flickcock.mp4" autoplay loop></video>
<<elseif $sexpoint == 5>>\
<video src="content/peoples/chanel/livingroom/fgblowjob.mp4" autoplay loop></video>
<<elseif $sexpoint == 6>>\
<video src="content/peoples/chanel/livingroom/fdeepthroat.mp4" autoplay loop></video>
<<elseif $sexpoint == 7>>\
<video src="content/peoples/chanel/livingroom/frblowjob.mp4" autoplay loop></video>
<<elseif $sexpoint == 8>>\
<video src="content/peoples/chanel/livingroom/fpfucked.mp4" autoplay loop></video>
<<elseif $sexpoint == 9>>\
<video src="content/peoples/chanel/livingroom/fafucked.mp4" autoplay loop></video>
<</if>>\
</th>\
</tr>\
</thead>\
</table>\
\
\
\
\
<span id="bar">\
<div align='center' style='color:#f0ffff;'>Chanel`s Orgasm Level</div>
<div id="horizontalorgasmbarbkg" class="hzbarbkg">\
<div id="horizontalorgasmbar" class="hzbar">\
</div>\
</div>\
<<script>>$(document).one(':passagerender', function (ev) {
Orgasm(State.variables.CurOG, State.variables.MaxOG, "horizontalorgasmbar", true, ev.content);
});<</script>>
</span>\
\
\
\
<<if $sexactions1 is true>>\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:33.3%"></th>
<th style="width:33.3%"></th>
<th style="width:33.3%"></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<button "Kiss her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 1>>\
<<tongueskill>>\
<<set $moves -= 1>>\
<<set $fkisscounter += 1>>\
<<set $rnd = 5 + (2 * $tonguelvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Lick her cock" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 4>>\
<<tongueskill>>\
<<set $moves -= 1>>\
<<set $fcocklickcounter += 1>>\
<<set $rnd = 5 + (2 * $tonguelvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<if $locked is true>>\
Your pussy is locked
<<else>>\
<<button "Get licked" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 7>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $frpussylickcounter += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 12).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
<</if>>\
</td>\
</tr>\
<tr>\
<td>\
<<button "Give handjob" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 2>>\
<<handskill>>\
<<set $moves -= 1>>\
<<set $fghjcounter += 1>>\
<<set $rnd = 5 + (2 * $handlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Suck her cock" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 5>>\
<<blowjobskill>>\
<<set $moves -= 1>>\
<<set $fgblowjobcounter += 1>>\
<<set $rnd = 5 + (2 * $blowjoblvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<if $locked is true>>\
Your pussy is locked
<<else>>\
<<button "Get pussy fucked" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 8>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $frpussyfuckcounter += 1>>\
<<set $pussysize += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 12).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
<</if>>\
</td>\
</tr>\
<tr>\
<td>\
<<if $locked is true>>\
Your pussy is locked
<<else>>\
<<button "Receive fingering" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 3>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $frhjcounter += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 12).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
<</if>>\
</td>\
<td>\
<<button "Deepthroat her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 6>>\
<<blowjobskill>>\
<<set $moves -= 1>>\
<<set $fgdeeptcounter += 1>>\
<<set $rnd = 5 + (2 * $blowjoblvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Get anal fucked" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 9>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $franalcounter += 1>>\
<<set $analsize += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
</tr>\
</tbody>\
</table>\
<</if>>\
<<if $sexactions2 is true>>\
<<speech "Chanel">>I didn't know you will be that quick. We still have a little time, I hope you will make the effort to make me cum.<</speech>>
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:33.3%"></th>
<th style="width:33.3%"></th>
<th style="width:33.3%"></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td>\
<<button "Kiss her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 1>>\
<<tongueskill>>\
<<set $moves -= 1>>\
<<set $fkisscounter += 1>>\
<<set $rnd = 5 + (2 * $tonguelvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Lick her cock" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 4>>\
<<tongueskill>>\
<<set $moves -= 1>>\
<<set $fcocklickcounter += 1>>\
<<set $rnd = 5 + (2 * $tonguelvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<if $locked is true>>\
Your pussy is locked
<<else>>\
<<button "Get pussy fucked" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 8>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $frpussyfuckcounter += 1>>\
<<set $pussysize += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 12).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
<</if>>\
</td>\
</tr>\
<tr>\
<td>\
<<button "Give handjob" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 2>>\
<<handskill>>\
<<set $moves -= 1>>\
<<set $fghjcounter += 1>>\
<<set $rnd = 5 + (2 * $handlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Suck her cock" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 5>>\
<<blowjobskill>>\
<<set $moves -= 1>>\
<<set $fgblowjobcounter += 1>>\
<<set $rnd = 5 + (2 * $blowjoblvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
<<button "Get anal fucked" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 9>>\
<<sexskill>>\
<<set $moves -= 1>>\
<<set $franalcounter += 1>>\
<<set $analsize += 1>>\
<<set $rnd = 5 + (2 * $sexlvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR and $locked is false>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
</tr>\
<tr>\
<td>\
</td>\
<td>\
<<button "Deepthroat her" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 6>>\
<<blowjobskill>>\
<<set $moves -= 1>>\
<<set $sgdeeptcounter += 1>>\
<<set $rnd = 5 + (2 * $blowjoblvl)>>\
<<set $CurOG = ($CurOG + $rnd).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>
<<set $CurAR = ($CurAR + 8).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<if $CurAR >= $MaxAR>>\
<<set $sexactions2 to true>>\
<<set $sexactions1 to false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<elseif $CurOG >= $MaxOG>>\
<<set $sexactions3 to true>>\
<<set $sexactions2 to false>>\
<<set $sexactions1 to false>>\
<<else>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<</if>>\
<</button>>\
</td>\
<td>\
</td>\
</tr>\
</tbody>\
</table>\
<</if>>\
<<if $sexactions3 is true>>\
<<if $CurAR >= 50>>\
<<speech "Chanel">>I want you to cum in my mouth!<</speech>>
<<if $locked is true>>\
<div align='center'>Your pussy is locked, you can not cum.</div>\
<<else>>\
<<button "Cum" "Event: Chanel Living Room 3">>\
<<set $sexpoint = 0>>\
<<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<</button>>
<</if>>\
<<button "Leave" "Hallway Down">><<set $pdollsex to false>><<set $pdollcum to false>><<set $clroom1 to true>><</button>>
<<else>>\
<<speech "Chanel">>I really enjoyed it. I hope I will see you soon. Bye.<</speech>>
<<button "Leave" "Hallway Down">><<set $pdollsex to false>><<set $pdollcum to false>><<set $clroom1 to true>><</button>>
<</if>>\
<<set $CurOG = ($CurOG = 0).clamp(0, $MaxOG)>><<run Orgasm($CurOG, $MaxOG, "horizontalorgasmbar", true)>>\
<<set $chanelrepo += 1>>\
<</if>>\
<</if>>\
<</if>>\
<<if $pgender is "female">>
<<if $scene == 1>>\
<div align='center'>\
Pulling you to her room, she closes the door and orders you to strip. Once she sees you obeying her instructions, she begins to remove her clothes as well. Wearing a pretty set of seafoam green underwear, she kneels down on the futon and orders you over. You sit down behind her wearing just your bra and panties.
</div>\
<<speech "Maid" "Natalie">>I’ve seen the way you watch everyone. Have you slept with everyone in the fucking house? You are such a whore! That’s what you are, isn’t it? Just a dirty little whore. How does my ass look? Does my ass turn you on? Is it making you horny? Are you getting wet watching it move around? Show me how much you love it. Kiss my ass! That’s it. Oh, yes, your lips feel so good. Oh, you like my butt plug? I usually have one in you know. I love the feeling of having my ass filled all the time. I should make you wear one. I bet you would love just as much. Now, kiss my balls. Worship them. Oh, good girl. That feels nice. That’s making me hard.<</speech>>
<div align='center'>\
<video src="content/peoples/maid/punish/1.mp4" autoplay loop></video>
Natalie spins around laying on her back and spreads her legs wide giving you a better look at her dick as it stiffens. Leaning forward, she grabs the back of your head and pulls you forward towards her cock. Wordlessly, you open your mouth and suck her dick between your lips. As you suck on her, you feel the blood rushing in engorging her and filling your mouth. She moans as you pick up speed now bobbing up and down on her erection shaft. She removes her bra and massages her breast and pinches her nipple.
<video src="content/peoples/maid/punish/2.mp4" autoplay loop></video>
</div>\
<<speech "Maid" "Natalie">>Oh fuck, you are good at that! That feels so fucking good. Roll over onto your back. I’m going to ride your face. Here, let me help you with your bra. There we go. Oh, you have such pretty titties. Alright, open wide now. Here I come.<</speech>>
<div align='center'>\
She lays over the top of you getting into a 69 position with her dick going down your throat. You wrap your hands around her thighs to hang on as she begins to fuck your mouth. You groan as it pushes rapidly in and out from between your wet lips. You can’t help but moan feeling totally helpless and at her mercy.
<video src="content/peoples/maid/punish/3.mp4" autoplay loop></video>
</div>\
<<button "Continue" "Natalie punishment">><<set $scene = 2>><</button>>
<<addarousal 100>>\
<<takeenergy 20>>\
<<tongueskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<set $pdollsex to true>>\
\
\
\
<<elseif $scene == 2>>\
<div align='center'>\
She finally withdraws giving you a chance to catch your breath. When you look up, she has moved between your legs and is stroking her wet cock getting it ready to take occupancy of a new hole. With little preamble, she plunges right into your wet gash and take her to the hilt in her first thrust. Without a pause, she starts into a steady rhythm driving in and out. She feels so good in your pussy!
<video src="content/peoples/maid/punish/4.mp4" autoplay loop></video>
</div>\
<<speech "Maid" "Natalie">>I’m going to get you off and then you are going to get me off. Got it? Good girl. I want a taste of this pretty pussy. I bet it tastes so good now that I’ve got you all worked up now. Maybe I will even get a taste of my precum mixed in. There you go, just spread your legs wide.<</speech>>
<div align='center'>\
She kneels between your legs as her tongue explores your folds and then focuses her attention on your chubby little clit. Your moans quickly turn to cries as her skilled oral abilities drive you to climax.
<video src="content/peoples/maid/punish/5.mp4" autoplay loop></video>
Giving you a moment to recover, she climbs up and sits on the back of the futon beckoning you closer between her legs and her dick as it sways hypnotically between them.
</div>\
<<speech "Maid" "Natalie">>Okay, it’s my turn. I know you are a good little cock sucker. Get me off. I need it so bad!<</speech>>
<div align='center'>\
You use all your developed skills using both your hands and mouth to worship her cock. As she warned you, she was already close and she pushes your hands away to finish off on her own as she sprays her cum across your lips before you know it’s even coming.
<video src="content/peoples/maid/punish/6.mp4" autoplay loop></video>
</div>\
<<speech "Maid" "Natalie">>Fuck, oh that felt good. I needed that. Now I know you are a kinky slut. I know you are going to spy on Chanel, me, and everyone else in this house. Just try to be a little more discrete? If I catch you again, I won’t be so easy on you. Now, go. Get out of my room.<</speech>>
<<button "Leave" "Hallway Down">><<set $pdollsex to false>><<set $scene = 1>><</button>>
<<zeroarousal>>\
<<sexskill>>\
<<timed 300ms>>\
<<willingness>>\
<</timed>>\
<<timed 600ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $fcocklickcounter += 1>>\
<<set $fgblowjobcounter += 1>>\
<<set $fgdeeptcounter += 1>>\
<<set $frpussyfuckcounter += 1>>\
<<set $frpussylickcounter += 1>>\
<<set $fcumswallowcounter += 1>>\
<</if>>\
\
\
\
\
\
<<elseif $pgender is "male">>
<<if $scene == 1>>\
<div align='center'>\
Pulling you to her room, she closes the door and orders you to strip. As you obediently remove your clothes, she slides her dress down her legs and sits on the bed.
</div>\
<<speech "Maid" "Natalie">>Kiss my feet, you worm. NO! I didn’t say lick them. Do exactly as I say. Just kiss them. That’s a good boy, much better.<</speech>>
<div align='center'>\
She lifts her bum up and slides her panties down her legs. Once they reach the foot you are worshipping, you take them the rest of the way off and stick your nose in them taking in a deep breath, smelling her sexy aroma. Her fingers wordlessly curl into your hair and pull you back to her feet and you take the unspoken command to return to your new idol. Apparently, her other foot feels neglected as she pulls you to her other foot by your hair where you commence giving it the same loving treatment as the first. As you are sucking on her big toe, she pushed down on the back of your head shoving it deeper into your mouth as she tries to gag you on the digit. She whispers dirty words encouraging you on as she degrades you and you moan loader for it. She begins to stroke her cock which has become rather hard between her upturned thighs.
<video src="content/peoples/maid/punish/7.mp4" autoplay loop></video>
Now it’s time to worship her sex. Pulling you once more by the hair, she straightens her legs, pushing up her dick for you as are brought closer to admire her dick. You open your mouth and take her in as her hand on the back of your neck pushes on down on her. Not needing any further encouragement, your head begins to bob up and down. Your cheeks suck in as you take her deep. She is not nearly as big as Mariana but her cock still feels so good in your mouth.
<video src="content/peoples/maid/punish/8.mp4" autoplay loop></video>
She decides to take a more active role and gets to her knees as she pulls off her top and removes her bra, tossing them to the floor. Grabbing the back of your head once more, she begins to fuck your face. You blink rapidly in shock at the forcefulness of her thrusts. Your nose is mashed against her pelvis and you blink back tears as your nose begins to throb from the repeated impact.
<video src="content/peoples/maid/punish/9.mp4" autoplay loop></video>
Looking down at your abused face, she takes some pity on you and releases your head, spinning around. You know what she wants without her having to order you. You move forward and kiss her ass. She spreads her cheeks and you kiss along her crack and over her crinkled pucker. You lick up and down the crack and she pulls you in tight forcing your tongue against her hole. She pushes her dick back between her legs and lowers her upper body to the bed as you go back to sucking her dick from the back this time.
<video src="content/peoples/maid/punish/10.mp4" autoplay loop></video>
</div>\
<<button "Continue" "Natalie punishment">><<set $scene = 2>><</button>>
<<addarousal 100>>\
<<takeenergy 20>>\
<<tongueskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<set $pdollsex to true>>\
\
\
\
<<elseif $scene == 2>>\
<<speech "Maid" "Natalie">>You are enjoying yourself way more than you should be, you fucking pervert! This is supposed to be a punishment. Bend over, you slut! Show me that ass hole!<</speech>>
<div align='center'>\
Presenting yourself to her, you are hoping that she is going to mount your ass but instead, she begins to spank you. You help in surprise as the first blow lands and it is quickly followed by a second and a third. They fly faster than you can count now and the sharp sound of her hand striking your fleshy posterior is loud in your ears, not even noticing that you are moaning as your cheeks begin to turn cherry red. Becoming more frustrated at your seeming bottomless depravity and ability to enjoy her punishment, she grabs your balls and squeezes them as she continues to spank you. That was finally enough to humble you and your moans turn to her like more towards those of one in pain. She is really getting off on this! It looks like her cock is even harder than when you were sucking it before.
<video src="content/peoples/maid/punish/11.mp4" autoplay loop></video>
She moves behind you and finally mounts you. She pushes in with one forceful thrust, sinking in to the hilt.
</div>\
<<speech "Maid" "Natalie">>This is what you wanted, isn’t it? Does my cock feel good? Hmmm, you butt slut? You’ve been craving to have this hole filled, haven’t you? Mistress Natalie’s cock is what you needed. Tell me! Tell me how much you’ve wanted this! Thank your Mistress! Good boy. That’s a good boy. Take Mistress Natalie’s cock.<</speech>>
<div align='center'>\
She bends you over more, pushing your chest into the mattress as she climbs up higher so she can use more of her weight to push down with each thrust. You can feel her getting pretty deep now and you moan louder in response. Fuck, that is starting to hurt! With a wicked grin, she rolls you over to your back and taking hold of your cock, pulls you back to her. She lines up and is back inside you once more. How is your cock still this hard when she is abusing you like this? Maybe you enjoy the humiliation and pain more than you realized! She uses your dick like a handle to pull you back as she thrusts forward and now, she can see the look of pain mixed with the pleasure she is giving you on your face. Your moaning gets louder and louder and apparently has reached the point where Natalie is getting concerned so she takes her discarded panties and shoves them in your mouth. She holds her hand over your stuffed mouth and fucks you harder yet. Your ass is taking a real beating! You are going to feel this tomorrow, that’s for sure. She removes her hand, taking the panties with it.
<video src="content/peoples/maid/punish/12.mp4" autoplay loop></video>
</div>\
<<speech "Maid" "Natalie">>Are you going to keep it down or do I need to keep you gaged? Good boy. Now take it like a good little bitch boy! Yes, yes, yes, YES!<</speech>>
<div align='center'>\
She seems to be tiring and rolls to her back pulling to with back with her and forcing your mouth back down on her cock as her legs wrap around you while she catches her breath. Not satisfied with the position, she rolls you to your back once more and sits on your face, pressing your nose into her ass. She grinds down against you and then shifts slightly to force her cock down your throat again. Leaning forward, she gets into a 69 position and begins to suck on your cock. She doesn’t give it much attention though once it is in her mouth. She seems more interested in what your mouth is doing to hers.
<video src="content/peoples/maid/punish/13.mp4" autoplay loop></video>
She humps once more against your abused face and you can sense that she must be getting close now based on the way her thighs begin to tremble. Indeed, a few seconds later, you feel her shaft begin to pulse and her cum shoots down your throat.
<video src="content/peoples/maid/punish/14.mp4" autoplay loop></video>
</div>\
<<speech "Maid" "Natalie">>Fuck, that felt good. Do you want to cum still, you pathetic worm? Stroke it then. Shoot your cum for Mistress Natalie!<</speech>>
<div align='center'>\
You are all too eager to obey and less than a minute later, you cum across your stomach.
<video src="content/peoples/maid/punish/15.mp4" autoplay loop></video>
</div>\
<<speech "Maid" "Natalie">>Such an eager butt slut! So obedient. I know you are going to spy on Chanel, me, and everyone else in this house. Just try to be a little more discrete next time. If I catch you again, I won’t be so easy on you. Now, go. Get the fuck out of my room.<</speech>>
<<button "Leave" "Hallway Down">><<set $pdollsex to false>><<set $scene = 1>><</button>>
<<zeroarousal>>\
<<sexskill>>\
<<timed 300ms>>\
<<willingness>>\
<</timed>>\
<<timed 600ms>>\
<<cumplayskill>>\
<</timed>>\
<</if>>\
\
\
\
\
\
<<else>>\
<<if $scene == 1>>\
<div align='center'>\
Pulling you to her room, she closes the door and pulls you to the futon down next to her.
</div>\
<<speech "Maid" "Natalie">>I could see that watching her got you a bit hot and bothered. Watching you get excited got me excited too.<</speech>>
<div align='center'>\
Natalie leans over and kisses you as her hand reaches up to hold your neck. It quickly makes its way down to your top and she pulls it down exposing your breast and nipple which she pinches lightly. You moan into her mouth in response as your nipples are still so hard from earlier. Tugging your top down a little further, she leans down and sucks on your nipple, pulling it into her mouth where she lashes at it with her tongue. She gives your other nipple the same treatment, driving you crazy.
<video src="content/peoples/maid/punish/16.mp4" autoplay loop></video>
You push her back and tug down her top as well to give her a taste of her own medicine. She squirms on the futon letting out soft moans in between ragged breaths. Your hands continue to feel her body up and unbutton her top revealing a tiny sports bra beneath. Just then, you notice the bugle her covered cock is making in her tiny shorts and you rub at it. Oh, it feels so good. You can’t wait to get your hands on it and unfasten the front of her shorts to free it. With some effort, you pull her shorts off and pull down her matching panties to reach your goal. As you take it into your mouth, you feel it continue to engorge, getting harder with each bob of your mouth.
<video src="content/peoples/maid/punish/17.mp4" autoplay loop></video>
As you continue to suck her, she slowly works to remove your clothes. First your top and then your bottoms. Finally down to just your panties, she kisses you deeply as her hand reaches in to fish out your cock. You groan as it gets harder in her hand as her tongue is slipping between your lips. She lands down and gives you a master class on how to properly suck cock. Laying herself down between your legs, she drives you crazy by getting you excited and then slowing down prolonging the pleasure as she senses you getting too close to the edge. She bends you over to present your ass to her but instead of mounting you as you expected, she pulls your cock backward to continue sucking you again. She is keeping you guessing. It is starting to dawn on you that she is torturing you with pleasure while denying you release. She somehow has a 6th sense of when you are nearing the point of no return and just holding you there without ever going past.
<video src="content/peoples/maid/punish/18.mp4" autoplay loop></video>
</div>\
<<button "Continue" "Natalie punishment">><<set $scene = 2>><</button>>
<<addarousal 100>>\
<<takeenergy 20>>\
<<tongueskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<set $pdollsex to true>>\
\
\
\
<<elseif $scene == 2>>\
<div align='center'>\
She maddeningly stops again just as you think she might let you cum and kneels behind you, sliding inside your ass with one fluent stroke as you take her to the hilt. Holding your hips, she fucks your eager ass, stimulating your prostate without giving your cock any stimulation. She is going harder and harder and you can feel your prostate sending wave after wave of pleasure with each stroke. Is she going to make you cum without touching your dick? You want to touch yourself so bad. Just as you are about to get your fingers around your cock, she stops and pulls out. FUCK, you were so close!
<video src="content/peoples/maid/punish/19.mp4" autoplay loop></video>
She pulls you up from the futon and pulls you over to the bed, pushing your body down over the mattress with your feet still on the ground and cock against the mattress with nowhere for your hands to go to touch yourself. It seems she won’t be letting you do anything to affect her control of your orgasm just yet. Your cock is securely trapped beneath you, her cock slides back in and she is working your ass over once more. Your moans are getting louder and louder and you can feel her thrusts getting harder and more insistent. She is clearly enjoying what she is doing to you.
<video src="content/peoples/maid/punish/20.mp4" autoplay loop></video>
</div>\
<<speech "Maid" "Natalie">>Flip over, I want to watch you while I fuck you. You are making the most pathetic noises. You are such an anal whore. So eager for cock in your ass! Here we go, Take my cock!<</speech>>
<div align='center'>\
She pushes your legs up so your knees are up by your chin and she takes a firm hold of your cock making sure it isn’t getting any extra stimulation and using it as a handle to fuck you. Looking down at your pitiful face, she decides to finally give you mercy and gives you a few strokes before deciding to let you jerk yourself off. As she continues to plunder your booty, your hand blurs over your cock, finally pushing yourself over the edge and cumming all over your stomach. Your head falls back moaning and gasping for breath. She gives your ass a few more strokes before pulling out and jerking herself over you and quickly adds her cum to yours on your tummy. She leans in and kisses you softly rubbing your softening cocks together and smearing your mingled cum between your two stomachs. You feel so grateful to her for finally letting you cum and you wrap your legs around her, locking ankles behind her back as you continue to kiss.
<video src="content/peoples/maid/punish/21.mp4" autoplay loop></video>
</div>\
<<speech "Maid" "Natalie">>Fuck, oh that felt good. I needed that. Now I know you are a kinky slut. I know you are going to spy on Chanel, me, and everyone else in this house. Just try to be a little more discrete? If I catch you again, I won’t be so easy on you. Now, go clean yourself up.<</speech>>
<<button "Leave" "Hallway Down">><<set $pdollsex to false>><<set $scene = 1>><</button>>
<<zeroarousal>>\
<<sexskill>>\
<<timed 300ms>>\
<<willingness>>\
<</timed>>\
<<timed 600ms>>\
<<cumplayskill>>\
<</timed>>\
<</if>>\
<</if>>\
<div align='center'>\
You peek inside the kitchen and you find Natalie riding a big horse cock dildo on the kitchen table.
</div>\
<video src="content/peoples/maid/1.mp4" style="width: 100%;" autoplay loop></video>
<<addmins 20>>\
<<addarousal 20>>\
<<button "Leave" "Hallway Down">><</button>>
<<if $natfemkit == 0>>\
<div align='center'>\
Before you get to the kitchen, you hear the clanging sounds raising your curiosity. As you walk around the corner, you see Natalie preparing something sweet looking.
</div>\
<img src="content/peoples/maid/2/1.jpg">
<<speech "player" "$fname">>Hi Natalie, what are you doing? Looks yummy.<</speech>>
<<speech "Maid" "Natalie">>Hey $fname, why don’t you come join me? My sweet tooth was talking to me. I’d love some company.<</speech>>
<<button "Join" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 1>>\
<div align='center'>\
You walk over and pick up the can of whipped cream and spray some on your finger and put on a sexy show of eating it off. She raises her eyebrows watching your display and gives your hand a gentle swat.
</div>\
<video src="content/peoples/maid/2/1.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 2>>\
<div align='center'>\
You pick up a sliced strawberry and dangle it in front of her mouth and she opens her mouth allowing you to feed it to her.
</div>\
<video src="content/peoples/maid/2/2.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 3>>\
<div align='center'>\
Feeding her the berry has caused a surge of power to rush through you as a tingle shoots down to your pussy where you begin to feel yourself dampen. Gripping Natalie’s waist, you slowly turn her to face the counter and reach down to pull up the skirt of her dress exposing her luscious creamy skin. You give her backside some appreciative rubs but it only makes you hunger for more. You take hold of her lacy panties and pull them down her thighs and give her plump ass a playful spank.
</div>\
<video src="content/peoples/maid/2/3.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 4>>\
<div align='center'>\
You see her dangling balls swinging between her legs and spin her around to face you again. Her cock is already half-hard and you get a sudden naughty thought seeing the can of whip cream behind her. You begin to reach for it and obviously, Natalie is on the same wavelength as you as she reaches for it and hands the can to you. With a happy grin, you spray a generous amount of cream from the base of her cock to the head.
</div>\
<video src="content/peoples/maid/2/4.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 5>>\
<div align='center'>\
Too yummy to resist, your head dives down taking the head and the whipped cream coving it into your eager mouth. You close your eyes savoring the delicious creamy taste mixed with the cold and hot texture of her creamy skin mixed with the daily confection. Out of instinct, your hand reaches up to stroke her cock forgetting that it is covered in the topping. You giggle at your momentary lapse in reason and lick the cream from your fingers getting it all over your face in the process. You shrug inwardly and your mouth descends back down on Natalie’s dick. She leans back against the counter taken by surprise by your sudden onslaught.
</div>\
<video src="content/peoples/maid/2/5.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<handskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<set $pdollsex to true>>\
<<set $fgblowjobcounter += 1>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 6>>\
<div align='center'>\
Natalie reaches for the can of cream again and spays another liberal coating across her cock. You are not certain if she is enjoying the contrast between your hot mouth and the cold cream or if it makes for an enjoyable lubrication for the blowjob. Either way, you treat it like a most delicious lube and proceed to polish her knob with your mouth.
</div>\
<video src="content/peoples/maid/2/6.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<handskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 7>>\
<div align='center'>\
Taking a step back, she reaches down to pull up her dress up over her head and lays back on the countertop with her hard dick raised to the air like a flag pole. You launch yourself at it again and as your mouth wraps around the shaft, you feel the back of her leg wrap around your back holding you against her. Watching you with a joyous expression, she whispers encouraging words as you devour her dick.
</div>\
<video src="content/peoples/maid/2/7.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<handskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 8>>\
<div align='center'>\
You look up between her breasts into her eyes feeling an ache in your pussy and stand up quickly doffing your clothes and climb atop her on the counter. You position her cock at your wet gash and between the remaining cream and your pussy juice, it slides into you easily allowing you to ride her reverse cowgirl. As you pound your pussy down, the whipped cream continues to spread across both of your bodies as they slap together.
</div>\
<video src="content/peoples/maid/2/8.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<sexskill>>\
<<set $pussysize += 1>>\
<<set $frpussyfuckcounter += 1>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 9>>\
<div align='center'>\
Time ceases to exist as all that matters is Natalie’s dick in your quim. You switch between several different positions on the counter and the rivulets of white cream mingled with your joined juices makes for a very potent exhibition. All you know is that her cock feels so good and so right deep inside you. You need more dick in your life!
</div>\
<video src="content/peoples/maid/2/9.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<sexskill>>\
<<set $pussysize += 1>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 10>>\
<<speech "Maid" "Natalie">>Rollover to your hands and knees $fname. I want a taste of cream of ass now. Stick it up high in the air for me. Yeah, just like that!<</speech>>
<div align='center'>\
Natalie takes the can of cream and sprays your ass making you jump slightly as the cold wet dessert covers your crack and mounds out obscenely. It doesn’t stay cold for long as Natalie buries her face in it and you feel her hot tongue swabbing your sensitive hole. Her tongue swabs up and down the crack and across the cheeks lapping at the cream and pushing it up into your ass.
</div>\
<video src="content/peoples/maid/2/10.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<sexskill>>\
<<set $analsize += 1>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 11>>\
<<speech "Maid" "Natalie">>You look so delicious with your ass covered in cream. Time to put the cherry on top!<</speech>>
<div align='center'>\
She takes one last lick and then crouching behind you, pushes her sticky dick in. The cream makes surprising good lubrication and she slides in pretty easily. Grasping your hips on both sides, she uses her leverage to go to town on your thick ass.
</div>\
<video src="content/peoples/maid/2/11.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<set $analsize += 1>>\
<<sexskill>>\
<<set $franalcounter += 1>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 12>>\
<div align='center'>\
It feels so good and she switches between different positions as she is clearly enjoying it as well.
</div>\
<video src="content/peoples/maid/2/12.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<sexskill>>\
<<set $analsize += 1>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 13>>\
<div align='center'>\
By this point, the whipped cream has been smeared all over the counter, your bodies, and into your hair. It all tastes so good. You lick her ass and slide a couple of fingers into her ass. You can tell that she is very close to the edge. You add two more fingers and Natalies moaning grows louder.
</div>\
<video src="content/peoples/maid/2/13.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<set $fasslickcounter += 1>>\
<<tongueskill>>\
<<timed 300ms>>\
<<handskill>>\
<</timed>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 14>>\
<div align='center'>\
She slips on a patch of cream and you turn her around sitting on her ass to give her more stability as you push your fingers back in pushing against her prostate while you furious beat her cock. Natalie's eyes roll back into her head and her eyelashes are pasted to her eyebrow giving her a comical expression. With a final groan, she erupts in your hands spraying her with her own brand of cream. She scoops up some of her load mingled with sweat and whipped cream and licks it. She looks over your shoulder and notices the clock on the wall.
</div>\
<video src="content/peoples/maid/2/14.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Maid" "Natalie">>Oh shit, is that the time? I was supposed to have finished the upstairs rooms by now. I need to go clean up and finish up. Sorry to cum and run $fname. I’ll make it up to you some time. Promise!<</speech>>
<<addarousal 10>>\
<<addmins 5>>\
<<handskill>>\
<<button "Continue" "Natalie kitchen female">><<set $natfemkit += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><</button>>
\
\
\
\
\
<<elseif $natfemkit == 15>>\
<div align='center'>\
She scoops up her clothes and hustles out of the room leaving you with a sticky but horny expression. You lay back on the counter and your fingers find their way to your sticky cunt. You feel around for your pleasure button and begin to strum it back and forth. Before long, you feel yourself squirting pussy juice across the counter to join all the other juices already spread across it.
</div>\
<video src="content/peoples/maid/2/15.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Once you catch your breath, you look around the room and see the huge mess the two of you have made and with a wicked grin on your face, head out of the room to go clean up as well knowing that Natalie will surely catch hell for the mess feeling somewhat avenged of being left in such a horny state after being abandoned.
</div>\
<<zeroarousal>>\
<<addmins 5>>\
<<set $natalierepo += 1>>\
<<set $fcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<willingness>>\
<<button "Leave" "Hallway Down">><<set $natfemkit = 0>><<set $pdollsex to false>><</button>>
<</if>>\
<div align='center'>\
<<if $natchakit1 == 0>>\
You see Natalie and Chanel together in the kitchen. Chanel is holding Natalie’s top up around her neck as she is sucking and licking at her nipples. Secretly watching them is giving you a thrill as you feel your own nipples tingling in jealousy.
<video src="content/peoples/maid/1/1.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Keep watching" "Chanel and Natalie kitchen 1">><<set $natchakit1 += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natchakit1 = 0>><</button>>
\
\
\
\
\
<<elseif $natchakit1 == 1>>\
As you continue to watch, Natalie sinks to her knees in front of Chanel and pulls her bottoms down exposing her glorious erect cock. You lick your lips as you watch wishing you could get a taste of her. Chanel leans back on the counter her breasts heaving under her half undone top as Natalie swallows her down.
<video src="content/peoples/maid/1/2.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Keep watching" "Chanel and Natalie kitchen 1">><<set $natchakit1 += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natchakit1 = 0>><</button>>
\
\
\
\
\
<<elseif $natchakit1 == 2>>\
You continue to watch as Chanel pulls free from Natalie and stips off her top leaving her only wearing socks and shoes showing off her creamy white skin. Natalie has a confused expression as Chanel guides her to lay down on her back with her head dangling down over the edge. The confusion doesn’t last long though as Chanel feeds Natalie her dick which has a straight shot through her mouth down her throat. Chanel is using Natalie like a blowjob toy fucking deep into her throat pipe. Chanel grips Natalie’s throat holding her in place while Natalie fondles and pinches her nipples. Natalie occasionally gags on the dock and Chanel finally releases her grip allowing Natalie to catch her breath.
<video src="content/peoples/maid/1/3.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Keep watching" "Chanel and Natalie kitchen 1">><<set $natchakit1 += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natchakit1 = 0>><</button>>
\
\
\
\
\
<<elseif $natchakit1 == 3>>\
Natalie hops off the counter and peels the top from Chanel’s head and pushes her down to the floor where they lay on each other’s clothing. Natalie spins around and feeds her dick to Chanel before laying over her well-formed body to gobble her employer's daughter’s dick. Feeling more and more aroused, your hand reaches down into your pants to fondle yourself as you continue to watch.
<video src="content/peoples/maid/1/4.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Keep watching" "Chanel and Natalie kitchen 1">><<set $natchakit1 += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natchakit1 = 0>><</button>>
\
\
\
\
\
<<elseif $natchakit1 == 4>>\
With hunger in her eyes, Natalie sits up and scoots down Chanel’s body and plunges her cock into her hungry hole. You watch them as they move between different positions chewing on your lower lip hungrily.
<video src="content/peoples/maid/1/5.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Keep watching" "Chanel and Natalie kitchen 1">><<set $natchakit1 += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natchakit1 = 0>><</button>>
\
\
\
\
\
<<elseif $natchakit1 == 5>>\
You can see that Chanel is building up to nut in Natalie but just before she cums, she pulls out and milks out her load all over Natalie’s back as if she were marking Natalie’s ass as her territory. Before the last drop falls, Natalie spins around and wraps her luscious lips around Chane’s spent cock. She sucks as if her life depended on getting every last drop of cum out of Chanel’s shaft.
<video src="content/peoples/maid/1/6.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Keep watching" "Chanel and Natalie kitchen 1">><<set $natchakit1 += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natchakit1 = 0>><</button>>
\
\
\
\
\
<<elseif $natchakit1 == 6>>\
Natalie is stroking her cock as she continues to suck but Chanel pulls out and spins around pressing her ass back into Natalie’s face. You get a quick glimpse of Natalie’s tongue from the side as she works it into Chanel’s asshole. Natalie’s fist pumped faster on her dick and soon enough, she explodes across the kitchen floor.
<video src="content/peoples/maid/1/7.mp4" style="width: 100%;" autoplay loop></video>
All worked up from the show, you walk back the way you came before they notice you.
<<addarousal 10>>\
<<addmins 5>>\
<<button "Leave" "Hallway Down">><<set $natchakit1 = 0>><</button>>
<</if>>\
</div>\
<<if $natchakit2 == 0>>\
<div align='center'>\
Your eyes go wide at what you see. Sitting on the top of the kitchen counter island is Chanel and Natalie slowly stroking their cocks and they are both staring right at you.
</div>\
<video src="content/peoples/maid/3/1.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Hey $fname, why don’t you come in and join us?<</speech>>
<<addarousal 10>>\
<<addmins 5>>\
<<button "Join" "Chanel and Natalie kitchen 2">><<set $natchakit2 += 1>><</button>>
<<button "Leave" "Hallway Down">><<set $natchakit2 = 0>><</button>>
\
\
\
\
\
<<elseif $natchakit2 == 1>>\
<div align='center'>\
Feeling somewhat ambushed, you blush as you walk the rest of the way into the room. Your eyes naturally gravitate towards Chanel’s beautiful dick mesmerized by how the head of it plays peek-a-boo with you going in and out of her closed fist. You feel your pants start to feel tight around your own growing member. You have tunnel vision as your feet take you to Chanel’s side where you bend at the waist to get a better look at her lady trouser snake. Chanel leans back on her hands giving you complete access. Your semi-hypnotic state brings you closer and closer until her cock fills your vision with the dark eye in the middle drawing you in. Before you have a chance to think, your lips are wrapped around the head of the subject of your desire and despite the fact that Chanel’s ass is firmly planted on the counter, you would swear that she was the one fucking your mouth and not the other way around.
</div>\
<video src="content/peoples/maid/3/2.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<blowjobskill>>\
<<set $mgblowjobcounter += 1>>\
<<set $pdollsex to true>>\
<<button "Continue" "Chanel and Natalie kitchen 2">><<set $natchakit2 += 1>><</button>>
\
\
\
\
\
<<elseif $natchakit2 == 2>>\
<div align='center'>\
This continues for a few minutes until you feel a hand on the back of your head drawing you to the side. Chanel’s tan shaft to Natalie’s milky hued sex. Natalie groans in appreciation as you bury her into the back of your throat. You feel her leg pull up onto the counter as she twists towards Chanel and you hear the two of them kissing above you.
</div>\
<video src="content/peoples/maid/3/3.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<blowjobskill>>\
<<set $mgblowjobcounter += 1>>\
<<button "Continue" "Chanel and Natalie kitchen 2">><<set $natchakit2 += 1>><</button>>
\
\
\
\
\
<<elseif $natchakit2 == 3>>\
<<speech "Maid" "Natalie">>I want some of his dick too. Help me pull him up onto the counter and let’s share his dick between us.<</speech>>
<div align='center'>\
You feel the two of them reach down and pull you up by your arms. Chanel hops off the counter and deftly reaches around you from behind to unfasten your pants and her breasts slide down you back as she pulls them halfway down your legs.
</div>\
<<speech "Chanel">>Hop up onto the counter $fname. We want some of what you have between your legs too.<</speech>>
<div align='center'>\
You try awkwardly to lift a leg up onto the counter but your jeans restrict your movement. You turn around to hop up ass-backward and Natalie kneels up pulling you up to your knees.
</div>\
<<speech "Maid" "Natalie">>Keep going. Stand all the way up for us.<</speech>>
<div align='center'>\
Nervously, you climb to your feet on the counter towering over the room and Natalie plunges down on your firm erection as Chanel hops back up next to her. Natalie pops off with a mixture of precum and saliva dripping down her chin giving Chanel an opening to dive in.
</div>\
<video src="content/peoples/maid/3/4.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<sexskill>>\
<<set $mrblowjobcounter += 1>>\
<<button "Continue" "Chanel and Natalie kitchen 2">><<set $natchakit2 += 1>><</button>>
\
\
\
\
\
<<elseif $natchakit2 == 4>>\
<div align='center'>\
All sense of time vanishes as the three of you trade back and forth sucking each other off. Your head spins with a heady euphoria and your body is alive with electricity that tingles through your whole body noticeably concentrated in your cock, balls, and even your nipples.
</div>\
<video src="content/peoples/maid/3/5.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<blowjobskill>>\
<<button "Continue" "Chanel and Natalie kitchen 2">><<set $natchakit2 += 1>><</button>>
\
\
\
\
\
<<elseif $natchakit2 == 5>>\
<div align='center'>\
Natalie pushes Chanel off the counter and slips down next to her spreading her ass cheeks wide in an unmistakable invitation.
</div>\
<<speech "Chanel">>Come on $fname, let’s do a train. Plow my ass while I give it to Natalie.<</speech>>
<div align='center'>\
Once Chanel is balls deep in Natalie, she lifts a leg up onto the counter and uses her dainty hand to open herself up for you. As you press slowly inside her, she begins moving her hips pistoning into Natalie and back out pushing more of you inside her. You take turns fucking each other’s holes taking only a moment’s break to switch positions every time one of you gets too close to the edge as you all prolong the pleasure of your mutual company.
</div>\
<video src="content/peoples/maid/3/6.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<sexskill>>\
<<set $mganalcounter += 1>>\
<<button "Continue" "Chanel and Natalie kitchen 2">><<set $natchakit2 += 1>><</button>>
\
\
\
\
\
<<elseif $natchakit2 == 6>>\
<<speech "Maid" "Natalie">>My ass needs more! I want you to both stick it in at the same time. Fill my hungry ass!<</speech>>
<div align='center'>\
Natalie gently pushes you back down onto the counter and sinks down easily swallowing your manhood completely. She looks back over her shoulder invitingly spreading her cheeks for Chanel to join you. The sensation of Chanel’s dick sliding in next to yours inside Natalie’s cavernous hole is indescribable. The feeling of frotting with her inside an experience you will never forget.
</div>\
<video src="content/peoples/maid/3/7.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<sexskill>>\
<<set $mganalcounter += 1>>\
<<button "Continue" "Chanel and Natalie kitchen 2">><<set $natchakit2 += 1>><</button>>
\
\
\
\
\
<<elseif $natchakit2 == 7>>\
<<speech "Maid" "Natalie">>I’ve ruined my ass. Even with the two of you, I’m still not feeling satisfied. Wait for just a moment.<</speech>>
<div align='center'>\
She hops off the counter and opens a cabinet door. Reaching back behind the pans, she pulls out an enormous brightly colored doggy dick shaped dildo with a suction cup on the bottom. She plants it on the counter with a loud plop sound and nimbly hops back up onto the counter. She perches herself over the cock on just her tiptoes and begins to feed it into her ass. She quickly takes the first few inches but slows down as it comes down to the flared base.
</div>\
<<speech "Maid" "Natalie">>Please $fname, suck me off while I try to relax enough to take the doggy knot. I can do it with your help.<</speech>>
<div align='center'>\
You happily comply and as you suck, she works the dildo in and out and then begins to push herself against the knot.
</div>\
<<speech "Maid" "Natalie">>Oh fuck, it's going in. It's slipping inside. Oh god, I feel finally feel full. Yes…<</speech>>
<video src="content/peoples/maid/3/8.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<addmins 5>>\
<<blowjobskill>>\
<<button "Continue" "Chanel and Natalie kitchen 2">><<set $natchakit2 += 1>><</button>>
\
\
\
\
\
<<elseif $natchakit2 == 8>>\
<<speech "Chanel">>Fuck you look so hawt like that Natalie. Come on $fname, let’s show some appreciation for her amazing anal skills and reward her with a bukkake shower.<</speech>>
<div align='center'>\
Both of you stand over Natalie jerking yourselves as she pounds her ass with the rubber dong looking up at the two of you sticking her tongue out hungrily; silently imploring you to shower her with your jizz.
</div>\
<video src="content/peoples/maid/3/9.mp4" style="width: 100%;" autoplay loop></video>
<<zeroarousal>>\
<<addmins 5>>\
<<set $mcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<button "Continue" "Chanel and Natalie kitchen 2">><<set $natchakit2 += 1>><</button>>
\
\
\
\
\
<<elseif $natchakit2 == 9>>\
<div align='center'>\
The two of you let fly and cover her pale face and the white splooge drips down her body as she frantically fucks her ass and pounds her cock with her fist. Taking the dildo all the way down to the base, her cock explodes sending her seed across the counter and to the floor.
</div>\
<video src="content/peoples/maid/3/10.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Shit, that was amazing Natalie. You two are so hot. I loved this! I hope it isn’t the last time we can do this all together.<</speech>>
<<speech "Maid" "Natalie">>Holy shit on a cracker… That was intense. Chanel, you and $fname were amazing. I can’t wait ‘till next time!<</speech>>
<<addarousal 10>>\
<<addmins 5>>\
<<set $chanelrepo += 1>>\
<<set $natalierepo += 1>>\
<<set $pdollsex to true>>\
<<set $pdollcum to false>>\
<<willingness>>\
<<button "Leave" "Hallway Down">><<set $natchakit2 = 0>><<set $pdollsex to false>><</button>>
<</if>>\
<<if $gameDate.getHours() <= "7">>\
<img src="content/peoples/mariana/roombj/2.jpg" style="max-width: 100%;">
<div align='center'>\
She is sleeping.
</div>\
<<button "Leave" "Hallway Down">><</button>>
\
\
\
<<elseif $gameDate.getHours() >= "22">>\
<img src="content/peoples/mariana/roombj/1.jpg" style="max-width: 100%;">
<div align='center'>\
She is sleeping.
</div>\
<<if $CurEN >= 10>>\
<<button "Step closer" "Event: Mariana Bedroom 1">><<set $mbedroom = 0>><</button>>
<<else>>\
<div align='center'>\
You are tired to do anything with her.
</div>\
<</if>>\
<<button "Leave her" "Hallway Down">><</button>>
<<else>>\
<div align='center' style='font-size: 150%;'><b>Mariana's Bedroom</b></div>\
<img src="content/location/mroom.jpg">
<<button "Check her bed" "Mariana Bed">><</button>>
<<button "Check her bedside table" "Mariana Bedside">><</button>>
<<button "Check her wardrobe" "Mariana Wardrobe">><</button>>
<<button "Check her bathroom" "Mariana Bathroom">><</button>>
<<button "Hide a spycam" "Mariana Hide Spycam">><</button>>
<<button "Leave" "Hallway Down">><</button>>
<</if>>\
<div align='center' style='font-size: 150%;'><b>Mariana's bed</b></div>\
<img src="content/location/mroom.jpg">
<div align='center'>\
The bed is so big, covered with satin sheets and it`s very comfortable. Didn`t find anything useful.
</div>\
<<button "Back" "Mariana Bedroom">><</button>>
<div align='center' style='font-size: 150%;'><b>Mariana's bedside table</b></div>\
<img src="content/location/bedside_table.jpg">
<div align='center'>\
You find an erotic book and a blindfold on the top drawer. The bottom drawer is locked. You have to find a way to open it.
</div>\
<<button "Back" "Mariana Bedroom">><</button>>
<div align='center' style='font-size: 150%;'><b>Mariana's wardrobe</b></div>\
<img src="content/location/wardrobe1.jpg">
<<if $inventory.indexOf("socks2") != -1>>\
<div align='center'>\
She has so many clothes, shoes and makeups but nothing useful.
</div>\
\
\
\
<<else>>\
<span id='text'>\
<div align='center'>\
You see something on the floor.
</div>\
<<button "Check it">>
<<replace "#text">>\
<img src="content/pdoll/clothes/socks/socks2.png" style="max-width: 20%;">
<div align='center'>\
It is black fishnet stockings.
</div>\
<<button "Take it" "Mariana Bedroom">><<addToInv "socks2">>\<</button>>
<</replace>>\
<</button>>
</span>\
<</if>>\
<<button "Back" "Mariana Bedroom">><</button>>
<div align='center' style='font-size: 150%;'><b>Mariana's bathroom</b></div>\
<img src="content/location/bath2.jpg" style="max-width: 30%;">
<<if $gameDate.getHours() >= "6" and $gameDate.getHours() < "20">>\
<div align='center'>\
No locks on the door. Good.
</div>\
\
\
\
<<else>>\
<<if $marianashowerdaily is false>>\
<div align='center'>\
Mariana is in the bathroom.
</div>\
<<if $CurEN >= 10>>\
<<button "Peek inside" "Mariana shower">><</button>>
<<else>>\
<div align='center'>\
You are tired to peak on her.
</div>\
<</if>>\
<<else>>\
<div align='center'>\
No locks on the door. Good.
</div>\
<</if>>\
<</if>>\
<<button "Leave" "Mariana Bedroom">><</button>>
<<if $marianashower == 1>>\
<video src="content/peoples/mariana/shower/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You peak through the glass door and see Mariana in the bathtub.
</div>\
<<addarousal 10>>\
<<button "Go in" "Mariana shower">><<set $marianashower += 1>><</button>>
<<button "Leave" "Mariana Bedroom">><<set $marianashower = 1>><</button>>
\
\
\
\
\
<<elseif $marianashower == 2>>\
<video src="content/peoples/mariana/shower/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You slowly step in the bathroom. She still not noticed you.
</div>\
<<addarousal 10>>\
<<button "Speak to her" "Mariana shower">><<set $marianashower += 1>><</button>>
<<button "Leave" "Mariana Bedroom">><<set $marianashower = 1>><</button>>.
\
\
\
\
\
<<elseif $marianashower == 3>>\
<<if $marianarepo < 10>>\
<img src="content/peoples/mariana/shower/1.png">
<<speech "Mariana">>What the hell are you doing in here? Have you been spying on me? Get the fuck out!<</speech>>
<<button "Leave" "Mariana Bedroom">><<set $marianashower = 1>><<set $marianashowerdaily to true>><</button>>
<<else>>\
<<if $pgender is "male">>\
<video src="content/peoples/mariana/shower/3.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>What a nice surprise! Do you want to help me?<</speech>>
<<addarousal 10>>\
<<button "Touch her" "Mariana shower">><<set $marianashower += 1>><</button>>
<<button "Leave" "Mariana Bedroom">><<set $marianashower = 1>><</button>>
<<else>>\
<video src="content/peoples/mariana/shower/3.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>What a nice surprise! I prefer your male body. Come back with that if you want to wash my back.<</speech>>
<<addarousal 10>>\
<<button "Leave" "Mariana Bedroom">><<set $marianashower = 1>><</button>>
<</if>>\
<</if>>\
\
\
\
\
\
<<elseif $marianashower == 4>>\
<video src="content/peoples/mariana/shower/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You grab her boobs and start massaging them.
</div>\
<<addarousal 10>>\
<<handskill>>\
<<button "Continue" "Mariana shower">><<set $marianashower += 1>><</button>>
\
\
\
\
\
<<elseif $marianashower == 5>>\
<video src="content/peoples/mariana/shower/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She stands up and stroking her huge cock.
</div>\
<<speech "Mariana">>Pull your cock out.<</speech>>
<<addarousal 10>>\
<<button "Do it" "Mariana shower">><<set $marianashower += 1>><<set $pdollsex to true>><</button>>
\
\
\
\
\
<<elseif $marianashower == 6>>\
<video src="content/peoples/mariana/shower/6.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is grabbing your cock and stroking both of them. Her cock is three time bigger then yours.
</div>\
<<speech "Mariana">>Lick my balls.<</speech>>
<<addarousal 10>>\
<<set $mrhjcounter += 1>>\
<<button "Obey" "Mariana shower">><<set $marianashower += 1>><</button>>
\
\
\
\
\
<<elseif $marianashower == 7>>\
<video src="content/peoples/mariana/shower/7.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Without saying a word you get down on your knees and start sucking her balls while stroking her huge shaft.
</div>\
<<speech "Mariana">>Open your mouth.<</speech>>
<<addarousal 10>>\
<<handskill>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<set $mghjcounter += 1>>\
<<set $mcocklickcounter += 1>>\
<<button "Obey" "Mariana shower">><<set $marianashower += 1>><</button>>
\
\
\
\
\
<<elseif $marianashower == 8>>\
<video src="content/peoples/mariana/shower/8.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You let her go. She grabbing her cock and slapping your tongue with it. You can not hold back yourself and start sucking the tip of her cock.
</div>\
<<speech "Mariana">>Go deeper.<</speech>>
<<addarousal 10>>\
<<blowjobskill>>\
<<set $mgblowjobcounter += 1>>\
<<button "Obey" "Mariana shower">><<set $marianashower += 1>><</button>>
\
\
\
\
\
<<elseif $marianashower == 9>>\
<video src="content/peoples/mariana/shower/9.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You do everything you can to fit that cock in your mouth but it is just an impossible task. You grab her and try to pulling yourself onto her cock to take that huge cock deeper down your throat.
</div>\
<<speech "Mariana">>That is enough practice for now. Go sit down on the toilet.<</speech>>
<<addarousal 10>>\
<<blowjobskill>>\
<<set $mgdeeptcounter += 1>>\
<<button "Continue" "Mariana shower">><<set $marianashower += 1>><</button>>
\
\
\
\
\
<<elseif $marianashower == 10>>\
<video src="content/peoples/mariana/shower/10.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is stroking both of you while you grabbing her breast.
</div>\
<<speech "Mariana">>Let me taste your cock.<</speech>>
<<addarousal 10>>\
<<handskill>>\
<<button "Continue" "Mariana shower">><<set $marianashower += 1>><</button>>
\
\
\
\
\
<<elseif $marianashower == 11>>\
<video src="content/peoples/mariana/shower/11.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is sucking your cock.
</div>\
<<speech "Mariana">>Cum in my mouth.<</speech>>
<<addarousal 10>>\
<<sexskill>>\
<<set $mrblowjobcounter += 1>>\
<<button "Continue" "Mariana shower">><<set $marianashower += 1>><<set $pdollsex to false>><<set $pdollcum to true>><</button>>
\
\
\
\
\
<<elseif $marianashower == 12>>\
<video src="content/peoples/mariana/shower/12.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You cumming in her mouth.
</div>\
<<speech "Mariana">>My turn now.<</speech>>
<<zeroarousal>>\
<<set $mcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<button "Continue" "Mariana shower">><<set $marianashower += 1>><<set $pdollsex to true>><<set $pdollcum to false>><</button>>
\
\
\
\
\
<<elseif $marianashower == 13>>\
<video src="content/peoples/mariana/shower/13.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is milking her cock onto yours.
</div>\
<<speech "Mariana">>This feels so good.<</speech>>
<<addarousal 10>>\
<<button "Continue" "Mariana shower">><<set $marianashower += 1>><</button>>
\
\
\
\
\
<<elseif $marianashower == 14>>\
<video src="content/peoples/mariana/shower/14.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is smiling at you..
</div>\
<<speech "Mariana">>I have to wash myself again. Bye.<</speech>>
<<addarousal 10>>\
<<takenergy 10>>\
<<willingness>>\
<<set $marianarepo += 1>>\
<<button "Leave" "Mariana Bedroom">><<set $marianashower = 1>><<set $pdollsex to false>><<set $marianashowerdaily to true>><</button>>
<</if>>\
<div align='center' style='font-size: 150%;'><b>Mariana's Bedroom</b></div>\
<img src="content/location/mroom.jpg">
<<if $marianaspycam == 0>>\
<<if $spycam >= 1>>\
<div align='center'>\
You hide the camera.
</div>\
<<set $marianaspycam = 1>>\
<<set $spycam -= 1>>\
<<else>>\
<div align='center'>\
You don`t have a camera.
</div>\
<</if>>\
<<else>>\
<div align='center'>\
You have already hidden a camera here.
</div>\
<</if>>\
<<button "Back" "Mariana Bedroom">><</button>>
<<if $mbedroom == 0>>\
<img src="content/peoples/mariana/roombj/2.jpg" style="max-width: 100%;">
<div align='center'>\
You slowly pull the blanket down revealing her nightie.
</div>\
<<button "Pull the blanket" "Event: Mariana Bedroom 1">><<set $mbedroom = 1>><</button>>
\
\
\
<<elseif $mbedroom == 1>>\
<img src="content/peoples/mariana/roombj/3.jpg" style="max-width: 100%;">
<div align='center'>\
Taking hold of her nightie.
</div>\
<<addarousal 5>>\
<<button "Hold it" "Event: Mariana Bedroom 1">><<set $mbedroom = 2>><</button>>
\
\
\
<<elseif $mbedroom == 2>>\
<img src="content/peoples/mariana/roombj/4.jpg" style="max-width: 100%;">
<div align='center'>\
You slowly lift it up.
</div>\
<<addarousal 5>>\
<<button "Lift it up" "Event: Mariana Bedroom 1">><<set $mbedroom = 3>><</button>>
\
\
\
<<elseif $mbedroom == 3>>\
<img src="content/peoples/mariana/roombj/5.jpg" style="max-width: 100%;">
<<addarousal 5>>\
<<button "Step back" "Event: Mariana Bedroom 1">><<set $mbedroom = 4>><</button>>
\
\
\
<<elseif $mbedroom == 4>>\
<img src="content/peoples/mariana/roombj/6.jpg" style="max-width: 100%;">
<div align='center'>\
She turns over in her sleep.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Bedroom 1">><<set $mbedroom = 5>><</button>>
\
\
\
<<elseif $mbedroom == 5>>\
<img src="content/peoples/mariana/roombj/7.jpg" style="max-width: 100%;">
<div align='center'>
You see that she is VERY well endowed. You take a step closer to get a better look.
</div>\
<<addarousal 5>>\
<<button "Step closer" "Event: Mariana Bedroom 1">><<set $mbedroom = 6>><</button>>
\
\
\
<<elseif $mbedroom == 6>>\
<img src="content/peoples/mariana/roombj/8.jpg" style="max-width: 100%;">
<div align='center'>\
She is incredible. You can't help yourself. You reach out and lightly hold her.
</div>\
<<addarousal 5>>\
<<button "You can't help yourself, touch her" "Event: Mariana Bedroom 1">><<set $mbedroom = 7>><</button>>
<<button "You don't want to touch it" "Hallway Down">><<set $mbedroom = 0>><</button>>
\
\
\
<<elseif $mbedroom == 7>>\
<img src="content/peoples/mariana/roombj/9.jpg" style="max-width: 100%;">
<div align='center'>\
She is already semi-erect. You start to stroke it slowly.
</div>\
<<addarousal 5>>\
<<button "Stroke her" "Event: Mariana Bedroom 1">><<set $mbedroom = 8>><</button>>
\
\
\
<<elseif $mbedroom == 8>>\
<img src="content/peoples/mariana/roombj/10.jpg" style="max-width: 100%;">
<div align='center'>\
You feel a sense of elation as it continues to grow in your hand.
</div>\
<<addarousal 5>>\
<<button "Keep stroking" "Event: Mariana Bedroom 1">><<set $mbedroom = 9>><</button>>
\
\
\
<<elseif $mbedroom == 9>>\
<img src="content/peoples/mariana/roombj/11.jpg" style="max-width: 100%;">
<div align='center'>\
Holy smoke, it is still growing!
</div>\
<<addarousal 5>>\
<<button "Keep stroking" "Event: Mariana Bedroom 1">><<set $mbedroom = 10>><</button>>
\
\
\
<<elseif $mbedroom == 10>>\
<img src="content/peoples/mariana/roombj/12.jpg" style="max-width: 100%;">
<div align='center'>\
You never knew a dick could get so big.
</div>\
<<addarousal 5>>\
<<button "Keep stroking" "Event: Mariana Bedroom 1">><<set $mbedroom = 11>><</button>>
\
\
\
<<elseif $mbedroom == 11>>\
<img src="content/peoples/mariana/roombj/13.jpg" style="max-width: 100%;">
<div align='center'>\
You are mesmerized looking at it. Like a mongoose staring down a cobra.
</div>\
<<addarousal 5>>\
<<button "Keep stroking" "Event: Mariana Bedroom 1">><<set $mbedroom = 12>><</button>>
\
\
\
<<elseif $mbedroom == 12>>\
<img src="content/peoples/mariana/roombj/14.jpg" style="max-width: 100%;">
<div align='center'>\
Mariana starts to stir. You quickly take a step back.
</div>\
<<button "Step back" "Event: Mariana Bedroom 1">><<set $mbedroom = 13>><</button>>
\
\
\
<<elseif $mbedroom == 13>>\
<<if $mbedroom1 is false>>\
<<if $marianarepo < 10>>\
<img src="content/peoples/mariana/roombj/31.jpg" style="max-width: 100%;">
<<speech "Mariana">>What the hell are you doing in my room? Have you been watching me sleep? Get the fuck out!<</speech>>
<<button "Leave" "Hallway Down">><<addhours 1>><<set $mbedroom = 0>><</button>>
<<else>>\
<img src="content/peoples/mariana/roombj/15.jpg" style="max-width: 100%;">
<<speech "Mariana">>Do you like what you see?<</speech>>
<<button "Nod your head silently" "Event: Mariana Bedroom 1">><<set $mbedroom = 14>><</button>>
<</if>>\
<<else>>\
<img src="content/peoples/mariana/roombj/33.jpg" style="max-width: 100%;">
<<speech "Mariana">>Back for more already? I’m sleeping. Let me get my rest. Try me again tomorrow night.<</speech>>
<<button "Leave" "Hallway Down">><<set $mbedroom = 0>><</button>>
<</if>>\
\
\
\
<<elseif $mbedroom == 14>>\
<img src="content/peoples/mariana/roombj/16.jpg" style="max-width: 100%;">
<div align='center'>\
Mariana sits up in bed looking at you intently. You are rooted in place curious where this might go. With a slow-growing smile, Mariana slides her hands up her body and cups her breasts.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Bedroom 1">><<set $mbedroom = 15>><</button>>
\
\
\
<<elseif $mbedroom == 15>>\
<img src="content/peoples/mariana/roombj/17.jpg" style="max-width: 100%;">
<<speech "Mariana">>And how about these? Do you like them?<</speech>>
<<addarousal 5>>\
<<button "You nod in agreement once more" "Event: Mariana Bedroom 1">><<set $mbedroom = 16>><</button>>
\
\
\
<<elseif $mbedroom == 16>>\
<img src="content/peoples/mariana/roombj/18.jpg" style="max-width: 100%;">
<<speech "Mariana">>They are very nice, aren’t they? Nice and round and full. Get a good look at them.<</speech>>
<<addarousal 5>>\
<<button "You look at them" "Event: Mariana Bedroom 1">><<set $mbedroom = 17>><</button>>
\
\
\
<<elseif $mbedroom == 17>>\
<img src="content/peoples/mariana/roombj/19.jpg" style="max-width: 100%;">
<div align='center'>\
She draws her legs beneath her squatting over her bed.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Bedroom 1">><<set $mbedroom = 18>><</button>>
\
\
\
<<elseif $mbedroom == 18>>\
<img src="content/peoples/mariana/roombj/20.jpg" style="max-width: 100%;">
<<speech "Mariana">>You thought you could sneak in here and watch me sleep? Are you a pervert? You want to play with this, don’t you?<</speech>>
<div align='center'>\
You hesitate only a moment and nod your head in agreement.
</div>\
<<addarousal 5>>\
<<button "Nod your head" "Event: Mariana Bedroom 1">><<set $mbedroom = 19>><</button>>
\
\
\
<<elseif $mbedroom == 19>>\
<<if $blowjoblvl == 0>>\
<img src="content/peoples/mariana/roombj/30.jpg" style="max-width: 100%;">
<<speech "Mariana">>I don’t think you are ready for me. You should get more practice sucking cock before trying to take on this jawbreaker. Come back and see me when you have a bit more experience.<</speech>>
<<button "Leave" "Hallway Down">><<addmins 30>><<set $mbedroom = 0>><</button>>
<<else>>\
<img src="content/peoples/mariana/roombj/21.jpg" style="max-width: 100%;">
<<speech "Mariana">>Come a bit closer. That’s it. Keep looking at it.<</speech>>
<div align='center'>\
You take a small hesitant step closer to the bed.
</div>\
<<addarousal 5>>\
<<button "Step closer" "Event: Mariana Bedroom 1">><<set $mbedroom = 20>><<set $pdollsex to true>><</button>>
<</if>>\
\
\
\
<<elseif $mbedroom == 20>>\
<img src="content/peoples/mariana/roombj/22.jpg" style="max-width: 100%;">
<div align='center'>\
Your eyes are glued to her magnificent cock.
</div>\
<<addarousal 5>>\
<<button "Watch her" "Event: Mariana Bedroom 1">><<set $mbedroom = 21>><</button>>
\
\
\
<<elseif $mbedroom == 21>>\
<img src="content/peoples/mariana/roombj/23.jpg" style="max-width: 100%;">
<div align='center'>\
You see that it is waiting for you.
</div>\
<<addarousal 5>>\
<<button "Move closer" "Event: Mariana Bedroom 1">><<set $mbedroom = 22>><</button>>
\
\
\
<<elseif $mbedroom == 22>>\
<img src="content/peoples/mariana/roombj/24.jpg" style="max-width: 100%;">
<<speech "Mariana">>She is ready for you.<</speech>>
<div align='center'>\
She wants you to feel it. You wrap your fingers around it once more.
</div>\
<<addarousal 5>>\
<<button "Touch her" "Event: Mariana Bedroom 1">><<set $mbedroom = 23>><</button>>
\
\
\
<<elseif $mbedroom == 23>>\
<img src="content/peoples/mariana/roombj/25.jpg" style="max-width: 100%;">
<div align='center'>\
At your touch, Mariana lets out a soft moan.
</div>\
<<speech "player" "$fname">>You feel amazing. Do you like how I’m touching you? I think you will like my mouth even more. Do you want me to suck on it? Feel it going into my mouth and down my throat? As big as you are, you probably don’t get much of that. You are in for a treat.<</speech>>
<<speech "Mariana">>Oh fuck… yes. I want it. Touch me. Taste me. Swallow me.<</speech>>
<<addarousal 5>>\
<<handskill>>\
<<button "Keep stroking her" "Event: Mariana Bedroom 1">><<set $mbedroom = 24>><</button>>
\
\
\
<<elseif $mbedroom == 24>>\
<<if $pgender is "male">>\
<img src="content/peoples/mariana/roombj/26.jpg" style="max-width: 100%;">
<<else>>\
<img src="content/peoples/mariana/roombj/34.jpg" style="max-width: 100%;">
<</if>>\
<div align='center'>\
You continue to stroke her just teasing her now. She grabs you and pulls you to the bed and pushes you down. She swings a leg over you and sits on your chest pinning you down. You look up at her and continue your teasing by kissing her thigh working your way slowly up to her balls. You kiss one and slowly draw it into your mouth rewarded by hearing her moan above you. You run your tongue over it inside your mouth sucking it gently. You switch to the other all giving it the same playful treatment.
</div>\
<<addarousal 5>>\
<<tongueskill>>\
<<button "Switch to the other ball" "Event: Mariana Bedroom 1">><<set $mbedroom = 25>><</button>>
\
\
\
<<elseif $mbedroom == 25>>\
<<if $pgender is "male">>\
<img src="content/peoples/mariana/roombj/27.jpg" style="max-width: 100%;">
<<else>>\
<img src="content/peoples/mariana/roombj/35.jpg" style="max-width: 100%;">
<</if>>\
<div align='center'>\
After a time, you let it slip from your mouth and move on to the main attraction. You slowly slide your tongue up the bottom of her shaft and give the tip a long kiss and then kiss back down the shaft.
</div>\
<<addarousal 5>>\
<<button "Kiss the shaft" "Event: Mariana Bedroom 1">><<set $mbedroom = 26>><</button>>
\
\
\
<<elseif $mbedroom == 26>>\
<<if $pgender is "male">>\
<img src="content/peoples/mariana/roombj/28.jpg" style="max-width: 100%;">
<<else>>\
<img src="content/peoples/mariana/roombj/36.jpg" style="max-width: 100%;">
<</if>>\
<div align='center'>\
You sense her growing impatience and finally wrap your lips around the head. Your cheeks cave in creating a pleasant suction as the smooth skin of her dick slides across your lips. And with that, her patience runs out and she pushes her cock deeper into your mouth.
</div>\
<<addarousal 5>>\
<<button "Take her deeper" "Event: Mariana Bedroom 1">><<set $mbedroom = 27>><</button>>
\
\
\
<<elseif $mbedroom == 27>>\
<<if $pgender is "male">>
<img src="content/peoples/mariana/roombj/29.jpg" style="max-width: 100%;">
<<else>>\
<img src="content/peoples/mariana/roombj/37.jpg" style="max-width: 100%;">
<</if>>\
<div align='center'>\
You swirl your tongue around and around the underside further stoking her desire. Continuing to breathe through your nose, you maintain the suction around her cock. Pressing against the back of your mouth not quite to the back of your throat, you feel it throbbing against your tongue. You begin to bob your head back and forth noticing the flow of precum dripping from her tip. She tastes wonderful. You feel her thighs trembling and her balls tightening. She isn’t going to last much longer. You increase the force of your suction and your tongue goes into overdrive slipping along her shaft. You hear Mariana take one last long breath and hold it just moments before she explodes in your mouth.
</div>\
<<addarousal 5>>\
<<blowjobskill>>\
<<button "Keep her in your mouth" "Event: Mariana Bedroom 1">><<set $mbedroom = 28>><</button>>
\
\
\
<<elseif $mbedroom == 28>>\
<<if $pgender is "male">>\
<video src="content/peoples/mariana/roombj/1.mp4" style="width: 100%;" autoplay loop></video>
<<else>>\
<video src="content/peoples/mariana/roombj/2.mp4" style="width: 100%;" autoplay loop></video>
<</if>>\
<div align='center'>\
The first shot hits the back of your throat so hard that it makes you blink in surprise. You swallow as fast as you can as spurt after spurt shoots out coating the back of your throat with her thick white jizz. You aren’t keeping up and you feel it backing up leaking from the corners of your mouth. You use your finger to catch the drips and finally letting her dick slide free, you push the escaped cum back into your eager mouth. Using your hands to milk the last few drops from her shaft, you lick the tip of her cock getting the final remnants and swallowing it.
</div>\
<<addarousal 5>>\
<<cumplayskill>>\
<<button "Swallow" "Event: Mariana Bedroom 1">><<set $mbedroom = 29>><</button>>
\
\
\
<<elseif $mbedroom == 29>>\
<img src="content/peoples/mariana/roombj/32.jpg" style="max-width: 100%;">
<div align='center'>\
Mariana, completely spent, topples over sideways on the bed and you smile with satisfaction as her eyelids droop and close. You give her amazing cock one last parting kiss on the tip before you go letting her sleep peacefully.
</div>\
<<addarousal 25>>\
<<takeenergy 10>>\
<<willingness>>\
<<addhours 1>>\
<<button "Leave" "Hallway Down">>
<<set $pdollsex to false>>\
<<set $marianarepo += 1>>\
<<set $mbedroom = 0>>\
<<set $mbedroom1 to true>>\
<<set $marianabedroomreplay to true>>\
<<if $pgender is "male">>\
<<set $mcumswallowcounter += 1>>\
<<set $mgblowjobcounter += 1>>\
<<elseif $pgender is "female">>\
<<set $fcumswallowcounter += 1>>\
<<set $fgblowjobcounter += 1>>\
<<elseif $pgender is "shemale">>\
<<set $scumswallowcounter += 1>>\
<<set $sgblowjobcounter += 1>>\
<</if>>\
<</button>>
<</if>>\
<<if $bdayquest == 3>>\
<<if $pgender is "male">>\
<div align='center'>\
You knock on Mariana’s office door and she invites you to come in.
</div>\
<img src="content/peoples/mariana/icecream/0.jpg">
<<speech "Mariana">>Hi $fname. Can I help you with something?<</speech>>
<<speech "player" "$fname">>Hey Mariana. I felt like stretching my legs a bit and was hoping for some company. Would you like to come with me? I could treat you to some ice cream.<</speech>>
<<speech "Mariana">>Oh, that is such a lovely offer. I’m terribly busy… but I suppose I could take a break for a while. A breath of fresh air and some ice cream sounds marvelous. Okay, let’s go.<</speech>>
<<button "Go out" "Bday Quest">><<set $bdayquest = 4>><</button>>
<<else>>\
<div align='center'>\
You need a male body for to take out Mariana.
</div>\
<<button "Leave" "Hallway Down">><</button>>
<</if>>\
\
\
\
<<elseif $finalquest == 1>>\
<div align='center'>\
You see Mariana looking depressed and walk over to talk to her.
</div>\
<img src="content/peoples/mariana/sad.jpg">
<<speech "player" "$fname">>Mariana, are you alright? You look like someone just ran over your cat… but you don’t have a cat.<</speech>>
<<speech "Mariana">>Oh, hey $fname. It’s work-related. I don’t want to trouble you with it.<</speech>>
<<speech "player" "$fname">>You can tell me anything, Mariana. If it is bothering you, it bothers me. I can be a good listener. Please tell me.<</speech>>
<<speech "Mariana">>Well, I… I got an email from IT that there has been some suspicious activity on my account and they have put me on temporary suspension pending an investigation. They think I might be trying to sabotage the company or something like that. I have no fucking idea what it could be. I doubt my account was hacked with the security in place and it’s not like anyone could randomly guess my huge ass password. But until they finish reviewing the account, I’m stuck here at home and all my projects are being put on hold. If I miss some of these deadlines, it is months if not years of work down the toilet.<</speech>>
<<speech "player" "$fname">>Yeah, wow! That does sound really bad. Did they say what kind of suspicious activity they found? Are we talking looking at people’s salary or more like embezzling money?<</speech>>
<<speech "Mariana">>They weren’t specific but they indicated that I was getting into files that I shouldn’t be able to or something like that.<</speech>>
<<speech "player" "$fname">>Mariana, how much do you trust Nemesis Corp? Do you think they will do right by you? I mean, if they know it wasn’t you, will they treat you fairly? Is it a company that you would want your kids to work at?<</speech>>
<<speech "Mariana">>That is a really strange… but good question. I’d like to say yes but… it just isn’t the same company that it used to be. To answer your question, I don’t think I would want my kids to work there. But, to your first question, I think if they knew I had nothing to do with the hacked account, I think they would reinstate me.<</speech>>
<<speech "player" "$fname">>I trust you Mariana. I want to tell you a big secret. Can I trust you?<</speech>>
<<speech "Mariana">>Are you behind this hack somehow?<</speech>>
<<speech "player" "$fname">>I might know something about it. Sit down and let me tell you a story and then I’ll let you ask me as many questions as you like.<</speech>>
<div align='center'>\
She has a sceptical look on her face as she sits but as you begin to tell her your story of your parents, it turns to curiosity. She knew about your parents' accident but looks shocked and amazed when you tell them that they are still alive. You continue on and explain why you came to work for Nemesis Corp and your efforts to find your parents. And finally, you tell her how you found her password and have been using it to locate your parents and communicate with them.
</div>\
<<speech "Mariana">>I’m speechless. I… That is a lot to take in. Give me a moment while I process all that. So you talked to your parents? They have been here the whole time? Do you have a plan to get them out?<</speech>>
<<speech "player" "$fname">>I am working on it. It is so tempting to try to take my hacked ID card and just go down and get them. Also, thank you for focusing on my parents rather than the fact that I got you in trouble with work. That means a lot to me that you see my parents as being worth it.<</speech>>
<<speech "Mariana">>We’ll come back to your act of espionage but yes, your parents are more important for now. I want to help you however I can. But first, we need to get me reinstated. We’ll need to give the IT department a bone to chase first though.<</speech>>
<<speech "player" "$fname">>I think I may be able to take care of that. Let me check with my contact and get back to you.<</speech>>
<<button "Leave" "Hallway Down">><<set $finalquest = 2>><</button>>
\
\
\
<<elseif $finalquest == 3>>\
<<speech "player" "$fname">>Hey, Mariana. Do you have a minute?<</speech>>
<img src="content/peoples/mariana/sad.jpg">
<<speech "Mariana">>Hi, $fname. Of course. Come have a seat.<</speech>>
<<speech "player" "$fname">>So, you should be in the clear with your account soon. The IT security team will have their hands full here pretty soon and it should be abundantly clear that your account was hacked. You should check back in tomorrow morning if you have not heard from them by then.<</speech>>
<<speech "Mariana">>You sound pretty confident. I hope it is as easy as that. Is this going to come back down on you at all? While I don’t approve of your method of infiltrating the company, I can’t say that I blame you either. I want to help reunite you with your parents. I’ve been thinking over and over about what I would do to protect my kids if the tables were reversed. I’ve also been thinking about what resources I have that might help you too. Once I can get back into the office, I’m going to make some discreet inquiries. I’ll let you know what I can turn up.<</speech>>
<<speech "player" "$fname">>You are the best boss ever. More than that, you are a wonderful friend. I had no idea how lucky I was to come and stay with you.<</speech>>
<<button "Leave" "Hallway Down">><<set $finalquest = 4>><</button>>
<<else>>\
<div align='center' style='font-size: 150%;'><b>Mariana's Home Office</b></div>\
<img src="content/location/office_home.jpg">
<<button "Check her computer" "Mariana Home PC">><</button>>
<<button "Check her desk" "Mariana Home Desk">><</button>>
<<button "Leave" "Hallway Down">><</button>>
<</if>>\
<div align='center' style='font-size: 150%;'><b>Mariana's desk</b></div>\
<img src="content/location/office_home.jpg">
<div align='center'>\
You find a bunch of paper but nothing unusual.
</div>\
<<button "Back" "Mariana Home Office">><</button>>
<div align='center' style='font-size: 150%;'><b>Mariana's Home PC</b></div>\
<img src="content/peoples/mariana/password.png">
<<if $angelesquest == 4>>\
<div align='center'>\
You wonder if it really could be so easy as to find her password under her keyboard like Angeles let slip she might. Picking up the keyboard, you turn it over in your hands to see a little pink sticky note with a string of characters written in pen. Taking out your phone, you take a picture of it and set the keyboard down. You consider sitting down to give the password a try when you hear the door to the office opening again.
</div>\
<<speech "Mariana">>What the hell are you doing in here? Have you been snooping?<</speech>>
<<speech "player" "$fname">>I’m sorry Mariana. I was… looking for batteries for my computer mouse. I thought you might have some spares in your office.<</speech>>
<<speech "Mariana">>We keep them in the pantry. Natalie could have gotten them for you. I hate the idea of you sneaking around in other people’s rooms. You will have to be punished. I have a work deadline early in the morning. I don’t have time to… Ah! I know.<</speech>>
<div align='center'>\
Mariana unzips the fly of her daisy duke shorts she is wearing and fishes out the massive python dick that is huge even when limp. Walking to her desk, she undocks her laptop and points with her other hand at the table.
</div>\
<<speech "Mariana">>Take off all your clothes and get on your knees, faggot. You are going to suck me off from under the table while I finish this boring-ass report. Once you eat my cum, you may be excused.<</speech>>
<div align='center'>\
To avoid trouble and any further suspicion, you quickly move to comply with her orders. Before she can log into her computer, you are already between her legs reaching for her dick. You slide it still fairly soft into your mouth and begin to suck. It feels amazing the way it swells inside your mouth and before long, it is fully erect. On your hands and knees, you sway back and forth working her dick like a machine while above you, you hear the soft clatter as she types on her laptop. The muscles of your jaw are beginning to feel a bit achy after being forced open for so long. With great relief, Mariana slides her chair back giving your poor jaw a rest.
</div>\
<video src="content/peoples/mariana/4.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>You’ve got me nice and worked up now. I can’t focus on my work until you get me off. Enough playing around, I want to cum.<</speech>>
<div align='center'>\
As you crawl forward to her again, she pulls down the front of her shirt to play with her breasts and rub her nipples. She abruptly pulls her dick out of your mouth again and begins to stroke it telling you to lick her balls as she does. You lick and kiss the sack and suck one of the egg-shaped balls in where you continue to slather your tongue over it. After popping it back out, she feeds her cock to you once more and rests her hand on the back of your head to urge you on faster. Taking hold of the base of her cock, she strokes in time with the bobbing of your head as she must be getting close to climax.
</div>\
<video src="content/peoples/mariana/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She stands and pulls you up to your knees to finish the job. Her hand is behind your head again to set the pace she wants. You feel her balls tightening up as she is getting ready to nut. Pulling out, she strokes herself and her fist is a blur as it moves quickly back and forth. You open your mouth and extend your tongue to provide her with a tempting target for her spunk. With a sigh, she unloads and you feel her thick jizz spray into your mouth and puddle on your tongue.
</div>\
<video src="content/peoples/mariana/6.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>That was good. Now get your clothes and get the fuck out so I can finish my work. And don’t let me catch you in here again, clear?<</speech>>
<div align='center'>\
Swallowing down the creamy load, you nod silently as you collect your clothes and scurry naked down the hall to your room. You are lucky you didn’t get caught on her computer. That would have been much harder to explain. Now the question is, what do you do with Mariana’s password, assuming it will get you access to her work stuff. Perhaps Bonnie can help.
</div>\
<<blowjobskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<button "Leave" "Hallway Down">><<set $angelesquest = 5>><</button>>
\
\
\
<<else>>\
<<if $gameDate.getHours() >= "14" and $gameDate.getHours() < "19">>\
<<set _rnd = random(1, 3)>>\
<<if _rnd == 1>>\
<div align='center'>\
You try to log into her computer, but you don`t know the password.
</div>\
<<addmins 20>>\
<<button "Back" "Event: Chanel Home Office 1">><</button>>
\
\
\
<<else>>\
<div align='center'>\
You try to log into her computer, but you don`t know the password.
</div>\
<<addmins 20>>\
<<button "Back" "Mariana Home Office">><</button>>
<</if>>\
\
\
\
<<else>>\
<div align='center'>\
You try to log into her computer, but you don`t know the password.
</div>\
<<addmins 20>>\
<<button "Back" "Mariana Home Office">><</button>>
<</if>>\
<</if>>\
<<if $choffice1 is true>>\
<img src="content/peoples/chanel/office/1.jpg" style="max-width: 100%;">
<<speech "Chanel">>You are a really good lay, $fname. I want to fuck you again but you practically drained me dry. If you are still hungry for more of my cock, meet me here again tomorrow. Hmmm, I think I’ll take a nap. I think it is time for you to leave.<</speech>>
<<button "Leave" "Hallway Down">><</button>>
\
\
\
<<else>>\
<<if $chofficefirst is true>>\
<img src="content/peoples/chanel/office/1.jpg" style="max-width: 100%;">
<<speech "Chanel">>Hey. Are you here for your daily dose of dick? You can’t get enough of me, can you?<</speech>>
<<button "No, I can’t." "Event: Chanel Home Office 1">><<set $chofficefirst to false>><<set $choffice = 5>><</button>>
<<button "I should go." "Hallway Down">><</button>>
<<else>>\
<<if $choffice == 0>>\
<img src="content/peoples/chanel/office/1.jpg" style="max-width: 100%;">
<<speech "Chanel">>What the fuck? You aren’t supposed to be in here?<</speech>>
<<speech "player" "$fname">>Oh! Hi Chanel. My laptop wasn’t working so I wanted to see if I could use your mom’s to check my email.<</speech>>
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 1>><</button>>
\
\
\
<<elseif $choffice == 1>>\
<<if $pgender is "male">>\
<img src="content/peoples/chanel/office/2.jpg" style="max-width: 100%;">
<<elseif $pgender is "female" or $pgender is "shemale">>\
<img src="content/peoples/chanel/office/4.jpg" style="max-width: 100%;">
<</if>>\
<<speech "Chanel">>I’m not buying it. I think you are full of shit $fname.<</speech>>
<<speech "player" "$fname">>No, I’m telling you the truth.<</speech>>
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 2>><</button>>
\
\
\
\
<<elseif $choffice == 2>>\
<<if $pgender is "male">>\
<img src="content/peoples/chanel/office/3.jpg" style="max-width: 100%;">
<<elseif $pgender is "female" or $pgender is "shemale">>\
<img src="content/peoples/chanel/office/5.jpg" style="max-width: 100%;">
<</if>>\
<<speech "Chanel">>Can it. I don’t want to hear another word. I’m going to give you a choice. You can either crawl between my legs and satisfy me or… I tell my mom that you have been trying to spy on her. What do you think of that?<</speech>>
<<button "Submit" "Event: Chanel Home Office 1">><<set $choffice = 3>><</button>>
<<button "Run away" "Chanel office ending">><</button>>
\
\
\
<<elseif $choffice == 3>>\
<<if $pgender is "male">>\
<img src="content/peoples/chanel/office/3.jpg" style="max-width: 100%;">
<<elseif $pgender is "female" or $pgender is "shemale">>\
<img src="content/peoples/chanel/office/5.jpg" style="max-width: 100%;">
<</if>>\
<<speech "player" "$fname">>Seriously? You want me to eat you out to keep this quiet?<</speech>>
<<speech "Chanel">>Pretty good as far as punishments go, right? But there is something you don’t know about me. I’m going to let you in on my not so little secret.<</speech>>
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 4>><</button>>
\
\
\
<<elseif $choffice == 4>>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/1.mp4">
</video>
<div align='center'>\
Chanel hooks a thumb into the waistband of her black lace panties and tantalizing you, she slowly lowers it down revealing encased cock which jumps free from its thin lacy cover.
</div>\
<<speech "Chanel">>I knew I was a special girl but you had no idea just HOW special. Now, have a seat and just watch for now. I want you to enjoy watching me.<</speech>>
<<addarousal 20>>\
<<button "Watch her" "Event: Chanel Home Office 1">><<set $choffice = 5>><</button>>
\
\
\
<<elseif $choffice == 5>>\
<div align='center'>\
Chanel wraps her fingers around her dick and they glide ever so slowly up and down. Her eyes watch you rapturously as you watch her hand at work. She is clearly enjoying being watched just as much if not more than actually stroking herself.
</div>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/2.mp4">
</video>
<<speech "Chanel">>It is beautiful, isn’t it? Doesn’t it look so good hard like this? You want some of this. I can see it in your eyes. I’m going to fill both your holes with it… once you are turned on enough. I’m going to make you beg for it. How does that sound? I need to make sure you are horny for me first.<</speech>>
<<addarousal 20>>\
<<button "Enjoy" "Event: Chanel Home Office 1">><<set $choffice = 6>><<set $pdollsex to true>><</button>>
\
\
\
<<elseif $choffice == 6>>\
<<if $pgender is "male">>\
<<if $locked is true>>\
<div align='center'>\
Your cock is locked, she can't suck you.
</div>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 7>><</button>>
\
\
\
<<else>>\
<div align='center'>\
She climbs up onto the desk like a predator stalking prey. You sit back further in the chair but there is no place to go. She slowly unbuttons your pants and peels them partway down your legs. Your cock is already pretty hard but once her mouth swallows the head, you feel a sudden surge of blood rushing down as if being drawn into her mouth through your dick. It feels so good that your head falls back to the floor and your back arches up. Your hips begin to slowly thrust up into her mouth.
</div>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/3.mp4">
</video>
<<addarousal 20>>\
<<button "She is so good" "Event: Chanel Home Office 1">><<set $choffice = 7>><</button>>
<</if>>\
\
\
\
<<elseif $pgender is "female">>\
<div align='center'>\
She pushes you back up against the desk and slowly unbuttons your top and pushes it off. She reaches for the zipper on your skirt and slowly pulls it down enjoying the growing sense of anticipation. With a quick downward pull, she removes your skirt and panties in one motion leaving them on the floor. She pushes you all the way back onto the desk and climbs up after you kneeling over you victoriously. Your pussy is so wet as she runs two fingers over and down through the damp lips. She slides a finger inside fucking you with it as you moan at the penetration. She leans to lick it and you feel a sudden tingling deep inside. It feels so good that you grab your legs pulling them back and you can see her eyes twinkling at you as her mouth is buried in your pussy.
</div>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/11.mp4">
</video>
<<addarousal 20>>\
<<button "She is so good" "Event: Chanel Home Office 1">><<set $choffice = 7>><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<<if $locked is true>>\
<div align='center'>\
Your cock is locked, she can't suck you.
</div>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 7>><</button>>
\
\
\
<<else>>\
<div align='center'>\
She presses one delicate hand against your chest and gives you a little shove back so you lay down on the couch. Kneeling between your legs, she wraps her hand around your semierect cock and pulls it to her mouth. She pushes her flowing hair back out of her eyes so she can look up at you. Your hand takes the place of her now vacated hand on your shaft giving it a few pumps bringing it to full attention. Her head glides up and down on you causing her hair to continue to flop over her face obscuring your view of her beauty. You gently push it aside so you can better appreciate the view of her swallowing you down to the root. Looking back up into your eyes through her dangling tresses, she sees the desire growing inside you and moves forward pressing her lips to yours.
</div>\
<video src="content/peoples/chanel/office/17.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She climbs over you pressing her breasts into yours as your lips mash together passionately. She breaks the kiss as suddenly as she initiated it and sits up on the back of the couch smiling down at you wagging her hard cock back and forth teasingly.
</div>\
<<addarousal 20>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 7>><</button>>
<<set $srblowjobcounter += 1>>\
<</if>>\
<</if>>\
\
\
\
<<elseif $choffice == 7>>\
<<if $pgender is "male">>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/4.mp4">
</video>
<div align='center'>\
You want so much to taste her now. You need her in your mouth.
</div>\
<<addarousal 20>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 8>><</button>>
\
\
\
<<elseif $pgender is "female">>\
<div align='center'>\
You sit up pushing her back momentarily and you lean towards her pressing your lips to hers. You stand the rest of the way up moving away from the desk. Your lips still mashed against hers, your hand slides down her body to grasp her hard cock. You want so much to taste her now. You need her in your mouth. You slide down to your knees swallowing her dick on the way down.
</div>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/12.mp4">
</video>
<<speech "Chanel">>Oh, you little slut. Your mouth feels so good. Suck me. Get me nice and wet. You know where this is going next, don’t you? That’s enough. Turn around and show me that ass of yours.<</speech>>
<<addarousal 20>>\
<<button "Turn around" "Event: Chanel Home Office 1">><<set $choffice = 8>><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<div align='center'>\
Your head tracks it back and forth trying to catch it with your mouth and Chanel giggles as you dive down on it and miss twice before you manage to capture it. As you do, her hand wraps behind your head trapping you there. She mews softly enjoying the warm wetness of your mouth and her hips begin instinctually thrusting up fucking your mouth. All you can do is try your best to relax your throat and enjoy the ride.
</div>\
<video src="content/peoples/chanel/office/18.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Your mouth feels good but what I really want is your ass. Turn around for me and let me see that sexy bottom of yours.<</speech>>
<<addarousal 20>>\
<<button "Obey" "Event: Chanel Home Office 1">><<set $choffice = 8>><</button>>
<</if>>\
\
\
\
<<elseif $choffice == 8>>\
<<addarousal 20>>\
<<if $pgender is "male">>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/5.mp4">
</video>
<<speech "Chanel">>Oh, you little slut. Your mouth feels so good. Suck me. Get me nice and wet. You know where this is going next, don’t you? That’s enough. Turn around and show me that ass of yours.<</speech>>
<<addarousal 20>>\
<<button "Turn around" "Event: Chanel Home Office 1">><<set $choffice = 9>><</button>>
\
\
\
<<elseif $pgender is "female">>\
<div align='center'>\
You turn around resting your hands on the desk presenting your ass to Chanel. She gives it a light spank in appreciation and then lines up her dick with your dripping pussy. She is stretching you out which is a bit uncomfortable at first but quickly turns to pleasure. She is filling you completely and it feels so good.
</div>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/13.mp4">
</video>
<<addarousal 20>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 9>><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<div align='center'>\
You twist on the couch and rest your forearms on a pillow as you present your ass to Chanel. She lines up with your hole and uses a hand on your waist to steady herself as she presses inside. Slow and steady pressure allows her to penetrate to the hilt. Once fully sheathed, she gasps your hips and starts fucking you in earnest. Feeling a slight discomfort at the penetration that quickly turns to pleasure as you stretch to adjust, you bury your head in the pillow letting out a slow moan at being filled.
</div>\
<video src="content/peoples/chanel/office/19.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>You are so fucking tight. I’m not going to last long at this rate. We are going to have work on stretching you open a bit more. You and I should spend more time helping you get the practice you need.<</speech>>
<<addarousal 20>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 9>><</button>>
<</if>>\
\
\
\
<<elseif $choffice == 9>>\
<<if $pgender is "male">>\
<div align='center'>\
You lean over the desk resting your elbows on the hard surface as you feel Chanel rest a knee on the desk helping her to line up her cock with your ass. She grabs your hips and starts to press forward opening and penetrating your ass. It is uncomfortable at first but soon enough, you adjust to her size and it starts to feel good.
</div>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/6.mp4">
</video>
<<addarousal 20>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 10>><</button>>
\
\
\
<<elseif $pgender is "female">>\
<div align='center'>\
She pulls out and you groan with disappointment but before you have a chance to say anything, she spins your around and pushes you back onto the desk. She climbs onto the desk and siwfly plunges back into you. Looking deep into your eyes watching for your reactions, she picks up the speed pounding into your pussy.
</div>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/14.mp4">
</video>
<div align='center'>\
She turns you around on the desk and starts fucking you harder.
</div>\
<<addarousal 20>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 10>><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<div align='center'>\
She has to stop now and then to let herself cool back down so she doesn’t cum too fast taking in the site of your delicate and feminine body with her cock stuck up your ass. Other times she pulls completely out and watches as your hole gapes open and feeling so empty without her cock or simply leans forward pressing her breasts into your back as her tongue seeks your lips. She is truly an amazing lover as she takes you on a rollercoaster of pleasure and delayed gratification. She guides you into different positions on the couch riding her cowgirl and reverse cowgirl and some that you don’t know names for. You make a quick mental note to look into the kama sutra to learn the names of more sexual positions as it seems they will be playing a more important role in your life. You can feel her hot skin grow damp and glisten like morning dew as her sweat mingles with yours.
</div>\
<video src="content/peoples/chanel/office/20.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 10>><</button>>
<</if>>\
\
\
\
<<elseif $choffice == 10>>\
<<if $pgender is "male">>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/7.mp4">
</video>
<div align='center'>\
She turns you around on the desk and starts fucking you harder.
</div>\
<<addarousal 20>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 11>><</button>>
\
\
\
<<elseif $pgender is "female">>\
<div align='center'>\
The two of you fuck like bunnies. She is clearly much more experienced than you and guides you into different positions. You are amazed at how the different angles the sexual positions cause brings different sensations. She seems like a sex goddess to you.
</div>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/15.mp4">
</video>
<div align='center'>\
You feel her breathing faster and it seems she must be getting close to her orgasm.
</div>\
<<addarousal 20>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 11>><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<div align='center'>\
Eventually, she pushes you down to your knees and taking the hint that she is going to leave a lovely glistening present over your face. You give her your most sensual look begging for her cum with your eyes. Her hand flies up and down her cock and you see her ballsack scrunch up just before she unleashes herself rewarding you with a glazed donut finish on your face. Satisfied that she has emptied her balls, she appreciates her handiwork and gives you a quick kiss on the lips as the cherry on top.
</div>\
<video src="content/peoples/chanel/office/21.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>You are a really good lay $fname. I see a lot more of this in our future. I’ll keep your little secret for now. I’m going to go get cleaned up. You should finish yourself off. It would be a pity not to get your nut after all that work.<</speech>>
<<if $locked is true>>\
<div align='center'>\
You are locked in the chastity, you can not finish yourself.
</div>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<addmins 30>>\
<<set $willingness += 1>>\
<<set $blowjobskill += 1>>\
<<set $sexskill += 1>>\
<<set $cumplayskill += 1>>\
<<set $tongueskill +=1>>\
<<set $chanelrepo += 1>>\
<<set $analsize += 1>>\
<<set $sgblowjobcounter += 1>>\
<<set $sranalcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<set $skisscounter += 1>>\
<<button "Leave" "Hallway Down">><<set $choffice = 0>><<set $choffice1 to true>><<set $chofficefirst to true>><<set $pdollsex to false>><</button>>
\
\
\
<<else>>\
<div align='center'>\
You look down and see yourself still straining eagerly for contact. Chanel walks out without a glance back. You look around the now-empty office which reaks of sex and decide that you should probably go someplace more discreet to finish. You grab your clothes and sneak back down the hall to your room and lock the door behind you.
</div>\
<<takeenergy 10>>\
<<addmins 30>>\
<<set $willingness += 1>>\
<<set $blowjobskill += 1>>\
<<set $sexskill += 1>>\
<<set $tongueskill +=1>>\
<<set $analskill += 1>>\
<<set $cumplayskill += 1>>\
<<set $chanelrepo += 1>>\
<<set $analsize += 1>>\
<<set $sgblowjobcounter += 1>>\
<<set $sranalcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<set $skisscounter += 1>>\
<<button "Leave" "Event: Chanel Home Office 1">><<set $choffice = 11>><<set $pdollsex to false>><<set $pdollcum to true>><</button>>
<</if>>\
<</if>>\
\
\
\
<<elseif $choffice == 11>>\
<<if $pgender is "male">>\
<div align='center'>\
The two of you fuck like bunnies. She is clearly much more experienced than you and guides you into different positions. You are amazed at how the different angles the sexual positions cause brings different sensations. She brings you to orgasm shuddering on the desk filled to the hilt with her cock. She seems like a sex goddess to you.
</div>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/8.mp4">
</video>
<div align='center'>\
You feel her breathing faster and it seems she must be getting close to her orgasm.
</div>\
<<addarousal 20>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 12>><</button>>
\
\
\
<<elseif $pgender is "female">>\
<div align='center'>\
She sits up on the desk pulling out and begins to stroke herself hard. You reach down and slide a finger up her ass fingering her hole. You look down over her shoulder and between her breasts as she pumps her dick with her hand.
</div>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/16.mp4">
</video>
<div align='center'>\
She groans as she explodes spraying her load across the desk.
</div>\
<<addarousal 20>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 14>><<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<div align='center'>\
You drop your clothes on the floor and lay on your bed with your legs splayed out to the sides. It doesn’t take more than a few well-done strokes before you finally achieve orgasm. Your load is super watery as most of it seems to be precum that had been backed up inside and joined the semen on the ride out to splash across your naked body. You sigh in relief after letting go of all that pent of arousal from your lovemaking.
</div>\
<video src="content/peoples/chanel/office/22.mp4" style="width: 100%;" autoplay loop></video>
<<zeroarousal 10>>\
<<set $scumcounter += 1>>\
<<set $noorgasm = 0>>\
<<button "Clean up yourself" "Player Room">><<set $choffice = 0>><<set $choffice1 to true>><<set $chofficefirst to true>><<set $pdollcum to false>><</button>>
<</if>>\
\
\
\
<<elseif $choffice == 12>>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/9.mp4">
</video>
<div align='center'>\
You fall to your knees between her legs as she is perched on the desk stroking herself hard now. With a groan, she lets her load spray out across your face. You are aching to bad to cum yourself now.
</div>\
<<addarousal 20>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 13>><<set $pdollsex to false>><<set $pdollcum to true>><</button>>
\
\
\
<<elseif $choffice == 13>>\
<<if $locked is true>>\
<div align='center'>\
Your cock is locked, you can't cum.
</div>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 14>><</button>>
\
\
\
<<else>>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/chanel/office/10.mp4">
</video>
<div align='center'>\
Once her orgasm subsides, she lays back down on the desk light-headed from the force of it. You are hard as iron and looking down over her curvaceous body covered in sweat, you take your cock in hand and pump hard and fast. Look at you, she licks her lips and cups her breasts together giving you an eye full. Your eyes hunger for her body and reach out to grasp one of her breasts. You can’t hold back any longer. You let your cum spray across her body moaning with pleasure.
</div>\
<<zeroarousal>>\
<<button "Continue" "Event: Chanel Home Office 1">><<set $choffice = 14>><<set $pdollcum to false>><<set $pdollsex to true>><</button>>
<</if>>\
\
\
\
<<elseif $choffice == 14>>\
<img src="content/peoples/chanel/office/6.jpg" style="max-width: 100%;">
<<speech "Chanel">>That was really good $fname. I don’t think this is going to be the last time we do this. And don’t worry, I’ll keep your little secret. We should go get ourselves cleaned up. I’ll see you later.<</speech>>
<<speech "player" "$fname">>Thanks, bye.<</speech>>
<<if $pgender is "male">>\
<<takeenergy 10>>\
<<addmins 30>>\
<<set $willingness += 1>>\
<<set $tongueskill += 1>>\
<<set $blowjobskill += 1>>\
<<set $sexskill += 1>>\
<<set $handskill += 1>>\
<<set $analskill += 1>>\
<<set $cumplayskill += 1>>\
<<set $chanelrepo += 1>>\
<<set $analsize += 1>>\
<<if $locked is false>>\
<<set $mcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<set $mrblowjobcounter += 1>>\
<</if>>\
<<set $mgblowjobcounter += 1>>\
<<set $mranalcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<set $mkisscounter += 1>>\
<<set $masslickcounter += 1>>
\
\
\
<<elseif $pgender is "female">>\
<<takeenergy 10>>\
<<addmins 30>>\
<<set $willingness += 1>>\
<<set $tongueskill += 1>>\
<<set $blowjobskill += 1>>\
<<set $sexskill += 1>>\
<<set $handskill += 1>>\
<<set $pussyskill += 1>>\
<<set $cumplayskill += 1>>\
<<set $chanelrepo += 1>>\
<<set $pussysize += 1>>\
<<set $fcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<set $fkisscounter += 1>> \
<<set $fgblowjobcounter += 1>>\
<<set $frpussylickcounter += 1>>\
<<set $frpussyfuckcounter += 1>>\
<</if>>\
<<button "Leave" "Hallway Down">><<set $choffice = 0>><<set $choffice1 to true>><<set $chofficefirst to true>><<set $pdollsex to false>><</button>>
<</if>>\
<</if>>\
<</if>>\
<<if $gameDate.getHours() <= "7">>\
<img src="content/peoples/chanel/sleep.jpg">
<div align='center'>\
She is sleeping.
</div>\
<<button "Leave" "Hallway Down">><</button>>
\
\
\
<<elseif $gameDate.getHours() >= "22">>\
<img src="content/peoples/chanel/sleep.jpg">
<div align='center'>\
She is sleeping.
</div>\
<<button "Leave" "Hallway Down">><</button>>
\
\
\
<<else>>\
<div align='center' style='font-size: 150%;'><b>Chanel's Bedroom</b></div>\
<img src="content/location/bedroom2.jpg">
<<button "Check her bed" "Chanel Bed">><</button>>
<<button "Check her wardrobe" "Chanel Wardrobe">><</button>>
<<button "Check her bathroom" "Chanel Bathroom">><</button>>
<<button "Hide a spycam" "Chanel Hide Spycam">><</button>>
<<if $questmaid >= 1>>\
<<if $CurEN >= 20>>\
<<button "Clean her room" "Chanel Room Cleaning">><<set $pdollmaid to true>><</button>>
<<else>>\
<div align='center'>\
You are tired to clean her room
</div>\
<</if>>\
<</if>>\
<<button "Leave" "Hallway Down">><</button>>
<</if>>\
<div align='center' style='font-size: 150%;'><b>Chanel's bed</b></div>\
<img src="content/location/bedroom2.jpg">
<<if $buttplug1 >= 1>>\
<div align='center'>\
It`s very comfortable. Didn`t find anything useful.
</div>\
<<else>>\
<span id='text'>\
<div align='center'>You see something shiny under her bed.</div>\
<<button "Check it">>
<<replace "#text">>\
<img src="content/objects/buttplug1.jpg" position: center;>
<div align='center'>\
It is a small metal buttplug.
</div>\
<<button "Take it" "Chanel Bedroom">><<set $buttplug1 = 1>><</button>>
<</replace>>\
<</button>>
</span>\
<</if>>\
<<button "Back" "Chanel Bedroom">><</button>>
<div align='center' style='font-size: 150%;'><b>Chanel's wardrobe</b></div>\
<img src="content/location/wardrobe2.jpg">
<<if $inventory.indexOf("underwear3") != -1>>\
<div align='center'>\
This is a huge wardrobe.
</div>\
<<else>>\
<span id='text'>\
<div align='center'>\
You see something on the floor.
</div>\
<<button "Check it">>
<<replace "#text">>\
<img src="content/pdoll/clothes/underwear/underwear3.png" position: center;>
<div align='center'>\
It is black thong.
</div>\
<<button "Take it" "Chanel Bedroom">><<addToInv "underwear3">>\<</button>>
<</replace>>\
<</button>>
</span>\
<</if>>\
<<button "Back" "Chanel Bedroom">><</button>>
<div align='center' style='font-size: 150%;'><b>Chanel's bathroom</b></div>\
<img src="content/location/shower1.jpg">
<<if $gameDate.getHours() >= "6" and $gameDate.getHours() < "20">>\
<div align='center'>\
No locks on the door. Good.
</div>\
<<else>>\
<<if $chanelshowerdaily is false>>\
<div align='center'>\
Chanel is in the bathroom.
</div>\
<<if $CurEN >= 10>>\
<<button "Peek inside" "Chanel shower">><</button>>
<<else>>\
<div align='center'>\
You are tired to peak on her.
</div>\
<</if>>\
<<else>>\
<div align='center'>\
No locks on the door. Good.
</div>\
<</if>>\
<</if>>\
<<button "Leave" "Chanel Bedroom">><</button>>
<<if $chanelshower == 1>>\
<video src="content/peoples/chanel/shower/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>You peak in her bathroom. Chanel just starts making a bath for herself.</div>\
<<addarousal 10>>\
<<button "Stay and watch her" "Chanel shower">><<set $chanelshower = 2>><</button>>
<<button "Leave" "Chanel Bedroom">><<set $chanelshower = 1>><</button>>
\
\
\
\
\
<<elseif $chanelshower == 2>>\
<video src="content/peoples/chanel/shower/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is playing with her body while she is getting naked.
</div>\
<<addarousal 10>>\
<<button "Stay and watch her" "Chanel shower">><<set $chanelshower = 3>><</button>>
<<button "Leave" "Chanel Bedroom">><<set $chanelshower = 1>><</button>>
\
\
\
\
\
<<elseif $chanelshower == 3>>\
<video src="content/peoples/chanel/shower/3.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She sits down on the bathtub and turn around.
</div>\
<<speech "Chanel">>Do you think I didn't notice your hungry eyes? I will let you watch me but no touching.<</speech>>
<<addarousal 10>>\
<<button "Stay and watch her" "Chanel shower">><<set $chanelshower = 4>><</button>>
<<button "Leave" "Chanel Bedroom">><<set $chanelshower = 1>><</button>>
\
\
\
\
\
<<elseif $chanelshower == 4>>\
<video src="content/peoples/chanel/shower/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She blow you a kiss and starts the show.
</div>\
<<addarousal 10>>\
<<button "Continue" "Chanel shower">><<set $chanelshower = 5>><</button>>
\
\
\
\
\
<<elseif $chanelshower == 5>>\
<video src="content/peoples/chanel/shower/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is playing with her half erected cock.
</div>\
<<addarousal 10>>\
<<button "Continue" "Chanel shower">><<set $chanelshower = 6>><</button>>
\
\
\
\
\
<<elseif $chanelshower == 6>>\
<video src="content/peoples/chanel/shower/6.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Stroking her cock while she is watching you.
</div>\
<<addarousal 10>>\
<<button "Continue" "Chanel shower">><<set $chanelshower = 7>><</button>>
\
\
\
\
\
<<elseif $chanelshower == 7>>\
<video src="content/peoples/chanel/shower/7.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is laying in the bathtub.
</div>\
<<addarousal 10>>\
<<button "Continue" "Chanel shower">><<set $chanelshower = 8>><</button>>
\
\
\
\
\
<<elseif $chanelshower == 8>>\
<video src="content/peoples/chanel/shower/8.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is very close to the orgasm.
</div>\
<<addarousal 10>>\
<<button "Continue" "Chanel shower">><<set $chanelshower = 9>><</button>>
\
\
\
\
\
<<elseif $chanelshower == 9>>\
<video src="content/peoples/chanel/shower/9.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is cumming in her hand and lick it off from it.
</div>\
<<speech "Chanel">>That was intense. I will let you watch me in the future. Let me clean my self, see you later.<</speech>>
<<addarousal 10>>\
<<set $chanelrepo += 1>>\
<<button "Leave" "Chanel Bedroom">><<set $chanelshower = 1>><<set $chanelshowerdaily to true>><</button>>
<</if>>\
<div align='center' style='font-size: 150%;'><b>Chanel's Bedroom</b></div>\
<img src="content/location/bedroom2.jpg">
<<if $chanelspycam == 0>>\
<<if $spycam >= 1>>\
<div align='center'>\
You hide the camera.
</div>\
<<set $chanelspycam = 1>>\
<<set $spycam -= 1>>\
<<else>>\
<div align='center'>\
You don`t have a camera.
</div>\
<</if>>\
<<elseif $chanelspycam == 2>>\
<<if $spycam >= 1 and $superspycam == 0>>\
<div align='center'>\
You can not use normal spycam because she will find it. Use something better.
</div>\
<<elseif $superspycam >= 1>>\
<div align='center'>\
You hide the professional camera.
</div>\
<<set $chanelspycam = 3>>\
<<set $superspycam -= 1>>\
<<else>>\
<div align='center'>\
You don`t have a camera.
</div>\
<</if>>\
<<else>>\
<div align='center'>\
You have already hidden a camera here.
</div>\
<</if>>\
<<button "Back" "Chanel Bedroom">><</button>>
<img src="content/peoples/chanel/chanel_angry.jpg">
<<speech "Chanel">>You little piece of shit! Did you install a spycam in my bedroom? What the hell? Oh, man, I own you now. You are MINE! You are going to be my slave. Anything I tell you to do, you better do it or my mom is going to find out about this little gadget of yours. You will get off lucky if she just kicks you out of town! You got it you little pipsqueak?<</speech>>
<<speech "player" "$fname">>Yes...<</speech>>
<<speech "Chanel">>From now on, you will address me as Princess Chanel. Let’s hear it.<</speech>>
<<speech "player" "$fname">>Yes... Princess Chanel.<</speech>>
<<speech "Chanel">>Now, your first order is to go out and buy a maid uniform for yourself. One of the skimpy ones that they sell at the adult shop at the mall. I want you to send me a message once you buy it. Ohhhhh, I’m going to have so much fun with you… You have no idea.<</speech>>
<div align='center'>\
As she walks out, your blood pressure takes a little time before returning to normal. You are in such deep shit now.
</div>\
<<button "Back" "Player Room">><<set $chanelspycam = 2>><<set $questmaid = 1>><<addmins 30>><</button>>
<<if $pgender is "male">>\
<video @src="'content/peoples/player/chores/m' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<<elseif $pgender is "female">>\
<video @src="'content/peoples/player/chores/f' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<<elseif $pgender is "shemale">>\
<video @src="'content/peoples/player/chores/s' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<</if>>\
<<set $chanelroomcleaning to true>>\
<<addhours 1>>\
<<takeenergy 20>>\
<<addarousal 20>>\
<<button "Finish the cleaning" "Hallway Down">><<set $pdollmaid to false>><</button>>
<div align='center' style='font-size: 150%;'><b>PC Shop</b></div>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:25%"><b></b></th>
<th style="width:25%"><b>Item</b></th>
<th style="width:25%"><b>Price</b></th>
<th style="width:25%"><b>Action</b></th>
</tr>\
</thead>\
<tbody>\
<tr>\
<td><<image "content/objects/spycam.jpg" 100>></td>
<td><b>Basic SpyCam</b></td>
<td><b>200</b></td>
<<if $credit >= 200>>\
<td><<button "Buy" "PC Shop Buy">>
<<set $credit -= 200>>
<<set $spycam += 1>>
<</button>></td>
<<else>>\
You don't have enough credit.
<</if>>\
</tr>\
<tr>\
<<if $chanelspycam >= 2>>\
<td><<image "content/objects/superspycam.gif" 100>></td>
<td><b>Professional SpyCam</b></td>
<td><b>500</b></td>
<<if $credit >= 500>>\
<td><<button "Buy" "PC Shop Buy">>
<<set $credit -= 500>>
<<set $superspycam += 1>>
<</button>></td>
<<else>>\
You don't have enough credit.
<</if>>\
<</if>>\
</tr>\
</tbody>\
</table>\
<<button "Leave" "Map">><</button>>
<div align='center' style='font-size: 150%;'><b>PC Shop</b></div>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<if $pcshopfirst is false>>\
<<speech "player" "$fname">>Pardon me, I’m looking for Bonnie?<</speech>>
<<speech "Bonnie">>Oh shit. What are you doing here $fname? How did you find me? Do they know you are here?<</speech>>
<<speech "player" "$fname">>Huh? What are you talking about? Do you know me? Are you Bonnie?<</speech>>
<<speech "Bonnie">>Just come inside. Quick! Okay, that’s better. So yeah, I’m Bonnie obviously. I know who you are because… Well, I used to work with your parents.<</speech>>
<<speech "player" "$fname">>Seriously? Why should I believe you?<</speech>>
<<speech "Bonnie">>Well, how about this: the day your parents had their accident, I was the one that told your grandmother.<</speech>>
<<speech "player" "$fname">>Go on...<</speech>>
<<speech "Bonnie">>Hmmm… Oh, did you get the USB stick I left for you?<</speech>>
<<speech "player" "$fname">>That was you? Yeah, I found it.<</speech>>
<<speech "Bonnie">>I’m so glad. I had wondered. Your mother asked me to make the drive for insurance in case anything happened to her or your dad. So you found the file on it with your name, right? Is that why you are here? I’m guessing you haven’t been able to open the file. It has a message from your mom. If I gave you the password to open it, will that finally convince you that you can trust me?<</speech>>
<<speech "player" "$fname">>That would go a long way in helping me, yeah.<</speech>>
<<speech "Bonnie">>Great… Now… Where did I put it?<</speech>>
<div align='center'>\
Bonnie opens a drawer and rummages around inside for a minute.
</div>\
<<speech "Bonnie">>It has to be in here somewhere. Ah, here it is. Here, take this paper. You will find the password written inside. But hang on. Why did you come to my shop looking for me?<</speech>>
<<speech "player" "$fname">>Well, put simply, I want to destroy Nemesis Corp. to avenge my parents.<</speech>>
<<speech "Bonnie">>Yeah… well… There is probably something you should know. Your parents aren’t dead.<</speech>>
<<speech "player" "$fname">>Huh? Say that again?<</speech>>
<<speech "Bonnie">>You heard me right. Your parents didn’t die in the accident.<</speech>>
<<speech "player" "$fname">>But you said that you came to my house and said that they had been killed!<</speech>>
<<speech "Bonnie">>And I’m really sorry about that but trust me when I say it was for the best. For your safety, it was best if you believed they had died. Your parents had a plan that they were sure was the right thing to do. In hindsight, it could have been better obviously. They injected themselves with a super serum to give them super strength and went inside the company headquarters intending to round everyone up and deliver them to the police. When they got there, security had already been alerted and they were captured. Even with their super strength, they didn’t stand a chance without the element of surprise.<</speech>>
<<speech "player" "$fname">>So where are they now? Locked up inside the Nemesis Corp. headquarters somewhere then?<</speech>>
<<speech "Bonnie">>I wish I knew. I’m still working on it. All I’ve been able to find out so far was that after they were captured, they were interrogated but thanks to their super serum, they have been able to hold out despite their best efforts. They destroyed all their research and they only made enough serum for the two of them before they left so Nemesis hasn’t been able to get anything from them. Yet. They, fortunately, don’t know about you as far as I can tell. You are their only weakness. Now, all that time you spent secluded inside your house might make more sense. You have to be very very careful $fname. If they discover you, I don’t know if your parents will be able to help themselves from giving Nemesis Corp. the formula to their serum.<</speech>>
<<speech "player" "$fname">>I still can’t believe it. They are really alive? I have to do something. I have to rescue them somehow. What can I do?<</speech>>
<<speech "Bonnie">>I can see that you are truly determined. I don’t think I could stop you even if I tried, could it? I suppose the best thing to do would be to help you. It won’t be easy you know. We will have to be more cautious than your parents were. And you might find yourself doing things that would compromise your integrity and very possibly look back on with regret. But once you start down this road, there is no going back. For good or ill. Are you sure you are up for it?<</speech>>
<<speech "player" "$fname">>Of course I am. They are my parents! I’ll do whatever I can. Whatever it takes.<</speech>>
<<speech "Bonnie">>Good. I can see that I wasn’t wrong about you. Alright, I have been working on a plan. Now that you are here, I will need to make some adjustments but in some ways, it should be a lot easier with your help. There is a special microscope in the lab that I need to get. I’ve been working on a way to sneak in to steal it. Without help I…<</speech>>
<<speech "player" "$fname">>I’m working in the lab. I could probably just submit a request for it and get access to it.<</speech>>
<<speech "Bonnie">>…Okay, this might be easier than I thought. The next items might give you a reason to pause though. I will need you to be a girl. Like a real girl.<</speech>>
<<speech "player" "$fname">>I’m not following you. You want me to dress up like a girl? Why?<</speech>>
<<speech "Bonnie">>No, for the plan to work, I need you to actually transform your body into a woman. On the USB drive, you will find all the recipes for the serums you will need.<</speech>>
<<speech "player" "$fname">>I still don’t get it. Just why exactly would you need me to transform my body into a woman's?<</speech>>
<<speech "Bonnie">>Okay, keep an open mind here. I need you to be a woman so you can use your body to seduce some key people. Don’t underestimate the power of sex. It is as powerful a weapon as you will find anywhere.<</speech>>
<<speech "player" "$fname">>You can’t be serious Bonnie. Why me? Why don’t you do it? After all, you are the real woman here.<</speech>>
<<speech "Bonnie">>There is a very good reason why it has to be you but I won’t go into it now. Just trust me on this, it has to be you.<</speech>>
<<speech "player" "$fname">>But I’m not gay! Even if I am a woman, my mind is a man and I don’t find men attractive. Like, at all.<</speech>>
<<speech "Bonnie">>I have a solution for that too. To help with your mental transformation, I have a friend that is an excellent hypnotist that will help you. Oh, and there is another very important thing you should know about Futaland. A few years back, there was an explosion at the lab.<</speech>>
<<speech "player" "$fname">>Oh yeah, I think I heard about that from Mariana Cordoba. I’ve been staying with her family since I moved here to work at the lab. She said her husband died in the explosion.<</speech>>
<<speech "Bonnie">>Holy shit! You are staying at the Cordoba mansion? Huh, well… She probably didn’t tell you the whole story. Did she tell you that they had been trying to reproduce your parent’s serum when the explosion happened? Or that the explosion released a virus in the town? The virus only survived 48 hours or so but in that time, every woman it infected grew a penis.<</speech>>
<<speech "player" "$fname">>What, what? Seriously?<</speech>>
<<speech "Bonnie">>That’s right. Every single documented case where a woman contracted the virus, they grew a dick. I thank my lucky stars that I wasn’t here. Okay, take this tablet. I can use it to send you more information. Go get the microscope and use any free time you can find to work on the serum on the disk.<</speech>>
<<speech "player" "$fname">>Got it. I’ll bring the microscope back to you once I can and then work on the serum over the weekend. Thank you for helping me, Bonnie. I don’t know what I would have done without you.<</speech>>
<<speech "Bonnie">>Don’t mention it. And don’t worry kid, we’ll free your parents together.<</speech>>
<<set $pcshopfirst to true>>\
<<set $questmicroscope = 1>>\
<<set $questtransformation = 1>>\
<<button "Leave" "Map">><<addMail 1>><</button>>
\
\
\
<<else>>\
<<button "Talk with Bonnie" "PC Shop Bonnie">><</button>>
<<button "Buy something" "PC Shop Buy">><</button>>
<<button "Leave" "Map">><</button>>
<</if>>\
<div align='center' style='font-size: 150%;'><b>PC Shop</b></div>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<speech "player" "$fname">>Hi, Bonnie. I was able to get the Microscope. It was surprisingly easy.<</speech>>
<<speech "Bonnie">>Perfect. Yeah, that’s the one I needed. Well done $fname. Here is a little reward for you.<</speech>>
<div align='center'>\
Bonnie pulls her shirt and bra up exposing her firm breasts and rubs them while you stare at them dumbfounded. This lasts about 30 seconds and as abruptly as it started, she pulls her bra and shirt back down again.
<video src="content/peoples/bonnie/boob1.mp4" style="width: 100%;" autoplay loop></video>
</div>\
<<speech "player" "$fname">>Uhm, well… That was unexpected.<</speech>>
<<speech "Bonnie">>Be a good boy for me $fname and I may someday let you touch them. Now scoot out of here and remember to work on the other serum when you have the time.<</speech>>
<<speech "player" "$fname">>Sure, Bonnie. Okay. See you later.<</speech>>
<<set $microscope -= 1>>\
<<set $questmicroscope = 3>>\
<<set $bonnierepo += 1>>\
<<button "Leave" "Map">><</button>>
<div align='center' style='font-size: 150%;'><b>PC Shop</b></div>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<if $microscope == 1 and $questmicroscope == 2>>\
<<button "Give her the microscope" "Quest Microscope">><</button>>
<</if>>\
\
\
\
<<if $fbsv >= 1 and $questtransformation == 1>>\
<<button "Tell her You have the Female Body Serum" "Quest Female Transformation">><</button>>
<</if>>\
\
\
\
<<if $questtransformation == 4>>\
<<button "Tell her what Mariana done to you" "Quest Female Transformation">><</button>>
<</if>>\
\
\
\
<<if $questtransformation == 6>>\
<<button "Tell her you can dress as a woman" "Quest Female Transformation">><</button>>
<</if>>\
\
\
\
<<if $questsecurityguy == 1>>\
<<button "Ask her about the first mission" "Quest security guy 1">><</button>>
<</if>>\
\
\
\
<<if $questsecurityguy == 2 and $esv >= 1>>\
<<button "Give her the Energy serum" "Quest security guy 1">><</button>>
<</if>>\
\
\
\
<<if $questsecurityguy == 4>>\
<<button "Give the device to Bonnie" "Quest security guy 1">><</button>>
<</if>>\
\
\
\
<<if $questtracking == 1 and GameDays[$gameDate.getDay()] is "Thu">>\
<<button "Ask her about the device" "Quest tracking 1">><</button>>
<</if>>\
\
\
\
<<if $questtracking == 2 and $money >= 500>>\
<<button "Pay for the uniform" "Quest tracking 1">><</button>>
<</if>>\
\
\
\
<<if $questtracking == 3 and $mbsv >= 1 and $sbsv >= 1>>\
<<button "Tell her you got the serums" "Quest tracking 1">><</button>>
<</if>>\
\
\
\
<<if $kimquest == 8>>\
<<button "Speak with her" "Kimberlee quest 2">><</button>>
<</if>>\
\
\
\
<<if $kimquest == 9 and $money >= 1000>>\
<<button "Tell her you got the money" "Kimberlee quest 2">><</button>>
<</if>>\
\
\
\
<<if $kimquest >= 11 and $kimquest < 16 and $questdaycount >= 3>>\
<<button "Tell Bonnie you need another bug" "Bug">><</button>>
<</if>>\
\
\
\
<<if $labside == 1>>\
<<button "Ask her what she wants" "Labside Bonnie">><</button>>
<</if>>\
\
\
\
<<if $angelesquest == 5>>\
<<button "Give her Mariana's password" "Angeles quest">><</button>>
<</if>>\
\
\
\
<<if $angelesquest == 8>>\
<<button "Speak with her" "Final quest">><</button>>
<</if>>\
\
\
\
<<if $finalquest == 2>>\
<<button "Speak with her" "Final quest">><</button>>
<</if>>\
\
\
\
<<if $finalquest == 6>>\
<<button "Give the USB Drive to her" "Final quest">><</button>>
<</if>>\
\
\
\
<<if $finalquest == 9>>\
<<button "Speak with her" "Final quest">><</button>>
<</if>>\
\
\
\
<<if $finalquest == 16 and $pgender is "male" and $stsv >= 1 and $gameDate.getHours() < "16">>\
<<button "Start the final quest" "Final quest">><</button>>
<</if>>\
<<button "Leave" "Map">><</button>>
<<if $questtransformation == 1>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<speech "Bonnie">>Wonderful. Meet with me at this address at 20:00 on Friday. That is my house.<</speech>>
\
<<set $questtransformation = 2>>\
<<button "Leave" "PC Shop">><</button>>
\
\
\
<<elseif $questtransformation == 2>>\
<img src="content/location/bonnie_guest_room.jpg">
\
<div align='center'>\
Bonnie opens the door, quickly ushers you inside, and then pokes her head out the door to see if anyone might have seen you enter. She guides you back to what appears to be a spare room.
</div>\
<<speech "Bonnie">>We’ll do your first transformation here. It might be a bit painful and might take a while, so I will try to make it as comfortable for you as possible. The first one takes longer, but any other changes should happen much more quickly once that is done. Okay, ready to get started?<</speech>>
<div align='center'>\
Before you have a chance to answer, she has already jabbed your shoulder with a hypodermic needle. You are just opening your mouth to swear at Bonnie when the world goes fuzzy and starts to spin. Everything goes black.
</div>\
<<set $daykey to 7>>\
<<set $questtransformation = 3>>\
<<button "Wake up" "Quest Female Transformation">><</button>>
\
\
\
<<elseif $questtransformation == 3>>\
<img src="content/location/bonnie_guest_room.jpg">
\
<div align='center'>\
When you wake up, you see that you are still on the bed in Bonnie’s spare bedroom. You look at your watch and see that two days have gone by. You feel a bit strange, and the more you move, the more obvious it becomes why. You look down at your naked body, and the first thing you see are two perky looking average-sized breasts jutting from your chest. Your hands reflexively pull up and grasp them. They feel rather lovely in your hands. You sit up further, and your eyes fly open wider as you see that you no longer have your familiar penis nestled between your legs where you are used to seeing it. You spread your legs sider as a hand slides between them. Sure enough, there were your balls used to be are warm lips indicating the entrance to your new pussy. Your fingers instinctively explore the fleshy exterior folds of the lips as you adjust to the new anatomy.
</div>\
<img src="content/peoples/player/pfemalebody.jpg" style="max-width: 80%;">
\
<<speech "player" "$fname">>Holy shit… I have a pussy. What the hell have I done…? I hope Bonnie knows what she is doing.<</speech>>
<div align='center'>\
You sit up further, look around the room, and see some feminine clothes folded on a chair next to the bed. You take a deep breath, swing your legs over the side of the bed and pick them up to examine them more closely.
</div>\
<<speech "player" "$fname">>Well… when in Rome…<</speech>>
<div align='center'>\
You have a more effortless time dressing than you expect. Once fully clothes, you slowly crack open the door and peer out and see Bonnie in the living room sitting on the couch staring raptly at her laptop. You step out of the room, and she looks up and closes the lid on her computer.
</div>\
<<speech "Bonnie">>Oh good, you are finally up. I see you found the clothes I left for you. They seem to fit you alright. We will need to get you some proper clothes soon enough.<</speech>>
<<speech "player" "$fname">>Bonnie, I am still baffled about why I had to be a woman for the plan. I have no idea how to be a woman! How is this supposed to help us?<</speech>>
<<speech "Bonnie">>Just take a deep breath $fname. I’ll get there. I’ll make sure you get the help you need to act more feminine. Once you are ready, I will hook you up with a security guard from the lab. I need you to make him comfortable and let down his guard so you can clone his security bracelet. Once that is done, we will transform you back into your old body.<</speech>>
<<speech "player" "$fname">>Did you say that the first time was the hardest? What will it be like going back again?<</speech>>
<<speech "Bonnie">>Right. Now that your body has accepted the serum, any other transformations that you need to do will happen much faster. Like only perhaps an hour to complete. Don’t worry. I’ll send you more information on your tablet. I’m also going to send you some hypnosis videos that should help you feel more comfortable in your current form. We need to get you back home before it gets too late. Hopefully, no one has noticed your absence.<</speech>>
<div align='center'>\
You feel a bit rushed as Bonnie ushers you out the door, and you stand there on her porch longer than you probably should as you get your bearings back about you.
</div>\
<<adddays 1>>\
<<addhours 16>>\
<<set $questtransformation = 4>>\
<<set $fbsv -= 1>>\
<<set $pgender to "female">>\
<<set $boobsize = 3>>\
<<set $credit += $workdays*100>>\
<<set $creditcounter += $workdays*100>>\
<<set $workdays = 0>>\
<<set $ht = 0>>\
<<button "Go home" "Home transformation 1">><<addMail 2>><</button>>
\
\
\
<<elseif $questtransformation == 4>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<speech "player" "$fname">>Bonnie!<</speech>>
<<speech "Bonnie">>Woah, $fname, what happened? Did you change back into your male body? What the hell happened? Oh, for fuck sake, you are ruining everything!<</speech>>
<<speech "player" "$fname">>Bonnie, I need your help! I’m in huge trouble. After I left you, I went straight home. However, Mariana caught me before I could make it into my room. She confronted me, and I did my best to come up with a good explanation. I didn’t want to jeopardize our plan. I told her that I had transformed my body because I had always wanted to be a girl. She went straight to the how, so I told her about the serum. I told her that I had developed it in her lab.<</speech>>
<<speech "Bonnie">>You FUCKING idiot! You have shit for brains! How could you tell her about the serums?<</speech>>
<<speech "player" "$fname">>Just the female body serum.<</speech>>
<<speech "Bonnie">>Then how did you turn back to your male body?<</speech>>
<<speech "player" "$fname">>That wasn’t me. Mariana did it… Well, she had Chanel do it. They have a serum of their own. There was a lab accident of some sort, and from that, they found their serum. Anyway, Chanel injected me with theirs, and when I woke up, I was like, you see me now.<</speech>>
<<speech "Bonnie">>So I’m confused; why would they turn you back into a man if you told them that you always wanted to be a woman? Am I missing something?<</speech>>
<<speech "player" "$fname">>They gave me some bullshit explanation about it not being a good idea to turn into a woman without some training first. They want to train me, so I have to follow their orders. I’m in deep shit.<</speech>>
<<speech "Bonnie">>Interesting… Very interesting… This might work in our favor.<</speech>>
<<speech "player" "$fname">>Wait, what? Bonnie, no!<</speech>>
<<speech "Bonnie">>Just hear me out $fname. Have you heard of the expression, “keep your friends close and your enemies closer”? You can be the perfect spy if you play along with their game and keep your wits about you. Just keep your eyes and ears open. You might learn something beneficial. So, for the next step in my plan, we will take one of the security guards that frequents the club home using your feminine wiles. However, we have a bit of a wrinkle in the plan now that you are back in your male body. But perhaps we can dress you up to pass as a woman, and if he is drunk enough, you might not notice that you have a cock under your dress. Don’t give me that look. Just because you have a dick still doesn’t mean that you have to be one too. I know it isn’t ideal, but that is just where we are at. I expect that Mariana is going to get you all dolled up before too long. Once your makeover is complete, come back to me, and we’ll start the ball rolling on the next steps. Good luck $fname!<</speech>>
<div align='center'>\
You roll your eyes as you sigh in resignation.
</div>\
<<speech "player" "$fname">>Thanks for nothing Bonnie... Alright, I’ll be back once I’m passable as a woman again. See ya.<</speech>>
\
<<set $questtransformation = 5>>\
<<button "Leave" "PC Shop">><</button>>
\
\
\
<<elseif $questtransformation == 6>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<speech "player" "$fname">>Hi, Bonnie, it's $fname.<</speech>>
<<speech "Bonnie">>Oh, there you are. What took you so fucking long?<</speech>>
<<speech "player" "$fname">>They made me do some lame-ass tests and kept me locked in chastity for a week. They finally let me free, but I have to wear these fake boobs and dress as a woman.<</speech>>
<<speech "Bonnie">>Oh, that’s great news! No, it really is. I know it is a bit uncomfortable for you to be stuck between being a man and a woman, but I know what we can do… We will use a shemale serum on you to help.<</speech>>
<<speech "player" "$fname">>They will notice. They are checking on me very closely.<</speech>>
<<speech "Bonnie">>Just tell them that their training is doing a perfect job of feminizing you or some bullshit like that.<</speech>>
<<speech "player" "$fname">>And the fake boobs? What am I supposed to do about them?<</speech>>
<<speech "Bonnie">>Here let me take a closer look. Wow, these are pretty high end. I can’t even tell that they are fake just looking at them. Here, may I touch them for a moment? Yeah, these are genuinely lifelike. I bet they would never know the difference between them and if you grew natural breasts. How about this. Why don’t you come to my house this weekend sometime and you can do the transition there? That will ensure that they don’t catch you in the act by accident. Once that is done, meet me back here, and we’ll figure out the last details of the plan.<</speech>>
<<speech "player" "$fname">>Yeah, alright. That sounds pretty good. Okay, Bonnie, I’ll see you then.<</speech>>
\
<<set $questtransformation = 7>>\
<<button "Leave" "PC Shop">><</button>>
\
\
\
<<elseif $questtransformation == 7>>\
<img src="content/location/bonnie_guest_room.jpg">
\
<<speech "Bonnie">>You can use this room again. It will be much easier now and quicker. I have to go now. After you finish, close the door and try not to mess it up again when you are going home. Come and see me in the shop later so I can tell you about the first mission. Bye.<</speech>>
\
<<set $sbsv -= 1>><<addhours 1>>\
<<set $questtransformation = 8>>\
<<button "Inject the shemale body serum" "Quest Female Transformation">><</button>>
\
\
\
<<elseif $questtransformation == 8>>>>\
<img src="content/trans/13.jpg" style="max-width: 80%;">
\
<div align='center'>\
You made it. You are a real shemale now with natural boobs and a more feminine body. Bonnie is not here, so you leave.
</div>\
<<set $questsecurityguy = 1>>\
<<button "Leave" "Map">><<addmins 10>><</button>>
<</if>>\
<<if $ht == 0>>\
<img src="content/location/hallway_down.jpg">
\
<div align='center'>\
You do your best to enter the house silently. You start to go up the stairs and cringe as you hear a soft squeak halfway up. Just as you reach your room’s door, you jump as you hear a harsh voice behind you.
</div>\
<<set $ht = 1>>\
<<button "Turn around" "Home transformation 1">><</button>>
\
\/* ---------------- 2. PART ------------------*/
\
<<elseif $ht == 1>>\
<img src="content/trans/1.jpg" style="max-width: 80%;">
\
<<speech "Mariana">>Who the hell are you, and why are you in my house?!<</speech>>
<<speech "player" "$fname">>Wow, relax Mariana, it’s just me.<</speech>>
<<speech "Mariana">>$fname, is that you?! I hardly recognize you. You look so different! Why do you look so much like a girl?<</speech>>
<div align='center'>\
You stand there looking at her slack-jawed, trying to scramble to think of something to say. You can’t tell her the truth without jeopardizing your mission. What can you tell her that could reasonably explain your body’s transformation? It needs to be good because she is only the first to ask. Mariana’s eyes start to glare at you as you realize that you have taken too long to respond. You can’t think of a reasonable explanation now because now you think too hard about Mariana and her current reaction. You are stuck in a mental feedback loop, and you feel your panic levels rising.
</div>\
<<speech "Mariana">>$fname, are you alright? You are looking very pale. What happened to you?<</speech>>
<div align='center'>\
You finally break out of your panic and take a deep breath as you feel your mental faculties returning to normal.
</div>\
<<speech "player" "$fname">>I don’t know where to start. It isn’t easy to talk about.<</speech>>
<<speech "Mariana">>I can see that. Here, why don’t you come to sit down? You look like you might faint. Relax and tell me everything.<</speech>>
<div align='center'>\
You follow Mariana to a sitting room where she sits on the couch and pats her hand on the cushion next to her, inviting you to join her. You sit and take a deep breath before spinning your yarn.
</div>\
<<set $ht = 2>>\
<<button "Follow her" "Home transformation 1">><</button>>
\
\/* ---------------- 3. PART ------------------*/
\
<<elseif $ht == 2>>\
<img src="content/trans/2.jpg" style="max-width: 50%;">
\
<<speech "player" "$fname">>Well, Mariana, I have always felt like I was a girl trapped in a boy’s body. This is an affliction I have suffered from my whole life. I have been desperate to find a way to change my body, and finally, I found a way.<</speech>>
<<speech "Mariana">>That sounds fantastic, honey. I had no idea that you were suffering. That is incredible that you found a way to change. Will you tell me how? The change is rather remarkable! You look rather stunning as a woman, by the way.<</speech>>
<<speech "player" "$fname">>Well, I’ve been working on a project for several years and have made a breakthrough using your lab. I finally have developed a serum that is able to transform a male body into a female body.<</speech>>
<<speech "Mariana">>Wow, seriously? You did that in my lab? What else can your serum do? Can you do anything else? How does it work?<</speech>>
<<speech "player" "$fname">>So, it only works transitioning from male to female currently. That has been my whole goal, so I haven’t looked into anything else. It just changes the body and doesn’t affect the brain, in case you were wondering.<</speech>>
<<speech "Mariana">>Well, that’s a pity. We’ll have to see what we can do about that.<</speech>>
<div align='center'>\
Mariana calls out loudly, asking Chanel to bring her a dose of UBRS. Just as you turn towards her to ask about UBRS, Chanel steps into the room and jabs your shoulder with a hypodermic needle.
</div>\
<<set $ht = 3>>\
<<addhours 8>>\
<<button "Your vision swims and everything goes black" "Home transformation 1">><</button>>
\
\/* ---------------- 4. PART ------------------*/
\
<<elseif $ht == 3>>\
<img src="content/trans/2.jpg" style="max-width: 50%;">
\
<div align='center'>\
You finally come back to yourself lying on the floor. You feel a little puddle of drool has escaped your mouth, pooling on the carpet under your mouth. You sit up and wipe your lip and see that Mariana is still on the couch looking down at you with an unreadable expression on her face.
</div>\
<<speech "player" "$fname">>What… what happened?<</speech>>
<<speech "Mariana">>You have gone about your transition completely backwards $fname. You can’t just change your body and expect the mind to follow. Mind over matter, my dear. I will be so happy to help you in your transition, and we will do it the right way. You have no idea how difficult it is to become a woman. We will focus on your mind first. That is where the UBRS comes in. It stands for Universal Body Retransformation Serum. This is one of my own personal developments, a happy side-effect of a lab accident. I have been marketing it as a solution to viruses or weaponized serums that will allow the recipient to transition back to your body in its original state. So, you are back in your male body once more. Chanel and I will take you under our wing and help you be sexy and, dare I say, naughty girl, you are on the inside and bring that out for all to see. But we will start with baby steps. We’ll focus on the basics. If you follow our instructions carefully, you will be the woman you have always dreamed of. And here is your first instruction: Here are Chanel’s panties.<</speech>>
\
<img src="content/pdoll//clothes/underwear/underwear2.png" style="max-width: 50%;">
\
<<speech "Mariana">>Put them on for me. From now on, you will only be wearing feminine panties. No more of those dull masculine underwear for you. I want you to come see me in my office first thing tomorrow morning. Fair warning: I will be checking to make sure you are wearing the right underwear. You will be punished for any disobedience. But as we are making your dream come true, I’m sure that won’t be a problem. Rest now my dear and I’ll see you in the morning. The first day of the new you and your new life.<</speech>>
<div align='center'>\
As you make your way back to your bedroom, you think over the unexpected developments. This is going to be a bit more challenging than you thought. You feel Chanel’s panties snuggling tight against you as you lay in bed. You imagine her wearing them and feeling yourself getting hard, which only worsens. You really hope you are up to the task. You exert all your willpower to derail that train of thought and manage to drift off to sleep.
</div>\
<<button "Go to sleep" "Player Room">>
<<set $ht = 4>>\
<<set $mdcheckup to false>>\
<<set $htpoint = 0>>\
<<set $pgender to "male">>\
<<addToInv "underwear2">>\
<<set $currUnderwear to "underwear2">>\
<<set $punderwear to "female">>\
<<addenergy 100>>\
<<if $gameDate.getHours() < "6">>\
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<<elseif $gameDate.getHours() >= "20">>\
<<addhours 5>>
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<</if>>
<</button>>
\
\/* ---------------- 5. PART ------------------*/
\
<<elseif $ht == 4>>\
<<addhours 2>>\
<img src="content/trans/2.jpg" style="max-width: 50%;">
<<speech "Mariana">>Hey $fname, I want to talk to you for a minute. You’ve been doing very well wearing your panties. You’ve been a good boy following directions. I think you are ready now for the next step. Tada! Here is a bra for you to wear. Isn’t it lovely? It even matches your panties. Please put it on for me.<</speech>>
<img src="content/pdoll/clothes/bra/bra1.png" style="max-width: 50%;">
<<speech "Mariana">>Yes, that is very nice. It is a little empty in the cups still but that will come. Now, how often do you masturbate? Oh come now, there is no need to be shy with me. You are one of us. We own you. Anyway, I think I know the answer. I am going to test you now. If you fail the test, I will put you on the drastic path to your transformation. Trust me, you don’t want that path. If you pass, your transformation will be much much more enjoyable. Sounds good right? Well, from now on, you aren’t allowed to orgasm. No cumming whatsoever. No matter how tempted you are, if you cum, you fail and down the drastic path you go. I will continue to check to make sure you continue to wear your panties and bra each weekday and once you have 5 successful check, I will check you at night again to make sure you’ve saved yourself. So be good. Wear your panties, wear your bra, and don’t cum. Got it? Good. You may go. Good night $fname.<</speech>>
<<button "Go to sleep" "Player Room">><<set $ht = 5>><<addToInv "bra1">><<set $currBra to "bra1">><<set $pbra to "female">><<set $htpoint = 0>><<set $mdcheckup to false>><<set $htcumcheck = 1>><<set $CurEN = ($CurEN = 100).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>
<<if $gameDate.getHours() < "6">>\
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<<elseif $gameDate.getHours() >= "20">>\
<<addhours 5>>
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<</if>>
<</button>>
\
\/* ---------------- 6. PART ------------------*/
\
<<elseif $ht == 5>>\
<img src="content/trans/2.jpg" style="max-width: 50%;">
<<addhours 2>>\
<<speech "Mariana">>Good evening $fname. You know what today is I trust. Time to check your balls. Now tell me the truth, have you been a good boy, or have you been a disobedient slut and emptied your balls?<</speech>>
<<if $noorgasm >= $htcumcheck>>\
<<speech "player" "$fname">>I have been a good boy Mariana.<</speech>>
<<speech "Mariana">>Show me. Please take off your pants.<</speech>>
<div align='center'>You lower your pants to your knees and the panties quickly follow. She walks up to you and reaches a hand between your thighs. You bite your lip as she fondles your balls and squeezes them. They are so sensitive right now.</div>\
<video src="content/trans/2.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>Ah yes, I can feel it. They are nice and full. You have indeed been a good boy for me $fname. I’m so happy you have chosen the easy path. I will be sure that these are nice and empty before we start the next phase.<</speech>>
<<button "Enjoy" "Home transformation 1">><<set $ht = 8>><</button>>
<<else>>\
<div align='center'>You know your balls are not full. You was a naughty boy. You can tell the truth or lie about it.</div>\
<<button "Truth" "Home transformation 1">><<set $ht = 6>><</button>>
<<button "Lie" "Home transformation 1">><<set $ht = 7>><</button>>
<</if>>\
\
\/* ---------------- TRUTH PART ------------------*/
\
<<elseif $ht == 6>>\
<img src="content/trans/2.jpg" style="max-width: 50%;">
<<speech "player" "$fname">>I’m so sorry Mariana. I tried my best but I just couldn’t resist and I did cum. Please go easy on me. I really did my best.<</speech>>
<<speech "Mariana">>Thank you for being honest with me $fname. That is disappointing to hear that you couldn’t hold yourself back. However, I respect your honesty and just this one time, and let me be clear, the last time, I won’t punish you.<</speech>>
<<button "Enjoy" "Home transformation 1">><<set $ht = 8>><</button>>
\
\/* ---------------- LIE PART ------------------*/
\
<<elseif $ht == 7>>\
<img src="content/trans/2.jpg" style="max-width: 50%;">
<<speech "player" "$fname">>Yes, Mariana. I was a good boy.<</speech>>
<<speech "Mariana">>Show me. Please take off your pants.<</speech>>
<div align='center'>You lower your pants to your knees and the panties quickly follow. She walks up to you and reaches a hand between your thighs. She looks deep into your eyes and you feel your cheeks heating up. You feel like she can see right through you.</div>\
<video src="content/trans/2.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>I can’t express how disappointed I am in you $fname. You looked me right in the eyes and lied to my face. Did you really think I wouldn’t be able to tell? Three things cannot be hidden long: the sun, the moon, and the truth. Buddha said that. Your balls have hardly any cum in them at all! I had truly hoped that I would be able to trust you. I HAD been planning to let you cum tonight but it looks like that won’t be happening. Sadly, you have chosen the more difficult path. You have proven that you can’t be trusted with your own cock so we are going to remove your ability to choose altogether.<</speech>>
<<button "Wait" "Home transformation 1">><<set $ht = 9>><</button>>
\
\/* ---------------- BLOWJOB PART ------------------*/
\
<<elseif $ht == 8>>\
<div align='center'>Mariana hikes up her skirt and sinks to her knees in front of you. You feel a bit awkward as your pants and panties have your knees effectively shackled together preventing you from moving much. She grasps your manhood at the root as she lines her mouth up with the tip and plunges it down between her lips. You shuffle your feet as best you can trying to maintain your balance as you feel your knees going a little weak. You look down seeing her looking back up at you as she moans approvingly at the feel of you in her mouth. Further down, you see her spread her legs wider as her free hand goes between her legs to stroke her rather spectacular dick. Her cheeks pull in as she sucks hard on you and her head bobs up and down along your shaft and her hands reach up to pull her top down to expose her pale round breasts tipped with her pink pointy nipples. You can feel her tongue slipping and sliding underneath on the sensitive spot underneath the tip. You can tell that you won’t last long. She pulls off your cock with a loud pop. You look down at her simultaneously stroking both yours and her cock in sync. You close your eyes and your head tilts back as you groan feeling your nuts tighten up getting ready to shoot. You look back down just in time to see your thick creamy cum spraying across her chest and breasts. You see her panting as well an see that her cock is shooting its load on her body. She milks the last of your juice out as you feel yourself going soft again. She looks up at you with a big ‘cat ate the canary’ grin.</div>\
<video src="content/trans/3.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>You looked like you enjoyed that. Good. That is going to be your last cum for some time.<</speech>>
<<speech "player" "$fname">>Huh? What do you mean?<</speech>>
<<button "Wait" "Home transformation 1">><<set $ht = 9>><<set $mcumcounter += 1>><<set $noorgasm = 0>><<set $marianarepo += 1>><<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>><<set $mrblowjobcounter += 1>><<set $willingness += 1>><</button>>
\
\/* ---------------- CHASTITY PART ------------------*/
\
<<elseif $ht == 9>>\
<div align='center'>She pulls out a clear plastic ring and slips it up over your flaccid dick and pulls your balls through. You are just about to ask her what she is doing when you see the next piece and it all comes together in your mind as it does on your dick. Your dick is now caged and she has just locked you and tucked away the key.</div>\
<video src="content/trans/4.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>Congratulations on passing the first test $fname. The next phase will be even more interesting. I am going to keep you perpetually horny and this lovely cage is going to prevent you from doing anything about it. In case you had any doubt before, this seals the deal. You are now completely mine and you will do anything I tell you. I am going to keep you so horny that you can’t think straight. This is the best way to learn your next lesson. You, my little sex puppet, are going to be transformed into the perfect irresistible sex fiend. You will become the naughtiest and sluttiest version of yourself and your number one goal will be to pleasure men. This will take some mental training but soon enough, your mind will come to accept this truth. You might wonder just how I plan to accomplish this feat. Well, it is rather simple really. I will connect all the amazing sensations you feel when you cum with the act of pleasuring men. Pavlov and his dog did it and you are going to be my little pup to train. It is called Classical Conditioning. I’m going to arouse you beyond what you think is possible. You are going to feel your whole body vibrating and tingling and feeling ready to explore at any moment and just then, you will suck my dick. Soon enough, you will associate the taste and feel of my dick in your mouth with pleasure and happiness. And when I shoot my load, your body will be pushed over the tipping point and you will cum without even touching yourself. Your balls will empty themselves just at the joy of taking my seed. What do you think about that?<</speech>>
<div align='center'>Your horror at the realization of being locked away slowly fades to shock and as you continue to listen to Mariana’s explanation, it eventually turns to curiosity. The way she eloquently describes it has you rather fascinated. You are supposed to follow her instructions anyway for your plans to succeed. This way sounds like it will involve a lot of side benefits.</div>\
<<speech "player" "$fname">>I… uh… How long will I have to stay in chastity?<</speech>>
<<speech "Mariana">>Well, $fname, that all depends on you. If you behave well and accept your training without questioning, it might only last a week. We just need to make sure your arousal stays high. With that cage on, there isn’t much you can do about it so I’m not too worried about that. It is time for bed now. Have a sexy night and I’ll see you tomorrow for your regular daily checkup at work.<</speech>>
<div align='center'>She winks at you as she shews you away. You pull your panties up around the cage feeling how the elastic of the fabric pulls the cage into your pelvis. Once your pants are zipped up, the sensation is even stronger.</div>\
<div align='center'>You make your way back to your room and disrobe. As you lay in bed in just your panties and bra, you feel the outline of the cage under the soft material. Sexy thoughts race through your brain. Your hands slide up your body and over the thin fabric of your bra and you trace your fingers around your hard nipples. The sensation is marvelous and you feel the cage tighten around your cock as it tries to fill with blood. You sigh as you stop realizing you are torturing yourself pointlessly. You close your eyes and eventually, you are able to sleep.</div>\
<<button "Sleep" "Player Room">><<set $ht = 10>><<set $htpoint = 0>><<set $locked to true>><<set $CurEN = ($CurEN = 100).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>><<set $mdcheckup to false>>
<<if $gameDate.getHours() < "6">>\
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<<elseif $gameDate.getHours() >= "20">>\
<<addhours 5>>
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<</if>>\
<</button>>
\
\/* ---------------- CUM PART ------------------*/
\
<<elseif $ht == 10>>\
<<addhours 2>>\
<img src="content/trans/2.jpg" style="max-width: 50%;">
<<speech "Mariana">>So $fname, are you ready for your test?<</speech>>
<<speech "player" "$fname">>Oh yes, please. I can’t wait to get this cage off.<</speech>>
<<speech "Mariana">>Oh come now, it can’t have been that bad. Well, regardless, it is totally up to you. Climb up on the bed for my pet.<</speech>>
<div align='center'>Your crawl up on the bed and lay down with your head on the pillow. Mariana climbs up after you and kneels next to your head. She pulls up her skirt and moves her panties aside to release the python-like cock inside. She uses her hands to guide your head to the tip which bobs to the rhythm of her heartbeat. You part your lips and the head slips inside. More and more of it enters and you feel it filling you. You try to move but between her hands and her cock, there is nowhere to go. It hits the back of your throat. Mariana is not exactly diminutive in size. As she is bottoming out in your mouth, you look out and see that there seems to be more on the outside of your mouth than on the inside. She is clearly going easy on you. She starts moving her hips slowly letting your mouth adjust to her size. You notice her taste. What is that? A little salty, a little sweet, and a hint of sour. It tastes kind of good. She is speeding up and you find yourself sucking her back in on the downstrokes. Are you enjoying this? It has been a long week being trapped in your chastity device. You haven’t been able to cum since Mariana sucked you off last week. All those days being kept in a high state of arousal seems to have affected you. Regardless of the reason, you have to be honest with yourself and admit that you are having fun. And it seems that you are doing at least a halfway decent job because you can see that Mariana is enjoying it too. You can see her breathing faster and her hips are moving a bit more erratically as she seems to be on the edge of losing control. You feel her hands leave your head but you continue you move on your own trying to maintain the pace she set.</div>\
<video src="content/trans/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>She pulls all but the head from your mouth as she begins to stroke herself faster. You suck on the tip like you are a thirsty traveler finally finding water to relieve their parched lips. Without any further warning, you feel her ejaculating directly into your mouth. You pull back for a moment trying to get a look at it shooting but then swallow her back down again. Her thick juice is sliding back from your tongue and you swallow it down.</div>\
<video src="content/trans/6.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>You feel your pelvis clenching and releasing unexpectedly and realize that you are cumming! It feels AMAZING! You just came without touching yourself and locked in a cage and you LOVED it. Your cum is pouring out of the tip of the cage like it is being sucked out through a narrow white straw. You hope the feeling never ends. Can this really be happening? It seems rather incredible but here you are sucking on Mariana’s cock with her cum sliding down your throat and your cock locked up pour out cum like it is flowing out of a garden hose. You don’t dwell on it long. All you know is that it feels fucking good and you want to savor every moment of it.</div>\
<video src="content/trans/7.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>Bravo. Well done $fname. It seems that you enjoyed that as much as I did judging by that not insubstantial puddle of cum between your legs. I think you have earned yourself some freedom. For a short time at least.<</speech>>
<div align='center'>She produced the tiny key from somewhere on her person and you feel the cage being slipped free.</div>\
<<speech "player" "$fname">>I can’t believe how incredible that was Mariana. I am speechless!<</speech>>
<<speech "Mariana">>I don’t doubt it. This is a very effective way to provide training and not entirely unpleasant as you can see. If you give pleasure, you will receive pleasure. It is as simple as that. But don’t go getting cocky. You still need a lot more practice before you are really good at this. Might I suggest that you spend some time online researching some sexy hypno videos? I think you will find them to be rather helpful in your transition as well. One more thing, starting tomorrow, you will dress as a woman from head to toe. The house staff has all been informed and I’ll be sending an email later this evening to the lab letting everyone know. Don’t give me that look. I’m trying to help you. This way you won’t get any awkward questions and you can focus on your tasks. For now, I have borrowed one of Chanel’s office dresses with a coat and matching shoes with socks. Aren’t they lovely? Very feminine.<</speech>>
<img src="content/pdoll/clothes/jumper/jumper2.png" style="max-width: 20%;">
<img src="content/pdoll/clothes/shirt/shirt2.png" style="max-width: 10%;">
<img src="content/pdoll/clothes/trousers/trousers2.png" style="max-width: 10%;">
<img src="content/pdoll/clothes/socks/socks3.png" style="max-width: 10%;">
<img src="content/pdoll/clothes/shoes/shoes2.png" style="max-width: 10%;">
<<speech "Mariana">>I also have a wig for you to wear for now. Eventually, you won’t need it of course but until then, this one should accent your lovely face well. And finally, the pièce de résistance. These breasts are very lifelike, aren’t they? They are top of the line and were not cheap so handle them with care. They should be very comfortable to wear all day and night. They have even been shaded to match your skin tone.<</speech>>
<img src="content/trans/8.jpg" style="max-width: 50%;">
<img src="content/trans/5.jpg" style="max-width: 50%;">
<<speech "Mariana">>To complete the look, you will need to shave your body and do your eyebrows. Take your time with it so you get it all. Now, I think that will be enough for one night. Go get your rest and we’ll talk about the rest in my office tomorrow. Good night $fname.<</speech>>
<<speech "player" "$fname">>Good night.<</speech>>
<<button "Go to sleep." "Player Sleep">>
<<set $ht = 11>>
<<set $htpoint = 0>>
<<set $locked to false>>
<<addToInv "jumper2">>
<<addToInv "shirt2">>
<<addToInv "trousers2">>
<<addToInv "socks3">>
<<addToInv "shoes2">>
<<set $punderwear to "female">>
<<set $psocks to "female">>
<<set $pshoes to "female">>
<<set $pbra to "female">>
<<set $ptrousers to "female">>
<<set $pshirt to "female">>
<<set $pjumper to "female">>
<<set $currUnderwear to "underwear2">>
<<set $currSocks to "socks3">>
<<set $currShoes to "shoes2">>
<<set $currBra to "bra1">>
<<set $currTrousers to "trousers2">>
<<set $currShirt to "shirt2">>
<<set $currJumper to "jumper2">>
<<set $pgender to "shemale">>
<<set $currHair = 5>>
<<set $dream1 to false>>
<<set $mcumcounter += 1>>
<<set $noorgasm = 0>>
<<set $marianarepo += 1>>
<<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>
<<set $blowjobskill += 1>>
<<set $cumplayskill += 1>>
<<set $mgblowjobcounter += 1>>
<<set $mcumswallowcounter += 1>>
<<set $willingness += 1>>
<<set $questtransformation = 6>>
<</button>>
\
\
\
\/* ---------------- LAST PART ------------------*/
\
<<elseif $ht == 11>>\
<div align='center'>There is a soft knock at your door and just as you stand, Mariana and Chanel walk into your room.</div>\
<<speech "Mariana">>It’s time $fname. You have the serum I assume?<</speech>>
<<if $fbsv == 0>>\
<<if $htlastwarning is true>>\
<div align='center'>You jump slightly when you hear the knock on your door. You should have been expecting it but nonetheless, here you are one more week and still no serum. Mariana and Chanel walk in once more with smiles on their faces.</div>\
<<speech "Mariana">>Surely you have the serum this week, right? No?<</speech>>
<<speech "player" "$fname">>No, I made it but… well, it fell out of my bag and broke open on the sidewalk.<</speech>>
<div align='center'>Tut tut… lies do not become you $fname. You see, after last week’s mishap, I’ve been watching you over the surveillance cameras. You never made the serum. I’ve had enough of your dishonesty. I’m afraid that it is time for you to go. Please pack your belongings. I will have a car waiting for your outside to take you to the airport. This is the end for you. I hope you have enjoyed your time here but it has now come to an end. Good-bye $fname.</div>\
<div align='center'>Game Over.</div>\
<<else>>\
<<speech "player" "$fname">>I’m so so sorry! I Wasn’t able to get the serum in time. Can we do it next week?<</speech>>
<<speech "Mariana">>Such a pity… It seems perhaps you have lost your taste for being a woman after spending some time as a shemale. Is that it?<</speech>>
<<speech "player" "$fname">>No, I… Well… I do but… It isn’t that… I really do want to be a woman. I promise I’ll have the serum next week.<</speech>>
<<speech "Mariana">>Hmmm… we’ll see. Then we will see you tomorrow for your regular checkup then. Good night $fname.<</speech>>
<div align='center'>They turn and leave the room leaving you alone once more. Dammit, why didn’t you make the serum? This next week, anything might happen to derail your plans. Time to stop mucking about and focus on the mission!</div>\
<<button "Go to sleep" "Player Sleep">><<set $htlastwarning to true>><</button>>
<</if>>\
<<else>>\
<<speech "player" "$fname">>Of course Mariana. I can’t wait to be able to be a real girl again. Hi Chanel, what are you doing here?<</speech>>
<<speech "Mariana">>Don’t worry about Channel $fname. That will come later. We’ll just make ourselves comfortable. Please begin your transformation. We can’t wait to see your beautiful face as a woman again.<</speech>>
<div align='center'>You retrieve the serum from your bag and inject the serum into your leg. As you feel the blackness taking over, you quickly rest your head on your pillow before it falls there on its own. The last thing you see before your lids close is Mariana and Chanel’s surprised expressions.</div>\
<<speech "Mariana">>You are so lovely $fname. What an amazing transformation! Are you feeling alright?<</speech>>
<div align='center'>You take a deep breath and rub your eyes gently before sitting up on your bed. You look down over your body and adjust your clothes a little.</div>\
<<speech "player" "$fname">>Yeah, I’m fine. It is an adjustment getting used to a new body.<</speech>>
<<speech "Mariana">>Marvelous. So glad to hear it. We are excited to get you started on your last test.<</speech>>
<<speech "player" "$fname">>Test? What are you talking about? I’m a woman now.<</speech>>
<<speech "Mariana">>Well dear, we need to make sure you know how to use this new body of yours. That is why I brought Chanel along. She is going to pop your cherry.<</speech>>
<<speech "player" "$fname">>What? I’m… Why aren’t you going to be testing me, Mariana?<</speech>>
<<speech "Mariana">>Dear, I am testing you. I’m just using Chanel to do it. Besides, there are two very good reasons I won’t be the one to take your virginity. The first is that there is no way that tiny pussy of yours could handle me on your first time. And secondly, I only have sex with men.<</speech>>
<<speech "player" "$fname">>But I’ve sucked you dressed as a woman. You seemed to enjoy it just fine.<</speech>>
<<speech "Mariana">>You have a talented mouth $fname. I enjoyed your mouth on me. I occasionally make exceptions when it comes to blowjobs but I only fuck men. Enough talking; let’s get started. Please undress and lay back down. Chanel will take good care of you. I’m going to just sit back and enjoy the show.<</speech>>
<<button "Take your clothes off" "Home transformation 1">><<set $ht = 12>><</button>>
<</if>>\
\
\
\
\
\
<<elseif $ht == 12>>\
<div align='center'>You find yourself suddenly nervous. You have heard stories of how painful it can be for women to lose their virginity. You feel the mattress sink with the weight of Chanel as she sits next to you. She turns your head with a sultry finger bringing your faces closer together for a smoldering kiss. You take comfort in how tenderly she is kissing you as you hope she continues to do so when it comes time for penetration.</div>\
<video src="content/trans/18.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>You notice Mariana out of the corner of your eye as she slowly disrobes while watching you and Chanel make out on your bed. She slowly sinks down in a chair opposite the bed wearing just some lacy pink lingerie. She moves the gusset of her panties to the side revealing the massive cock that would look more at home on a giant basketball player than this Amazonian beauty. A smile spreads across her face and her eyes are twinkling with delight as she is enjoying the show the two of you are putting on for her.</div>\
<video src="content/trans/19.mp4" style="width: 100%;" autoplay loop></video>
<<tongueskill>>\
<<set $CurAR = ($CurAR += 30).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<button "Continue" "Home transformation 1">><<set $ht = 13>><</button>>
\
\
\
\
\
<<elseif $ht == 13>>\
<div align='center'>Chanel slowly pulls back as a silvery string of saliva continues to connect the two of your wet lips. Her dainty hand comes up and gently pushes against your chest as you lay back onto the bed. She lifts one of your legs and ducks down to slide between your thighs. Her fingers slowly tease your new folds and your eyes close on their own as the sensation is more amazing than you had expected. She continues to slowly tease you and you feel a foreign tingling sensation in your tummy as your pussy begins to produce generous amounts of juice in anticipation of what is to come. You feel a slippery warm wet sensation slide up your lower lips and when it hits your clit, your nipples harden with such rapidity that your hands fly to them of their own accord. You moan loudly and lift your head to look down as Chanel peers back up at your from between your legs. Your fingers instinctually pull your lips apart to give her better access to your most sensitive places. Her lips wrap around your new love button giving it gentle suction and you almost see stars and hearts popping over Chanel’s head. You had no idea how much more intense the sensations of a clitoris were than your cock. Why would anyone want to be a man when they could feel so much pleasure as a woman like this?</div>\
<video src="content/trans/20.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Mariana chuckles to herself as she sees how much you are enjoying Chanel’s mouth. Her cock is fully erect now jutting from her pink panties as she slowly pumps it with her fist up and down.</div>\
<video src="content/trans/21.mp4" style="width: 100%;" autoplay loop></video>
<<sexskill>>\
<<set $CurAR = ($CurAR += 30).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<button "Continue" "Home transformation 1">><<set $ht = 14>><</button>>
\
\
\
\
\
<<elseif $ht == 14>>\
<div align='center'>Chanel is driving you crazy with lust. You are very eager to feel her cock spread you open. You sit up and the two of your switch positions as you swallow her cock down feeling her hardness in your mouth.</div>\
<video src="content/trans/22.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>You see Mariana’s hand speeding up as she starts stroking her long shaft faster.</div>\
<video src="content/trans/23.mp4" style="width: 100%;" autoplay loop></video>
<<blowjobskill>>\
<<set $CurAR = ($CurAR += 30).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<button "Continue" "Home transformation 1">><<set $ht = 15>><</button>>
\
\
\
\
\
<<elseif $ht == 15>>\
<div align='center'>Your pussy reminds you that it is missing out on the action and begins to demand attention. However, your mouth is loath to give up Chanel’s tasty dick. You spin your body around and press your pussy down against Chanel’s mouth giving her a less than subtle hint that you want to feel more of her tongue on your lower lips. Rather than continue to lick the ‘little man in the canoe’, Chanel dives in tongue first into your pussy. You involuntarily gasp which only comes out as a gurgle with a mouth full of cock. If her tongue feels that good inside you, how much better will her cock feel?</div>\
<video src="content/trans/24.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Mariana has to slow herself down to pace herself so she doesn’t come too soon trying to enjoy every second with her hands wrapped around her fat cock.</div>\
<video src="content/trans/25.mp4" style="width: 100%;" autoplay loop></video>
<<blowjobskill>>\
<<set $CurAR = ($CurAR += 30).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<button "Continue" "Home transformation 1">><<set $ht = 16>><</button>>
\
\
\
\
\
<<elseif $ht == 16>>\
<div align='center'>The tingling in your tummy begins to increase and while it feels different than it did as a man, you can tell that you are building up to climax on Chanel’s tongue. Sensing this, Chanel stops and you look back down at seeing her smiling back coyly.</div>\
<<speech "Chanel">>We don’t want the show to end too quickly now. I think it is time to move on to the main event. Kneel for me and show me that tight ass of yours.<</speech>>
<div align='center'>You obediently crawl off her and position your rear to give her a tasty sight. She is thoughtful enough to make sure you are well lubricated before popping your cherry. You feel the head of her resting right there at the entrance and as eager as you are at this point, you feel that it is prudent to allow Chanel to set the pace as you are not sure what to expect.</div>\
<div align='center'>You obediently crawl off her and position your rear to give her a tasty sight. She is thoughtful enough to make sure you are well lubricated before popping your cherry. You feel the head of her resting right there at the entrance and as eager as you are at this point, you feel that it is prudent to allow Chanel to set the pace as you are not sure what to expect.</div>\
<video src="content/trans/26.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Mariana licks her lips and fondles her cum filled balls desperately wanting to cum already but trying to delay the gratification to enjoy the spectacle you are putting on.</div>\
<video src="content/trans/27.mp4" style="width: 100%;" autoplay loop></video>
<<sexskill>>\
<<button "Continue" "Home transformation 1">><<set $ht = 17>><</button>>
\
\
\
\
\
<<elseif $ht == 17>>\
<div align='center'>The pain of your lost virginity is gone and all you feel is an amazing fullness as Chanel plows your furrow. She manipulates your body like an origami master changing positions and showing you all the different ways your new female body can feel pleasure. You wish it would never end. You feel so close to Chanel right now as you share the most intimate experience you can as a woman. All good things must end however as you can see that she can’t last much longer. You feel a sense of pride that you have been able to pleasure her with this body.</div>\
<video src="content/trans/28.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Mariana takes presses her hands down into her balls at the bottom of her stroke sensing if she makes one more stroke that she will blow her load. She is hovering right on the edge watching the two of you. Just the sight of your is almost enough to tip her over the edge.</div>\
<video src="content/trans/29.mp4" style="width: 100%;" autoplay loop></video>
<<sexskill>>\
<<button "Continue" "Home transformation 1">><<set $ht = 18>><</button>>
\
\
\
\
\
<<elseif $ht == 18>>\
<div align='center'>You are not sure if Chanel is concerned about impregnating your new body or what her reason is but she withdraws and begins to stroke herself as she lays on her back across your bed. You climb between her legs just as she beings to cum and your mouth tries to capture as much of her erupting sperm as you can manage.</div>\
<video src="content/trans/30.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Seeing that Chanel is about to cum, Mariana resumes her stroking. Her fist is just a blur as she tries to time her climax with Mariana’s. As she hears Chanel’s groan as she unloads, Mariana releases her pent up seed as well giving her belly a nice cum glazed look.</div>\
<video src="content/trans/31.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>She rubs her hands through it and smears it all across herself like body paint.</div>\
<video src="content/trans/33.mp4" style="width: 100%;" autoplay loop></video>
<<cumplayskill>>\
<<button "Continue" "Home transformation 1">><<set $ht = 19>><</button>>
\
\
\
\
\
<<elseif $ht == 19>>\
<div align='center'>Once you have swallowed as much of Chanel’s cum as you can find, you give her a hot kiss allowing her to lick off the remnant of her cum from your lips.</div>\
<video src="content/trans/32.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Don’t be disappointed you didn’t cum on my dick. Most women don’t cum their first time. I will use my tongue on you to finish you off.<</speech>>
<div align='center'>Chanel rolls over and crawls between your legs once more. You are already hot and primed to go off. You softly pinch your nipples as her tongue goes into overdrive on your swollen nubbin. In less than a minute, your back arches and your moans turn to orgasmic cries. Your body goes limp as a rag doll as you bask in the afterglow.</div>\
<<willingness>>\
<<set $CurAR = ($CurAR = 0).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<button "Continue" "Home transformation 1">><<set $ht = 20>><</button>>
\
\
\
\
\
<<elseif $ht == 20>>\
<<speech "Mariana">>Fuck, that was so good. I don’t feel like I need to ask but I will anyway; how was it for you $fname?<</speech>>
<div align='center'>All you can do is lay there as your mind whirls. You had no idea that sex as a woman would be so different. It turns out that a pussy feels way better than you ass. So many nerve endings! It was the most mind-blowing experience you’ve ever had.</div>\
<<speech "Mariana">>You don’t need to say a thing. The expression on your face says it all. Rest now. Oh, one more thing… you’ve passed your final test. I’m satisfied that you can be the woman you want to be. If you ever need to change back for any reason, I will understand that too. Life is complicated and big changes like one's gender can tricky. Feel free to change back and forth as needed and I won’t bat an eye. I admit that I have selfish reasons for allowing this as I hope that you will occasionally come to see me in your male body so I can use your ass again. Wouldn’t that be fun? Anyway, you don’t need to come to see me for checkups anymore. Provided you continue to behave that is. I still expect your best behavior! Have you thought about names yet now that you are a woman? Your name $fname is fine and good but I can understand if you want to change it. How would you like me to address you from now on?<</speech>>
<div align='center'>You tell Mariana your name.</div>\
<div align='center'><<textbox "$femalename" "Jane">></div>\
<<speech "Mariana">>Very well, that is what I’ll use. Now get some rest. You’ve earned it!<</speech>>
<div align='center'>As you lay in bed to go to sleep as a woman for the first time, many thoughts race around your head. It is such a relief to be free to choose your gender at will! That will make life going forward here so much easier. You should go talk to Bonnie and give her the good news. You are excited to get serious about finding and freeing your parents.</div>\
<<button "Stay in your room" "Player Room">>
<<addhours 2>>\
<<set $ht = 21>>\
<<set $fname = $femalename>>\
<<set $htlast to false>>\
<<set $locked to false>>\
<<set $pgender to "female">>\
<<set $fcumcounter += 1>>\
<<set $fkisscounter += 1>>\
<<set $fgblowjobcounter += 1>>\
<<set $frpussylickcounter += 1>>\
<<set $frpussyfuckcounter += 1>>\
<<set $fcumswallowcounter += 1>>\
<<set $pussysize += 1>>\
<<set $noorgasm = 0>>\
<<set $chanelrepo += 1>>\
<<set $marianarepo += 1>>\
<</button>>
<</if>>\
<div align='center' style='font-size: 150%;'><b>Your Room</b></div>\
<img src="content/location/bedroom1.jpg" style="max-width: 50%;">
\
\
\
<<if $ht == 4 and $htpoint >= 5 and $gameDate.getHours() >= "19">>\
<<button "Mariana wan`t to speak with you." "Home transformation 1">><</button>>
<<elseif $ht == 5 and $htpoint >= 5 and $gameDate.getHours() >= "19">>\
<<button "Mariana wan`t to speak with you." "Home transformation 1">><</button>>
<<elseif $ht == 10 and $htpoint >= 5 and $gameDate.getHours() >= "19">>\
<<button "Mariana wan`t to speak with you." "Home transformation 1">><</button>>
<<elseif $htlast is true and GameDays[$gameDate.getDay()] is "Sun" and $gameDate.getHours() >= "19">>\
<<button "Mariana wan`t to speak with you." "Home transformation 1">><</button>>
<<elseif $bdayquest == 56 and GameDays[$gameDate.getDay()] is "Mon" or $bdayquest == 56 and GameDays[$gameDate.getDay()] is "Tue" or $bdayquest == 56 and GameDays[$gameDate.getDay()] is "Wed" or $bdayquest == 56 and GameDays[$gameDate.getDay()] is "Thu" or $bdayquest == 56 and GameDays[$gameDate.getDay()] is "Fri">>\
<div align='center'>\
Mariana walks into the room talking on the phone.
</div>\
<<speech "Mariana">>Here he is. I was able to find him. Hey, $fname. The phone is for you. Here.<</speech>>
<div align='center'>\
Mariana extends her arm, offering you the phone in her hand. With a puzzled expression, you take the phone. Mariana gives you an encouraging smile, and you slowly lift the phone to your ear.
</div>\
<<speech "player" "$fname">>Hello? This is $fname. To whom am I speaking?<</speech>>
<<speech "Angeles">>No need to be so formal with me, $fname. I’ve seen you naked remember.<</speech>>
<<speech "player" "$fname">>Pastor Lucinda? Is that you?<</speech>>
<<speech "Angeles">>Pastor? What the fuck? Are you screwing around with clergy? You naughty, naughty boy! If I didn’t love how kinky that thought was so much, I’d have to put you over my knee for a spanking. Guess again. Here’s a little hint. I’m not so little.<</speech>>
<<speech "player" "$fname">>Oh, that narrows it down. Auntie Jean! How did you get Mariana’s phone number?<</speech>>
<<speech "Angeles">>You turkey! You are just playing with me, aren’t you? It’s Angeles. I was hoping you’d call on me. I got tired of waiting so I’m calling you. I’ve been thinking about you. Your hard masculine body… and that yummy cock of yours. Why don’t you come to visit me this weekend? Say, Saturday afternoon?<</speech>>
<<speech "player" "$fname">>Yeah, I should be free this Saturday. I’d love to Angeles. I’ll see you then! Thanks for the phone, Mariana. Oh, I forgot to ask where she lives!<</speech>>
<<speech "Mariana">>I’ll get you her address. I’m a bit jealous. Don’t have TOO much fun without me, okay?<</speech>>
<<button "Mariana walks out" "Player Room">><<set $bdayquest = 57>><<set $angelesquest = 1>><</button>>
\
\
\
<<elseif $finalquest == 5 and $gameDate.getHours() >= "19">>\
<<addhours 3>>\
<div align='center'>\
You hear a soft knock on the door.
</div>\
<<speech "player" "$fname">>Come in.<</speech>>
<<speech "Mariana">>Hey, do you have a few minutes?<</speech>>
<<speech "player" "$fname">>Of course, Mariana. Come in and have a seat. What’s going on?<</speech>>
<<speech "Mariana">>First off, well done on distracting the security folks. They have been running around like chickens with no heads. I don’t know how you did it and… I don’t want to know. Once I was able to get back into the office, I was able to make some discreet inquiries and I think I may have some information that could help you with your planning. Take this. It’s an IT-approved USB drive for taking sensitive data off-site. I was asking for emergency protocols and procedures. It has all the details on how the security responds as well as automated responses. It might also be handy if you ever need to, you know, bring any creative “applications” to the office.<</speech>>
<img src="content/objects/usb.jpg">
\
<<speech "player" "$fname">>Oh, very interesting. That could be very useful indeed. Thank you very much, Mariana. You know, you have been working very hard. You should strongly consider taking the family for a little holiday. The Mediterranean is very nice this time of year I hear.<</speech>>
<div align='center'>\
Mariana gives you a knowing nod as she seems to be picking up the hint. She smiles at you as she slips back out the door.
</div>\
<<button "Mariana walks out." "Player Room">><<set $finalquest = 6>><</button>>
\
\
\
<<else>>\
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:33%"><b>Room</b></th>
<th style="width:33%"><b>Laptop</b></th>
<th style="width:33%"><b>Bathroom</b></th>
</tr>
</thead>
<tbody>
<tr>
<td>\
<<button "Wardrobe" "Player Wardrobe">><</button>>
<<button "Dressing Table" "Player Dressing Table">><</button>>
<<if $gameDate.getHours() >= "6" and $gameDate.getHours() < "20">>\
<<button "Take a nap" "Player Room">>\
<<addenergy 10>>\
<<addhours 1>>\
<</button>>
<<else>>\
It is too late to take a nap. Just go to sleep.
<</if>>\
<<if $gameDate.getHours() >= "6" and $gameDate.getHours() < "20">>\
It is too early to go to sleep
<<else>>\
<<button "Sleep" "Player Sleep">>
<<if $angelesquest == 6>>\
<<set $angelesquest = 7>>\
<</if>>\
<<if $finalquest == 7>>\
<<set $finalquest = 8>>\
<</if>>\
<<if $finalquest == 12>>\
<<set $finalquest = 13>>\
<</if>>\
<</button>>
<</if>>\
</td>\
<td>\
<<button "Browse Web" "Player Web">><</button>>
<<if $gameDate.getHours() < "6">>\
It is too late to watch porn.
<<else>>\
<<button "Watch porn" "Player Porn">><</button>>
<</if>>\
<<button "Try autofellatio" "Try autofellatio">><</button>>
<<button "Toybox" "Player Toybox">><</button>>
<<if $questtransformation >= 3>>\
<<if $gameDate.getHours() < "6">>\
It is too late to watch hypno.
<<else>>\
<<if $CurEN >= 20>>\
<<button "Watch hypno" "Player Hypno">>
<<set $hypnocounter += 1>>\
<<addarousal 20>>\
<<addhours 1>>\
<<takeenergy 20>>\
<</button>>
<<else>>\
You are tired to watch hypno videos.
<</if>>\
<</if>>\
<</if>>\
</td>\
<td>\
<<button "Have a shower" "Player Shower">>
<<addenergy 10>>\
<<addmins 30>>
<</button>>
<<button "Use the toilet" "Player Toilet">><</button>>
<<button "Check your body" "Player Bodycheck">><</button>>
</td>\
</tr>
</tbody>
</table>
<div align='center'>
<<if $ht >= 11 and $ht < 21>>\
<<if $punderwear is "male" or $pbra is "male" or $ptrousers is "male" or $psocks is "male" or $pshoes is "male" or $pjumper is "male" or $pshirt is "male">>\
You can not leave in male clothes.
<<elseif $ptrousers is "none" and $punderwear is "none" or $pshirt is "none" and $pjumper is "none" or $pshoes is "none">>\
You not wearing enough clothes.
<<else>>\
<<button "Leave your room" "Hallway Down">><<set $proom to false>><</button>>
<</if>>\
<<elseif $ptrousers is "none" and $punderwear is "none" or $pshirt is "none" and $pjumper is "none" or $pshoes is "none">>\
You not wearing enough clothes.
<<else>>\
<<button "Leave your room" "Hallway Down">><<set $proom to false>><</button>>
<</if>>\
</div>\
<</if>>\
<<button "test" "Player Room">><<set $locked to true>><</button>><<if GameDays[$gameDate.getDay()] != "Sat" and GameDays[$gameDate.getDay()] != "Sun">>\
\
\/* MARIANA PUNISHMENT MALE BODY */
\
<<if $mpunishment is true and $ht >= 4 and $ht < 21 or $mdcheckup is false and $ht >= 4 and $ht < 21>>\
<<if $pgender is "male">>\
<div align='center'>\
Just as you settle down into your pillow in bed, you see your door open, and Mariana walks in. She is wearing a coy smile and not much else. She is languidly stroking her immense cock, which is jutting out through the wide mesh body stalking.
</div>\
<video src="content/trans/8.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>You haven’t forgotten about your punishment, have you $fname? You didn’t follow my orders as you should have. I’m going to provide you now with some much-needed practise generously. Have a seat at your desk.<</speech>>
<div align='center'>\
You finally break eye contact with her hand going back and forth along with her amazing cock. You slide out of bed, walk quickly to the chair in front of your desk, and spin back to face Mariana. You hardly have a chance to breathe as Mariana pulls your head forward and thrusts towards your mouth. You make a strangled gurgling noise as she bottoms out at the back and turns to head down. Once there, she doesn’t move but just keeps pressing your head down on her. Your hands flail about for a few seconds before resting on her generous backside. Mariana slowly pushes forward again, and her cock has nowhere to go but down your throat. The sides of your neck bulge out as your pipe stretches around her thick dick. Still not bottomed out in your throat, Mariana withdraws a little and pushes forward again. She is reaming out your throat!
</div>\
<video src="content/trans/14.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
As the seconds tick on, your grip on her ass continues to tighten as your air supply continues to dwindle. You begin to pound on her ass with your hands, making urgent gurgling noises as your panic grows. She finally relents and withdraws, allowing you to gasp, refilling your depleted lungs with much-needed oxygen.
</div>\
<video src="content/trans/15.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>What’s the problem $fname? You don’t like how I’m fucking your mouth?<</speech>>
<<speech "player" "$fname">>I… couldn’t breath.<</speech>>
<div align='center'>\
Her dick lines up with your mouth again, and this time you manage to take a huge breath before your mouth is filled again.
</div>\
<<speech "Mariana">>That is your problem, not mine. This is a punishment after all. The whole idea is that you NOT enjoy it. Now swallow my cock!<</speech>>
<div align='center'>\
Her hips are moving faster now as her dick moves in and out of your throat. You’ve never felt like such a piece of meat before to be used for someone else's sole pleasure.
</div>\
<video src="content/trans/16.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Her ballsack is tightening as it prepares to unleash a torrent of cum down your throat. She gives one final thrust and you feel your nose bump against her pelvis before pulling completely out where she sprays her load across your face, in your mouth, and into your hair.
</div>\
<video src="content/trans/17.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>That’s my good little slut. Take it all. Yes… Now don’t waste a drop of my precious seed. Use your fingers to scoop it into your mouth. Did you like that? No? Good. I will come back every night that you fail to follow my orders. I intend to continue to make you feel uncomfortable until you are more pliable. Or until you develop a taste for deep throating my dick and I have to resort to something more… extreme. You may go to sleep now but don’t forget to come see me for your daily check.<</speech>>
<div align='center'>\
She struts out of the room like a proud peacock her still hard dick still jutting in front of her dripping saliva and cum onto the floor. As you sit there at your desk, you have mixed feelings being turned on at being used but very sore from the throat fucking. It is probably best to stay on her good side and obey her instructions to avoid further punishment. You finish cleaning yourself off and lay back down on your bed with the taste of Mariana’s cum on your lips and in your belly as you try to sleep. It isn’t easy as you are still so aroused but you eventually do drift off to sleep.
</div>\
<<button "Sleep" "Player Sleep">><<set $mpunishment to false>><<set $mdcheckup to true>><</button>>
<<takeenergy 20>>\
<<addarousal 100>>\
<<willingness>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $marianarepo += 1>>\
<<set $mgblowjobcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<else>>\
<div align='center'>\
Just as you are settling down into your pillow in bed, you see your door open and Mariana walks in. She is wearing a coy smile and not much else. She is languidly stroking her immense cock which is jutting out through the wide mesh body stalking.
</div>\
<video src="content/trans/8.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>You haven’t forgotten about your punishment, have you $fname? You didn’t follow my orders as you should have. I’m going to generously provide you now with some much-needed practice.<</speech>>
<div align='center'>\
She saunters over to the sofa and lays back spreading her legs open and her third leg stands straight up in the air.
</div>\
<<speech "Mariana">>Come $fname, I’m waiting.<</speech>>
<div align='center'>\
You walk over to join her on the couch and kneel between her legs. She holds her cock wagging it back and forth and gives it a few quick strokes as you lean down to wrap your lips around it.
</div>\
<video src="content/trans/9.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>Yes, that’s it. Show me what you learned from our time in the living room. Use more tongue. Yes, that’s the way. You are picking this up quickly. It seems someone has been doing some practice. Oh, that’s excellent. Keep that up.<</speech>>
<video src="content/trans/10.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>Show me how deep you can go now.<</speech>>
<div align='center'>\
You wrap both hands around the base holding it steady as you work your mouth down over it. Your small mouth doesn’t go far on her extreme sized cock but you do your best to work it into the back of your mouth doing your best to take her down. She is just too damn big! It is so thick you feel like your jaw is going to pop from its sockets.
</div>\
<video src="content/trans/11.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She grasps your hair pulling you off her feeling displeasure at your lack of ability to swallow her.
</div>\
<<speech "Mariana">>Just sit, watch, and enjoy the show.<</speech>>
<div align='center'>\
She beats her salami quickly and her hand practically hits your nose you are leaning in so close. You smell her musky scent and the precum forming at the tip before getting caught up in her fist as it passes by. Aroused by her smell and the lewd show she is putting on for you, you give her giggling balls a couple of quick licks before giving it a tender kiss. Her breathing changes and you see that she is getting close to unloading. With a soft grunt, the jizz starts to fly out like a Roman candle and lands across her belly.
</div>\
<video src="content/trans/12.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She squeezes the tip milking out more which runs down her hand.
</div>\
<<speech "Mariana">>Lick it up for me. Lick it clean.<</speech>>
<div align='center'>\
You lean in and suck up the puddles of cum from her belly and lick your way up her cock and give the head a good strong suck pulling out the remnant inside. Mariana gives your head a couple of soft strokes across your hair.
</div>\
<video src="content/trans/13.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>I am going to continue to visit you at night until you learn to follow my orders. Sleep now and be sure to come see me tomorrow for your daily check.<</speech>>
<div align='center'>\
She struts out of the room like a proud peacock her still hard dick still jutting in front of her dripping cum onto the floor. As you sit there on the sofa, you have mixed feelings being turned on at being used but feeling that her punishment could get a lot worse if you cross her. It is probably best to stay on her good side and obey her instructions to avoid further punishment. You lay back down on your bed with the taste of Mariana’s cum on your lips and in your belly as you try to sleep. It isn’t easy as you are still so aroused but you eventually do drift off to sleep.
</div>\
<<button "Sleep" "Player Sleep">><<set $mpunishment to false>><<set $mdcheckup to true>><</button>>
<<takeenergy 20>>\
<<addarousal 100>>\
<<willingness>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $marianarepo += 1>>\
<<if $pgender is "female">>\
<<set $fgblowjobcounter += 1>>\
<<set $fcumswallowcounter += 1>>\
<<elseif $pgender is "shemale">>\
<<set $sgblowjobcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<</if>>\
<</if>>\
<<else>>\
\
\
\/* SLEEPING PICTURES */
\
\
<<if $pgender is "male">>\
<img src="content/peoples/player/mpsleep.png">
<<elseif $pgender is "female">>\
<img src="content/peoples/player/fpsleep.jpg">
<<elseif $pgender is "shemale">>\
<img src="content/peoples/player/fpsleep.jpg">
<</if>>\
\
\
\/* DREAM */
\
\
<<if $dream1 is false>>\
<div align='center'>\
As you lay in bed, your mind goes back to how you felt as Mariana came into your mouth. You never knew you could experience such intense sensations. You would never have guessed that you could come just from sucking a cock. Inconceivable! And now you will be dressing like a woman all day and night. Well, not a woman, really, as you still have your dick. So a shemale then. You remind yourself why you are doing all this. This is all for your parent’s sake. Your parents will be free, and you will take your revenge on NEMESIS. As you fall asleep, you realize that you can now go back to Bonnie to continue with the next step of her plan.
</div>\
<<button "Wake up" "Player Room">><<set $mdcheckup to false>><<set $dream1 to true>><</button>>
<<addenergy 100>>\
<<if $gameDate.getHours() < "6">>\
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<<elseif $gameDate.getHours() >= "20">>\
<<addhours 5>>
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<</if>>\
\
\
\/* SLIGHTLY AROUSED SLEEP */
\
\
<<elseif $CurAR >= 70 and $CurAR < 90>>\
<div align='center'>\
You are well aroused and can not sleep well. You only regenerate 60 energy.
</div>\
<<button "Wake up" "Player Room">><<set $mdcheckup to false>><<if $ht == 5>><<set $htcumcheck += 1>><</if>><</button>>
<<addenergy 60>>\
<<if $gameDate.getHours() < "6">>\
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<<elseif $gameDate.getHours() >= "20">>\
<<addhours 5>>
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<</if>>\
\
\
\/* VERY AROUSED SLEEP */
\
\
<<elseif $CurAR >= 90 >>\
<div align='center'>\
You are very aroused and can not sleep. You only regenerate 30 energy.
</div>\
<<button "Wake up" "Player Room">><<set $mdcheckup to false>><<if $ht == 5>><<set $htcumcheck += 1>><</if>><</button>>
<<addenergy 30>>\
<<if $gameDate.getHours() < "6">>\
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<<elseif $gameDate.getHours() >= "20">>\
<<addhours 5>>
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<</if>>\
\
\
\/* VERY GOOD SLEEP */
\
\
<<else>>\
<div align='center'>\
You had a very good sleep.
</div>\
<<button "Wake up" "Player Room">><<set $mdcheckup to false>><<if $ht == 5>><<set $htcumcheck += 1>><</if>><</button>>
<<addenergy 100>>\
<<if $gameDate.getHours() < "6">>\
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<<elseif $gameDate.getHours() >= "20">>\
<<addhours 5>>
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<</if>>\
<</if>>\
<</if>>\
<<else>>\
\
\
\/* SLEEPING PICTURES */
\
\
<<if $pgender is "male">>\
<img src="content/peoples/player/mpsleep.png">
<<elseif $pgender is "female">>\
<img src="content/peoples/player/fpsleep.jpg">
<<elseif $pgender is "shemale">>\
<img src="content/peoples/player/fpsleep.jpg">
<</if>>
\
\
\/* DREAM */
\
\
<<if $dream1 is false>>\
<div align='center'>\
As you lay in bed, your mind keeps going back to how you felt as Mariana came in your mouth. You never knew you could experience such intense sensations. You never would have guessed that you could come just from sucking a cock. Inconceivable! And now you will be dressing like a woman all day and night. Well, not a woman really as you still have your dick. So a shemale then. You remind yourself why you are doing all this. This is all for your parent’s sake. Your parents will be free and you will take your revenge on NEMESIS. As you are falling asleep, you realize that you can now go back to Bonnie to continue with the next step of her plan.
</div>\
<<button "Wake up" "Player Room">><<set $mdcheckup to false>><<set $dream1 to true>><</button>>
<<addenergy 100>>\
<<if $gameDate.getHours() < "6">>\
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<<elseif $gameDate.getHours() >= "20">>\
<<addhours 5>>
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<</if>>\
\
\
\/* SLIGHTLY AROUSED SLEEP */
\
\
<<elseif $CurAR >= 70 and $CurAR < 90>>\
<div align='center'>\
You are well aroused and can not sleep well. You only regenerate 60 energy.
</div>\
<<button "Wake up" "Player Room">><<set $mdcheckup to false>><<if $ht == 5>><<set $htcumcheck += 1>><</if>><</button>>
<<addenergy 60>>\
<<if $gameDate.getHours() < "6">>\
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<<elseif $gameDate.getHours() >= "20">>\
<<addhours 5>>
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<</if>>\
\
\
\/* VERY AROUSED SLEEP */
\
\
<<elseif $CurAR >= 90 >>\
<div align='center'>\
You are very aroused and can not sleep. You only regenerate 30 energy.
</div>\
<<button "Wake up" "Player Room">><<set $mdcheckup to false>><<if $ht == 5>><<set $htcumcheck += 1>><</if>><</button>>
<<addenergy 30>>\
<<if $gameDate.getHours() < "6">>\
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<<elseif $gameDate.getHours() >= "20">>\
<<addhours 5>>
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<</if>>\
\
\
\/* VERY GOOD SLEEP */
\
\
<<else>>\
<div align='center'>\
You had a very good sleep.
</div>\
<<button "Wake up" "Player Room">><<set $mdcheckup to false>><<if $ht == 5>><<set $htcumcheck += 1>><</if>><</button>>
<<addenergy 100>>\
<<if $gameDate.getHours() < "6">>\
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<<elseif $gameDate.getHours() >= "20">>\
<<addhours 5>>
<<run $gameDate.setHours($gameDate.getHours() * 0 + 6)>>
<<run $gameDate.setMinutes($gameDate.getMinutes() * 0)>>
<</if>>\
<</if>>\
<</if>>\
<div align='center' style='font-size: 150%;'><b>Laptop</b></div>\
<img src="content/objects/laptop.jpg" style="max-width: 50%;">
\
<<if $kimquest >= 10 and $kimquest < 16>>\
<<if $questdaycount >= 3>>\
<div align='center'>\
You don't have active tracking bug. If it runs out from battery then you have to go back to Bonnie and buy a new one.
</div>\
<<else>>\
<<if $kimquest >= 11>>\
<<button "Check Kimberlee's tracker information" "Kimberlee quest 2">><</button>>
<</if>>\
<</if>>\
<</if>>\
<<button "Credits" "Credits">><</button>>
<<button "Check the spycams" "Player Spycam">><</button>>
<<button "Gallery" "Gallery">><</button>>
<<button "Cheats" "Cheats">><</button>>
<<button "Leave" "Player Room">><</button>>
<div align='center'>Here are some cheats. Use it wisely.</div>
<<button "1000000 credit" "Cheats">><<set $credit += 1000000>><</button>>
<<button "1000000 cash" "Cheats">><<set $money += 1000000>><</button>>
<<button "100 Female Body Serum" "Cheats">><<set $fbsv += 100>><</button>>
<<button "100 Male Body Serum" "Cheats">><<set $mbsv += 100>><</button>>
<<button "100 Shemale Body Serum" "Cheats">><<set $sbsv += 100>><</button>>
<<button "10 Flexibility" "Cheats">><<set $flexibility += 10>><</button>>
<<button "Back" "Player Web">><</button>><div align='center' style='font-size: 150%;'><b>Credits</b></div>\
My dear patrons, I cannot thank you enough for your trust in me, for your belief, and your continuous support!
<b>THANK YOU THANK YOU THANK YOU!</b>
These letters aren't big enough and aren't bold enough for me to express my appreciation. Please let me know how I can serve you better, and please hop on Discord to chat.
- Thank You for Koi for his writings.
- Thank You for [[HiEv|https://www.patreon.com/HiEv]] for helping with the coding.
<b>Legend Patrons:</b> Cassandra Taylor, Watcherseven, Andrew J Pollara, shawnsop
<<button "Back" "Player Web">><</button>>
<div align='center' style='font-size: 150%;'><b>Spycams</b></div>\
<img src="content/objects/laptop.jpg" style="max-width: 50%;">
\
<<if $CurEN >= 5>>\
<<if $marianaspycam == 1>>\
<<button "Mariana's spycam" "Mariana's spycam">><<takeenergy 5>><</button>>
<<else>>\
<div align='center'>\
You don't have any camera installed in Mariana's room.
</div>\
<</if>>\
\
<<if $chanelspycam == 1>>\
<<button "Chanel's spycam" "Chanel's spycam">><<takeenergy 5>><</button>>
<<elseif $chanelspycam == 3>>\
<<button "Chanel's superspycam" "Chanel's superspycam">><<takeenergy 5>><</button>>
<<else>>\
<div align='center'>\
You don't have any camera installed in Chanel's room.
</div>\
<</if>>\
\
<<if $nataliespycam == 1>>\
<<button "Natalie's spycam" "Natalie's spycam">><<takeenergy 5>><</button>>
<<else>>\
<div align='center'>\
You don't have any camera installed in Natalie's room.
</div>\
<</if>>\
\
\
\
<<else>>\
<div align='center'>\
You don't have enough energy to spy on them.
</div>\
<</if>>\
<<button "Back" "Player Web">><</button>>
<div align='center' style='font-size: 150%;'><b>Your wardrobe</b></div>\
<img src="content/location/wardrobe3.jpg" style="max-width: 50%;">
\
<<button "Leave" "Player Room">><</button>>
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:14.2%"><b>Jumper/Coat</b></th>
<th style="width:14.2%"><b>Upper wear</b></th>
<th style="width:14.2%"><b>Bra</b></th>
<th style="width:14.2%"><b>Panties</b></th>
<th style="width:14.2%"><b>Bottom wear</b></th>
<th style="width:14.2%"><b>Socks</b></th>
<th style="width:14.2%"><b>Shoes</b></th>
</tr>
</thead>
<tbody>
<tr>
<<set $path = "content/pdoll/clothes/jumper/" + $currJumper + ".png">>\
<td><<link "<<image $path 200 200>>" "Player Wardrobe">><<set $currJumper to "none">><<set $pjumper to "none">><</link>></td>
<<set $path = "content/pdoll/clothes/shirt/" + $currShirt + ".png">>\
<td><<link "<<image $path 200 200>>" "Player Wardrobe">><<set $currShirt to "none">><<set $pshirt to "none">><</link>></td>
<<set $path = "content/pdoll/clothes/bra/" + $currBra + ".png">>\
<td><<link "<<image $path 200 200>>" "Player Wardrobe">><<set $currBra to "none">><<set $pbra to "none">><</link>></td>
<<set $path = "content/pdoll/clothes/underwear/" + $currUnderwear + ".png">>\
<td><<link "<<image $path 200 200>>" "Player Wardrobe">><<set $currUnderwear to "none">><<set $punderwear to "none">><</link>></td>
<<set $path = "content/pdoll/clothes/trousers/" + $currTrousers + ".png">>\
<td><<link "<<image $path 200 100>>" "Player Wardrobe">><<set $currTrousers to "none">><<set $ptrousers to "none">><</link>></td>
<<set $path = "content/pdoll/clothes/socks/" + $currSocks + ".png">>\
<td><<link "<<image $path 200 200>>" "Player Wardrobe">><<set $currSocks to "none">><<set $psocks to "none">><</link>></td>
<<set $path = "content/pdoll/clothes/shoes/" + $currShoes + ".png">>\
<td><<link "<<image $path 200 200>>" "Player Wardrobe">><<set $currShoes to "none">><<set $pshoes to "none">><</link>></td>
</tr>
</tbody>
</table>
<<if $pgender is "male">>\
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:33%"><b></b></th>
<th style="width:33%"><b>Name</b></th>
<th style="width:33%"><b>Action</b></th>
</tr>
</thead>
<tbody>
<tr>
<<if $inventory.indexOf("jumper1") != -1>>\
<td><<image "content/pdoll/clothes/jumper/jumper1.png" 100 200>></td>\
<td>High neck grey jumper</td>\
<td><<displayJumper "jumper1" "Player Wardrobe">></td>\
<</if>>
</tr>
<tr>
<<if $inventory.indexOf("shirt1") != -1>>\
<td><<image "content/pdoll/clothes/shirt/shirt1.png" 100 200>></td>\
<td> Normal black T-shirt </td>\
<td> <<displayShirt "shirt1" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("underwear1") != -1>>\
<td><<image "content/pdoll/clothes/underwear/underwear1.png" 100 200>></td>\
<td> Black underwear </td>\
<td> <<displayUnderwear "underwear1" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("underwear2") != -1>>\
<td><<image "content/pdoll/clothes/underwear/underwear2.png" 100 200>></td>\
<td> Chanel's pink panties </td>\
<td> <<displayUnderwearw "underwear2" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("underwear3") != -1>>\
<td><<image "content/pdoll/clothes/underwear/underwear3.png" 100 200>></td>\
<td> Chanel's black thong </td>\
<td> <<displayUnderwearw "underwear3" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("bra1") != -1>>\
<td><<image "content/pdoll/clothes/bra/bra1.png" 100 200>></td>\
<td> Chanel's pink bra </td>\
<td> <<displayBra "bra1" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("trousers1") != -1>>\
<td><<image "content/pdoll/clothes/trousers/trousers1.png" 100 100>></td>\
<td> Black jeans </td>\
<td> <<displayTrousers "trousers1" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("socks1") != -1>>\
<td><<image "content/pdoll/clothes/socks/socks1.png" 100 200>></td>\
<td> Grey striped white socks </td>\
<td> <<displaySocks "socks1" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("socks2") != -1>>\
<td><<image "content/pdoll/clothes/socks/socks2.png" 100 200>></td>\
<td> Mariana's Black fishnet stockings </td>\
<td> <<displaySocksw "socks2" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("shoes1") != -1>>\
<td><<image "content/pdoll/clothes/shoes/shoes1.png" 100 200>></td>\
<td> Light brown leather shoes </td>\
<td> <<displayShoes "shoes1" "Player Wardrobe">></td>\
<</if>>\
</tr>
</tbody>
</table>
<<else>>\
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:33%"><b></b></th>
<th style="width:33%"><b>Name</b></th>
<th style="width:33%"><b>Action</b></th>
</tr>
</thead>
<tbody>
<tr>
<<if $inventory.indexOf("jumper2") != -1>>\
<td><<image "content/pdoll/clothes/jumper/jumper2.png" 100 200>></td>\
<td>Chanel's red leather jacket</td>\
<td><<displayJumperw "jumper2" "Player Wardrobe">></td>\
<</if>>
</tr>
<tr>
<<if $inventory.indexOf("shirt2") != -1>>\
<td><<image "content/pdoll/clothes/shirt/shirt2.png" 100 200>></td>\
<td> Chanel's white shirt </td>\
<td> <<displayShirtw "shirt2" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("shirt3") != -1>>\
<td><<image "content/pdoll/clothes/shirt/shirt3.png" 100 200>></td>\
<td> Sexy black clubbing dress </td>\
<td> <<displayShirtw "shirt3" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("underwear2") != -1>>\
<td><<image "content/pdoll/clothes/underwear/underwear2.png" 100 200>></td>\
<td> Chanel's pink panties </td>\
<td> <<displayUnderwearw "underwear2" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("underwear3") != -1>>\
<td><<image "content/pdoll/clothes/underwear/underwear3.png" 100 200>></td>\
<td> Chanel's black thong </td>\
<td> <<displayUnderwearw "underwear3" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("bra1") != -1>>\
<td><<image "content/pdoll/clothes/bra/bra1.png" 100 200>></td>\
<td> Chanel's pink bra </td>\
<td> <<displayBraw "bra1" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("trousers2") != -1>>\
<td><<image "content/pdoll/clothes/trousers/trousers2.png" 100 100>></td>\
<td> Chanel's black skirt </td>\
<td> <<displayTrousersw "trousers2" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("trousers3") != -1>>\
<td><<image "content/pdoll/clothes/trousers/trousers3.png" 100 100>></td>\
<td> Sexy black trousers for clubbing dress </td>\
<td> <<displayTrousersw "trousers3" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("socks2") != -1>>\
<td><<image "content/pdoll/clothes/socks/socks2.png" 100 200>></td>\
<td> Black fishnet stockings </td>\
<td> <<displaySocksw "socks2" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("socks3") != -1>>\
<td><<image "content/pdoll/clothes/socks/socks3.png" 100 200>></td>\
<td> Chanel's white socks </td>\
<td> <<displaySocksw "socks3" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("shoes2") != -1>>\
<td><<image "content/pdoll/clothes/shoes/shoes2.png" 100 200>></td>\
<td> Chanel's black leather flats </td>\
<td> <<displayShoesw "shoes2" "Player Wardrobe">></td>\
<</if>>\
</tr>
<tr>
<<if $inventory.indexOf("shoes3") != -1>>\
<td><<image "content/pdoll/clothes/shoes/shoes3.png" 100 100>></td>\
<td> Sexy black boots for clubbing dress </td>\
<td> <<displayShoesw "shoes3" "Player Wardrobe">></td>\
<</if>>\
</tr>
</tbody>
</table>
<</if>>\
<<button "Leave" "Player Room">><</button>>
<div align='center'>\
Under construction
</div>\
<<button "Leave" "Player Room">><</button>><<if $gameDate.getHours() <= "19" and $gameDate.getHours() >= "8">>\
<img src="content/location/mroom.jpg" style="max-width: 100%;">
<div align='center'>\
Her room is empty.
</div>\
<<button "Stop watching" "Player Spycam">><</button>>
\
\
\
<<elseif $gameDate.getHours() <= "7">>\
<img src="content/peoples/mariana/roombj/2.jpg" style="max-width: 100%;">
<div align='center'>\
She is sleeping.
</div>\
<<button "Stop watching" "Player Spycam">><</button>>
\
\
\
<<elseif $gameDate.getHours() >= "22">>\
<img src="content/peoples/mariana/roombj/2.jpg" style="max-width: 100%;">
<div align='center'>\
She is sleeping.
</div>\
<<button "Stop watching" "Player Spycam">><</button>>
\
\
\
<<elseif $gameDate.getHours() == "21" or $gameDate.getHours() == "20">>\
<video @src="'content/peoples/mariana/' + random(1, 3) + '.mp4'" style="max-width: 100%;" autoplay loop></video>
<<addmins 30>>\
<<addarousal 10>>\
<<Set $marianacamcounter += 1>>\
<<if $CurAR >= 100>>\
<<button "Cum" "Porn Cum">><</button>>
<<else>>\
<<button "Stop watching" "Player Spycam">><</button>>
<</if>>\
<</if>>\
<<if $gameDate.getHours() <= "19" and $gameDate.getHours() >= "8">>\
<img src="content/location/bedroom2.jpg" style="max-width: 100%;">
<div align='center'>\
Her room is empty.
</div>\
<<button "Stop watching" "Player Spycam">><</button>>
\
\
\
<<elseif $gameDate.getHours() <= "7" and $gameDate.getHours() >= "0">>\
<img src="content/peoples/chanel/sleep.jpg" style="max-width: 100%;">
<div align='center'>\
She is sleeping.
</div>\
<<button "Stop watching" "Player Spycam">><</button>>
\
\
\
<<elseif $gameDate.getHours() <= "23" and $gameDate.getHours() >= "22">>\
<img src="content/peoples/chanel/sleep.jpg" style="max-width: 100%;">
<div align='center'>\
She is sleeping.
</div>\
<<button "Stop watching" "Player Spycam">><</button>>
\
\
\
<<elseif $gameDate.getHours() <= "21" and $gameDate.getHours() >= "20">>\
<<set _rnd = random(1, 4)>>\
<<if _rnd == 1>>\
<img src="content/location/bedroom1.jpg" style="max-width: 100%;">
<div align='center'>\
Chanel rush into your room and she is very angry.
</div>\
<<button "Talk with her" "Event: Chanel Maid 1">><</button>>
\
\
\
<<else>>\
<video @src="'content/peoples/chanel/' + random(1, 3) + '.mp4'" style="max-width: 100%;" autoplay loop></video>
<<addmins 30>>\
<<addarousal 10>>\
<<set $chanelcamcounter += 1>>\
<<if $CurAR >= 100>>\
<<button "Cum" "Porn Cum">><</button>>
<<else>>\
<<button "Stop watching" "Player Spycam">><</button>>
<</if>>\
<</if>>\
<</if>>\
<<if $gameDate.getHours() <= "19" and $gameDate.getHours() >= "8">>\
<img src="content/location/bedroom2.jpg" style="max-width: 100%;">
<div align='center'>\
Her room is empty.
</div>\
<<button "Stop watching" "Player Spycam">><</button>>
\
\
\
<<elseif $gameDate.getHours() <= "7" and $gameDate.getHours() >= "0">>\
<img src="content/peoples/chanel/sleep.jpg" style="max-width: 100%;">
<div align='center'>\
She is sleeping.
</div>\
<<button "Stop watching" "Player Spycam">><</button>>
\
\
\
<<elseif $gameDate.getHours() <= "23" and $gameDate.getHours() >= "22">>\
<img src="content/peoples/chanel/sleep.jpg" style="max-width: 100%;">
<div align='center'>\
She is sleeping.
</div>\
<<button "Stop watching" "Player Spycam">><</button>>
\
\
\
<<elseif $gameDate.getHours() <= "21" and $gameDate.getHours() >= "20">>\
<video @src="'content/peoples/chanel/' + random(1, 3) + '.mp4'" style="max-width: 100%;" autoplay loop></video>
<<addmins 30>>\
<<addarousal 10>>\
<<set $chanelcamcounter += 1>>\
<<if $CurAR >= 100>>\
<<button "Cum" "Porn Cum">><</button>>
<<else>>\
<<button "Stop watching" "Player Spycam">><</button>>
<</if>>\
<</if>>\
<<set _rnd = random(1, 3)>>\
<<if _rnd < 3>>\
<<if $gameDate.getHours() <= "6">>\
<img src="content/peoples/maid/sleep.jpg">
<div align='center'>\
She is sleeping.
</div>\
<<button "Stop watching" "Player Spycam">><</button>>
\
\
\
<<elseif $gameDate.getHours() >= "23">>\
<img src="content/peoples/maid/sleep.jpg">
<div align='center'>\
She is sleeping.
</div>\
<<button "Stop watching" "Player Spycam">><</button>>
\
\
\
<<else>>\
<img src="content/location/bedroom3.jpg" style="max-width: 30%;">
<div align='center'>\
Her room is empty.
</div>\
<<button "Stop watching" "Player Spycam">><</button>>
<</if>>\
\
\
\
<<else>>\
<video @src="'content/peoples/maid/' + random(2, 4) + '.mp4'" style="max-width: 100%;" autoplay loop></video>
<<addmins 30>>\
<<addarousal 10>>\
<<set $nataliecamcounter += 1>>\
<<if $CurAR >= 100>>\
<<button "Cum" "Porn Cum">><</button>>
<<else>>\
<<button "Stop watching" "Player Spycam">><</button>>
<</if>>\
<</if>>\
<img src="content/objects/laptop.jpg" style="max-width: 50%;">
\
<<if $gameDate.getHours() < "6">>\
<div align='center'>\
It is too late to watch porn.
</div>\
<<elseif $CurEN < 5>>\
<div align='center'>\
You are too tired to watch porn.
</div>\
<<else>>\
<div align='center'>\
<b>Porn Categories:</b>
</div>\
<<button "Female masturbation" "Porn Watch">>
<<set $pornwatch to "femalemast">>
<<set $fmascounter += 1>>
<<addarousal 10>>\
<<takeenergy 5>>\
<<addmins 20>>
<</button>>
\
<<button "Male masturbation" "Porn Watch">>
<<set $pornwatch to "malemast">>
<<set $mmascounter += 1>>
<<addarousal 10>>\
<<takeenergy 5>>\
<<addmins 20>>
<</button>>
\
<<button "Blowjob, Deepthroat" "Porn Watch">>
<<set $pornwatch to "blowjob">>
<<set $blowjobcounter += 1>>
<<addarousal 10>>\
<<takeenergy 5>>\
<<addmins 20>>
<</button>>
\
<<button "Toys" "Porn Watch">>
<<set $pornwatch to "toys">>
<<set $toyscounter += 1>>
<<addarousal 10>>\
<<takeenergy 5>>\
<<addmins 20>>
<</button>>
\
<<button "Hardcore" "Porn Watch">>
<<set $pornwatch to "hardcore">>
<<set $hccounter += 1>>
<<addarousal 10>>\
<<takeenergy 5>>\
<<addmins 20>>
<</button>>
\
<<button "Lesbian" "Porn Watch">>
<<set $pornwatch to "lesbian">>
<<set $lesbiancounter += 1>>
<<addarousal 10>>\
<<takeenergy 5>>\
<<addmins 20>>
<</button>>
\
<<button "Gay" "Porn Watch">>
<<set $pornwatch to "gay">>
<<set $gaycounter += 1>>
<<addarousal 10>>\
<<takeenergy 5>>\
<<addmins 20>>
<</button>>
\
<<button "Sissy" "Porn Watch">>
<<set $pornwatch to "sissy">>
<<set $sissycounter += 1>>
<<addarousal 10>>\
<<takeenergy 5>>\
<<addmins 20>>
<</button>>
\
<<button "Shemale" "Porn Watch">>
<<set $pornwatch to "shemale">>
<<set $shemalecounter += 1>>
<<addarousal 10>>\
<<takeenergy 5>>\
<<addmins 20>>
<</button>>
\
<<button "BDSM" "Porn Watch">>
<<set $pornwatch to "bdsm">>
<<set $bdsmcounter += 1>>
<<addarousal 10>>\
<<takeenergy 5>>\
<<addmins 20>>
<</button>>
<</if>>\
<<button "Leave" "Player Room">><</button>>
<<if $pornwatch is "femalemast">>\
<video @src="'content/porn/fmass/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
\
\
\
<<elseif $pornwatch is "malemast">>\
<video @src="'content/porn/mmass/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
\
\
\
<<elseif $pornwatch is "blowjob">>\
<video @src="'content/porn/bj/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
\
\
\
<<elseif $pornwatch is "toys">>\
<video @src="'content/porn/toys/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
\
\
\
<<elseif $pornwatch is "hardcore">>\
<video @src="'content/porn/hc/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
\
\
\
<<elseif $pornwatch is "lesbian">>\
<video @src="'content/porn/les/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
\
\
\
<<elseif $pornwatch is "gay">>\
<video @src="'content/porn/gay/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
\
\
\
<<elseif $pornwatch is "sissy">>\
<video @src="'content/porn/sis/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
\
\
\
<<elseif $pornwatch is "shemale">>\
<video @src="'content/porn/she/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
\
\
\
<<elseif $pornwatch is "bdsm">>\
<video @src="'content/porn/bdsm/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<</if>>\
<<if $CurAR >= 100>>\
<<button "Cum" "Porn Cum">><</button>>
<<else>>\
<<button "Stop watching" "Player Porn">><</button>>
<</if>>\
<<if $locked is true>>\
<img src="content/peoples/Player/locked.jpg">
\
<div align='center'>\
You are locked and can not cum.
</div>\
<<button "Leave" "Player Room">><</button>>
\
\
\
<<else>>\
<<set $pdollcum to true>>\
<<if $pgender == "male">>\
<video src="content/peoples/player/pcum1.mp4" style="width: 100%;" autoplay loop></video>
<<set $mcumcounter += 1>>\
\
\
\
<<elseif $pgender == "female">>\
<video src="content/peoples/player/pcum2.mp4" style="width: 100%;" autoplay loop></video>
<<set $fcumcounter += 1>>\
\
\
\
<<elseif $pgender == "shemale">>\
<video src="content/peoples/player/pcum3.mp4" style="width: 100%;" autoplay loop></video>
<<set $scumcounter += 1>>\
<</if>>\
<<handskill>>
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $noorgasm = 0>>\
<<button "Clean yourself" "Player Room">><<set $pdollcum to false>><</button>>
<</if>>\
<<if $pgender is "male">>\
<video @src="'content/peoples/player/selfsuck/msuck' + random(1, 5) + '.mp4'" style="width: 100%;" autoplay loop></video>
\
\
\
<<elseif $pgender is "shemale">>\
<video @src="'content/peoples/player/selfsuck/ssuck' + random(1, 5) + '.mp4'" style="width: 100%;" autoplay loop></video>
<</if>>\
<<blowjobskill>>\
<<if $CurEN < 5>>\
<div align='center'>\
You are tired to continue.
</div>\
<<button "Back" "Player Room">><</button>>
<<else>>\
<<if $CurAR < 80>>\
<<if $pgender is "male">>\
<<button "Keep sucking" "Suck yourself">>
<<set $mgblowjobcounter += 1>>
<<set $mrblowjobcounter += 1>>
<<addarousal 20>>\
<<takeenergy 5>>\
<<addmins 10>>\
<</button>>
\
\
\
<<else>>\
<<button "Keep sucking" "Suck yourself">>
<<set $sgblowjobcounter += 1>>
<<set $srblowjobcounter += 1>>
<<addarousal 20>>\
<<takeenergy 5>>\
<<addmins 10>>\
<</button>>
<</if>>\
<<button "Stop" "Player Room">><</button>>
\
\
\
<<elseif $CurAR >= 80>>\
<<if $pgender is "male">>\
<<button "Cum on yourself" "Cum on yourself">>
<<set $mcumswallowcounter += 1>>
<<set $mcumcounter += 1>>
<<zeroarousal>>
<<takeenergy 10>>
<<set $pdollsex to false>>
<<set $pdollcum to true>>
<<addmins 20>>
<</button>>
\
<<button "Cum in your mouth" "Cum in your mouth">>
<<set $mcumswallowcounter += 1>>
<<set $mcumcounter += 1>>
<<zeroarousal>>
<<takeenergy 10>>
<<set $pdollsex to false>>
<<set $pdollcum to true>>
<<addmins 20>>
<</button>>
\
\
\
<<else>>\
<<button "Cum on yourself" "Cum on yourself">>
<<set $scumswallowcounter += 1>>
<<set $scumcounter += 1>>
<<zeroarousal>>
<<takeenergy 10>>
<<set $pdollsex to false>>
<<set $pdollcum to true>>
<<addmins 20>>
<</button>>
\
<<button "Cum in your mouth" "Cum in your mouth">>
<<set $scumswallowcounter += 1>>
<<set $scumcounter += 1>>
<<zeroarousal>>
<<takeenergy 10>>
<<set $pdollsex to false>>
<<set $pdollcum to true>>
<<addmins 20>>
<</button>>
<</if>>\
<</if>>\
<</if>>\
<<if $pgender is "male">>\
<video @src="'content/peoples/player/selfsuck/mfacial' + random(1, 5) + '.mp4'" style="width: 100%;" autoplay loop></video>
\
\
\
<<elseif $pgender is "shemale">>\
<video @src="'content/peoples/player/selfsuck/sfacial' + random(1, 5) + '.mp4'" style="width: 100%;" autoplay loop></video>
<</if>>\
<<cumplayskill>>\
<<button "Stop" "Player Room">><<set $pdollcum to false>><</button>>
<<if $pgender is "male">>\
<video @src="'content/peoples/player/selfsuck/mcum' + random(1, 5) + '.mp4'" style="width: 100%;" autoplay loop></video>
\
\
\
<<elseif $pgender is "shemale">>\
<video @src="'content/peoples/player/selfsuck/scum' + random(1, 5) + '.mp4'" style="width: 100%;" autoplay loop></video>
<</if>>\
<<cumplayskill>>\
<<button "Leave" "Player Room">><<set $pdollcum to false>><</button>>
Double-click this passage to edit it.<<if $gameDate.getHours() < "6">>\
<div align='center'>\
It is too late to do that.
</div>\
<<button "Back" "Player Room">><</button>>
\
\
\
<<else>>\
<<if $CurEN < 5>>\
<div align='center'>\
You are tired to do that.
</div>\
<<button "Back" "Player Room">><</button>>
\
\
\
<<else>>\
<<if $pgender is "female">>\
<div align='center'>\
You don't have a cock to suck it.
</div>\
<<button "Back" "Player Room">><</button>>
\
\
\
<<else>>\
<<if $locked is true>>\
<img src="content/peoples/Player/locked.jpg">
\
<div align='center'>\
Your penis is locked and can not play with it.
</div>\
<<button "Back" "Player Room">><</button>>
\
\
\
<<else>>\
<<if $flexibility <= 5>>\
<div align='center'>\
You are not felxible enough to do this.
</div>\
<<button "Back" "Player Room">><</button>>
\
\
\
<<elseif $flexibility > 5 and $flexibility <= 15>>\
<div align='center'>\
You are still not flexible enough to reach your cock, but you are getting closer, and you can cum on your face and in your mouth easily if you are aroused.
</div>\
<<if $CurAR >= 80>>\
<<if $pgender is "male">>\
<<button "Cum on yourself" "Cum on yourself">>
<<set $mcumswallowcounter += 1>>
<<set $mcumcounter += 1>>
<<zeroarousal>>
<<takeenergy 10>>
<<set $pdollcum to true>>
<<addmins 10>>
<</button>>
\
\
\
<<else>>\
<<button "Cum on yourself" "Cum on yourself">>
<<set $scumswallowcounter += 1>>
<<set $scumcounter += 1>>
<<zeroarousal>>
<<takeenergy 10>>
<<set $pdollcum to true>>
<<addmins 10>>
<</button>>
<</if>>\
<<button "Back" "Player Room">><</button>>
\
\
\
<<else>>\
<div align='center'>\
You are not aroused enough.
</div>\
<<button "Back" "Player Room">><</button>>
<</if>>\
\
\
\
<<elseif $flexibility > 15>>\
<div align='center'>\
You are flexible enough to suck your own cock.
</div>\
<<if $pgender is "male">>\
<<button" Suck yourself" "Suck yourself">>
<<set $mgblowjobcounter += 1>>
<<set $mrblowjobcounter += 1>>
<<addarousal 20>>\
<<takeenergy 5>>\
<<set $pdollsex to true>>
<<addmins 20>>
<</button>>
\
\
\
<<else>>\
<<button" Suck yourself" "Suck yourself">>
<<set $sgblowjobcounter += 1>>
<<set $srblowjobcounter += 1>>
<<addarousal 20>>\
<<takeenergy 5>>\
<<set $pdollsex to true>>
<<addmins 20>>
<</button>>
<</if>>\
<<button "Back" "Player Room">><</button>>
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<</if>>\
<video @src="'content/porn/hypno/' + random(1, 8) + '.mp4'" style="width: 100%;" autoplay loop></video>
<<willingness5>>\
<<if $CurAR >= 100>>\
<<button "Cum" "Porn Cum">><</button>>
<<else>>\
<<button "Stop watching" "Player Room">><</button>>
<</if>>\
<<if $pgender is "male">>\
<div align='center'>\
<video src="content/peoples/player/shower1.mp4" autoplay loop></video>
You have a beautiful clean body now.
</div>\
<<set $pdollsex to true>>\
<<set $bodywash = 0>>\
<<button "Leave" "Player Room">><<set $pdollsex to false>><</button>>
\
\
\
<<elseif $pgender is "female">>\
<div align='center'>\
<video src="content/peoples/player/shower2.mp4" autoplay loop></video>
You have a beautiful clean body now.
</div>\
<<set $pdollsex to true>>\
<<set $bodywash = 0>>\
<<button "Leave" "Player Room">><<set $pdollsex to false>><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<<set _rnd = random(1, 3)>>\
<<if _rnd == 1>>\
<<if $chanelshowerdaily2 is false>>\
<img src="content/peoples/chanel/shower2/1.jpg" style="max-width: 50%;">
\
<div align='center'>\
You see Chanel standing naked in the shower as you step into your bathroom.
</div>\
<<speech "Chanel">>Do you want me to wash your back?<</speech>>
<<set $pdollsex to true>>\
<<button "Shower with Chanel" "Chanel shower 2">><</button>>
<<button "Refuse" "Player Room">><</button>>
\
\
\
<<else>>\
<div align='center'>\
<video src="content/peoples/player/shower3.mp4" autoplay loop></video>
You have a beautiful clean body now.
</div>\
<<set $pdollsex to true>>\
<<set $bodywash = 0>>\
<<button "Leave" "Player Room">><<set $pdollsex to false>><</button>>
<</if>>\
\
\
\
<<else>>\
<div align='center'>\
<video src="content/peoples/player/shower3.mp4" autoplay loop></video>
You have a beautiful clean body now.
</div>\
<<set $pdollsex to true>>\
<<set $bodywash = 0>>\
<<button "Leave" "Player Room">><<set $pdollsex to false>><</button>>
<</if>>\
<</if>>\
<<if $chanelshower == 1>>\
<video src="content/peoples/chanel/shower2/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She starts kissing you under the spray of the shower.
</div>\
<<addarousal 10>>\
<<button "Continue" "Chanel shower 2">><<set $chanelshower += 1>><</button>>
\
\
\
\
<<elseif $chanelshower == 2>>\
<video src="content/peoples/chanel/shower2/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Chanel slowly sinks to her knees in front of you and takes your erect member between her lips causing you to moan loudly.
</div>\
<<addarousal 10>>\
<<button "Continue" "Chanel shower 2">><<set $chanelshower += 1>><</button>>
\
\
\
\
<<elseif $chanelshower == 3>>\
<video src="content/peoples/chanel/shower2/3.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You pull Chanel up and after a quick kiss, you sinks down and eat Chanel’s cock.
</div>\
<<addarousal 10>>\
<<button "Continue" "Chanel shower 2">><<set $chanelshower += 1>><</button>>
\
\
\
\
<<elseif $chanelshower == 4>>\
<video src="content/peoples/chanel/shower2/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Chanel is eager for more than your mouth and she slips her finger into your ass to get it warmed up.
</div>\
<<addarousal 10>>\
<<button "Continue" "Chanel shower 2">><<set $chanelshower += 1>><</button>>
\
\
\
\
<<elseif $chanelshower == 5>>\
<video src="content/peoples/chanel/shower2/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Wordlessly, you spit on Chanel’s cock to get it ready.
</div>\
<<addarousal 10>>\
<<button "Continue" "Chanel shower 2">><<set $chanelshower += 1>><</button>>
\
\
\
\
<<elseif $chanelshower == 6>>\
<video src="content/peoples/chanel/shower2/6.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You leans against the tiled wall and spread your ass with your other hand. Chanel steps up and slides her cock inside. The expression on both of your faces is priceless.
</div>\
<<addarousal 10>>\
<<button "Continue" "Chanel shower 2">><<set $chanelshower += 1>><<set $pdollsex to false>><<set $pdollcum to true>><</button>>
\
\
\
\
<<elseif $chanelshower == 7>>\
<video src="content/peoples/chanel/shower2/7.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Chanel reaches around you and begins to stroke your cock in time with her thrusts. You looks back at her with lust in your eyes and Chanel leans in to share another kiss. You cries out and your seed spilling from your bouncing cock. Chanel’s orgasm isn’t long following as your ass milking her dick and her cum shoots inside your ass giving you a nice cream pie.
</div>\
<<zeroarousal>>\
<<button "Continue" "Chanel shower 2">><<set $chanelshower += 1>><<set $pdollsex to true>><<set $pdollcum to false>><</button>>
\
\
\
\
<<elseif $chanelshower == 8>>\
<video src="content/peoples/chanel/shower2/8.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You kneel again and suck the last of Chanel’s cum from her still hard cock.
</div>\
<<set $tongueskill += 1>>\
<<set $blowjobskill += 1>>\
<<set $sexskill += 1>>\
<<set $cumplayskill += 1>>\
<<set $scumcounter += 1>>\
<<set $skisscounter += 1>>\
<<set $scocklickcounter += 1>>\
<<set $sgblowjobcounter += 1>>\
<<set $srblowjobcounter += 1>>\
<<set $sranalcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<addarousal 10>>\
<<button "Leave" "Player Room">><<set $chanelshower = 1>><<set $pdollsex to false>><<set $chanelshowerdaily2 to true>><</button>>
<</if>>\
<div align='center'>\
<<if $pgender is "male" or $pgender is "shemale">>\
<<if $locked is true>>\
<video src="content/peoples/player/piss3.mp4" autoplay loop></video>
<<else>>\
<video src="content/peoples/player/piss1.mp4" autoplay loop></video>
<</if>>\
\
\
\
<<elseif $pgender is "female">>\
<video src="content/peoples/player/piss2.mp4" autoplay loop></video>
<</if>>\
You feel much better now.
</div>\
<<button "Leave" "Player Room">><</button>>
<<if $pgender is "male">>
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:25%"><b>Your face</b></th>
<th style="width:25%"><b>Your body</b></th>
<th style="width:25%"><b>Your penis</b></th>
<th style="width:25%"><b>Your asshole</b></th>
</tr>
</thead>
<tbody>
<tr><<if $facialhair <= 3>>\
<<set $path = "content/peoples/player/facialhair0.jpg">>\
<td><<image $path 100 200>>
You have a clean shaven face</td>\
<<elseif $facialhair > 3 and $facialhair <= 10>>\
<<set $path = "content/peoples/player/facialhair1.jpg">>\
<td><<image $path 100 200>>
You have stubble</td>\
<<elseif $facialhair > 10 and $facialhair <= 30>>\
<<set $path = "content/peoples/player/facialhair2.jpg">>\
<td><<image $path 100>>
You have a short beard</td>\
<<elseif $facialhair > 30>>\
<<set $path = "content/peoples/player/facialhair3.jpg">>\
<td><<image $path 150>>
You have a long beard</td>\
<</if>>
<<if $bodyhair < 10>>\
<<set $path = "content/peoples/player/mbody0.jpg">>\
<td><<image $path 100 150>>
You have a clean shaven body</td>\
<<elseif $bodyhair >= 10>>\
<<set $path = "content/peoples/player/mbody1.jpg">>\
<td><<image $path 100 100>>
You have a hairy body</td>\
<</if>>\
<<if $locked is true>>\
<<set $path = "content/peoples/player/locked.jpg">>\
<td><<image $path 100 200>>
Your cock is locked</td>\
<<elseif $penissize == 1>>\
<<set $path = "content/peoples/player/penis1.jpg">>\
<td><<image $path 100 150>>
You have a micro penis</td>\
<<elseif $penissize == 2>>\
<<set $path = "content/peoples/player/penis2.jpg">>\
<td><<image $path 100 150>>
You have a small penis</td>\
<<elseif $penissize == 3>>\
<<set $path = "content/peoples/player/penis3.jpg">>\
<td><<image $path 100 200>>
You have average penis</td>\
<<elseif $penissize == 4>>\
<<set $path = "content/peoples/player/penis4.jpg">>\
<td><<image $path 100 200>>
You have a big penis</td>\
<<elseif $penissize == 5>>\
<<set $path = "content/peoples/player/penis5.jpg">>\
<td><<image $path 100 150>>
You have a very big penis</td>\
<<elseif $penissize == 6>>\
<<set $path = "content/peoples/player/penis6.jpg">>\
<td><<image $path 100 150>>
You have a monster</td>\
<</if>>\
<<if $analsize < 20>>\
<<set $path = "content/peoples/player/asshole1.jpg">>\
<td><<image $path 100 180>>
You have a very tight asshole</td>\
<<elseif $analsize >= 20 and $analsize < 40>>\
<<set $path = "content/peoples/player/asshole2.jpg">>\
<td><<image $path 100 180>>
You have a small asshole</td>\
<<elseif $analsize >= 40 and $analsize < 60>>\
<<set $path = "content/peoples/player/asshole3.jpg">>\
<td><<image $path 100 180>>
You have a used asshole</td>\
<<elseif $analsize >= 60 and $analsize < 80>>\
<<set $path = "content/peoples/player/asshole4.jpg">>\
<td><<image $path 100 180>>
You have a trained asshole</td>\
<<elseif $analsize >= 80 and $analsize < 100>>\
<<set $path = "content/peoples/player/asshole5.jpg">>\
<td><<image $path 100 180>>
You have a destroyed asshole</td>\
<<elseif $analsize > 100>>\
<<set $path = "content/peoples/player/asshole6.jpg">>\
<td><<image $path 100 180>>
You have a gaping asshole</td>\
<</if>>
</tr>
</tbody>
</table>
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:25%"><b></b></th>
<th style="width:25%"><b>Item</b></th>
<th style="width:25%"><b>Number of items</b></th>
<th style="width:25%"><b>Action</b></th>
</tr>
</thead>
<tbody>
<tr>
<<if $razor >= 1>>\
<td><<image "content/objects/razor.jpg" 100 130>></td>\
<td> One Time Razor </td>\
<td> $razor </td>\
<td><<button "Shave your face" "Player Bodycheck">>\
<<set $facialhair = 0>>\
<<set $razor -= 1>>\
<</button>></td>\
<</if>>\
</tr>
<tr>
<<if $razor >= 1>>\
<td><<image "content/objects/razor.jpg" 100 130>></td>\
<td>One Time Razor</td>\
<td> $razor </td>\
<td><<button "Shave your body" "Player Bodycheck">>\
<<set $bodyhair = 0>>\
<<set $razor -= 1>>\
<</button>></td>\
<</if>>\
</tr>
<tr>
<<if $liannaserum >= 1>>\
<td><<image "content/objects/st_serum.png" 100 70>></td>\
<td>Lianna's Special Serum</td>\
<td>$liannaserum</td>\
<td><<button "Test" "Final quest">><<set $liannaserum -= 1>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $esv >= 1>>\
<td><<image "content/objects/e_serum.png" 100 70>></td>\
<td>Energy Serum</td>\
<td>$esv</td>\
<td><<button "Drink" "Player Bodycheck">><<set $CurEN = ($CurEN += 20).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>><<set $esv -= 1>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $fbsv >= 1>>\
<td><<image "content/objects/fg_serum.png" 100 70>></td>\
<td>Female Body Serum</td>\
<td>$fbsv</td>\
<td><<if $ht <= 13>>\
You can not change body now.
<<else>>\
<<if $locked is true>>\
You can not become a female while your cock is locked.
<<else>>\
<<button "Drink" "Player Bodycheck">><<set $pgender to "female">><<set $currHair = 5>><<set $currMakeup = 0>><<set $currLips = 0>><<set $currFingernails = 0>><<set $currToenails = 0>><<set $fbsv -= 1>><<set $fname = $femalename>><<set $punderwear to "female">><<set $psocks to "female">><<set $pshoes to "female">><<set $pbra to "female">><<set $ptrousers to "female">><<set $pshirt to "female">><<set $pjumper to "female">><<set $currUnderwear to "underwear2">><<set $currSocks to "socks3">><<set $currShoes to "shoes2">><<set $currBra to "bra1">><<set $currTrousers to "trousers2">><<set $currShirt to "shirt2">><<set $currJumper to "jumper2">><</button>>
<</if>>\
<</if>></td>\
<</if>>\
</tr>
<tr>
<<if $sbsv >= 1>>\
<td><<image "content/objects/shemale_serum.png" 100 70>></td>\
<td>Shemale Body Serum</td>\
<td>$sbsv</td>\
<td><<if $ht <= 13>>\
You can not change body now.
<<else>>\
<<button "Drink" "Player Bodycheck">><<set $pgender to "shemale">><<set $currHair = 5>><<set $currMakeup = 0>><<set $currLips = 0>><<set $currFingernails = 0>><<set $currToenails = 0>><<set $sbsv -= 1>><<set $fname = $femalename>><<set $punderwear to "female">><<set $psocks to "female">><<set $pshoes to "female">><<set $pbra to "female">><<set $ptrousers to "female">><<set $pshirt to "female">><<set $pjumper to "female">><<set $currUnderwear to "underwear2">><<set $currSocks to "socks3">><<set $currShoes to "shoes2">><<set $currBra to "bra1">><<set $currTrousers to "trousers2">><<set $currShirt to "shirt2">><<set $currJumper to "jumper2">><</button>>
<</if>></td>\
<</if>>\
</tr>
<tr>
<<if $pesv >= 1>>\
<td><<image "content/objects/pe_serum.png" 100 70>></td>\
<td>Penis Enlargement Serum</td>\
<td>$pesv</td>\
<td>Not working yet<</button>></td>\
<</if>>\
</tr>
<tr>
<<if $prsv >= 1>>\
<td><<image "content/objects/pr_serum.png" 100 70>></td>\
<td>Penis Reduction Serum</td>\
<td>$prsv</td>\
<td>Not working yet</td>\
<</if>>\
</tr>
</tbody>
</table>
<<elseif $pgender is "shemale">>
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:20%"><b>Your eyebrows</b></th>
<th style="width:20%"><b>Your legs</b></th>
<th style="width:20%"><b>Your boobs</b></th>
<th style="width:20%"><b>Your penis</b></th>
<th style="width:20%"><b>Your asshole</b></th>
</tr>
</thead>
<tbody>
<tr><<if $facialhair <= 3>>\
<<set $path = "content/peoples/player/eyebrows0.jpg">>\
<td><<image $path 50 200>>
You have plucked eyebrows</td>\
<<elseif $facialhair > 3 and $facialhair <= 10>>\
<<set $path = "content/peoples/player/eyebrows1.jpg">>\
<td><<image $path 50 200>>
You have thick eyebrows</td>\
<<elseif $facialhair > 10 and $facialhair <= 30>>\
<<set $path = "content/peoples/player/eyebrows2.jpg">>\
<td><<image $path 50 200>>
You have overgrown eyebrows</td>\
<<elseif $facialhair > 30>>\
<<set $path = "content/peoples/player/eyebrows3.jpg">>\
<td><<image $path 50 200>>
You have unibrow</td>\
<</if>>
<<if $bodyhair < 5>>\
<<set $path = "content/peoples/player/hairy_legs0.jpg">>\
<td><<image $path 200 200>>
You have clean shaven legs</td>\
<<elseif $bodyhair >= 5 and $bodyhair < 10>>\
<<set $path = "content/peoples/player/hairy_legs1.jpg">>\
<td><<image $path 200 200>>
You have hairy legs</td>\
<<elseif $bodyhair >= 10>>\
<<set $path = "content/peoples/player/hairy_legs2.jpg">>\
<td><<image $path 200 200>>
You have very hairy legs</td>\
<</if>>\
<<if $questtransformation < 8>>\
<<set $path = "content/peoples/player/tits7.jpg">>\
<td><<image $path 150 200>>
You have a fake boobs</td>\
<<elseif $boobsize == 1>>\
<<set $path = "content/peoples/player/tits1.jpg">>\
<td><<image $path 150 250>>
You have a very small boobs</td>\
<<elseif $boobsize == 2>>\
<<set $path = "content/peoples/player/tits2.jpg">>\
<td><<image $path 150 250>>
You have a small boobs</td>\
<<elseif $boobsize == 3>>\
<<set $path = "content/peoples/player/tits3.jpg">>\
<td><<image $path 150 200>>
You have average boobs</td>\
<<elseif $boobsize == 4>>\
<<set $path = "content/peoples/player/tits4.jpg">>\
<td><<image $path 150 250>>
You have a big boobs</td>\
<<elseif $boobsize == 5>>\
<<set $path = "content/peoples/player/tits5.jpg">>\
<td><<image $path 150 250>>
You have a large boobs</td>\
<<elseif $boobsize == 6>>\
<<set $path = "content/peoples/player/tits6.jpg">>\
<td><<image $path 150 250>>
You have extra large boobs</td>\
<</if>>\
<<if $locked is true>>\
<<set $path = "content/peoples/player/locked.jpg">>\
<td><<image $path 100 200>>
Your cock is locked</td>\
<<elseif $penissize == 1>>\
<<set $path = "content/peoples/player/penis1.jpg">>\
<td><<image $path 100 150>>
You have a micro penis</td>\
<<elseif $penissize == 2>>\
<<set $path = "content/peoples/player/penis2.jpg">>\
<td><<image $path 100 150>>
You have a small penis</td>\
<<elseif $penissize == 3>>\
<<set $path = "content/peoples/player/penis3.jpg">>\
<td><<image $path 100 200>>
You have average penis</td>\
<<elseif $penissize == 4>>\
<<set $path = "content/peoples/player/penis4.jpg">>\
<td><<image $path 100 200>>
You have a big penis</td>\
<<elseif $penissize == 5>>\
<<set $path = "content/peoples/player/penis5.jpg">>\
<td><<image $path 100 150>>
You have a very big penis</td>\
<<elseif $penissize == 6>>\
<<set $path = "content/peoples/player/penis6.jpg">>\
<td><<image $path 100 150>>
You have a monster</td>\
<</if>>\
<<if $analsize < 20>>\
<<set $path = "content/peoples/player/asshole1.jpg">>\
<td><<image $path 100 180>>
You have a very tight asshole</td>\
<<elseif $analsize >= 20 and $analsize < 40>>\
<<set $path = "content/peoples/player/asshole2.jpg">>\
<td><<image $path 100 180>>
You have a small asshole</td>\
<<elseif $analsize >= 40 and $analsize < 60>>\
<<set $path = "content/peoples/player/asshole3.jpg">>\
<td><<image $path 100 180>>
You have a used asshole</td>\
<<elseif $analsize >= 60 and $analsize < 80>>\
<<set $path = "content/peoples/player/asshole4.jpg">>\
<td><<image $path 100 180>>
You have a trained asshole</td>\
<<elseif $analsize >= 80 and $analsize < 100>>\
<<set $path = "content/peoples/player/asshole5.jpg">>\
<td><<image $path 100 180>>
You have a destroyed asshole</td>\
<<elseif $analsize > 100>>\
<<set $path = "content/peoples/player/asshole6.jpg">>\
<td><<image $path 100 180>>
You have a gaping asshole</td>\
<</if>>
</tr>
</tbody>
</table>
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:25%"><b></b></th>
<th style="width:25%"><b>Item</b></th>
<th style="width:25%"><b>number of items</b></th>
<th style="width:25%"><b>Action</b></th>
</tr>
</thead>
<tbody>
<tr>
<<if $razor >= 1>>\
<td><<image "content/objects/tweezer.jpg" 100 200>></td>\
<td> Tweezer </td>\
<td> 1 </td>\
<td><<button "Pluck your eyebrow" "Player Bodycheck">>\
<<set $facialhair = 0>>\
<</button>></td>\
<</if>>\
</tr>
<tr>
<<if $razor >= 1>>\
<td><<image "content/objects/razor.jpg" 100 200>></td>\
<td> One Time Razor </td>\
<td> $razor </td>\
<td><<button "Shave your legs" "Player Bodycheck">>\
<<set $bodyhair = 0>>\
<<set $razor -= 1>>\
<</button>></td>\
<</if>>\
</tr>
<tr>
<<if $liannaserum >= 1>>\
<td><<image "content/objects/st_serum.png" 100 70>></td>\
<td>Lianna's Special Serum</td>\
<td>$liannaserum</td>\
<td><<button "Test" "Final quest">><<set $liannaserum -= 1>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $esv >= 1>>\
<td><<image "content/objects/e_serum.png" 100 70>></td>\
<td>Energy Serum</td>\
<td>$esv</td>\
<td><<button "Drink" "Player Bodycheck">><<set $CurEN = ($CurEN += 20).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>><<set $esv -= 1>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $fbsv >= 1>>\
<td><<image "content/objects/fg_serum.png" 100 70>></td>\
<td>Female Body Serum</td>\
<td>$fbsv</td>\
<td><<if $ht <= 13>>\
You can not change body now.
<<else>>\
<<if $locked is true>>\
You can not become a female while your cock is locked.
<<else>>\
<<button "Drink" "Player Bodycheck">><<set $pgender to "female">><<set $fbsv -= 1>><</button>>
<</if>>
<</if>></td>\
<</if>>\
</tr>
<tr>
<<if $mbsv >= 1>>\
<td><<image "content/objects/mg_serum.png" 100 70>></td>\
<td>Male Body Serum</td>\
<td>$mbsv</td>\
<td><<if $ht <= 13>>\
You can not change body now.
<<else>>\
<<button "Drink" "Player Bodycheck">><<set $pgender to "male">><<set $currHair = 44>><<set $currMakeup = 0>><<set $currLips = 0>><<set $currFingernails = 0>><<set $currToenails = 0>><<set $mbsv -= 1>><<set $fname = $malename>><<set $punderwear to "male">><<set $psocks to "male">><<set $pshoes to "male">><<set $pbra to "none">><<set $ptrousers to "male">><<set $pshirt to "male">><<set $pjumper to "male">><<set $currUnderwear to "underwear1">><<set $currSocks to "socks1">><<set $currShoes to "shoes1">><<set $currBra to "none">><<set $currTrousers to "trousers1">><<set $currShirt to "shirt1">><<set $currJumper to "jumper1">><</button>>
<</if>></td>\
<</if>>\
</tr>
<tr>
<<if $pesv >= 1>>\
<td><<image "content/objects/pe_serum.png" 100 70>></td>\
<td>Penis Enlargement Serum</td>\
<td>$pesv</td>\
<td>Not working yet</td>\
<</if>>\
</tr>
<tr>
<<if $prsv >= 1>>\
<td><<image "content/objects/pr_serum.png" 100 70>></td>\
<td>Penis Reduction Serum</td>\
<td>$prsv</td>\
<td>Not working yet</td>\
<</if>>\
</tr>
<tr>
<<if $besv >= 1>>\
<td><<image "content/objects/be_serum.png" 100 70>></td>\
<td>Breast Enchancer Serum</td>\
<td>$besv</td>\
<td><<if $ht <= 11>>\
You have fake boobs, serums not working.
<<else>>\
Not working yet
<</if>></td>\
<</if>>\
</tr>
<tr>
<<if $bdsv >= 1>>\
<td><<image "content/objects/bd_serum.png" 100 70>></td>\
<td>Breast Decreaser Serum</td>\
<td>$bdsv</td>\
<td><td><<if $ht <= 11>>\
You have fake boobs, serums not working.
<<else>>\
Not working yet
<</if>></td>\
<</if>>\
</tr>
</tbody>
</table>
\
<<elseif $pgender is "female">>
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:20%"><b>Your eyebrows</b></th>
<th style="width:20%"><b>Your legs</b></th>
<th style="width:20%"><b>Your boobs</b></th>
<th style="width:20%"><b>Your pussy</b></th>
<th style="width:20%"><b>Your asshole</b></th>
</tr>
</thead>
<tbody>
<tr><<if $facialhair <= 3>>\
<<set $path = "content/peoples/player/eyebrows0.jpg">>\
<td><<image $path 50 200>>
You have plucked eyebrows</td>\
<<elseif $facialhair > 3 and $facialhair <= 10>>\
<<set $path = "content/peoples/player/eyebrows1.jpg">>\
<td><<image $path 50 200>>
You have thick eyebrows</td>\
<<elseif $facialhair > 10 and $facialhair <= 30>>\
<<set $path = "content/peoples/player/eyebrows2.jpg">>\
<td><<image $path 50 200>>
You have overgrown eyebrows</td>\
<<elseif $facialhair > 30>>\
<<set $path = "content/peoples/player/eyebrows3.jpg">>\
<td><<image $path 50 200>>
You have unibrow</td>\
<</if>>
<<if $bodyhair < 5>>\
<<set $path = "content/peoples/player/hairy_legs0.jpg">>\
<td><<image $path 200 200>>
You have clean shaven legs</td>\
<<elseif $bodyhair >= 5 and $bodyhair < 10>>\
<<set $path = "content/peoples/player/hairy_legs1.jpg">>\
<td><<image $path 200 200>>
You have hairy legs</td>\
<<elseif $bodyhair >= 10>>\
<<set $path = "content/peoples/player/hairy_legs2.jpg">>\
<td><<image $path 200 200>>
You have very hairy legs</td>\
<</if>>\
<<if $ht == 11>>\
<<set $path = "content/peoples/player/tits7.jpg">>\
<td><<image $path 150 200>>
You have a fake boobs</td>\
<<elseif $boobsize == 1>>\
<<set $path = "content/peoples/player/tits1.jpg">>\
<td><<image $path 150 250>>
You have a very small boobs</td>\
<<elseif $boobsize == 2>>\
<<set $path = "content/peoples/player/tits2.jpg">>\
<td><<image $path 150 250>>
You have a small boobs</td>\
<<elseif $boobsize == 3>>\
<<set $path = "content/peoples/player/tits3.jpg">>\
<td><<image $path 150 200>>
You have average boobs</td>\
<<elseif $boobsize == 4>>\
<<set $path = "content/peoples/player/tits4.jpg">>\
<td><<image $path 150 250>>
You have a big boobs</td>\
<<elseif $boobsize == 5>>\
<<set $path = "content/peoples/player/tits5.jpg">>\
<td><<image $path 150 250>>
You have a large boobs</td>\
<<elseif $boobsize == 6>>\
<<set $path = "content/peoples/player/tits6.jpg">>\
<td><<image $path 150 250>>
You have extra large boobs</td>\
<</if>>\
<<if $locked is true>>\
<<set $path = "content/peoples/player/lockedf.jpg">>\
<td><<image $path 100 200>>
Your pussy is locked</td>\
<<elseif $pussysize < 20>>\
<<set $path = "content/peoples/player/pussy1.jpg">>\
<td><<image $path 200 200>>
You have a very tight pussy</td>\
<<elseif $pussysize >= 20 and $pussy < 40>>\
<<set $path = "content/peoples/player/pussy2.jpg">>\
<td><<image $path 200 200>>
You have a small pussy</td>\
<<elseif $pussysize >= 40 and $pussy < 60>>\
<<set $path = "content/peoples/player/pussy3.jpg">>\
<td><<image $path 200 200>>
You have average pussy</td>\
<<elseif $pussysize >= 60 and $pussy < 80>>\
<<set $path = "content/peoples/player/pussy4.jpg">>\
<td><<image $path 200 200>>
You have a well used pussy</td>\
<<elseif $pussysize >= 80 and $pussy < 100>>\
<<set $path = "content/peoples/player/pussy5.jpg">>\
<td><<image $path 200 200>>
You have a destroyed pussy</td>\
<<elseif $pussysize > 100>>\
<<set $path = "content/peoples/player/pussy6.jpg">>\
<td><<image $path 200 200>>
You have a huge hole</td>\
<</if>>\
<<if $analsize < 20>>\
<<set $path = "content/peoples/player/asshole1.jpg">>\
<td><<image $path 100 180>>
You have a very tight asshole</td>\
<<elseif $analsize >= 20 and $analsize < 40>>\
<<set $path = "content/peoples/player/asshole2.jpg">>\
<td><<image $path 100 180>>
You have a small asshole</td>\
<<elseif $analsize >= 40 and $analsize < 60>>\
<<set $path = "content/peoples/player/asshole3.jpg">>\
<td><<image $path 100 180>>
You have a used asshole</td>\
<<elseif $analsize >= 60 and $analsize < 80>>\
<<set $path = "content/peoples/player/asshole4.jpg">>\
<td><<image $path 100 180>>
You have a trained asshole</td>\
<<elseif $analsize >= 80 and $analsize < 100>>\
<<set $path = "content/peoples/player/asshole5.jpg">>\
<td><<image $path 100 180>>
You have a destroyed asshole</td>\
<<elseif $analsize > 100>>\
<<set $path = "content/peoples/player/asshole6.jpg">>\
<td><<image $path 100 180>>
You have a gaping asshole</td>\
<</if>>
</tr>
</tbody>
</table>
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:25%"><b></b></th>
<th style="width:25%"><b>Item</b></th>
<th style="width:25%"><b>number of items</b></th>
<th style="width:25%"><b>Action</b></th>
</tr>
</thead>
<tbody>
<tr>
<<if $razor >= 1>>\
<td><<image "content/objects/tweezer.jpg" 100 200>></td>\
<td> Tweezer </td>\
<td> 1 </td>\
<td><<button "Pluck your eyebrow" "Player Bodycheck">>\
<<set $facialhair = 0>>\
<</button>></td>\
<</if>>\
</tr>
<tr>
<<if $razor >= 1>>\
<td><<image "content/objects/razor.jpg" 100 200>></td>\
<td> One Time Razor </td>\
<td> $razor </td>\
<td><<button "Shave your legs" "Player Bodycheck">>\
<<set $bodyhair = 0>>\
<<set $razor -= 1>>\
<</button>></td>\
<</if>>\
</tr>
<tr>
<<if $liannaserum >= 1>>\
<td><<image "content/objects/st_serum.png" 100 70>></td>\
<td>Lianna's Special Serum</td>\
<td>$liannaserum</td>\
<td><<button "Test" "Final quest">><<set $liannaserum -= 1>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $esv >= 1>>\
<td><<image "content/objects/e_serum.png" 100 70>></td>\
<td>Energy Serum</td>\
<td>$esv</td>\
<td><<button "Drink" "Player Bodycheck">><<set $CurEN = ($CurEN += 20).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>><<set $esv -= 1>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $mbsv >= 1>>\
<td><<image "content/objects/mg_serum.png" 100 70>></td>\
<td>Male Body Serum</td>\
<td>$mbsv</td>\
<td><<if $ht <= 13>>\
You can not change body now.
<<else>>\
<<if $locked is true>>\
You can not become a male while you are locked in chastity belt.
<<else>>\
<<button "Drink" "Player Bodycheck">><<set $pgender to "male">><<set $currHair = 44>><<set $currMakeup = 0>><<set $currLips = 0>><<set $currFingernails = 0>><<set $currToenails = 0>><<set $mbsv -= 1>><<set $fname = $malename>><<set $punderwear to "male">><<set $psocks to "male">><<set $pshoes to "male">><<set $pbra to "none">><<set $ptrousers to "male">><<set $pshirt to "male">><<set $pjumper to "male">><<set $currUnderwear to "underwear1">><<set $currSocks to "socks1">><<set $currShoes to "shoes1">><<set $currBra to "none">><<set $currTrousers to "trousers1">><<set $currShirt to "shirt1">><<set $currJumper to "jumper1">><</button>>
<</if>>\
<</if>>\
</td>\
<</if>>\
</tr>
<tr>
<<if $sbsv >= 1>>\
<td><<image "content/objects/shemale_serum.png" 100 70>></td>\
<td>Shemale Body Serum</td>\
<td>$sbsv</td>\
<td><<if $ht <= 13>>\
You can not change body now.
<<else>>\
<<if $locked is true>>\
You can not become a shemale while you are locked in chastity belt.
<<else>>\
<<button "Drink" "Player Bodycheck">><<set $pgender to "shemale">><<set $sbsv -= 1>><</button>>
<</if>>\
<</if>>\
</td>\
<</if>>\
</tr>
<tr>
<<if $besv >= 1>>\
<td><<image "content/objects/be_serum.png" 100 70>></td>\
<td>Breast Enchancer Serum</td>\
<td>$besv</td>\
<td>Not working yet</td>\
<</if>>\
</tr>
<tr>
<<if $bdsv >= 1>>\
<td><<image "content/objects/bd_serum.png" 100 70>></td>\
<td>Breast Decreaser Serum</td>\
<td>$bdsv</td>\
<td>Not working yet</td>\
<</if>>\
</tr>
</tbody>
</table>
<</if>>
<<button "Leave" "Player Room">><</button>>
<<if $jordirepo < 4>>\
<div align='center'>\
You walk up the Jordi’s door and pause there for a moment listening to see if you can hear anything on the other side before gently knocking. You hear him moving in the room so you take a step back from the door as he begins to open it.
</div>\
<img src="content/location/jordiroom.jpg">
\
<<speech "Jordi">>Oh, it's you. What do you want $fname?<</speech>>
<<speech "player" "$fname">>Hey Jordi, I just wanted to see if you wanted someone to play with in one of your games. I’m bored and would love to hang out.<</speech>>
<<if $jordidailyplay is true>>\
<div align='center'>\
You already played with him today.
</div>\
\
\
\
<<else>>\
<<if $pgender is "female">>\
<<if $CurEN >= 10>>\
<<button "Play with him" "Jordi play">><<set $jordirepo += 1>><<addhours 1>><<takeenergy 10>><</button>>
<<else>>\
<div align='center'>\
You are tired to play with him.
</div>\
<</if>>\
<<else>>\
<div align='center'>\
You need a female body to play with him.
</div>\
<</if>>\
<</if>>\
<<button "Talk with him" "Jordi talk">><</button>>
<<button "Leave" "Hallway Down">><</button>>
\
\
\
<<elseif $jordirepo == 4>>\
<div align='center'>\
You walk up the Jordi’s door and pause there for a moment listening to see if you can hear anything on the other side before gently knocking. You hear him moving in the room so you take a step back from the door as he begins to open it.
</div>\
<<speech "Jordi">>You don’t need to knock. If you want to talk to me, just open the door and come in.<</speech>>
<<speech "player" "$fname">>Oh! Uhm, thanks… I… Thanks for your trust.<</speech>>
<div align='center'>\
He gives you a peculiar look like you have antennae growing out of your head or something and then walks back to the TV.
</div>\
<img src="content/location/jordiroom.jpg">
\
<<if $jordidailyplay is true>>\
<div align='center'>\
You already played with him today.
</div>\
\
\
\
<<else>>\
<<if $pgender is "female">>\
<<if $CurEN >= 10>>\
<<button "Play with him" "Jordi play">><<set $jordirepo += 1>><<addhours 1>><<takeenergy 10>><</button>>
<<else>>\
<div align='center'>\
You are tired to play with him.
</div>\
<</if>>\
<<else>>\
<div align='center'>\
You need a female body to play with him.
</div>\
<</if>>\
<</if>>\
<<button "Talk with him" "Jordi talk">><</button>>
<<button "Leave" "Hallway Down">><</button>>
\
\
\
<<elseif $jordirepo >= 5 and $jordirepo < 37>>\
<<set _jordiroom = random(1, 3)>>\
<<if _jordiroom == 1 and $pgender is "female">>\
<div align='center'>\
You approach Jordi’s door again and are just about to knock when you remember that he said that you could just walk in next time. You still feel uncomfortable just walking in so you wait just a moment listening to see if you can hear anything. You think you hear the sound of video game music in the background but you also hear something else. Is he moaning?
</div>\
<<button "Check it" "Jordi mast">><</button>>
<<button "Leave" "Hallway Down">><</button>>
\
\
\
<<else>>\
<div align='center'>\
You approach Jordi’s door again and are just about to knock when you remember that he said that you could just walk in next time. You still feel uncomfortable just walking in so you wait just a moment listening to see if you can hear anything. You think you hear the sound of video game music in the background so you push the door open and step inside.
</div>\
<img src="content/location/jordiroom.jpg">
\
<<speech "Jordi">>Hi $fname! Do you wanna play?<</speech>>
<<if $jordidailyplay is true>>\
<div align='center'>\
You already played with him today.
</div>\
\
\
\
<<else>>\
<<if $pgender is "female">>\
<<if $CurEN >= 10>>\
<<button "Play with him" "Jordi play">><<set $jordirepo += 1>><<addhours 1>><<takeenergy 10>><</button>>
<<else>>\
<div align='center'>\
You are tired to play with him.
</div>\
<</if>>\
<<else>>\
<div align='center'>\
You need a female body to play with him.
</div>\
<</if>>\
<</if>>\
<<button "Talk with him" "Jordi talk">><</button>>
<<button "Leave" "Hallway Down">><</button>>
<</if>>\
\
\
\
<<elseif $jordirepo >= 37>>\
<<set _jordiroom = random(1, 3)>>\
<<if _jordiroom == 1 and $pgender is "female">>\
<div align='center'>\
You approach Jordi’s door again and are just about to knock when you remember that he said that you could just walk in next time. You still feel uncomfortable just walking in so you wait just a moment listening to see if you can hear anything. You think you hear the sound of video game music in the background but you also hear something else. Is he moaning?
</div>\
<<button "Check it" "Jordi mast">><</button>>
<<button "Leave" "Hallway Down">><</button>>
\
\
\
<<else>>\
<div align='center'>\
You approach Jordi’s door again and are just about to knock when you remember that he said that you could just walk in next time. You still feel uncomfortable just walking in so you wait just a moment listening to see if you can hear anything. You think you hear the sound of video game music in the background so you push the door open and step inside.
</div>\
<img src="content/location/jordiroom.jpg">
\
<<speech "player" "$fname">>Hey Jordi, care for another game?<</speech>>
<<speech "Jordi">>Oh, hey $fname. Uh, sure. Have a seat. I’m just about done whipping this guys ass. Make yourself comfortable.<</speech>>
<div align='center'>\
You have a seat as you watch the last couple minutes of Jordi playing against an online opponent. You realize that he is in a completely different league from you when it comes to video games.
</div>\
<<speech "player" "$fname">>You are really good at this game Jordi. I don’t think I stand much of a chance of beating you. At least in a regular game. Would you care to level the playing field at all? Play with a handicap?<</speech>>
<<speech "Jordi">>Oh, thanks $fname. I guess I do play a lot. What do you have in mind? I can’t exactly play with one hand or blindfolded or anything like that.<</speech>>
<<speech "player" "$fname">>No silly, I’m thinking more along the lines of turning it into a strip game. We both play in our underwear and each time someone scores a goal, the other takes something off. I’ll get a little head start because I will have a bra as well as my panties. Sound fair enough?<</speech>>
<div align='center'>\
Jordi blushes as he considers and after a few moments nods his head and begins to undress. You smile and follow suit both of you stripping down to just your skivvies.
</div>\
<<if $jordidailyplay is true>>\
<div align='center'>\
You already played with him today.
</div>\
\
\
\
<<else>>\
<<if $pgender is "female">>\
<<if $CurEN >= 10>>\
<<button "Play Strip game" "Jordi strip">><<set $jordirepo += 1>><<addhours 1>><<takeenergy 10>><</button>>
<<button "Play normal game" "Jordi play">><<set $jordirepo += 1>><<addhours 1>><<takeenergy 10>><</button>>
<<else>>\
<div align='center'>\
You are tired to play with him.
</div>\
<</if>>\
<<else>>\
<div align='center'>\
You need a female body to play with him.
</div>\
<</if>>\
<</if>>\
<<button "Talk with him" "Jordi talk">><</button>>
<<button "Leave" "Hallway Down">><</button>>
<</if>>\
<</if>>\
<<if $jordiplayroom == 1>>\
<img @src="'content/peoples/jordi/' + random(1, 2) + '.jpg'">
\
<div align='center'>\
Jordi walks over to the cabinet with all his games and opens a drawer to rummage around. He eventually finds a second controller and walks back to the sofa and sits down offering the controller to you. You take it as you sit down next to him. (+1 Jordi relationship point)
</div>\
<<speech "Jordi">>Have you ever played FIFA? That’s what I’ve been playing.<</speech>>
<<speech "player" "$fname">>It has been a while but yeah, I’ve played it before. You need to go a little easy on me because I’m probably a bit rusty until I get warmed up.<</speech>>
<div align='center'>\
You both pick your teams and you fumble with the controls as it has been a while and it takes you a bit to remember how to play. Jordi doesn’t go too easy on you as he manages to score twice in a fairly short time. Your focus increases trying to prevent him from scoring again. It takes him longer the third time but he is clearly much better than you and he is not letting up at all. Perhaps if you distract him, you might stand a chance.
</div>\
<<button "Move very close to him" "Jordi play">><<set $jordiplayroom = 2>><</button>>
<<button "Stop playing" "Hallway Down">><<set $jordidailyplay to true>><<set $jordiplayroom = 1>><</button>>
\
\
\
\
\
<<elseif $jordiplayroom == 2>>\
<<if $jordirepo < 4>>\
<img src="content/peoples/jordi/3.jpg">
<div align='center'>\
Jordi looks over at you in shock and pushes you away.
</div>\
<<speech "Jordi">>What do you think you are doing? Get away from me. I think you should go.<</speech>>
<div align='center'>\
(-1 Jordi relationship point)
</div>\
<<set $jordirepo -= 1>>\
<<button "Leave" "Hallway Down">><<set $jordidailyplay to true>><<set $jordiplayroom = 1>><</button>>
\
\
\
<<elseif $jordirepo >= 4>>\
<img @src="'content/peoples/jordi/' + random(4, 7) + '.jpg'">
\
<div align='center'>\
You scoot your hips over getting closer to him. In a tense moment, you get to your feet and when you sit back down, you feel your legs brush each other. You look over briefly and see his cheeks flush a bit with embarrassment but his eyes are glued to the screen.
It seems to be working! Jordi begins to make mistakes and you finally manage to push through his defense to make your first goal. His lips tighten to a thin line on his face visibly upset that he conceded a goal. He pushes back hard and it a lucky break that you manage to thwart his counter attack. Looks like you need to up your distraction game if you are going to stand a chance. (+1 Jordi relationship point)
</div>\
<<set $jordirepo += 1>>\
<<button "Put your legs over his" "Jordi play">><<set $jordiplayroom = 3>><</button>>
<<button "Stop playing" "Hallway Down">><<set $jordidailyplay to true>><<set $jordiplayroom = 1>><</button>>
<</if>>\
\
\
\
\
\
<<elseif $jordiplayroom == 3>>\
<<if $jordirepo < 11>>\
<img src="content/peoples/jordi/3.jpg">
<div align='center'>\
Jordi looks over at you in shock and pushes you away.
</div>\
<<speech "Jordi">>What do you think you are doing? Get away from me. I think you should go.<</speech>>
<div align='center'>\
(-1 Jordi relationship point)
</div>\
<<set $jordirepo -= 1>>\
<<button "Leave" "Hallway Down">><<set $jordidailyplay to true>><<set $jordiplayroom = 1>><</button>>
\
\
\
<<elseif $jordirepo >= 11>>\
<img @src="'content/peoples/jordi/' + random(8, 9) + '.jpg'">
\
<div align='center'>\
With a sly smile, you move your leg over his. He looks over at you with a confused look on his face. You take the moment to strike another goal. It is finally dawning on him what you are doing and he seems to have mixed feelings about it. You move your other leg over to join the first so now you are laying on the couch sideways. Jordi continues to play but he seems only half there as his focus is split between the game and your shapely legs draped over his body. You can feel his cock pitching a tent in his pants as it rises up next to your leg.
You manage to score the equalizing goal bringing the score to an even 3 to 3. That seems to snap him back into reality and he comes back against you strong. Asserting his game dominance, he strikes a decisive goal as if to say that when it comes to this game, he is king. (+1 Jordi relationship point)
</div>\
<<set $jordirepo += 1>>\
<<button "Sit on his lap" "Jordi play">><<set $jordiplayroom = 4>><</button>>
<<button "Stop playing" "Hallway Down">><<set $jordidailyplay to true>><<set $jordiplayroom = 1>><</button>>
<</if>>\
\
\
\
\
\
<<elseif $jordiplayroom == 4>>\
<<if $jordirepo < 25>>\
<img src="content/peoples/jordi/3.jpg">
\
<div align='center'>\
Jordi looks over at you in shock and pushes you away.
</div>\
<<speech "Jordi">>What do you think you are doing? Get away from me. I think you should go.<</speech>>
<div align='center'>\
(-1 Jordi relationship point)
</div>\
<<set $jordirepo -= 1>>\
<<button "Leave" "Hallway Down">><<set $jordidailyplay to true>><<set $jordiplayroom = 1>><</button>>
\
\
\
<<elseif $jordirepo >= 25>>\
<img @src="'content/peoples/jordi/' + random(10, 14) + '.jpg'">
\
<div align='center'>\
You stand up in frustration and when you look back at him on the sofa, he has a smug look on his face. Time to escalate. You sit down in his lap and grind your ass back into the huge bulge in his pants. Feeling how hard he is and the heat coming off of it makes your pussy tingle and you feel yourself begin to get damp. The game continues and you seem to be at a stalemate. You push back against him even harder and you finally break his concentration. He is breathing hard now as you continue to gyrate your hips moving back and forth on him. Is he about to cum in his pants? You are both playing very distracted half teasing and half playing the video game. More by accident than anything, you manage to score once more. Jordi lurches under you and you topple sideways on the sofa.
</div>\
<<speech "Jordi">>I think that will be enough for today. I think you should leave now $fname.<</speech>>
<div align='center'>\
Grinning like a cat that caught the canary, you set the controller down on the couch and smooth out your clothes showing off a bit more of your sexy body to Jordi before turning and sauntering out the door. (+1 Jordi relationship point)
</div>\
<<set $jordirepo += 1>>\
<<button "Leave" "Hallway Down">><<set $jordidailyplay to true>><<set $jordiplayroom = 1>><</button>>
<</if>>\
<</if>>\
<<if $jordimast == 1>>\
<div align='center'>\
You slowly turn the handle on the door and push it open just a crack and peer in. Jordi is sitting on the sofa in just his underwear with his sizable dick sticking through the leg hole. It looks like he is reading a porno magazine. He looks so cute there with his small frame and big dick sticking out. It feels wrong to watch him when he is enjoying some private time but you are getting turned on. It could be devastating to your relationship if you get caught.
</div>\
<video src="content/peoples/jordi/1.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<button "Keep watching him" "Jordi mast">><<set $jordimast = 2>><</button>>
<<button "Leave" "Hallway Down">><<set $jordimast = 1>><</button>>
\
\
\
\
\
<<elseif $jordimast == 2>>\
<<set _random = random(1, 4)>>\
<<if _random == 1>>\
<div align='center'>\
As he opens his eyes again, he notices you peeping through the crack of the door and flinches violently in surprise.
</div>\
<video src="content/peoples/jordi/4.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Jordi">>Fuck! Get out of here! You pervert! Close the door! You fucking asshole!<</speech>>
<div align='center'>\
Ice shoots down your veins and you close the door with a jerk.
</div>\
<<button "Leave" "Hallway Down">><<set $jordimast = 1>><<set $jordirepo -= 1>><</button>>
\
\
\
<<else>>\
<div align='center'>\
You reach your hand up to rub your breast and you feel your nipples getting hard as you continue to watch Jordi stroke his cock. You play with a nipple through the fabric and bite your lip suppressing a moan. Jordi has removed his underwear and is now beating his meat harder.
</div>\
<video src="content/peoples/jordi/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Moving your hips side to side, you grind your thighs together. You slip your hand down between your legs and slip a finger into your now damp pussy lips to rub your clit. Jordi places the magazine on the couch and stands up jerking himself fast now. He is going to cum! Your fingers are rubbing faster on your clit now as you continue watching; eager to see him spray his load across the couch.
</div>\
<<addarousal 10>>\
<<button "Keep watching him" "Jordi mast">><<set $jordimast = 3>><</button>>
<<button "Leave" "Hallway Down">><<set $jordimast = 1>><</button>>
<</if>>\
\
\
\
\
\
<<elseif $jordimast == 3>>\
<<set _random = random(1, 4)>>\
<<if _random == 1 or _random == 2>>\
<div align='center'>\
As he opens his eyes again, he notices you peeping through the crack of the door and flinches violently in surprise.
</div>\
<video src="content/peoples/jordi/4.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Jordi">>Fuck! Get out of here! You pervert! Close the door! You fucking asshole!<</speech>>
<div align='center'>\
Ice shoots down your veins and you close the door with a jerk.
</div>\
<<button "Leave" "Hallway Down">><<set $jordimast = 1>><<set $jordirepo -= 1>><</button>>
\
\
\
<<else>>\
<div align='center'>\
With a groan, Jordi flexes his ass as he thrusts his dick back harder into his hands as he erupts coating the sofa with his seed. His head droops back as he continues to milk the last of his cum out.
</div>\
<video src="content/peoples/jordi/3.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<button "Leave quickly" "Hallway Down">><<set $jordimast = 1>><</button>>
<</if>>\
<</if>>\
<<if $jordistrip == 1>>\
<div align='center'>\
You both get settled in for the game. You select your teams and the match begins. You both go back and forth and you see Jordi stealing glances at you so you know he is a bit distracted. You try to push the advantage but whenever things get tense, his focus returns and manages to fend you off. You seem to be getting better but you are still no match for Jordi. He scores the first goal and off comes your bra.
</div>\
<video src="content/peoples/jordi/5.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<button "Take off your bra" "Jordi strip">><<set $jordidailyplay to true>><<set $jordistrip = 2>><</button>>
<<button "Stop playing" "Hallway Down">><<set $jordidailyplay to true>><<set $jordistrip = 1>><</button>>
\
\
\
\
\
<<elseif $jordistrip == 2>>\
<div align='center'>\
If he was distracted by your creamy legs, he is even more distracted by your juicy tits. You press even harder to score but as before, he manages to tear his eyes away in time to defend his goal. Eventually, he makes the next goal as well.
</div>\
<video src="content/peoples/jordi/6.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<button "Take off your panties" "Jordi strip">><<set $jordidailyplay to true>><<set $jordistrip = 3>><<set $pdollsex to true>><</button>>
<<button "Stop playing" "Hallway Down">><<set $jordidailyplay to true>><<set $jordistrip = 1>><</button>>
\
\
\
\
\
<<elseif $jordistrip == 3>>\
<div align='center'>\
You make a bit more of a show out of removing your panties trying to get him even more flustered. You can hear his breathing has sped up and there is a flush to his cheeks and you suspect that he is hiding a boner in his underwear but the way he is sitting makes it hard to tell.
</div>\
<video src="content/peoples/jordi/7.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<button "Keep playing" "Jordi strip">><<set $jordidailyplay to true>><<set $jordistrip = 4>><</button>>
<<button "Stop playing" "Hallway Down">><<set $jordidailyplay to true>><<set $pdollsex to false>><<set $jordistrip = 1>><</button>>
\
\
\
\
\
<<elseif $jordistrip == 4>>\
<div align='center'>\
All the distractions finally prove to be too much for Jordi and you are able to score your first goal. Without a word, he stands and pulls down his tight underwear revealing his hard and throbbing cock.
</div>\
<video src="content/peoples/jordi/8.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Even though he is obviously aroused, he is not pleased to have conceded a goal. His gameplay is more focused again but his ardor has not been affected as his cock waves in the air as he wiggles in his seat. Now it is you that seems to be distracted. Well, there is a simple solution for that.
</div>\
<<addarousal 10>>\
<<button "Distract him" "Jordi strip">><<set $jordidailyplay to true>><<set $jordistrip = 5>><</button>>
<<button "Stop playing" "Hallway Down">><<set $jordidailyplay to true>><<set $jordistrip = 1>><<set $pdollsex to false>><</button>>
\
\
\
\
\
<<elseif $jordistrip == 5>>\
<div align='center'>\
You lean across Jordi and wrap your lips around the head of his cock. Jordi flinches looking down at you as you divide your attention between the meat popsicle in your mouth and the game. You continue to bob your head up and down on Jordi for several minutes and at this point, both of you are too distracted to mount much of an offense.
</div>\
<video src="content/peoples/jordi/9.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You are much more interested in the cock in your mouth than in the game at this point but Jordi is still trying to continue the game. Time to escalate.
</div>\
<<addarousal 10>>\
<<set $fgblowjobcounter += 1>>\
<<button "Keep distracting him" "Jordi strip">><<set $jordidailyplay to true>><<set $jordistrip = 6>><</button>>
<<button "Stop playing" "Hallway Down">><<set $jordidailyplay to true>><<set $jordistrip = 1>><<set $pdollsex to false>><</button>>
\
\
\
\
\
<<elseif $jordistrip == 6>>\
<div align='center'>\
You pop his cock out of your mouth and lean over the chair presenting your ass and arch your back making it a more tempting target.
</div>\
<<speech "player" "$fname">>Come on big boy, show me what you’ve got. Fuck me Jordi.<</speech>>
<div align='center'>\
Jordi looks at your ass and then glances back to the screen before looking back at you again. After a moment’s hesitation, he is too turned on to resist you and he sets the controller down. Wrapping his fingers around your waist, he lines up his cock and slides it in. Oh yes, that feels good.
</div>\
<video src="content/peoples/jordi/10.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<set $frpussyfuckcounter += 1>>\
<<set $pusyysize += 1>>\
<<button "Keep playing" "Jordi strip">><<set $jordidailyplay to true>><<set $jordistrip = 7>><</button>>
<<button "Stop playing" "Hallway Down">><<set $jordidailyplay to true>><<set $jordistrip = 1>><<set $pdollsex to false>><</button>>
\
\
\
\
\
<<elseif $jordistrip == 7>>\
<div align='center'>\
You close your eyes focusing on the feeling of his sizable cock filling your hungry pussy. The two of you drop all pretenses and focus on each other’s pleasure as you fuck in different positions around his room.
</div>\
<video src="content/peoples/jordi/11.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 10>>\
<<button "Keep fucking" "Jordi strip">><<set $jordidailyplay to true>><<set $jordistrip = 8>><</button>>
<<button "Stop fucking" "Hallway Down">><<set $jordidailyplay to true>><<set $jordistrip = 1>><<set $pdollsex to false>><</button>>
\
\
\
\
\
<<elseif $jordistrip == 8>>\
<div align='center'>\
Despite Jordi’s shy nature and small frame, he is well endowed and has a surprising amount of stamina. Eventually the inevitable happens and you feel he is getting close to release. You drop to your knees opening your mouth wide in invitation. With a groan, Jordi flexes his ass as he thrusts his dick back harder into his hands as he erupts coating your face with his seed.
</div>\
<video src="content/peoples/jordi/12.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You lick your face and wipe with your fingers scooping it into your eager mouth.
</div>\
<<speech "player" "$fname">>Wow, Jordi! I didn’t think you had it in you. That was very hot!<</speech>>
<div align='center'>\
You both continue to look at each other as you continue to dress and Jordi has a goofy grin on his face.
</div>\
<<speech "player" "$fname">>I think I’m getting better at FIFA. I want a rematch.<</speech>>
<<speech "Jordi">>I think I’m getting better at FIFA. I want a rematch.<</speech>>
\
<<addarousal 10>>\
<<set $fcumswallowcounter += 1>>\
<<button "Leave" "Hallway Down">><<set $jordidailyplay to true>><<set $jordistrip = 1>><<set $pdollsex to false>><<set $jordistripreplay to true>><</button>>
<</if>>\
<<if $gameDate.getHours() <= "6">>\
<img src="content/peoples/maid/sleep.jpg">
<div align='center'>\
She is sleeping.
</div>\
<<button "Leave" "Hallway Down">><</button>>
\
\
\
<<elseif $gameDate.getHours() >= "23">>\
<img src="content/peoples/maid/sleep.jpg">
<div align='center'>\
She is sleeping.
</div>\
<<button "Leave" "Hallway Down">><</button>>
\
\
\
<<else>>\
<div align='center' style='font-size: 150%;'><b>Natalie's Bedroom</b></div>\
<img src="content/location/bedroom3.jpg" style="max-width: 30%;">
<<button "Check her bathroom" "Natalie Bathroom">><</button>>
<<button "Hide a spycam" "Natalie Hide Spycam">><</button>>
<<button "Leave" "Hallway Down">><</button>>
<</if>>\
<div align='center' style='font-size: 150%;'><b>Natalie's Bedroom</b></div>\
<img src="content/location/bedroom3.jpg" style="max-width: 30%;">
\
<<if $nataliespycam == 0>>\
<<if $spycam >= 1>>\
<div align='center'>\
You hide the camera.
</div>\
<<set $nataliespycam = 1>>\
<<set $spycam -= 1>>\
\
<<else>>\
<div align='center'>\
You don`t have a camera.
</div>\
<</if>>\
\
\
\
<<else>>\
<div align='center'>\
You have already hidden a camera here.
</div>\
<</if>>\
<<button "Back" "Natalie Bedroom">><</button>>
<div align='center' style='font-size: 150%;'><b>Natalie's bathroom</b></div>\
<img src="content/location/bath3.jpg">
<<set _rnd to random(1, 3)>>\
<<if _rnd == 1>>\
<div align='center'>\
Natalie is in the bathroom.
</div>\
<<if $CurEN >= 10>>\
<<button "Peek inside" "Natalie shower">><<set $natshower = 1>><</button>>
<<else>>\
<div align='center'>\
You are tired to peak on her.
</div>\
<</if>>\
\
\
\
<<else>>\
<div align='center'>\
Nice small bathroom.
</div>\
<</if>>\
<<button "Leave" "Natalie Bedroom">><</button>>
<<if $natshower == 1>>\
<video src="content/peoples/maid/bath/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Natalie sitting on the bathtub and looks like she is ready to piss in it.
</div>\
<<button "Stay and watch" "Natalie shower">><<set $natshower = 2>><</button>>
<<button "Leave" "Natalie Bedroom">><</button>>
\
\
\
<<elseif $natshower == 2>>\
<video src="content/peoples/maid/bath/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is releasing her hot piss in the bathtub.
</div>\
<<addmins 30>>\
<<pissplay>>\
<<addarousal 20>>\
<<takeenergy 10>>\
<<button "Leave" "Natalie Bedroom">><<set $natshower = 1>><</button>>\
<</if>>\
<div align='center'>\
<img src="content/peoples/bonnie/contact.jpg" style="max-width: 100%;">
</div>\
<div align='center' style='font-size: 200%;'>\
BONNIE ROTTEN
</div>\
<div align='center'>\
Born: 9/May/1993 Cincinnati, Ohio, USA
Ethnicity: Caucasian
Nationality: American
Measurements: 36-26-38
Height: 5ft 7in (170 cm)
Weight: 120lbs (54 kg)
Body type: Average
Eye color: Brown
Hair color: Black
Breast Size: Average
Preffered sex partner: Male, Female
Preffered skills: All of them
She is a hacker and helped to your parents. She is helping to you now againts NEMESIS.
Relationship points with her: $bonnierepo
Events with her:
Some clips in the PC Shop.
</div>
<<button "Contacts" "Contacts">><</button>>
<div align='center'>\
<img src="content/peoples/venus/contact.jpg" style="max-width: 100%;">
</div>\
<div align='center' style='font-size: 200%;'>\
VENUS LUX
</div>\
<div align='center'>\
Born: 10/October/1990 San Francisco, California, USA
Ethnicity: Asian
Nationality: American
Measurements: 34C-24-29
Height: 5ft 10in (178 cm)
Weight: 128lbs (58 kg)
Body type: Average
Eye color: Brown
Hair color: Black, Red, Brunette
Breast Size: Average
Dick size: Average (7in, 18cm)
Preffered sex partner: Male, Female, Shemale
Preffered skills: Blowjob, Anal, Cumplay
She is working in the Lab HR Department.
Relationship points with her: $venusrepo
Events with her:
HR Office at disciplinary interview.
</div>
<<button "Contacts" "Contacts">><</button>>
<div align='center'>\
<img src="content/peoples/kimberlee/contact.jpg" style="max-width: 100%;">
</div>\
<div align='center' style='font-size: 200%;'>\
KIMBERLEE
</div>\
<div align='center'>\
Born: 20/October/1994 Regensburg, Bavaria, Germany
Ethnicity: Asian
Nationality: American
Measurements: 34DD–25–34
Height: 5ft 9in (175 cm)
Weight: 132lbs (60 kg)
Body type: Average
Eye color: Brown
Hair color: Black
Breast Size: Big
Dick size: Big (7.5in, 19cm)
Preffered sex partner: Male, Female, Shemale
Preffered skills: Blowjob, Anal, Cumplay
She is a receptionist in the lab.
Relationship points with her: $kimberleerepo
Events with her:
- Date nights in the main quest.
</div>
<<button "Contacts" "Contacts">><</button>>
<div align='center'>\
<img src="content/peoples/maid/contact.jpg" style="max-width: 100%;">
</div>\
<div align='center' style='font-size: 200%;'>\
NATALIE MARS
</div>\
<div align='center'>\
Born: 03/February/1984 Little Rock, Arkansas, USA
Ethnicity: Caucasian
Nationality: American
Measurements: 34A–28–36
Height: 5ft 6in (167 cm)
Weight: 134lbs (61 kg)
Body type: Average
Eye color: Blue
Hair color: Brunette
Breast Size: Small
Dick size: Average (6in, 15cm)
Preffered sex partner: Male, Female, Shemale
Preffered skills: Anal
She is house maid.
Relationship points with her: $natalierepo
Events with her:
- Hallway down 00:00-17:59 - You can peek in the kitchen while Natalie masturbating.
- Hallway down 00:00-17:59 - You can peek in the kitchen while Chanel and Natalie having sex.
- Hallway down 00:00-17:59 - You can peek in the kitchen and join to Chanel and Natalie and have a threesome. Male body only.
- Hallway down 00:00-17:59 - You can peek in the kitchen and have sex with Natalie. Female body only.
- Yoga room any time - Available with female body.
- You can spy on her from your computer at any time, if you installed the spycam in her room.
- You can peek in her bathroom any time.
</div>
<<button "Contacts" "Contacts">><</button>>
<div align='center'>\
<img src="content/peoples/lianna/contact.jpg" style="max-width: 100%;">
</div>\
<div align='center' style='font-size: 200%;'>\
LIANNA LAWSON
</div>\
<div align='center'>\
Born: 14/August/1992 Colorado Springs, Colorado, USA
Ethnicity: Caucasian
Nationality: American
Measurements: 36B-30-37
Height: 5ft 11in (180 cm)
Weight: 155lbs (70 kg)
Body type: Average
Eye color: Blue
Hair color: Blonde
Breast Size: Average
Dick size: Average (7in, 18cm)
Preffered sex partner: Male, Female, Shemale
Preffered skills: Cumplay
She is working in the lab at the IT department.
Relationship points with her: $liannarepo
Events with her:
- Side quests in the lab canteen
- Main story line
</div>
<<button "Contacts" "Contacts">><</button>>
<div align='center'>\
<img src="content/peoples/chanel/contacts.jpg" style="max-width: 100%;">
</div>\
<div align='center' style='font-size: 200%;'>\
CHANEL SANTINI
</div>\
<div align='center'>\
Born: 7/January/1998 Albuquerque, New Mexico, USA
Ethnicity: Caucasian
Nationality: American
Measurements: 34C-24-28
Height: 5ft 8in (173 cm)
Weight: 120lbs (54 kg)
Body type: Average
Eye color: Hazelnut
Hair color: Black/Brunette/Blonde
Breast Size: Average
Dick size: Average (7in, 18cm)
Preffered sex partner: Male, Female, Shemale
Preffered skills: Cumplay
She is the daughter of Mariana. She loves party and sex.
Relationship points with her: $chanelrepo
Events with her:
- Mariana`s home office randomly at 14:00-18:59 - Available with male, shemale and female body.
- Living room randomly at 19:00-20:59 - Available with male, shemale and female body.
- Yoga room any time - Available with male body.
- Her bathroom after 20:00 - Available with male, shemale and female body.
- Your bathroom - Available with shemale body.
- Hallway down 00:00-17:59 - You can peek in the kitchen while Chanel and Natalie having sex.
- Hallway down 00:00-17:59 - You can peek in the kitchen and join to Chanel and Natalie and have a threesome. Male body only.
- You can spy on her from your computer at 20:00-21:59, if you installed the spycam in her room. She can catch you spying on her randomly. Then she will start the Maid side quest line.
</div>
<<button "Contacts" "Contacts">><</button>>
<div align='center'>\
<img src="content/peoples/mariana/contacts.jpg" style="max-width: 100%;">
</div>\
<div align='center' style='font-size: 200%;'>\
MARIANA CORDOBA
</div>\
<div align='center'>\
Born: 13/July/1981 Cordoba, Argentina
Ethnicity: Latina
Nationality: Venezuelan, Cuban
Measurements: 34DD-23-36
Height: 5ft 10in (178 cm)
Weight: 130lbs (59 kg)
Body type: Average
Eye color: Brown
Hair color: Brunette
Breast Size: Large
Dick size: Large (9.4in, 24cm)
Preffered sex partner: Male
Preffered skills: Deepthroat, Anal, Cumplay
She is the first connection to the NEMESIS. She also worked with your parents and she still trying to creating the serum.
Relationship points with her: $marianarepo
Events with her:
- Living room randomly at 21:00-22:59 - Available with male, female and shemale body.
- Garden weekend randomly at 10:00-18:59 in sunny weather - Available with male, female and shemale body.
- Her bedroom at 22:00-23:59 - Available with male, female and shemale body. To fully complete you need minimum 10 relationship points with her and Deepthroat1 skill.
- Her bathroom at night. You need minimum 10 relationship points with her and male body.
- You can spy on her from your computer at 20:00-21:59, if you installed the spycam in her room.
</div>
<<button "Contacts" "Contacts">><</button>>
<div align='center'>\
<img src="content/peoples/angeles/contact.jpg" style="max-width: 100%;">
</div>\
<div align='center' style='font-size: 200%;'>\
ANGELES CID
</div>\
<div align='center'>\
Born: 04/March/1985 Buenos Aires, Argentina
Ethnicity: Latina
Nationality: Argentine
Measurements: 32D–28–36
Height: 5ft 7in (170 cm)
Weight: 149lbs (68 kg)
Body type: Average
Eye color: Brown
Hair color: Blonde
Breast Size: Large
Dick size: Big (10in, 24cm)
Preffered sex partner: Male, Female, Shemale
Preffered skills: Anal
She is Mariana's old friend
Relationship points with her: $angelesrepo
Events with her:
- Main questline
</div>
<<button "Contacts" "Contacts">><</button>>
<div align='center'>\
<img src="content/peoples/jordi/contact.jpg" style="max-width: 100%;">
</div>\
<div align='center' style='font-size: 200%;'>\
JORDI EL NINO POLLA
</div>\
<div align='center'>\
Born: 11/September/1994 Ciudad Real, Spain
Ethnicity: Caucasian
Nationality: Spanish
Measurements: 34A–28–36
Height: 5ft 8in (173 cm)
Weight: 165lbs (75 kg)
Body type: Skinny
Eye color: Brown
Hair color: Brunette
Breast Size: Flat
Dick size: Large (8in, 20cm)
Preffered sex partner: Female only
Preffered skills: Blowjob
He is a son of Mariana and younger brother of Chanel.
Relationship points with her: $jordirepo
Events with him:
- Playnig with him in his room with female body. 16:00-23:59
- You can peek on him in his room sometimes. 16:00-23:59
</div>
<<button "Contacts" "Contacts">><</button>>
<div align='center' style='font-size: 150%;'><b>Corner shop</b></div>\
<img src="content/location/cornershop.jpg" style="max-width: 70%;">
\
<table style="width:100%; text-align:center">\
<thead>\
<tr>\
<th style="width:25%"><b></b></th>
<th style="width:25%"><b>Item</b></th>
<th style="width:25%"><b>Price</b></th>
<th style="width:25%"><b>Action></b></th>
</tr>\
</thead>\
<tbody>\
<tr>
<td><<image "content/objects/razor.jpg" 100>></td>\
<td> Pack of 5 razor</td>\
<td> 20 </td>\
<<if $credit >= 20>>\
<td><<button "Buy" "Corner Shop">>\
<<set $credit -= 20>>\
<<set $razor += 5>>\
<</button>></td>\
<<else>>\
You don't have enough credit
<</if>>\
</tr>
<<if $bdayquest == 1>>\
<tr>
<td><<image "content/objects/cake.jpg" 100>></td>\
<td> Mariana's Birthday Cake </td>\
<td> 150 </td>\
<<if $credit >= 150>>\
<td><<button "Buy" "Corner Shop">>\
<<set $credit -= 150>>\
<<set $bdayquest = 2>>\
<</button>></td>\
<<else>>\
You don't have enough credit
<</if>>\
</tr>
<</if>>\
</tbody>
</table>
<<button "Leave" "Map">><<addmins 10>><</button>>\
<<button "Leave" "Map">><</button>>
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:25%"><b></b></th>
<th style="width:25%"><b>Name</b></th>
<th style="width:25%"><b>Price</b></th>
<th style="width:25%"><b>Action</b></th>
</tr>
</thead>
<tbody>
<tr>
<td><<image "content/pdoll/clothes/shirt/shirt3.png" 100 200>></td>
<td> Sexy black clubbing dress </td>
<td> 200 </td>
<td> <<displayTableBuy 200 "shirt3" "Clothing Store">> </td>
</tr>
<tr>
<td><<image "content/pdoll/clothes/trousers/trousers3.png" 100 150>></td>
<td> Sexy black trousers for clubbing dress </td>
<td> 100 </td>
<td> <<displayTableBuy 100 "trousers3" "Clothing Store">> </td>
</tr>
<tr>
<td><<image "content/pdoll/clothes/shoes/shoes3.png" 100 100>></td>
<td> Sexy black boots for clubbing dress </td>
<td> 300 </td>
<td> <<displayTableBuy 300 "shoes3" "Clothing Store">> </td>
</tr>
</tbody>
</table>
<<button "Leave" "Map">><</button>>
<div align='center' style='font-size: 150%;'><b>Shoes store</b></div>\
<img src="content/location/shoes.jpg">
\
<div align='center'>\
This is a women shoes store, full of women.
</div>\
<<if $CurEN >= 10>>\
<<button "Spy on the women" "Women Shoes Store 2">><<set $shoesstorefetish = 0>><<takeenergy 10>><</button>>
<<else>>\
<div align='center'>\
You are too tired to spy on them.
</div>\
<</if>>\
<<button "Leave" "Map">><</button>>
<<if $shoesstorefetish == 0>>\
<div align='center'>\
You settle into a chair with a pair of shoes in your hand however, your eyes are not really looking at your shoes but rather your eyes continue to drift to some of the shapely women trying on shoes across from you. The shapely curve of the line from the women’s calves sliding down into their ankles and over their feet down to their dainty toes is very alluring. They wiggle their toes before slipping their foot into the sexy footwear. You love the way the pumps raise the tushes and make the lines of their thighs and calves stand out. You thought you were being discreet in your ogling but apparently, your wandering eyes have not gone unnoticed.
</div>\
<<addarousal 20>>\
<img @src="'content/feets/' + random(2, 6) + '.jpg'">
<div align='center'>\
A young-looking store assistance is standing behind your chair looking down at you.
</div>\
<<speech "Random" "Store assistant">>Excuse me, can I help you with anything?<</speech>>
<<speech "player" "$fname">>Oh, uh… no miss. I’m doing alright.<</speech>>
<div align='center'>\
She walks around the isle of chairs in which you are sitting and kneels down at your feet and looks up as she whispers to you.
</div>\
<<speech "Random" "Store assistant">>I saw you. I saw what you were doing. You are not the first to try getting their rocks off perving on the other customers trying on shoes. I could call security you know. However, I have a better idea. Why don’t you follow me back into the back office? For $20 cash, I’ll give you a private show.<</speech>>
<<if $money >= 20>>\
<<button "Agree" "Women Shoes Store 2">><<set $shoesstorefetish = 1>><<set $money -= 20>><<addmins 20>><</button>>
<<else>>\
<div align='center'>\
You don`t have enough money.
</div>\
<</if>>\
<<button "Leave" "Map">><</button>>
\
\
\
\
\
<<elseif $shoesstorefetish == 1>>\
<div align='center'>\
You follow her into the back office and once the door is closed she wordlessly opens up her hand asking for payment upfront. You pull out a $20 and set it in her waiting hand. A smirk crosses her face as she quickly makes the bill disappear between her breasts and sits down in a chair. She arches her back as her hand slides down her thigh and over her well-formed calf. She looks back up at you with a pouty expression on her face as she begins to slowly massage her leg. This goes on for a few minutes and then her fingers slide down to her foot and she makes as if to remove her shoe and pauses looking back up at you.
<video @src="'content/feets/' + random(1, 5) + '.mp4'" autoplay loop></video>
</div>\
<<addarousal 20>>\
<<speech "Random" "Store assistant">>Take my shoes off is an extra $20.<</speech>>
<<if $money >= 20>>\
<<button "Agree" "Women Shoes Store 2">><<set $shoesstorefetish = 2>><<set $money -= 20>><<addmins 20>><</button>>
<<else>>\
<div align='center'>\
You don`t have enough money.
</div>\
<</if>>\
<<button "Leave" "Map">><</button>>
\
\
\
\
\
<<elseif $shoesstorefetish == 2>>\
<div align='center'>\
You pull another $20 and hand it to her and she deftly makes it disappear the same way as the first. She ever so slowly begins to remove the delicate shoe. Just before sliding it completely off her foot, she lets it dangle there on her toes and gives you a sly wink and lets the shoe drop. She lifts her foot for you to get a close look at splaying open her toes so you can see wide gaps between them. She runs her fingers between her toes and then tracing the lines of her foot with her fingertip.
<video @src="'content/feets/' + random(6, 10) + '.mp4'" autoplay loop></video>
</div>\
<<addarousal 20>>\
<<speech "Random" "Store assistant">>Would you like to watch me lick my feet? Only another $20.<</speech>>
<<if $money >= 20>>\
<<button "Agree" "Women Shoes Store 2">><<set $shoesstorefetish = 3>><<set $money -= 20>><<addmins 20>><</button>>
<<else>>\
<div align='center'>\
You don`t have enough money.
</div>\
<</if>>\
<<button "Leave" "Map">><</button>>
\
\
\
\
\
<<elseif $shoesstorefetish == 3>>\
<div align='center'>\
She lifts her leg high into the air before bending it at the knee. She seems to be very flexible. You idly wonder if she does a lot of yoga. She seems very toned as well. She grips her foot and brings it slowly towards her mouth. She wiggles her eyebrows at you and then begins to kiss and lick her toes.
<video @src="'content/feets/' + random(11, 15) + '.mp4'" autoplay loop></video>
</div>\
<<addarousal 20>>\
<<speech "Random" "Store assistant">>You look hungry. You can nibble on my toes too for $50.<</speech>>
<<if $money >= 50>>\
<<button "Agree" "Women Shoes Store 2">><<set $shoesstorefetish = 4>><<set $money -= 50>><<addmins 20>><</button>>
<<else>>\
<div align='center'>\
You don`t have enough money.
</div>\
<</if>>\
<<button "Leave" "Map">><</button>>
\
\
\
\
\
<<elseif $shoesstorefetish == 4>>\
<div align='center'>\
You quickly pay her but you can’t be bothered to see where this last bill goes as you only have eyes for her feet. You finally get your eager hands on her feet and worshipfully caress her soft skin with your fingers. You bring her foot to your nose and inhale softly taking in her scent. You kiss the big toe and then the ball of her foot and final the heel. You kiss the big toe and then wrap your lips around it sucking it in like a little cock. You give the other toes the same tender treatment. You lick up her long deep foot arch and slide your tongue between her toes.
<<if $playergender is "male">>\
<video @src="'content/feets/m' + random(1, 5) + '.mp4'" autoplay loop></video>
<<elseif $playergender is "female">>\
<video @src="'content/feets/f' + random(1, 5) + '.mp4'" autoplay loop></video>
<<elseif $playergender is "shemale">>\
<video @src="'content/feets/s' + random(1, 5) + '.mp4'" autoplay loop></video>
<</if>>\
</div>\
<<addarousal 20>>\
<<speech "Random" "Store assistant">>You are enjoying yourself I see. But how would you like me to give you a foot job? For another $50, I’ll rub you with my toes. What do you say?<</speech>>
<<if $money >= 50>>\
<<button "Agree" "Women Shoes Store 2">><<set $shoesstorefetish = 5>><<set $money -= 50>><<addmins 20>><<set $pdollsex to true>><</button>>
<<else>>\
<div align='center'>\
You don`t have enough money.
</div>\
<</if>>\
<<button "Leave" "Map">><</button>>
\
\
\
\
\
<<elseif $shoesstorefetish == 5>>\
<<if $pgender is "male">>\
<div align='center'>\
You silently nod and pay her. She removes her other shoe and she lets it drop following the first. Her feet touch your knees and begin to slide up your pants where her toes begin to draw your fly down. What amazing dexterity her toes have! She pulls open your fly and draws down your pants so you lift your bottom allowing the pants to come down to your knees. She pushes her feet against your thighs and you take the hint and spread your legs wider for her. Her toes trace the bulge in your underwear as the other drives down bellow to make your balls slide around inside. The toes of one foot adeptly curl around the front of your underwear pulling them aside so the other foot’s toes can slide your cock out. Her toes continue their ministrations on your cock and balls now that is is in the open air. Her toes are magical.
</div>\
<<elseif $pgender is "female">>\
<div align='center'>\
You silently nod and pay her. She removes her other shoe and she lets it drop following the first. Her feet touch your knees and begin to slide up pushing your skirt along with it. She pushes against your thighs and you take the hint and spread your legs wider for her. Her toes trace the outline of your panties and then one foot dives between into your crotch to rub against your love button standing out from its hood inside your panties. The toes of one foot adeptly curl around the front of your panties pulling them aside so the other foot’s toes can slide inside. Her foot slick with your juices continues to rub back and forth. It feels heavenly!
</div>\
<<elseif $pgneder is "shemale">>\
<div align='center'>\
You silently nod and pay her. She removes her other shoe and she lets it drop following the first. Her feet touch your knees and begin to slide up pushing your skirt along with it. She pushes her feet against your thighs and you take the hint and spread your legs wider for her. Her toes trace the bulge in your panties as the other drives down bellow to make your balls slide around inside. The toes of one foot adeptly curl around the front of your panties pulling them aside so the other foot’s toes can slide your cock out. Her toes continue their ministrations on your cock and balls now that is is in the open air. Her toes are magical.
</div>\
<</if>>\
<div align='center'>\
<<if $playergender is "male">>\
<video @src="'content/feets/m' + random(6, 10) + '.mp4'" autoplay loop></video>
<<elseif $playergender is "female">>\
<video @src="'content/feets/f' + random(6, 10) + '.mp4'" autoplay loop></video>
<<elseif $playergender is "shemale">>\
<video @src="'content/feets/s' + random(6, 10) + '.mp4'" autoplay loop></video>
<</if>>\
</div>\
<<addarousal 20>>\
<<speech "Random" "Store assistant">>Would you like me to push my feet up inside your ass? Just $50 more.<</speech>>
<<if $money >= 50>>\
<<button "Agree" "Women Shoes Store 2">><<set $shoesstorefetish = 6>><<set $money -= 50>><<addmins 20>><</button>>
<<else>>\
<div align='center'>\
You don`t have enough money.
</div>\
<</if>>\
<<button "Leave" "Map">><</button>>
\
\
\
\
\
<<elseif $shoesstorefetish == 6>>\
<<if $pgender is "male">>\
<<speech "Random" "Store assistant">>Turn around on your chair like a good boy. There you go. Spread your cheeks open wide for me. What a lovely ass hole.<</speech>>
<div align='center'>\
You have your legs spread as wide as you can on the chair as you spread your check exposing your tight little rosebud of an ass hole. Her toe circles around the outside making the sensitive skin there feel amazing. Her other foot goes under to play with your balls for a moment and then her toes seem to wrap around your cock. You look down in amazement to see the large split between her big toe opens wide enough that almost feels like she is holding your dick as she flexes her ankle back and forth stroking you. She pauses her stroking and pushes her toe inside your ass. She doesn’t stop there but continues to push. She curls her toes making a ram shape to make it easier to slide inside. Even with her dainty foot, it is still a lot to take. Once the resistance increases, she pauses her foot in your ass and resumes stroking your cock with the other. This allows your ass to acclimate to this foreign anal invader. She continues to alternate back and forth like this until you feel her pinky toe slide in. You have taken her whole foot up your ass!
</div>\
<<elseif $pgender is "female">>\
<div align='center'>\
You feel her toes wiggle up inside you. Her other foot is over the first and rubs languidly against your clit. Your hands slide up under your top to massage your breasts. You begin to pinch your nipples as you feel yourself getting close. It is starting to approach the point of no return when she stops.
</div>\
<<elseif $pgender is "shemale">>\
<<speech "Random" "Store assistant">>Turn around on your chair like a good boy. There you go. Spread your cheeks open wide for me. What a lovely ass hole.<</speech>>
<div align='center'>\
You have your legs spread as wide as you can on the chair as you spread your check exposing your tight little rosebud of an ass hole. Her toe circles around the outside making the sensitive skin there feel amazing. Her other foot goes under to play with your balls for a moment and then her toes seem to wrap around your cock. You look down in amazement to see the large split between her big toe opens wide enough that almost feels like she is holding your dick as she flexes her ankle back and forth stroking you. She pauses her stroking and pushes her toe inside your ass. She doesn’t stop there but continues to push. She curls her toes making a ram shape to make it easier to slide inside. Even with her dainty foot, it is still a lot to take. Once the resistance increases, she pauses her foot in your ass and resumes stroking your cock with the other. This allows your ass to acclimate to this foreign anal invader. She continues to alternate back and forth like this until you feel her pinky toe slide in. You have taken her whole foot up your ass!
</div>\
<</if>>\
<div align='center'>\
<<if $playergender is "male">>\
<video @src="'content/feets/m' + random(11, 13) + '.mp4'" autoplay loop></video>
<<elseif $playergender is "female">>\
<video @src="'content/feets/f' + random(11, 15) + '.mp4'" autoplay loop></video>
<<elseif $playergender is "shemale">>\
<video @src="'content/feets/s' + random(11, 14) + '.mp4'" autoplay loop></video>
<</if>>\
</div>\
<<addarousal 20>>\
<<speech "Random" "Store assistant">>If you want to cum on my feet, I need another $50<</speech>>
<<if $money >= 50>>\
<<button "Agree" "Women Shoes Store 2">><<set $shoesstorefetish = 7>><<set $money -= 50>><<addmins 20>><<set $pdollsex to false>><<set $pdollcum to true>><</button>>
<<else>>\
<div align='center'>\
You don`t have enough money.
</div>\
<</if>>\
<<button "Leave" "Map">><</button>>
\
\
\
\
\
<<elseif $shoesstorefetish == 7>>\
<<if $pgender is "male">>\
<div align='center'>\
You can’t pay her fast enough. No sooner has the money disappeared down into her bra than you feel her feet moving again. It doesn’t take much at this point. Just a few seconds later, you feel the warm pulsing sensation of your orgasm starts low in your tummy and radiates all across your body. You convulse in your chair as this girl’s feet drive you on and on through your climax and finally pull her feel away once it starts to feel too sensitive.
</div>\
<<elseif $pgender is "female">>\
<div align='center'>\
You can’t pay her fast enough. No sooner has the money disappeared down into her bra than you feel her feet moving again. Your fingers return to your nipples which you pinch hard. Just a few seconds later, you feel the warm pulsing sensation of your orgasm starts low in your tummy and radiates all across your body. You convulse in your chair as this girl’s feet drive you on and on through your climax and finally pull her feel away once it starts to feel too sensitive.
</div>\
<<elseif $pgender is "shemale">>\
<div align='center'>\
You can’t pay her fast enough. No sooner has the money disappeared down into her bra than you feel her feet moving again. It doesn’t take much at this point. Just a few seconds later, you feel the warm pulsing sensation of your orgasm starts low in your tummy and radiates all across your body. You convulse in your chair as this girl’s feet drive you on and on through your climax and finally pull her feel away once it starts to feel too sensitive.
</div>\
<</if>>\
<div align='center'>\
<<if $playergender is "male">>\
<<set $mcumcounter += 1>>\
<video @src="'content/feets/m' + random(14, 18) + '.mp4'" autoplay loop></video>
<<elseif $playergender is "female">>\
<<set $fcumcounter += 1>>\
<video src="content/feets/f12.mp4" autoplay loop></video>
<<elseif $playergender is "shemale">>\
<<set $scumcounter += 1>>\
<video @src="'content/feets/s' + random(15, 19) + '.mp4'" autoplay loop></video>
<</if>>\
</div>\
<<zeroarousal>>\
<<set $noorgasm = 0>>\
<div align='center'>\
She slides her feet back into her shoes as you adjust your clothing back into place.
</div>\
<<speech "Random" "Store assistant">>That was really hot! Feel free to stop back by if you ever want to go again.<</speech>>
<<button "Leave" "Map">><<set $pdollcum to false>><</button>>
<</if>>\
<<button "Leave" "Map">><</button>>
<<button "Uniforms" "Adult Shop Uniforms">><</button>>
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:25%"><b></b></th>
<th style="width:25%"><b>Item</b></th>
<th style="width:25%"><b>Price</b></th>
<th style="width:25%"><b>Action</b></th>
</tr>
</thead>
<tbody>
<tr>
<td><<image "content/objects/dildo2.jpg" 150>></td>\
<td> Larger than life for big-style orgasms, meet this proud and erect 8 incher from the Lifelike dildo clan. </td>\
<td> 100 </td>\
<td><<if $credit >= 100 and $dildo2 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 100>>\
<<set $dildo2 = 1>>\
<</button>>\
<<elseif $dildo2 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/dildo3.jpg" 150>></td>\
<td> King Cock's 9.5 inch behemoth boasts monster sizing and some of the most realistic detailing around. </td>\
<td> 150 </td>\
<td><<if $credit >= 150 and $dildo3 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 150>>\
<<set $dildo3 = 1>>\
<</button>>\
<<elseif $dildo3 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/dildo4.jpg" 150>></td>\
<td> A larger-than-life 12 inches Will put a smile on anyone's face. </td>\
<td> 200 </td>\
<td><<if $credit >= 200 and $dildo4 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 200>>\
<<set $dildo4 = 1>>\
<</button>>\
<<elseif $dildo4 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/dildo5.jpg" 150>></td>\
<td> A cock so heavy it has its own gravitational field! A massive 13.5 inches of gratification await anyone. </td>\
<td> 250 </td>\
<td><<if $credit >= 250 and $dildo5 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 250>>\
<<set $dildo5 = 1>>\
<</button>>\
<<elseif $dildo5 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/dildo6.jpg" 150>></td>\
<td> Crafted in gleaming medical-grade stainless steel, it has the perfect curvature for every pleasure point! </td>\
<td> 300 </td>\
<td><<if $credit >= 300 and $dildo6 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 300>>\
<<set $dildo6 = 1>>\
<</button>>\
<<elseif $dildo6 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/dildo7.jpg" 150>></td>\
<td> Have an orgasmic party for two sharing this thick, long and filling double dildo. Flexible enough for double penetration. </td>\
<td> 350 </td>\
<td><<if $credit >= 350 and $dildo7 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 350>>\
<<set $dildo7 = 1>>\
<</button>>\
<<elseif $dildo7 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/buttplug2.jpg" 150>></td>\
<td> Doc Johnson's large butt plug made with their patented antibacterial Sil-A-Gel formula and featuring a tapered shape that assists easy insertion. </td>\
<td> 100 </td>\
<td><<if $credit >= 100 and $buttplug2 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 100>>\
<<set $buttplug2 = 1>>\
<</button>>\
<<elseif $buttplug2 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/buttplug3.jpg" 150>></td>\
<td> With a whopping 11.75 inch circumference, this tapered toy is perfect for posterior pros. </td>\
<td> 150 </td>\
<td><<if $credit >= 150 and $buttplug3 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 150>>\
<<set $buttplug3 = 1>>\
<</button>>\
<<elseif $buttplug3 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/buttplug4.jpg" 150>></td>\
<td> Get your foxy rocks off with this swish faux fur tail from DOMINIX. </td>\
<td> 200 </td>\
<td><<if $credit >= 200 and $buttplug4 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 200>>\
<<set $buttplug4 = 1>>\
<</button>>\
<<elseif $buttplug4 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/buttplug5.jpg" 150>></td>\
<td> Release the beast within with your very own animal tail. The steel butt plug ensures perfect positioning, and passionate pleasure. </td>\
<td> 200 </td>\
<td><<if $credit >= 200 and $buttplug5 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 200>>\
<<set $buttplug5 = 1>>\
<</button>>\
<<elseif $buttplug5 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/buttplug6.jpg" 150>></td>\
<td> Silicone prostate stimulator. A curved body and bulbous tip will seek out your p-spot while the tickler will tease your perineum. </td>\
<td> 250 </td>\
<td><<if $credit >= 250 and $buttplug6 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 250>>\
<<set $buttplug6 = 1>>\
<</button>>\
<<elseif $buttplug6 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/strapon1.jpg" 150>></td>\
<td> Whether it's pegging play or strap-on sex, this set will set you up for a great first-time experience. </td>\
<td> 500 </td>\
<td><<if $credit >= 500 and $strapon1 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 500>>\
<<set $strapon1 = 1>>\
<</button>>\
<<elseif $strapon1 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/vibrator1.jpg" 150>></td>\
<td> Dream Bullet. Pick the pattern or speed to suit you, aim the tapered tip at external erogenous zones. </td>\
<td> 100 </td>\
<td><<if $credit >= 100 and $vibrator1 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 100>>\
<<set $vibrator1 = 1>>\
<</button>>\
<<elseif $vibrator1 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/vibrator2.jpg" 150>></td>\
<td> Explore your elusive internal pleasure zone with the firm, bulbous head of the G-slim, for intense and targeted stimulation. </td>\
<td> 150 </td>\
<td><<if $credit >= 150 and $vibrator2 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 150>>\
<<set $vibrator2 = 1>>\
<</button>>\
<<elseif $vibrator2 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/vibrator3.jpg" 150>></td>\
<td> Fluttering 10 function rabbit ears and a swirling beaded shaft are all yours. </td>\
<td> 200 </td>\
<td><<if $credit >= 200 and $vibrator3 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 200>>\
<<set $vibrator3 = 1>>\
<</button>>\
<<elseif $vibrator3 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/vibrator4.jpg" 150>></td>\
<td> This realistic vibrator boasts a graduating shaft covered in lifelike raised veins for incredible internal stimulation. </td>\
<td> 250 </td>\
<td><<if $credit >= 250 and $vibrator4 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 250>>\
<<set $vibrator4 = 1>>\
<</button>>\
<<elseif $vibrator4 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/vibrator5.jpg" 150>></td>\
<td> The jackhammer of sex toys, the Bodywand Wand Vibrator packs some serious power! </td>\
<td> 300 </td>\
<td><<if $credit >= 300 and $vibrator5 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 300>>\
<<set $vibrator5 = 1>>\
<</button>>\
<<elseif $vibrator5 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/toy1.jpg" 150>></td>\
<td> Classic silver handcuffs for bedroom bondage or as an accessory to foreplay. </td>\
<td> 200 </td>\
<td><<if $credit >= 200 and $toy1 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 200>>\
<<set $toy1 = 1>>\
<</button>>\
<<elseif $toy1 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/toy2.jpg" 150>></td>\
<td> The legendary US Fleshlight Pink Lady sex toy for men! </td>\
<td> 200 </td>\
<td><<if $credit >= 200 and $toy2 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 200>>\
<<set $toy2 = 1>>\
<</button>>\
<<elseif $toy2 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/toy3.jpg" 150>></td>\
<td> Cracking male masturbator lined with undulating internal textures that create intense sensation as you stroke. </td>\
<td> 100 </td>\
<td><<if $credit >= 100 and $toy3 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 100>>\
<<set $toy3 = 1>>\
<</button>>\
<<elseif $toy3 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/toy4.jpg" 150>></td>\
<td> 5 powerful vibration settings and on a mission to help keep him harder for longer and her quivering from orgasm after orgasm. </td>\
<td> 100 </td>\
<td><<if $credit >= 100 and $toy4 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 100>>\
<<set $toy4 = 1>>\
<</button>>\
<<elseif $toy4 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/toy5.jpg" 150>></td>\
<td> Tone and tease as you Tighten and Tense, to help build up stronger kegel muscles. </td>\
<td> 150 </td>\
<td><<if $credit >= 150 and $toy5 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 150>>\
<<set $toy5 = 1>>\
<</button>>\
<<elseif $toy5 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/toy6.jpg" 150>></td>\
<td> Give your wang an essential workout with the BASICS Classic Penis Pump. </td>\
<td> 200 </td>\
<td><<if $credit >= 200 and $toy6 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 200>>\
<<set $toy6 = 1>>\
<</button>>\
<<elseif $toy6 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/toy7.jpg" 150>></td>\
<td> The hydraulic penis pump uses water rather than air pressure which can assist potential penile engorgement </td>\
<td> 300 </td>\
<td><<if $credit >= 300 and $toy7 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 300>>\
<<set $toy7 = 1>>\
<</button>>\
<<elseif $toy7 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>
<tr>
<td><<image "content/objects/toy8.jpg" 150>></td>\
<td> I've got a lovely bunch of penis rings, there they are all standing in a row. </td>\
<td> 100 </td>\
<td><<if $credit >= 100 and $toy8 == 0>>\
<<button "Buy" "Adult Shop">>\
<<set $credit -= 100>>\
<<set $toy8 = 1>>\
<</button>>\
<<elseif $toy8 == 1>>\
Owned
<<else>>\
No money
<</if>></td>
</tr>\
</tbody>\
</table>\
<<button "Leave" "Map">><</button>>
<<button "Leave" "Map">><</button>>
<<button "Toys" "Adult Shop">><</button>>
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:25%"><b></b></th>
<th style="width:25%"><b>Item</b></th>
<th style="width:25%"><b>Price</b></th>
<th style="width:25%"><b>Action</b></th>
</tr>
</thead>
<tbody>
<tr>
<td><<image "content/pdoll/clothes/uniforms/maid1.png" 100 150>></td>\
<td> Maid Dress </td>\
<td> 200 </td>\
<td><<if $credit >= 200 and $maid1 == 0>>\
<<button "Buy" "Adult Shop Uniforms">>\
<<set $credit -= 200>>\
<<set $maid1 = 1>>\
<<set $maiduniform += 1>>\
<</button>>\
<<elseif $maid1 == 1>>\
Owned
<<else>>\
No credit
<</if>></td>
</tr>
<tr>
<td><<image "content/pdoll/clothes/uniforms/maid2.png" 100 150>></td>\
<td> Maid Shoes </td>\
<td> 150 </td>\
<td><<if $credit >= 150 and $maid2 == 0>>\
<<button "Buy" "Adult Shop Uniforms">>\
<<set $credit -= 150>>\
<<set $maid2 = 1>>\
<<set $maiduniform += 1>>\
<</button>>\
<<elseif $maid2 == 1>>\
Owned
<<else>>\
No credit
<</if>></td>
</tr>
<tr>
<td><<image "content/pdoll/clothes/uniforms/maid3.png" 100 150>></td>\
<td> Maid Bands </td>\
<td> 100 </td>\
<td><<if $credit >= 100 and $maid3 == 0>>\
<<button "Buy" "Adult Shop Uniforms">>\
<<set $credit -= 100>>\
<<set $maid3 = 1>>\
<<set $maiduniform += 1>>\
<</button>>\
<<elseif $maid3 == 1>>\
Owned
<<else>>\
No credit
<</if>></td>
</tr>
<tr>
<td><<image "content/pdoll/clothes/uniforms/maid4.png" 100 150>></td>\
<td> Maid Neck Bow </td>\
<td> 100 </td>\
<td><<if $credit >= 100 and $maid4 == 0>>\
<<button "Buy" "Adult Shop Uniforms">>\
<<set $credit -= 100>>\
<<set $maid4 = 1>>\
<<set $maiduniform += 1>>\
<</button>>\
<<elseif $maid4 == 1>>\
Owned
<<else>>\
No credit
<</if>></td>
</tr>
<tr>
<td><<image "content/pdoll/clothes/uniforms/maid5.png" 100 150>></td>\
<td> Maid Headband </td>\
<td> 150 </td>\
<td><<if $credit >= 150 and $maid5 == 0>>\
<<button "Buy" "Adult Shop Uniforms">>\
<<set $credit -= 150>>\
<<set $maid5 = 1>>\
<<set $maiduniform += 1>>\
<</button>>\
<<elseif $maid5 == 1>>\
Owned
<<else>>\
No credit
<</if>></td>
</tr>
</tbody>
</table>
<<button "Leave" "Map">><</button>>
<div align='center' style='font-size: 150%;'><b>Park</b></div>\
<<if $gameDate.getHours() < "8" or $gameDate.getHours() > "20">>\
<img src="content/location/park_bg2.jpg">
<<else>>\
<img src="content/location/park_bg.jpg">
<</if>>\
\
<<if $kimquest == 11>>\
<<if GameDays[$gameDate.getDay()] is "Sat" or GameDays[$gameDate.getDay()] is "Sun">>\
<<if $gameDate.getHours() >= "10" and $gameDate.getHours() <= "16">>\
<<button "Find Kimberlee" "Kimberlee quest 2">><<set $kimquest = 12>><</button>>
<</if>>\
<</if>>\
<</if>>\
<<button "Find the toilet" "Park Toilet">><<set $park to false>><</button>>
<<button "Go somewhere else" "Map">><<addmins 10>><<set $park to false>><</button>>
<div align='center' style='font-size: 150%;'><b>Park toilet</b></div>\
<<if $gameDate.getHours() < "8" or $gameDate.getHours() > "20">>\
<img src="content/location/park_toilet2.jpg">
<<else>>\
<img src="content/location/park_toilet.jpg">
<</if>>\
\
<<if $gameDate.getHours() > "21" and $kimquest >= 9>>\
<<button "Speak with the shady guy" "Shady guy">><</button>>
<</if>>\
\
\
\
<<button "Go inside" "Park Toilet Inside">><</button>>
\
<<set _random = random(1, 6)>>\
<<if _random <= 5>>\
<<button "Go back to the park" "Park">><<set $park to true>><</button>>
<<else>>\
<<set $parkrapecheck to false>>\
<<button "Go back to the park" "Park Rape">><<set $park to true>><</button>>
<</if>>\<img src="content/location/park_gloryhole.jpg">
<<if $questtracking >= 2>>\
<<button "Wait for costumers" "Gloryhole">><</button>>
<</if>>\
<<button "Leave" "Park Toilet">><</button>>
<div align='center'>\
<<if $CurEN < 10>>\
You are exhausted, and you can not suck more cock now.
<<button "Leave" "Park Toilet Inside">><</button>>
\
\
\
<<else>>\
<<if $pgender is "male">>\
<<set _rnd to random(1, 4)>>\
<<if _rnd < 4>>\
You start stroking that big cock.
<video @src="'content/porn/gh/male/hj/' + random(1, 7) + '.mp4'" autoplay loop></video>
The stranger's cock entering your mouth gives you a thrill. You need to be making money, but fuck it, you love sucking cocks and feeling like a whore!
<video @src="'content/porn/gh/male/bj/' + random(1, 32) + '.mp4'" autoplay loop></video>
You slide the wet cock into your ass and the sound of your cheeks slapping against the wall of the bathroom echoes in the confined space. You can tell that your happy customer is getting close and want to taste his cum in your mouth.
<video @src="'content/porn/gh/male/anal/' + random(1, 9) + '.mp4'" autoplay loop></video>
Spinning around once more, your mouth dives over the cock just in time for his eruption. You happily swallow all of the cum, making sure to lick up any that sprayed onto your face.
<video @src="'content/porn/gh/male/bjcum/' + random(1, 16) + '.mp4'" autoplay loop></video>
<<addarousal 20>>\
<<addmins 20>>\
<<takeenergy 10>>\
<<set $ghmoney to random(1, 25)>>\
<<set $money += $ghmoney>>\
<<set $ghmoneycounter += $ghmoney>>\
<<set $moneycounter += $ghmoney>>\
<<handskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<timed 900ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 1200ms>>\
<<willingness>>\
<</timed>>\
<<set $analsize += 1>>\
<<set $ghblowjobcounter += 1>>\
<<set $mghjcounter += 1>>\
<<set $mgblowjobcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<set $mranalcounter += 1>>\
You wipe your mouth and collect the $ $ghmoney from the floor.
<<if $CurAR >= 100>>\
<<button "Cum" "Gloryhole Cum">><</button>>
<<else>>\
<<button "Keep waiting" "Gloryhole">><</button>>
<<button "Leave" "Park Toilet Inside">><</button>>
<</if>>\
\
\
\
<<else>>\
You just wait, but nobody turned up.
<video src="content/porn/gh/male/1.mp4" autoplay loop></video>
You hear an interesting noise from the next stall. You peek through.
<video src="content/porn/gh/male/2.mp4" autoplay loop></video>
A young girl rushed into the stall and she can't stop pissing.
<video @src="'content/porn/gh/shemale/piss/' + random(1, 15) + '.mp4'" autoplay loop></video>
<<addmins 20>>\
<<takeenergy 5>>\
<<addarousal 20>>\
<<if $CurAR >= 100>>\
<<button "Cum" "Gloryhole Cum">><</button>>
<<else>>\
<<button "Keep waiting" "Gloryhole">><</button>>
<<button "Leave" "Park Toilet Inside">><</button>>
<</if>>\
<</if>>\
\
\
\
<<elseif $pgender is "female">>\
<<set _rnd to random(1, 4)>>\
<<if _rnd < 4>>\
You start stroking that big cock.
<video @src="'content/porn/gh/shemale/hj/' + random(1, 32) + '.mp4'" autoplay loop></video>
The stranger's cock entering your mouth gives you a thrill. You need to be making money, but fuck it, you love sucking cocks and feeling like a whore!
<video @src="'content/porn/gh/shemale/bj/' + random(1, 57) + '.mp4'" autoplay loop></video>
<<if $locked is true>>\
You are wearing a chastity belt so you can not use your pussy.
<<else>>\
You need to feel that cock in your pussy. You spin around and guide it into your wet hole and it slips in easily as your ass slaps against the wall. You feel so dirty taking the cock into your pussy unprotected. You decide to switch it to your ass instead.
<video @src="'content/porn/gh/shemale/pussy/' + random(1, 31) + '.mp4'" autoplay loop></video>
<</if>>\
You slide the wet cock into your ass and the sound of your cheeks slapping against the wall of the bathroom echoes in the confined space. You can tell that your happy customer is getting close.
<video @src="'content/porn/gh/shemale/anal/' + random(4, 47) + '.mp4'" autoplay loop></video>
\
<<set _cum = random(1, 2)>>\
<<if _cum == 1>>\
Spinning around once more, your mouth dives over the cock just in time for his eruption. You happily swallow all of the cum, making sure to lick up any that sprayed onto your face.
<video @src="'content/porn/gh/shemale/bjcum/' + random(1, 67) + '.mp4'" autoplay loop></video>
<<set $fcumswallowcounter += 1>>\
\
\
\
<<else>>\
You enjoy this big cock, and you want to be filled with it. You slip it back into your pussy and make sure you milk it inside you till the last drop.
<video @src="'content/porn/gh/shemale/creampie/' + random(1, 23) + '.mp4'" autoplay loop></video>
<</if>>\
<<addarousal 20>>\
<<takeenergy 5>>\
<<addmins 20>>\
<<set $ghmoney to random(1, 25)>>\
<<set $money += $ghmoney>>\
<<set $ghmoneycounter += $ghmoney>>\
<<set $moneycounter += $ghmoney>>\
<<handskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<timed 900ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 1200ms>>\
<<willingness>>\
<</timed>>\
<<set $ghblowjobcounter += 1>>\
<<set $fghjcounter += 1>>\
<<set $fgblowjobcounter += 1>>\
<<if $locked is false>>\
<<set $frpussyfuckcounter += 1>>\
<<set $pussysize += 1>>\
<</if>>\
<<set $franalcounter += 1>>\
<<set $analsize += 1>>\
You wipe your mouth and collect the $ $ghmoney from the floor.
<<if $CurAR >= 100>>\
<<button "Cum" "Gloryhole Cum">><</button>>
<<else>>\
<<button "Keep waiting" "Gloryhole">><</button>>
<<button "Leave" "Park Toilet Inside">><</button>>
<</if>>\
\
\
\
<<else>>\
You just wait, but nobody turned up.
<video src="content/porn/gh/shemale/1.mp4" autoplay loop></video>
You hear an interesting noise from the next stall. You peek through.
<video src="content/porn/gh/shemale/2.mp4" autoplay loop></video>
A young girl rushed into the stall and she can't stop pissing.
<video @src="'content/porn/gh/shemale/piss/' + random(1, 15) + '.mp4'" autoplay loop></video>
<<addmins 20>>\
<<takeenergy 5>>\
<<addarousal 20>>\
<<if $CurAR >= 100>>\
<<button "Cum" "Gloryhole Cum">><</button>>
<<else>>\
<<button "Keep waiting" "Gloryhole">><</button>>
<<button "Leave" "Park Toilet Inside">><</button>>
<</if>>\
<</if>>\
\
\
\
<<elseif $pgender is "shemale">>\
<<set _rnd to random(1, 4)>>\
<<if _rnd < 4>>\
You start stroking that big cock.
<video @src="'content/porn/gh/shemale/hj/' + random(6, 35) + '.mp4'" autoplay loop></video>
The stranger's cock entering your mouth gives you a thrill. You need to be making money, but fuck it, you love sucking cocks and feeling like a whore!
<video @src="'content/porn/gh/shemale/bj/' + random(9, 61) + '.mp4'" autoplay loop></video>
You slide the wet cock into your ass and the sound of your cheeks slapping against the wall of the bathroom echoes in the confined space. You can tell that your happy customer is getting close and want to taste his cum in your mouth.
<video @src="'content/porn/gh/shemale/anal/' + random(1, 31) + '.mp4'" autoplay loop></video>
Spinning around once more, your mouth dives over the cock just in time for his eruption. You happily swallow all of the cum, making sure to lick up any that sprayed onto your face.
<video @src="'content/porn/gh/shemale/bjcum/' + random(1, 67) + '.mp4'" autoplay loop></video>
\
<<addmins 20>>\
<<takeenergy 5>>\
<<addarousal 20>>\
<<set $ghmoney to random(1, 25)>>\
<<set $money += $ghmoney>>\
<<set $ghmoneycounter += $ghmoney>>\
<<set $moneycounter += $ghmoney>>\
<<handskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<timed 900ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 1200ms>>\
<<willingness>>\
<</timed>>\
<<set $ghblowjobcounter += 1>>\
<<set $sghjcounter += 1>>\
<<set $sgblowjobcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<set $sranalcounter += 1>>\
<<set $analsize += 1>>\
You wipe your mouth and collect the $ $ghmoney from the floor.
<<if $CurAR >= 100>>\
<<button "Cum" "Gloryhole Cum">><</button>>
<<else>>\
<<button "Keep waiting" "Gloryhole">><</button>>
<<button "Leave" "Park Toilet Inside">><</button>>
<</if>>\
\
\
\
<<else>>\
You just wait, but nobody turned up.
<video src="content/porn/gh/shemale/1.mp4" autoplay loop></video>
You hear an interesting noise from the next stall. You peek through.
<video src="content/porn/gh/shemale/2.mp4" autoplay loop></video>
A young girl rushed into the stall and she can't stop pissing.
<video @src="'content/porn/gh/shemale/piss/' + random(1, 15) + '.mp4'" autoplay loop></video>
<<addmins 20>>\
<<takeenergy 5>>\
<<addarousal 20>>\
<<if $CurAR >= 100>>\
<<button "Cum" "Gloryhole Cum">><</button>>
<<else>>\
<<button "Keep waiting" "Gloryhole">><</button>>
<<button "Leave" "Park Toilet Inside">><</button>>
<</if>>\
<</if>>\
<</if>>\
<</if>>\
</div>\
<<if $pgender is "male">>\
<<if $locked is true>>\
<img src="content/peoples/player/locked.jpg">
<div align='center'>\
You are locked and can not cum.
</div>\
<<button "Leave" "Park Toilet Inside">><</button>>
\
\
\
<<else>>\
<div align='center'>\
You can not hold it back anymore.
</div>\
<video src="content/peoples/player/mtm.mp4" style="width: 100%;" autoplay loop></video>
<<zeroarousal>>\
<<set $mcumcounter += 1>>\
<<takeenergy 10>>\
<<set $noorgasm = 0>>\
<<button "Clean up yourself" "Park Toilet Inside">><</button>>
<</if>>\
\
\
\
<<elseif $pgender is "female">>\
<<if $locked is true>>\
<img src="content/peoples/player/locked.jpg">
<div align='center'>\
You are locked and can not cum.
</div>\
<<button "Leave" "Park Toilet Inside">><</button>>
\
\
\
<<else>>\
<div align='center'>You can not hold it back anymore.</div>\
<video src="content/peoples/player/ftm.mp4" style="width: 100%;" autoplay loop></video>
<<<zeroarousal>>\
<<set $fcumcounter += 1>>\
<<takeenergy 10>>\
<<set $noorgasm = 0>>\
<<button "Clean up yourself" "Park Toilet Inside">><</button>>
<</if>>\
\
\
\
<<elseif $pgender is "shemale">>\
<<if $locked is true>>\
<img src="content/peoples/player/locked.jpg">
<div align='center'>\
You are locked and can not cum.
</div>\
<<button "Leave" "Park Toilet Inside">><</button>>
\
\
\
<<else>>\
<div align='center'>You can not hold it back anymore.</div>\
<video src="content/peoples/player/mtm.mp4" style="width: 100%;" autoplay loop></video>
<<<zeroarousal>>\
<<set $scumcounter += 1>>\
<<takeenergy 10>>\
<<set $noorgasm = 0>>\
<<button "Clean up yourself" "Park Toilet Inside">><</button>>
<</if>>\
<</if>>\
<<if $shadyguyfirst is false>>\
<div align='center'>\
You see a guy leaning against the back wall of the bathrooms smoking a cigarette. He looks up at you as he approaches.
</div>\
<img src="content/ui/1.jpg">
\
<<speech "Random" "Shady guy">>Yeah? What do you want?<</speech>>
<<speech "player" "$fname">>Bonnie sent me. Are you the guy?<</speech>>
<<speech "Random" "Shady guy">>I might be. Do you have something for me?<</speech>>
<<if $esv == 0>>\
<div align='center'>\
You don't have anything for sale.
</div>\
<<button "Leave" "Park Toilet">><<set $shadyguyfirst to true>><</button>>
\
\
\
<<else>>\
<div align='center'>\
You pull out what vials you have and hand it to him. He looks them over inspecting them closely.
</div>\
<<button "Sell energy serum" "Shady guy">><<set $esv -= 1>><<set $money += 50>><<set $shadyguyfirst to true>><</button>>
<<button "Leave" "Park Toilet">><<set $shadyguyfirst to true>><</button>>
<</if>>\
\
\
\
<<else>>\
<div align='center'>\
You see the familiar face of the shady guy that buys the serum.
</div>\
<img src="content/ui/1.jpg">
\
<<speech "Random" "Shady guy">>Hey dude, you got more for me?<</speech>>
<<if $esv == 0>>\
<div align='center'>\
You don't have anything for sale.
</div>\
<<button "Leave" "Park Toilet">><</button>>
\
\
\
<<else>>\
<div align='center'>\
You hand it over and it gives it a quick look before handing you the cash and walking away.
</div>\
<<button "Sell energy serum" "Shady guy">><<set $esv -= 1>><<set $money += 50>><</button>>
<<button "Leave" "Park Toilet">><</button>>
<</if>>\
<</if>>\
<<if $parkrape == 0>>\
<<if $gameDate.getHours() < "8" or $gameDate.getHours() > "20">>\
<img src="content/location/park_bg2.jpg">
<<else>>\
<img src="content/location/park_bg.jpg">
<</if>>\
\
<div align='center'>\
As you are strolling through the park, you round the bend into a lovely secluded area under some shade trees. You are startled when a man in dark clothes and a very serious expression steps out from behind one of the trees holding what looks like a chef’s knife.
</div>\
<img src="content/events/park/1.jpg">
\
<<speech "Random" "Thief">>Give me your money or I’ll fuckin’ kill you!<</speech>>
<div align='center'>\
You instinctually raise your hands above your head as all the blood drains from your face.
</div>\
<<if $money == 0>>\
<div align='center'>\
You don`t have any money.
</div>\
<<else>>\
<<button "Give him all of your money" "Park Rape">><<set $parkrape = 1>><<set $money = 0>><</button>>
<<button "Lie to him that you don`t have money" "Park Rape">><<set $parkrape = 2>><</button>>
<</if>>\
<<button "Try to fight" "Park Rape">><<set $parkrape = 3>><</button>>
<<button "Try to seduce him" "Park Rape">><<set $parkrape = 4>><</button>>
\
\
\
\
\
<<elseif $parkrape == 1>>\
<img src="content/events/park/1.jpg">
\
<div align='center'>\
You hand him your wallet and the moment you do, he turns and dashes into the trees and is quickly lost from sight.
</div>\
<<button "Walk away" "Park">><<set $park to true>><<set $parkrape = 0>><<set $parkrapecheck to true>><</button>>
\
\
\
\
\
<<elseif $parkrape == 2>>\
<img src="content/events/park/1.jpg">
\
<<speech "player" "$fname">>I’m sorry, I don’t have any money.<</speech>>
<<speech "Random" "Thief">>Don’t lie to me. Give me everything you’ve got or I’ll gut you!<</speech>>
<<speech "player" "$fname">>I really don’t have anything on me. You have to believe me!<</speech>>
<<speech "Random" "Thief">>I don’t believe you. I’ll just take it from your corpse!<</speech>>
<<button "Try to defend yourself" "Park Rape">><<set $parkrape = 5>><</button>>
\
\
\
\
\
<<elseif $parkrape == 3>>\
<img src="content/events/park/1.jpg">
\
<<if $strength >= 40>>\
<div align='center'>\
He lunges but you are faster. As his hand with the knife begins to move forward, you swing your arms up knocking his hand wide. Your hands grip his arm and as you twist your body, he is thrown to the ground. You begin to kneel on his back when his free hand takes a fist full of dirt and flings it into your face. You release his arm taking a few steps backward trying to clear your eyes. By the time you bbutton away the dirt, all you see of your attacker is his back as he runs into the trees.
</div>\
<<button "Walk away" "Park">><<set $park to true>><<set $parkrape = 0>><<set $parkrapecheck to true>><</button>>
<<else>>\
<div align='center'>\
You try to surprise him by throwing a quick jab at his face but he is faster.
</div>\
<<button "Continue" "Park Rape">><<set $parkrape = 5>><</button>>
<</if>>\
\
\
\
\
\
<<elseif $parkrape == 5>>\
<img src="content/events/park/2.jpg">
\
<div align='center'>\
He grabs your arm and twists it forcing you to your knees. It feels like your arm is going to pop from your shoulder and you feel tears of pain on your cheek as continues to twist slowly. You hardly notice the knife slicing your neck. You feel suddenly very light-headed and all goes black. Your body is found the next day and an article about your death is found on page 5 of the local paper. A rather ignominious death. Game Over!
</div>\
\
\
\
\
\
<<elseif $parkrape == 4>>\
<<takeenergy 20>>\
<img src="content/events/park/1.jpg">
\
<<speech "player" "$fname">>Please! Is there anything I can do so you will spare my life? I don’t want to die!<</speech>>
<div align='center'>\
<<if $pgender is "male">>\
He grabs your shirt and yanks you off balance and pushes you into a bush. You stumble and he is right behind you keeping you off-balance as he pulls your pants down. Your legs are wrapped up in your pants and you fall to the ground.
<video src="content/events/park/1.mp4" autoplay loop></video>
You feel your assailant’s elbow jam into your back and hear him spit as you feel his warm saliva hit your ass crack and slide down. With no preamble, you feel his cock rip into your ass and he savagely saws back and forth in you not caring a bit about the pain he is causing.
<video src="content/events/park/2.mp4" autoplay loop></video>
Mercifully, he doesn’t last long and it is only a matter of seconds before you feel him pull out and his cum sprays over your ass.
<video src="content/events/park/3.mp4" autoplay loop></video>
You lay there on the ground with your mouth full of dried leaves panting for breath. You don’t even notice him leave as your head is still spinning from the traumatic encounter. Eventually, you come back to your senses and roll onto your back looking up into the trees above. You pull your pants back up and climb to your knees. You have leaves all over your body and do your best to dust them off as you walk slowly back to the path making your way back out of the park.
<<willingness>>\
<<timed 300ms>>\
<<sexskill>>\
<</timed>>\
<<set $mranalcounter += 1>>\
<<set $analsize += 1>>\
<<button "Leave" "Park">><<set $park to true>><<set $parkrape = 0>><<set $parkrapecheck to true>><</button>>
\
\
\
<<elseif $pgender is "female">>\
He grabs your top and yanks you off balance and pushes you into a bush. You stumble and he is right behind you keeping you off-balance as he pushes you to the ground brandishing his knife in your face. He undoes his pants and pushes them down just far enough for his hard cock to jut out from them.
<video src="content/events/park/4.mp4" autoplay loop></video>
Holding the knife to your neck, he guides his dick to your lips and past your teeth with the other. He hisses as your teeth graze the skin of his dick and he releases the grip on your hair to slaps you with his free hand.
<video src="content/events/park/5.mp4" autoplay loop></video>
<<if $locked is true>>\
You are wearing a chastity belts, so he is got access only for your ass.
<<else>>\
He spins your around and with no preamble, you feel his cock rip into your dry pussy. He savagely saws back and forth in you not caring a bit at the pain he is causing.
<</if>>\
<video src="content/events/park/6.mp4" autoplay loop></video>
Mercifully, he doesn’t last long as he pushes you back to the ground and as you turn to look back up at him, he sprays his load across your face to mingle with the tears there.
<video src="content/events/park/7.mp4" autoplay loop></video>
No sooner has his final spurt shot than he has pulled his pants back up and you see him run through the trees and is soon lost from sight. You wipe your face clean of the semen and tears as best as you are able and wipe the leaves from your clothes before slowly making your way back to the path and out of the park.
<<willingness>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<timed 900ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $fgblowjobcounter += 1>>\
<<set $frpussyfuckcounter += 1>>\
<<set $fcumswallowcounter += 1>>\
<<if $locked is true>>\
<<set $analsize += 1>>\
<<else>>\
<<set $pussysize += 1>>\
<</if>>\
<<button "Continue" "Park">><<set $park to true>><<set $parkrape = 0>><<set $parkrapecheck to true>><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
He grabs your top and yanks you off balance and pushes you into a bush. You stumble and he is right behind you keeping you off-balance as he pushes you to the ground brandishing his knife in your face. He undoes his pants and pushes them down just far enough for his hard cock to jut out from them.
<video src="content/events/park/4.mp4" autoplay loop></video>
Holding the knife to your neck, he guides his dick to your lips and past your teeth with the other. He hisses as your teeth graze the skin of his dick and he releases the grip on your hair to slaps you with his free hand.
<video src="content/events/park/8.mp4" autoplay loop></video>
He spins you around just before you hear him spit as you feel his warm saliva hit your ass crack and slide down. With no preamble, you feel his cock rip into your ass and he savagely saws back and forth in you not caring a bit about the pain he is causing.
<video src="content/events/park/9.mp4" autoplay loop></video>
Mercifully, he doesn’t last long as he pushes you back to the ground and as you turn to look back up at him, he sprays his load across your face to mingle with the tears there.
<video src="content/events/park/10.mp4" autoplay loop></video>
No sooner has his final spurt shot than he has pulled his pants back up and you see him run through the trees and is soon lost from sight. You wipe your face clean of the semen and tears as best as you are able and wipe the leaves from your clothes before slowly making your way back to the path and out of the park.
<<willingness>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<timed 900ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $sgblowjobcounter += 1>>\
<<set $sranalcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<set $analsize += 1>>\
<<button "Continue" "Park">><<set $park to true>><<set $parkrape = 0>><<set $parkrapecheck to true>><</button>>
<</if>>\
</div>\
<</if>>\
<div align='center' style='font-size: 150%;'><b>Fitness Center</b></div>\
<img src="content/location/gym_reception.jpg">
<div align='center'>\
Here you can lift weights or doing some cardio. Lifting weights gives you some <b>Strength</b> and doing cardio gives you some <b>Stamina</b>. You can do each once a day and both of cost <b>-10 Energy</b>.
</div>\
<<if $gymcard == 0>>\
<div align='center'>\
You have to buy a membership card for 500 credit!
</div>\
<<if $credit >= 500>>\
<<button "Buy a membership card" "Gym">><<set $gymcard += 1>><<set $credit -= 500>><<set $gymmmnpc = 0>><<set $gymfmnpc = 0>><</button>>
<<button "Go somewhere else" "Map">><</button>>
<<else>>\
<div align='center'>\
You don`t have enough credit.
</div>\
<<button "Go somewhere else" "Map">><</button>>
<</if>>\
\
\
\
<<else>>\
<<if $CurHP < 10>>\
<div align='center'>\
Your are tired to do workout.
</div>\
<<button "Go somewhere else" "Map">><</button>>
\
\
\
<<else>>\
<<if $dailygymweight is false>>\
<<button "Lift weights" "Gym Weightlifting">><<takeenergy 10>><<addhours 1>><<set $gymweightcounter += 1>><<set $dailygymweight to true>><</button>>
<<else>>\
<div align='center'>\
You already lifted weights today.
</div>\
<</if>>\
\
<<if $dailygymcardio is false>>\
<<button "Doing Cardio" "Gym Cardio">><<takeenergy 10>><<addhours 1>><<set $gymcardiocounter += 1>><<set $dailygymcardio to true>><</button>>
<<else>>\
<div align='center'>\
You already done cardio today.
</div>\
<</if>>\
<<button "Go somewhere else" "Map">><<addmins 10>><</button>>
<</if>>\
<</if>>\
<</if>>
<<if $pgender is "male">>\
<div align='center'>\
<video @src="'content/gym/male/weight/' + random(8, 14) + '.mp4'" autoplay loop></video>
</id>\
<<set _rnd to random(1, 3)>>\
<<if _rnd == 1>>\
<<if $gymmmnpc == 0>>\
<div align='center'>\
You head over to your regular spot to lift weights when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at him and see an attractive and well-built man in tasteful workout clothes looking at you as you walk. You smile back at him as you settle in for your workout. You look back over towards him but he is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "Charles">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help spot you.<</speech>>
<<button "Accept his offer" "Gym MM">><<set $gymmmnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Charles as normal. You spot him and he notices you too. Finishing what he is doing, he walks over to greet you.
</div>\
<<speech "Random" "Charles">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym MM">><<set $gymmmnpc += 1>><</button>>
<</if>>\
\
\
\
<<elseif _rnd == 2>>\
<<if $gymmfnpc == 0>>\
<div align='center'>\
You head over to your regular spot to lift weights when you notice out of the corner of your eye someone working out in your usual spot. Taking a closer look at her as you approach, you see a cute girl dressed in tight-fitting workout clothes. She looks up at you as you approach and you give her your best flirty smile. You see her blush a little at your attention which encourages you on.
</div>\
<<button "Offer your help." "Gym MF">><<set $gymmfnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Diane, as normal. You spot her and she notices you too. Before she can finish, you walk over to her to greet her.
</div>\
<<button "Offer your help" "Gym MF">><<set $gymmfnpc += 1>><</button>>
<</if>>\
\
\
\
<<elseif _rnd == 3>>\
<<if $gymmsnpc == 0>>\
<div align='center'>\
You head over to your regular spot to lift weights when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at her and see a sexy looking lady in skimpy workout clothes and a noticeable bulge in her tights looking at you as you walk. You smile back at her as you settle in for your workout. You look back over towards her but she is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "Honey">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help spot you.<</speech>>
<<button "Accept her offer" "Gym MS">><<set $gymmsnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Honey as normal. You spot her and she notices you too. Finishing what she is doing, she walks over to greet you.
</div>\
<<speech "Random" "Honey">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym MS">><<set $gymmsnpc += 1>><<set $gymmsscene = 1>><</button>>
<</if>>\
<</if>>\
\
\
\
<<elseif $pgender is "female">>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 33) + '.mp4'" autoplay loop></video>
</div>\
<<set _rnd to random(1, 3)>>\
<<if _rnd == 1>>\
<<if $gymfmnpc == 0>>\
<div align='center'>\
You head over to your regular spot to lift weights when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at him and see an attractive and well-built man in tasteful workout clothes looking at you as you walk. You smile back at him as you settle in for your workout. You look back over towards him but he is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "David">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help spot you.<</speech>>
<<button "Accept his offer" "Gym FM">><<set $gymfmnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for David as normal. You spot him and he notices you too. Finishing what he is doing, he walks over to greet you.
</div>\
<<speech "Random" "David">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym FM">><<set $gymfmnpc += 1>><</button>>
<</if>>\
\
\
\
<<elseif _rnd == 2>>\
<<if $gymffnpc == 0>>\
<div align='center'>\
You head over to your regular spot to lift weights when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at her and see a cute girl dressed in tight-fitting workout clothes looking at you as you walk. You smile back at her as you settle in for your workout. You look back over towards her but she is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "Nathaly">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help spot you.<</speech>>
<<button "Accept her offer" "Gym FF">><<set $gymffnpc += 1>><<set $gymffscene = 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Nathaly as normal. You spot her and she notices you too. Finishing what she is doing, she walks over to greet you.
</div>\
<<speech "Random" "Nathaly">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym FF">><<set $gymffnpc += 1>><<set $gymffscene = 1>><</button>>
<</if>>\
\
\
\
<<elseif _rnd == 3>>\
<<if $gymfsnpc == 0>>\
<div align='center'>\
You head over to your regular spot to lift weights when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at her and see a sexy looking lady in skimpy workout clothes and a noticeable bulge in her tights looking at you as you walk. You smile back at her as you settle in for your workout. You look back over towards her but she is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "Kelly">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help spot you.<</speech>>
<<button "Accept her offer" "Gym FS">><<set $gymfsnpc += 1>><<set $gymfsscene = 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Kelly as normal. You spot her and she notices you too. Finishing what she is doing, she walks over to greet you.
</div>\
<<speech "Random" "Kelly">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym FS">><<set $gymfsnpc += 1>><<set $gymfsscene = 1>><</button>>
<</if>>\
<</if>>\
\
\
\
<<elseif $pgender is "shemale">>\
<<set _rnd to random(1, 3)>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 29) + '.mp4'" autoplay loop></video>
</div>\
<<if _rnd == 1>>\
<<if $gymsmnpc == 0>>\
<div align='center'>\
You head over to your regular spot to lift weights when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at him and see an attractive and well-built man in tasteful workout clothes looking at you as you walk. You smile back at him as you settle in for your workout. You look back over towards him but he is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "Thomas">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help spot you.<</speech>>
<<button "Accept his offer" "Gym SM">><<set $gymsmnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Thomas as normal. You spot him and he notices you too. Finishing what he is doing, he walks over to greet you.
</div>\
<<speech "Random" "Thomas">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym SM">><<set $gymsmnpc += 1>><</button>>
<</if>>\
\
\
\
<<elseif _rnd == 2>>\
<<if $gymsfnpc == 0>>\
<div align='center'>\
You head over to your regular spot to lift weights when you notice out of the corner of your eye someone working out in your usual spot. Taking a closer look at her as you approach, you see a cute girl dressed in tight-fitting workout clothes. She looks up at you as you approach and you give her your best flirty smile. You see her blush a little at your attention which encourages you on.
</div>\
<<button "Offer your help" "Gym SF">><<set $gymsfnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Tina, as normal. You spot her and she notices you too. Before she can finish, you walk over to her to greet her.
</div>\
<<button "Offer your help" "Gym SF">><<set $gymsfnpc += 1>><</button>>
<</if>>\
\
\
\
<<elseif _rnd == 3>>\
<<if $gymssnpc == 0>>\
<div align='center'>\
You head over to your regular spot to lift weights when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at her and see a sexy looking lady in skimpy workout clothes and a noticeable bulge in her tights looking at you as you walk. You smile back at her as you settle in for your workout. You look back over towards her but she is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "Khloe">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help spot you.<</speech>>
<<button "Accept her offer" "Gym SS">><<set $gymssnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Khloe as normal. You spot her and she notices you too. Finishing what she is doing, she walks over to greet you.
</div>\
<<speech "Random" "Khloe">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym SS">><<set $gymssnpc += 1>><</button>>
<</if>>\
<</if>>\
<</if>>\
<<strength>>\
<<button "Leave" "Map">><</button>>\
<<if $pgender is "male">>\
<div align='center'>\
<video @src="'content/gym/male/weight/' + random(1, 7) + '.mp4'" autoplay loop></video>
</div>\
<<set _rnd to random(1, 3)>>\
<<if _rnd == 1>>\
<<if $gymmmnpc == 0>>\
<div align='center'>\
You head over to your regular spot to do some cardio when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at him and see an attractive and well-built man in tasteful workout clothes looking at you as you walk. You smile back at him as you settle in for your workout. You look back over towards him but he is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "Charles">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help stretching.<</speech>>
<<button "Accept his offer" "Gym MM">><<set $gymmmnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Charles as normal. You spot him and he notices you too. Finishing what he is doing, he walks over to greet you.
</div>\
<<speech "Random" "Charles">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym MM">><<set $gymmmnpc += 1>><</button>>
<</if>>\
\
\
\
<<elseif _rnd == 2>>\
<<if $gymmfnpc == 0>>\
<div align='center'>\
You head over to your regular spot to do some cardio when you notice out of the corner of your eye someone working out in your usual spot. Taking a closer look at her as you approach, you see a cute girl dressed in tight-fitting workout clothes. She looks up at you as you approach and you give her your best flirty smile. You see her blush a little at your attention which encourages you on.
</div>\
<<button "Offer your help." "Gym MF">><<set $gymmfnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Diane, as normal. You spot her and she notices you too. Before she can finish, you walk over to her to greet her.
</div>\
<<button "Offer your help" "Gym MF">><<set $gymmfnpc += 1>><</button>>
<</if>>\
\
\
\
<<elseif _rnd == 3>>\
<<if $gymmsnpc == 0>>\
<div align='center'>\
You head over to your regular spot to do some cardio when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at her and see a sexy looking lady in skimpy workout clothes and a noticeable bulge in her tights looking at you as you walk. You smile back at her as you settle in for your workout. You look back over towards her but she is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "Honey">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help stretching.<</speech>>
<<button "Accept her offer" "Gym MS">><<set $gymmsnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Honey as normal. You spot her and she notices you too. Finishing what she is doing, she walks over to greet you.
</div>\
<<speech "Random" "Honey">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym MS">><<set $gymmsnpc += 1>><<set $gymmsscene = 1>><</button>>
<</if>>\
<</if>>\
\
\
\
<<elseif $pgender is "female">>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(34, 43) + '.mp4'" autoplay loop></video>
</div>\
<<set _rnd to random(1, 3)>>\
<<if _rnd == 1>>\
<<if $gymfmnpc == 0>>\
<div align='center'>\
You head over to your regular spot to do some cardio when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at him and see an attractive and well-built man in tasteful workout clothes looking at you as you walk. You smile back at him as you settle in for your workout. You look back over towards him but he is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "David">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help stretching.<</speech>>
<<button "Accept his offer" "Gym FM">><<set $gymfmnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for David as normal. You spot him and he notices you too. Finishing what he is doing, he walks over to greet you.
</div>\
<<speech "Random" "David">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym FM">><<set $gymfmnpc += 1>><</button>>
<</if>>\
\
\
\
<<elseif _rnd == 2>>\
<<if $gymffnpc == 0>>\
<div align='center'>\
You head over to your regular spot to do some cardio when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at her and see a cute girl dressed in tight-fitting workout clothes looking at you as you walk. You smile back at her as you settle in for your workout. You look back over towards her but she is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "Nathaly">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help stretching.<</speech>>
<<button "Accept her offer" "Gym FF">><<set $gymffnpc += 1>><<set $gymffscene = 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Nathaly as normal. You spot her and she notices you too. Finishing what she is doing, she walks over to greet you.
</div>\
<<speech "Random" "Nathaly">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym FF">><<set $gymffnpc += 1>><<set $gymffscene = 1>><</button>>
<</if>>\
\
\
\
<<elseif _rnd == 3>>\
<<if $gymfsnpc == 0>>\
<div align='center'>\
You head over to your regular spot to do some cardio when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at her and see a sexy looking lady in skimpy workout clothes and a noticeable bulge in her tights looking at you as you walk. You smile back at her as you settle in for your workout. You look back over towards her but she is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "Kelly">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help stretching.<</speech>>
<<button "Accept her offer" "Gym FS">><<set $gymfsnpc += 1>><<set $gymfsscene = 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Kelly as normal. You spot her and she notices you too. Finishing what she is doing, she walks over to greet you.
</div>\
<<speech "Random" "Kelly">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym FS">><<set $gymfsnpc += 1>><<set $gymfsscene = 1>><</button>>
<</if>>\
<</if>>\
\
\
\
<<elseif $pgender is "shemale">>\
<<set _rnd to random(1, 3)>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(34, 44) + '.mp4'" autoplay loop></video>
</div>\
<<if _rnd == 1>>\
<<if $gymsmnpc == 0>>\
<div align='center'>\
You head over to your regular spot to do some cardio when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at him and see an attractive and well-built man in tasteful workout clothes looking at you as you walk. You smile back at him as you settle in for your workout. You look back over towards him but he is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "Thomas">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help stretching.<</speech>>
<<button "Accept his offer" "Gym SM">><<set $gymsmnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Thomas as normal. You spot him and he notices you too. Finishing what he is doing, he walks over to greet you.
</div>\
<<speech "Random" "Thomas">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym SM">><<set $gymsmnpc += 1>><</button>>
<</if>>\
\
\
\
<<elseif _rnd == 2>>\
<<if $gymsfnpc == 0>>\
<div align='center'>\
You head over to your regular spot to do some cardio when you notice out of the corner of your eye someone working out in your usual spot. Taking a closer look at her as you approach, you see a cute girl dressed in tight-fitting workout clothes. She looks up at you as you approach and you give her your best flirty smile. You see her blush a little at your attention which encourages you on.
</div>\
<<button "Offer your help" "Gym SF">><<set $gymsfnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Tina, as normal. You spot her and she notices you too. Before she can finish, you walk over to her to greet her.
</div>\
<<button "Offer your help" "Gym SF">><<set $gymsfnpc += 1>><</button>>
<</if>>\
\
\
\
<<elseif _rnd == 3>>\
<<if $gymssnpc == 0>>\
<div align='center'>\
You head over to your regular spot to do some cardio when you notice out of the corner of your eyes someone watching you. You instinctively turn to look at her and see a sexy looking lady in skimpy workout clothes and a noticeable bulge in her tights looking at you as you walk. You smile back at her as you settle in for your workout. You look back over towards her but she is gone. You sigh a little at the missed opportunity. You are startled as you hear a voice behind you making you jump a little before you can turn to see how it is.
</div>\
<<speech "Random" "Khloe">>Hi there, I couldn’t help noticing you as you walked in. Would you like some company? Perhaps I could help stretching.<</speech>>
<<button "Accept her offer" "Gym SS">><<set $gymssnpc += 1>><</button>>
<<else>>\
<div align='center'>\
As you walk in, you look around for Khloe as normal. You spot her and she notices you too. Finishing what she is doing, she walks over to greet you.
</div>\
<<speech "Random" "Khloe">>It’s so nice to see you here again, $fname. I’ve been hoping to see you. It looks like you just got here. Are you ready to get sweaty with me?<</speech>>
<<button "Yes" "Gym SS">><<set $gymssnpc += 1>><</button>>
<</if>>\
<</if>>\
<</if>>\
<<stamina>>\
<<button "Leave" "Map">><</button>>\
<<if $gymmmnpc <= 3>>\
<div align='center'>\
<video @src="'content/gym/male/weight/' + random(8, 14) + '.mp4'" autoplay loop></video>
</div>\
<<speech "Random" "Charles">>Very nice to meet you. I’m Charles. I don’t think I’ve noticed you here before. Are you new to the club?<</speech>>
<div align='center'>\
The two of you chat as he helps you lift. The chemistry between the two of you is instantly recognizable. After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymmmnpc >= 4 and $gymmmnpc < 7>>\
<div align='center'>\
<video @src="'content/gym/male/weight/' + random(8, 14) + '.mp4'" autoplay loop></video>
You sincerely appreciate the help from Charles, as you can get a much deeper movement than you would otherwise. You can smell his cologne as the two of you get close and you feel yourself getting a bit turned on feeling his heat. As he is spotting your lift, he gets in close and you can feel the heat coming from his body just before his bulge presses against your back. Is he doing that by accident? You only wonder for a brief moment as he presses harder removing any doubt that he is grinding against you intentionally. You flush with embarrassment but decide not to say anything as you find that you secretly are enjoying his attention. You do your best to hide your arousal but it is not easy. You aren’t sure how successful you are at keeping your boner from being noticed. Nothing is said and the two of you continue your lifting as if everything were normal.
<video @src="'content/gym/male/teasing/' + random(1, 9) + '.mp4'" autoplay loop></video>
At the end of the workout, you are a bit out of breath and Charles seems to know why. It seems that he has enjoyed teasing you and as you say goodbye, you both agree to do it again. You idly wonder if the “it” refers to the workout or the teasing. Either way, you are excited to see him again.
</div>\
<<addarousal 20>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymmmnpc >= 7 and $gymmmnpc < 10>>\
<div align='center'>\
<video @src="'content/gym/male/weight/' + random(8, 14) + '.mp4'" autoplay loop></video>
You really appreciate the help from Charles as you are able to get a much deeper movement than you would otherwise. You can smell his cologne as the two of you get close and you feel yourself getting a bit turned on feeling his heat. As he is spotting your lift, he gets in close and you can feel the heat coming from his body just before his bulge> presses against your back. Is he doing that by accident? You only wonder for a brief moment as he presses harder removing any doubt that he is grinding against you intentionally. You flush with embarrassment but decide not to say anything as you find that you secretly are enjoying his attention. You do your best to hide your arousal but it is not easy. You aren’t sure how successful you are at keeping your boner from being noticed. Nothing is said and the two of you continue your stretches as if everything were normal. At the end of the workout, you are a bit out of breath.
<video @src="'content/gym/male/teasing/' + random(1, 9) + '.mp4'" autoplay loop></video>
After slowly licking his lips, he narrows his eyes at you and grabbing your shirt, pulls you to a quiet nook of the gym where he pulls his shorts down and his cock springs out like a spring-loaded jack-in-the-box.
<video @src="'content/gym/shemale/reveal/' + random(26, 35) + '.mp4'" autoplay loop></video>
Wrapping his fingers into the hair on the back of your head, he guides your lips towards his bobbing cock. You obediently open your mouth and allow him to slide it in with a low moan. Your lips concave as you suck it in deeper and his hips begin to thrust in a rhythm.
<video @src="'content/gym/male/bj/' + random(1, 31) + '.mp4'" autoplay loop></video>
Charles closes his eyes and you feel his cock begin to pulse just before he pulls and the hot stream of cums shoots across your face and hair. It seems he was pretty worked up from the teasing earlier. You lick your lips and eat the creamy cum your tongue can reach. Taking a deep breath, Charles looks down at you between his thighs and blows you a kiss before heading for the locker room.
<video @src="'content/gym/male/cum/' + random(1, 12) + '.mp4'" autoplay loop></video>
You take a towel and wipe the thick spunk from your head. It looks like you might be only covered with sweat now but anyone close enough to smell you would know that you are covered in cum. Best to head to the showers yourself as well.
</div>\
<<addarousal 80>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<set $mgblowjobcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymmmnpc >= 10>>\
<div align='center'>\
<video @src="'content/gym/male/weight/' + random(8, 14) + '.mp4'" autoplay loop></video>
You really appreciate the help from Charles as you are able to get a much deeper movement than you would otherwise. You can smell his cologne as the two of you get close and you feel yourself getting a bit turned on feeling his heat. As he is spotting your lift, he gets in close and you can feel the heat coming from his body just before his bulge> presses against your back. Is he doing that by accident? You only wonder for a brief moment as he presses harder removing any doubt that he is grinding against you intentionally. You flush with embarrassment but decide not to say anything as you find that you secretly are enjoying his attention. You do your best to hide your arousal but it is not easy. You aren’t sure how successful you are at keeping your boner from being noticed. Nothing is said and the two of you continue your stretches as if everything were normal. At the end of the workout, you are a bit out of breath.
<video @src="'content/gym/male/teasing/' + random(1, 9) + '.mp4'" autoplay loop></video>
After slowly licking his lips, he narrows his eyes at you and grabbing your shirt, pulls you to a quiet nook of the gym where he pulls his shorts down and his cock springs out like a spring-loaded jack-in-the-box.
<video @src="'content/gym/shemale/reveal/' + random(26, 35) + '.mp4'" autoplay loop></video>
Wrapping his fingers into the hair on the back of your head, he guides your lips towards his bobbing cock. You obediently open your mouth and allow him to slide it in with a low moan. Your lips concave as you suck it in deeper and his hips begin to thrust in a rhythm.
<video @src="'content/gym/male/bj/' + random(1, 31) + '.mp4'" autoplay loop></video>
The two of you proceed to fuck in several positions.
<video @src="'content/gym/male/bj/' + random(1, 31) + '.mp4'" autoplay loop></video>
Both of you finally cums.
<video @src="'content/gym/male/cum/' + random(1, 12) + '.mp4'" autoplay loop></video>
<video @src="'content/gym/male/cum/' + random(13, 24) + '.mp4'" autoplay loop></video>
You are both covered with sweat as well as your mingled sexual fluids. You wish you could both shower together but it is only by sheer luck that no one has discovered you back here.
</div>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $pdollcum to true>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<sexskill>>\
<</timed>>\
<<timed 600 ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 900ms>>\
<<willingness>>\
<</timed>>\
<<set $analsize += 1>>\
<<set $mgblowjobcounter += 1>>\
<<set $mganalcounter += 1>>\
<<set $mranalcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<set $mcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<button "Leave" "Map">><<set $pdollcum to false>><</button>>
<</if>>\
<<if $gymmfnpc <= 3>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 33) + '.mp4'" autoplay loop></video>
</div>\
<<speech "player" "$fname">>Hi there. I couldn’t help noticing you as I walked in. Would you like some company? Perhaps I could help you spot you?<</speech>>
<<speech "Random" "Diane">>I would love that. Thank you for your offer. I’m Diane.<</speech>>
<<speech "player" "$fname">>Very nice to meet you. I’m $fname. I don’t think I’ve noticed you here before. Are you new to the club?<</speech>>
<div align='center'>\
The two of you chat as you help her lift. The chemistry between the two of you is instantly recognizable. After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<addarousal 20>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymmfnpc >= 4 and $gymmfnpc < 7>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 33) + '.mp4'" autoplay loop></video>
</div>\
<<speech "player" "$fname">>It’s so nice to see you here again, Diane. I’ve been hoping to see you. It looks like you are already warmed up. Are you ready to get sweaty with me?<</speech>>
<<speech "Random" "Diane">>Yeah, I was hoping to catch you today. Let’s do it!<</speech>>
<div align='center'>\
You really enjoy being able to help Diane as she mentions how appreciative she is as she is able to get a much deeper movement than she would otherwise. You can smell her perfume as the two of you get close and you feel yourself getting a bit turned on feeling her heat. As she is starting a lift, you step in closer and you press your bulge against her back. You notice her glance back at you as if she is wondering if the contact is accidental. You decide to remove any doubt as you grind yourself harder against her. However, nothing is said and it seems that she is enjoying the attention. It is adorable how hard she tries to hide her arousal as you are clearly able to see her wet pussy.
<video @src="'content/gym/shemale/teasing/' + random(1, 22) + '.mp4'" autoplay loop></video>
At the end of the workout, she is a bit out of breath and you know exactly why. It seems that she has enjoyed being teased by you and as you say goodbye, you both agree to do it again. You idly wonder if the “it” refers to the workout or the teasing. Either way, you are excited to see her again.
</div>\
<<addarousal 20>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymmfnpc >= 7 and $gymmfnpc < 10>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 33) + '.mp4'" autoplay loop></video>
</div>\
<<speech "player" "$fname">>It’s so nice to see you here again, Diane. I’ve been hoping to see you. It looks like you are already warmed up. Are you ready to get sweaty with me again?<</speech>>
<div align='center'>\
You really enjoy being able to help Diane as she mentions how appreciative she is as she is able to get a much deeper movement than she would otherwise. You can smell her perfume as the two of you get close and you feel yourself getting a bit turned on feeling her heat. As she is starting a lift, you step in closer and you press your bulge against her back. You notice her glance back at you as if she is wondering if the contact is accidental. You decide to remove any doubt as you grind yourself harder against her. However, nothing is said and it seems that she is enjoying the attention. It is adorable how hard she tries to hide her arousal as you are clearly able to see her wet pussy.
<video @src="'content/gym/shemale/teasing/' + random(1, 22) + '.mp4'" autoplay loop></video>
At the end of the workout, she is a bit out of breath and you know exactly why. You lick your lips and you feel your desire suddenly burning uncontrollably. Your eyes narrow and you grab her shirt and tug her to a quiet nook of the gym. You push down your shorts and your aching cock springs free like a spring-loaded jack-in-the-box.
<video @src="'content/gym/shemale/reveal/' + random(1, 33) + '.mp4'" autoplay loop></video>
You wrap your fingers into the hair behind her hand and guide her lips towards your aching cock. Opening her mouth obediently, Diane allows you to slide your cock deep while her cheeks concave sucking you in. You close your eyes as you savor the feeling of her tongue on the underside of your dick. You realize that you won’t last long in her eager mouth.
<video @src="'content/gym/shemale/bj/' + random(1, 34) + '.mp4'" autoplay loop></video>
Almost before you realize it, your orgasm is crashing over you and just have enough time to pull out of her mouth before spraying your jizz all over her face and hair. Hungrily, Diane begins to lick her lips and eats all the creamy cum her tongue can reach.
<video @src="'content/gym/shemale/cum/' + random(1, 22) + '.mp4'" autoplay loop></video>
Taking a deep breath, a smile creeps over your face. You blow her a kiss and make your way over to the locker room for a shower; paying little heed to the state that you are leaving Diane in.
</div>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $pdollcum to true>>\
<<sexskill>>\
<<timed 300ms>>\
<<willingness>>\
<</timed>>\
<<set $mrblowjobcounter += 1>>\
<<set $mcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<button "Leave" "Map">><<set $pdollcum to false>><</button>>
\
\
\
<<elseif $gymmfnpc >= 10>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 33) + '.mp4'" autoplay loop></video>
</div>\
<<speech "player" "$fname">>It’s so nice to see you here again, Diane. I’ve been hoping to see you. It looks like you are already warmed up. Are you ready to get sweaty with me again?<</speech>>
<div align='center'>\
You really enjoy being able to help Diane as she mentions how appreciative she is as she is able to get a much deeper movement than she would otherwise. You can smell her perfume as the two of you get close and you feel yourself getting a bit turned on feeling her heat. As she is starting a lift, you step in closer and you press your bulge against her back. You notice her glance back at you as if she is wondering if the contact is accidental. You decide to remove any doubt as you grind yourself harder against her. However, nothing is said and it seems that she is enjoying the attention. It is adorable how hard she tries to hide her arousal as you are clearly able to see her wet pussy.
<video @src="'content/gym/shemale/teasing/' + random(1, 22) + '.mp4'" autoplay loop></video>
At the end of the workout, she is a bit out of breath and you know exactly why. You lick your lips and you feel your desire suddenly burning uncontrollably. Your eyes narrow and you grab her shirt and tug her to a quiet nook of the gym. You push down your shorts and your aching cock springs free like a spring-loaded jack-in-the-box.
<video @src="'content/gym/shemale/reveal/' + random(1, 33) + '.mp4'" autoplay loop></video>
You wrap your fingers into the hair behind her hand and guide her lips towards your aching cock. Opening her mouth obediently, Diane allows you to slide your cock deep while her cheeks concave sucking you in. You close your eyes as you savor the feeling of her tongue on the underside of your dick. You realize that you won’t last long in her eager mouth.
<video @src="'content/gym/shemale/bj/' + random(1, 34) + '.mp4'" autoplay loop></video>
You pull her clothes off eagerly before stripping out of your clothes as well. The two of you proceed to fuck in several positions.
<video @src="'content/gym/shemale/fuck/' + random(1, 68) + '.mp4'" autoplay loop></video>
You can not hold it back anymore and you cum.
<video @src="'content/gym/shemale/cum/' + random(1, 27) + '.mp4'" autoplay loop></video>
You are both covered with sweat as well as your mingled sexual fluids. You wish you could both shower together but it is only by sheer luck that no one has discovered you back here.
</div>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $pdollcum to true>>\
<<sexskill>>\
<<timed 300ms>>\
<<willingness>>\
<</timed>>\
<<set $mrblowjobcounter += 1>>\
<<set $mpussyfuckcounter += 1>>\
<<set $mcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<button "Leave" "Map">><<set $pdollcum to false>><</button>>
<</if>>\
<<if $gymmsnpc == 1>>\
<div align='center'>\
<video @src="'content/gym/male/weight/' + random(8, 14) + '.mp4'" autoplay loop></video>
</div>\
<<speech "Random" "Honey">>Very nice to meet you. I’m Honey. I don’t think I’ve noticed you here before. Are you new to the club?<</speech>>
<div align='center'>\
The two of you chat as she helps you spot you during your hard workout. The chemistry between the two of you is instantly recognizable. You try to follow her instructions but your eyes always go back to her huge bulge. After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymmsnpc <= 3>>\
<div align='center'>\
The two of you chat as she helps you stretch out after your hard workout. She is start massaging your arms when you lifting weights. You try to follow her instructions but your eyes always go back to her huge bulge and the way her hand touching you is making you hard.
<video @src="'content/gym/scenes/ms/' + random(1, 2) + '.mp4'" style="width: 100%;" autoplay loop></video>
After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<addarousal 20>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymmsnpc >= 4 and $gymmsnpc < 7>>\
<div align='center'>\
You sincerely appreciate the help from Honey and try to follow her instructions but you can not take off your eyes from her yoga pants. In the next moment she grabs your cock. You was surprised but let her doing it.
</div>\
<video src="content/gym/scenes/ms/3.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Random" "Honey">>Let me motivate you. Lay on the bench.<</speech>>
<div align='center'>\
You follow her instruction and lay down on the bench to doing some sit up. She stands over you and pulls her yoga pants down.
</div>\
<<speech "Random" "Honey">>Kiss it after each sit up.<</speech>>
<video src="content/gym/scenes/ms/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She turns around and pull out her boobs.
</div>\
<<speech "Random" "Honey">>Give some kisses to these beauties as well.<</speech>>
<video src="content/gym/scenes/ms/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
At the end of the workout, you are a bit out of breath and Honey seems to know why. It seems that she has enjoyed teasing you and as you say goodbye, you both agree to do it again. You idly wonder if the “it” refers to the workout or the teasing. Either way, you are excited to see her again.
</div>\
<<addarousal 50>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymmsnpc >= 7 and $gymmsnpc < 10>>\
<<if $gymmsscene == 1>>\
<div align='center'>\
You sincerely appreciate the help from Honey and try to follow her instructions but you can not take off your eyes from her yoga pants. In the next moment she grabs your cock. You was surprised but let her doing it.
</div>\
<video src="content/gym/scenes/ms/3.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Random" "Honey">>Let me motivate you. Lay on the bench.<</speech>>
<div align='center'>\
You follow her instruction and lay down on the bench to doing some sit up. She stands over you and pulls her yoga pants down.
</div>\
<<speech "Random" "Honey">>Kiss it after each sit up.<</speech>>
<video src="content/gym/scenes/ms/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She turns around and pull out her boobs.
</div>\
<<speech "Random" "Honey">>Give some kisses to these beauties as well.<</speech>>
<video src="content/gym/scenes/ms/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
After that you two going to do some bench press. You lay down and she will spot you.
</div>\
<<addarousal 50>>\
<<button "Continue" "Gym MS">><<set $gymmsscene += 1>><</button>>
\
\
\
<<else>>\
<div align='center'>\
You laying on the bench ready to lift, just waiting for Honey to help you. She stands over your head naked, her huge cock right front of your face.
</div>\
<<speech "Random" "Honey">>I just want to give you a little extra motivation.<</speech>>
<div align='center'>\
She help you with the weight and when the weight coming down she also come lower pushing her cock down your throat.
</div>\
<video src="content/gym/scenes/ms/6.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She puts the weight away and don't let your head off from her cock until she ready to cum.
</div>\
<video src="content/gym/scenes/ms/7.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She push you back on the bench and fill up your mouth with her hot fresh protein drink. You lick up every single drop.
</div>\
<video src="content/gym/scenes/ms/8.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Taking a deep breath, a smile creeps over your face. You blow her a kiss and make your way over to the locker room for a shower.
</div>\
<<addarousal 80>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<set $mgblowjobcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<button "Leave" "Map">><<set $gymmsscene = 1>><</button>>
<</if>>\
\
\
\
<<elseif $gymmsnpc >= 10>>\
<<if $gymmsscene == 1>>\
<div align='center'>\
You sincerely appreciate the help from Honey and try to follow her instructions but you can not take off your eyes from her yoga pants. In the next moment she grabs your cock. You was surprised but let her doing it.
</div>\
<video src="content/gym/scenes/ms/3.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Random" "Honey">>Let me motivate you. Lay on the bench.<</speech>>
<div align='center'>\
You follow her instruction and lay down on the bench to doing some sit up. She stands over you and pulls her yoga pants down.
</div>\
<<speech "Random" "Honey">>Kiss it after each sit up.<</speech>>
<video src="content/gym/scenes/ms/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She turns around and pull out her boobs.
</div>\
<<speech "Random" "Honey">>Give some kisses to these beauties as well.<</speech>>
<video src="content/gym/scenes/ms/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
After that you two going to do some bench press. You lay down and she will spot you.
</div>\
<<addarousal 50>>\
<<button "Continue" "Gym MS">><<set $gymmsscene += 1>><</button>>
\
\
\
<<else>>\
<div align='center'>\
You laying on the bench ready to lift, just waiting for Honey to help you. She stands over your head naked, her huge cock right front of your face.
</div>\
<<speech "Random" "Honey">>I just want to give you a little extra motivation.<</speech>>
<div align='center'>\
She help you with the weight and when the weight coming down she also come lower pushing her cock down your throat.
</div>\
<video src="content/gym/scenes/ms/6.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She puts the weight away and don't let your head off from her cock until it is well lubricated and ready for your ass.
</div>\
<video src="content/gym/scenes/ms/7.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She push you down and slowly fucking you in different positions.
</div>\
<video src="content/gym/scenes/ms/9.mp4" style="width: 100%;" autoplay loop></video>
<<set _rnd = random(1, 2)>>\
<<if _rnd == 1>>\
<div align='center'>\
You can feel it, she can not hold back anymore so you just waiting for your after workout protein drink. She push you down and fill your mouth with her fresh protein. You lick it up until the last drop.
</div>\
<video src="content/gym/scenes/ms/8.mp4" style="width: 100%;" autoplay loop></video>
<<cumplayskill>>\
<<set $mcumswallowcounter += 1>>\
\
\
\
<<else>>\
<div align='center'>\
You can feel it, she can not hold back anymore so you just waiting for your after workout protein drink. She wasn't quick enough to reach your mouth and she cum on your back.
</div>\
<video src="content/gym/scenes/ms/10.mp4" style="width: 100%;" autoplay loop></video>
<</if>>\
<div align='center'>\
She instruct you to finish yourself while she massaging your balls.
</div>\
<video src="content/gym/scenes/ms/11.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Taking a deep breath, a smile creeps over your face. You blow her a kiss and make your way over to the locker room for a shower.
</div>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<timed 900ms>>\
<<willingness>>\
<</timed>>\
<<set $mgblowjobcounter += 1>>\
<<set $mranalcounter += 1>>\
<<set $analsize += 1>>\
<<set $pdollcum to true>>\
<<set $mcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<button "Leave" "Map">><<set $gymmsscene = 1>><<set $pdollcum to false>><</button>>
<</if>>\
<</if>>\
<<if $gymfmnpc <= 3>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 33) + '.mp4'" autoplay loop></video>
</div>\
<<speech "Random" "David">>Very nice to meet you. I’m David. I don’t think I’ve noticed you here before. Are you new to the club?<</speech>>
<div align='center'>\
The two of you chat as he helps you lift. The chemistry between the two of you is instantly recognizable. After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymfmnpc >= 4 and $gymfmnpc < 7>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 33) + '.mp4'" autoplay loop></video>
You sincerely appreciate the help from David, as you can get a much deeper movement than you would otherwise. You can smell his cologne as the two of you get close and you feel yourself getting a bit turned on feeling his heat. As he is spotting your lift, he gets in close and you can feel the heat coming from his body just before his bulge presses against your back. Is he doing that by accident? You only wonder for a brief moment as he presses harder removing any doubt that he is grinding against you intentionally. You flush with embarrassment but decide not to say anything as you find that you secretly are enjoying his attention. You do your best to hide your arousal but it is not easy. You aren’t sure how successful you are at keeping your wet pussy from being noticed. Nothing is said and the two of you continue your lifting as if everything were normal.
<video @src="'content/gym/shemale/teasing/' + random(1, 22) + '.mp4'" autoplay loop></video>
At the end of the workout, you are a bit out of breath and David seems to know why. It seems that he has enjoyed teasing you and as you say goodbye, you both agree to do it again. You idly wonder if the “it” refers to the workout or the teasing. Either way, you are excited to see him again.
</div>\
<<addarousal 20>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymfmnpc >= 7 and $gymfmnpc < 10>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 33) + '.mp4'" autoplay loop></video>
You sincerely appreciate the help from David, as you can get a much deeper movement than you would otherwise. You can smell his cologne as the two of you get close and you feel yourself getting a bit turned on feeling his heat. As he is spotting your lift, he gets in close and you can feel the heat coming from his body just before his bulge presses against your back. Is he doing that by accident? You only wonder for a brief moment as he presses harder removing any doubt that he is grinding against you intentionally. You flush with embarrassment but decide not to say anything as you find that you secretly are enjoying his attention. You do your best to hide your arousal but it is not easy. You aren’t sure how successful you are at keeping your wet pussy from being noticed. Nothing is said and the two of you continue your lifting as if everything were normal.
<video @src="'content/gym/shemale/teasing/' + random(1, 22) + '.mp4'" autoplay loop></video>
After slowly licking his lips, he narrows his eyes at you and grabbing your shirt, pulls you to a quiet nook of the gym where he pulls his shorts down and his cock springs out like a spring-loaded jack-in-the-box.
<video @src="'content/gym/shemale/reveal/' + random(1, 33) + '.mp4'" autoplay loop></video>
Wrapping his fingers into the hair on the back of your head, he guides your lips towards his bobbing cock. You obediently open your mouth and allow him to slide it in with a low moan. Your lips concave as you suck it in deeper and his hips begin to thrust in a rhythm.
<video @src="'content/gym/shemale/bj/' + random(1, 34) + '.mp4'" autoplay loop></video>
David closes his eyes and you feel his cock begin to pulse just before he pulls and the hot stream of cums shoots across your face and hair. It seems he was pretty worked up from the teasing earlier. You lick your lips and eat the creamy cum your tongue can reach. Taking a deep breath, David looks down at you between his thighs and blows you a kiss before heading for the locker room.
<video @src="'content/gym/shemale/cum/' + random(1, 22) + '.mp4'" autoplay loop></video>
You take a towel and wipe the thick spunk from your head. It looks like you might be only covered with sweat now but anyone close enough to smell you would know that you are covered in cum. Best to head to the showers yourself as well.
</div>\
<<addarousal 50>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed>>\
<<willingness>>\
<</timed>>\
<<set $fgblowjobcounter += 1>>\
<<set $fcumswallowcounter += 1>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymfmnpc >= 10>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 33) + '.mp4'" autoplay loop></video>
You sincerely appreciate the help from David, as you can get a much deeper movement than you would otherwise. You can smell his cologne as the two of you get close and you feel yourself getting a bit turned on feeling his heat. As he is spotting your lift, he gets in close and you can feel the heat coming from his body just before his bulge presses against your back. Is he doing that by accident? You only wonder for a brief moment as he presses harder removing any doubt that he is grinding against you intentionally. You flush with embarrassment but decide not to say anything as you find that you secretly are enjoying his attention. You do your best to hide your arousal but it is not easy. You aren’t sure how successful you are at keeping your wet pussy from being noticed. Nothing is said and the two of you continue your lifting as if everything were normal.
<video @src="'content/gym/shemale/teasing/' + random(1, 22) + '.mp4'" autoplay loop></video>
After slowly licking his lips, he narrows his eyes at you and grabbing your shirt, pulls you to a quiet nook of the gym where he pulls his shorts down and his cock springs out like a spring-loaded jack-in-the-box.
<video @src="'content/gym/shemale/reveal/' + random(1, 33) + '.mp4'" autoplay loop></video>
Wrapping his fingers into the hair on the back of your head, he guides your lips towards his bobbing cock. You obediently open your mouth and allow him to slide it in with a low moan. Your lips concave as you suck it in deeper and his hips begin to thrust in a rhythm.
<video @src="'content/gym/shemale/bj/' + random(1, 34) + '.mp4'" autoplay loop></video>
The two of you proceed to fuck in several positions.
<video @src="'content/gym/shemale/fuck/' + random(1, 68) + '.mp4'" autoplay loop></video>
Both of you finally cum.
<video @src="'content/gym/shemale/cum/' + random(1, 27) + '.mp4'" autoplay loop></video>
You are both covered with sweat as well as your mingled sexual fluids. You wish you could both shower together but it is only by sheer luck that no one has discovered you back here.
</div>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<willingness>>\
<<timed 300ms>>\
<<blowjobskill>>\
<<timed>>\
<<timed 600ms>>\
<<sexskill>>\
<<timed>>\
<<timed 900ms>>\
<<cumplayskill>>\
<<timed>>\
<<set $pussysize += 1>>\
<<set $fgblowjobcounter += 1>>\
<<set $frpussyfuckcounter += 1>>\
<<set $fcumswallowcounter += 1>>\
<<set $fcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<set $pdollcum to true>>\
<<button "Leave" "Map">><<set $pdollcum to false>><</button>>
<</if>>\
<<if $gymffnpc == 1>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 33) + '.mp4'" autoplay loop></video>
</div>\
<<speech "Random" "Nathaly">>Very nice to meet you. I’m Honey. I don’t think I’ve noticed you here before. Are you new to the club?<</speech>>
<div align='center'>\
The two of you chat as she helps you stretch out after your hard workout. She shows you some basic stretching move as well. The chemistry between the two of you is instantly recognizable.
</div>\
<video @src="'content/gym/scenes/ff/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymffnpc <= 3>>\
<div align='center'>\
The two of you chat as she helps you stretch out after your hard workout. She shows you some basic stretching move as well.
</div>\
<video @src="'content/gym/scenes/ff/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymffnpc >= 4 and $gymffnpc < 7>>\
<div align='center'>\
The two of you chat as she helps you stretch out after your hard workout. She shows you some basic stretching move as well.
</div>\
<video @src="'content/gym/scenes/ff/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You sincerely appreciate the help from Nathaly and try to follow her instructions but she keeps touching your private parts and you feel yourself getting a bit turned on from it.
</div>\
<video @src="'content/gym/scenes/ff/' + random(4, 6) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
At the end of the workout, you are a bit out of breath and Nathaly seems to know why. It seems that she has enjoyed teasing you and as you say goodbye, you both agree to do it again. You idly wonder if the “it” refers to the workout or the teasing. Either way, you are excited to see her again.
</div>\
<<addarousal 20>>\
<<button "Leave" "Map">><</button>>
<<elseif $gymffnpc >= 7>>\
<<if $gymffscene == 1>>\
<div align='center'>\
The two of you chat as she helps you stretch out after your hard workout. She shows you some basic stretching move as well.
</div>\
<video @src="'content/gym/scenes/ff/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You sincerely appreciate the help from Nathaly and try to follow her instructions but she keeps touching your private parts and you feel yourself getting a bit turned on from it.
</div>\
<video @src="'content/gym/scenes/ff/' + random(4, 6) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She can not control herself grabs you boobs and starts kissing your neck. You can not do anything about because you are very aroused and it is feels so good.
</div>\
<video src="content/gym/scenes/ff/7.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She push you down to the floor and kiss you.
</div>\
<video src="content/gym/scenes/ff/8.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 50>>\
<<set $fkisscounter += 1>>\
<<tongueskill>>\
<<button "Continue" "Gym FF">><<set $gymffscene += 1>><</button>>
\
\
\
<<else>>\
<div align='center'>\
She take out your breasts and sucking on your hard nipples.
</div>\
<video src="content/gym/scenes/ff/9.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Then she pull down your pants and set free your huge butterfly pussy. Your pussy lips are filling her whole mouth and she just keeps massaging and sucking it.
</div>\
<video src="content/gym/scenes/ff/10.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She lays next to you, her huge breast resting on your body and fingering and kissing you until you cum.
</div>\
<video src="content/gym/scenes/ff/11.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You are fully exhausted and you can not move. She grabs one of your leg and start riding on it with her wet, meaty pussy until she cum.
</div>\
<video src="content/gym/scenes/ff/12.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Taking a deep breath, a smile creeps over your face. You give her a kiss and make your way over to the locker room for a shower.
</div>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $pdollcum to true>>\
<<tongueskill>>\
<<timed 300ms>>\
<<handskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<set $fcumcounter += 1>>\
<<set $fkisscounter += 1>>\
<<set $fghjcounter += 1>>\
<<set $fgpussylickcounter += 1>>\
<<set $frhjcounter += 1>>\
<<set $frpussylickcounter += 1>>\
<<set $noorgasm = 0>>\
<<button "Leave" "Map">><<set $gymffscene = 1>><<set $pdollcum to false>><</button>>
<</if>>\
<</if>>\
<<if $gymfsnpc == 1>>\
<<speech "Random" "Kelly">>Very nice to meet you. I’m Kelly. I don’t think I’ve noticed you here before. Are you new to the club?<</speech>>
<div align='center'>\
The two of you chat as she helps you stretch out after your hard workout. She shows you some basic yoga move as well. The chemistry between the two of you is instantly recognizable. You try to follow her instructions but your eyes always go back to her huge bulge.
</div>\
<video @src="'content/gym/scenes/fs/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
For the last pose both of you sits down front of each others and holding hands and stretching.
</div>\
<video src="content/gym/scenes/fs/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymfsnpc <= 3>>\
<div align='center'>\
The two of you chat as she helps you stretch out after your hard workout. She shows you some basic yoga move as well. The chemistry between the two of you is instantly recognizable. You try to follow her instructions but your eyes always go back to her huge bulge.
</div>\
<video @src="'content/gym/scenes/fs/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
For the last pose both of you sits down front of each others and holding hands and stretching.
</div>\
<video src="content/gym/scenes/fs/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<addarousal 20>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymfsnpc >= 4 and $gymfsnpc < 7>>\
<div align='center'>\
You sincerely appreciate the help from Kelly and try to follow her moves but you can not take off your eyes from her yoga pants.
</div>\
<video @src="'content/gym/scenes/fs/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
For the last pose both of you sits down front of each others and holding hands and stretching.
</div>\
<video src="content/gym/scenes/fs/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She tricked you and pulled your body forward so your head just couple of inches away from her huge cock. you yoga pants is already wet and from Kelly's breathing she also enjoy this moment.
</div>\
<video @src="'content/gym/scenes/fs/' + random(5, 7) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
At the end of the workout, you are a bit out of breath and Kelly seems to know why. It seems that she has enjoyed teasing you and as you say goodbye, you both agree to do it again. You idly wonder if the “it” refers to the workout or the teasing. Either way, you are excited to see her again.
</div>\
<<addarousal 50>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymfsnpc >= 7 and $gymfsnpc < 10>>\
<<if $gymfsscene == 1>>\
<div align='center'>\
You sincerely appreciate the help from Kelly and try to follow her moves but you can not take off your eyes from her yoga pants.
</div>\
<video @src="'content/gym/scenes/fs/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
For the last pose both of you sits down front of each others and holding hands and stretching.
</div>\
<video src="content/gym/scenes/fs/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She tricked you and pulled your body forward so your head just couple of inches away from her huge cock. you yoga pants is already wet and from Kelly's breathing she also enjoy this moment.
</div>\
<video @src="'content/gym/scenes/fs/' + random(5, 7) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She pulled you down again but now much closer. You nearly touching her cock. You could lick it from this distance. She can hot hold it back anymore and pushing your head down on her cock.
</div>\
<video src="content/gym/scenes/fs/8.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 50>>\
<<button "Continue" "Gym FS">><<set $gymfsscene += 1>><</button>>
\
\
\
<<else>>\
<div align='center'>\
You enjoying her huge cock touching your face and start kissing it through her pants.
</div>\
<video src="content/gym/scenes/fs/9.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You push her down and slowly taking her precum stained pants off from her. Her massive cock is nearly ripping off her red panties. That is not made for this huge cock.
</div>\
<video src="content/gym/scenes/fs/10.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You free her cock and taste it.
</div>\
<video src="content/gym/scenes/fs/11.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She has a wonderful taste so you try fitting in your mouth much as you can but this is just too big to fit the whole.
</div>\
<video src="content/gym/scenes/fs/12.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You can feel it, she can not hold back anymore so you just waiting for your after workout protein drink. She push you over and fill your mouth with her fresh protein. You lick it up until the last drop.
</div>\
<video src="content/gym/scenes/fs/15.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Taking a deep breath, a smile creeps over your face. You blow her a kiss and make your way over to the locker room for a shower.
</div>\
<<addarousal 50>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<set $fgblowjobcounter += 1>>\
<<set $fcumswallowcounter += 1>>\
<<button "Leave" "Map">><<set $gymfsscene = 1>><</button>>
<</if>>\
\
\
\
<<elseif $gymfsnpc >= 10>>\
<<if $gymfsscene == 1>>\
<div align='center'>\
You sincerely appreciate the help from Kelly and try to follow her moves but you can not take off your eyes from her yoga pants.
</div>\
<video @src="'content/gym/scenes/fs/' + random(1, 3) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
For the last pose both of you sits down front of each others and holding hands and stretching.
</div>\
<video src="content/gym/scenes/fs/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She tricked you and pulled your body forward so your head just couple of inches away from her huge cock. you yoga pants is already wet and from Kelly's breathing she also enjoy this moment.
</div>\
<video @src="'content/gym/scenes/fs/' + random(5, 7) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She pulled you down again but now much closer. You nearly touching her cock. You could lick it from this distance. She can hot hold it back anymore and pushing your head down on her cock.
</div>\
<video src="content/gym/scenes/fs/8.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 50>>\
<<button "Continue" "Gym FS">><<set $gymfsscene += 1>><<set $pdollcum to true>><</button>>
\
\
\
<<else>>\
<div align='center'>\
You enjoying her huge cock touching your face and start kissing it through her pants.
</div>\
<video src="content/gym/scenes/fs/9.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You push her down and slowly taking her precum stained pants off from her. Her massive cock is nearly ripping off her red panties. That is not made for this huge cock.
</div>\
<video src="content/gym/scenes/fs/10.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You free her cock and taste it.
</div>\
<video src="content/gym/scenes/fs/11.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She has a wonderful taste so you try fitting in your mouth much as you can but this is just too big to fit the whole.
</div>\
<video src="content/gym/scenes/fs/12.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She push you down and slowly fucking you in different positions.
</div>\
<video src="content/gym/scenes/fs/13.mp4" style="width: 100%;" autoplay loop></video>
<<set _rnd = random(1, 2)>>\
<<if _rnd == 1>>\
<div align='center'>\
You can feel it, she can not hold back anymore so you just waiting for your after workout protein drink. She push you over and fill your mouth with her fresh protein. You lick it up until the last drop.
</div>\
<video src="content/gym/scenes/fs/15.mp4" style="width: 100%;" autoplay loop></video>
<<cumplayskill>>\
<<set $fcumswallowcounter += 1>>\
\
\
\
<<else>>\
<div align='center'>\
You can feel it, she can not hold back anymore so you just waiting for your after workout protein drink. She wasn't quick enough to reach your mouth and she cum on your stomach and massage it in your skin.
</div>\
<video src="content/gym/scenes/fs/14.mp4" style="width: 100%;" autoplay loop></video>
<</if>>\
<div align='center'>\
Taking a deep breath, a smile creeps over your face. You blow her a kiss and make your way over to the locker room for a shower.
</div>\
<<zeroarousal>>\
<<timed 300ms>>\
<<blowjobskill += 1>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<timed 900ms>>\
<<willingness>>\
<</timed>>\
<<set $fgblowjobcounter += 1>>\
<<set $frpussyfuckcounter += 1>>\
<<set $pussysize += 1>>\
<<set $noorgasm = 0>>\
<<set $fcumcounter += 1>>\
<<button "Leave" "Map">><<set $gymfsscene = 1>><<set $pdollcum to false>><</button>>
<</if>>\
<</if>>\
<<if $gymsmnpc <= 3>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 29) + '.mp4'" autoplay loop></video>
</div>\
<<speech "Random" "Thomas">>Very nice to meet you. I’m Thomas. I don’t think I’ve noticed you here before. Are you new to the club?<</speech>>
<div align='center'>\
The two of you chat as he helps you lift. The chemistry between the two of you is instantly recognizable. After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymsmnpc >= 4 and $gymsmnpc < 7>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 29) + '.mp4'" autoplay loop></video>
You sincerely appreciate the help from Thomas, as you can get a much deeper movement than you would otherwise. You can smell his cologne as the two of you get close and you feel yourself getting a bit turned on feeling his heat. As he is spotting your lift, he gets in close and you can feel the heat coming from his body just before his bulge presses against your back. Is he doing that by accident? You only wonder for a brief moment as he presses harder removing any doubt that he is grinding against you intentionally. You flush with embarrassment but decide not to say anything as you find that you secretly are enjoying his attention. You do your best to hide your arousal but it is not easy. You aren’t sure how successful you are at keeping your wet pussy from being noticed. Nothing is said and the two of you continue your lifting as if everything were normal.
<video @src="'content/gym/shemale/teasing/' + random(1, 20) + '.mp4'" autoplay loop></video>
At the end of the workout, you are a bit out of breath and Thomas seems to know why. It seems that he has enjoyed teasing you and as you say goodbye, you both agree to do it again. You idly wonder if the “it” refers to the workout or the teasing. Either way, you are excited to see him again.
</div>\
<<addarousal 20>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymsmnpc >= 7 and $gymsmnpc < 10>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 29) + '.mp4'" autoplay loop></video>
You really appreciate the help from Thomas as you are able to get a much deeper movement than you would otherwise. You can smell his cologne as the two of you get close and you feel yourself getting a bit turned on feeling his heat. As he is spotting your lift, he gets in close and you can feel the heat coming from his body just before his bulge> presses against your back. Is he doing that by accident? You only wonder for a brief moment as he presses harder removing any doubt that he is grinding against you intentionally. You flush with embarrassment but decide not to say anything as you find that you secretly are enjoying his attention. You do your best to hide your arousal but it is not easy. You aren’t sure how successful you are at keeping your wet pussy from being noticed. Nothing is said and the two of you continue your lifting as if everything were normal. At the end of the workout, you are a bit out of breath.
<video @src="'content/gym/shemale/teasing/' + random(1, 20) + '.mp4'" autoplay loop></video>
After slowly licking his lips, he narrows his eyes at you and grabbing your shirt, pulls you to a quiet nook of the gym where he pulls his shorts down and his cock springs out like a spring-loaded jack-in-the-box.
<video @src="'content/gym/shemale/reveal/' + random(1, 33) + '.mp4'" autoplay loop></video>
Wrapping his fingers into the hair on the back of your head, he guides your lips towards his bobbing cock. You obediently open your mouth and allow him to slide it in with a low moan. Your lips concave as you suck it in deeper and his hips begin to thrust in a rhythm.
<video @src="'content/gym/shemale/bj/' + random(1, 26) + '.mp4'" autoplay loop></video>
Thomas closes his eyes and you feel his cock begin to pulse just before he pulls and the hot stream of cums shoots across your face and hair. It seems he was pretty worked up from the teasing earlier. You lick your lips and eat the creamy cum your tongue can reach. Taking a deep breath, Thomas looks down at you between his thighs and blows you a kiss before heading for the locker room.
<video @src="'content/gym/shemale/cum/' + random(1, 21) + '.mp4'" autoplay loop></video>
You take a towel and wipe the thick spunk from your head. It looks like you might be only covered with sweat now but anyone close enough to smell you would know that you are covered in cum. Best to head to the showers yourself as well.
</div>\
<<addarousal 50>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<set $sgblowjobcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymsmnpc >= 10>>\
<div align='center'>\
<video @src="'content/gym/shemale/weight/' + random(1, 29) + '.mp4'" autoplay loop></video>
You really appreciate the help from Thomas as you are able to get a much deeper movement than you would otherwise. You can smell his cologne as the two of you get close and you feel yourself getting a bit turned on feeling his heat. As he is spotting your lift, he gets in close and you can feel the heat coming from his body just before his bulge> presses against your back. Is he doing that by accident? You only wonder for a brief moment as he presses harder removing any doubt that he is grinding against you intentionally. You flush with embarrassment but decide not to say anything as you find that you secretly are enjoying his attention. You do your best to hide your arousal but it is not easy. You aren’t sure how successful you are at keeping your wet pussy from being noticed. Nothing is said and the two of you continue your lifting as if everything were normal. At the end of the workout, you are a bit out of breath.
<video @src="'content/gym/shemale/teasing/' + random(1, 20) + '.mp4'" autoplay loop></video>
After slowly licking his lips, he narrows his eyes at you and grabbing your shirt, pulls you to a quiet nook of the gym where he pulls his shorts down and his cock springs out like a spring-loaded jack-in-the-box.
<video @src="'content/gym/shemale/reveal/' + random(1, 33) + '.mp4'" autoplay loop></video>
Wrapping his fingers into the hair on the back of your head, he guides your lips towards his bobbing cock. You obediently open your mouth and allow him to slide it in with a low moan. Your lips concave as you suck it in deeper and his hips begin to thrust in a rhythm.
<video @src="'content/gym/shemale/bj/' + random(1, 26) + '.mp4'" autoplay loop></video>
The two of you proceed to fuck in several positions. before both of you finally cum.
<video @src="'content/gym/shemale/fuck/' + random(1, 24) + '.mp4'" autoplay loop></video>
Both of you finally cum.
<video @src="'content/gym/shemale/cum/' + random(1, 21) + '.mp4'" autoplay loop></video>
You are both covered with sweat as well as your mingled sexual fluids. You wish you could both shower together but it is only by sheer luck that no one has discovered you back here.
</div>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $pdollcum to true>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<sexskill>>\
<</timed>>\
<<timed 600ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 900ms>>\
<<willingness>>\
<</timed>>\
<<set $analsize += 1>>\
<<set $sgblowjobcounter += 1>>\
<<set $sganalcounter += 1>>\
<<set $sranalcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<set $scumcounter += 1>>\
<<set $noorgasm = 0>>\
<<button "Leave" "Map">><<set $pdollcum to false>><</button>>
<</if>>\
<<if $gymsfnpc == 1>>\
<<speech "player" "$fname">>Hi there. I couldn’t help noticing you as I walked in. Would you like some company? Perhaps I could help you spot you?<</speech>>
<<speech "Random" "Tina">>I would love that. Thank you for your offer. I’m Tina.<</speech>>
<<speech "player" "$fname">>Very nice to meet you. I’m $fname. I don’t think I’ve noticed you here before. Are you new to the club?<</speech>>
<video src="content/gym/scenes/sf/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
The two of you chat as you help her stretch. The chemistry between the two of you is instantly recognizable. After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymsfnpc <= 3>>\
<<speech "player" "$fname">>It’s so nice to see you here again, Tina. I’ve been hoping to see you. It looks like you are already warmed up. Are you ready to get sweaty with me?<</speech>>
<<speech "Random" "Tina">>Yeah, I was hoping to catch you today. Let’s do it!<</speech>>
<div align='center'>\
You really enjoy being able to help Tina as she mentions how appreciative she is as she is able to get a much deeper movement than she would otherwise. You can smell her perfume as the two of you get close and you feel yourself getting a bit turned on feeling her heat.
</div>\
<video src="content/gym/scenes/sf/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<addarousal 20>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymsfnpc >= 4 and $gymsfnpc < 7>>\
<<speech "player" "$fname">>It’s so nice to see you here again, Tina. I’ve been hoping to see you. It looks like you are already warmed up. Are you ready to get sweaty with me?<</speech>>
<<speech "Random" "Tina">>Yeah, I was hoping to catch you today. Let’s do it!<</speech>>
<div align='center'>\
You really enjoy being able to help Tina as she mentions how appreciative she is as she is able to get a much deeper movement than she would otherwise. You can smell her perfume as the two of you get close and you feel yourself getting a bit turned on feeling her heat.
</div>\
<video src="content/gym/scenes/sf/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Her smell and her body make you very aroused and it is impossible to hide your bulge. She notice it but looks she is turned on by it.
</div>\
<video src="content/gym/scenes/sf/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
At the end of the workout, she is a bit out of breath and you know exactly why. It seems that she has enjoyed being teased by you and as you say goodbye, you both agree to do it again. You idly wonder if the “it” refers to the workout or the teasing. Either way, you are excited to see her again.
</div>\
<<addarousal 40>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymsfnpc >= 7 and $gymsfnpc < 10>>\
<<speech "player" "$fname">>It’s so nice to see you here again, Tina. I’ve been hoping to see you. It looks like you are already warmed up. Are you ready to get sweaty with me?<</speech>>
<<speech "Random" "Tina">>Yeah, I was hoping to catch you today. Let’s do it!<</speech>>
<div align='center'>\
You really enjoy being able to help Tina as she mentions how appreciative she is as she is able to get a much deeper movement than she would otherwise. You can smell her perfume as the two of you get close and you feel yourself getting a bit turned on feeling her heat.
</div>\
<video src="content/gym/scenes/sf/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Her smell and her body make you very aroused and it is impossible to hide your bulge. She notice it but looks she is turned on by it.
</div>\
<video src="content/gym/scenes/sf/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Looks like she can not hold back anymore and she rips your and her clothes off and start sucking your dick.
</div>\
<video src="content/gym/scenes/sf/3.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You also want to taste her so you pull her top of you and start eating out her.
</div>\
<video src="content/gym/scenes/sf/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
This whole action was so intense so you can not hold it anymore and you cum in her mouth.
</div>\
<video src="content/gym/scenes/sf/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Taking a deep breath, a smile creeps over your face. You blow her a kiss and make your way over to the locker room for a shower.
</div>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $scumcounter += 1>>\
<<set $noorgasm = 0>>\
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<set $pdollcum to true>>\
<<set $skisscounter += 1>>\
<<set $spussylickcounter += 1>>\
<<set $srblowjobcounter += 1>>\
<<button "Leave" "Map">><<set $pdollcum to false>><</button>>
\
\
\
<<elseif $gymsfnpc >= 10>>\
<<speech "player" "$fname">>It’s so nice to see you here again, Tina. I’ve been hoping to see you. It looks like you are already warmed up. Are you ready to get sweaty with me?<</speech>>
<<speech "Random" "Tina">>Yeah, I was hoping to catch you today. Let’s do it!<</speech>>
<div align='center'>\
You really enjoy being able to help Tina as she mentions how appreciative she is as she is able to get a much deeper movement than she would otherwise. You can smell her perfume as the two of you get close and you feel yourself getting a bit turned on feeling her heat.
</div>\
<video src="content/gym/scenes/sf/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Her smell and her body make you very aroused and it is impossible to hide your bulge. She notice it but looks she is turned on by it.
</div>\
<video src="content/gym/scenes/sf/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Looks like she can not hold back anymore and she rips your and her clothes off and start sucking your dick.
</div>\
<video src="content/gym/scenes/sf/3.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You also want to taste her so you pull her top of you and start eating out her.
</div>\
<video src="content/gym/scenes/sf/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You move her and fucking her in different positions.
</div>\
<video src="content/gym/scenes/sf/6.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You are very close to orgasm and you pull it out and cum in her mouth.
</div>\
<video src="content/gym/scenes/sf/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Taking a deep breath, a smile creeps over your face. You blow her a kiss and make your way over to the locker room for a shower.
</div>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $scumcounter += 1>>\
<<set $noorgasm = 0>>\
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<set $pdollcum to true>>\
<<set $skisscounter += 1>>\
<<set $spussylickcounter += 1>>\
<<set $srblowjobcounter += 1>>\
<<set $spussyfuckcounter += 1>>\
<<button "Leave" "Map">><<set $pdollcum to false>><</button>>
<</if>>\
<<if $gymssnpc == 1>>\
<<speech "Random" "Khloe">>Very nice to meet you. I’m Kelly. I don’t think I’ve noticed you here before. Are you new to the club?<</speech>>
<div align='center'>\
The two of you chat as she helps spot you. She shows you some basic move as well. The chemistry between the two of you is instantly recognizable. You try to follow her instructions but your eyes always go back to her huge bulge.
<video @src="'content/gym/shemale/weight/' + random(1, 29) + '.mp4'" autoplay loop></video>
After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymssnpc <= 3>>\
<div align='center'>\
The two of you chat as she helps spot you. She shows you some basic move as well. The chemistry between the two of you is instantly recognizable. You try to follow her instructions but your eyes always go back to her huge bulge.
<video @src="'content/gym/shemale/weight/' + random(1, 29) + '.mp4'" autoplay loop></video>
After finishing the workout, the two of you agree to do it again the next time you are both at the gym together.
</div>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymssnpc >= 4 and $gymssnpc < 7>>\
<div align='center'>\
You sincerely appreciate the help from Khloe and try to follow her instructions but you can not take off your eyes from her yoga pants.
</div>\
<video @src="'content/gym/scenes/ss/' + random(1, 2) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
At the end of the workout, you are a bit out of breath and Khloe seems to know why. It seems that she has enjoyed teasing you and as you say goodbye, you both agree to do it again. You idly wonder if the “it” refers to the workout or the teasing. Either way, you are excited to see her again.
</div>\
<<addarousal 20>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymssnpc >= 7 and $gymssnpc < 10>>\
<div align='center'>\
You sincerely appreciate the help from Khloe and try to follow her instructions but you can not take off your eyes from her yoga pants.
</div>\
<video @src="'content/gym/scenes/ss/' + random(1, 2) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is just soo sexy and you can not wait anymore. You walk up to her and pull down her pants.
</div>\
<video src="content/gym/scenes/ss/3.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Without a word you put your mouth around her lovely smooth thick cock.
</div>\
<video src="content/gym/scenes/ss/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Just after a minute with your mouth full with her balls she starts pouring out cum from her cock. You lick up all of it.
</div>\
<video src="content/gym/scenes/ss/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Taking a deep breath, a smile creeps over your face. You blow her a kiss and make your way over to the locker room for a shower.
</div>\
<<addarousal 50>>\
<<willingness>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $sgblowjobcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<button "Leave" "Map">><</button>>
\
\
\
<<elseif $gymssnpc >= 10>>\
<div align='center'>\
You sincerely appreciate the help from Khloe and try to follow her instructions but you can not take off your eyes from her yoga pants.
</div>\
<video @src="'content/gym/scenes/ss/' + random(1, 2) + '.mp4'" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is just soo sexy and you can not wait anymore. You walk up to her and pull down her pants.
</div>\
<video src="content/gym/scenes/ss/3.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Without a word you put your mouth around her lovely smooth thick cock.
</div>\
<video src="content/gym/scenes/ss/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Her cock is well lubricated and it is ready for your ass. You lay back and she is fucking you in different positions.
</div>\
<video src="content/gym/scenes/ss/6.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Before she cum she want you to fuck her as well.
</div>\
<video src="content/gym/scenes/ss/7.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
After a couple of position you can not hold back and you cum over her body.
</div>\
<video src="content/gym/scenes/ss/8.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She become very aroused from this and she cum. You lick all up.
</div>\
<video src="content/gym/scenes/ss/5.mp4" style="width: 100%;" autoplay loop></video>
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $pdollcum to true>>\
<<willingness>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<timed 900ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $analsize += 1>>\
<<set $sgblowjobcounter += 1>>\
<<set $sganalcounter += 1>>\
<<set $sranalcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<set $scumcounter += 1>>\
<<set $noorgasm = 0>>\
<<button "Leave" "Map">><<set $pdollcum to false>><</button>>
<</if>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<if $labside == 1>>\
<<speech "player" "$fname">>Hey Bonnie, I’m not crazy about your nickname for me. Can’t you just call me by my name?<</speech>>
<<speech "Bonnie">>Sure $fname mcdoody pants!<</speech>>
<<speech "player" "$fname">>Whatever! What did you want to see me about?<</speech>>
<<speech "Bonnie">>Well… your girlfriend Kimberlee came through. She dropped off a bracelet with access to the lower levels. I was able to pull the necessary authorization so I can transfer it to your bracelet. Do you feel like going for a lookie-loo?<</speech>>
<<speech "player" "$fname">>Please don’t call her that! She is NOT my girlfriend, alright?<</speech>>
<<speech "Bonnie">>I’m just teasing you chubby cheeks.<</speech>>
<<speech "player" "$fname">>Mrrrgggg... Just do it. Give me the access and I’ll go check out what’s down there when I can.<</speech>>
<<speech "Bonnie">>Hold out your bracelet over this pad until you hear the beep and then you should be good to go.<</speech>>
<<speech "player" "$fname">>And that’s it? I’m good to go? Did Kimberlee tell you anything else when she dropped it off?<</speech>>
<<speech "Bonnie">>Hmmm, oh yeah! She told me to tell you to take a long walk off a short pier. No, I think she is still pretty shaken up over being caught. She didn’t say much. Now that you are out from under her thumb, watch yourself around her. I don’t think she is done with you just yet.<</speech>>
<<speech "player" "$fname">>Yeah… thanks Bonnie. I’ll keep that in mind.<</speech>>
<<button "Leave" "Map">><<set $labside = 2>><</button>>
<</if>>\
<<if $questsecurityguy == 1>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<speech "player" "$fname">>Hi, Bonnie. I’ve finished my transformation into a shemale. I’m not sure if you can tell or not. I think I’m ready for the mission.<</speech>>
<<speech "Bonnie">>Hmmm, yes… Subtle but I think I can see some differences. Alright, it’s pretty simple really. We need you to clone a security guard’s bracelet. I’ve found an easy target for you. He is a regular at the night club. Once you find him there, get him good and drunk, and get him to take you home with him. After you have sex, just clone the bracelet and leave.<</speech>>
<<speech "player" "$fname">>You make it sound so simple when you say it like that. I’m not so sure I’m ready to have sex with a guy though. And now that I am a shemale, just how am I supposed to have sex with him? Don’t you think he’ll notice my bonus bits? And what am I supposed to use to clone the bracelet anyway?<</speech>>
<<speech "Bonnie">>Once you have watched enough of the hypno videos, your mind will be more willing to just go with it and let it happen. I’ll email you the details. As for the cloning device, I had to buy it. They aren’t cheap. If you can sneak me one of your energy serum vials, I will trade that for the device.<</speech>>
<<speech "player" "$fname">>Wait, how do you know about the energy serum?<</speech>>
<<speech "Bonnie">>Oh, I have my ways. This is my town and I take great interest in what happens here. Being good with computers doesn’t hurt either. Now go and come back with a vial of energy serum.<</speech>>
<<button "Leave" "Map">><<addMail 3>><<set $questsecurityguy = 2>><</button>>
\
\
\
\
\
<<elseif $questsecurityguy == 2>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<speech "player" "$fname">>Hey, I have your energy serum.<</speech>>
<<speech "Bonnie">>Perfect, that was quick. And here is the cloning device. <</speech>>
<img src="content/objects/cloning_device.png">
\
<<speech "Bonnie">>And… a small reward just for shits and giggles.<</speech>>
<div align='center'>\
She stands near you and lifts her shirt and bra like before but this time, she uses her hand behind your head to pull it down between her breasts. You feel them smacking your face on either side.
</div>\
<img src="content/peoples/bonnie/boob2.jpg" style="max-width: 100%;">
\
<<speech "Bonnie">>Don’t you love my breasts $fname?<</speech>>
<<speech "player" "$fname">>Mmmmmppppppphhhhhhh!<</speech>>
<div align='center'>\
She takes a step back and by the time you look back up at Bonnie, her breasts are safely tucked back in their bra and covered by her shirt.
</div>\
<<speech "Bonnie">>Alright then. Back to the business at hand. You know what to do. Once you get the copy done, come back and see me. Good luck!<</speech>>
<<speech "player" "$fname">>Thanks, Bonnie. I’ll do my best…<</speech>>
<<button "Leave" "Map">><<set $esv -= 1>><<set $questsecurityguy = 3>><<set $cloningdevice += 1>><</button>>
\
\
\
\
\
<<elseif $questsecurityguy == 3>>\
<img src="content/location/sgbedroom.jpg">
<div align='center'>\
Both of you walk to the bedroom. He turns around and slowly starts kissing you.
</div>\
<video src="content/events/quests/securityguy/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
The relentless pressure of his mouth on mine was intoxicating. I wanted more than anything at that moment for his cock to plunge into my ass. A hot flash of heat covered my body, his passionate kisses increased. He held me tight to his body, wrapping his arms around my back. He still had his boxers on, but I could feel his hard cock against my stomach. I couldn’t resist fondling his cock, I wanted to feel his hardness. Stroking him through the material a kissing his plump lips turned me on more. I enjoyed setting the pace of the luxurious open mouth kissing, my tongue licking in and out of his mouth.
</div>\
<video src="content/events/quests/securityguy/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
I couldn’t wait any longer and scooted down the bed and pulled off his one remaining piece of clothing and enjoyed the view of his massive cock.
</div>\
<video src="content/events/quests/securityguy/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
I bent down and took the tip of his penis in my mouth, licking and sucking just the end of him at first. Open-mouthed kisses, sucking gently any liquid that had escaped. I took him by surprise and took his whole length into my mouth in one go and was rewarded with his expletive statement whispered from his lips.
</div>\
<video src="content/events/quests/securityguy/3.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
I licked my way down to his hairless ball sack and took them into my mouth and sucked on those too. Grabbing hold of his thighs, my nose nudged the base of his cock until I pulled away and let his balls drop. I could have licked and sucked him until he came.
</div>\
<video src="content/events/quests/securityguy/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
He positioned me so I can hide my cock. My tight asshole made the thrusting of his cock feel amazing. I needed another of his passionate kisses and we were just getting started. I had to hold my hard cock because it was bouncing up and down. Luckily he was too drunk to notice anything.
</div>\
<video src="content/events/quests/securityguy/7.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
He pulls out as soon as the waves start and pumps his cock and comes in my mouth. I focused the muscles of my mouth and tongue intently on the head of his dick while tightening my grip around his balls. The intensity and amount of come was difficult to handle. Spurt after spurt of hot cum shot down my throat. I was able to gulp most of it down quickly, but some of it filled my cheeks. He completely collapsed, spent and drained.
</div>\
<img src="content/events/quests/securityguy/sleeping.jpg">
\
<div align='center'>\
Eventually, I sat back up on the bed with him. I let him doze off in my lap. I didn't want to wake him; so I quickly cloned his bracelet and left.
</div>\
<<set $questsecurityguy = 4>>\
<<if $gameDate.getHours() < "2">>\
<<addhours 2>>\
<<elseif $gameDate.getHours() >= "20">>
<<addhours 2>>\
<</if>>\
<<set $skisscounter += 1>>\
<<set $sgblowjobcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<set $analsize += 1>>\
<<set $sranalcounter += 1>>\
<<tongueskill>>\
<<timed 300ms>>\
<<handskill>>\
<</timed>>\
<<timed 600ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 900ms>>\
<<sexskill>>\
<</timed>>\
<<timed 1200ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 1500ms>>\
<<willingness>>\
<</timed>>\
<<addarousal 100>>\
<<takeenergy 20>>\
<<button "Leave" "Map">><</button>>
\
\
\
\
\
<<elseif $questsecurityguy == 4>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<speech "Bonnie">>Hey, nice to see you again $fname. How did it go…? Did you have fun?<</speech>>
<div align='center'>\
She wiggles her eyebrows at you giving you a peculiar look.
</div>\
<<speech "player" "$fname">>You know, it actually did. Perhaps I have to hand it to the hypno videos. I don’t think I could have done it without them. But… uh… yeah. It was… nice.<</speech>>
<div align='center'>\
You feel your face flushing as you think back to your time with the guard standing there in front of Bonnie.
</div>\
<<speech "Bonnie">>Hmmm. You go tiger… Alright, I’ll work on getting the copy done. I’ll send you an email once it’s ready.<</speech>>
<<speech "player" "$fname">>Perfect. Sounds good Bonnie. Talk to you then.<</speech>>
<<button "Leave" "Map">><<set $questsecurityguy = 5>><<set $questtracking = 1>><<set $cloningdevice -= 1>><<addMail 4>><</button>>
<</if>>\
<<if $questtracking == 1>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<speech "Bonnie">>Hey $fname. I’ve got the device all ready to go. A strong word of caution: the code that goes with it single-use. If it doesn’t work the first time, we are screwed. So, we only have one shot at this.<</speech>>
<<speech "player" "$fname">>Yikes, okay. Gotcha. We’ll have to make sure we are ready then won’t we.<</speech>>
<<speech "Bonnie">>Exactly. So once you get to the server room, plug the bracelet into the terminal and then deactivate the tracking function. Oh, and uh…<</speech>>
<<speech "player" "$fname">>Yeah, what is it?<</speech>>
<<speech "Bonnie">>Well, we need to get a Security Uniform. Nemesis doesn’t exactly sell them in at the mall or anything.<</speech>>
<<speech "player" "$fname">>I’m a Nemesis employee. I should be able to get one, right?<</speech>>
<<speech "Bonnie">>I doubt it. They are not exactly standard issue items that you can pick up at the company store either. I know one of the drivers for the dry cleaning company that launder’s the uniforms. He said that he can ‘accidentally’ lose one of the uniforms for a price.<</speech>>
<<speech "player" "$fname">>I’ve got some money. How much do we need?<</speech>>
<<speech "Bonnie">>You only have credits like me and everyone else in this bloody town. We need to get our hands on some actual cash. Five hundred to be exact. I’ve got an idea on how we can get the cash but I’m not sure how you are going to react to it.<</speech>>
<<speech "player" "$fname">>Just spit it out. Who’s cock do I have to suck?<</speech>>
<<speech "Bonnie">>Oh! You guessed it. I wasn’t expecting that.<</speech>>
<<speech "player" "$fname">>Wait, what? It’s just an expression. You mean I actually do have to suck someone off?<</speech>>
<<speech "Bonnie">>Well, not just one someone. If you go to the park, you’ll find the public toilet. There is a discreet glory hole there. You just sit down and wait.<</speech>>
<<speech "player" "$fname">>If you sit there, they will cum? It sounds like a porno version of ‘A Field of Dreams’ or something. I’m not sure I’m ready for this yet…<</speech>>
<<speech "Bonnie">>I thought that might be the case. Here, take this. It will help you practice.<</speech>>
<div align='center'>\
She gives you a small dildo.
</div>\
<img src="content/objects/dildo1.jpg">
\
<<speech "Bonnie">>Now, watch closely and I’ll show you how it is done.<</speech>>
<div align='center'>\
Bonnie opens her mouth and super long dildo slips in. Much like a magician pulling out an endless handkerchief from his pocket but in reverse, the dildo keeps going further and further in. You see her throat bulge as it she takes it deeper still.
</div>\
<video src="content/peoples/bonnie/dtdildo.mp4" style="width: 100%;" autoplay loop></video>
<<speech "player" "$fname">>Oh my fucking god, how are you doing that?<</speech>>
<div align='center'>\
She pulls it back out much faster than it went in.
</div>\
<<speech "Bonnie">>“It isn’t so hard. You just need a little practice. Here you go. Take it home and give it a go. I’m sure you will be able to manage it before long. I’ll email you the rest of the details. Once you have earned $500, come back to see me and I’ll procure the uniform for you.<</speech>>
<div align='center'>\
As you leave, in your mind’s eye, you still see Bonnie’s throat bloating out as the dildo slides down it. You wonder to yourself if it really is just a matter of practice to be able to swallow the dildo and if you would ever be able to do that with a real cock.
</div>\
<<button "Leave" "Map">><<set $questtracking = 2>><<set $dildo1 = 1>><<set $cloningdevice += 1>><<addMail 5>><</button>>
\
\
\
\
\
<<elseif $questtracking == 2>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
<<set $money -= 500>>\
\
<<speech "Bonnie">>Hey, your back. How did it go? You loved it, didn’t you? It’s alright, you don’t have to say anything. I can see it on your face. Alright, we just need to transform you back into your male body for the mission.<</speech>>
<<speech "player" "$fname">>Oh shit, I can’t do that. I need to stay a shemale for Mariana. I don’t want to get busted.<</speech>>
<<speech "Bonnie">>Hey, relax. I’ve got this. You’ll come to my house for the transformation. Once you’ve changed your body, you can put the uniform on and go to the security office with the device. Pop your bracelet into the terminal, delete the tracker function. Pop back to my place, switch back to being a shemale. Bing, bang, boom. Easy peasy lemon squeezy. Like nothing ever happened. I’ll work on getting the uniform now. Let me know once you have the serums.<</speech>>
<<speech "player" "$fname">>Got it. See you then.<</speech>>
<<button "Leave" "Map">><<set $questtracking = 3>><</button>>
\
\
\
\
\
<<elseif $questtracking == 3>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
<<set $sbsv -= 1>>\
<<set $mbsv -= 1>>\
\
<<speech "player" "$fname">>Hi, Bonnie. I’ve got the serums. Did you get the uniform?<</speech>>
<<speech "Bonnie">>Yup. We are good to go. The shift change at the lab happens at 21:00. Let’s meet at my house on Saturday around 20:00. There should be fewer people around then.<</speech>>
<<speech "player" "$fname">>Sounds great. I’ll see you Saturday.<</speech>>
<<button "Leave" "Map">><<set $questtracking = 4>><</button>>
\
\
\
\
\
<<elseif $questtracking == 4>>\
<img src="content/location/bonnie_guest_room.jpg">
\
<<speech "Bonnie">>Hey, come on it. We’ll head back to the spare room for your change like before. We need to be quick so we don’t miss the shift change.<</speech>>
<div align='center'>\
Back in the spare room, you sit on the bed and inject yourself with the male serum. You lay down quickly before you pass out.
When you come to, you look at your watch and see that around 40 minutes have passed but you look down at your body and smile to see the familiar features of your body have all returned.
</div>\
<<button "Get changed" "Quest tracking 1">><<addmins 40>><<set $questtracking = 5>><</button>>
\
\
\
\
\
<<elseif $questtracking == 5>>\
<<speech "Bonnie">>It’s about time $fname. That took longer than I expected. We need to hurry. Here’s the uniform and device. Now get a move on.<</speech>>
<div align='center'>\
You quickly change into the uniform which is just a little too big for you but you sitch up the belt tight and tuck everything in. It should pass a casual inspection you think. You pocket the device and head out.
</div>\
<<button "Leave" "Quest tracking 1">><<set $questtracking = 6>><</button>>
\
\
\
\
\
<<elseif $questtracking == 6>>\
<img src="content/location/lab_reception.jpg" style="max-width: 70%;">
\
<div align='center'>\
You walk into the lab trying your best to look nonchalant. As you pass the reception desk, you see Kimberlee there which causes you to falter slightly as you walk. You really hope she doesn’t recognize you in the uniform with your male body. You intentionally avoid eye contact and just nod your head as you pass her desk.
</div>\
<<button "Keep going" "Quest tracking 1">><<set $questtracking = 7>><</button>>
\
\
\
\
\
<<elseif $questtracking == 7>>\
<img src="content/location/lab_security.jpg" style="max-width: 70%;">
\
<div align='center'>\
You arrive at the security area and greet the guy behind the desk. He just points to the scanner waiting for you to tap your bracelet. You palm the device as you quickly reach out your hand and swipe it past the sensor. The scanner lets out a loud alert denying you access. You feel your heart jump up into your throat and you reflexively look up to the guard who is giving you a suspicious glare. You quickly try once more trying to hold your arm steady near the sensor. Your palms are sweating profusely as you wait in silence for what seems like an eternity waiting for the response from your scan. You glance up wondering if the guard can hear your heart trying to beat out of your chest. Finally, the light turns green and a pleasant sound is emitted from the scanner. You realize that you have been holding your breath and you let it out slowly now and walk through the open door.
</div>\
<<button "Walk in the server room" "Quest tracking 1">><<addhours 1>><<set $questtracking = 8>><</button>>
\
\
\
\
\
<<elseif $questtracking == 8>>\
<img src="content/location/lab_server.jpg" style="max-width: 70%;">
\
<div align='center'>\
You enter the server room and look around seeing several racks of computers with wires neatly routed between them. You don’t see anyone in the room that you are ever so grateful for. You step over to a terminal and see a receptacle for your bracelet. You take it off your wrist and plug it in and sit down at the terminal. You navigate through a couple of menus and find the tracking options and toggle it off. Well, that seemed easier than you had expected. You quickly put the bracelet back on and walk out of the server room.
</div>\
<<button "Walk out" "Quest tracking 1">><<set $questtracking = 9>><</button>>
\
\
\
\
\
<<elseif $questtracking == 9>>\
<img src="content/location/lab_reception.jpg" style="max-width: 70%;">
\
<div align='center'>\
On your way out, you walk past Kibmerlee’s desk again and hear her call out. You look over to her and she is looking back at you with a curious look on her face.
</div>\
<<speech "Kimberlee">>Ah, $fname, it is you. You naughty boy. What are you doing here so late dressed like that?<</speech>>
<div align='center'>\
As you look at her, your blood goes cold and the lights in the room seem to dim as your pupils dilate in panic.
</div>\
<<speech "Kimberlee">>Hmmm, it looks like the cat’s got your tongue. Caught with your hand in the cookie jar it seems.<</speech>>
<div align='center'>\
You stammer trying to say something coherent but she just puts up her hand to stop you.
</div>\
<<speech "Kimberlee">>I honestly don’t care. I could get you in a lot of trouble right now. If I was to keep my mouth shut though, you would owe me big time. What my silence worth to you $fname?<</speech>>
<<speech "player" "$fname">>Oh Kimberlee, please don’t report me. I would literally do anything. What do you want? Just tell me…<</speech>>
<<speech "Kimberlee">>Hmm, yes, I think that you really would. I could ask for money or some fancy jewelry. Or I could make you my slave keeping my house clean for the foreseeable future. What do you think about those ideas? Yeah, well, that isn’t what I truly want though. Do you know what it is like sitting here day in and day out seeing people walking in and walking back out again and I hardly get a hello. I’m lonely as hell! I’ve been noticing you lately. I’ve been noticing the cute way you’ve been dressing at work. I love the way your hips make your dress swish as you walk. All I really want is to go on a nice date with a pretty girl and treated like a princess. That doesn’t sound so bad, right? Unless you would rather be my house slave. No? Then I want you to take me out on a nice date and take me someplace fancy and show me a good time. If you can make me feel special, I’ll forget all about seeing you here tonight and everyone wins. Do we have a deal?<</speech>>
<div align='center'>\
You stare at her blankly for a few seconds still processing what she just told you. She catches you dead to rights and all she wants in return is a date? She could blackmail you for every cent you make the rest of your life or have you arrested or worse and instead all you have to do is go on a date with a pretty girl? It almost seems too good to be true but what choice do you have?
</div>\
<<speech "player" "$fname">>Sure, Kimberlee. I’d love to take you out on a date. I actually think you are pretty attractive. I could think of a lot worse things than being seen out and about in public with you.<</speech>>
<<speech "Kimberlee">>Sure beats going to jail, eh? Okay loverboy, I’ll send you an email with the details. I want you on your best behavior for the date too. Or my memory might suddenly flashback to tonight and let security know that I saw something suspicious that they should look in to.<</speech>>
<<speech "player" "$fname">>No need to worry. I’m a true gentleman. Er, gentlewoman. Um, you know what I mean. I’ll look forward to your email with the details.<</speech>>
<div align='center'>\
She laughs at you softly and smiles as she waves to you as you leave.
</div>\
<<button "Go back to Bonnie" "Quest tracking 1">><<set $questtracking = 10>><</button>>
\
\
\
\
\
<<elseif $questtracking == 10>>\
<img src="content/location/bonnie_guest_room.jpg">
\
<<speech "Bonnie">>What took you so fucking long? I thought you had been nabbed for sure!<</speech>>
<<speech "player" "$fname">>I might be screwed. I’m not sure.<</speech>>
<<speech "Bonnie">>How so? What happened?<</speech>>
<<speech "player" "$fname">>So, I got in just fine and was able to disable the tracking. And then on my way out, the receptionist recognized me.<</speech>>
<<speech "Bonnie">>Oh shit! What happened?<</speech>>
<<speech "player" "$fname">>Well, she didn’t turn me in. She threatened to but decided to extort me instead.<</speech>>
<<speech "Bonnie">>No way! What does she want?<</speech>>
<<speech "player" "$fname">>Well, that is the weird thing. She just wants me to take her out on a date as a shemale. I guess she has been noticing me at work and just wanted to get closer?<</speech>>
<<speech "Bonnie">>Huh… I’m not so sure. What are you going to do?<</speech>>
<<speech "player" "$fname">>Well, I guess I have to. I don’t see that I have a choice. She has me over a barrel.<</speech>>
<<speech "Bonnie">>You better be careful $fname. I don’t think that is going to be the end of it. Seems a bit suspicious to me. Go on the date then. Fuck her for all I care. Just be on your guard not to let anything slip about what we are doing. I’ve got way too much invested in this for you to fuck it up over some girl.<</speech>>
<<speech "player" "$fname">>I know Bonnie but I really don’t have a choice here. I’ll be careful. I’ll show her a good time and that will be that and we can all move on with our lives.<</speech>>
<<speech "Bonnie">>We’ll see. Anyway, you better take the shemale serum and then get your ass back home. Leave the uniform in the room when you go so I can dispose of it.<</speech>>
<div align='center'>\
You head back to the room to make the change. You dress back up in the clothes you came in and leave the uniform folded on the bed for Bonnie.
</div>\
<<button "Head home" "House Front">><<set $questtracking = 11>><<set $kimquest = 0>><<set $kimemail1 to false>><</button>>
<</if>>\
<<if $pgender is "male" or $pgender is "female">>
<<speech "Kimberlee">>I told you I only date with shemales. If you don't want a trouble then come back with a shemale body.<</speech>>
<<button "Leave" "Map">><</button>>
<<else>>\
<<if $kimquest == 1>>
<div align='center'>\
As you walk in you notice Kimberlee right away. She seems to have a somewhat perturbed look on her face and furrows her brow as she notices you when you approach her.
</div>\
<img src="content/peoples/kimberlee/1.jpg">
\
<<speech "Kimberlee">>Girls don’t appreciate being left waiting. I thought you would have been here earlier.<</speech>>
<<speech "player" "$fname">>I’m terribly sorry Kimberlee. I’ll make it up to you. Shall we go?<</speech>>
<div align='center'>\
Kimberlee looks you up and down and jumps up energetically wrapping her arm around yours as she leads you to the restaurant.
</div>\
<<button "Follow her" "Kimberlee quest">><<set $kimquest += 1>><</button>>
\
\
\
\
\
<<elseif $kimquest == 2>>
<div align='center'>\
As you approach, you can quickly tell that this is going to be an expensive date. The restaurant looks very posh! A well-dressed waiter shows you to your table and pulls your seats out to help get settled in. He takes your drink orders and leaves you to enjoy the ambiance.
</div>\
<img src="content/peoples/kimberlee/2.jpg">
\
<<speech "Kimberlee">>This place is really nice, right? Thank you for keeping your word and for taking me on this date. I promise to make it a night you will never forget!<</speech>>
<div align='center'>\
You purse your lips as you consider her words feeling a little excited and more than just a little bit nervous as to her full intent. You both review the menus and engage in idle chatter as you discuss the different items being considered for your meal. Once the waiter brings your drinks and takes your orders, Kimberlee begins to open up to you.
</div>\
<<speech "Kimberlee">>It has been a long time since I’ve been out with anyone. Not from lack of trying mind you. Can I tell you how hard it is to be so visible and interacting with everyone from the lab and not getting any REAL attention? People come in and say ‘hi’ and sometimes stop to chat for a little bit. I try to be friendly and even flirt. But does anyone take me seriously? It drives me a bit batty sometimes. I’m so lonely! Is there something wrong with me? I think there must be… There is something broken down in the fibers of my soul. I just want someone to love that will treat me right. I think I’m pretty enough. Don’t you think I’m pretty?<</speech>>
<div align='center'>\
You just sit there quietly nodding as you listen to her ramble on seeing red flags flying left and right in my mind as she rants on how hard her life is. Thankfully, the entrees come and the conversation gravitates back to less volatile topics. The entrée dishes are eventually cleared and the waiter stops by your table once more to ask if you would like any of their dessert options.
</div>\
<<speech "Kimberlee">>I’d like a nice big serving of cream… Ice cream I mean.<</speech>>
<div align='center'>\
The waiter turns to you to ask but Kimberlee interjects before he has the chance to get a word out.
</div>\
<<speech "Kimberlee">>Oh, nothing for her. I have a special dessert in mind for her.<</speech>>
<div align='center'>\
Your eyebrows raising up your forehead, you turn to her with a surprised and confused look.
</div>\
<<speech "player" "$fname">>What are you talking about?<</speech>>
<div align='center'>\
Giving you a sly mischievous smile, she just holds a finger up to her full pink lips leaving you completely bewildered. In a short time, the ice cream arrives at your table with two spoons. Kimberlee takes one spoon and sets it aside and takes the other spoon helping herself to a small helping of the creamy white vanilla ice cream.
</div>\
<<speech "Kimberlee">>Alright honey, your dessert is ready. It’s under the table…<</speech>>
<div align='center'>\
She wiggles her eyebrows at you and looks down into her lap meaningfully. You give her a confused look but she just continues to stare at you with that peculiar smile of hers. You finally pull the tablecloth up a bit so you can peek under. You see nothing on the floor but her dainty feet in her sexy heels. You follow the line of her curvy calves up to her thighs where you finally spy her meaning. There between her legs, you see her rock hard cock lifting her skirt and pointed straight at you. You hear Kimberlee laugh softly as she sees the look of understanding wash over your face.
</div>\
<<speech "Kimberlee">>Well, what are you waiting for lover? Your dessert is waiting for you. You may have to work a bit to get it but I’m sure you will thoroughly enjoy it. Be sure not to waste any.<</speech>>
<<speech "player" "$fname">>Kimberlee, there are too many people there! I don’t think I can do this…<</speech>>
<<speech "Kimberlee">>We had a deal $fname. You said that you would do anything. ANYTHING… So, under the table you go. Come on, scoot! Or I will tell everyone what I saw the other night. I’m pretty sure you will enjoy the results of that less than if you are discovered here under the table with me tonight. Now be a good little girl and get down on your knees. We can both enjoy some creamy dessert tonight.<</speech>>
<div align='center'>\
Taking only a moment to consider, you see that you don’t really have much choice. You look around cautiously to make sure no one is looking in your direction before slowly slipping down your seat under the tablecloth. You crawl between Kimberlee’s legs and she opens them wide to accept you in closer. Your hand reaches out to take her modest-sized dick in your hands as you lean in to envelop the tip of it with your lips. You hear the sound of Kimberlee’s spoon clang against the glass bowl apparently taking another bite of ice cream. You use one hand to hold the base of her cock as your lips slip slowly down over her length.
</div>\
<<speech "Kimberlee">>Mmm, yes, that’s good. Now that’s what I’m talking about. Keep that up. You will want to finish me off before I’m done with my ice cream or suffer the consequences.<</speech>>
<div align='center'>\
Not wanting to find out what she means, you put all your focus on making her cum quickly. Your hand begins to stroke upwards as your lips come down meeting in the middle. Your other hand reaches up to massage her balls noticing in the back of your mind that they seem pretty full. You must be doing well as she opens her legs wider inviting you in closer. You hold on to her thigh as you move to take her down all the way into the back of your throat. You hear the sound of Kimberlee setting her spoon down on the table. You fear that she might have taken the last bite of ice cream but then hear her softly moaning realizing that she is very close. That is all the warning you get as you feel her hot spunk shooting out to spray the back of your throat. It is a copious load and you swallow quickly trying to make sure to not spill a drop as she advised. You hear her breathing deeply above you and a moment later, you hear the sound of her spoon taking another bite of ice cream.
</div>\
<video src="content/peoples/kimberlee/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
I make sure to like her cock clean and give your lips one final lick to be sure that they are free of incriminating evidence as well before slipping stealthily up the chair again.
</div>\
<<speech "Kimberlee">>That wasn’t so terrible now was it? I thought you did very well. Now grab the check and let's get out of here.<</speech>>
<<speech "player" "$fname">>What else do you have in mind for tonight?<</speech>>
<<speech "Kimberlee">>Oh don’t worry your pretty little head about it. We’re done for today. I’ll send you an email when I’m ready for our next date.<</speech>>
<<speech "player" "$fname">>Wait, our deal was only for one date! I didn’t sign up for this…<</speech>>
<<speech "Kimberlee">>Well, I’m changing the deal. If you don’t like it, that’s your problem. You did way too well for me to let you go just yet. I can’t wait for our next date. Thank you for dinner love. I’ll see you again soon!<</speech>>
<div align='center'>\
She gives you a soft kiss on your lips and turns to walk away without a backward glance. Damn it! You are in bigger trouble than you thought.
</div>\
<<addarousal 100>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<set $sgblowjobcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<set $kimberleerepo += 1>>\
<<button "Leave" "Map">><<addhours 3>><<set $kimquest = 3>><<set $kimemail2 to false>><<set $credit -= 100>><</button>>
\
\
\
\
\
\
<<elseif $kimquest == 4>>\
<div align='center'>\
Arriving at the mall, you nervously go to the spot mentioned in Kimberlee’s email and find her staring at her phone on a bench. As you approach, she looks up at you with a smile.
</div>\
<<speech "Kimberlee">>Oh good, you are finally here! You know $fname, if you are not early, you are late. I don’t like being the first one here. It makes me think that perhaps you aren’t looking forward to spending more time with me. But I know that can’t be the case, right?<</speech>>
<<speech "player" "$fname">>No, of course not Kimberlee. So sorry I wasn’t here earlier.<</speech>>
<<speech "Kimberlee">>Oh, I know you are dear. I’ll let you make it up to me later.<</speech>>
<div align='center'>\
Why does that sound so ominous? She stands and wrapping her arm in yours drags you over to the women’s clothing store.
</div>\
<<speech "Kimberlee">>I thought we could start off the date by doing some clothes shopping! Because… shopping! Let’s find something pretty to wear for the next stop on our date!<</speech>>
<div align='center'>\
She pulls you this way and that as she picks up different outfits commenting how this brings out the color of your eyes or that will make my butt stand out or this will show off your breasts, etcetera. Finally, with your arms full of clothes, you head to the back of the store and enter the changing rooms.
<video src="content/peoples/kimberlee/2.mp4" autoplay loop></video>
</div>\
<<speech "player" "$fname">>Don’t go getting any ideas in here now $fname. Keep your hands to yourself for now. There will be plenty of time for getting frisky later.<</speech>>
<div align='center'>\
Looking at her in surprise, you nod your head. The thought had never even crossed your mind. She tries on several of the clothes on first and asking for your feedback finally settles on an outfit for herself. She then hands you the clothes she wants you to try on. Coming out of the changing room, she admires the fit of the different clothes and despite her warning about touching earlier, she seems to be pretty liberal with her touches. You can’t help but get turned on a bit. Finally, she settles on an outfit for you as well.
<video src="content/peoples/kimberlee/3.mp4" autoplay loop></video>
</div>\
<<speech "Kimberlee">>Okay, why don’t you go check out and pay for our clothes and I’ll meet you outside.<</speech>>
<div align='center'>\
Of course. You should have known she would be sticking you with the bill for the shopping trip. You finish checking out and carrying your original clothes in the shopping bag, you walk out of the store in your new clothes.
</div>\
<<button "Continue" "Kimberlee quest">><<set $kimquest += 1>><<set $credit = ($credit - 300).clamp(0, 100000000)>><</button>>
\
\
\
\
\
\
<<elseif $kimquest == 5>>\
<<speech "Kimberlee">>Oh, that was so fun! You look fabulous dear. Someone told me once that a lady should always be two things, classy and fabulous. Now we both look like proper ladies. It’s such a lovely evening. Let’s scrap my original plan and buy some food and have a picnic at the park. Doesn’t that sound lovely?<</speech>>
<div align='center'>\
You have to admit that it does sound fun, even if it is with Kimberlee. Perhaps in public, she will behave herself and you can enjoy being out in nature. You walk together to the park chatting as you go. She is being remarkably pleasant today. You find yourself starting to like her more. You stop by a café outside the park and pick up some sandwiches to go and walk into the park. You find a pleasant spot in some grass near some trees giving you shade with a nice view over a pond in the distance.
<video src="content/peoples/kimberlee/4.mp4" autoplay loop></video>
The two of you sit together and continue to make small talk learning about each other while eating your sandwiches. The sound of the wind blowing through the leaves and the gentle voices of children running in the distance as well as the sun glistening off the water of the pond, it is all very bucolic. Once you are done eating, the two of you sigh together enjoying the view. Kimberlee pats her lap inviting you to rest your head. You lay down and she begins to run her fingers through your hair which feels amazing.
<video src="content/peoples/kimberlee/5.mp4" autoplay loop></video>
</div>\
<<speech "player" "$fname">>I’m really having a great time Kimberlee. This is so lovely. I’m so glad you suggested it.<</speech>>
<<speech "Kimberlee">>I’m glad dear. I’m having fun too. It is so nice to spend time with someone outside of work. And of course, having someone as pretty as you for company is the cherry on top.<</speech>>
<div align='center'>\
As your head lays there in her lap, you begin to feel something pressing against the side of your head. Is she getting turned on? Her other hand slides down your side caressing your body as her other hand continues to play with your hair. The pressure against your cheek continues to grow. Kimberlee takes hold of the hem of her skirt and tugs it up slips top of her panties down allowing her turgid cock to spring free. You begin to object and move to sit up when she holds your head back down again.
</div>\
<<speech "Kimberlee">>Shhhhh, just be quiet. It’s alright. No one is close enough to see. Your hot little body was too much for me to stand. I can’t help it that you turn me on. You are going to have to help me out.<</speech>>
<div align='center'>\
She reached down and guides her cock bringing it closer to your lips and you reluctantly part them giving her cock a little kiss. She is not going to let it stop there though. She pushes it more insistently to your mouth and you finally open wide enough to let it slip in. Once inside, Kimberlee begins to press her hand against the top of your head forcing more of it in.
</div>\
<video src="content/peoples/kimberlee/6.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>Hush now, just go with it. I’m so horny, I don’t think I’ll last long. Just let it happen.<</speech>>
<div align='center'>\
You stop resisting and try to work her cock faster so you can get away from this embarrassing situation? What is it about Kimberlee and public fellatio? You hear a couple talking close by and realize that someone must be walking down the path near your picnic spot. Will they see you? Kimberlee holds your head down and tosses the hem of her skirt over you. As if that would make it look any more decent… A woman sitting with the legs crossed with another woman’s head under her skirt. What would they think if they saw you like that? Mercifully, the voices continue on past you, and Kimberlee raises her skirt once more and bouncing her hips, encourages you on again. You use all your practiced skills to work her dick trying to speed to the climax.
</div>\
<video src="content/peoples/kimberlee/7.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>Good god you are a talented cock sucker. Don’t drain all of me. I have plans for you later tonight!<</speech>>
<div align='center'>\
Your eyes pop open at the revelation but you continue your ministrations on her cock. Thankfully, she doesn’t last much longer as you feel her hips begin to lift with your strokes. She gives out a couple of soft whimpers as she erupts into your mouth filling it with your shemale cum. You sputter as it comes flying out and use your hand to wipe your mouth looking around self consciously as you come up for air.
</div>\
<video src="content/peoples/kimberlee/8.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>That was so nice. Nothing like a late evening blowjob in the park, eh?<</speech>>
<div align='center'>\
She giggles as she stands up taking your hand to pull you up as well. The two of you pack up your lunch and you begin walking out of the park. You notice Kimberlee lagging behind and as you turn around, you see her skirt wagging in front of her. Apparently, her concern for you draining her too much was unwarranted as her cock is wagging under her skirt as she walks. You look up at her face and notice that she is staring at your ass. She catches you looking and smiles at you as she catches up to you taking your hand in hers and swing both your arms as you walk feeling very joyful.
</div>\
<<speech "Kimberlee">>Follow me, we’re going back to my place. We obviously are not done yet taking care of my needs today.<</speech>>
<<addarousal 100>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<set $sgblowjobcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<set $kimberleerepo += 1>>\
<<button "Continue" "Kimberlee quest">><<addhours 2>><<set $kimquest += 1>><</button>>
\
\
\
\
\
\
<<elseif $kimquest == 5>>\
<div align='center'>\
She takes you back to her house. You don’t have my chance to look around as she takes you directly back to her bedroom and pulls you up onto the mattress. As the two of you kneel on the bed together, she leans forward and gives you a gentle kiss on your lips.
</div>\
<video src="content/peoples/kimberlee/9.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>I enjoyed spending time out with you today. You are a very nice person. And it doesn’t hurt that your body is so sexy.<</speech>>
<div align='center'>\
She presses her hands against your breasts getting a good feel as she gives you another kiss. Reaching up, she pulls the straps of your top down exposing your round breasts. Running her fingers along their curves, Kimberlee leans in to shower soft kisses across them pay close attention to your nipples which harden under her touch.
</div>\
<video src="content/peoples/kimberlee/10.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>You seemed to enjoy that. Look how hard your nipples got. Why don’t you do the same to me? I want to feel your lips on my boobs.<</speech>>
<div align='center'>\
She pulls her top down and gently encourages you to kiss them. You do your best to imitate her kisses on her breast and she coos in response.
</div>\
<video src="content/peoples/kimberlee/11.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>You have an amazing body $fname. Take the rest of your clothes off. I want to see more of you.<</speech>>
<div align='center'>\
You push your dress the rest of the way off as Kimberlee peels off her clothes as well.
</div>\
<<tongueskill>>\
<<button "Continue" "Kimberlee quest">><<set $kimquest += 1>><<addhours 1>><</button>>
\
\
\
\
\
\
<<elseif $kimquest == 6>>\
<<speech "Kimberlee">>You have a lovely dick as well. Do you like mine? Tell me how beautiful I am. Tell me that I’m sexy.<</speech>>
<div align='center'>\
Reaching over between your legs, she fondles your still soft cock. It begins to spring to life at her touch. You stall your response to her request by reaching over to play with her cock as well. The two of you lay there together on her bed getting handsy together. Disappointed yet still determined, she leans over and kisses you more.
</div>\
<video src="content/peoples/kimberlee/12.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>I know you don’t love me yet. It’s okay, I’m patient enough to keep you coming back until you do. You’ll come around eventually. Until then, suck my dick again.<</speech>>
<div align='center'>\
Spreading her legs wide, she invites you in and you obediently take her into your mouth and feel her continue to grow as you suck her. Once she is fully hard, she gently pushes you back.
</div>\
<video src="content/peoples/kimberlee/13.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>I’m not a heartless bitch like everyone seems to think. I care about you $fname. I want you to feel good too. Get up for me and I’ll suck your dick for you too.<</speech>>
<div align='center'>\
As you rise, she bends down and sucks your cock into her mouth. It feels so warm and her tongue feels amazing as it slithers all over your cock. Her head bobs up and down taking you in deeper. She spreads her legs and reaches between to stroke her hard cock as she blows you.
</div>\
<video src="content/peoples/kimberlee/14.mp4" style="width: 100%;" autoplay loop></video>
<<handskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<button "Continue" "Kimberlee quest">><<set $kimquest += 1>><</button>>
\
\
\
\
\
\
<<elseif $kimquest == 7>>\
<<speech "Kimberlee">>I’m ready for you now. I want to feel your ass. Bend over and let me fuck you. I’ll make you feel so good.<</speech>>
<div align='center'>\
She bends you over and positions you just at the right for her as she rubs herself up and down your ass crack teasing you first. Despite her earlier words, she doesn’t seem very patient as she quickly moves her cock in line with your ass and thrusts. In just a couple of strokes, she manages to work herself in to the hilt and begins to bank away at your ass. There is no denying that she feels good but she doesn’t seem to be paying your needs much attention as she seems completely absorbed with taking her own pleasure from your ass.
</div>\
<video src="content/peoples/kimberlee/15.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>Your ass is so good. I could fuck you all night! I want to see your tits jiggle as I fuck you. Rollover for me so I can watch them, dear.<</speech>>
<div align='center'>\
Doing as you're told, you spread your legs wide and she lifts them to drive back inside. She has a wonderful cock, no doubt about it. Despite your frustration over the predicament with your relationship with her, you can’t deny that she is making you feel good. You reach down and stroke yourself as you begin to feel the slow build of your orgasm.
</div>\
<video src="content/peoples/kimberlee/16.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>I love how hot you look with my cock sliding in and out of your ass and your titties bouncing up and down as you stroke yourself for me. I’m not going to last much longer but I don’t want to waste my load in your ass. Be a dear and suck me off again. I know you love how I taste even if you won’t say so.<</speech>>
<div align='center'>\
Feeling frustrated at being denied your orgasm, you don’t have any choice but to do as you are told. In for a penny and in for a pound. You just have to see this through to the end whatever that might be. She strokes herself and you open your mouth to accept her seed. She pushes it inside and you dutifully suck her clean.
</div>\
<video src="content/peoples/kimberlee/17.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>So sexy my cum glazed donut. Give me a cummy kiss. Oh, you are delightfully sexy.<</speech>>
<video src="content/peoples/kimberlee/18.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>I want to get you off too but as you won’t return my love, I’m going to wait to get you off until you do. I don’t think I’ll have to wait too long. I think you are almost mine, aren’t you? No no, you don’t need to say anything. I’m feeling really good. You can see yourself out. I’ll email you again when I’m ready for our next day. Night night love! Until next time.<</speech>>
<div align='center'>\
She blows you a kiss and then rests her head back down on the pillow. Picking up your clothes, you change in the dark living room and head out the door. Damn, what a sticky situation! You still have no idea how you are going to get yourself out of this one.
</div>\
<<sexskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<set $sgblowjobcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<set $kimberleerepo += 1>>\
<<set $srblowjobcounter += 1>>\
<<set $sranalcounter += 1>>\
<<set $analsize += 1>>\
<<button "Leave" "Map">><<addhours 4>><<set $kimquest += 1>><</button>>
<</if>>\
<</if>>\
<<if $kimquest == 8>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<div align='center'>\
You walk into the PC shop to see Bonnie receive you with a sour expression on her face.
</div>\
<<speech "Bonnie">>Well look who the cat dragged in. Are you still sucking that bitches cock? I thought you were serious about locating your parents. Instead, I hear you are going out on dates with Kimberlee. What the fuck?<</speech>>
<<speech "player" "$fname">>Hey, ease off! I don’t have any choice, dammit. She has me dead to rights. However… I might just have a way out. When I was at her house, I noticed that she has a lot of really expensive stuff. And her house is way nicer than it should be. So unless she came from a wealthy family, I think she could be up to some shady business. If so, we can just find out what and use it as leverage to reach a stalemate.<</speech>>
<<speech "Bonnie">>Hmmm, very interesting. We can take a look at her money and see where it is coming from. Oh, this could be good. Wait right here, let me see what I can find. I’ll be back in a bit.<</speech>>
<div align='center'>\
You browse around the store while Bonnie walks into the back office. It takes longer than you expect but finally Bonnie comes back after about 30 minutes.
</div>\
<<speech "Bonnie">>Well bad news I’m afraid. I’m not seeing anything unusual. I see her paychecks from work and they look to be pretty typical for a receptionist. She doesn’t have a huge savings balance and I’m not seeing payments out of the normal.<</speech>>
<div align='center'>\
You run your hands through your hair letting out a long breath in disappointment.
</div>\
<<speech "Bonnie">>However… I’m not seeing that she has much debt either. If she had a lot of high-end shit, then she should be in debt up to her eyeballs. She’s hiding something. I’m certain of it. She is just smart enough to keep it hidden. She must be doing everything using cash only. That makes things a bit trickier. We’ll have to spy on her and see if we can figure it out. Okay, here is what we should do, we need to track her movements so we need to plant a bug on her. It might take a while so it will need to be something very discrete and can stay with her for several days. I know of a bug that can do that but it is expensive. We will need around a thousand to buy it. It’s super tiny about the size of a grain of rice. If we can slip it into a drink, it will stay inside her and transmit her location back until its battery dies after a few days. It won’t but underground or if she is around too much metal but it is our best option.<</speech>>
<<speech "player" "$fname">>Where are we going to get a thousand to pay for it? I don’t have that much money.<</speech>>
<<speech "Bonnie">>Do you think you can steal some of the serum from work? If you can sneak it out, I know a guy that will buy it from you for 50 each. I can have him meet you somewhere. I’ll tell him to meet you behind the bathroom in the park after 10 pm each night. Just tell him I sent you and he’ll know it’s you. Or… you could always just go suck a ton of cock at your glory hole.<</speech>>
<div align='center'>\
You give an embarrassed laugh and nod in understanding.
</div>\
<<speech "player" "$fname">>Alright, I’ll be back once I have the money.<</speech>>
<<button "Leave" "Map">><<set $kimquest = 9>><<addmins 30>><<set $shadyguyfirst to false>><</button>>
\
\
\
\
\
<<elseif $kimquest == 9>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<div align='center'>\
You walk into the PC shop with a big smile on your face.
</div>\
<<speech "Bonnie">>Do you have the money or are you just happy to see me?<</speech>>
<<speech "player" "$fname">>Yeah, I’ve got the money. Oh, but I’m happy to see you too.<</speech>>
<<speech "Bonnie">>Well, I’m glad to hear it. I’m happy to see you too. I already bought the bug. Here you go. Be careful when you use it. The battery will only last around 48 hours so you need to be sure to use it when she is most likely going to do whatever it is she does. I’d suggest doing it on Friday so it will track her over the weekend. Are you going to take her on another fucking date to slip it to her?<</speech>>
<<speech "player" "$fname">>I guess I could. Or I could just try to slip it into her coffee at work. I’ll just go into the canteen and grab a coffee for her and slip the bug in before I give it to her at her desk.<</speech>>
<<speech "Bonnie">>I hope this works. Once you are out from under her heel, I have a surprise for you.<</speech>>
<<speech "player" "$fname">>Oh! What is it?<</speech>>
<<speech "Bonnie">>Not now, you’ll have to wait. Go get her $fname. We don’t need Kimberlee hanging over our heads if we are going to find your parents.<</speech>>
<<button "Leave" "Map">><<set $kimquest = 10>><<set $money -= 1000>><</button>>
\
\
\
\
\
<<elseif $kimquest == 10>>\
<img src="content/location/lab_reception.jpg" style="max-width: 70%;">
\
<div align='center'>\
You walk into the canteen and pick up a coffee how you think Kimberlee would like it. As you walk to her desk, you drop the bug into the drink with a quiet blip as it plops into the milky brown liquid.
</div>\
<<speech "player" "$fname">>Hi Kimberlee. I was just thinking of you and wanted to stop by to say ‘hi’. I brought you some coffee. I wasn’t sure how you liked it but I guessed that you take it with sugar and cream.<</speech>>
<<speech "Kimberlee">>Oh! Wow… that was so thoughtful of you $fname! Yeah, that is so sweet of you. We need to be careful here at work as they have a lot of security here in the foyer. I’ve been thinking about you a lot. I’m looking forward to seeing you again. We should go out again real soon. Oh, I’m just so tickled that you were thinking of me too and brought me coffee! You better go though. I’ll send you an email soon for our next date, kisses.<</speech>>
<<button "Leave" "Lab Reception">><<set $kimquest = 11>><<set $questdaycount = 0>><</button>>
\
\
\
\
\
<<elseif $kimquest == 11>>\
<div align='center'>\
<<if GameDays[$gameDate.getDay()] is "Mon">>\
<<if $gameDate.getHours() >= "8" and $gameDate.getHours() <= "17">>\
She is in the lab. Looks like she is working, nothing suspicious. Check her after work.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
\
\
\
<<elseif GameDays[$gameDate.getDay()] is "Tue">>\
<<if $gameDate.getHours() >= "8" and $gameDate.getHours() <= "17">>\
She is in the lab. Looks like she is working, nothing suspicious. Check her after work.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
\
\
\
<<elseif GameDays[$gameDate.getDay()] is "Wed">>\
<<if $gameDate.getHours() >= "8" and $gameDate.getHours() <= "17">>\
She is in the lab. Looks like she is working, nothing suspicious. Check her after work.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
\
\
\
<<elseif GameDays[$gameDate.getDay()] is "Thu">>\
<<if $gameDate.getHours() >= "8" and $gameDate.getHours() <= "17">>\
She is in the lab. Looks like she is working, nothing suspicious. Check her after work.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
\
\
\
<<elseif GameDays[$gameDate.getDay()] is "Fri">>\
<<if $gameDate.getHours() >= "8" and $gameDate.getHours() <= "17">>\
She is in the lab. Looks like she is working, nothing suspicious. Check her after work.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
\
\
\
<<elseif GameDays[$gameDate.getDay()] is "Sat">>\
<<if $gameDate.getHours() >= "10" and $gameDate.getHours() <= "16">>\
She is in the park. Go and check what she is doing.
<<button "Go to the park" "Park">><<addmins 20>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<elseif $gameDate.getHours() < "10">>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
Lost her signal. Check it later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
\
\
\
<<elseif GameDays[$gameDate.getDay()] is "Sun">>\
<<if $gameDate.getHours() >= "10" and $gameDate.getHours() <= "16">>\
She is in the park. Go and check what she is doing.
<<button "Go to the park" "Park">><<addmins 20>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<elseif $gameDate.getHours() < "10">>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
Lost her signal. Check it later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
<</if>>\
</div>\
\
\
\
\
\
<<elseif $kimquest == 12>>\
<img src="content/location/park_bg.jpg">
\
<div align='center'>\
You track Kimberlee to the park. You keep your distance doing your best to keep trees and bushes between you at all times so you are not spotted.
</div>\
<img src="content/peoples/kimberlee/3.jpg">
\
<div align='center'>\
She takes a seat on a bench and sets a brown paper bag next to her. Hopefully, that isn’t a sack lunch she’s carrying around. You wait expectantly hope she doesn’t pull a sandwich out of that bag. She continues to just sit there and the longer you wait, the better you feel that this isn’t just a quiet outing for her. After about 30 minutes, a rather nondescript man sits on the other end of the bench from her also carrying a brown paper bag. He sets it on the middle of the bench and leans back taking in the sites of the park. Kimberlee stands up and picks up the man’s bag and walks towards the entrance to the park. You stand up to follow her when you realize that your legs are numb. They fell asleep from your awkward sitting position as you were hiding. You grit your teeth as you shake them frantically trying to get the blood circulating in them again. By the time you are back up on your feet, you run towards the entrance of the park but you don’t see Kimberlee anywhere. You’ve lost her! You better get back to your computer to see where she is.
</div>\
<<addhours 2>>\
<<button "Leave" "Map">><<set $kimquest = 13>><</button>>
\
\
\
\
\
<<elseif $kimquest == 13>>\
<div align='center'>\
<<if GameDays[$gameDate.getDay()] is "Mon">>\
<<if $gameDate.getHours() >= "8" and $gameDate.getHours() <= "17">>\
She is in the lab. Looks like she is working, nothing suspicious. Check her after work.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
\
\
\
<<elseif GameDays[$gameDate.getDay()] is "Tue">>\
<<if $gameDate.getHours() >= "8" and $gameDate.getHours() <= "17">>\
She is in the lab. Looks like she is working, nothing suspicious. Check her after work.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
\
\
\
<<elseif GameDays[$gameDate.getDay()] is "Wed">>\
<<if $gameDate.getHours() >= "8" and $gameDate.getHours() <= "17">>\
She is in the lab. Looks like she is working, nothing suspicious. Check her after work.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
\
\
\
<<elseif GameDays[$gameDate.getDay()] is "Thu">>\
<<if $gameDate.getHours() >= "8" and $gameDate.getHours() <= "17">>\
She is in the lab. Looks like she is working, nothing suspicious. Check her after work.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
\
\
\
<<elseif GameDays[$gameDate.getDay()] is "Fri">>\
<<if $gameDate.getHours() >= "8" and $gameDate.getHours() <= "17">>\
She is in the lab. Looks like she is working, nothing suspicious. Check her after work.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
\
\
\
<<elseif GameDays[$gameDate.getDay()] is "Sat">>\
<<if $gameDate.getHours() >= "20">>\
She is in the club. Go and check what she is doing.
<<button "Go to the club" "Club Dancefloor">><<addmins 20>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<elseif $gameDate.getHours() < "10">>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
Lost her signal. Check it later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
\
\
\
<<elseif GameDays[$gameDate.getDay()] is "Sun">>\
<<if $gameDate.getHours() >= "20">>\
She is in the club. Go and check what she is doing.
<<button "Go to the club" "Club Dancefloor">><<addmins 20>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<elseif $gameDate.getHours() < "10">>\
She is at home. Nothing suspicious. Check her later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
\
\
\
<<else>>\
Lost her signal. Check it later.
<<button "Wait one hour" "Kimberlee quest 2">><<addhours 1>><</button>>
<<button "Close" "Player Web">><</button>>
<</if>>\
<</if>>\
</div>\
\
\
\
\
\
<<elseif $kimquest == 14>>\
<img src="content/location/club_dance.jpg">
\
<div align='center'>\
You enter the club having tracked her here with the bug. You wander around but you don’t see here anywhere. Where else could she be? You think to check the bathroom.
</div>\
<img src="content/peoples/kimberlee/4.jpg">
\
<div align='center'>\
You walk into the ladies' room and it is pretty full like the rest of the club. It is always pretty busy on the weekend. You scan the room looking for Kimberlee but don’t see her. However, you notice that there is something weird happening at the last stall. Girls are going in and coming out way too fast. You get in line for the stall and when you walk in, you see Kimberlee there with a wad of money and a bag full of drugs. She looks up at you with shock and horror in her eyes. She pushes the door closed behind you with a shove.
</div>\
<<speech "Kimberlee">>Oh shit! You can’t be here $fname. Meet me in the alley behind the club. I’ll be there in just a couple of minutes. DON’T talk to ANYONE! Go STRAIGHT to the alley.<</speech>>
<<button "Go to the alley" "Kimberlee quest 2">><<set $kimquest = 15>><</button>>
\
\
\
\
\
<<elseif $kimquest == 15>>\
<img src="content/peoples/kimberlee/5.jpg">
\
<div align='center'>\
You step into the dimly light alley and wait. You are so glad that your gambit paid off. You finally have the leverage you need to get away from Kimberlee. You continue to wait but she doesn’t come. What is taking her so long? You give up on her coming and begin to walk out of the alley when you hear the door open and hear Kimberlee’s voice calling your name.
</div>\
<img src="content/peoples/kimberlee/6.jpg">
\
<<speech "player" "$fname">>What is going on Kimberlee? Are you a drug dealer? I didn’t expect that from you.<</speech>>
<<speech "Kimberlee">>It’s not what it looks like $fname. It’s complicated. I know it looks bad but you can’t tell anyone about this.<</speech>>
<<speech "player" "$fname">>This is your once and only chance to come clean with me Kimberlee. If you don’t tell me the truth, I’m going to report you to the police. I saw you at the park today with that guy.<</speech>>
<<speech "Kimberlee">>You can’t tell anyone $fname. I’m begging you. I’m mixed up with some really bad people. I don’t want you to get involved. Listen, I’ll tell you this much as you probably figured it out. Yes, I’m selling drugs but only because I have to. These people force me to steal from the lab and they make some designer drugs from them to sell at the club. They will kill me if I don’t do as they tell me! I’m pleading with you, please don’t tell anyone about this! They would kill me and probably you too!<</speech>>
<<speech "player" "$fname">>Who are they? How did you get involved with them.<</speech>>
<<speech "Kimberlee">>I really can’t tell you $fname. You already know too much! I’m putting you in danger!<</speech>>
<<speech "player" "$fname">>Kimberlee, let me help you.<</speech>>
<<speech "Kimberlee">>Oh, sweetheart! That is so nice of you but there isn’t anything you can do. There isn’t anything anyone can do.<</speech>>
<<speech "player" "$fname">>You should trust me. I know someone that can help. A good friend with connections and resources. I’m going to help get you out of this Kimberlee. Trust me. Okay, let’s do this, meet me at the fountain in the mall tomorrow between 5pm and 8pm. Promise me you’ll come.<</speech>>
<<speech "Kimberlee">>Okay $fname. I don’t see that I have much choice. You better go before someone sees us back here. I’ll see you tomorrow.<</speech>>
<<button "Leave" "Map">><<set $kimquest = 16>><<addhours 1>><</button>>
\
\
\
\
\
<<elseif $kimquest == 16>>\
<img src="content/peoples/kimberlee/7.jpg">
\
<div align='center'>\
You sit down on the bench near the fountain await for Kimberlee. She is only a few minutes late. She has a concerned expression on her face.
</div>\
<img src="content/peoples/kimberlee/8.jpg">
\
<<speech "player" "$fname">>Hi Kimberlee, are you okay?<</speech>>
<<speech "Kimberlee">>Oh $fname, I don’t feel good about this. I’m worried. It would be best if you just forget it ever happened. I don’t like the idea of getting anyone else involved.<</speech>>
<div align='center'>\
You take Kimberlee’s hands gently in yours as you look into her pleading eyes.
</div>\
<<speech "player" "$fname">>You can trust me Kimberlee. You say that you love me. Do this for me. Let me help you.<</speech>>
<div align='center'>\
Kimberlee wipes at the corner of her eye as they begin to tear up. She just nods as she struggles to swallow. You take her hand and lead her to the PC shop. As you walk in, Bonnie sees the two of you and her expression darkens alarmingly.
</div>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<speech "Bonnie">>What is this bitch doing here? What the fuck $fname?<</speech>>
<<speech "Kimberlee">>What did you call me? Do I know you?<</speech>>
<<speech "Bonnie">>No, we’ve never met but I know that you are a fucking ass hole.<</speech>>
<div align='center'>\
Kimberlee looks at you with shock and more than a little fear in her eyes.
</div>\
<<speech "player" "$fname">>Ladies, please calm down. If we are going to get through this, we all need to help each other. Bonnie, please just give Kimberlee a chance to explain. Hear her out.<</speech>>
<div align='center'>\
Bonnie rolls her eyes as she crosses her arms in front of her.
</div>\
<img src="content/peoples/kimberlee/9.jpg">
\
<<speech "Bonnie">>Fine! I’ll hear her shitty sob story.<</speech>>
<<speech "player" "$fname">>Thank you Bonnie. Alright, Bonnie, you obviously already know Kimberlee. Kimberle, this is Bonnie. She is one of my closest friends and I trust her with my life. She is worthy of your trust.<</speech>>
<<speech "Kimberlee">>Why does she hate me so much, $fname? What have I ever done to her?<</speech>>
<<speech "Bonnie">>I’m not sure I can do this. Kimberlee, you fucking blackmailed $fname into dating you! You are a piece of shit!<</speech>>
<<speech "Kimberlee">>That’s not true, I… Okay, yeah, that is true but I did it because I wanted to get to know $fname better. I was desperate. I love $fname. I wouldn’t have actually turned her in.<</speech>>
<<speech "Bonnie">>Whatever… Just… tell me what you have to say. Wait, first I want to know one thing. Do you have access to the lab databases? There is something in the lower levels in a highly secure area. Are you able to see what it is?<</speech>>
<<speech "Kimberlee">>Oh! No, I don’t have that kind of access. No one does. If you want to know what is going on down there, the only way to know is to go down yourself. I can get you a bracelet that will give you access to the elevators going down there. They must have a separate security system because it isn’t part of the security system that I have access to. I can tell you that I never see any security guards going down there though. I only see scientists coming and going.<</speech>>
<<speech "Bonnie">>So who runs things down there, do you know? Someone must be in charge.<</speech>>
<<speech "Kimberlee">>It must be the lead scientist, Dr. Cordoba.<</speech>>
<<speech "Bonnie">>Well, that is the best news I’ve heard all day. Alright, I will help you.<</speech>>
<<speech "Kimberlee">>I’m not sure what you can do Bonnie. I don’t think there is anything anyone can do.<</speech>>
<<speech "player" "$fname">>Bonnie is amazing with computers. Give her a chance. You will be surprised at what she can do.<</speech>>
<<speech "Bonnie">>I still don’t like you Kimberlee but I am willing to help in trade for your help getting access to the lower levels. If you will get us that bracelet to access the elevator, I will take care of whatever this problem is you are having. BUT! But, you have to promise to also stop blackmailing $fname. No more forcing him to do shit, got it? You have no idea the hell I can bring down on your head if you don’t behave.<</speech>>
<<speech "Kimberlee">>I promise! I love $fname. The blackmail was a bad idea. I see that now. I won’t force her to do anything.<</speech>>
<<speech "Bonnie">>Then it’s a deal. Get us that bracelet and I will take care of your problem. And as for you, $fname, I need you to get Mariana’s password so you can log in to her computer at home. She would have to have access to the lab from it and should be able to give your bracelet the access you would need for getting around in the lower levels. Let me know once you get into her computer.<</speech>>
<div align='center'>\
You look around the room and see that Bonnie has a determined look on her face and Kimberlee is looking somewhat optimistic. Things are starting to look up.
</div>\
<<button "Leave" "Map">><<set $kimquest = 17>><</button>>
<</if>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<div align='center'>\
You walk into the PC shop looking sheepish.
</div>\
<<speech "Bonnie">>Oh, why the long face $fname? Did someone run over your dog? I would hate to see anything happen to poor Kimberlee.<</speech>>
<<speech "player" "$fname">>Haha… very funny. Well, I used the bug and wasn’t able to catch Kimberlee doing anything. I need another one.<</speech>>
<<speech "Bonnie">>Oh, cheer up. I bought a few just in case. I was planning to resell them but if you have another thousand, I’ll let you have it.<</speech>>
<<if $money >= 1000>>\
<<speech "player" "$fname">>Thanks Bonnie! You are awesome.<</speech>>
<<speech "Bonnie">>And don’t you forget it!<</speech>>
<<button "Buy a new bug and leave" "Map">><<set $money -= 1000>><<set $kimquest = 10>><</button>>
<<else>>\
<div align='center'>
You don't have enough money.
</div>
<<button "Leave" "Map">><</button>>
<</if>>\
<<if $bdayquest == 0>>\
<img src="content/location/living_room.jpg">
\
<<speech "Chanel">>Hi $fname. Oh, hey, you aren’t busy, are you? I’m doing a surprise birthday party for my mom today. Would you like to help?<</speech>>
<<speech "player" "$fname">>Of course Chanel, I’d love to help. What would you like me to do?<</speech>>
<<speech "Chanel">>I need someone to go pick up a cake for her. Do you think you could take care of that for me? The order should be ready anytime now. It is just down at the corner shop. Once that’s done, I need some help getting her out of the house.<</speech>>
<<speech "player" "$fname">>So, do you have any suggestions on where I should take her? I’m not sure she will want to go anywhere with me.<</speech>>
<<speech "Chanel">>Well, I happen to know one of her weaknesses. Just say that you want to go for a walk and get some ice cream while you are out and see if she wants to come. There is no way she will turn you down. We still have a fair bit of preparation to do so be sure to take your time.<</speech>>
<<speech "player" "$fname">>Okay, yeah, I can do that. I’ll go grab the cake first and be right back.<</speech>>
<<button "Leave" "Hallway Down">><<set $bdayquest = 1>><<set $kimquest = 18>><</button>>
\
\
\
\
\
<<elseif $bdayquest == 2>>\
<img src="content/location/kitchen.jpg">
\
<<speech "Chanel">>Thank you so much! Wow, it looks amazing! I can’t wait to have some. Alright, she’s upstairs in her office. Please get her out of the house and keep her out for as long as you can. I need at least two hours. You can come back anytime after that.<</speech>>
<<speech "player" "$fname">>Got it. See you in a few hours then!<</speech>>
<<if $pgender isnot "male">>\
<<speech "Chanel">>Please change back into being a guy first.<</speech>>
<<speech "player" "$fname">>Sure thing. I’ll go do that now.<</speech>>
<</if>>\
<<button "Leave" "Hallway Down">><<set $bdayquest = 3>><</button>>
\
\
\
\
\
<<elseif $bdayquest == 4>>\
<div align='center'>\
You make small talk with Mariana as the two of you walk through the town. You pass a couple of places that sell ice cream but you tell her that it doesn’t look good for one reason or another trying to buy as much time as you can along the way. Eventually, you find a nice place on the fare side of town.
</div>\
<img src="content/peoples/mariana/icecream/1.jpg">
\
<<speech "Mariana">>I’m so glad you invited me out. It is so nice to get out of the office. You know, today is my birthday but I don’t think anyone remembered. But that is alright. When you get to a certain age, you don’t necessarily want people to know that you are getting older. I love you that asked me out today without even knowing. It made me feel special without being self-conscious about being one more year older. And the yummy ice cream is really nice too. I seem to have a weakness for ice cream.<</speech>>
<<button "Stare her" "Bday Quest">><<set $bdayquest = 5>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 5>>\
<img src="content/peoples/mariana/icecream/2.jpg">
\
<div align='center'>\
As she savors the flavor of the ice cream in her mouth, she begins to push it around with her tongue.
</div>\
<<addarousal 5>>\
<<button "Enjoy it" "Bday Quest">><<set $bdayquest = 6>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 6>>\
<img src="content/peoples/mariana/icecream/3.jpg">
\
<div align='center'>\
She looks at you with a glimmer in her eye as she pushes the spoon deeper into her mouth and lets out a low moan as she sucks on it.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 7>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 7>>\
<img src="content/peoples/mariana/icecream/4.jpg">
\
<div align='center'>\
Taking another spoon full, she sucks on the tip of the spoon in a very suggestive way and then rubs the cream across her lips giving it a very naughty appearance.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 8>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 8>>\
<img src="content/peoples/mariana/icecream/5.jpg">
\
<div align='center'>\
She continues to lick the spoon until the ice cream has melted and then she slurps it off the spoon and then sucks on the spoon again while wiggling her eyes at you.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 9>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 9>>\
<img src="content/peoples/mariana/icecream/6.jpg">
\
<div align='center'>\
She takes another spoon full of ice cream and continues with her erotic show. You are not certain if it is by accident or not but a lump of ice cream slips from her spoon as she is sucking it in and out of her mouth from the spoon and lands on her delectable breast. She looks up at you in feigned shock, her mouth and eyes wide open as it slides ponderously down the slope of her breast.
</div>\
<<speech "Mariana">>Oh dear, look at me. I’m such a dirty girl!<</speech>>
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 10>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 10>>\
<img src="content/peoples/mariana/icecream/7.jpg">
\
<div align='center'>\
She scoops up the cream with a long delicate finger and slips it into her mouth. She then polishes the spoon with her tongue holding it up in front of her as if in my mind’s eye, she is sucking on your cock. Your cock in your pants just went from chubby to full mast as it strains against the confines of your clothes.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 11>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 11>>\
<img src="content/peoples/mariana/icecream/8.jpg">
\
<div align='center'>\
She takes another scoop of ice cream and leans back in her seat and looking you in the eyes, slowly spreads her legs open.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 12>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 12>>\
<img src="content/peoples/mariana/icecream/9.jpg">
\
<div align='center'>\
Looking down between her legs, you see that her cock is also straining to escape and has slipped down the leg of her stocking. A slow smile spreads across her face.
</div>\
<<speech "Mariana">>See anything you like?<</speech>>
<<speech "player" "$fname">>You are so beautiful, Mariana.<</speech>>
<<speech "Mariana">>Mmmm, thanks cutie.<</speech>>
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 13>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 13>>\
<img src="content/peoples/mariana/icecream/10.jpg">
\
<div align='center'>\
She moves in her seat to give you a better view of the monster in her pantyhose. You try to subtly adjust yourself in your pants.
</div>\
<<speech "Mariana">>How is the view now, better?<</speech>>
<div align='center'>\
You just nod as you blatantly stare.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 14>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 14>>\
<img src="content/peoples/mariana/icecream/11.jpg">
\
<div align='center'>\
As you continue to stare, you can see it continue to harden pushing further and further along the inside of her leg.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 15>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 15>>\
<img src="content/peoples/mariana/icecream/12.jpg">
\
<div align='center'>\
Leaning forward in her seat, she takes another scoot of ice cream. From this angle, you can see down her top and ogle the immense cleavage as her generous breasts are smooshed together in her tight top.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 16>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 16>>\
<img src="content/peoples/mariana/icecream/13.jpg">
\
<div align='center'>\
She brings the spoon forwards towards you.
</div>\
<<speech "Mariana">>Open your mouth.<</speech>>
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 17>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 17>>\
<img src="content/peoples/mariana/icecream/14.jpg">
\
<div align='center'>\
She slips the loaded spoon into your mouth and you wrap your lips around it. You suck at the ice cream and Mariana wiggles the spoon around inside your mouth playfully.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 18>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 18>>\
<img src="content/peoples/mariana/icecream/15.jpg">
\
<div align='center'>\
You glance down between her legs again and following your gaze, she rubs a hand down the outside of her thigh and back up along the inside rubbing her cock through the material of the hose.
</div>\
<<speech "Mariana">>If you want a closer look, you could always slip down under the table.<</speech>>
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 19>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 19>>\
<img src="content/peoples/mariana/icecream/16.jpg">
\
<div align='center'>\
You glance around and then under the table to see if anyone would notice and if there is room for you underneath.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 20>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 20>>\
<img src="content/peoples/mariana/icecream/17.jpg">
\
<div align='center'>\
You slowly sink down into your chair and slide under the table completely. Goodness gracious, she has the most amazing cock!
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 21>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 21>>\
<img src="content/peoples/mariana/icecream/18.jpg">
\
<div align='center'>\
You feel yourself being drawn to it as if it has a gravity all to itself and you are helpless to its force as you are pulled ever closer to it.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 22>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 22>>\
<img src="content/peoples/mariana/icecream/19.jpg">
\
<div align='center'>\
You look up from between her legs and see her smiling face over the swell of her bosom.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 23>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 23>>\
<img src="content/peoples/mariana/icecream/20.jpg">
\
<div align='center'>\
You are now so close to her bulge that you can feel the heat coming off of it on the skin of your face. You unconsciously lick your lips as you are continually pulled closer to the object of your desire.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 24>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 24>>\
<img src="content/peoples/mariana/icecream/21.jpg">
\
<div align='center'>\
Finally, the inevitable happens as your face finally makes contact with the source of the gravitational pull. It feels magnificent against your cheek. Between the smooth texture of the hose and the hard flesh beneath, the contrast of the textures is like heaven. You plant a soft kiss on it as you begin to worship it from under the table. You feel her pat the top of your head.
You pushing your face against her cock. Massaging it with your face. You give a nice long kiss on it then she taps your head.
</div>\
<<speech "Mariana">>We should go.<</speech>>
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 25>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 25>>\
<img src="content/peoples/mariana/icecream/22.jpg">
\
<div align='center'>\
You reluctantly pull yourself away and slip out from under the table. You walk over to the cashier and pay for the ice cream.
</div>\
<<speech "Mariana">>Let’s head home. We have some unfinished business that I need your help with.<</speech>>
<div align='center'>\
She gives you a conspiratorial wink and you know just exactly what she has in mind. You glance at your watch and see that it has only been an hour. You still need to kill another hour before you can safely return home. Thinking fast, you remember your date with Kimberlee at the park and decide on your next course of action.
</div>\
<<speech "player" "$fname">>It’s such a nice day out. How about we head over to the park?<</speech>>
<<speech "Mariana">>To the park? I thought you wanted to help me out with my… predicament. If you have other plans, perhaps I should just head home and get back to work. I still have a lot that needs my attention.<</speech>>
<<speech "player" "$fname">>No Mariana, you misunderstand. I fully intend to address your… predicament as you call it. Trust me, just come to the park with me.<</speech>>
<div align='center'>\
She gives you a quirky smile and shrugs apparently deciding to go along with your plan. The two of you walk to the park. Mariana finds opportunities to bump into you and her hand slides over your butt and the front of your pants not allowing the bulge there to shrink.
</div>\
<<addarousal 5>>\
<<button "Walk to the park" "Bday Quest">><<set $bdayquest = 26>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 26>>\
<img src="content/peoples/mariana/icecream/23.jpg">
\
<div align='center'>\
Before you reach the park, Mariana directs you over to a quiet bench along the way. You slide your hand up over the silky stalking sliding up under her skirt again.
</div>\
<<addarousal 5>>\
<<button "Watching her" "Bday Quest">><<set $bdayquest = 27>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 27>>\
<img src="content/peoples/mariana/icecream/24.jpg">
\
<div align='center'>\
She pulls her legs up on the bench and you get a better look at her balls, looking so full and ripe.
</div>\
<<addarousal 5>>\
<<button "Watching her" "Bday Quest">><<set $bdayquest = 28>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 28>>\
<img src="content/peoples/mariana/icecream/25.jpg">
\
<div align='center'>\
As you look back up at her, she opens her top showing off more of the roundness of her breasts.
</div>\
<<addarousal 5>>\
<<button "Watching her" "Bday Quest">><<set $bdayquest = 29>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 29>>\
<img src="content/peoples/mariana/icecream/26.jpg">
\
<div align='center'>\
She stands up and squats down opposite you on the bench. The way she is positioned, the balls look exaggerated as they dangle down below her.
</div>\
<<addarousal 5>>\
<<button "Watching her" "Bday Quest">><<set $bdayquest = 30>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 30>>\
<img src="content/peoples/mariana/icecream/27.jpg">
\
<div align='center'>\
She sinks the rest of the way down sitting on the concrete path and pulls her turgid cock out.
</div>\
<<addarousal 5>>\
<<button "Watching her" "Bday Quest">><<set $bdayquest = 31>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 31>>\
<img src="content/peoples/mariana/icecream/28.jpg">
\
<div align='center'>\
Mercy sakes, it is so big! Not even fully hard and it is dangling down touching the ground!
</div>\
<<speech "Mariana">>Mmmm, that’s enough teasing for now. Let’s get to the park. I don’t think I can hold myself back from pouncing on you.<</speech>>
<div align='center'>\
You quickly make your way to the secluded spot that you remember but apparently, Mariana has other ideas as she pushes you into the bushes before you get to your destination. It seems that she couldn’t wait any longer.
</div>\
<<addarousal 5>>\
<<button "Follow her" "Bday Quest">><<set $bdayquest = 32>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 32>>\
<video src="content/peoples/mariana/icecream/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Giving you a predatory look, she quickly removes all her clothing.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 33>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 33>>\
<video src="content/peoples/mariana/icecream/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Something about the situation is really working for you. The feeling of being the prey to this supremely sexual creature here in this public place after so much teasing has you as hard as you ever remember being. Your cock is literally aching inside your pants and you are forced to rub it through the thick material.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 34>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 34>>\
<video src="content/peoples/mariana/icecream/3.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She slowly strokes herself keeping herself between you and the path seeming to dare you to try to get past her.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 35>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 35>>\
<video src="content/peoples/mariana/icecream/4.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You feel that attraction pulling you back to her. As you come closer, your hand wraps around the thick shaft. It reminds you of a large summer sausage in your hand as it barely is able to wrap its fingers around its girth.
</div>\
<<addarousal 5>>\
<<handskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 36>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 36>>\
<video src="content/peoples/mariana/icecream/5.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is groaning as your hand moves faster on her cock. Her hand wraps around your wrist encourages you to stroke her even faster. All the teasing has you both worked up to a fever pitch.
</div>\
<<addarousal 5>>\
<<handskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 37>><<set $pdollsex to true>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 37>>\
<video src="content/peoples/mariana/icecream/6.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You push your pants down freeing your aching cock and begin to stroke groaning with its release from its confinement. Mariana strokes her cock as she watches you stroke yours. Her other hand massages her breast.
</div>\
<<addarousal 5>>\
<<handskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 38>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 38>>\
<video src="content/peoples/mariana/icecream/7.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>Oh god, I can’t wait any longer. I have to CUM!<</speech>>
<div align='center'>\
Sitting down, her hand becomes a blur on her cock. She grunts with the force of her orgasm as her milky white seed shoot out. She must have been severely backed up as there is so much cum! It just keeps shooting out.
</div>\
<<addarousal 5>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 39>><<set $pdollsex to false>><<set $pdollcum to true>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 39>>\
<video src="content/peoples/mariana/icecream/8.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
The sight of her eruption only drives your excitement to an even higher level. Your eyes take on a glazed expression as you climb higher, nearing the brink. Mariana's eyes fill with hunger and she grasps your dick until you pump your hot cum so across her bare breasts.
</div>\
<<speech "Mariana">>What a wonderful afternoon! Thank you for this invoice birthday treat. It was a wonderful diversion. Let's get back home.<</speech>>
<div align='center'>\
Looking down at your watch, you see that your two hours is nearly up. It should be safe to head back. Thank goodness that Chanel didn't ask for three hours!
</div>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $mcumcounter += 1>>\
<<set $mghjcounter += 1>>\
<<set $mrhjcounter += 1>>\
<<set $noorgasm = 0>>\
<<willingness>>\
<<button "Go home" "Bday Quest">><<set $bdayquest = 40>><<set $pdollcum to false>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 40>>\
<img src="content/peoples/mariana/bday/1.jpg">
\
<div align='center'>\
The walk back to the house is rather uneventful and both of you seem to be at a bit of a loss of what to talk about so you enjoy the scenery with the occasional chit-chat. When you eventually arrive at the house, Mariana walks in first and when she reaches the end of the hallway, there is a cacophonous noise making both of you jump as a multitude of people jump out yelling ‘surprise’ after which a rousing chorus of ‘Happy Birthday’ is sung. She turns around to give you a dirty glance as if to say, ‘I see what you did there!’ after which she beams brightly at all the people coming up to wish her happiness on her special day. You eventually lose sight of her as she is swallowed up by the crowd.
You mingle as best you can but you have never been great with crowds. Eventually, you bump into Mariana again and she is chatting with a gorgeous blonde woman. She notices you out of the corner of her eye and turns to you pulling you over.
</div>\
<<speech "Mariana">>You sneaky bastard! And I thought you didn’t know today was my birthday when you invited me out. Sneaky-sneaky bastard. I can’t stay mad at you though. Thank you for being here. Hey, let me introduce you to someone. Hey Angeles, this is $fname and $fname, please meet my best friend Angeles.<</speech>>
<img src="content/peoples/mariana/bday/2.jpg">
\
<<speech "player" "$fname">>It is a pleasure to meet you, Angeles. Best friends you say? I can only imagine the stories you could tell me about this one.<</speech>>
<<speech "Angeles">>Hello $fname. Mariana has already warned me about you. Just kidding. She has told me some very nice things. I can tell she likes you a lot. You must be someone truly special.<</speech>>
<<speech "player" "$fname">>Oh wow, well thank you! I’m flattered. And Mariana, I’m very sorry about misleading you. Chanel put me up to it. I only found out just before I came up to talk to you in your office. I haven’t even had a chance to buy you a gift.<</speech>>
<<speech "Mariana">>Don’t worry about it, dear. I was just giving you a hard time. It was a very lovely surprise. And besides, I enjoyed our time out today. And as for the present, you can make it up to me later. Later tonight that is. Once the party is starting to die down, go wait for me in my bedroom.<</speech>>
<div align='center'>\
Wow, doesn’t that sound incredible? You flitter about a bit more during the party and at the first sign that people are starting to head out, you make your way to Mariana’s bedroom and make yourself comfortable on her bed.
</div>\
<<button "Sit down" "Bday Quest">><<set $bdayquest = 41>><</button>>
\
\
\
\
\
<<elseif $bdayquest == 41>>\
<img src="content/location/mroom.jpg">
\
<div align='center'>\
As you lay on the bed, your thoughts wander all over the place. You think about your time with Mariana earlier today and how fun she is to be with as well as the supremely magnificent cock of hers. You think about Chanel and Jordi as well as Natalie and how nice they have all been to you since moving in with them. How amazing that they invited you to live here! You think about your poor parents and what they must be doing right now and hope they are doing alright. You think about Bonnie and how much she has helped and even about Kimberlee and what a mess she is. You are feeling pretty good about the progress you have made at finding your parents and you feel like you are on the right trail.
You lay back on the bed and look up at the ceiling and the smell of Mariana’s perfume brings you back to the present. Should you get naked before she comes back? Slip into her bed perhaps? No, best to play it safe and just wait until she gets back. After what is possibly the longest 15 minutes you can recall, the door opens and Mariana enters followed closely by her friend Angeles.
</div>\
<<speech "Mariana">>I’m so glad you made it! I hope you don’t mind that I invited Angeles along. She is excited to get to know you better. Why are you still wearing your clothes? I figured you would be naked under the covers halfway to nutting by now. Sorry, just teasing you dear. No need to give me that look. Just relax and let’s get everyone out of their clothes, shall we?<</speech>>
<<button "Obey" "Bday Quest">><<set $bdayquest = 42>><</button>>
\
\
\
\
\
<<elseif $bdayquest == 42>>\
<video src="content/peoples/mariana/bday/1.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
As Mariana closes the door, Angeles removes her dress and begins to walk softly towards the bed like she is part cat. With the door now closed and locked, Mariana follows suit by removing her dress and walks around the bed behind you. Angeles crawls across the bed with a playful predatory look in her eyes as she approaches you. She rubs at the crotch of your pants feeling the size of you and then paws her way up your torso bringing herself upright next to you and presses her lips against yours. Mariana comes up behind you enjoying the show before reaching around as she removes your clothes.
</div>\
<<addarousal 20>>\
<<tongueskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 43>><<set $pdollsex to true>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 43>>\
<video src="content/peoples/mariana/bday/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Fully naked, Angeles begins to suck at your cock which is now once more at full mast. Mariana pulls her panties to the side freeing her cock and once more entranced by this most magnificent cock, you reach for it to stroke it. Mariana runs her hand across your shoulder admiring your physique and slides it down over your chest and softly pinches your nipple.
</div>\
<<addarousal 20>>\
<<handskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 44>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 44>>\
<video src="content/peoples/mariana/bday/3.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Mariana climbs on the bed and kneeling over you, strokes your cock as she brings it closer to your waiting mouth. Angeles continues to suck hungrily at your cock and you moan feeling the exquisite sensation of sucking while being sucked in return.
</div>\
<<addarousal 20>>\
<<blowjobskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 45>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 45>>\
<video src="content/peoples/mariana/bday/4.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>Angeles, will you switch with me, dear? I want a taste of him too.<</speech>>
<div align='center'>\
Angeles slips you from her mouth and switches places with Mariana. Her cock is not as long as Mariana’s but she seems to have a thicker girth as you have to really stretch your jaw to take her in. Being distracted, you hardly notice that your cock has disappeared inside Mariana’s eager mouth. You barely notice the moan of appreciation from Mariana as she savors the feel of you in her mouth. You look up into Angeles’s eyes enjoying filling her with lust and hunger.
</div>\
<<addarousal 20>>\
<<blowjobskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 46>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 46>>\
<video src="content/peoples/mariana/bday/5.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Angeles">>So what do you think $fname, who has the better cock? Me or Mariana? I can see you enjoy both of them but if you had to choose, which one would you want to sink into your ass first?<</speech>>
<div align='center'>\
You stammer and look from cock to cock trying to decide how to answer.
</div>\
<<speech "Mariana">>Angeles, are you still going on about that? He likes us both, why are you making him choose one?<</speech>>
<<speech "Angeles">>No, I want to hear it from him. What do you say $fname? Who do you want to fuck you first?<</speech>>
<<speech "player" "$fname">>I really do like them both. It isn’t an easy choice. Here, let me suck them both once more and get another sample.<</speech>>
<div align='center'>\
They giggle enjoying the new sport as they both sit down on the drawers stroking their cocks keeping them nice and hard for your review. You suck at Mariana first and take your time savoring its many qualities.
</div>\
<<addarousal 20>>\
<<blowjobskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 47>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 47>>\
<video src="content/peoples/mariana/bday/6.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Angeles">>Hey, my turn now. That’s a good enough sample.<</speech>>
<div align='center'>\
You pop off Mariana’s cock and begin to suck on Angeles while Mariana strokes watching the show. It is so hard to decide. They are both truly sublime cocks.
</div>\
<<speech "player" "$fname">>I don’t know how I can say. They are both so amazing!<</speech>>
<<speech "Angeles">>I don’t mind if he wants to keep sampling but let’s get cozier on the bed again. Lay down for me baby and let me feed you my cock.<</speech>>
<<addarousal 20>>\
<<blowjobskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 48>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 48>>\
<video src="content/peoples/mariana/bday/7.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You lay back down on the bed and Angeles straddles your head and lowers herself down into your waiting mouth. Mariana sits next to you and takes your cock into her mouth again while slowly stroking herself but all your focus is on not choking on Angeles’s cock as it slips down your throat. You reach around her to help guide her cock and when you finally run out of air, help her pull out to give you a much-needed breath.
</div>\
<<addarousal 20>>\
<<blowjobskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 49>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 49>>\
<video src="content/peoples/mariana/bday/8.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Angeles">>Ha! I think that decides it. He likes my cock best Mariana. I get the first crack at his ass.<</speech>>
<<speech "Mariana">>You better make sure to warm him up. I don’t know if he has ever had anything as fat as your cock up that cute little chute of his.<</speech>>
<<speech "Angeles">>Who do you think I am? This isn’t my first rodeo sister. I’ll get him nice and warm before I fill that ass of his. He’ll be begging for it. Why don’t you keep that mouth of yours busy with Mariana while I get started back here, $fname?<</speech>>
<div align='center'>\
You spin yourself around on your hands and knees and take Mariana back into your mouth. While Angeles’s cock is thick, you think you actually prefer the shape of Mariana’s but at this point, you know better than to say anything. Bust to stay out of it.
You feel a cool finger begin to smear your back door with gel lubricant and a finger slips inside. This is quickly followed by a second and then third. She pistons the fingers in and out working the gel inside and waiting for your muscles to loosen up further.
</div>\
<<speech "Angeles">>Alright cutie, I think you are ready. Do you want it? Are you ready for my bitch maker to split your ass wide open? Come on, I want to hear you say it. Tell me, ‘Angeles, please make me your bitch. I want your fat cock so bad.’ Give Mariana’s cock a rest and let me hear it, baby.<</speech>>
<<speech "player" "$fname">>Please Angeles, give me your fat dick. I want to feel it inside me. Go slow please.<</speech>>
<<speech "Angeles">>You hear that Mariana, he wants it. I better give it to him. Here I come, baby. Buckle up, it’s going to be a bumpy ride.<</speech>>
<<addarousal 20>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<sexskill>>\
<</timed>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 50>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 50>>\
<video src="content/peoples/mariana/bday/9.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Angeles lines her cock up with your ass and with steady consistent pressure, slides it deep into your ass. The force of her pushing shoves you down into the mattress of the bed. She repositions on top of you and continues to shove until she is completely sheathed in your ass. You feel the breath being pushed out of your lungs as she continues to drive forward. She begins to piston in and out, working her way up to a steady rhythm. You go back to sucking on Mariana but it is rather distracting with Angeles stretching your ass. Your head stops bobbing and Angeles takes that opportunity, holding the back of your head, to move it up and down Mariana’s shaft in time with her thrusts into your ass.
</div>\
<<addarousal 20>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<sexskill>>\
<</timed>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 51>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 51>>\
<video src="content/peoples/mariana/bday/10.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Angeles">>His ass is so god damn tight! I’m not going to last much longer.<</speech>>
<<speech "Mariana">>It’s alright Angeles, I’m getting close too. Between watching you rape his ass and his mouth on my cock, I’m not going to last much longer either. What do you say we feed him our cum together. Shall we give him a double dose of cum, double-barrel shotgun-style?<</speech>>
<div align='center'>\
Angeles pulls out and comes around opposite to Mariana and you roll over onto your back opening your mouth wide ready to receive their gift. They are both stroking and Angeles begins to cum onto your tongue which is out and eager.
</div>\
<<speech "Mariana">>Ahhh, it isn’t cumming. I guess I wasn’t as close as it thought I was. He drained my balls earlier today pretty well. I am so close. I need more $fname. Fuck my ass.<</speech>>
<div align='center'>\
Laying down, she spreads her legs in invitation and you are only all too happy to oblige.
</div>\
<<addarousal 20>>\
<<cumplayskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 52>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 52>>\
<video src="content/peoples/mariana/bday/11.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
As you fuck her wonderful ass, she continues to stroke herself vigorously.
</div>\
<<speech "Mariana">>Bring your cock over here Angeles, let me suck out the last of your seed.<</speech>>
<div align='center'>\
She moans around the cock in her mouth and you can feel her ass begin to tighten around your cock.
</div>\
<<addarousal 20>>\
<<sexskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 53>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 53>>\
<video src="content/peoples/mariana/bday/12.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You feel the spasms around your cock first and Mariana cries out as her cock spews thing ropes of cum across her tummy. Oh, what a sexy sight! She is looking up at you with a look of adoration.
</div>\
<<addarousal 20>>\
<<sexskill>>\
<<button "Continue" "Bday Quest">><<set $bdayquest = 54>><<run $gameDate.setHours($gameDate.getHours() * 0 + 2)>><<set $pdollsex to false>><<set $pdollcum to true>><</button>>\
\
\
\
\
\
<<elseif $bdayquest == 54>>\
<video src="content/peoples/mariana/bday/13.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>Come over here $fname, I want your cum on my titties. Give me your load.<</speech>>
<div align='center'>\
Kneeling over Mariana, she strokes your cock while fondling her breast. Your head tilts back and you roar as your cum flies covering her breast and nipple with your cum giving it a glazed appearance.
</div>\
<<speech "Mariana">>This has been the best birthday I can remember. Thank you both so much for being here to celebrate with me!<</speech>>
<<speech "player" "$fname">>Trust me, it was my pleasure, Mariana. I feel like it was my birthday as well.<</speech>>
<<speech "Angeles">>You two are so fucking cute! I’d say you should get a room but I think I’m the intruder here.<</speech>>
<<speech "Mariana">>You are so funny, Angeles.<</speech>>
<<speech "Angeles">>I guess I’m only half-joking Mariana. Hey $fname, why don’t come visit me sometime? I’d love to see you when I don’t have to share your attention.<</speech>>
<div align='center'>\
You feel your face flush as you blush. The three of you share a little small talk as you clean yourselves up and then say your goodbyes after getting Angeles’s address. You head to your room feeling very exhausted after the very full and wonderfully eventful day.
</div>\
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $mgblowjobcounter += 2>>\
<<set $mrblowjobcounter += 2>>\
<<set $mganalcounter += 1>>\
<<set $mranalcounter += 1>>\
<<set $mcumcounter += 1>>\
<<set $noorgasm = 0>>\
<<set $mcumswallowcounter += 1>>\
<<set $analsize += 2>>\
<<set $angelesrepo += 1>>\
<<set $marianarepo += 2>>\
<<set $bdayquest = 55>>\
<<addhours 20>>\
<<willingness>>\
<<button "Go to sleep" "Player Sleep">><<set $pdollcum to false>><</button>>\
<</if>>\
<<if $angelesquest == 1>>\
<<set $pdollsex to true>>\
<img src="content/peoples/angeles/1.jpg">
<div align='center'>\
She invites you into a sitting room and asks if you would like anything to drink.
</div>\
<<speech "player" "$fname">>Thank you, Angeles. I’ll have some cool water if that’s alright.<</speech>>
<<speech "Angeles">>Water? Pish, let me get you something stronger. Martini perhaps? Or are you more of a scotch man?<</speech>>
<<speech "player" "$fname">>To be honest, I’m not much of a drinker. I guess I’ll have whatever you are having.<</speech>>
<<speech "Angeles">>Two martinis coming up. So, is there a reason you never got around to calling me? I seem to recall you enjoying yourself last time. Or are you getting so much from Mariana that you’ve forgotten about me? Or was it your… aunt Janine was it, that is keeping you so busy?<</speech>>
<<speech "player" "$fname">>I knew it was you, Angeles. I was just pulling your leg a bit. To be totally honest, I’ve been nervous to call you. I did have a great time with you and Mariana but I wasn’t sure if you would like me as much on my own. I’m not all that exciting.<</speech>>
<<speech "Angeles">>Don’t sell yourself short, $fname. It had an amazing time and it has been so long since I’ve enjoyed anyone in bed as much as I did you. I’ve known Mariana a long time and I know she wouldn’t have invited you to stay with her unless she had some ulterior motives. How long were you under her roof before she jumped your bones? A week? Less? Come now, you can tell your auntie Angeles.<</speech>>
<div align='center'>\
You blush as you think back to your first time with Mariana and the circumstances leading up to it. You decide that discretion is the better part of valour and keep your lips closed.
<div>\
<<speech "Angeles">>What’s the matter? Cat got your tongue? Certainly wasn’t the pussy in this town. Sorry for the bad pun. You are so damn cute! I love trying to get you to react. I can tell that you are very discrete, aren’t you? On the other hand, Mariana tells me everything. She can’t keep a secret to save her life. At least when it comes to me. She always has been awful about hiding stuff. She probably still keeps a spare key under her doormat and <b>her computer password under her keyboard.</b> She is great in the sack though so… To make a long story short, I wouldn’t worry so much. Just enjoy your drink and we can get cozy and just see where things lead. Deal?<</speech>>
<div align='center'>\
The two of you continue to chat about this and that. She tells you more stories about her and Mariana when they were younger and you tell her a little more about life in college and growing up with your grandmother. She continues to keep the martinis coming and you begin to feel a gentle buzz. Angeles’s hands begin to wander more and more. First, it is just incidental touches on your arm as she leans over to make a point in her story, flashing you a generous look at her cleavage in the process. Then her arm slides behind your head on the couch as she snuggles in closer, bringing her sizable breasts closer and it takes a lot of willpower to keep your eyes up on hers rather than on the sizable swells emerging from her strapless tight top. Between her soft body pressed against yours, the martinis, and her heady perfume, you soon feel yourself almost swooning. Angeles takes the pause in the conversation to rest her hand on your chest and slowly slide it down to rest on your cock straining at your pants to escape.
</div>\
<<speech "Angeles">>What have we here? It seems someone is feeling a bit left out. Should we let him out and give him some room to breathe?<</speech>>
<div align='center'>\
Your head is practically spinning as you feel her deft fingers opening your pants and you can’t help letting out a sigh of relief as your trapped cock finally has room to continue engorging. Angeles folds her fingers around the shaft and gives it a gentle squeeze eliciting a soft moan from you. The corners of Angele’s lips curl up in a slight grin as she begins to slowly stroke you. You try to sit up straighter but her other hand pushes against your chest forcing you back into the cushions.
</div>\
<<speech "Angeles">>Now… isn’t this so much better? I’ve been fantasizing about getting you and your cock alone with me. Now that I have you here, there are so many things I want. Where to start… Well, one thing is certain, we don’t want you to blow your load too quickly. Let’s head back to my bedroom and continue this there.<</speech>>
<div align='center'>\
You are slow to your feet but once you are, she takes hold of your cock and leads you forward like you are a dog on a leash following his owner. You feel a shiver run down your spine and your nipples are hard as rocks on your chest. Once in her bedroom, she makes short work of your shirt and pants leaving you only in your underwear as she shimmies out of her tiny dress and kneels on the bed. Her eyes glide over you taking in the details of your body and slowly licks her lips. Her eyes zero in on your cock and she pulls you closer by your shoulder so her other hand can rub on it more.
</div>\
<video src="content/peoples/angeles/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Your eyes follow the line of her neck down to the swell of her breasts in the bra that barely can contain her large bosoms. You lean forward giving them soft kisses before she pushes you back and then pulling you forward towards her lips. You pucker your lips to kiss her but are surprised when her tongue emerges at the last moment and licks your lips. It seems she prefers to kiss with her tongue and the two of you slip your tongues against each other while taking turns sucking on them. Your hand slips inside her panties and slides the gusset of the material to the side to free her rather firm dick. She gives your hard nipples a playful tweak making you shiver with delight once more. You sink to your knees to swallow the gland of her dick. You slide it to the back of your throat managing to take it to the root. Feeling rather proud of yourself, you slide back off and do it again but are only able to make it most of the way down before it jams up in the back of your mouth. It seems she is not even fully hard yet. The next bob down, you barely make it halfway down it. Working to relax the back of your throat, you manage to get it a bit deeper before she takes hold of your head and begins to fuck your mouth. She slips out of her bra and squeezes her breasts as she looks down at you looking back up at her.
</div>\
<video src="content/peoples/angeles/3.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
The urge to kiss her breasts is strong and you rise to kiss them. She has the body of a goddess and you feel like you could kneel before her to endlessly worship her body.
</div>\
<video src="content/peoples/angeles/4.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 50>>\
<<tongueskill>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<button "Continue" "Angeles quest">><<set $angelesquest = 2>><</button>>
\
\
\
<<elseif $angelesquest == 2>>\
<div align='center'>\
Your worship is interrupted however as she stands and pushes you back to the bed while tugging down your underwear and forcing you to sit. It seems you are not the only cock-hungry person in the room. She strokes your cock faster as the movement of her hands increases. You feel your balls beginning to tingle and you let her know that you are getting close. She abruptly stops and stands up.
</div>\
<video src="content/peoples/angeles/5.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Angeles">>I have other ideas for that cock of yours. Suck my cock while we give yours a break. Don’t worry though. I have plans for that precious cum of yours, $fname.<</speech>>
<div align='center'>\
She wiggles her hips making her cock sway enticingly right before your eyes. You don’t need any extra motivation to take her back into your mouth. You love how she feels in your mouth. You wish you could have her in your mouth more often. If only you were better at taking her massive size!
</div>\
<video src="content/peoples/angeles/6.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Angeles">>I want you in my ass. Come over here and show me how good a lover you are. Fill my hungry hole with that love stick of yours.<</speech>>
<div align='center'>\
She bends over presenting her ass to you. Goodness gracious but she looks amazing! You press against her pucker and you feel yourself slipping inside with very little effort. It is like her ass is sucking you in. How the fuck does she do that? Standing behind her as her knees rest on the edge of the bed, you take hold of her hips and begin to fuck her properly. She leans back and your arms circle around your tummy as you continue to thrust. Her cock is bobbing up and down making soft slapping sounds as it hits her belly and your hand.
</div>\
<video src="content/peoples/angeles/7.mp4" style="width: 100%;" autoplay loop></video>
<<blowjobskill>>\
<<timed 300ms>>\
<<sexskill>>\
<</timed>>\
<<button "Continue" "Angeles quest">><<set $angelesquest = 3>><<set $pdollsex to false>><<set $pdollcum to true>><</button>>
\
\
\
<<elseif $angelesquest == 3>>\
<<speech "Angeles">>¡Ay, papi chulo! Fuck me good. I’m going to cum. Keep going! Just like that. Oh yes! Fuck me, my lover boy!<</speech>>
<div align='center'>\
You feel the muscles of her ass pulsing and milking at your cock as she sprays her love juice across the bed leaving ropy wet marks on the material. She moans and looks back towards you as she encourages you on.
</div>\
<video src="content/peoples/angeles/8.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Angeles">>Now it’s your turn. Keep going. I want your cum. You can cum in my ass or on my ass so long as you cum.<</speech>>
<div align='center'>\
Not needing to be told twice, you push Angeles forward pinning her under you and forcing her hard cock into her still warm jizz on the bed as you pound into her as your life depended on it. Vaguely, you are aware of the grunting sounds you make with each thrust as you push her into the mattress beneath you. You are so close already; you can’t last much longer. At the last moment, you pull out deciding to spray your cum over her ass as a tribute offering to her glorious beauty. Feeling light-headed after the vigorous lovemaking, you collapse on the bed next to Angeles and pass out.
</div>\
<video src="content/peoples/angeles/9.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Angeles">>Hey, $fname. Wake up, dear. Can you hear me, $fname? I might have overdone it with the perfume. She said it was strong. Dammit, wake up $fname.<</speech>>
<div align='center'>\
You feel so fuzzy like your head is wading through a field of fuzzy cotton. Your eyes open and slowly come into focus looking up into the concerned eyes of Angeles.
</div>\
<<speech "Angeles">>You had me worried there for a bit. You passed out. Are you feeling alright? You know, for someone that just had some of the best sex of their life? Oh, thank god. Let me go get you some water.<</speech>>
<div align='center'>\
You rub your eyes as they continue to struggle to focus as you watch Angeles’s sexy ass and legs as they walk out the door. She quickly returns with a glass of water and her semi-flaccid cock swinging in counterpoint to the movement of her hips. You drink down the water feeling more like yourself.
</div>\
<<speech "Angeles">>There we go. Now the color is coming back to your cheeks. I’m going to call for a car to come to give you a ride home. You should probably take it easy the rest of the day.<</speech>>
<div align='center'>\
She makes the call and then helps you get dressed. Once the car arrives, she sees you to the door in a skimpy diaphanous robe. On the ride home, you roll down the windows and the rush of air continues to help clear your head. By the time you get home, you feel pretty much back to normal. Hopefully, you are not coming down with a virus or something!
</div>\
<<zeroarousal>>\
<<takeenergy 20>>\
<<sexskill>>\
<<timed 300ms>>\
<<willingness>>\
<</timed>>\
<<button "Arrive home" "House Front">>
<<set $angelesquest = 4>>
<<addhours 2>>
<<set $mcumcounter += 1>>
<<set $noorgasm = 0>>\
<<set $mkisscounter += 1>>
<<set $mgblowjobcounter += 1>>
<<set $mganalcounter += 1>>
<<set $angelesrepo += 1>>
<<set $pdollcum to false>>
<</button>>
\
\
\
\
\
<<elseif $angelesquest == 5>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<<speech "player" "$fname">>Hey Bonnie, I think I made a breakthrough. Can we chat?<</speech>>
<<speech "Bonnie">>Hey squirt. Yeah, let’s talk in the back. Okay, so what is it?<</speech>>
<<speech "player" "$fname">>I think I found Mariana’s work password. I have not had a chance to test it yet but I’m pretty certain it will log us into her profile. I don’t know what to do with it. She caught me in her home office and I can’t risk being caught again.<</speech>>
<<speech "Bonnie">>Give it to me and I’ll see what I can do with it. It will be much safer for me to give it a try from here where I can cover my tracks and not leave any evidence behind. Check back with me later.<</speech>>
<<button "Leave" "Map">><<set $angelesquest = 6>><</button>>
<</if>>\
<<if $angelesquest == 8>>\
<<speech "player" "$fname">>Hey Bonnie, tell me some good news!<</speech>>
<<speech "Bonnie">>I’ve got good news and better news. Have a seat. Okay, so first off, that password is fucking gold! It gave me access to pretty much everything in the lab. And I do mean EV...VER…Y...THING. Okay, well, not everything but enough. I found all sorts of juicy details that I’m sure pretty much every government agency on the planet would love to see. We will be able to crush Nemesis under a shitstorm the likes of which have never been seen. We are talking about biblical proportions, do you hear me?<</speech>>
<<speech "player" "$fname">>So was that the good or the better news?<</speech>>
<<speech "Bonnie">>The better news is that I found your folks. Alive and well. Well, they could be better but we are going to see to that. I found a video feed that shows their lab and living quarters. It is video only so I can’t talk directly to them. Plus, it is being monitored so I had to be a little clever. What is that expression? Are you okay?<</speech>>
<<speech "player" "$fname">>You found them! They are alive? Are they healthy? What do they look like? Can you show me?<</speech>>
<<speech "Bonnie">>Slow down! Take a deep breath. I know this is big news. Just take a minute to process it. There you go. Just breathe. There. Better? Okay. So, you know how CCTV cameras have an LED to indicate when they are on? Well, I know a little trick on how to toggle that LED off and on. Did your parents happen to teach you Morse code? They seem to know it pretty well. Once I was able to get their attention with the LED, they were able to give subtle head movements to acknowledge that they could understand me. Then they would tap their fingers or pencils on the table in what looked like an idle way to talk back.<</speech>>
<<speech "player" "$fname">>What did they say? Did you tell them about me? Do they know I’m here?<</speech>>
<<speech "Bonnie">>Simmer down. You still look like you are about to pop a blood vessel. I promise I’ll answer all your questions but let me cover the basics first. Your folks are about as clever as they come and they’ve been down there a long time. They have been working on escape plans but keep getting stuck with the problem of accessing the elevator. I think this is something we can help with, don’t you? Sit back down. I didn’t mean right now. It will be a little more complicated than just pushing a button and dropping in on dear ol’ mom and dad for dinner. Give me a bit more time and I’ll see what we can work out. We are looking at the end-game now, $fname. Start thinking about where you want to go and what you want to do after you leave here with your folks.<</speech>>
<div align='center'>\
The two of you chat a bit longer as you work out your excitement and brainstorm about possible obstacles of using the elevator and escape plans for getting out of town. As you leave the store, you have a smile that beams like the sun, and everyone that looks at you can’t help but smile in return.
</div>\
<<button "Leave" "Map">><<set $angelesquest = 9>><<set $finalquest = 1>><</button>>
\
\
\
<<elseif $finalquest == 2>>\
<<speech "player" "$fname">>Bonnie, what happened with Mariana’s account? What did you do?<</speech>>
<<speech "Bonnie">>The account was locked out. It seems that my poking around for dirt on Nemesis was noticed. They were better than I thought. Still, I think we have what we need at this point. It bites donkey balls that we can’t communicate with your folks to tell them the plan, once we figure it out anyway.<</speech>>
<<speech "player" "$fname">>I told Mariana about what I did with her password. She knows it was me.<</speech>>
<<speech "Bonnie">>You did what now? Do you have SHIT for brains? What were you thinking?<</speech>>
<<speech "player" "$fname">>I trust her, Bonnie. She wants to help. I didn’t tell her about you. At least not specifically. If anything happens, it’s all on me. To get her help, we need to give the IT department something to chase. A red herring so to speak. I thought you might have something that will get them chasing their own tails.<</speech>>
<<speech "Bonnie">>“Hmmm, I might have something. I have some countermeasures for anyone that tries to hack me. A lovely honey pot. I think I can make some tweaks here and there and lead their forensic experts on a merry chase around the world.<</speech>>
<<speech "player" "$fname">>That is your territory. I’m sure you know what you are doing and how to stay safe. I’m going to see what ideas Mariana has for getting my parents out of here.<</speech>>
<<speech "Bonnie">>Don’t worry, squirt. I’m a big girl. Give me until tonight to get the tool retrofitted and I’m sure by tomorrow morning, Mariana will look like their corporate poster child once more. Please, just be careful with her. I’m not sure your trust is well placed.<</speech>>
<<speech "player" "$fname">>Understood. Thanks, Bonnie! You are the best!<</speech>>
<<button "Leave" "Map">><<set $finalquest = 3>><</button>>
\
\
\
<<elseif $finalquest == 6>>\
<<speech "player" "$fname">>Hey Bonnie. I have something for you. This nifty little USB drive has some interesting procedural documents. Such as what the elevators do when there is a fire alarm. It is also an authorized USB disk for bringing files and uh… other applications back into the office.<</speech>>
<<speech "Bonnie">>Oh! You don’t say! How fascinating! Yes, I can see that it could be very useful indeed!<</speech>>
<<speech "player" "$fname">>I also know from a friend in the IT department and Mariana that your little honey pot as you called it is doing a magnificent job. I think you might just kill a few of the folks over there just from sheer exhaustion trying to keep up with it.<</speech>>
<<speech "Bonnie">>What’s this about a friend in the IT department? Is this new?<</speech>>
<<speech "player" "$fname">>Well, sort of. I only just found out that she works there. We have hung out a couple of times and it.. .well, it never came up somehow.<</speech>>
<div align='center'>\
Bonnie gives you an amused smirk as she takes the USB drive and then a playful wink.
</div>\
<video src="content/peoples/bonnie/1.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Bonnie">>I’ll take a look and we’ll see what we can figure out. I like your idea of the fire alarm. I’m assuming that it returns the elevator to the ground floor? Hmmm, clever idea. We just need to make sure the “package” is in the elevator at the right time. This USB stick could help with that too I suspect. I’ll send you a message when I’ve got something for you.<</speech>>
<<speech "player" "$fname">>This is really happening isn’t it? I mean, We are going to be able to pull this off. I’ve got a really good feeling.<</speech>>
<<speech "Bonnie">>Let’s not get ahead of ourselves but, yeah. I think we are so close now. We need to stay sharp and not let our guard down.<</speech>>
<<button "Leave" "Map">><<set $finalquest = 7>><</button>>
\
\
\
<<elseif $finalquest == 9>>\
<<speech "player" "$fname">>I’m tingling with anticipation. I can’t stand the suspense. What do you have, Bonnie?<</speech>>
<<speech "Bonnie">>Do you think you can get your IT girl crush to plug this USB drive into her work computer?<</speech>>
<<speech "player" "$fname">>Hmmm, perhaps. I think I can figure something out. Why; what is on it?<</speech>>
<<speech "Bonnie">>Nothing too crazy. Just a little worm that will give me a back door.<</speech>>
<<speech "player" "$fname">>I love it when you talk dirty to me, Bonnie.<</speech>>
<div align='center'>\
Bonnie smirks and gives you a questioning look as if she is not sure if you are joking or not.
</div>\
<<speech "Bonnie">>I only need one backdoor and it is off-limits to you, squirt. Anyway, once her computer is infected, it shouldn’t take too long before we get access back into the security systems. We need to let your ma and pa know when to make their move and access to the fire control systems to trigger the alarm. I’ll get a ping once the tunnel is open. And please, no more dirty jokes. They don’t suit you. We just have one more issue to overcome.<</speech>>
<div align='center'>\
As you take the USB drive from Bonnie, you lift your eyebrows in concern.
</div>\
<<speech "Bonnie">>I’m assuming that you are going to want to be the one to go rescue your parents. Of course you are. I’m not about to stand in your way. The problem is that whoever rescues them is going to be seen. I can’t block out the cameras before the fire alarm or it would be too suspicious. We don’t want to trigger any of the automated alerts or the three of you might not ever see the light of day again.<</speech>>
<<speech "player" "$fname">>Do you have an idea? Should I just put on a wig or something?<</speech>>
<<speech "Bonnie">>It will have to be a lot more realistic than just a fucking wig. You will need to look like someone completely different than normal. You are the whiz when it comes to biology. Do you think you can completely alter your appearance?<</speech>>
<<speech "player" "$fname">>Hmmm, that is an interesting idea. I wonder if I could BORROW someone else’s DNA to temporarily change. Oh, and I know just who I could be! I am not certain but I think I can use my gender-changing serums and use the SV40 genome vector and a DNA ligase to recombine my DNA with someone else’s. I’d probably be the first transgenic human if I can make it work.<</speech>>
<<speech "Bonnie">>I told you to stop talking dirty to me! You are starting to turn me on.<</speech>>
<div align='center'>\
Now it is your turn to give Bonnie a funny look before you realize that she is teasing you.
</div>\
<<speech "Bonnie">>You don’t need to get into the nuts and bolts of it. Just see what you can do. Come see me again when you have something and we’ll set the wheels in motion. And get me that backdoor. I’m itching to get back in there again. Into the backdoor I mean. Oh fuck, you know what I mean. Stop looking at me like that or I’ll slap you.<</speech>>
<div align='center'>\
You can’t help but giggle as you leave the shop.
</div>\
<<button "Leave" "Map">><<set $finalquest = 10>><<set $stss = 0>><<set $stsv = 0>><</button>>
\
\
\
<<elseif $finalquest == 15>>\
<div align='center'>\
You remove the stopper at the top of the vial and quickly toss back the liquid inside and you feel its contents burning slightly as it slips down your throat. You remove all your clothes and look at yourself in the mirror looking for any changes. You chide yourself as you know that the changes don’t take instant effect. However, you are too excited to see if it will work and to see what the change looks like. You continue to examine your body looking and feel yourself getting turned on staring at your naked body. You begin to feel a warmth in your tummy as you think you begin to feel the changes start to take effect. Your nipples begin to tingle next and you softly caress them. As your fingers brush over the pointy nubs, the feeling intensifies. It becomes a more intense itch and you see your body begin to change shape. You stare at yourself in fascination and look at the clock noting the time it took before it began. The itching turns to a dull burning sensation as your skin begins to heat up as the changes accelerate. Should this be turning you on so much? Your hand wanders down to Lianna’s cock… or is it your cock in Lianna’s body? You don’t dwell on the thought too much as you stroke yourself idly as you continue to watch yourself. The feeling finally begins to fade back down to an itch and then a tingle before eventually fading out altogether.
</div>\
<img src="content/peoples/lianna/5.jpg">
\
<div align='center'>\
You look yourself over admiring how good you look. You feel a slight tinge of guilt as if you were intruding on her privacy somehow. The more you think about it, the more you realize just how dangerous this technology could be in the wrong hands. You swear to yourself that you will make sure that no one else will ever learn how it was done. You decide that if you don’t put on some clothes that you wouldn’t be able to hold back from jerking yourself off. Wanting to try an experiment to test the redistribution of your body mass, you remember a three-piece suit that you bought that was a bit too small for you and decide it try it on and see how it fits.
</div>\
<img src="content/peoples/lianna/6.jpg">
\
<div align='center'>
After trying it on, you discover that the jacket is large enough to fit now but the slacks are even tighter than they were in your male body. It seems that a lot of your upper body mass was moved down to your legs and hips effectively lowering your center of gravity.
</div>\
<img src="content/peoples/lianna/7.jpg">
\
<div align='center'>\
As you begin taking off the suit, you feel the tingling sensation starting again. You are changing back already. That didn’t last very long! The feeling intensifies and it reverses course taking the same period of time to undo the changes. You begin to think of what you might have done wrong to cause the changes to be so short-lived. There must have been something wrong with the DNA ligase enzyme you used. In the next batch, you decide you will use a stronger enzyme.
</div>\
<<button "Your room" "Player Room">><<set $finalquest = 16>><</button>>
\
\
\
<<elseif $finalquest == 16>>\
<img src="content/location/pcshopb.jpg" style="max-width: 70%;">
\
<div align='center'>\
You stop in to visit Bonnie to give her the good news. Is it finally time to set the date for the great escape?
</div>\
<<speech "player" "$fname">>Hey, Bonnie! I did it! My formula worked! I copied someone else’s DNA onto mine. It only lasted a short time but I should be able to stretch it a bit longer with a little tweak.<</speech>>
<<speech "Bonnie">>Congratulations, squirt. I can tell you are really excited about that. I have no concept of how hard that would have been for you but I’m guessing since I’ve never heard of anyone else doing that, it is something extraordinary.<</speech>>
<<speech "player" "$fname">>Well, there is a slew of ethical concerns not to mention legal implications. I can’t say with any certainty if I’m the first but I might be. How are things coming on your end.<</speech>>
<<speech "Bonnie">>I’m all set. We just need to set the date and time and I’ll send the message to your parents. I was just waiting for you to come up with a disguise. I didn’t think you were going to take it so far!<</speech>>
<<speech "player" "$fname">>I’ll get a DNS sample from Mariana and tell them when they should be out of town and then we should be good. As for the time, I was thinking we could make it 6:14 PM.<</speech>>
<<speech "Bonnie">>That is an oddly specific time. Why did you pick that?<</speech>>
<<speech "player" "$fname">>Do you remember the date they were abducted?<</speech>>
<<speech "Bonnie">>June 14th… Oooohhhh, I see what you did there. Yes, that time should work well. The offices should be mostly empty by then.<</speech>>
<<speech "player" "$fname">>I’ll text you once I confirm when Mariana and family are leaving.<</speech>>
<<button "Go to Mariana's home office" "Final quest">><<set $finalquest = 17>><</button>>
\
\
\
<<elseif $finalquest == 17>>\
<div align='center'>\
On your way to your room, you notice the light from under Mariana’s office door and give it a polite knock.
</div>\
<<speech "Mariana">>It’s open. You can come in.<</speech>>
<<speech "player" "$fname">>Mariana, I hope I’m not disturbing you. I saw your light on and just wanted to see how you are doing.<</speech>>
<<speech "Mariana">>Oh, that is so sweet of you! My door is always open for you, $fname. I was just doing a little work to finish our holiday plans. I’ve been meaning to go someplace fun for a while now but you know me. I’m driven and have a hard time taking time off. Chanel and Jordi are so excited. Even Natalie is excited even though it will be a working trip for her. It would have been fun to bring you along too, but… I know. I hope things for you are… coming along well? Good.<</speech>>
<<speech "player" "$fname">>Where are you off to? Someplace warm and sunny with lots of water nearby I would guess.<</speech>>
<<speech "Mariana">>We are headed for Ibiza. Fun in the sun by day and then dance the night away at the clubs.<</speech>>
<<speech "player" "$fname">>I am rather jealous! I’ve always wanted to visit Ibiza. Perhaps someday. Who knows. So, when is the big trip?<</speech>>
<<speech "Mariana">>We fly out on tomorrow. We’ll have a nice breakfast and then head out.<</speech>>
<<speech "player" "$fname">>I wish there was a way I could thank you for… well, everything. You have been so amazing. Better than I could have ever hoped. I wish there was a way I could repay your kindness. Everything I think of seems so… inadequate and trite.<</speech>>
<<speech "Mariana">>Come here, you. Give me a hug. Your words are enough. I’m sure going to miss you. I’ve grown rather fond of having you around.<</speech>>
<div align='center'>\
As you hug Mariana close, her large breasts press into you and her floral perfume wafts up to your nose. You feel yourself getting turned on. You need a DNA sample after all. No time like the present. Your hands drift down to squeeze Mariana’s ass as you press yourself into her harder.
</div>\
<<speech "Mariana">>Oh! It looks like you have other ideas. You don’t need to do this but I’m not going to push you away if this is what you want.<</speech>>
<<speech "player" "$fname">>Please, Mariana. Let me taste your amazing cock one more time. Once more for the road as they say.<</speech>>
<div align='center'>\
You quickly fish out her cock which is still growing in your hand. You are going to miss this cock. You stroke it until it gets fully hard before sliding it between your lips. As you take it deep, you remember back to how much you struggled the first time trying to take Marianna’s dick. You’ve come so far since then. You continue to flashback over all the dick you’ve had since moving to Futaland. In many ways, you are not the same boy that showed up on the doorsteps to this home. You almost giggle at the thought before turning all your attention to Mariana and showing her a proper cock bobbing thank you. Your hands slide up the back of her thighs as you brace yourself to take her as deep as you can until you gag. What a monster cock! What you wouldn’t do to have a cock like that. Well, isn’t that what you are doing now, you realize. You grip her dick with your hand and give it some rapid pumps as your other hand caresses and squeezes her round ass. You are going to miss Mariana so much. She has been so good for you. You hope that she doesn’t take too much flack for what you are about to do. Mariana runs her fingers through your hair as she coos about how good it feels. You can tell she is getting close.
</div>\
<video src="content/peoples/mariana/7.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>Oh yes, you have gotten so good at this! I’m not sure if I’m going to miss your mouth or your ass more. Get ready, I’m about to nut on your face. Oooohhhh gawd, yes!<</speech>>
<div align='center'>\
She takes half a step back as she rapidly strokes herself to completion sending spurt after hot spurt of thick chunky cum over your face and open mouth. It feels so hot as it lands on your face. Mariana kneels and gives you a surprisingly tender kiss not caring that her cum is coating half your face.
</div>\
<video src="content/peoples/mariana/8.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Mariana">>Please take care of yourself, dear. If I don’t get a chance to see you again, I hope everything goes well for you.<</speech>>
<div align='center'>\
You kiss her back as your eyes mist up a little. You fight hard to keep the tears at bay and quickly excuse yourself where you expeditiously make your way back to your room. Taking the sample vial, you carefully spit the cum you collected inside and then wipe the cum from your face and scrape it in as well. You reach for a tissue to wipe the rest of your face and then blow your nose which took the brunt of your emotional restraint, expelling the tears all at once into the used tissue.
You take a few minutes to compose yourself and bring your emotions back under control. You’ll need to get this sample back to the lab to produce the Mariana doppelganger serum. You also take a moment to send Bonnie a message letting her know when Mariana is leaving. Finally, you sit on the corner of your bed feeling very tired.
</div>\
<<addarousal 50>>\
<<takeenergy 10>>\
<<blowjobskill>>\
<<timed 300ms>>\
<<cumplayskill>>\
<</timed>>\
<<timed 600ms>>\
<<willingness>>\
<</timed>>\
<<set $mgblowjobcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<button "Message from Bonnie" "Final quest">><<set $finalquest = 18>><</button>>
\
\
\
<<elseif $finalquest == 18>>\
<div align='center'>\
Bonnie's message: Everything is all set on my end. You can make the change in Mariana’s office. I’ll make sure it is unlocked for you. There will be a black town car waiting out the front door when you get out.
You are exhausted after the changes. Best to call it a night.
</div>\
<<button "Sleep" "Final quest">><<set $finalquest = 19>><</button>>
\
\
\
<<elseif $finalquest == 19>>\
<img src="content/peoples/player/mpsleep.png">
\
<div align='center'>\
You didn't slept much because you are very excited. Mariana and her family already left the house.
</div>\
<img src="content/location/lab_player.jpg" style="max-width: 80%;">
\
<div align='center'>\
You going to the lab as normal and work until the time has come.
</div>\
<<button "Work" "Final quest">><<set $finalquest = 20>><</button>>\
\
\
\
<<elseif $finalquest == 20>>\
<div align='center'>\
It’s finally time! You sneak into Mariana's office. You undress and grab one of Mariana’s spare change of clothes from her little closet setting it out so it will be ready to go. You are not sure how long the improved serum will last but you want to make sure you maximize your time in your disguise. Taking a deep breath, you open the Mariana doppelganger serum and down it. You begin to put on Mariana's clothes as you feel the tingle turning to an itch. By the time you are done changing, the itch has turned to a burning. It takes all your concentration to walk down the hall as the transformation completes. By the time you reach the lobby, the sensation has faded and you see in the reflection off the glass of a painting that your face indeed has taken on that of Mariana’s visage.
</div>\
<img src="content/location/lab_reception.jpg" style="max-width: 70%;">
\
<<speech "Kimberlee">>Good evening Miss Cordoba. Have a pleasant night.<</speech>>
<<speech "player" "$fname">>Oh! Thank you, uh… Kimberlee. I wasn’t expecting you to be working so late.<</speech>>
<<speech "Kimberlee">>I was just finishing up for the night, Miss. I’m surprised to see you here. I don’t remember seeing you come in either come to think of it. I thought I saw that you had gone out of town. Did you forget something?<</speech>>
<<speech "player" "$fname">>Urgent business in the basement. I delayed my trip by a day. Nothing to be concerned about though. Have a good night Kimberlee.<</speech>>
<<speech "Kimberlee">>Good night Miss.<</speech>>
<img src="content/location/elevator.jpg" style="max-width: 40%;">
\
<div align='center'>\
Your heart is beating so hard, you are scared that Kimberlee can hear it all the way over at the reception desk. You take a deep breath as the elevator doors slide open and step inside. You look at your watch and confirm that it is 6:14 PM. You are right on time. You press the button for your parents' floor and feel the elevator descending. Your heart is beating even faster now. In just a short time, you are going to see your parents again! It has taken so much to get you to this point and have put so much thought into what you would say when you see them again. All of that will need to go out the window now that you look like Mariana. You feel the elevator slowing down and come to a halt. As the doors slowly open, you see two people there waiting dressed in white lab coats. You feel your knees going weak and you rest your hand against the side of the elevator for support. You try to speak but only a soft frog-like sound comes out. You swallow hard and wave them in.
</div>\
<<speech "player" "$fname">>Please, come in. It’s time to get you out of here.<</speech>>
<div align='center'>\
As they step into the elevator, a synthetic voice sounds from the ceiling.
</div>\
<<speech "Random" "Voice">>Unauthorized personnel detected. Please enter your 9 digit PIN to override. You have 15 seconds to enter your PIN before security is alerted. All unauthorized personnel, please exit the elevator. You have 5 seconds....<</speech>>
<div align='center'>\
The three of you look at each other as the feeling of panic starts to set in. Your parents, holding hands tightly, are just about to step out of the elevator as the voice counts down from 5. With one foot out the door, the voice in the elevator says “3” and then an alarm sounds.
</div>\
<<speech "player" "$fname">>That’s the fire alarm. Please, stay inside. This is part of the plan.<</speech>>
<div align='center'>\
It is so strange hearing Mariana’s voice coming out of your mouth. The elevator door begins to close and you feel it begin to feel it rising back up the shaft. Your mother turns to your father and gives him a big hug. You can’t help staring at them as you study their faces. They look the same but still so different. Their hair has noticeable grey streaks and there are wrinkles around their eyes and mouth that you don’t remember seeing before. You want so desperately to tell them who you are but realize that now is not the time. It would lead to too many questions. There will be time enough for explanations once the serum has worn off and they can see you. All the same, you feel a tear dropping down your cheek as you watch them hugging, feeling a pang of jealousy. As you feel the elevator slowing down, you reach up and wipe the tear coming down from your other cheek.
</div>\
<<speech "player" "$fname">>Please follow me, I’ll have you out soon. Just stay quiet and I’ll take care of you. I know you will have a lot of questions but they can wait just a little longer.<</speech>>
<div align='center'>\
You step boldly out of the elevator looking at the exit as you begin to walk rapidly towards it. You hear the footsteps of your parents close behind.
</div>\
<<speech "Kimberlee">>STOP! Right there! I’ve locked the doors and security is on their way. I don’t know who you are but you are not Mariana Cordoba!<</speech>>
<<speech "player" "$fname">>Kimberlee, it’s me! Please, don’t do this. I need to go right now.<</speech>>
<<speech "Kimberlee">>I don’t know you. Please, just lay down on the ground and it will go easier for you.<</speech>>
<<speech "player" "$fname">>No! Kimberlee, it’s $fname. These are my parents. I need to get them out of here.<</speech>>
<div align='center'>\
There are shocked expressions all around. Kimberlee’s look quickly turns to horror and your parents’ expression turns towards bewilderment as they try to understand. You hear the sounds of clattering feet as guards swarm out of two side hallways with their weapons drawn. You stand in front of your parents with your arms spanning out to protect them when you feel the taser barbs hit and everything goes black.
</div>\
<<button "Epilogue" "Final quest">><<set $finalquest = 21>><</button>>
\
\
\
<<elseif $finalquest == 21>>\
<div align='center'>\
Today is just like every other day since your capture. The same mind numbering routine. Wake up at 7 AM. Thirty minutes for personal hygiene and then breakfast. It is always the same routine breakfast smoothie which apparently has all the nutrients you need to sustain your miserable existence even if it tastes like chalk. Then to your lab where you are forced to work under penalty of harm to your parents. Not a day goes by that you don’t regret the wasted time you had with your parents in the elevator. Damn Nemesis Corp. Damn them straight to hell!
</div>\
<div align='center'>\
As you are grinding your teeth working on the current problem, you notice something unusual out of the corner of your eye. You look up and see the bloody security camera that watches every move you make. Just before you glance back down at your workstation, you notice the LED on the camera turn off and then back on again. It is enough to make you do a double-take. Your heart skips a beat. You look back down while keeping the camera in your peripheral vision. You see the light continue to flicker on and off. As you take in the message in Morse code, you can’t help the smile slowly spreading across your face. There is new hope!
To be continued...
Congratulations on reaching the end of the game Futaland. If you enjoyed it, please consider making a donation by supporting the developers on their Patreon page.
The main storyline finished but we still working on the game adding more side quests, dates and more levels to the lab. You can go back to Futaland and discover everything.
</div>\
<<button "Futaland" "Map">><</button>>
<</if>>\
<img> <img> <div>\ <<speech>>
\ \ Always space never space
<div>\ <<speech>>
<img src="content/peoples/chanel/cdining.jpg" style="max-width: 100%;">
<video src="content/peoples/maid/4/11.mp4" style="width: 100%;" autoplay loop></video>
<video @src="'content/feets/m' + random(11, 13) + '.mp4'" autoplay loop></video>
Peek
<<addarousal 20>>\
<<takeenergy 5>>\
Sex, Cum -10
<<zeroarousal>>\
<<takeenergy 10>>\
<<set $pdollsex to true>>\
<<set $pdollcum to true>>\
<<set $noorgasm = 0>>\
<<set $pussysize += 1>>\
<<set $analsize += 1>>\
<<if $locked is true>>\
Skills
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<handskill>>\
<</timed>>\
<<timed 900ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 1200ms>>\
<<sexskill>>\
<</timed>>\
<<tongueskill>>\
<<handskill>>\
<<blowjobskill>>\
<<sexskill>>\
<<cumplayskill>>\
<<willingness>>\
<<pissplay>>\
Repo min sex limit 5
<<set $marianarepo += 1>>\ /* MARIANA RELATIONSHIP POINT */
<<set $chanelrepo += 1>>\ /* CHANEL RELATIONSHIP POINT */
<<set $natalierepo += 1>>\ /* NATALIE RELATIONSHIP POINT */
<<set $jordirepo += 1>>\ /* JORDI RELATIONSHIP POINT */
<<set $bonnierepo += 1>>\ /* BONNIE RELATIONSHIP POINT */
<<set $venusrepo += 1>>\ /* VENUS RELATIONSHIP POINT */
<<set $kimberleerepo += 1>>\ /* KIMBERLEE RELATIONSHIP POINT */
<<set $angelesrepo += 1>>\ /* LIANNA RELATIONSHIP POINTS */
<<set $liannarepo += 1>>\ /* LIANNA RELATIONSHIP POINTS */
Counters
/* MALE */
<<set $mcumcounter += 1>>\ /* CUM */
<<set $mkisscounter += 1>>\ /* KISS */
<<set $mghjcounter += 1>>\ /* GIVE HANDJOB */
<<set $mrhjcounter += 1>>\ /* RECEIVE HANDJOB */
<<set $mpussylickcounter += 1>>\ /* LICK PUSSY */
<<set $mcocklickcounter += 1>>\ /* LICK COCK */
<<set $mgblowjobcounter += 1>>\ /* GIVE BLOWJOB */
<<set $mgdeeptcounter += 1>>\ /* DEEPTHROAT COCK */
<<set $mrblowjobcounter += 1>>\ /* RECEIVE BLOWJOB */
<<set $mpussyfuckcounter += 1>>\ /* FUCK PUSSY */
<<set $mganalcounter += 1>>\ /* FUCK ANAL */
<<set $mranalcounter += 1>>\ /* RECEIVE ANAL */
<<set $mcumswallowcounter += 1>>\ /* SWALLOW CUM */
/* FEMALE */
<<set $fcumcounter += 1>>\ /* CUM */
<<set $fkisscounter += 1>>\ /* KISS */
<<set $fghjcounter += 1>>\ /* GIVE HANDJOB */
<<set $frhjcounter += 1>>\ /* RECEIVE HANDJOB */
<<set $fgpussylickcounter += 1>>\ /* LICK PUSSY */
<<set $fcocklickcounter += 1>>\ /* LICK COCK */
<<set $fgblowjobcounter += 1>>\ /* GIVE BLOWJOB */
<<set $fgdeeptcounter += 1>>\ /* DEEPTHROAT COCK */
<<set $frpussylickcounter += 1>>\ /* RECEIVE PUSSY LICK */
<<set $frpussyfuckcounter += 1>>\ /* RECEIVE PUSSY FUCK */
<<set $franalcounter += 1>>\ /* RECEIVE ANAL */
<<set $fstraponcounter += 1>>\ /* STRAP ON */
<<set $fcumswallowcounter += 1>>\ /* CUM SWALLOW */
/* SHEMALE */
<<set $scumcounter += 1>>\ /* CUM */
<<set $skisscounter += 1>>\ /* KISS */
<<set $sghjcounter += 1>>\ /* GIVE HANDJOB */
<<set $srhjcounter += 1>>\ /* RECEIVE HANDJOB */
<<set $spussylickcounter += 1>>\ /* LICK PUSSY */
<<set $scocklickcounter += 1>>\ /* LICK COCK */
<<set $sgblowjobcounter += 1>>\ /* GIVE BLOWJOB */
<<set $sgdeeptcounter += 1>>\ /* DEEPTHROAT COCK */
<<set $srblowjobcounter += 1>>\ /* RECEIVE BLOWJOB */
<<set $spussyfuckcounter += 1>>\ /* FUCK PUSSY */
<<set $sganalcounter += 1>>\ /* FUCK ANAL */
<<set $sranalcounter += 1>>\ /* RECEIVE ANAL */
<<set $scumswallowcounter += 1>>\ /* SWALLOW CUM */
<<if $CurEN == 0 and $CurOG < $MaxOG and $venuscum is false>>\
<div align='center'>\
You run out of energy and can not make her cum.
</div>\
<img src="content/peoples/venus/dis.jpg" style="max-width: 100%;">
\
<<speech "Venus">>I am very disappointed. I let you go now, but I want you to finish me if I see you again.<</speech>>
<<button "Leave" "Lab Reception">><<set $pdollsex to false>><</button>>
\
\
\
<<elseif $CurAR >= $MaxAR and $CurOG < $MaxOG and $locked is false and $venuscum is false>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<video src="content/peoples/venus/office/scum.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
You cum too early, and she is not happy about it.
</div>\
<img src="content/peoples/venus/dis.jpg" style="max-width: 100%;">
\
<<zeroarousal>>\
<<set $noorgasm = 0>>\
<<set $scumcounter += 1>>\
<<speech "Venus">>I am very disappointed. I let you go now, but I want you to finish me if I see you again.<</speech>>
<<button "Leave" "Lab Reception">><<set $pdollcum to false>><</button>>
\
\
\
<<elseif $CurOG >= $MaxOG>>\
<<set $venuscum to true>>\
<video src="content/peoples/venus/office/scummed.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
She is spraying her hot cum all over your breast.
</div>\
<<set $CurOG = 0>>\
<<willingness>>\
<<set $venusrepo += 1>>\
<<if $locked is true>>\
<<speech "Venus">>You weren't that bad. I will clear your files. You are free to go now.<</speech>>
<div align='center'>\
Your penis is locked, so you can not cum.
</div>\
<<button "Leave" "Lab Reception">><<set $pdollsex to false>><</button>>
<<else>>\
<<speech "Venus">>You weren't that bad.<</speech>>
<<button "Cum" "Event: Venus Office Shemale">>
<<set $scene = 10>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<<takeenergy 2>>\
<</button>>
<</if>>\
\
\
\
<<elseif $scene == 1>>\
<video src="content/peoples/venus/office/ssuck.mp4" style="width: 100%;" autoplay loop></video>
<<blowjobskill>>\
<<set $sgblowjobcounter += 1>>\
\
\
\
<<elseif $scene == 2>>\
<video src="content/peoples/venus/office/ssucked.mp4" style="width: 100%;" autoplay loop></video>
<<sexskill>>\
<<set $srblowjobcounter += 1>>\
\
\
\
<<elseif $scene == 3>>\
<video src="content/peoples/venus/office/sfucked.mp4" style="width: 100%;" autoplay loop></video>
<<sexskill>>\
<<set $sranalcounter += 1>>\
<<set $analsize += 1>>\
\
\
\
<<elseif $scene == 10>>\
<video src="content/peoples/venus/office/scum.mp4" style="width: 100%;" autoplay loop></video>
<<zeroarousal>>\
<<set $noorgasm = 0>>\
<<set $scumcounter += 1>>\
<<speech "Venus">>I will clear your files. You are free to go now.<</speech>>
<<button "Leave" "Lab Reception">><<set $pdollcum to false>><</button>>
<</if>>\
<<if $scene < 10 and $venuscum is false>>\
<div align='center' style='color:#f0ffff;'><b>Venus`s Orgasm Level</b></div>
<div id="horizontalorgasmbarbkg" class="hzbarbkg">\
<div id="horizontalorgasmbar" class="hzbar">\
</div>\
</div>\
<<script>>$(document).one(':passagerender', function (ev) {
Orgasm(State.variables.CurOG, State.variables.MaxOG, "horizontalorgasmbar", true, ev.content);
});<</script>>
\
<<button "Suck her" "Event: Venus Office Shemale">>
<<set $scene = 1>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<<if $locked is true>>\
<div align ='center'>\
Your cock is locked, and you can't use it.
</div>\
<<else>>\
<<button "Get sucked" "Event: Venus Office Shemale">>
<<set $scene = 2>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<</if>>\
<<button "Get fucked" "Event: Venus Office Shemale">>
<<set $scene = 3>>\
<<set $CurOG += 10>>\
<<takeenergy 2>>\
<<addarousal 5>>\
<</button>>
<</if>>\<<if $endingpoint == 1>>\
<<set $chanelmaidendingreplay to true>>\
<img src="content/location/hallway_down.jpg">
\
<div align='center'>\
You have just stepped into the house when you feel a sharp sting in your neck. Your hand goes to swat at it but you see the world spinning around you and all goes black.
</div>\
<<takeenergy 10>>\
<<button "Continue" "Ending Cleaning">><<set $endingpoint = 2>><<set $mendingpoint = 1>><<set $fendingpoint = 1>><<set $sendingpoint = 1>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 2>>\
<<set $pdollsex to true>>\
<<if $pgender is "male">>\
<<if $mendingpoint == 1>>\
<div align='center'>\
You open your eyes groggily feeling very disoriented. You try to sit up but you have no strength to do so. All you see is fuzzy pink hair. Where the hell are you? You feel your underwear being pulled down your legs and try desperately to roll over or thrash your legs but nothing moves. You try to yell or scream but your tongue feels thick in your mouth and only mumbles come out.
</div>\
<video src="content/peoples/chanel/2/m1.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Ending Cleaning">><<set $mendingpoint = 3>><</button>>
\
\
\
\
\
<<elseif $mendingpoint == 3>>\
<div align='center'>\
You feel hands on your ass spreading your cheeks and your eyes go wide. Who is that behind you? What is going on? The fog is quickly lifting from your mind and you are taking in more of your surroundings despite your inability to move. Is that Chanel’s perfume you smell? You feel a tongue slide up and down the crack of your ass and swirl around the tight crinkle of your hole. It feels amazing. If only you could move!
</div>\
<video src="content/peoples/chanel/2/m2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
It seems the only thing you have control over is your eyes but you can sense everything. You smell Chanel’s sweet perfume, you hear the creak of the bed as the weight on the bed shifts.
</div>\
<<addarousal 20>>\
<<button "Continue" "Ending Cleaning">><<set $mendingpoint = 4>><</button>>
\
\
\
\
\
<<elseif $mendingpoint == 4>>\
<div align='center'>\
You feel the weight on the bed shift and pressure on your thigh as someone’s leg presses against yours. You feel a hot and hard cock pressing against your backdoor slowly feeding their cock into your ass. It is filling you up but they are taking their time with it and giving you a chance to stretch open to accommodate them. After a minute or so, you feel them bottom out as their pelvis presses against your backside. As they lay down across your back, you feel a soft pair of breasts press into your back and feel hot breath on your neck.
</div>\
<<speech "Chanel">>Wakey wakey sexy. Time to get fucked.<</speech>>
<video src="content/peoples/chanel/2/m3.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Cleaning">><<set $mendingpoint = 5>><</button>>
\
\
\
\
\
<<elseif $mendingpoint == 5>>\
<div align='center'>\
She starts off gentle sawing her hips back and forth driving her dick into you slowly. Then she sits back and taking hold of your hips begins to fuck your ass in earnest. As she does, you begin to feel the strength slowly returning to your limbs. As it does, you begin to push back up trying to roll over but Chanel doesn’t let you.
</div>\
<video src="content/peoples/chanel/2/m4.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Just where do you think you are going? I’m not done with you yet.<</speech>>
<<speech "player" "$fname">>Just what the hell do you think you are doing Chanel? You can’t just drug and rape me!<</speech>>
<div align='center'>\
She drives her cock into you hard to punctuate her next statement.
</div>\
<<speech "Chanel">>I… Told… You… To… Call... Me… Princess… Chanel… Got… It?<</speech>>
<div align='center'>\
You drop your hands to your side surrendering to her cock and she returns to her more sensual strokes.
</div>\
<<speech "Chanel">>You knew the consequences of not cleaning my room. You were warned. I should have told my mom everything and had your ass kicked out of town. But I decided that it would be so much more fun to punish you myself. I’m not ready to let you go just yet.<</speech>>
<<speech "player" "$fname">>You could have just called me to your room. You didn’t have to be so heavy-handed to drug me and knock me out.<</speech>>
<<speech "Chanel">>I am making the rules and I decide your punishment. This way, it is all my pleasure and you just get to lay there and take it. Enough talk now, time for me to take your ass bitch.<</speech>>
<<addarousal 20>>\
<<button "Continue" "Ending Cleaning">><<set $mendingpoint = 6>><</button>>
\
\
\
\
\
<<elseif $mendingpoint == 6>>\
<div align='center'>\
Despite your strength beginning to return, you think it best to obey Chanel. Besides, the jokes on her because despite not being able to move much, you are still able to feel everything. Her cock feels wonderful in your ass and you pull your knees underneath you to lift it higher for her also letting you push back to meet her thrusts.
</div>\
<<speech "Chanel">>Such a hot little bitch for my cock. Rollover onto your back. I want to watch you as I fuck you.<</speech>>
<video src="content/peoples/chanel/2/m5.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Cleaning">><<set $mendingpoint = 7>><</button>>
\
\
\
\
\
<<elseif $mendingpoint == 7>>\
<div align='center'>\
You spin onto your back and lift your legs as Chanel pushes back in. You reach down to stroke your cock but Chanel slaps your hand away. Her thrusts are increasing in speed. It won’t be long now. Just a few strokes later, she pulls out and crawls over you to sit on your chest as she strokes herself over your mouth. Angling her cock down to your mouth, she unleashes her load which sprays into the back of your throat.
</div>\
<<speech "Chanel">>Swallow it all down. You need your vitamins. There’s a good boy.<</speech>>
<video src="content/peoples/chanel/2/m6.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Have you learned your lesson? Every time you forget to clean my room, you will be punished. Now get out. Your princess is sleepy.<</speech>>
<div align='center'>\
You stand up on wobbly legs. You are still a bit weak after being drugged but you manage to pick up your clothes and walk out the door closing it softly behind you.
</div>\
<<addhours 1>>\
<<addarousal 20>>\
<<willingness>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<timed 900ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $analsize += 1>>\
<<set $mgblowjobcounter += 1>>\
<<set $mranalcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<set $chanelrepo += 1>>\
<<button "Leave" "Hallway Down">><<set $mendingpoint = 1>><<set $roomcleanend to false>><<set $pdollsex to false>><</button>>
<</if>>\
\
\
\
\
\
\
\
\
\
\
<<elseif $pgender is "female">>\
<<if $fendingpoint == 1>>\
<div align='center'>\
You open your eyes groggily feeling very disoriented. You try to sit up but you find that your arms have been tied above your head. You pull on your legs and find them similarly bound. Looking around the room only confuses you more. Where the hell are you? Just then, Chanel walks into the room with a smug look on her face.
</div>\
<video src="content/peoples/chanel/2/f1.mp4" style="width: 100%;" autoplay loop></video>
<<speech "player" "$fname">>Chanel, what the hell is going on?<</speech>>
<<speech "Chanel">>Calm down $fname, you are in the basement. And I told you to call me Princess Chanel! You knew the consequences of not cleaning my room. You were warned. I should have told my mom everything and had your ass kicked out of town. But I decided that it would be so much more fun to punish you myself. I’m not ready to let you go just yet.<</speech>>
<<speech "player" "$fname">>You could have just called me to your room. You didn’t have to be so heavy-handed to drug me and knock me out.<</speech>>
<<speech "Chanel">>I am making the rules and I decide your punishment. This way, it is all my pleasure and you just get to lay there and take it. Enough talk now, I have other plans for your mouth.<</speech>>
<<button "Continue" "Ending Cleaning">><<set $fendingpoint = 3>><</button>>
\
\
\
\
\
<<elseif $fendingpoint == 3>>\
<div align='center'>\
Chanel steps up next to the bed you are tied to and swings her leg over it to straddle your head bringing her hard cock to your mouth. Pressing down with her body, it slides to the back of your mouth and down your throat. She leaves it there for a few moments and you quickly feel the need to breathe grow in your body forcing you to struggle against your bonds. Finally, Chanel relents and sits back on your chest allowing you to breathe.
</div>\
<video src="content/peoples/chanel/2/f2.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Cleaning">><<set $fendingpoint = 4>><</button>>
\
\
\
\
\
<<elseif $fendingpoint == 4>>\
<div align='center'>\
She takes hold of the back of your head and shoves her dick back in pulling you against her as she fucks your face.
</div>\
<<speech "Chanel">>Take my cock bitch. Take it all. You dirty little slut.<</speech>>
<video src="content/peoples/chanel/2/f3.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Cleaning">><<set $fendingpoint = 5>><</button>>
\
\
\
\
\
<<elseif $fendingpoint == 5>>\
<div align='center'>\
She pulls out and slides further up your body and sits on your face. With your arms tied around you, your head has no wear to go and Chanel’s ass plops down right on your lips.
</div>\
<<speech "Chanel">>Eat my asshole. Get your tongue up in there. Yes, just like that. Who’s a good little whore? Yes, that’s right; you are.<</speech>>
<video src="content/peoples/chanel/2/f4.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Cleaning">><<set $fendingpoint = 6>><</button>>
\
\
\
\
\
<<elseif $fendingpoint == 6>>\
<div align='center'>\
After several minutes of tonguing her ass, she stands back up and walks around to the foot of the bed where she untiles your legs.
</div>\
<<speech "Chanel">>Spread your legs for me. My cock wants a taste of your sweet pussy.<</speech>>
<div align='center'>\
Looking down over your breasts, you watch Chanel’s glistening hard cock as it bobs back and forth as she crawls between your legs and lines up with your slit. She rubs the head up and down between the lips getting your warmed up. Flexing her ass, she pushes inside and is buried completely in just two strokes. Leaning forward resting her hands on your jiggling breasts, she fucks your pussy.
</div>\
<video src="content/peoples/chanel/2/f5.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Cleaning">><<set $fendingpoint = 7>><</button>>
\
\
\
\
\
<<elseif $fendingpoint == 7>>\
<<speech "Chanel">>If I untie you, will you be a good little slut and take the rest of your punishment like a good girl?<</speech>>
<div align='center'>\
Biting your lower lip gently, you nod your head. She reaches up and pinches one of your hard nipples gently and then stands up to walk around to the head of the bed to until your hands.
</div>\
<<speech "Chanel">>I want you to ride my cock. Show me how bad you want this dick inside you.<</speech>>
<div align='center'>\
You sit up and stand on wobbly legs as Chanel lies down in your place. You crawl over her gorgeous body and reaching behind you, guide her wet cock back into your quim. Mmmmm, her cock feels so good inside you! You very happily ride her for the next several minutes feeling her fill your pussy and making your clit tingle.
</div>\
<video src="content/peoples/chanel/2/f6.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Cleaning">><<set $fendingpoint = 8>><</button>>
\
\
\
\
\
<<elseif $fendingpoint == 8>>\
<<speech "Chanel">>You are enjoying this way too much $fname. This is supposed to be a punishment. Roll over, time to take it in the ass!<</speech>>
<div align='center'>\
You kneel on the bed presenting your ass to Chanel. She spits on your ass and spreads it in with her cock before pushing inside. It pops through the ring of muscles and slides in without further resistance. As she rides your ass, she slaps her hand against your posterior making a loud sound causing you to cry out in pleasure more than pain.
</div>\
<video src="content/peoples/chanel/2/f7.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Cleaning">><<set $fendingpoint = 9>><</button>>
\
\
\
\
\
<<elseif $fendingpoint == 9>>\
<<speech "Chanel">>Shit! You love it in the ass just as much, don’t you, you little whore? Fuck it, sping around, I want back in your pussy.<</speech>>
<div align='center'>\
You eagerly comply and a moment later, Chanel is fucking your pussy once more. Her head is tilted back with a big grin on her face. Suddenly, she shudders and you feel her bust her nut deep inside your pussy.
</div>\
<<speech "Chanel">>Oh shit! I just came! I wanted to blow my load all over your pretty face! That was supposed to be part of the punishment to eat my cum… Reach down and scoop it out of your pussy and eat it. Yeah, there you go. There’s a good girl.<</speech>>
<video src="content/peoples/chanel/2/f8.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Have you learned your lesson? Every time you forget to clean my room, you will be punished. Now get out.<</speech>>
<div align='center'>\
You stand up on wobbly legs. You are still a bit weak after being drugged but you manage to pick up your clothes and walk out the door.
</div>\
<<addarousal 20>>\
<<addhours 1>>\
<<willingness>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 900ms>>\
<<sexskill>>\
<</timed>>\
<<timed 1200ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $pussysize += 1>>\
<<set $analsize += 1>>\
<<set $fgblowjobcounter += 1>>\
<<set $frpussyfuckcounter += 1>>\
<<set $franalcounter += 1>>\
<<set $fcumswallowcounter += 1>>\
<<set $chanelrepo += 1>>\
<<button "Leave" "Hallway Down">><<set $fendingpoint = 1>><<set $roomcleanend to false>><<set $pdollsex to false>><</button>>
<</if>>\
\
\
\
\
\
\
\
\
\
\
<<elseif $pgender is "shemale">>\
<<if $sendingpoint == 1>>\
<div align='center'>\
When your eyes open again, you find yourself laying in someone else’s bed. Rubbing your eyes, you look around and recognize Chanel’s room. Just then, Chanel walks into the room.
</div>\
<video src="content/peoples/chanel/2/s1.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Oh good, you are awake. I was afraid that perhaps I had overdone it with the drug.<</speech>>
<<speech "player" "$fname">>Chanel? What is going on? What happened? You drugged me?<</speech>>
<<speech "Chanel">>I told you to call me Princess Chanel! You knew the consequences of not cleaning my room. You were warned. I should have told my mom everything and had your ass kicked out of town. But I decided that it would be so much more fun to punish you myself. I’m not ready to let you go just yet.<</speech>>
<<speech "player" "$fname">>You could have just called me to your room. You didn’t have to be so heavy-handed to drug me and knock me out.<</speech>>
<<speech "Chanel">>I am making the rules and I decide your punishment. This way, it is all my pleasure and you just get to lay there and take it. Enough talk now, I have other plans for your mouth.<</speech>>
<<button "Continue" "Ending Cleaning">><<set $sendingpoint = 3>><</button>>
\
\
\
\
\
<<elseif $sendingpoint == 3>>\
<div align='center'>\
She takes hold of the back of your head and shoves her dick back in pulling you against her as she fucks your face.
</div>\
<<speech "Chanel">>Take my cock bitch. Take it all. You dirty little slut.<</speech>>
<video src="content/peoples/chanel/2/s2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>\
Chanel moves around to different positions on the bed forcing you to suck her dick until finally she feels warmed up enough.
</div>\
<<speech "Chanel">>That’s enough, I want your ass now. Come sit on my cock baby.<</speech>>
<<addarousal 20>>\
<<button "Continue" "Ending Cleaning">><<set $sendingpoint = 4>><</button>>
\
\
\
\
\
<<elseif $sendingpoint == 4>>\
<div align='center'>\
She lays back on the bed and you crawl over her gorgeous body and reaching behind you, guide her wet cock back into your hole. Mmmmm, her cock feels so good inside you! You very happily ride her for the next several minutes feeling her fill your ass and making your nipples tingle. You ride her and then she pushes you over and slides back inside taking you in the classic missionary position. Spinning you once more, she rides your doggy style gripping your waist to thrust into you hard.
</div>\
<video src="content/peoples/chanel/2/s3.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Cleaning">><<set $sendingpoint = 5>><</button>>
\
\
\
\
\
<<elseif $sendingpoint == 5>>\
<div align='center'>\
She pulls out and laying on her back begins to pump hard until her cock erupts like a fountain.
</div>\
<<speech "Chanel">>Swallow it all down. You need your vitamins. There’s a good girl.<</speech>>
\
<video src="content/peoples/chanel/2/s4.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>. Have you learned your lesson? Every time you forget to clean my room, you will be punished. Now get out. Your princess is sleepy.<</speech>>
<div align='center'>\
You stand up on wobbly legs. You are still a bit weak after being drugged but you manage to pick up your clothes and walk out the door closing it softly behind you.
</div>\
<<addarousal 20>>\
<<addhours 1>>\
<<willingness>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 900ms>>\
<<sexskill>>\
<</timed>>\
<<timed 1200ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $analsize += 1>>\
<<set $sgblowjobcounter += 1>>\
<<set $sranalcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<button "Leave" "Hallway Down">><<set $sendingpoint = 1>><<set $roomcleanend to false>><<set $pdollsex to false>><</button>>
<</if>>\
<</if>>\
<</if>>\
<div align='center'>\
You failed on the interview and You are fired. You have to leave the town and your plan is failed.
Game Over.
</div>\
<<if $pgender is "male">>\
<<if $endingpoint == 1>>\
<div align='center'>\
As you walk into the lab, you notice out of the corner of your eye that the two security guards have stood up and are walking towards you. Confused why they would take an interest in you, you glance behind you to see if perhaps they are looking at someone that came in after you but there is no one there.
</div>\
<img src="content/peoples/venus/1/3.jpg">
\
<div align='center'>\
By the time you turn back around, they are on you and take hold of both of your arms in a firm no-nonsense grip. You stammer back at them asking what is happening but they just look straight ahead as they whisk you down a hallway. You quickly understand what is happening as you find yourself being pulled into Venus’s office. There is a door in the side of her office that you had not noticed before that is open and you see Venus sitting on a leather couch watching you as you are shoved inside. You hear the door close behind you as you take in the room which appears to be a sex dungeon and the site of Venus dressed in a latex dress with a black corset pulled tight around her waist.
</div>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 2>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 2>>\
<<set $pdollsex to true>>\
<<speech "Venus">>Hello $fname, you know why you are here, don’t you? Yes, I see you do. You’ve been a bad boy and ignored my warnings. You have not been coming to see me as you should. Naughty naughty… You left me no choice but to punish you. I could say that this will hurt me more than it will you but that would not be true at all. I think I will rather enjoy this but sadly, I don’t expect you will. If you cooperate, it will go much better for you. Show me that you are willing to be a good boy for me. Get down on your knees and lick my feet.<</speech>>
<div align='center'>\
You only take a moment to consider before slowly dropping to your knees and crawling over to her dangling foot. You start by softly kissing her stalking covered foot in her sexy peep-toed platform heels. You enjoy the aroma of her foot as you kiss her toes and begin to suck on them. She is making appreciative sounds above you and you decide to slip her shoe off to get better access to her toes. She switches her feet and you give it the same loving treatment as you did the first. With your mouth full of toes, she pushes you backward and taking the hint, you lay on your back as she continues to feed you her toes.
</div>\
<video src="content/peoples/venus/1/m1.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 3>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 3>>\
<div align='center'>\
She uses her other foot to rub at your crotch taking your sexual temperature. Feeling that you are aroused, she stands and slowly hikes up the hem of her skirt revealing a bulge in her panties. She is towering over you as you look up at her stroking the outline of her cock in a pair of tight black panties. She begins to push the front of her panties down letting out the caged beast that is her cock as she lowers herself to sit on your chest. Reaching down to take a grip of your hair, she pulls your head forward as she thrusts her dick forward impaling your mouth on it as it slips to the back of your throat and down. You do your best to suppress your gag reflex as she fucks your throat. She sits back up on the couch and pulls you up to your knees as she forces you to worship her cock with your mouth. She pushes your pants down over your ass and down your thighs as you head bobs up and down over her rock hard cock. Picking up a paddle, she begins to pelt your backside.
</div>\
<video src="content/peoples/venus/1/m2.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 4>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 4>>\
<div align='center'>\
She stands up and points to an ottoman where you obediently kneel presenting your ass for further punishment. You expect more from the paddle but instead, she feeds her cock into your waiting ass hole. She has dropped her paddle and begins to fuck you in earnest. She punctuates her sharp jabs into your ass with her hands spanking you leaving handprints on your light skin. She flips you over onto your back as she seems to want to see your expression as she fucks you. You expect more of her rough treatment but she is truly getting into it and wraps her hand around your hard cock to stroke it in time with her thrusts.
</div>\
<video src="content/peoples/venus/1/m3.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 5>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 5>>\
<div align='center'>\
Without warning, she pulls out and sits on your chest as she beats off her dick in her hand. She must have been very close as just seconds later, she shoots load after load across your face and mouth. She must have been saving up as you have never seen so much cum and despite your efforts to swallow as much of it as you can, you aren’t able to keep up.
</div>\
<video src="content/peoples/venus/1/m4.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Venus">>Mmmm, that’s a good boy. Lick it all up for me. Yes, that’s it. So eager! It looks like you are still hungry for more. I hadn’t intended to let you cum today but since you’ve been such a good boy for me, why don’t you kneel down and cum on my feet?<</speech>>
<<addarousal 20>>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 6>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 6>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<div align='center'>\
Your cock is eager and you are so turned on that you don’t last long spraying your seed all over her sexy stalking covered feet.
</div>\
<<speech "Venus">>Oh yes, I can see that you enjoyed your punishment today after all. One final task and you may leave. Eat up all that sexy cum all over my feet. Yes, your tongue feels good lapping up your jizz on my feet.<</speech>>
\
<video src="content/peoples/venus/1/m5.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Venus">>I will wipe the slate clean of warnings. Although, I am beginning to hope that I can haul your ass back in here for another punishment.<</speech>>
<div align='center'>\
You finish lapping up the cum from her feet and clean yourself up enough so you can leave her office.
</div>\
<<zeroarousal>>\
<<addhours 1>>\
<<takeenergy 20>>\
<<willingness>>\
<<timed 300ms>>\
<<tongueskill>>\
<</timed>>\
<<timed 600ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 900ms>>\
<<sexskill>>\
<</timed>>\
<<timed 1200ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $mcumcounter += 1>>\
<<set $mgblowjobcounter += 1>>\
<<set $mranalcounter += 1>>\
<<set $mcumswallowcounter += 1>>\
<<set $analsize += 1>>\
<<set $venusrepo += 1>>\
<<set $noorgasm = 0>>\
<<button "Leave" "Lab Reception">><<set $endingpoint = 1>><<set $workend to false>><<set $workwarning = 0>><<set $pdollcum to false>><<set $venusworkendingreplay to true>><</button>>
<</if>>\
\
\
\
\
\
\
\
\
\
\
<<elseif $pgender is "female">>
<<if $endingpoint == 1>>\
<div align='center'>\
As you walk into the lab, you notice out of the corner of your eye that the two security guards have stood up and are walking towards you. Confused why they would take an interest in you, you glance behind you to see if perhaps they are looking at someone that came in after you but there is no one there.
</div>\
<img src="content/peoples/venus/1/3.jpg">
\
<div align='center'>\
By the time you turn back around, they are on you and take hold of both of your arms in a firm no-nonsense grip. You stammer back at them asking what is happening but they just look straight ahead as they whisk you down a hallway. You quickly understand what is happening as you find yourself being pulled into Venus’s office. There is a door in the side of her office that you had not noticed before that is open and you are roughly stripped of your clothes. Your objections escalate as you are pushed up against a wooden frame and tied in place. The guards put you in a full head harness with a ball gag filling your mouth before they leave you alone as you continue to mumble and struggle against the ropes.
</div>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 2>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 2>>\
<<set $pdollsex to true>>\
<div align='center'>\
After a few minutes, Venus walks into the room with a leather flail in her hand. Without preamble, she begins flogging your backside.
</div>\
<video src="content/peoples/venus/1/f1.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Venus">>You know why you are here, don’t you $fname? You’ve been a bad girl and ignored my warnings. You have not been coming to see me as you should. Naughty naughty… You left me no choice but to punish you. I could say that this will hurt me more than it will you but that would not be true at all. I think I will rather enjoy this but sadly, I don’t expect you will. If you cooperate, it will go much better for you. Show me that you are willing to be a good girl for me.<</speech>>
<<addarousal 20>>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 3>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 3>>\
<div align='center'>\
She slowly releases a leg from the ropes tying it to the frame and watches you to see how you will react. As you stay perfectly motionless, she proceeds to untie the rest of your limbs as well. Finally, she removes your gag dripping with saliva and you work your jaw muscles trying to loosen them up after having them spread open so far from the ball. You only have a moment before she pulls you forward and stuffs her cock into your mouth. She guides your head as she shows you just how she wants you to worship her cock and you spend several minutes polishing it with your tongue and lips.
</div>\
<video src="content/peoples/venus/1/f2.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 4>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 4>>\
<div align='center'>\
You are disappointed when she stands up taking her wonderfully hard cock with her. She walks around behind you spreads your pussy lips open showing just how aroused you are. Without warning, she shoves her wet dick hilt deep into your pussy. She rides you doggy style and you feel like a dog in heat as she rides your ass like a common bitch. You burry your face down into the cushion trying to muffle your moans. Venus takes a step back and using your legs rotates you onto you back and plunges back into your hot wet folds. Holding your ankle for support, she pounds away at your pussy.
</div>\
<video src="content/peoples/venus/1/f3.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 5>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 5>>\
<<speech "Venus">>Such a hot slut. Your pussy is enjoying this too much. Let’s see how your ass likes it! Sit your ass down on my cock.<</speech>>
<div align='center'>\
Laying back, she pulls you atop her and guides you over her and taking hold of your hips forces you down. Her thick dark dick spreads your ass open and fortunately, between your copious juices on Venus’s cock and what has dripped down your crack is sufficient to lubricate her penetration. She encourages you with her hands resting under your ass checks and you begin bouncing up and down her meat pole. Venus is visibly excited as she begins matching your movement pushing back up into you. She looks like she is getting close but before she crosses the point of no return, she stops and pushes you back onto the cushion again. She looks down at you while slowly stroking her cock weighing her decisions before plunging back into your ass again.
</div>\
<video src="content/peoples/venus/1/f4.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 6>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 6>>\
<div align='center'>\
You reach down to rub your clit but Venus swats your hand away. This is clearly about her pleasure and she doesn’t care if you don’t cum at all. She doesn’t last much longer. She looks like she is going to nut in your ass but pulls out at the last moment and her jizz sprays across your tummy and down through your pussy folds.
</div>\
<video src="content/peoples/venus/1/f5.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Venus">>I can see that you enjoyed your punishment today after all. Too bad you have to remain frustrated not able to cum while you are at work. Consider your slate wiped clean of warnings. I am beginning to hope that I can haul your ass back in here for another punishment.<</speech>>
<div align='center'>\
She tosses you a towel and walks out leaving you to clean yourself and return to your lab.
</div>\
<<addhours 1>>\
<<addarousal 20>>\
<<takeenergy 20>>\
<<willingness>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<set $pussysize += 1>>\
<<set $analsize += 1>>\
<<set $fgblowjobcounter += 1>>\
<<set $frpussyfuckcounter += 1>>\
<<set $franalcounter += 1>>\
<<set $venusrepo += 1>>\
<<button "Leave" "Lab Reception">><<set $endingpoint = 1>><<set $workend to false>><<set $workwarning = 0>><<set $pdollsex to false>><<set $venusworkendingreplay to true>><</button>>
<</if>>\
\
\
\
\
\
\
\
\
\
\
<<elseif $pgender is "shemale">>
<<if $endingpoint == 1>>\
<div align='center'>\
As you walk into the lab, you notice out of the corner of your eye that the two security guards have stood up and are walking towards you. Confused why they would take an interest in you, you glance behind you to see if perhaps they are looking at someone that came in after you but there is no one there.
</div>\
<img src="content/peoples/venus/1/3.jpg">
\
<div align='center'>\
By the time you turn back around, they are on you and take hold of both of your arms in a firm no-nonsense grip. You stammer back at them asking what is happening but they just look straight ahead as they whisk you down a hallway. You quickly understand what is happening as you find yourself being pulled into Venus’s office.
</div>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 2>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 2>>\
<<set $pdollsex to true>>\
<div align='center'>\
There is a door in the side of her office that you had not noticed before that is open and you are roughly stripped of your clothes. Your cries escalate as the guards tie your hands but they pay you no heed as they finish their task and force you to kneel before leave you alone in the room to struggle against the ropes.
</div>\
<img src="content/peoples/venus/1/1.jpg">
\
<<addarousal 20>>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 3>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 3>>\
<div align='center'>\
After a few minutes, Venus walks into the room.
</div>\
<img src="content/peoples/venus/1/2.jpg">
\
<<speech "Venus">>You know why you are here, don’t you $fname? You’ve been a bad girl and ignored my warnings. You have not been coming to see me as you should. Naughty naughty… You left me no choice but to punish you. I could say that this will hurt me more than it will you but that would not be true at all. I think I will rather enjoy this but sadly, I don’t expect you will. If you cooperate, it will go much better for you. Show me that you are willing to be a good girl for me.<</speech>>
<<addarousal 20>>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 4>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 4>>\
<div align='center'>\
Sitting on the couch in front of you, you hardly have a chance to breathe before she pulls you forward and stuffs her cock into your mouth. She guides your head as she shows you just how she wants you to worship her cock and you spend several minutes polishing it with your tongue and lips.
</div>\
<video src="content/peoples/venus/1/s1.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 5>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 5>>\
<div align='center'>\
You are disappointed when she stands up taking her wonderfully hard cock with her. She pushes you backward and without warning, she shoves her wet dick hilt deep into your ass pussy. You reach down to rub your cock but Venus swats your hand away. This is clearly about her pleasure and she doesn’t care if you don’t cum at all.
</div>\
<video src="content/peoples/venus/1/s2.mp4" style="width: 100%;" autoplay loop></video>
<<addarousal 20>>\
<<button "Continue" "Ending Workdays">><<set $endingpoint = 6>><</button>>
\
\
\
\
\
<<elseif $endingpoint == 6>>\
<div align='center'>\
She doesn’t last much longer as she pulls out and straddling your head making as if to shove it back into your mouth but she doesn’t last that long as she sprays her load into your hair and face.
</div>\
<video src="content/peoples/venus/1/s3.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Venus">>Swallow it all down like a good girl. That’s it. I can see that you enjoyed your punishment today after all. Too bad you have to remain frustrated not able to cum while you are at work. Consider your slate wiped clean of warnings. I am beginning to hope that I can haul your ass back in here for another punishment.<</speech>>
<div align='center'>\
She tosses you a towel and walks out leaving you to clean yourself and return to your lab.
</div>\
<<addhours 1>>\
<<addarousal 20>>\
<<takeenergy 20>>\
<<willingness>>\
<<timed 300ms>>\
<<blowjobskill>>\
<</timed>>\
<<timed 600ms>>\
<<sexskill>>\
<</timed>>\
<<timed 900ms>>\
<<cumplayskill>>\
<</timed>>\
<<set $analsize += 1>>\
<<set $sgblowjobcounter += 1>>\
<<set $sranalcounter += 1>>\
<<set $scumswallowcounter += 1>>\
<<set $venusrepo += 1>>\
<<button "Leave" "Lab Reception">><<set $endingpoint = 1>><<set $workend to false>><<set $workwarning = 0>><<set $pdollsex to false>><<set $venusworkendingreplay to true>><</button>>
<</if>>\
<</if>>\
<div align='center'>\
Here you can rewatch the scenes you already done. Try different body types. It has no affection on the game.
<div style='font-size: 150%;'><b>Mariana</b></div>\
<<if $marianagardenreplay is true>>\
<<button "Garden" "Mariana Garden">><<set $replay = 0>><</button>>
<<else>>\
Garden - locked
<</if>>\
<<if $marianalivingroomreplay is true>>\
<<button "Living Room" "Mariana Livingroom">><<set $replay = 0>><</button>>
<<else>>\
Living Room - locked
<</if>>\
<<if $marianabedroomreplay is true>>\
<<button "Bedroom" "Mariana Bedroom replay">><<set $replay = 0>><</button>>
<<else>>\
Bedroom - locked
<</if>>\
----
<div style='font-size: 150%;'><b>Chanel</b></div>\
<<if $chanelyogareplay is true>>\
<<button "Yoga" "Chanelyogareplay">><<set $replay = 0>><</button>>
<<else>>\
Yoga - locked
<</if>>\
<<if $ht >= 21>>\
<<button "Final transformation night" "Final transformation night">><<set $replay = 0>><</button>>
<<else>>\
Final transformation night - locked
<</if>>\
<<if $chanelmaidendingreplay is true>>\
<<button "Missing maid work punishment" "Chanelworkending">><<set $replay = 1>><</button>>
<<else>>\
Missing maid work punishment - locked
<</if>>\
----
<div style='font-size: 150%;'><b>Jordi</b></div>\
<<if $jordistripreplay is true>>\
<<button "Playing FIFA" "Jordistripreplay">><<set $replay = 1>><</button>>
<<else>>\
Playing FIFA - locked
<</if>>\
----
<div style='font-size: 150%;'><b>Kimberlee</b></div>\
<<if $natalieyogareplay is true>>\
<<button "Yoga" "Natalieyogareplay">><<set $replay = 0>><</button>>
<<else>>\
Yoga - locked
<</if>>\
----
<div style='font-size: 150%;'><b>Kimberlee</b></div>\
<<if $kimquest >= 6>>\
<<button "Park" "Kimberlee Park">><</button>>
<<else>>\
Park - locked
<</if>>\
<<if $kimquest >= 8>>\
<<button "Kimberlee's House" "Kimberlee Home">><<set $replay = 0>><</button>>
<<else>>\
Kimberlee's House - locked
<</if>>\
----
<div style='font-size: 150%;'><b>Venus</b></div>\
<<if $venusworkendingreplay is true>>\
<<button "Missing work punishment" "Venusworkending">><<set $replay = 1>><</button>>
<<else>>\
Missing work punishment - locked
<</if>>\
----
</div>\
<<button "Return" "Player Web">><</button>>
<<if $replay == 0>>\
<img src="content/peoples/mariana/garden1/1.jpg" style="max-width: 100%;">
\
<div align='center'>\
Following the twisting path through the garden, you find Mariana reclined in an Adirondack chair reading on her phone.
</div>\
<<speech "Mariana">>Ah, perfect timing! I need you.<</speech>>
<<button "Continue" "Mariana Garden">><<set $replay = 1>><</button>>
\
\
\
<<elseif $replay == 1>>\
<img src="content/peoples/mariana/garden1/2.jpg" style="max-width: 100%;">
\
<div align='center'>\
Reaching up and taking a fist full of your hair, she pulls your head down to her eye level.
</div>\
<<button "Continue" "Mariana Garden">><<set $replay = 2>><</button>>
\
\
\
<<elseif $replay == 2>>\
<img src="content/peoples/mariana/garden1/3.jpg" style="max-width: 100%;">
\
<<if $pgender is "male">>\
<<speech "Mariana">>Here $fname, I am going to play with you. Be a good boy and do as you are told.<</speech>>
<<else>>\
<<speech "Mariana">>Here $fname, I am going to play with you. Be a good girl and do as you are told.<</speech>>
<</if>>\
<<button "Alright" "Mariana Garden">><<set $replay = 3>><</button>>
\
\
\
<<elseif $replay == 3>>\
<img src="content/peoples/mariana/garden1/3.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>Don’t say a word. I don’t want to hear anything. Just do as you are told. Good. Now take my breast out.<</speech>>
<div align='center'>\
With her fingers still twined through your hair, you reach a hand up and hook a finger into her top and slowly pull it down revealing one perfectly round breast.
</div>\
<<button "Pull it down" "Mariana Garden">><<set $replay = 4>><</button>>
\
\
\
<<elseif $replay == 4>>\
<img src="content/peoples/mariana/garden1/4.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>And the other too.<</speech>>
<div align='center'>\
You reach back up and expose the other revealing a perfect pair of tits.
</div>\
<<button "Pull it down the other one" "Mariana Garden">><<set $replay = 5>><</button>>
\
\
\
<<elseif $replay == 5>>\
<img src="content/peoples/mariana/garden1/5.jpg" style="max-width: 100%;">
\
<div align='center'>\
She smiles watching your reaction to taking in the view. She lifts the bottom of her dress revealing her semi-hard erection already drooling precum.
</div>\
<<button "Look down" "Mariana Garden">><<set $replay = 6>><</button>>
\
\
\
<<elseif $replay == 6>>\
<img src="content/peoples/mariana/garden1/6.jpg" style="max-width: 100%;">
\
<div align='center'>\
It looks like you must have interrupted her in the middle of something.
</div>\
<<speech "Mariana">>I will permit you to give it one kiss.<</speech>>
<<button "Kiss it" "Mariana Garden">><<set $replay = 7>><</button>>
\
\
\
<<elseif $replay == 7>>\
<img src="content/peoples/mariana/garden1/6.jpg" style="max-width: 100%;">
\
<div align='center'>\
You feel drawn to it by sexual magnetism. Before you know it, your lips are feeling the heat coming from it and you part your lips slightly as you give it a friendly chaste kiss.
</div>\
<<speech "Mariana">>That was so sweet. Mmmmm, come here.<</speech>>
<<button "Move" "Mariana Garden">><<set $replay = 8>><</button>>
\
\
\
<<elseif $replay == 8>>\
<img src="content/peoples/mariana/garden1/7.jpg" style="max-width: 100%;">
\
<div align='center'>\
She leans, pulls your head down into her bosom cradling your head between her breasts.
</div>\
<<speech "Mariana">>Just watch.<</speech>>
<<button "Watch her" "Mariana Garden">><<set $replay = 9>><</button>>
\
\
\
<<elseif $replay == 9>>\
<img src="content/peoples/mariana/garden1/8.jpg" style="max-width: 100%;">
\
<div align='center'>\
With your cheek pressed against her soft breast, you watch fascinated as her dick goes from somewhat soft to firm to hard...
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 10>><</button>>
\
\
\
<<elseif $replay == 10>>\
<img src="content/peoples/mariana/garden1/9.jpg" style="max-width: 100%;">
\
<div align='center'>\
as it stands up and falls back against her tummy.
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 11>><</button>>
\
\
\
<<elseif $replay == 11>>\
<img src="content/peoples/mariana/garden1/10.jpg" style="max-width: 100%;">
\
<div align='center'>\
She seems to be enjoying your attention.
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 12>><</button>>
\
\
\
<<elseif $replay == 12>>\
<img src="content/peoples/mariana/garden1/11.jpg" style="max-width: 100%;">
\
<div align='center'>\
She wraps her fingers around it now and begins to slowly stroke her cock.
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 13>><</button>>
\
\
\
<<elseif $replay == 13>>\
<img src="content/peoples/mariana/garden1/12.jpg" style="max-width: 100%;">
\
<div align='center'>\
She switches hands and begins to pump it faster.
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 14>><</button>>
\
\
\
<<elseif $replay == 14>>\
<img src="content/peoples/mariana/garden1/13.jpg" style="max-width: 100%;">
\
<div align='center'>\
Her fingers curl into your hair tighter now. Is her cock getting even bigger?
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 15>><</button>>
\
\
\
<<elseif $replay == 15>>\
<img src="content/peoples/mariana/garden1/14.jpg" style="max-width: 100%;">
\
<div align='center'>\
You didn’t think that was possible as it was already so immense. Your eyebrows lift with amazement as it continues to increase in height and girth under her experienced hand.
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 16>><</button>>
\
\
\
<<elseif $replay == 16>>\
<img src="content/peoples/mariana/garden1/15.jpg" style="max-width: 100%;">
\
<div align='center'>\
You feel her pulling you down closer as her fingers pull harder on your hair. Her breathing is getting faster and more ragged. She must be getting ready to blow her load.
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 17>><</button>>
\
\
\
<<elseif $replay == 17>>\
<img src="content/peoples/mariana/garden1/16.jpg" style="max-width: 100%;">
\
<div align='center'>\
She lets out of moan and you feel her heart beating rapidly in your ear pressed against her breast. Her grip in your hair is turning painful.
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 18>><</button>>
\
\
\
<<elseif $replay == 18>>\
<img src="content/peoples/mariana/garden1/17.jpg" style="max-width: 100%;">
\
<div align='center'>\
She lets out a soft cry as her cum starts flying.
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 19>><</button>>
\
\
\
<<elseif $replay == 19>>\
<img src="content/peoples/mariana/garden1/18.jpg" style="max-width: 100%;">
\
<div align='center'>\
It is going everywhere! She must have had a lot of pent up cum because it just keeps coming.
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 20>><</button>>
\
\
\
<<elseif $replay == 20>>\
<img src="content/peoples/mariana/garden1/19.jpg" style="max-width: 100%;">
\
<div align='center'>
She finally loosens the grip in your hair and you relax the muscles in your neck that you hadn’t realized you had tensed.
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 21>><</button>>
\
\
\
<<elseif $replay == 21>>\
<img src="content/peoples/mariana/garden1/20.jpg" style="max-width: 100%;">
\
<div align='center'>\
Finally, the cum stops shooting but as she continues to slowly milk her dick.
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 22>><</button>>
\
\
\
<<elseif $replay == 22>>\
<img src="content/peoples/mariana/garden1/21.jpg" style="max-width: 100%;">
\
<div align='center'>\
It oozes in a steady stream out and down her hand.
</div>\
<<button "Watch her" "Mariana Garden">><<set $replay = 23>><</button>>
\
\
\
<<elseif $replay == 23>>\
<img src="content/peoples/mariana/garden1/22.jpg" style="max-width: 100%;">
\
<div align='center'>\
With one final stroke and squeeze, she releases her cock and her grip on your head.
</div>\
<<button "Stand up" "Mariana Garden">><<set $replay = 24>><</button>>
\
\
\
<<elseif $replay == 24>>\
<img src="content/peoples/mariana/garden1/23.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>I’ve made a bit of a mess here. I want you to clean it up.<</speech>>
<<button "Obey" "Mariana Garden">><<set $replay = 25>><</button>>
\
\
\
<<elseif $replay == 25>>\
<<if $pgender is "male">>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/mariana/garden1/2.mp4">
</video>
<<elseif $pgender is "female">>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/mariana/garden1/1.mp4">
</video>
<<elseif $pgender is "shemale">>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/mariana/garden1/1.mp4">
</video>
<</if>>\
<div align='center'>\
You use your tongue to scoop up the drops across her pelvis and work up the shaft and press your tongue in between the cracks of her fingers working out every drop you can. By the time you feel satisfied that you have cleaned up everything you can, you look up and see that Mariana has fallen asleep. It seems she really needed that. You straighten yourself up and walk back out of the garden leaving Mariana to her rest.
</div>\
<<button "Leave" "Palyer Web">><<set $replay = 0>><</button>>
<</if>>\
<<if $replay == 0>>\
<img src="content/peoples/mariana/tv/1.jpg" style="max-width: 100%;">
\
<div align='center'>\
You see the familiar glow of the television and step in to find Mariana reclined on the couch. You sit down next to her and she gives you a friendly pat on your knee as her eyes are glued to the screen.
</div>\
<<speech "player" "$fname">>Mind if I join you?<</speech>>
<<speech "Mariana">>No, not at all. Make yourself comfortable.<</speech>>
<<button "Join her" "Mariana Livingroom">><<set $replay = 2>><</button>>
\
\
\
<<elseif $replay == 2>>\
<img src="content/peoples/mariana/tv/2.jpg" style="max-width: 100%;">
\
<div align='center'>\
You settle into the cushion as you try to pick up on what is happening in the movie.
</div>\
<<speech "player" "$fname">>What are you watching?<</speech>>
<<speech "Mariana">>It’s an obscure 80’s action movie that you have probably never heard of. It is a bit of a cult classic. Have you heard of Cherry 2000? Yeah, I didn’t think so. It’s a post-apocalyptic movie with a sexy robot. Pamela Gidley is so hot in this.<</speech>>
<div align='center'>\
Mariana stretches out her arms and repositions herself next to you.
</div>\
<<button "Continue" "Mariana Livingroom">><<set $replay = 3>><</button>>
\
\
\
<<elseif $replay == 3>>\
<img src="content/peoples/mariana/tv/3.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>My shoulders are so tight. Hey, would you mind giving me a massage?<</speech>>
<<speech "player" "$fname">>No, I wouldn’t mind at all. I’m not a masseuse though. I have no idea what I’m doing.<</speech>>
<div align='center'>\
She lays down on her stomach keeping her head towards the screen arching her back and then settling back down again.
</div>\
<<speech "Mariana">>Just sit on my back and I’ll tell you what to do.<</speech>>
<<speech "player" "$fname">>Are you sure about this. I don’t want to squish you.<</speech>>
<<button "Continue" "Mariana Livingroom">><<set $replay = 4>><</button>>
\
\
\
<<elseif $replay == 4>>\
<img src="content/peoples/mariana/tv/4.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>Just shut up and do it $fname.<</speech>>
<<button "Obey" "Mariana Livingroom">><<set $replay = 5>><</button>>
\
\
\
<<elseif $replay == 5>>\
<img src="content/peoples/mariana/tv/5.jpg" style="max-width: 100%;">
\
<div align='center'>\
You slowly shuffle yourself over her and sit back feeling your bottom rest in the small of her back. You reach your hands up and grab handfuls of her shoulders trying to squeeze them as you imagine you would enjoy. She rewards you with some appreciative groaning sounds. Feeling reassured, you continue the motion across her shoulders to her arms. You work your way back to her neck and then experiment with massaging down her back. As your hands move over her skin, you feel yourself starting to get a bit aroused. You shift your weight a bit trying to avoid your growing bulge from being too obvious. She starts to lean up and taking your queue, you slide off her body.
</div>\
<<speech "Mariana">>That was not too bad.<</speech>>
<<button "Stand up" "Mariana Livingroom">><<set $replay = 6>><</button>>
\
\
\
<<elseif $replay == 6>>\
<img src="content/peoples/mariana/tv/6.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>Did you like what you saw? Hmmm?<</speech>>
<div align='center'>\
In case you couldn’t take the hint from her words, she glances down between your legs.
</div>\
<<speech "player" "$fname">>Mariana, I’m sorr...<</speech>>
<<speech "Mariana">>Shut up $fname. Don’t say a word. For the rest of the night, if I ask you a question, just nod or shake your head. Clear?<</speech>>
<div align='center'>\
You jerkily nod your head yes that you understand.
</div>\
<<speech "Mariana">>Good. Now get down on your knees.<</speech>>
<<button "Follow her orders" "Mariana Livingroom">><<set $replay = 7>><</button>>
\
\
\
<<elseif $replay == 7>>\
<img src="content/peoples/mariana/tv/7.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>You aren’t worthy to touch me yet. Just watch for now. Nod if you understand.<</speech>>
<div align='center'>\
You nod affirmatively and bite your lower lip as you look at her.
</div>\
<<speech "Mariana">>You want to touch me, don’t you. Yes, I can see that you do. You hunger for my body. I will show you how I like it. Once you understand, I will allow you to show me that you are a good slave and please me just the way I want it. Watch and learn.<</speech>>
<<button "You carefully watch her" "Mariana Livingroom">><<set $replay = 8>><</button>>
\
\
\
<<elseif $replay == 8>>\
<img src="content/peoples/mariana/tv/8.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>You have to start off slow. Like greeting an old lover you haven’t seen in a long time. Stick out your tongue and lick just the tip gently. Like this.<</speech>>
<<button "You continue to watch her" "Mariana Livingroom">><<set $replay = 9>><</button>>
\
\
\
<<elseif $replay == 9>>\
<img src="content/peoples/mariana/tv/9.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>See how I do that? Very slow and seductive. Just tease it. Do you see?<</speech>>
<<button "You slowly nod your head" "Mariana Livingroom">><<set $replay = 10>><</button>>
\
\
\
<<elseif $replay == 10>>\
<img src="content/peoples/mariana/tv/10.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>Use lots of tongue. Just like this.<</speech>>
<<button "You watch her admiring how she licks her own cock" "Mariana Livingroom">><<set $replay = 11>><</button>>
\
\
\
<<elseif $replay == 11>>\
<img src="content/peoples/mariana/tv/11.jpg" style="max-width: 100%;">
\
<div align='center'>\
She stands and as she rises, her hard cock is pointing right between your eyes. You glance up to her eyes quickly and then back down. Not sure what she wants you to do, you lean in and kiss the tip.
</div>\
<<button "Continue" "Mariana Livingroom">><<set $replay = 12>><</button>>
\
\
\
<<elseif $replay == 12>>\
<img src="content/peoples/mariana/tv/12.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>I can see from the look in your eye that you desire my body. I make you hot, don’t I? I can only imagine how horny you must be right now. Does it feel good to admire my magnificent body?<</speech>>
<<button "Continue" "Mariana Livingroom">><<set $replay = 13>><</button>>
\
\
\
<<elseif $replay == 13>>\
<img src="content/peoples/mariana/tv/13.jpg" style="max-width: 100%;">
\
<div align='center'>\
She kneels down next to the coffee table and slaps her massive erection on the tabletop hearing it make a solid thump as it hits. That is one solid piece of meat she has there. She slowly strokes it making soft moans that seem to come from the back of her throat. She looks at you and licks her lips.
</div>\
<<speech "Mariana">>You want to taste me, don’t you? Have you imagined what I taste like? Is the hunger to find out eating you up inside? You have probably never tasted anything like me have you?<</speech>>
<div align='center'>\
You’ve never experienced anything like this before. A beautiful woman taking control of you and stoking the flames of your desire while denying them at the same time. You can’t remember the last time you felt so horny. You feel a peculiar desire to please her and follow her every instruction.
</div>\
<<button "You keep nod your head solemnly" "Mariana Livingroom">><<set $replay = 14>><</button>>
\
\
\
<<elseif $replay == 14>>\
<div align='center'>\
Her strokes speed up and you see her flex her hips like she is fucking a phantom lover in front of you. Her breath catches and she holds it for a few seconds before letting it out in a long exhale as her cum flies out landing on the table next to you.
</div>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/mariana/tv/1.mp4">
</video>
<<speech "Mariana">>Be a good slave for me and lick it up. I want you to clean the table with your tongue. When I come back, I don’t want to see you or any sign of my seed on this table.<</speech>>
<div align='center'>\
She turns off the television and leaves the room.
</div>\
<<button "You obey and lick it up" "Mariana Livingroom">><<set $replay = 15>><</button>>
\
\
\
<<elseif $replay == 15>>\
<<if $pgender is "male">>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/mariana/tv/3.mp4">
</video>
<<elseif $pgender is "female">>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/mariana/tv/2.mp4">
</video>
<<elseif $pgender is "shemale">>\
<video style="width: 100%;" autoplay loop>
<source src="content/peoples/mariana/tv/2.mp4">
</video>
<</if>>\
<div align='center'>\
You lean forward and gingerly extend your tongue into the largest glob to take it onto your tongue. The taste is tangy and not at all what you expected. You feel even more turned on obeying her command and doing something so filthy as eating her cum. You continue to lick at the drops and savour it as it slides down your throat. You don’t want to waste a drop of the precious fluid. Once you are confident that you have it all, you stand and leave as well.
</div>\
<<button "Leave" "Player Web">><<set $replay = 0>><</button>>
<</if>>\
<<if $replay == 0>>\
<img src="content/peoples/mariana/roombj/2.jpg" style="max-width: 100%;">
\
<div align='center'>\
You slowly pull the blanket down revealing her nightie.
</div>\
<<button "Pull the blanket" "Mariana Bedroom replay">><<set $replay = 1>><</button>>
\
\
\
<<elseif $replay == 1>>\
<img src="content/peoples/mariana/roombj/3.jpg" style="max-width: 100%;">
\
<div align='center'>\
Taking hold of her nightie.
</div>\
<<button "Hold it" "Mariana Bedroom replay">><<set $replay = 2>><</button>>
\
\
\
<<elseif $replay == 2>>\
<img src="content/peoples/mariana/roombj/4.jpg" style="max-width: 100%;">
\
<div align='center'>\
You slowly lift it up.
</div>\
<<button "Lift it up" "Mariana Bedroom replay">><<set $replay = 3>><</button>>
\
\
\
<<elseif $replay == 3>>\
<img src="content/peoples/mariana/roombj/5.jpg" style="max-width: 100%;">
<<button "Step back" "Mariana Bedroom replay">><<set $replay = 4>><</button>>
\
\
\
<<elseif $replay == 4>>\
<img src="content/peoples/mariana/roombj/6.jpg" style="max-width: 100%;">
\
<div align='center'>\
She turns over in her sleep.
</div>\
<<button "Watch her" "Mariana Bedroom replay">><<set $replay = 5>><</button>>
\
\
\
<<elseif $replay == 5>>\
<img src="content/peoples/mariana/roombj/7.jpg" style="max-width: 100%;">
\
<div align='center'>\
You see that she is VERY well endowed. You take a step closer to get a better look.
</div>\
<<button "Step closer" "Mariana Bedroom replay">><<set $replay = 6>><</button>>
\
\
\
<<elseif $replay == 6>>\
<img src="content/peoples/mariana/roombj/8.jpg" style="max-width: 100%;">
\
<div align='center'>\
She is incredible. You can't help yourself. You reach out and lightly hold her.
</div>\
<<button "You can't help yourself, touch her" "Mariana Bedroom replay">><<set $replay = 7>><</button>>
\
\
\
<<elseif $replay == 7>>\
<img src="content/peoples/mariana/roombj/9.jpg" style="max-width: 100%;">
\
<div align='center'>\
She is already semi-erect. You start to stroke it slowly.
</div>\
<<button "Stroke her" "Mariana Bedroom replay">><<set $replay = 8>><</button>>
\
\
\
<<elseif $replay == 8>>\
<img src="content/peoples/mariana/roombj/10.jpg" style="max-width: 100%;">
\
<div align='center'>\
You feel a sense of elation as it continues to grow in your hand.
</div>\
<<button "Keep stroking" "Mariana Bedroom replay">><<set $replay = 9>><</button>>
\
\
\
<<elseif $replay == 9>>\
<img src="content/peoples/mariana/roombj/11.jpg" style="max-width: 100%;">
\
<div align='center'>\
Holy smoke, it is still growing!
</div>\
<<button "Keep stroking" "Mariana Bedroom replay">><<set $replay = 10>><</button>>
\
\
\
<<elseif $replay == 10>>\
<img src="content/peoples/mariana/roombj/12.jpg" style="max-width: 100%;">
\
<div align='center'>\
You never knew a dick could get so big.
</div>\
<<button "Keep stroking" "Mariana Bedroom replay">><<set $replay = 11>><</button>>
\
\
\
<<elseif $replay == 11>>\
<img src="content/peoples/mariana/roombj/13.jpg" style="max-width: 100%;">
\
<div align='center'>\
You are mesmerized looking at it. Like a mongoose staring down a cobra.
</div>\
<<button "Keep stroking" "Mariana Bedroom replay">><<set $replay = 12>><</button>>
\
\
\
<<elseif $replay == 12>>\
<img src="content/peoples/mariana/roombj/14.jpg" style="max-width: 100%;">
\
<div align='center'>\
Mariana starts to stir. You quickly take a step back.
</div>\
<<button "Step back" "Mariana Bedroom replay">><<set $replay = 13>><</button>>
\
\
\
<<elseif $replay == 13>>\
<img src="content/peoples/mariana/roombj/15.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>Do you like what you see?<</speech>>
<<button "Nod your head silently" "Mariana Bedroom replay">><<set $replay = 14>><</button>>
\
\
\
<<elseif $replay == 14>>\
<img src="content/peoples/mariana/roombj/16.jpg" style="max-width: 100%;">
\
<div align='center'>\
Mariana sits up in bed looking at you intently. You are rooted in place curious where this might go. With a slow-growing smile, Mariana slides her hands up her body and cups her breasts.
</div>\
<<button "Watch her" "Mariana Bedroom replay">><<set $replay = 15>><</button>>
\
\
\
<<elseif $replay == 15>>\
<img src="content/peoples/mariana/roombj/17.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>And how about these? Do you like them?<</speech>>
<<button "You nod in agreement once more" "Mariana Bedroom replay">><<set $replay = 16>><</button>>
\
\
\
<<elseif $replay == 16>>\
<img src="content/peoples/mariana/roombj/18.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>They are very nice, aren’t they? Nice and round and full. Get a good look at them.<</speech>>
<<button "You look at them" "Mariana Bedroom replay">><<set $replay = 17>><</button>>
\
\
\
<<elseif $replay == 17>>\
<img src="content/peoples/mariana/roombj/19.jpg" style="max-width: 100%;">
\
<div align='center'>\
She draws her legs beneath her squatting over her bed.
</div>\
<<button "Watch her" "Mariana Bedroom replay">><<set $replay = 18>><</button>>
\
\
\
<<elseif $replay == 18>>\
<img src="content/peoples/mariana/roombj/20.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>You thought you could sneak in here and watch me sleep? Are you a pervert? You want to play with this, don’t you?<</speech>>
<div align='center'>\
You hesitate only a moment and nod your head in agreement.
</div>\
<<button "Nod your head" "Mariana Bedroom replay">><<set $replay = 19>><</button>>
\
\
\
<<elseif $replay == 19>>\
<img src="content/peoples/mariana/roombj/21.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>Come a bit closer. That’s it. Keep looking at it.<</speech>>
<div align='center'>\
You take a small hesitant step closer to the bed.
</div>\
<<button "Step closer" "Mariana Bedroom replay">><<set $replay = 20>><<set $pdollsex to true>><</button>>
\
\
\
<<elseif $replay == 20>>\
<img src="content/peoples/mariana/roombj/22.jpg" style="max-width: 100%;">
\
<div align='center'>\
Your eyes are glued to her magnificent cock.
</div>\
<<button "Watch her" "Mariana Bedroom replay">><<set $replay = 21>><</button>>
\
\
\
<<elseif $replay == 21>>\
<img src="content/peoples/mariana/roombj/23.jpg" style="max-width: 100%;">
\
<div align='center'>\
You see that it is waiting for you.
</div>\
<<button "Move closer" "Mariana Bedroom replay">><<set $replay = 22>><</button>>
\
\
\
<<elseif $replay == 22>>\
<img src="content/peoples/mariana/roombj/24.jpg" style="max-width: 100%;">
\
<<speech "Mariana">>She is ready for you.<</speech>>
<div align='center'>\
She wants you to feel it. You wrap your fingers around it once more.
</div>\
<<button "Touch her" "Mariana Bedroom replay">><<set $replay = 23>><</button>>
\
\
\
<<elseif $replay == 23>>\
<img src="content/peoples/mariana/roombj/25.jpg" style="max-width: 100%;">
\
<div align='center'>\
At your touch, Mariana lets out a soft moan.
</div>\
<<speech "player" "$fname">>You feel amazing. Do you like how I’m touching you? I think you will like my mouth even more. Do you want me to suck on it? Feel it going into my mouth and down my throat? As big as you are, you probably don’t get much of that. You are in for a treat.<</speech>>
<<speech "Mariana">>Oh fuck… yes. I want it. Touch me. Taste me. Swallow me.<</speech>>
<<button "Keep stroking her" "Mariana Bedroom replay">><<set $replay = 24>><</button>>
\
\
\
<<elseif $replay == 24>>\
<<if $pgender is "male">>\
<img src="content/peoples/mariana/roombj/26.jpg" style="max-width: 100%;">
<<else>>\
<img src="content/peoples/mariana/roombj/34.jpg" style="max-width: 100%;">
<</if>>\
\
<div align='center'>\
You continue to stroke her just teasing her now. She grabs you and pulls you to the bed and pushes you down. She swings a leg over you and sits on your chest pinning you down. You look up at her and continue your teasing by kissing her thigh working your way slowly up to her balls. You kiss one and slowly draw it into your mouth rewarded by hearing her moan above you. You run your tongue over it inside your mouth sucking it gently. You switch to the other all giving it the same playful treatment.
</div>\
<<button "Switch to the other ball" "Mariana Bedroom replay">><<set $replay = 25>><</button>>
\
\
\
<<elseif $replay == 25>>\
<<if $pgender is "male">>\
<img src="content/peoples/mariana/roombj/27.jpg" style="max-width: 100%;">
<<else>>\
<img src="content/peoples/mariana/roombj/35.jpg" style="max-width: 100%;">
<</if>>\
\
<div align='center'>\
After a time, you let it slip from your mouth and move on to the main attraction. You slowly slide your tongue up the bottom of her shaft and give the tip a long kiss and then kiss back down the shaft.
</div>\
<<button "Kiss the shaft" "Mariana Bedroom replay">><<set $replay = 26>><</button>>
\
\
\
<<elseif $replay == 26>>\
<<if $pgender is "male">>\
<img src="content/peoples/mariana/roombj/28.jpg" style="max-width: 100%;">
<<else>>\
<img src="content/peoples/mariana/roombj/36.jpg" style="max-width: 100%;">
<</if>>\
\
<div align='center'>\
You sense her growing impatience and finally wrap your lips around the head. Your cheeks cave in creating a pleasant suction as the smooth skin of her dick slides across your lips. And with that, her patience runs out and she pushes her cock deeper into your mouth.
</div>\
<<button "Take her deeper" "Mariana Bedroom replay">><<set $replay = 27>><</button>>
\
\
\
<<elseif $replay == 27>>\
<<if $pgender is "male">>
<img src="content/peoples/mariana/roombj/29.jpg" style="max-width: 100%;">
<<else>>\
<img src="content/peoples/mariana/roombj/37.jpg" style="max-width: 100%;">
<</if>>\
\
<div align='center'>\
You swirl your tongue around and around the underside further stoking her desire. Continuing to breathe through your nose, you maintain the suction around her cock. Pressing against the back of your mouth not quite to the back of your throat, you feel it throbbing against your tongue. You begin to bob your head back and forth noticing the flow of precum dripping from her tip. She tastes wonderful. You feel her thighs trembling and her balls tightening. She isn’t going to last much longer. You increase the force of your suction and your tongue goes into overdrive slipping along her shaft. You hear Mariana take one last long breath and hold it just moments before she explodes in your mouth.
</div>\
<<button "Keep her in your mouth" "Mariana Bedroom replay">><<set $replay = 28>><</button>>
\
\
\
<<elseif $replay == 28>>\
<<if $pgender is "male">>\
<video src="content/peoples/mariana/roombj/1.mp4" style="width: 100%;" autoplay loop></video>
<<else>>\
<video src="content/peoples/mariana/roombj/2.mp4" style="width: 100%;" autoplay loop></video>
<</if>>\
<div align='center'>\
The first shot hits the back of your throat so hard that it makes you blink in surprise. You swallow as fast as you can as spurt after spurt shoots out coating the back of your throat with her thick white jizz. You aren’t keeping up and you feel it backing up leaking from the corners of your mouth. You use your finger to catch the drips and finally letting her dick slide free, you push the escaped cum back into your eager mouth. Using your hands to milk the last few drops from her shaft, you lick the tip of her cock getting the final remnants and swallowing it.
</div>\
<<button "Swallow" "Mariana Bedroom replay">><<set $replay = 29>><</button>>
\
\
\
<<elseif $replay == 29>>\
<img src="content/peoples/mariana/roombj/32.jpg" style="max-width: 100%;">
\
<div align='center'>\
Mariana, completely spent, topples over sideways on the bed and you smile with satisfaction as her eyelids droop and close. You give her amazing cock one last parting kiss on the tip before you go letting her sleep peacefully.
</div>\
<<button "Leave" "Player Web">><<set $pdollsex to false>><<set $replay = 0>><</button>>
<</if>>\
<<if $replay == 0>>\
<div align='center'>\
You show her some positions and you keep touching her and try to tease her.
</div>\
<video src="content/peoples/chanel/1/2.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 1>>\
<div align='center'>\
You can see her cock is rock hard so you tell her to sit down and relax.
</div>\
<video src="content/peoples/chanel/1/3.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 2>>\
<div align='center'>\
This is your chance. You get naked and put your cock right in her face. She doesn’t hesitate and immediately wraps her lips around it.
</div>\
<video src="content/peoples/chanel/1/4.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 3>>\
<div align='center'>\
She gives you and intensive blowjob.
</div>\
<video src="content/peoples/chanel/1/5.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 4>>\
<div align='center'>You suck her cock and licking her ass to prepare for the penetration.</div>\
<video src="content/peoples/chanel/1/6.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 5>>\
<div align='center'>You fuck her many different positions just like you showed her before.</div>\
<video src="content/peoples/chanel/1/7.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 6>>\
<div align='center'>You feel she is very close to cum so you grabbed her and started licking her asshole and she starts stroking her cock pointing to her face. After a couple of strokes, she covering her face and mouth with her own cum.</div>\
<video src="content/peoples/chanel/1/8.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 7>>\
<div align='center'>It was beautiful and very sexy you are ready to cum. You fill her mouth with your seed.</div>\
<video src="content/peoples/chanel/1/9.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 8>>\
<div align='center'>She just irresistible with her own cum and your cum mixed on her and and in her mouth. You lean closer to her and give her a passionate long kiss. Both of your cum mixing both of your mouth.</div>\
<video src="content/peoples/chanel/1/10.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>That was a perfect yoga lesson. I will be coming next time. Thanks.<</speech>>
<<button "Leave" "Gallery">><<set $replay = 0>><</button>>
<</if>>\
<<if $replay == 0>>\
<<set $pdollsex to true>>\
<div align='center'>You find yourself suddenly nervous. You have heard stories of how painful it can be for women to lose their virginity. You feel the mattress sink with the weight of Chanel as she sits next to you. She turns your head with a sultry finger bringing your faces closer together for a smoldering kiss. You take comfort in how tenderly she is kissing you as you hope she continues to do so when it comes time for penetration.</div>\
<video src="content/trans/18.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>You notice Mariana out of the corner of your eye as she slowly disrobes while watching you and Chanel make out on your bed. She slowly sinks down in a chair opposite the bed wearing just some lacy pink lingerie. She moves the gusset of her panties to the side revealing the massive cock that would look more at home on a giant basketball player than this Amazonian beauty. A smile spreads across her face and her eyes are twinkling with delight as she is enjoying the show the two of you are putting on for her.</div>\
<video src="content/trans/19.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Final transformation night">><<set $replay = 1>><</button>>
\
\
\
\
\
<<elseif $replay == 1>>\
<div align='center'>Chanel slowly pulls back as a silvery string of saliva continues to connect the two of your wet lips. Her dainty hand comes up and gently pushes against your chest as you lay back onto the bed. She lifts one of your legs and ducks down to slide between your thighs. Her fingers slowly tease your new folds and your eyes close on their own as the sensation is more amazing than you had expected. She continues to slowly tease you and you feel a foreign tingling sensation in your tummy as your pussy begins to produce generous amounts of juice in anticipation of what is to come. You feel a slippery warm wet sensation slide up your lower lips and when it hits your clit, your nipples harden with such rapidity that your hands fly to them of their own accord. You moan loudly and lift your head to look down as Chanel peers back up at your from between your legs. Your fingers instinctually pull your lips apart to give her better access to your most sensitive places. Her lips wrap around your new love button giving it gentle suction and you almost see stars and hearts popping over Chanel’s head. You had no idea how much more intense the sensations of a clitoris were than your cock. Why would anyone want to be a man when they could feel so much pleasure as a woman like this?</div>\
<video src="content/trans/20.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Mariana chuckles to herself as she sees how much you are enjoying Chanel’s mouth. Her cock is fully erect now jutting from her pink panties as she slowly pumps it with her fist up and down.</div>\
<video src="content/trans/21.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Final transformation night">><<set $replay = 2>><</button>>
\
\
\
\
\
<<elseif $replay == 2>>\
<div align='center'>Chanel is driving you crazy with lust. You are very eager to feel her cock spread you open. You sit up and the two of your switch positions as you swallow her cock down feeling her hardness in your mouth.</div>\
<video src="content/trans/22.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>You see Mariana’s hand speeding up as she starts stroking her long shaft faster.</div>\
<video src="content/trans/23.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Final transformation night">><<set $replay = 3>><</button>>
\
\
\
\
\
<<elseif $replay == 3>>\
<div align='center'>Your pussy reminds you that it is missing out on the action and begins to demand attention. However, your mouth is loath to give up Chanel’s tasty dick. You spin your body around and press your pussy down against Chanel’s mouth giving her a less than subtle hint that you want to feel more of her tongue on your lower lips. Rather than continue to lick the ‘little man in the canoe’, Chanel dives in tongue first into your pussy. You involuntarily gasp which only comes out as a gurgle with a mouth full of cock. If her tongue feels that good inside you, how much better will her cock feel?</div>\
<video src="content/trans/24.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Mariana has to slow herself down to pace herself so she doesn’t come too soon trying to enjoy every second with her hands wrapped around her fat cock.</div>\
<video src="content/trans/25.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Final transformation night">><<set $replay = 4>><</button>>
\
\
\
\
\
<<elseif $replay == 4>>\
<div align='center'>The tingling in your tummy begins to increase and while it feels different than it did as a man, you can tell that you are building up to climax on Chanel’s tongue. Sensing this, Chanel stops and you look back down at seeing her smiling back coyly.</div>\
<<speech "Chanel">>We don’t want the show to end too quickly now. I think it is time to move on to the main event. Kneel for me and show me that tight ass of yours.<</speech>>
<div align='center'>You obediently crawl off her and position your rear to give her a tasty sight. She is thoughtful enough to make sure you are well lubricated before popping your cherry. You feel the head of her resting right there at the entrance and as eager as you are at this point, you feel that it is prudent to allow Chanel to set the pace as you are not sure what to expect.</div>\
<div align='center'>You obediently crawl off her and position your rear to give her a tasty sight. She is thoughtful enough to make sure you are well lubricated before popping your cherry. You feel the head of her resting right there at the entrance and as eager as you are at this point, you feel that it is prudent to allow Chanel to set the pace as you are not sure what to expect.</div>\
<video src="content/trans/26.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Mariana licks her lips and fondles her cum filled balls desperately wanting to cum already but trying to delay the gratification to enjoy the spectacle you are putting on.</div>\
<video src="content/trans/27.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Final transformation night">><<set $replay = 5>><</button>>
\
\
\
\
\
<<elseif $replay == 5>>\
<div align='center'>The pain of your lost virginity is gone and all you feel is an amazing fullness as Chanel plows your furrow. She manipulates your body like an origami master changing positions and showing you all the different ways your new female body can feel pleasure. You wish it would never end. You feel so close to Chanel right now as you share the most intimate experience you can as a woman. All good things must end however as you can see that she can’t last much longer. You feel a sense of pride that you have been able to pleasure her with this body.</div>\
<video src="content/trans/28.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Mariana takes presses her hands down into her balls at the bottom of her stroke sensing if she makes one more stroke that she will blow her load. She is hovering right on the edge watching the two of you. Just the sight of your is almost enough to tip her over the edge.</div>\
<video src="content/trans/29.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Final transformation night">><<set $replay = 6>><</button>>
\
\
\
\
\
<<elseif $replay == 6>>\
<div align='center'>You are not sure if Chanel is concerned about impregnating your new body or what her reason is but she withdraws and begins to stroke herself as she lays on her back across your bed. You climb between her legs just as she beings to cum and your mouth tries to capture as much of her erupting sperm as you can manage.</div>\
<video src="content/trans/30.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Seeing that Chanel is about to cum, Mariana resumes her stroking. Her fist is just a blur as she tries to time her climax with Mariana’s. As she hears Chanel’s groan as she unloads, Mariana releases her pent up seed as well giving her belly a nice cum glazed look.</div>\
<video src="content/trans/31.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>She rubs her hands through it and smears it all across herself like body paint.</div>\
<video src="content/trans/33.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Final transformation night">><<set $replay = 7>><</button>>
\
\
\
\
\
<<elseif $replay == 7>>\
<div align='center'>Once you have swallowed as much of Chanel’s cum as you can find, you give her a hot kiss allowing her to lick off the remnant of her cum from your lips.</div>\
<video src="content/trans/32.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Don’t be disappointed you didn’t cum on my dick. Most women don’t cum their first time. I will use my tongue on you to finish you off.<</speech>>
<div align='center'>Chanel rolls over and crawls between your legs once more. You are already hot and primed to go off. You softly pinch your nipples as her tongue goes into overdrive on your swollen nubbin. In less than a minute, your back arches and your moans turn to orgasmic cries. Your body goes limp as a rag doll as you bask in the afterglow.</div>\
<<button "Continue" "Final transformation night">><<set $replay = 8>><</button>>
\
\
\
\
\
<<elseif $replay == 8>>\
<<speech "Mariana">>Fuck, that was so good. I don’t feel like I need to ask but I will anyway; how was it for you $fname?<</speech>>
<div align='center'>All you can do is lay there as your mind whirls. You had no idea that sex as a woman would be so different. It turns out that a pussy feels way better than you ass. So many nerve endings! It was the most mind-blowing experience you’ve ever had.</div>\
<<speech "Mariana">>You don’t need to say a thing. The expression on your face says it all. Rest now. Oh, one more thing… you’ve passed your final test. I’m satisfied that you can be the woman you want to be. If you ever need to change back for any reason, I will understand that too. Life is complicated and big changes like one's gender can tricky. Feel free to change back and forth as needed and I won’t bat an eye. I admit that I have selfish reasons for allowing this as I hope that you will occasionally come to see me in your male body so I can use your ass again. Wouldn’t that be fun? Anyway, you don’t need to come to see me for checkups anymore. Provided you continue to behave that is. I still expect your best behavior!<</speech>>
<<button "Leave" "Gallery">><<set $replay = 0>><<set $pdollsex to false>><</button>>
<</if>>\
<<if $replay == 1>>\
<img src="content/location/hallway_down.jpg">
<div align='center'>You have just stepped into the house when you feel a sharp sting in your neck. Your hand goes to swat at it but you see the world spinning around you and all goes black.</div>\
<<button "Continue" "Chanelworkending">><<set $replay = 2>><<set $mreplay = 1>><<set $freplay = 1>><<set $sreplay = 1>><</button>>
\
\
\
\
\
<<elseif $replay == 2>>\
<<set $pdollsex to true>>\
<<if $pgender is "male">>\
<<if $mreplay == 1>>\
<div align='center'>You open your eyes groggily feeling very disoriented. You try to sit up but you have no strength to do so. All you see is fuzzy pink hair. Where the hell are you? You feel your underwear being pulled down your legs and try desperately to roll over or thrash your legs but nothing moves. You try to yell or scream but your tongue feels thick in your mouth and only mumbles come out.</div>\
<video src="content/peoples/chanel/2/m1.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelworkending">><<set $mreplay = 3>><</button>>
\
\
\
\
\
<<elseif $mreplay == 3>>\
<div align='center'>You feel hands on your ass spreading your cheeks and your eyes go wide. Who is that behind you? What is going on? The fog is quickly lifting from your mind and you are taking in more of your surroundings despite your inability to move. Is that Chanel’s perfume you smell? You feel a tongue slide up and down the crack of your ass and swirl around the tight crinkle of your hole. It feels amazing. If only you could move!</div>\
<video src="content/peoples/chanel/2/m2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>It seems the only thing you have control over is your eyes but you can sense everything. You smell Chanel’s sweet perfume, you hear the creak of the bed as the weight on the bed shifts.</div>\
<<button "Continue" "Chanelworkending">><<set $mreplay = 4>><</button>>
\
\
\
\
\
<<elseif $mreplay == 4>>\
<div align='center'>You feel the weight on the bed shift and pressure on your thigh as someone’s leg presses against yours. You feel a hot and hard cock pressing against your backdoor slowly feeding their cock into your ass. It is filling you up but they are taking their time with it and giving you a chance to stretch open to accommodate them. After a minute or so, you feel them bottom out as their pelvis presses against your backside. As they lay down across your back, you feel a soft pair of breasts press into your back and feel hot breath on your neck.</div>\
<<speech "Chanel">>Wakey wakey sexy. Time to get fucked.<</speech>>
<video src="content/peoples/chanel/2/m3.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelworkending">><<set $mreplay = 5>><</button>>
\
\
\
\
\
<<elseif $mreplay == 5>>\
<div align='center'>She starts off gentle sawing her hips back and forth driving her dick into you slowly. Then she sits back and taking hold of your hips begins to fuck your ass in earnest. As she does, you begin to feel the strength slowly returning to your limbs. As it does, you begin to push back up trying to roll over but Chanel doesn’t let you.</div>\
<video src="content/peoples/chanel/2/m4.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Just where do you think you are going? I’m not done with you yet.<</speech>>
<<speech "player" "$fname">>Just what the hell do you think you are doing Chanel? You can’t just drug and rape me!<</speech>>
<div align='center'>She drives her cock into you hard to punctuate her next statement.</div>\
<<speech "Chanel">>I… Told… You… To… Call... Me… Princess… Chanel… Got… It?<</speech>>
<div align='center'>You drop your hands to your side surrendering to her cock and she returns to her more sensual strokes.</div>\
<<speech "Chanel">>You knew the consequences of not cleaning my room. You were warned. I should have told my mom everything and had your ass kicked out of town. But I decided that it would be so much more fun to punish you myself. I’m not ready to let you go just yet.<</speech>>
<<speech "player" "$fname">>You could have just called me to your room. You didn’t have to be so heavy-handed to drug me and knock me out.<</speech>>
<<speech "Chanel">>I am making the rules and I decide your punishment. This way, it is all my pleasure and you just get to lay there and take it. Enough talk now, time for me to take your ass bitch.<</speech>>
<<button "Continue" "Chanelworkending">><<set $mreplay = 6>><</button>>
\
\
\
\
\
<<elseif $mreplay == 6>>\
<div align='center'>Despite your strength beginning to return, you think it best to obey Chanel. Besides, the jokes on her because despite not being able to move much, you are still able to feel everything. Her cock feels wonderful in your ass and you pull your knees underneath you to lift it higher for her also letting you push back to meet her thrusts.</div>\
<<speech "Chanel">>Such a hot little bitch for my cock. Rollover onto your back. I want to watch you as I fuck you.<</speech>>
<video src="content/peoples/chanel/2/m5.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelworkending">><<set $mreplay = 7>><</button>>
\
\
\
\
\
<<elseif $mreplay == 7>>\
<div align='center'>You spin onto your back and lift your legs as Chanel pushes back in. You reach down to stroke your cock but Chanel slaps your hand away. Her thrusts are increasing in speed. It won’t be long now. Just a few strokes later, she pulls out and crawls over you to sit on your chest as she strokes herself over your mouth. Angling her cock down to your mouth, she unleashes her load which sprays into the back of your throat.</div>\
<<speech "Chanel">>Swallow it all down. You need your vitamins. There’s a good boy.<</speech>>
<video src="content/peoples/chanel/2/m6.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Have you learned your lesson? Every time you forget to clean my room, you will be punished. Now get out. Your princess is sleepy.<</speech>>
<div align='center'>You stand up on wobbly legs. You are still a bit weak after being drugged but you manage to pick up your clothes and walk out the door closing it softly behind you.</div>\
<<button "Leave" "Player Web">><<set $mreplay = 1>><<set $pdollsex to false>><</button>>
<</if>>\
\
\
\
\
\
\
\
\
\
\
<<elseif $pgender is "female">>\
<<if $freplay == 1>>\
<div align='center'>You open your eyes groggily feeling very disoriented. You try to sit up but you find that your arms have been tied above your head. You pull on your legs and find them similarly bound. Looking around the room only confuses you more. Where the hell are you? Just then, Chanel walks into the room with a smug look on her face.</div>\
<video src="content/peoples/chanel/2/f1.mp4" style="width: 100%;" autoplay loop></video>
<<speech "player" "$fname">>Chanel, what the hell is going on?<</speech>>
<<speech "Chanel">>Calm down $fname, you are in the basement. And I told you to call me Princess Chanel! You knew the consequences of not cleaning my room. You were warned. I should have told my mom everything and had your ass kicked out of town. But I decided that it would be so much more fun to punish you myself. I’m not ready to let you go just yet.<</speech>>
<<speech "player" "$fname">>You could have just called me to your room. You didn’t have to be so heavy-handed to drug me and knock me out.<</speech>>
<<speech "Chanel">>I am making the rules and I decide your punishment. This way, it is all my pleasure and you just get to lay there and take it. Enough talk now, I have other plans for your mouth.<</speech>>
<<button "Continue" "Chanelworkending">><<set $freplay = 3>><</button>>
\
\
\
\
\
<<elseif $freplay == 3>>\
<div align='center'>Chanel steps up next to the bed you are tied to and swings her leg over it to straddle your head bringing her hard cock to your mouth. Pressing down with her body, it slides to the back of your mouth and down your throat. She leaves it there for a few moments and you quickly feel the need to breathe grow in your body forcing you to struggle against your bonds. Finally, Chanel relents and sits back on your chest allowing you to breathe.</div>\
<video src="content/peoples/chanel/2/f2.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelworkending">><<set $freplay = 4>><</button>>
\
\
\
\
\
<<elseif $freplay == 4>>\
<div align='center'>She takes hold of the back of your head and shoves her dick back in pulling you against her as she fucks your face.</div>\
<<speech "Chanel">>Take my cock bitch. Take it all. You dirty little slut.<</speech>>
<video src="content/peoples/chanel/2/f3.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelworkending">><<set $freplay = 5>><</button>>
\
\
\
\
\
<<elseif $freplay == 5>>\
<div align='center'>She pulls out and slides further up your body and sits on your face. With your arms tied around you, your head has no wear to go and Chanel’s ass plops down right on your lips.</div>\
<<speech "Chanel">>Eat my asshole. Get your tongue up in there. Yes, just like that. Who’s a good little whore? Yes, that’s right; you are.<</speech>>
<video src="content/peoples/chanel/2/f4.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelworkending">><<set $freplay = 6>><</button>>
\
\
\
\
\
<<elseif $freplay == 6>>\
<div align='center'>After several minutes of tonguing her ass, she stands back up and walks around to the foot of the bed where she untiles your legs.</div>\
<<speech "Chanel">>Spread your legs for me. My cock wants a taste of your sweet pussy.<</speech>>
<div align='center'>Looking down over your breasts, you watch Chanel’s glistening hard cock as it bobs back and forth as she crawls between your legs and lines up with your slit. She rubs the head up and down between the lips getting your warmed up. Flexing her ass, she pushes inside and is buried completely in just two strokes. Leaning forward resting her hands on your jiggling breasts, she fucks your pussy.</div>\
<video src="content/peoples/chanel/2/f5.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelworkending">><<set $freplay = 7>><</button>>
\
\
\
\
\
<<elseif $freplay == 7>>\
<<speech "Chanel">>If I untie you, will you be a good little slut and take the rest of your punishment like a good girl?<</speech>>
<div align='center'>Biting your lower lip gently, you nod your head. She reaches up and pinches one of your hard nipples gently and then stands up to walk around to the head of the bed to until your hands.</div>\
<<speech "Chanel">>I want you to ride my cock. Show me how bad you want this dick inside you.<</speech>>
<div align='center'>You sit up and stand on wobbly legs as Chanel lies down in your place. You crawl over her gorgeous body and reaching behind you, guide her wet cock back into your quim. Mmmmm, her cock feels so good inside you! You very happily ride her for the next several minutes feeling her fill your pussy and making your clit tingle.</div>\
<video src="content/peoples/chanel/2/f6.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelworkending">><<set $freplay = 8>><</button>>
\
\
\
\
\
<<elseif $freplay == 8>>\
<<speech "Chanel">>You are enjoying this way too much $fname. This is supposed to be a punishment. Roll over, time to take it in the ass!<</speech>>
<div align='center'>You kneel on the bed presenting your ass to Chanel. She spits on your ass and spreads it in with her cock before pushing inside. It pops through the ring of muscles and slides in without further resistance. As she rides your ass, she slaps her hand against your posterior making a loud sound causing you to cry out in pleasure more than pain.</div>\
<video src="content/peoples/chanel/2/f7.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelworkending">><<set $freplay = 9>><</button>>
\
\
\
\
\
<<elseif $freplay == 9>>\
<<speech "Chanel">>Shit! You love it in the ass just as much, don’t you, you little whore? Fuck it, sping around, I want back in your pussy.<</speech>>
<div align='center'>You eagerly comply and a moment later, Chanel is fucking your pussy once more. Her head is tilted back with a big grin on her face. Suddenly, she shudders and you feel her bust her nut deep inside your pussy.</div>\
<<speech "Chanel">>Oh shit! I just came! I wanted to blow my load all over your pretty face! That was supposed to be part of the punishment to eat my cum… Reach down and scoop it out of your pussy and eat it. Yeah, there you go. There’s a good girl.<</speech>>
<video src="content/peoples/chanel/2/f8.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Have you learned your lesson? Every time you forget to clean my room, you will be punished. Now get out.<</speech>>
<div align='center'>You stand up on wobbly legs. You are still a bit weak after being drugged but you manage to pick up your clothes and walk out the door.</div>\
<<button "Leave" "Player Web">><<set $freplay = 1>><<set $pdollsex to false>><</button>>
<</if>>\
\
\
\
\
\
\
\
\
\
\
<<elseif $pgender is "shemale">>\
<<if $sreplay == 1>>\
<div align='center'>When your eyes open again, you find yourself laying in someone else’s bed. Rubbing your eyes, you look around and recognize Chanel’s room. Just then, Chanel walks into the room.</div>\
<video src="content/peoples/chanel/2/s1.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>Oh good, you are awake. I was afraid that perhaps I had overdone it with the drug.<</speech>>
<<speech "player" "$fname">>Chanel? What is going on? What happened? You drugged me?<</speech>>
<<speech "Chanel">>I told you to call me Princess Chanel! You knew the consequences of not cleaning my room. You were warned. I should have told my mom everything and had your ass kicked out of town. But I decided that it would be so much more fun to punish you myself. I’m not ready to let you go just yet.<</speech>>
<<speech "player" "$fname">>You could have just called me to your room. You didn’t have to be so heavy-handed to drug me and knock me out.<</speech>>
<<speech "Chanel">>I am making the rules and I decide your punishment. This way, it is all my pleasure and you just get to lay there and take it. Enough talk now, I have other plans for your mouth.<</speech>>
<<button "Continue" "Chanelworkending">><<set $sreplay = 3>><</button>>
\
\
\
\
\
<<elseif $sreplay == 3>>\
<div align='center'>She takes hold of the back of your head and shoves her dick back in pulling you against her as she fucks your face.</div>\
<<speech "Chanel">>Take my cock bitch. Take it all. You dirty little slut.<</speech>>
<video src="content/peoples/chanel/2/s2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Chanel moves around to different positions on the bed forcing you to suck her dick until finally she feels warmed up enough.</div>\
<<speech "Chanel">>That’s enough, I want your ass now. Come sit on my cock baby.<</speech>>
<<button "Continue" "Chanelworkending">><<set $sreplay = 4>><</button>>
\
\
\
\
\
<<elseif $sreplay == 4>>\
<div align='center'>She lays back on the bed and you crawl over her gorgeous body and reaching behind you, guide her wet cock back into your hole. Mmmmm, her cock feels so good inside you! You very happily ride her for the next several minutes feeling her fill your ass and making your nipples tingle. You ride her and then she pushes you over and slides back inside taking you in the classic missionary position. Spinning you once more, she rides your doggy style gripping your waist to thrust into you hard.</div>\
<video src="content/peoples/chanel/2/s3.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Chanelworkending">><<set $sreplay = 5>><</button>>
\
\
\
\
\
<<elseif $sreplay == 5>>\
<div align='center'>She pulls out and laying on her back begins to pump hard until her cock erupts like a fountain.</div>\
<<speech "Chanel">>Swallow it all down. You need your vitamins. There’s a good girl.<</speech>>
<video src="content/peoples/chanel/2/s4.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Chanel">>. Have you learned your lesson? Every time you forget to clean my room, you will be punished. Now get out. Your princess is sleepy.<</speech>>
<div align='center'>You stand up on wobbly legs. You are still a bit weak after being drugged but you manage to pick up your clothes and walk out the door closing it softly behind you.</div>\
<<button "Leave" "Player Web">><<set $sreplay = 1>><<set $pdollsex to false>><</button>>
<</if>>\
<</if>>\
<</if>>\
<<if $replay == 1>>\
<div align='center'>You both get settled in for the game. You select your teams and the match begins. You both go back and forth and you see Jordi stealing glances at you so you know he is a bit distracted. You try to push the advantage but whenever things get tense, his focus returns and manages to fend you off. You seem to be getting better but you are still no match for Jordi. He scores the first goal and off comes your bra.</div>\
<video src="content/peoples/jordi/5.mp4" style="width: 100%;" autoplay loop></video>
<<button "Take off your bra" "Jordistripreplay">><<set $replay = 2>><</button>>
\
\
\
\
\
<<elseif $replay == 2>>\
<video src="content/peoples/jordi/6.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>If he was distracted by your creamy legs, he is even more distracted by your juicy tits. You press even harder to score but as before, he manages to tear his eyes away in time to defend his goal. Eventually, he makes the next goal as well.</div>\
<<button "Take off your panties" "Jordistripreplay">><<set $replay = 3>><<set $pdollsex to true>><</button>>
\
\
\
\
\
<<elseif $replay == 3>>\
<div align='center'>You make a bit more of a show out of removing your panties trying to get him even more flustered. You can hear his breathing has sped up and there is a flush to his cheeks and you suspect that he is hiding a boner in his underwear but the way he is sitting makes it hard to tell.</div>\
<video src="content/peoples/jordi/7.mp4" style="width: 100%;" autoplay loop></video>
<<button "Keep playing" "Jordistripreplay">><<set $replay = 4>><</button>>
\
\
\
\
\
<<elseif $replay == 4>>\
<div align='center'>All the distractions finally prove to be too much for Jordi and you are able to score your first goal. Without a word, he stands and pulls down his tight underwear revealing his hard and throbbing cock.</div>\
<video src="content/peoples/jordi/8.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Even though he is obviously aroused, he is not pleased to have conceded a goal. His gameplay is more focused again but his ardor has not been affected as his cock waves in the air as he wiggles in his seat. Now it is you that seems to be distracted. Well, there is a simple solution for that.</div>\
<<button "Distract him" "Jordistripreplay">><<set $replay = 5>><</button>>
\
\
\
\
\
<<elseif $replay == 5>>\
<div align='center'>You lean across Jordi and wrap your lips around the head of his cock. Jordi flinches looking down at you as you divide your attention between the meat popsicle in your mouth and the game. You continue to bob your head up and down on Jordi for several minutes and at this point, both of you are too distracted to mount much of an offense.</div>\
<video src="content/peoples/jordi/9.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>You are much more interested in the cock in your mouth than in the game at this point but Jordi is still trying to continue the game. Time to escalate.</div>\
<<button "Keep distracting him" "Jordistripreplay">><<set $replay = 6>><</button>>
\
\
\
\
\
<<elseif $replay == 6>>\
<div align='center'>You pop his cock out of your mouth and lean over the chair presenting your ass and arch your back making it a more tempting target.</div>\
<<speech "player" "$fname">>Come on big boy, show me what you’ve got. Fuck me Jordi.<</speech>>
<div align='center'>Jordi looks at your ass and then glances back to the screen before looking back at you again. After a moment’s hesitation, he is too turned on to resist you and he sets the controller down. Wrapping his fingers around your waist, he lines up his cock and slides it in. Oh yes, that feels good.</div>\
<video src="content/peoples/jordi/10.mp4" style="width: 100%;" autoplay loop></video>
<<button "Keep playing" "Jordistripreplay">><<set $replay = 7>><</button>>
\
\
\
\
\
<<elseif $replay == 7>>\
<div align='center'>You close your eyes focusing on the feeling of his sizable cock filling your hungry pussy. The two of you drop all pretenses and focus on each other’s pleasure as you fuck in different positions around his room.</div>\
<video src="content/peoples/jordi/11.mp4" style="width: 100%;" autoplay loop></video>
<<button "Keep fucking" "Jordistripreplay">><<set $replay = 8>><</button>>
\
\
\
\
\
<<elseif $replay == 8>>\
<div align='center'>Despite Jordi’s shy nature and small frame, he is well endowed and has a surprising amount of stamina. Eventually the inevitable happens and you feel he is getting close to release. You drop to your knees opening your mouth wide in invitation. With a groan, Jordi flexes his ass as he thrusts his dick back harder into his hands as he erupts coating your face with his seed.</div>\
<video src="content/peoples/jordi/12.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>You lick your face and wipe with your fingers scooping it into your eager mouth.</div>\
<<speech "player" "$fname">>Wow, Jordi! I didn’t think you had it in you. That was very hot!<</speech>>
<div align='center'>You both continue to look at each other as you continue to dress and Jordi has a goofy grin on his face.</div>\
<<speech "player" "$fname">>I think I’m getting better at FIFA. I want a rematch.<</speech>>
<<speech "Jordi">>I think I’m getting better at FIFA. I want a rematch.<</speech>>
<<button "Leave" "Gallery">><<set $pdollsex to false>><<set $replay = 0>><</button>>
<</if>>\
<<if $replay == 0>>\
<div align='center'>You pat the floor beside your mat and she takes a mat out of her bag and rolls it out next to yours. She does some quick stretches while you continue your breathing exercises. She smiles over at you and you take her queue that she is ready to begin. You start off with a few sun salutations and moved into a downward-facing dog pose. You look over and notice Natalie checking out your ass in your exercise clothes. You likewise take a look at her ass as it stretches her shorts most tantalizingly.</div>\
<img src="content/peoples/maid/4/2.jpg">
<div align='center'>The two of you continue through various yoga poses working your way up to the more advanced postures while you both openly ogle each other.</div>\
<<button "Finish it" "Natalieyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 1>>\
<div align='center'>You have finished your routine and you are both sitting on your mats chatting when Natalie scoots closer to you and begins running her hand up your knee. Both of you are pretty turned on from watching your luscious bodies bending, twisting, and flexing.</div>\
<img src="content/peoples/maid/4/3.jpg">
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 2>>\
<div align='center'>Natalie leans in and kisses you. You kiss her back and the two of you begin breathing heavily as you make out.</div>\
<video src="content/peoples/maid/4/1.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><<set $pdollsex to true>><</button>>
\
\
\
\
\
<<elseif $replay == 3>>\
<div align='center'>She gently moves your body around so she can get a better look at your full ass. She runs her hands over it a few times and then pulls your bottoms off and leans down to lick it.</div>\
<video src="content/peoples/maid/4/2.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Your damp face is pressed against the yoga mat as you continue to moan under her talented tongue’s ministrations on your tight ass hole. You look back over your shoulder as you feel her move back.</div>\
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 4>>\
<div align='center'>You see she has a medium-sized clear butt plug in her hand. She spits on it and begins to rub it against your tight pink rosebud hole. You feel yourself stretching open to accept the toy and groaning with pleasure, you arch your back as you feel it sliding home pulled tight by your sphincters to bring the flared base firmly against your ass cheeks. Natalie rubs the clear base making sure it is in nice and tight. It feels so good lodged there in your ass.</div>\
<video src="content/peoples/maid/4/3.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 5>>\
<div align='center'>She presses you down to the mat and lifts your leg twisting you back onto your back. She opens up your pussy and brings her delightful tongue down to lick its delicate folds while her hand continues to move the plug around in your ass. You pull up your top and play with your breasts enjoying all the sensations driving you mad with passion.</div>\
<video src="content/peoples/maid/4/4.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 6>>\
<div align='center'>She fishes back in her gym back and pulls out a long black double-ended dildo and hands it to you with an adorable expression on her face. You prop yourself up on your knees as she bends over presenting her pale white ass, her hole already opening up for you eager for the toy. Taking the dildo with both hands, you slowly feed it into her greedy ass. It slips in so easily!</div>\
<video src="content/peoples/maid/4/5.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 7>>\
<div align='center'>It is turning you on to see how much she is enjoying being fucked by this big black cock. You can’t believe how easily it is moving in and out of her hole. You see your cock dangling there under the rubber dong and you take hold of it. It feels so good in your hand and you stroke it in time with the toy going in and out of her ass. Without thinking, you wrap your lips around the other end of the dildo as it wobbles around above your hand; almost from instinct. You moan as your slobber rolls down the shaft.</div>\
<video src="content/peoples/maid/4/6.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 8>>\
<div align='center'>Natalie looks back at you and sees that you are taken in a lustful fit and grins. She sits up and pulls the double-ended dildo out of her ass and presses your back forcing you onto your hands and knees. She removes the butt plug from your ass and begins to push the larger dildo in. Clearly, she has more experience taking things in her ass because it doesn’t slide in nearly as easily to yours. You moan loudly as it fils you up. She allows a little time for you to relax and the hole to stretch enough to move it more. She reaches under and begins to finger your clit. Her fingers speed up strumming your hot little button as she begins to move the dildo in and out of your ass.</div>\
<video src="content/peoples/maid/4/7.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 9>>\
<<speech "Maid" "Natalie">>Oh god $fname, you look so hot! I want to fuck your ass with my ass. Hold still while I put the other end in my ass.<</speech>>
<div align='center'>She kneels between your legs and backs her ass up to yours and brings the other end of the double-sided dildo to her experienced hole. She slowly backs herself up pushing more of it inside her until her bum cheeks press against yours. She pulls back and slams back against your ass making a dull slapping sound as your flesh meets. Taking her queue, you begin to move your ass as well and the sounds of your union reverberate through the room.</div>\
<video src="content/peoples/maid/4/8.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 10>>\
<div align='center'>You feel her balls swinging back hitting you as you come together. Looking down between your legs, you see her cock is hard between her legs. You slow and then stop fucking back into Natalie as you are taken by another hunger. You pull the dildo from between you and crawl over to her and begin to worship her beautiful dick. You lick and suck at it and take it all the way down to the root feeling it in the back of your throat.</div>\
<video src="content/peoples/maid/4/9.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Maid" "Natalie">>My my, what a horny slut you are today. You love this dick, don’t you? That’s it, suck it all the way in. Yessss, that feels so good $fname. You have a talented mouth there. I love fucking your mouth but I am ready to fuck you ass now. Bend down and show me sexy little hole again. It is time to ride your ass.<</speech>>
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 11>>\
<div align='center'>She pulls out of your mouth and you turn arching your back making it look so tantalizing for Natalie. She easily mounts you and after all the warmup, it slips in easily. You feel like a bitch in heat as she pounds away at you and you are eager to take it all. She adjusts her position behind you and presses your head down into the mat and you love every minute of it. You reach between your legs to try to play with your pussy but she slaps your hand away.</div>\
<video src="content/peoples/maid/4/10.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Maid" "Natalie">>None of that bitch, it's my turn right now. You can have your turn in a few more minutes.<</speech>>
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 12>>\
<div align='center'>With that, she goes into overdrive really slamming hard into you forcing the wind out of you. She quickly tires and pulls out. Going over to her bag again, she pulls out a white leather strapon harness and realistic dick already attached and hands it to you.</div>\
<<speech "player" "$fname">>You really came prepared for yoga today… Such a horny girl Natalie!<</speech>>
<<speech "Maid" "Natalie">>Just shut up and fuck me already. I am so horny! I want you to fuck me as hard and as long as you can.<</speech>>
<div align='center'>You have a little trouble fiddling with the harness getting it on and strapped on tight to you but soon enough, you are locked and loaded, and without preamble, you slam it in all the way to the hilt with a satisfying thump causing Natalie to grunt. It feels a bit foreign to fuck with a toy when you are so used to using your own but the motions are familiar and you give her the good dicking she asked for. You move between different positions and you reach around her to stroke her cock as you pound into her.</div>\
<video src="content/peoples/maid/4/11.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><</button>>
\
\
\
\
\
<<elseif $replay == 13>>\
<div align='center'>You are on your back and she is riding you reverse cowgirl stroking her dick when she begins to shudder. You can tell she is getting close to nutting. She reaches down to stroke her dick and you let go allowing her to jerk it at her own pace. You feel her spasming on top of you when she cries out, she shoots her load across her tummy.</div>\
<video src="content/peoples/maid/4/12.mp4" style="width: 100%;" autoplay loop></video>
<div align='center'>Rolling off you, she pulls out a towel to wipe herself off. Looking up at the clock on the wall she gasps and begins frantically putting her toys and mat back in her back.</div>\
<<speech "Maid" "Natalie">>Sorry to cum and run but I am really late. I was supposed to have the main floor clean by now. I’m going to have to bust my ass in a different way to catch up. Sorry I can’t help you out. I’ll have to make it up to you next time. That was super hot by the way. You were amazing!<</speech>>
<<button "Continue" "Natalieyogareplay">><<set $replay += 1>><<set $pdollsex to false>><<set $pdollcum to true>><</button>>
\
\
\
\
\
<<elseif $replay == 14>>\
<div align='center'>You sit there dumbstruck as you lay back on the mat. Your loins are still aching for attention so you use your fingers. You are still not as familiar with getting yourself off in your female body but you don’t have too much trouble finding what feels good and soon enough, you feel the familiar sensation of a growing orgasm. Your sweet mingles with your pussy juices dripping down your thigh to puddle on the mat under you. It feels amazing of course but after all that build up with Natalie, you can’t help but feel a bit let down at how it ended. You will make sure she makes it up to you at some point. You wipe yourself off and put your clothes back on before closing the studio reeking of sex.</div>\
<video src="content/peoples/maid/4/13.mp4" style="width: 100%;" autoplay loop></video>
<<button "Leave" "Gallery">><<set $replay = 0>><</button>>
<</if>>\
<div align='center'>You stop by a café outside the park and pick up some sandwiches to go and walk into the park. You find a pleasant spot in some grass near some trees giving you shade with a nice view over a pond in the distance.</div>\
<video src="content/peoples/kimberlee/4.mp4" autoplay loop></video>
<div align='center'>The two of you sit together and continue to make small talk learning about each other while eating your sandwiches. The sound of the wind blowing through the leaves and the gentle voices of children running in the distance as well as the sun glistening off the water of the pond, it is all very bucolic. Once you are done eating, the two of you sigh together enjoying the view. Kimberlee pats her lap inviting you to rest your head. You lay down and she begins to run her fingers through your hair which feels amazing.</div>\
<video src="content/peoples/kimberlee/5.mp4" autoplay loop></video>
<<speech "player" "$fname">>I’m really having a great time Kimberlee. This is so lovely. I’m so glad you suggested it.<</speech>>
<<speech "Kimberlee">>I’m glad dear. I’m having fun too. It is so nice to spend time with someone outside of work. And of course, having someone as pretty as you for company is the cherry on top.<</speech>>
<div align='center'>As your head lays there in her lap, you begin to feel something pressing against the side of your head. Is she getting turned on? Her other hand slides down your side caressing your body as her other hand continues to play with your hair. The pressure against your cheek continues to grow. Kimberlee takes hold of the hem of her skirt and tugs it up slips top of her panties down allowing her turgid cock to spring free. You begin to object and move to sit up when she holds your head back down again.</div>\
<<speech "Kimberlee">>Shhhhh, just be quiet. It’s alright. No one is close enough to see. Your hot little body was too much for me to stand. I can’t help it that you turn me on. You are going to have to help me out.<</speech>>
<div align='center'>She reached down and guides her cock bringing it closer to your lips and you reluctantly part them giving her cock a little kiss. She is not going to let it stop there though. She pushes it more insistently to your mouth and you finally open wide enough to let it slip in. Once inside, Kimberlee begins to press her hand against the top of your head forcing more of it in.</div>\
<video src="content/peoples/kimberlee/6.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>Hush now, just go with it. I’m so horny, I don’t think I’ll last long. Just let it happen.<</speech>>
<div align='center'>You stop resisting and try to work her cock faster so you can get away from this embarrassing situation? What is it about Kimberlee and public fellatio? You hear a couple talking close by and realize that someone must be walking down the path near your picnic spot. Will they see you? Kimberlee holds your head down and tosses the hem of her skirt over you. As if that would make it look any more decent… A woman sitting with the legs crossed with another woman’s head under her skirt. What would they think if they saw you like that? Mercifully, the voices continue on past you, and Kimberlee raises her skirt once more and bouncing her hips, encourages you on again. You use all your practiced skills to work her dick trying to speed to the climax.</div>\
<video src="content/peoples/kimberlee/7.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>Good god you are a talented cock sucker. Don’t drain all of me. I have plans for you later tonight!<</speech>>
<div align='center'>Your eyes pop open at the revelation but you continue your ministrations on her cock. Thankfully, she doesn’t last much longer as you feel her hips begin to lift with your strokes. She gives out a couple of soft whimpers as she erupts into your mouth filling it with your shemale cum. You sputter as it comes flying out and use your hand to wipe your mouth looking around self consciously as you come up for air.</div>\
<video src="content/peoples/kimberlee/8.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>That was so nice. Nothing like a late evening blowjob in the park, eh?<</speech>>
<div align='center'>She giggles as she stands up taking your hand to pull you up as well. The two of you pack up your lunch and you begin walking out of the park. You notice Kimberlee lagging behind and as you turn around, you see her skirt wagging in front of her. Apparently, her concern for you draining her too much was unwarranted as her cock is wagging under her skirt as she walks. You look up at her face and notice that she is staring at your ass. She catches you looking and smiles at you as she catches up to you taking your hand in hers and swing both your arms as you walk feeling very joyful.</div>\
<<speech "Kimberlee">>Follow me, we’re going back to my place. We obviously are not done yet taking care of my needs today.<</speech>>
<<button "Leave" "Gallery">><</button>>
<<if $replay == 0>>\
<<set $pdeollsex to true>>\
<div align='center'>She takes you back to her house. You don’t have my chance to look around as she takes you directly back to her bedroom and pulls you up onto the mattress. As the two of you kneel on the bed together, she leans forward and gives you a gentle kiss on your lips.</div>\
<video src="content/peoples/kimberlee/9.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>I enjoyed spending time out with you today. You are a very nice person. And it doesn’t hurt that your body is so sexy.<</speech>>
<div align='center'>She presses her hands against your breasts getting a good feel as she gives you another kiss. Reaching up, she pulls the straps of your top down exposing your round breasts. Running her fingers along their curves, Kimberlee leans in to shower soft kisses across them pay close attention to your nipples which harden under her touch.</div>\
<video src="content/peoples/kimberlee/10.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>You seemed to enjoy that. Look how hard your nipples got. Why don’t you do the same to me? I want to feel your lips on my boobs.<</speech>>
<div align='center'>She pulls her top down and gently encourages you to kiss them. You do your best to imitate her kisses on her breast and she coos in response.</div>\
<video src="content/peoples/kimberlee/11.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>You have an amazing body $fname. Take the rest of your clothes off. I want to see more of you.<</speech>>
<div align='center'>You push your dress the rest of the way off as Kimberlee peels off her clothes as well.</div>\
<<button "Continue" "Kimberlee Home">><<set $replay += 1>><</button>>
\
\
\
\
\
\
<<elseif $replay == 1>>\
<<speech "Kimberlee">>You have a lovely dick as well. Do you like mine? Tell me how beautiful I am. Tell me that I’m sexy.<</speech>>
<div align='center'>Reaching over between your legs, she fondles your still soft cock. It begins to spring to life at her touch. You stall your response to her request by reaching over to play with her cock as well. The two of you lay there together on her bed getting handsy together. Disappointed yet still determined, she leans over and kisses you more.</div>\
<video src="content/peoples/kimberlee/12.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>I know you don’t love me yet. It’s okay, I’m patient enough to keep you coming back until you do. You’ll come around eventually. Until then, suck my dick again.<</speech>>
<div align='center'>Spreading her legs wide, she invites you in and you obediently take her into your mouth and feel her continue to grow as you suck her. Once she is fully hard, she gently pushes you back.</div>\
<video src="content/peoples/kimberlee/13.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>I’m not a heartless bitch like everyone seems to think. I care about you $fname. I want you to feel good too. Get up for me and I’ll suck your dick for you too.<</speech>>
<div align='center'>As you rise, she bends down and sucks your cock into her mouth. It feels so warm and her tongue feels amazing as it slithers all over your cock. Her head bobs up and down taking you in deeper. She spreads her legs and reaches between to stroke her hard cock as she blows you.</div>\
<video src="content/peoples/kimberlee/14.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Kimberlee Home">><<set $replay += 1>><</button>>
\
\
\
\
\
\
<<elseif $replay == 2>>\
<<speech "Kimberlee">>I’m ready for you now. I want to feel your ass. Bend over and let me fuck you. I’ll make you feel so good.<</speech>>
<div align='center'>She bends you over and positions you just at the right for her as she rubs herself up and down your ass crack teasing you first. Despite her earlier words, she doesn’t seem very patient as she quickly moves her cock in line with your ass and thrusts. In just a couple of strokes, she manages to work herself in to the hilt and begins to bank away at your ass. There is no denying that she feels good but she doesn’t seem to be paying your needs much attention as she seems completely absorbed with taking her own pleasure from your ass.</div>\
<video src="content/peoples/kimberlee/15.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>Your ass is so good. I could fuck you all night! I want to see your tits jiggle as I fuck you. Rollover for me so I can watch them, dear.<</speech>>
<div align='center'>Doing as you're told, you spread your legs wide and she lifts them to drive back inside. She has a wonderful cock, no doubt about it. Despite your frustration over the predicament with your relationship with her, you can’t deny that she is making you feel good. You reach down and stroke yourself as you begin to feel the slow build of your orgasm.</div>\
<video src="content/peoples/kimberlee/16.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>I love how hot you look with my cock sliding in and out of your ass and your titties bouncing up and down as you stroke yourself for me. I’m not going to last much longer but I don’t want to waste my load in your ass. Be a dear and suck me off again. I know you love how I taste even if you won’t say so.<</speech>>
<div align='center'>Feeling frustrated at being denied your orgasm, you don’t have any choice but to do as you are told. In for a penny and in for a pound. You just have to see this through to the end whatever that might be. She strokes herself and you open your mouth to accept her seed. She pushes it inside and you dutifully suck her clean.</div>\
<video src="content/peoples/kimberlee/17.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>So sexy my cum glazed donut. Give me a cummy kiss. Oh, you are delightfully sexy.<</speech>>
<video src="content/peoples/kimberlee/18.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Kimberlee">>I want to get you off too but as you won’t return my love, I’m going to wait to get you off until you do. I don’t think I’ll have to wait too long. I think you are almost mine, aren’t you? No no, you don’t need to say anything. I’m feeling really good. You can see yourself out. I’ll email you again when I’m ready for our next day. Night night love! Until next time.<</speech>>
<div align='center'>\
She blows you a kiss and then rests her head back down on the pillow. Picking up your clothes, you change in the dark living room and head out the door. Damn, what a sticky situation! You still have no idea how you are going to get yourself out of this one.
</div>\
<<button "Leave" "Gallery">><<set $replay = 0>><<set $pdollsex to false>><</button>>
<</if>>\
<<if $pgender is "male">>\
<<if $replay == 1>>\
<div align='center'>As you walk into the lab, you notice out of the corner of your eye that the two security guards have stood up and are walking towards you. Confused why they would take an interest in you, you glance behind you to see if perhaps they are looking at someone that came in after you but there is no one there.</div>\
<img src="content/peoples/venus/1/3.jpg">
<div align='center'>By the time you turn back around, they are on you and take hold of both of your arms in a firm no-nonsense grip. You stammer back at them asking what is happening but they just look straight ahead as they whisk you down a hallway. You quickly understand what is happening as you find yourself being pulled into Venus’s office. There is a door in the side of her office that you had not noticed before that is open and you see Venus sitting on a leather couch watching you as you are shoved inside. You hear the door close behind you as you take in the room which appears to be a sex dungeon and the site of Venus dressed in a latex dress with a black corset pulled tight around her waist.</div>\
<<button "Continue" "Venusworkending">><<set $replay = 2>><</button>>
\
\
\
\
\
<<elseif $replay == 2>>\
<<set $pdollsex to true>>\
<<speech "Venus">>Hello $fname, you know why you are here, don’t you? Yes, I see you do. You’ve been a bad boy and ignored my warnings. You have not been coming to see me as you should. Naughty naughty… You left me no choice but to punish you. I could say that this will hurt me more than it will you but that would not be true at all. I think I will rather enjoy this but sadly, I don’t expect you will. If you cooperate, it will go much better for you. Show me that you are willing to be a good boy for me. Get down on your knees and lick my feet.<</speech>>
<div align='center'>You only take a moment to consider before slowly dropping to your knees and crawling over to her dangling foot. You start by softly kissing her stalking covered foot in her sexy peep-toed platform heels. You enjoy the aroma of her foot as you kiss her toes and begin to suck on them. She is making appreciative sounds above you and you decide to slip her shoe off to get better access to her toes. She switches her feet and you give it the same loving treatment as you did the first. With your mouth full of toes, she pushes you backward and taking the hint, you lay on your back as she continues to feed you her toes.</div>\
<video src="content/peoples/venus/1/m1.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Venusworkending">><<set $replay = 3>><</button>>
\
\
\
\
\
<<elseif $replay == 3>>\
<div align='center'>She uses her other foot to rub at your crotch taking your sexual temperature. Feeling that you are aroused, she stands and slowly hikes up the hem of her skirt revealing a bulge in her panties. She is towering over you as you look up at her stroking the outline of her cock in a pair of tight black panties. She begins to push the front of her panties down letting out the caged beast that is her cock as she lowers herself to sit on your chest. Reaching down to take a grip of your hair, she pulls your head forward as she thrusts her dick forward impaling your mouth on it as it slips to the back of your throat and down. You do your best to suppress your gag reflex as she fucks your throat. She sits back up on the couch and pulls you up to your knees as she forces you to worship her cock with your mouth. She pushes your pants down over your ass and down your thighs as you head bobs up and down over her rock hard cock. Picking up a paddle, she begins to pelt your backside.</div>\
<video src="content/peoples/venus/1/m2.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Venusworkending">><<set $replay = 4>><</button>>
\
\
\
\
\
<<elseif $replay == 4>>\
<div align='center'>She stands up and points to an ottoman where you obediently kneel presenting your ass for further punishment. You expect more from the paddle but instead, she feeds her cock into your waiting ass hole. She has dropped her paddle and begins to fuck you in earnest. She punctuates her sharp jabs into your ass with her hands spanking you leaving handprints on your light skin. She flips you over onto your back as she seems to want to see your expression as she fucks you. You expect more of her rough treatment but she is truly getting into it and wraps her hand around your hard cock to stroke it in time with her thrusts.</div>\
<video src="content/peoples/venus/1/m3.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Venusworkending">><<set $replay = 5>><</button>>
\
\
\
\
\
<<elseif $replay == 5>>\
<div align='center'>Without warning, she pulls out and sits on your chest as she beats off her dick in her hand. She must have been very close as just seconds later, she shoots load after load across your face and mouth. She must have been saving up as you have never seen so much cum and despite your efforts to swallow as much of it as you can, you aren’t able to keep up.</div>\
<video src="content/peoples/venus/1/m4.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Venus">>Mmmm, that’s a good boy. Lick it all up for me. Yes, that’s it. So eager! It looks like you are still hungry for more. I hadn’t intended to let you cum today but since you’ve been such a good boy for me, why don’t you kneel down and cum on my feet?<</speech>>
<<button "Continue" "Venusworkending">><<set $replay = 6>><</button>>
\
\
\
\
\
<<elseif $replay == 6>>\
<<set $pdollsex to false>>\
<<set $pdollcum to true>>\
<div align='center'>Your cock is eager and you are so turned on that you don’t last long spraying your seed all over her sexy stalking covered feet.</div>\
<<speech "Venus">>Oh yes, I can see that you enjoyed your punishment today after all. One final task and you may leave. Eat up all that sexy cum all over my feet. Yes, your tongue feels good lapping up your jizz on my feet.<</speech>>
<video src="content/peoples/venus/1/m5.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Venus">>I will wipe the slate clean of warnings. Although, I am beginning to hope that I can haul your ass back in here for another punishment.<</speech>>
<div align='center'>You finish lapping up the cum from her feet and clean yourself up enough so you can leave her office.</div>\
<<button "Return" "Gallery">><<set $replay = 1>><<set $pdollcum to false>><</button>>
<</if>>\
\
\
\
\
\
\
\
\
\
\
<<elseif $pgender is "female">>
<<if $replay == 1>>\
<div align='center'>As you walk into the lab, you notice out of the corner of your eye that the two security guards have stood up and are walking towards you. Confused why they would take an interest in you, you glance behind you to see if perhaps they are looking at someone that came in after you but there is no one there.</div>\
<img src="content/peoples/venus/1/3.jpg">
<div align='center'>By the time you turn back around, they are on you and take hold of both of your arms in a firm no-nonsense grip. You stammer back at them asking what is happening but they just look straight ahead as they whisk you down a hallway. You quickly understand what is happening as you find yourself being pulled into Venus’s office. There is a door in the side of her office that you had not noticed before that is open and you are roughly stripped of your clothes. Your objections escalate as you are pushed up against a wooden frame and tied in place. The guards put you in a full head harness with a ball gag filling your mouth before they leave you alone as you continue to mumble and struggle against the ropes.</div>\
<<button "Continue" "Venusworkending">><<set $replay = 2>><</button>>
\
\
\
\
\
<<elseif $replay == 2>>\
<<set $pdollsex to true>>\
<div align='center'>After a few minutes, Venus walks into the room with a leather flail in her hand. Without preamble, she begins flogging your backside.</div>\
<video src="content/peoples/venus/1/f1.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Venus">>You know why you are here, don’t you $fname? You’ve been a bad girl and ignored my warnings. You have not been coming to see me as you should. Naughty naughty… You left me no choice but to punish you. I could say that this will hurt me more than it will you but that would not be true at all. I think I will rather enjoy this but sadly, I don’t expect you will. If you cooperate, it will go much better for you. Show me that you are willing to be a good girl for me.<</speech>>
<<button "Continue" "Venusworkending">><<set $replay = 3>><</button>>
\
\
\
\
\
<<elseif $replay == 3>>\
<div align='center'>She slowly releases a leg from the ropes tying it to the frame and watches you to see how you will react. As you stay perfectly motionless, she proceeds to untie the rest of your limbs as well. Finally, she removes your gag dripping with saliva and you work your jaw muscles trying to loosen them up after having them spread open so far from the ball. You only have a moment before she pulls you forward and stuffs her cock into your mouth. She guides your head as she shows you just how she wants you to worship her cock and you spend several minutes polishing it with your tongue and lips.</div>\
<video src="content/peoples/venus/1/f2.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Venusworkending">><<set $replay = 4>><</button>>
\
\
\
\
\
<<elseif $replay == 4>>\
<div align='center'>You are disappointed when she stands up taking her wonderfully hard cock with her. She walks around behind you spreads your pussy lips open showing just how aroused you are. Without warning, she shoves her wet dick hilt deep into your pussy. She rides you doggy style and you feel like a dog in heat as she rides your ass like a common bitch. You burry your face down into the cushion trying to muffle your moans. Venus takes a step back and using your legs rotates you onto you back and plunges back into your hot wet folds. Holding your ankle for support, she pounds away at your pussy.</div>\
<video src="content/peoples/venus/1/f3.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Venusworkending">><<set $replay = 5>><</button>>
\
\
\
\
\
<<elseif $replay == 5>>\
<<speech "Venus">>Such a hot slut. Your pussy is enjoying this too much. Let’s see how your ass likes it! Sit your ass down on my cock.<</speech>>
<div align='center'>Laying back, she pulls you atop her and guides you over her and taking hold of your hips forces you down. Her thick dark dick spreads your ass open and fortunately, between your copious juices on Venus’s cock and what has dripped down your crack is sufficient to lubricate her penetration. She encourages you with her hands resting under your ass checks and you begin bouncing up and down her meat pole. Venus is visibly excited as she begins matching your movement pushing back up into you. She looks like she is getting close but before she crosses the point of no return, she stops and pushes you back onto the cushion again. She looks down at you while slowly stroking her cock weighing her decisions before plunging back into your ass again.</div>\
<video src="content/peoples/venus/1/f4.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Venusworkending">><<set $replay = 6>><</button>>
\
\
\
\
\
<<elseif $replay == 6>>\
<div align='center'>You reach down to rub your clit but Venus swats your hand away. This is clearly about her pleasure and she doesn’t care if you don’t cum at all. She doesn’t last much longer. She looks like she is going to nut in your ass but pulls out at the last moment and her jizz sprays across your tummy and down through your pussy folds.</div>\
<video src="content/peoples/venus/1/f5.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Venus">>I can see that you enjoyed your punishment today after all. Too bad you have to remain frustrated not able to cum while you are at work. Consider your slate wiped clean of warnings. I am beginning to hope that I can haul your ass back in here for another punishment.<</speech>>
<div align='center'>She tosses you a towel and walks out leaving you to clean yourself and return to your lab.</div>\
<<button "Return" "Gallery">><<set $replay = 1>><<set $pdollsex to false>><</button>>
<</if>>\
\
\
\
\
\
\
\
\
\
\
<<elseif $pgender is "shemale">>
<<if $replay == 1>>\
<div align='center'>As you walk into the lab, you notice out of the corner of your eye that the two security guards have stood up and are walking towards you. Confused why they would take an interest in you, you glance behind you to see if perhaps they are looking at someone that came in after you but there is no one there.</div>\
<img src="content/peoples/venus/1/3.jpg">
<div align='center'>By the time you turn back around, they are on you and take hold of both of your arms in a firm no-nonsense grip. You stammer back at them asking what is happening but they just look straight ahead as they whisk you down a hallway. You quickly understand what is happening as you find yourself being pulled into Venus’s office.</div>\
<<button "Continue" "Venusworkending">><<set $replay = 2>><</button>>
\
\
\
\
\
<<elseif $replay == 2>>\
<<set $pdollsex to true>>\
<div align='center'>There is a door in the side of her office that you had not noticed before that is open and you are roughly stripped of your clothes. Your cries escalate as the guards tie your hands but they pay you no heed as they finish their task and force you to kneel before leave you alone in the room to struggle against the ropes.</div>\
<img src="content/peoples/venus/1/1.jpg">
<<button "Continue" "Venusworkending">><<set $replay = 3>><</button>>
\
\
\
\
\
<<elseif $replay == 3>>\
<div align='center'>After a few minutes, Venus walks into the room.</div>\
<img src="content/peoples/venus/1/2.jpg">
<<speech "Venus">>You know why you are here, don’t you $fname? You’ve been a bad girl and ignored my warnings. You have not been coming to see me as you should. Naughty naughty… You left me no choice but to punish you. I could say that this will hurt me more than it will you but that would not be true at all. I think I will rather enjoy this but sadly, I don’t expect you will. If you cooperate, it will go much better for you. Show me that you are willing to be a good girl for me.<</speech>>
<<button "Continue" "Venusworkending">><<set $replay = 4>><</button>>
\
\
\
\
\
<<elseif $replay == 4>>\
<div align='center'>Sitting on the couch in front of you, you hardly have a chance to breathe before she pulls you forward and stuffs her cock into your mouth. She guides your head as she shows you just how she wants you to worship her cock and you spend several minutes polishing it with your tongue and lips.</div>\
<video src="content/peoples/venus/1/s1.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Venusworkending">><<set $replay = 5>><</button>>
\
\
\
\
\
<<elseif $replay == 5>>\
<div align='center'>You are disappointed when she stands up taking her wonderfully hard cock with her. She pushes you backward and without warning, she shoves her wet dick hilt deep into your ass pussy. You reach down to rub your cock but Venus swats your hand away. This is clearly about her pleasure and she doesn’t care if you don’t cum at all.</div>\
<video src="content/peoples/venus/1/s2.mp4" style="width: 100%;" autoplay loop></video>
<<button "Continue" "Venusworkending">><<set $replay = 6>><</button>>
\
\
\
\
\
<<elseif $replay == 6>>\
<div align='center'>She doesn’t last much longer as she pulls out and straddling your head making as if to shove it back into your mouth but she doesn’t last that long as she sprays her load into your hair and face.</div>\
<video src="content/peoples/venus/1/s3.mp4" style="width: 100%;" autoplay loop></video>
<<speech "Venus">>Swallow it all down like a good girl. That’s it. I can see that you enjoyed your punishment today after all. Too bad you have to remain frustrated not able to cum while you are at work. Consider your slate wiped clean of warnings. I am beginning to hope that I can haul your ass back in here for another punishment.<</speech>>
<div align='center'>She tosses you a towel and walks out leaving you to clean yourself and return to your lab.</div>\
<<button "Return" "Gallery">><<set $replay = 1>><<set $pdollsex to false>><</button>>
<</if>>\
<</if>>\
<div align='center' style='font-size: 150%;'><b>Toy box</b></div>\
<img src="content/location/toy_box.jpg" style="max-width: 50%;">
\
\
\
<<button "Close" "Player Room">><<set $pdollsex to false>><</button>>
<table style="width:100%; text-align:center">
<thead>
<tr>
<th style="width:33%"><b></b></th>
<th style="width:33%"><b>Name</b></th>
<th style="width:33%"><b>Practice</b></th>
</tr>
</thead>
<tbody>
<tr>
<<if $dildo1 >= 1>>\
<td><<image "content/objects/dildo1.jpg" 150>></td>\
<td> It is a small size dildo. Perfect for beginners. </td>\
<td><<button "Oral" "Dildo1 Oral">><<set $pdollsex to true>><</button>>
<<button "Pussy" "Dildo1 Pussy">><<set $pdollsex to true>><</button>>
<<button "Anal" "Dildo1 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $dildo2 >= 1>>\
<td><<image "content/objects/dildo2.jpg" 150>></td>\
<td>It is a larger size dildo.</td>\
<td><<button "Oral" "Dildo2 Oral">><<set $pdollsex to true>><</button>>
<<button "Pussy" "Dildo2 Pussy">><<set $pdollsex to true>><</button>>
<<button "Anal" "Dildo2 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $dildo3 >= 1>>\
<td><<image "content/objects/dildo3.jpg" 150>></td>\
<td>It is a extra large size dildo.</td>\
<td><<button "Oral" "Dildo3 Oral">><<set $pdollsex to true>><</button>>
<<button "Pussy" "Dildo3 Pussy">><<set $pdollsex to true>><</button>>
<<button "Anal" "Dildo3 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $dildo4 >= 1>>\
<td><<image "content/objects/dildo4.jpg" 150>></td>\
<td>It is a extra large size dildo.</td>\
<td><<button "Oral" "Dildo4 Oral">><<set $pdollsex to true>><</button>>
<<button "Pussy" "Dildo4 Pussy">><<set $pdollsex to true>><</button>>
<<button "Anal" "Dildo4 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $dildo5 >= 1>>\
<td><<image "content/objects/dildo5.jpg" 150>></td>\
<td>It is a extra large size dildo.</td>\
<td><<button "Oral" "Dildo5 Oral">><<set $pdollsex to true>><</button>>
<<button "Pussy" "Dildo5 Pussy">><<set $pdollsex to true>><</button>>
<<button "Anal" "Dildo5 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $dildo6 >= 1>>\
<td><<image "content/objects/dildo6.jpg" 150>></td>\
<td>It is a extra large size dildo.</td>\
<td><<button "Oral" "Dildo6 Oral">><<set $pdollsex to true>><</button>>
<<button "Pussy" "Dildo6 Pussy">><<set $pdollsex to true>><</button>>
<<button "Anal" "Dildo6 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $dildo7 >= 1>>\
<td><<image "content/objects/dildo7.jpg" 150>></td>\
<td>It is a extra large size dildo.</td>\
<td><<button "Oral" "Dildo7 Oral">><<set $pdollsex to true>><</button>>
<<button "Pussy" "Dildo7 Pussy">><<set $pdollsex to true>><</button>>
<<button "Anal" "Dildo7 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $buttplug1 >= 1>>\
<td><<image "content/objects/buttplug1.jpg" 150>></td>\
<td>Jewel butt plug.</td>\
<td><<button "Anal" "Buttplug1 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $buttplug2 >= 1>>\
<td><<image "content/objects/buttplug2.jpg" 150>></td>\
<td>Medium size butt plug.</td>\
<td><<button "Anal" "Buttplug2 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $buttplug3 >= 1>>\
<td><<image "content/objects/buttplug3.jpg" 150>></td>\
<td>Large size butt plug.</td>\
<td><<button "Anal" "Buttplug3 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $buttplug4 >= 1>>\
<td><<image "content/objects/buttplug4.jpg" 150>></td>\
<td>Fox tail butt plug.</td>\
<td><<button "Anal" "Buttplug4 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $buttplug5 >= 1>>\
<td><<image "content/objects/buttplug5.jpg" 150>></td>\
<td>Black tail butt plug.</td>\
<td><<button "Anal" "Buttplug5 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $buttplug6 >= 1>>\
<td><<image "content/objects/buttplug6.jpg" 150>></td>\
<td>Prostate massager butt plug.</td>\
<td><<button "Anal" "Buttplug6 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $vibrator1 >= 1>>\
<td><<image "content/objects/vibrator1.jpg" 150>></td>\
<td>Bullett vibrator.</td>\
<td><<button "Pussy" "Vibrator1 Pussy">><<set $pdollsex to true>><</button>>
<<button "Anal" "Vibrator1 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $vibrator2 >= 1>>\
<td><<image "content/objects/vibrator2.jpg" 150>></td>\
<td>G spot vibrator.</td>\
<td><<button "Pussy" "Vibrator2 Pussy">><<set $pdollsex to true>><</button>>
<<button "Anal" "Vibrator2 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $vibrator3 >= 1>>\
<td><<image "content/objects/vibrator3.jpg" 150>></td>\
<td>Rabbit vibrator.</td>\
<td><<button "Pussy" "Vibrator3 Pussy">><<set $pdollsex to true>><</button>>
<<button "Anal" "Vibrator3 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $vibrator4 >= 1>>\
<td><<image "content/objects/vibrator4.jpg" 150>></td>\
<td>Lifelike vibrator.</td>\
<td><<button "Pussy" "Vibrator4 Pussy">><<set $pdollsex to true>><</button>>
<<button "Anal" "Vibrator4 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $vibrator5 >= 1>>\
<td><<image "content/objects/vibrator5.jpg" 150>></td>\
<td>Magic wand vibrator.</td>\
<td><<button "Pussy" "Vibrator5 Pussy">><<set $pdollsex to true>><</button>>
<<button "Anal" "Vibrator5 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $toy2 >= 1>>\
<td><<image "content/objects/toy2.jpg" 150>></td>\
<td>Fleshlight.</td>\
<td><<button "Cock" "Toy2 Cock">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $toy3 >= 1>>\
<td><<image "content/objects/toy3.jpg" 150>></td>\
<td>Tenga egg.</td>\
<td><<button "Cock" "Toy3 Cock">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $toy5 >= 1>>\
<td><<image "content/objects/toy5.jpg" 150>></td>\
<td>Anal beads.</td>\
<td><<button "Anal" "Toy5 Anal">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $toy6 >= 1>>\
<td><<image "content/objects/toy6.jpg" 150>></td>\
<td>Classic penis pump.</td>\
<td><<button "Cock" "Toy6 Cock">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
<tr>
<<if $toy7 >= 1>>\
<td><<image "content/objects/toy7.jpg" 150>></td>\
<td>Hydro penis pump.</td>\
<td><<button "Cock" "Toy7 Cock">><<set $pdollsex to true>><</button>></td>\
<</if>>\
</tr>
</tbody>
</table>
<<button "Close" "Player Room">><<set $pdollsex to false>><</button>>
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<video src="content/peoples/player/small_dildo_male.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 1>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "female">>\
<video src="content/peoples/player/small_dildo_female.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 1>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/dildo1oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 1>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "female">>\
<video src="content/toys/female/dildo1pussy.mp4" style="width: 100%;" autoplay loop></video>
<<if $pussysize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your pussy size.</div>\
<<else>>\
<<set $pussysize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<<else>>\
<div align='center'>You don`t have a pussy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<video src="content/toys/male/dildo1anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo1anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/dildo1anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $blowjoblvl >= 1>>\
<<if $pgender is "male">>\
<video src="content/toys/male/dildo2oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 2>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo2oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 2>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/dildo2oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 2>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your blowjob skill is not enough to practice with this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "female">>\
<<if $pussysize >= 20>>\
<video src="content/toys/female/dildo2pussy.mp4" style="width: 100%;" autoplay loop></video>
<<if $pussysize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your pussy size.</div>\
<<else>>\
<<set $pussysize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<<else>>\
<div align='center'>Your pussy is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You don`t have a pussy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $analsize >= 60>>\
<<if $pgender is "male">>\
<video src="content/toys/male/dildo4anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 80>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo4anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 80>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/dildo4anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 80>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your asshole is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $analsize >= 40>>\
<<if $pgender is "male">>\
<video src="content/toys/male/dildo3anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 60>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo3anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 60>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/dildo3anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 60>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your asshole is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "female">>\
<<if $pussysize >= 40>>\
<video src="content/toys/female/dildo3pussy.mp4" style="width: 100%;" autoplay loop></video>
<<if $pussysize >= 60>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your pussy size.</div>\
<<else>>\
<<set $pussysize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<<else>>\
<div align='center'>Your pussy is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You don`t have a pussy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "female">>\
<<if $pussysize >= 60>>\
<video src="content/toys/female/dildo4pussy.mp4" style="width: 100%;" autoplay loop></video>
<<if $pussysize >= 80>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your pussy size.</div>\
<<else>>\
<<set $pussysize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<<else>>\
<div align='center'>Your pussy is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You don`t have a pussy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $blowjoblvl >= 4>>\
<<if $pgender is "male">>\
<video src="content/toys/male/dildo5oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 5>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo5oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 5>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/dildo5oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 5>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your blowjob skill is not enough to practice with this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "female">>\
<<if $pussysize >= 80>>\
<video src="content/toys/female/dildo5pussy.mp4" style="width: 100%;" autoplay loop></video>
<<if $pussysize >= 100>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your pussy size.</div>\
<<else>>\
<<set $pussysize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<<else>>\
<div align='center'>Your pussy is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You don`t have a pussy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $blowjoblvl >= 3>>\
<<if $pgender is "male">>\
<video src="content/toys/male/dildo4oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 4>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo4oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 4>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/dildo4oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 4>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your blowjob skill is not enough to practice with this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $blowjoblvl >= 2>>\
<<if $pgender is "male">>\
<video src="content/toys/male/dildo3oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 3>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo3oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 3>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/female/dildo3oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 3>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your blowjob skill is not enough to practice with this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $analsize >= 20>>\
<<if $pgender is "male">>\
<video src="content/toys/male/dildo2anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo2anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/dildo2anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your asshole is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $blowjoblvl >= 4>>\
<<if $pgender is "male">>\
<video src="content/toys/male/dildo7oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 5>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo7oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 5>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/dildo7oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 5>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your blowjob skill is not enough to practice with this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $blowjoblvl >= 1>>\
<<if $pgender is "male">>\
<div align='center'>No video content yet.</div>\
<<if $blowjoblvl >= 2>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo6oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 2>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
\
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/female/dildo6oral.mp4" style="width: 100%;" autoplay loop></video>
<<if $blowjoblvl >= 2>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your experience.</div>\
<<else>>\
<<set $blowjobskill += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your blowjob skill is not enough to practice with this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $analsize >= 80>>\
<<if $pgender is "male">>\
<video src="content/toys/male/dildo5anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 100>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo5anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 100>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/dildo5anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 100>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your asshole is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $analsize >= 20>>\
<<if $pgender is "male">>\
<video src="content/toys/male/dildo6anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo6anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<div align='center'>No video content yet.</div>\
<<if $analsize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your asshole is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "female">>\
<<if $pussysize >= 20>>\
<video src="content/toys/female/dildo6pussy.mp4" style="width: 100%;" autoplay loop></video>
<<if $pussysize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your pussy size.</div>\
<<else>>\
<<set $pussysize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<<else>>\
<div align='center'>Your pussy is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You don`t have a pussy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "female">>\
<<if $pussysize >= 80>>\
<video src="content/toys/female/dildo7pussy.mp4" style="width: 100%;" autoplay loop></video>
<<if $pussysize >= 100>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your pussy size.</div>\
<<else>>\
<<set $pussysize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<<else>>\
<div align='center'>Your pussy is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You don`t have a pussy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $analsize >= 80>>\
<<if $pgender is "male">>\
<video src="content/toys/male/dildo7anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 100>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/dildo7anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 100>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/dildo7anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 100>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your asshole is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $analsize >= 20>>\
<<if $pgender is "male">>\
<video src="content/toys/male/vibrator3anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/vibrator3anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/vibrator3anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your asshole is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<video src="content/toys/male/vibrator1anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/vibrator1anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<div align='center'>No video content yet.</div>\
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "female">>\
<video src="content/toys/female/vibrator1pussy.mp4" style="width: 100%;" autoplay loop></video>
<<if $pussysize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your pussy size.</div>\
<<else>>\
<<set $pussysize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<<else>>\
<div align='center'>You don`t have a pussy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "female">>\
<<if $pussysize >= 20>>\
<video src="content/toys/female/vibrator3pussy.mp4" style="width: 100%;" autoplay loop></video>
<<if $pussysize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your pussy size.</div>\
<<else>>\
<<set $pussysize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<<else>>\
<div align='center'>Your pussy is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You don`t have a pussy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "female">>\
<video src="content/toys/female/vibrator2pussy.mp4" style="width: 100%;" autoplay loop></video>
<<if $pussysize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your pussy size.</div>\
<<else>>\
<<set $pussysize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<<else>>\
<div align='center'>You don`t have a pussy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "female">>\
<<if $pussysize >= 40>>\
<video src="content/toys/female/vibrator4pussy.mp4" style="width: 100%;" autoplay loop></video>
<<if $pussysize >= 60>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your pussy size.</div>\
<<else>>\
<<set $pussysize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<<else>>\
<div align='center'>Your pussy is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You don`t have a pussy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $analsize >= 40>>\
<<if $pgender is "male">>\
<video src="content/toys/male/vibrator4anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 60>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/vibrator4anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 60>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/vibrator4anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 60>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your asshole is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<div align='center'>No video content yet.</div>\
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/vibrator2anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/vibrator2anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $analsize >= 40>>\
<<if $pgender is "male">>\
<video src="content/toys/male/toy5anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 60>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/toy5anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 60>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/toy5anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 60>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your asshole is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<div align='center'>No video content yet.</div>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/vibrator5anal.mp4" style="width: 100%;" autoplay loop></video>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/vibrator5anal.mp4" style="width: 100%;" autoplay loop></video>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "female">>\
<video src="content/toys/female/vibrator5pussy.mp4" style="width: 100%;" autoplay loop></video>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<<else>>\
<div align='center'>You don`t have a pussy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<video src="content/toys/male/toy3cock.mp4" style="width: 100%;" autoplay loop></video>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<div align='center'>You don`t have a penis.</div>\
<<button "Leave" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/male/toy3cock.mp4" style="width: 100%;" autoplay loop></video>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<video src="content/toys/male/toy6cock.mp4" style="width: 100%;" autoplay loop></video>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<div align='center'>You don`t have a penis.</div>\
<<button "Leave" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/toy6cock.mp4" style="width: 100%;" autoplay loop></video>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<video src="content/toys/male/toy7cock.mp4" style="width: 100%;" autoplay loop></video>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<div align='center'>You don`t have a penis.</div>\
<<button "Leave" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/male/toy7cock.mp4" style="width: 100%;" autoplay loop></video>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<video src="content/toys/male/buttplug1anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/buttplug1anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/buttplug1anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $analsize >= 20>>\
<<if $pgender is "male">>\
<video src="content/toys/male/buttplug2anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/buttplug2anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/buttplug2anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 40>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your asshole is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<video src="content/toys/male/toy2cock.mp4" style="width: 100%;" autoplay loop></video>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<div align='center'>You don`t have a penis.</div>\
<<button "Leave" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/toy2cock.mp4" style="width: 100%;" autoplay loop></video>
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<set $willingness += 1>>\
<<addmins 20>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $analsize >= 60>>\
<<if $pgender is "male">>\
<video src="content/toys/male/buttplug3anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 80>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/buttplug3anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 80>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/buttplug3anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 80>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>Your asshole is not stretched enough to use this toy.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<div align='center'>No video content yet.</div>\
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/buttplug4anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/buttplug4anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<div align='center'>No video content yet.</div>\
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<video src="content/toys/female/buttplug5anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<video src="content/toys/shemale/buttplug5anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\
<<if $CurEN >= 10>>\
<<if $pgender is "male">>\
<video src="content/toys/male/buttplug6anal.mp4" style="width: 100%;" autoplay loop></video>
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
\
<<elseif $pgender is "female">>\
<div align='center'>You don`t have a prostate.</div>\
<<button "Leave" "Player Toybox">><</button>>
\
<<elseif $pgender is "shemale">>\
<div align='center'>No video content yet.</div>\
<<if $analsize >= 20>>\
<div align='center'>This toy is not a challenge anymore. You can play with it but it is not increasing your asshole size.</div>\
<<else>>\
<<set $analsize += 1>>\
<</if>>\
<<set $CurAR = ($CurAR + 10).clamp(0, $MaxAR)>><<run Arousal($CurAR, $MaxAR, "verticalarousalbar", false)>>\
<<set $CurEN = ($CurEN - 10).clamp(0, $MaxEN)>><<run Energy($CurEN, $MaxEN, "verticalenergybar", false)>>\
<<addmins 20>>\
<<set $sexskill += 1>>\
<<set $willingness += 1>>\
<<button "Stop practicing" "Player Toybox">><</button>>
<</if>>\
<<else>>\
<div align='center'>You are very tired, Yo can not practice.</div>\
<<button "Leave" "Player Toybox">><</button>>
<</if>>\