Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
Loading…
,,,,,,,<div class="centered-image"><img src="resources/ui/titlecard.jpg" alt="Community Service Titlecard" width="1000" height="500"/></div>
Community Service - Build v1.3.2
[[Changelog]]
"Community Service" is a game inspired by the characters and events of the British TV Series "Misfits".
During your first day on Community Service, you and your fellow young offenders are caught in an unusual lightning storm. Shortly after, you discover that the storm has given you and those around you unique abilities, called Powers. But with the world rapidly adjusting to the change, and a dark vision of the future, what will you do?
Cast, Scene Sources, and Image/Video credits can be found [[here|Credits]]. Images/Videos are properties of their respective owners. Where possible, details have been given as to the sources. Further attribution details can be found in text files in the "resources" folder/sub-folders.
This game contains adult imagery and themes, and should only be played by those over the age of 18 or your countries' equivalent. All actors and characters portrayed in this game are over the age of 18.
[[Start Game|intro-1]]v1.3.2
[[Changelog]]
<hr>
<<date>>
<<time24hr>>
<hr>
<img src="resources/avatars/player-avatar.jpg" width="100" />
<<if $event.introstorm is true>>Phone:
[img[resources/ui/buttons/NOTEPAD-small.jpg][Notepad]]
[img[resources/ui/buttons/HINTS-small.jpg][Hints]]
[img[resources/ui/buttons/CHARACTERS-small.jpg][Characters]]
[img[resources/ui/buttons/CHOICES-small.jpg][Choices]]
<</if>><hr>
[img[resources/ui/buttons/TUTORIAL-small.jpg][Tutorial]]
[img[resources/ui/buttons/CREDITS-small.jpg][Credits]]
[img[resources/ui/buttons/discord.jpg][https://discord.gg/knGtyTB]]<<set $player = {
name: "Player",
mirrormet: false,
power: false,
}>>
<<set $alessa = {
name: "Alessa",
hasmet: false,
hasaddress: false,
power: false,
event: 1,
blowjob: false,
trust: 0,
}>>
<<set $alli = {
name: "Alli",
hasmet: false,
power: false,
event: 1,
footjob: false,
blowjob: false,
sex: false,
trustprogress: 0,
trust: false,
templock: false,
}>>
<<set $carolina = {
name: "Carolina",
hasmet: false,
power: false,
event: 1,
blowjob: false,
trust: 0,
}>>
<<set $kristen = {
name: "Kristen",
hasmet: false,
hasaddress: false,
power: false,
event: 1,
blowjob: false,
trust: 0,
}>>
<<set $lauren = {
name: "Lauren",
hasmet: false,
hasaddress: false,
power: false,
event: 1,
blowjob: false,
trust: 0,
}>>
<<set $lexi = {
name: "Lexi",
hasmet: false,
power: false,
event: 1,
blowjob: false,
trust: 0,
}>>
<<set $megan = {
name: "Megan",
hasmet: false,
hasaddress: false,
power: false,
event: 1,
blowjob: false,
trust: 0,
}>>
<<set $riley = {
name: "Riley",
hasmet: false,
hasaddress: false,
power: false,
event: 1,
blowjob: false,
trust: 0,
}>>
<<set $siri = {
name: "Siri",
hasmet: false,
hasaddress: false,
power: false,
event: 1,
blowjob: false,
trust: 0,
}>>
<<set $skin = {
name: "Skin",
hasmet: false,
hasaddress: false,
power: false,
event: 1,
blowjob: false,
trust: 0,
}>>
<<set $porngame = {
jennifercorrupt: 0,
pipercorrupt: 0,
}>>
<<set $event = {
introstorm: false,
intro0: false,
introA: false,
introB: false,
introC: false,
introD: false,
introhide: "ndef",
carolinaintroblowjob: "ndef",
luciustoldlauren: "ndef",
allitoldtruth: "ndef",
allipry: "ndef",
allibond: "ndef",
}>>
<<set $game = {
version: "v1.3.2",
introcomplete: false,
chapter1complete: false,
}>>/*
Date & Time Widget Setup
*/
<<set
window.GameDays to [
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
];
window.GameMonths to [
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
];
/*
Below we have to use the multi-parameter version of the Date
constructor, rather than the date string version, because the
date string version treats a missing timezone offset as UTC.
While there are ways to determine players' timezone offsets,
so they could be added to a date string, it's more convenient
simply to use the multi-parameter constructor.
The point of this is so that you can simply initialize the game
world clock to whatever date and time you wish without having to
worry about the players' timezone offsets, while still ensuring
that they all see the same game world dates and times.
*/
/* params: year , month(0-based) , day , hour(24H) , minute [, second ] */
$gameDate to new Date(2020, 6, 6, 12, 30); /* e.g. Mar 17, 2015 03:24 */
>>
/*
Date & Time Advancement Widget Definitions
*/
/* Adds the specified number of minutes. */
<<widget "addmins">>\
<<run $gameDate.setMinutes($gameDate.getMinutes() + $args[0])>>\
<</widget>>
/* Adds the specified number of hours. */
<<widget "addhours">>\
<<run $gameDate.setHours($gameDate.getHours() + $args[0])>>\
<</widget>>
/* Adds the specified number of days. */
<<widget "adddays">>\
<<run $gameDate.setHours($gameDate.getHours() + $args[0] * 24)>>\
<</widget>>
/*
Date & Time Printing Widget Definitions
*/
/* Prints the current date ("{weekday} {month} {day}, {year}"). */
<<widget "date">>\
<<print String.format("{0} {1} {2}, {3}",
GameDays[$gameDate.getDay()],
GameMonths[$gameDate.getMonth()],
$gameDate.getDate(),
$gameDate.getFullYear()
)>>\
<</widget>>
/* Prints the current time (12H). */
<<widget "time12hr">>\
<<if $gameDate.getHours() eq 0>>\
12\
<<elseif $gameDate.getHours() gt 12>>\
<<print $gameDate.getHours() - 12>>\
<<else>>\
<<print $gameDate.getHours()>>\
<</if>>:\
<<if $gameDate.getMinutes() lt 10>>0<</if>><<print $gameDate.getMinutes()>> \
<<if $gameDate.getHours() gte 12>>PM<<else>>AM<</if>>\
<</widget>>
/* Prints the current time (24H). */
<<widget "time24hr">>\
<<if $gameDate.getHours() lt 10>>0<</if>><<print $gameDate.getHours()>>:\
<<if $gameDate.getMinutes() lt 10>>0<</if>><<print $gameDate.getMinutes()>>\
<</widget>>
/* Prints the current date and time (12H). */
<<widget "datetime">><<date>> <<time12hr>> (<<time24hr>>)<</widget>><div class="centered-image"><img src="resources/locations/livingroom.jpg" alt="living room" width="1000" height="666"/></div>
You are in the Living Room of your home.
<<nobr>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
You cannot wait at this time.
<<else>>
<<link[[Wait an Hour|mc-home]]>><<addhours 1>><</link>>
<</if>>
<</nobr>>
Characters present at this location:
<<nobr>>
<<if $gameDate.getHours() gte 11 and $gameDate.getHours() lt 12>>
<<link[img[resources/avatars/alli-avatar.jpg][alli-hub-home]]>><<addmins 5>><</link>>
<<elseif $gameDate.getHours() gte 16 and $gameDate.getHours() lt 18>>
<<link[img[resources/avatars/alli-avatar.jpg][alli-hub-home]]>><<addmins 5>><</link>>
<</if>>
<</nobr>>
Here you can find:
<<link[[The Kitchen|home-kitchen]]>><<addmins 5>><</link>>
<<link[[Your Bedroom|home-mc-room]]>><<addmins 5>><</link>>
<<link[[Carolina's Bedroom|home-carolina-room]]>><<addmins 5>><</link>>
<<link[[Alli's Bedroom|home-alli-room]]>><<addmins 5>><</link>>
<<link[[Mom's Bedroom|home-mom-room]]>><<addmins 5>><</link>>
Where would you like to go?
<<link[[Travel to the Estate|estate]]>><<addmins 20>><</link>>
<<nobr>>
<<if $gameDate.getHours() gte 7 and $gameDate.getHours() lt 17>>
<<if $gameDate.getDay() is 1 or $gameDate.getDay() is 2 or $gameDate.getDay() is 3 or $gameDate.getDay() is 4 or $gameDate.getDay() is 5>>
<<link[[Travel to the Community Centre|community-centre]]>><<addmins 20>><</link>>
<<elseif $gameDate.getDay() is 0 or $gameDate.getDay() is 6>>
The Community Centre is closed.
<</if>>
<<else>>
The Community Centre is Closed.
<</if>>
<</nobr>>
<div class="centered-image"><img src="resources/locations/mainlobby.jpg" alt="main lobby" width="1000" height="666"/></div>
You are in the Main Lobby of the Community Centre.
<<if $gameDate.getHours() gte 9 and $gameDate.getHours() lt 17>>Here you can find:
<<link[[The Staff Office|office]]>><<addmins 10>><</link>>
<<link[[The Mezzanine|mezzanine]]>><<addmins 10>><</link>>
<<link[[The Locker Room|locker-room]]>><<addmins 10>><</link>>
<<link[[The Storage Room|storage-room]]>><<addmins 10>><</link>>
<<link[[The Roof|roof]]>><<addmins 10>><</link>>
<<link[[Wait an Hour|community-centre]]>><<addhours 1>><</link>><<else>><<link[[Travel to your Home|mc-home]]>><<addmins 20>><</link>>
<<link[[Travel to the Estate|estate]]>><<addmins 20>><</link>><</if>><div class="centered-image"><img src="resources/locations/estate.jpg" alt="estate" width="1000" height="666"/></div>
You are in standing in the Estate.
<<nobr>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
You cannot wait at this time.
<<else>>
<<link[[Wait an Hour|estate]]>><<addhours 1>><</link>>
<</if>>
<</nobr>>
Here you can find:
<<nobr>><<if $alessa.hasaddress is true>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
It is too late to visit Alessa.
<<elseif $gameDate.getHours() gte 7 or $gameDate.getHours() lt 22>>
<<link[[Alessa's Home|alessa-home]]>><<addmins 10>><</link>>
<</if>>
<<elseif $alessa.hasaddress is false>>
Undiscovered Location
<</if>><</nobr>>
<<nobr>><<if $skin.hasaddress is true>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
It is too late to visit Skin.
<<elseif $gameDate.getHours() gte 7 or $gameDate.getHours() lt 22>>
<<link[[Skin's Home|skin-home]]>><<addmins 10>><</link>>
<</if>>
<<elseif $skin.hasaddress is false>>
Undiscovered Location
<</if>><</nobr>>
<<nobr>><<if $kristen.hasaddress is true>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
It is too late to visit Kristen.
<<elseif $gameDate.getHours() gte 7 or $gameDate.getHours() lt 22>>
<<link[[Kristen's Home|kristen-home]]>><<addmins 10>><</link>>
<</if>>
<<elseif $kristen.hasaddress is false>>
Undiscovered Location
<</if>><</nobr>>
<<nobr>><<if $megan.hasaddress is true>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
It is too late to visit Megan.
<<elseif $gameDate.getHours() gte 7 or $gameDate.getHours() lt 22>>
<<link[[Megan's Home|megan-home]]>><<addmins 10>><</link>>
<</if>>
<<elseif $megan.hasaddress is false>>
Undiscovered Location
<</if>><</nobr>>
Where would you like to go?
<<link[[Travel Home|mc-home]]>><<addmins 20>><</link>>
<<nobr>>
<<if $gameDate.getHours() gte 7 and $gameDate.getHours() lt 17>>
<<if $gameDate.getDay() is 1 or $gameDate.getDay() is 2 or $gameDate.getDay() is 3 or $gameDate.getDay() is 4 or $gameDate.getDay() is 5>>
<<link[[Travel to the Community Centre|community-centre]]>><<addmins 20>><</link>>
<<elseif $gameDate.getDay() is 0 or $gameDate.getDay() is 6>>
The Community Centre is closed.
<</if>>
<<else>>
The Community Centre is Closed.
<</if>>
<</nobr>><div class="centered-image"><img src="resources/locations/mezzanine.jpg" alt="mezzanine" width="1000" height="662"/></div>
You are on the Mezzanine.
Characters present at this location:
<<link[img[resources/avatars/skin-avatar.jpg][skin-hub-community]]>><<addmins 5>><</link>>
<<link[[Leave|community-centre]]>><<addmins 10>><</link>><div class="centered-image"><img src="resources/locations/storageroom.jpg" alt="storage room" width="1000" height="666"/></div>
You are in the Storage Room.
Characters present at this location:
<<link[img[resources/avatars/kristen-avatar.jpg][kristen-hub-community]]>><<addmins 5>><</link>>
<<link[[Leave|community-centre]]>><<addmins 10>><</link>><div class="centered-image"><img src="resources/locations/roof.jpg" alt="roof" width="500" height="666"/></div>
You are on the Roof.
Characters present at this location:
<<link[img[resources/avatars/megan-avatar.jpg][megan-hub-community]]>><<addmins 5>><</link>>
<<link[[Leave|community-centre]]>><<addmins 10>><</link>><div class="centered-image"><img src="resources/locations/lockerroom.jpg" alt="locker room" width="1000" height="665"/></div>
You are in the Locker Room.
Characters present at this location:
<<link[img[resources/avatars/alessa-avatar.jpg][alessa-hub-community]]>><<addmins 5>><</link>>
<<link[[Leave|community-centre]]>><<addmins 10>><</link>><div class="centered-image"><img src="resources/locations/mcroom.jpg" alt="mc room" width="1000" height="800"/></div>
You are in your bedroom.
<<link[[Use Computer|mc-pc]]>><<addmins 5>><</link>>
<<nobr>>
<<if $gameDate.getHours() gte 22>>
<<link[[Go to Sleep|sleep]]>><<set $gameDate.setHours(7)>><<set $gameDate.setMinutes(30)>><<adddays 1>><</link>>
<<elseif $gameDate.getHours() lt 7>>
<<link[[Go to Sleep|sleep]]>><<set $gameDate.setHours(7)>><<set $gameDate.setMinutes(30)>><</link>>
<<elseif $gameDate.getHours() gte 7 and $gameDate.getHours() lt 22>>
<<link[[Rest for an Hour|home-mc-room]]>><<addhours 1>><</link>>
<</if>>
<</nobr>>
Characters present at this location:
<<link[[Leave|mc-home]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/locations/carolinaroom.jpg" alt="carolina room" width="1000" height="666"/></div>
You are in Carolina's Bedroom.
Characters present at this location:
<<nobr>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
Carolina is asleep.
<<else>>
<<link[img[resources/avatars/carolina-avatar.jpg][carolina-hub-home]]>><<addmins 5>><</link>>
<</if>>
<</nobr>>
<<link[[Leave|mc-home]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/locations/alliroom.jpg" alt="alli room" width="1000" height="666"/></div>
You are in Alli's Bedroom.
Characters present at this location:
<<nobr>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
Alli is asleep.
<<elseif $gameDate.getHours() gte 9 and $gameDate.getHours() lt 11>>
<<link[img[resources/avatars/alli-avatar.jpg][alli-hub-home]]>><<addmins 5>><</link>>
<<elseif $gameDate.getHours() gte 19 and $gameDate.getHours() lt 22>>
<<link[img[resources/avatars/alli-avatar.jpg][alli-hub-home]]>><<addmins 5>><</link>>
<</if>>
<</nobr>>
<<link[[Leave|mc-home]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/locations/momroom.jpg" alt="mom room" width="1000" height="882"/></div>
You are in Mom's Bedroom.
Characters present at this location:
<<nobr>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
Mom is asleep.
<<else>>
<<link[img[resources/avatars/lexi-avatar.jpg][lexi-hub-home]]>><<addmins 5>><</link>>
<</if>>
<</nobr>>
<<link[[Leave|mc-home]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/locations/kitchen.jpg" alt="kitchen" width="1000" height="664"/></div>
You are in the Kitchen.
Characters present at this location:
<<nobr>>
<<if $gameDate.getHours() gte 12 and $gameDate.getHours() lt 13>>
<<link[img[resources/avatars/alli-avatar.jpg][alli-hub-home]]>><<addmins 5>><</link>>
<<elseif $gameDate.getHours() gte 18 and $gameDate.getHours() lt 19>>
<<link[img[resources/avatars/alli-avatar.jpg][alli-hub-home]]>><<addmins 5>><</link>>
<</if>>
<</nobr>>
<<link[[Leave|mc-home]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/locations/alessahome.jpg" alt="alessa home" width="1000" height="666"/></div>
You are in Alessa's Home.
Characters present at this location:
<<nobr>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
Alessa is asleep.
<<else>>
<<link[img[resources/avatars/alessa-avatar.jpg][alessa-hub-home]]>><<addmins 5>><</link>>
<</if>>
<</nobr>>
<<link[[Leave|estate]]>><<addmins 10>><</link>><div class="centered-image"><img src="resources/locations/skinhome.jpg" alt="skin home" width="1000" height="703"/></div>
You are in Skin's Home.
Characters present at this location:
<<nobr>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
Skin is asleep.
<<else>>
<<link[img[resources/avatars/skin-avatar.jpg][skin-hub-home]]>><<addmins 5>><</link>>
<</if>>
<</nobr>>
<<link[[Leave|estate]]>><<addmins 10>><</link>><div class="centered-image"><img src="resources/locations/kristenhome.jpg" alt="kristen home" width="1000" height="666"/></div>
You are in Kristen's Home.
Characters present at this location:
<<nobr>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
Kristen is asleep.
<<else>>
<<link[img[resources/avatars/kristen-avatar.jpg][kristen-hub-home]]>><<addmins 5>><</link>>
<</if>>
<</nobr>>
<<link[[Leave|estate]]>><<addmins 10>><</link>><div class="centered-image"><img src="resources/locations/meganhome.jpg" alt="megan home" width="1000" height="666"/></div>
You are in Megan's Home.
Characters present at this location:
<<nobr>>
<<if $gameDate.getHours() gte 22 or $gameDate.getHours() lt 7>>
Megan is asleep.
<<else>>
<<link[img[resources/avatars/megan-avatar.jpg][megan-hub-home]]>><<addmins 5>><</link>>
<</if>>
<</nobr>>
<<link[[Leave|estate]]>><<addmins 10>><</link>>Here you can see your goals and any notes you acquire throughout the game. You can also see hints about how to progress with specific characters quest line.
<nobr>
<h3>Character Hints</h3>
<b>Alessa:</b><<if $alessa.event is 1>>
Talk to Alessa at the Community Center.
<<elseif $alessa.event is 2>>
Talk to Alessa at the Community Center.
<<elseif $alessa.event gte 3>>
I have reached the end of content for this version.
<</if>>
<b>Skin:</b><<if $skin.event is 1>>
Talk to Skin at the Community Center.
<<elseif $skin.event is 2>>
Talk to Skin at the Community Center.
<<elseif $skin.event gte 3>>
I have reached the end of content for this version.
<</if>>
<b>Kristen:</b><<if $kristen.event is 1>>
Talk to Kristen at the Community Center.
<<elseif $kristen.event is 2>>
Talk to Kristen at the Community Center.
<<elseif $kristen.event gte 3>>
I have reached the end of content for this version.
<</if>>
<b>Megan:</b><<if $megan.event is 1>>
Talk to Megan at the Community Center.
<<elseif $megan.event is 2>>
Talk to Megan at the Community Center.
<<elseif $megan.event gte 3>>
I have reached the end of content for this version.
<</if>>
<b>Lauren:</b><<if $lauren.event is 1>>
Talk to Lauren at the Community Center.
<<elseif $megan.event gte 2>>
I have reached the end of content for this version.
<</if>>
<b>Lexi:</b><<if $lexi.event gte 1>>
I have reached the end of content for this version.
<</if>>
<b>Carolina:</b><<if $carolina.event gte 1>>
I have reached the end of content for this version.
<</if>>
<b>Alli:</b><<if $alli.event is 1>>
Talk to Alli at home.
<<elseif $alli.event is 2>>
Talk to Alli at home.
<<elseif $alli.event is 3>>
<<if $alli.templock is true>>
Apologise to Alli at home.
<<elseif $alli.templock is false>>
Talk to Alli at home.
<</if>>
<<elseif $alli.event is 4>>
Talk to Alli at home.
<<elseif $alli.event is 5>>
Talk to Alli in the evening at home.
<<elseif $alli.event gte 6>>
I have reached the end of content for this version.
<</if>>
</nobr>
<nobr>
<hr>
<h3>Other Notes</h3>
<<if $alessa.event gt 2>>When applied to me, some societal norms do not apply, such as the taboo regarding incest.<</if>>
<<if $skin.event gt 2>>By changing reality, I should be able to acquire new abilities, and possibly more powers.<</if>>
<<if $kristen.event gt 2>>It's normal for me to date or sleep with multiple women, with those women seeing it as a normal thing to do. Additionally, those standards don't apply to the women, and they see me as their exclusive partner.<</if>>
</nobr>
<<back>>This is the easter-egg.
This passage is not accessible through normal gameplay. It has no links to or from it, and as such ...
What are you doing here?Here you can see profiles and descriptions for the characters you encounter throughout your time on Community Service.
[img[resources/avatars/player-avatar.jpg][mc-profile]]<<if $player.mirrormet is true>>[img[resources/avatars/mirror-avatar.jpg][mirror-profile]]<</if>><<if $alessa.hasmet is true>>[img[resources/avatars/alessa-avatar.jpg][alessa-profile]]<</if>><<if $skin.hasmet is true>>[img[resources/avatars/skin-avatar.jpg][skin-profile]]<</if>><<if $kristen.hasmet is true>>[img[resources/avatars/kristen-avatar.jpg][kristen-profile]]<</if>><<if $megan.hasmet is true>>[img[resources/avatars/megan-avatar.jpg][megan-profile]]<</if>><<if $lexi.hasmet is true>>[img[resources/avatars/lexi-avatar.jpg][lexi-profile]]<</if>><<if $carolina.hasmet is true>>[img[resources/avatars/carolina-avatar.jpg][carolina-profile]]<</if>><<if $alli.hasmet is true>>[img[resources/avatars/alli-avatar.jpg][alli-profile]]<</if>><<if $lauren.hasmet is true>>[img[resources/avatars/lauren-avatar.jpg][lauren-profile]]<</if>>
<<back>>
<div class="centered-image"><img src="resources/characters/mc/player-profile.jpg" alt="player profile" width="1000" height="562"/></div>
!!!You
Power: <<if $player.power is true>>Reality Warping<<else>>Unknown<</if>>
Reason for Community Service: Accomplice to Burglary
Description:
One night, a close friend called in a favour you owed them. They led you to a quiet neighbourhood, around the back of somebody's house, and broke in through a window. You realised that they had called you to help them break in and rob the property, and as such promptly left the scene.
A few days later, the police showed up at your door. CCTV from a house in the neighbourhood placed you at the scene the night of the burglary. You were placed under arrest and your house searched, however, in the absence of the stolen property and your claims of your friend being the main perpetrator, you were given community service instead of jail time.
During your first day on community service, a freak storm appeared over the estate, and lightning struck close by to you and your fellow young offenders. <<if $player.power is true>>Following the storm, you discovered that you had developed a strange power: the world around you changed in an instant, and you could suddenly learn new skills with relative ease.
But just how friendly will this new world be?<</if>>
<<back>><div class="centered-image"><img src="resources/characters/alessasavage/alessa-profile.jpeg" alt="alessa profile" width="1000" height="666"/></div>
!!!Alessa
Power: <<if $alessa.power is true>>Mind Reading<<else>>Unknown<</if>>
Reason for Community Service: Assault
Description:
After correctly suspecting that her (now ex) partner was cheating on her with another woman, Alessa confronted the other woman in a public place. After a short and heated argument, the conversation turned violent. Both parties emerged physically unharmed, and as the instigator, Alessa was given community service for the assault.
During her first day on community service, a freak storm appeared over the estate, and lightning struck close by to her and the fellow young offenders. <<if $alessa.power is true>>Following the storm, Alessa discovered that she was able to hear the thoughts of those around her, and to a certain extent identify when a person was lying.<</if>>
<<back>><div class="centered-image"><img src="resources/characters/skindiamond/skin-profile.jpeg" alt="skin profile" width="1000" height="666"/></div>
!!!Skin
Power: <<if $skin.power is true>>Bring graffiti art to life<<else>>Unknown<</if>>
Reason for Community Service: Vandalism via Graffiti
Description:
Since she was young, Skin always had an affinity for art, and as she grew into her teen years, naturally gravitated towards Graffiti art. For some time she had managed to stealthily put her art up around the estate. Unfortunately, her luck had to run out at one point, and she was caught before her last painting could be finished.
During her first day on community service, a freak storm appeared over the estate, and lightning struck close by to her and the fellow young offenders. <<if $skin.power is true>>Following the Storm, whilst practicing her graffiti art at home, Skin discovered she now had the power to bring her art to life, animating the subjects.<</if>>
<<back>><div class="centered-image"><img src="resources/characters/kristenscott/kristen-profile.jpeg" alt="kristen profile" width="1000" height="666"/></div>
!!!Kristen
Power: <<if $kristen.power is true>>Future Visions<<else>>Unknown<</if>>
Reason for Community Service: Shoplifting
Description:
After several months of verbal and physical abuse from her mother's new partner, her step-dad finally had enough with Kristen and kicked her out of her own home. Life on the streets was tough, and soon Kristen attempted to steal a small amount of food in order to survive. However, her attempt was unsuccessful, and due to the minor severity of the crime, was given community service.
During her first day on community service, a freak storm appeared over the estate, and lightning struck close by to her and the fellow young offenders. <<if $kristen.power is true>>Immediately following the storm, Kristen uncontrollably experiences a vision of the future: a dark reality in which the sky has turned red, the sun is permanently eclipsed, and a shadowy group actively killed people in the street.<</if>>
<<back>><div class="centered-image"><img src="resources/characters/meganrain/megan-profile.jpeg" alt="megan profile" width="1000" height="666"/></div>
!!!Megan
Power: <<if $megan.power is true>>Teleportation<<else>>Unknown<</if>>
Reason for Community Service: Driving on a suspended license
Description:
Having been in trouble in the past, Megan had already had her driver's license suspended and was given a 2 year driving ban. However, her mother's health had over previous weeks been getting worse and worse, and when Megan got the call to say her mother had been rushed to hospital, Megan's driving ban was the least of her worries. Unfortunately Megan never reached the hospital, and due to her driving ban, was given community service.
During her first day on community service, a freak storm appeared over the estate, and lightning struck close by to her and the fellow young offenders. <<if $megan.power is true>>Following the storm, Megan discovered she had developed the power of teleportation, and could disappear and reappear anywhere in an instant.<</if>>
<<back>><div class="centered-image"><img src="resources/characters/laurenphillips/lauren-profile.jpeg" alt="lauren profile" width="1000" height="666"/></div>
!!!Lauren
Power: <<if $lauren.power is true>>X-Ray Vision<<else>>Unknown<</if>>
Description:
Lauren is the primary Probation Worker at the Estate's Community Centre. Having worked there for several years, she has monitored and rehabilitated dozens of groups of young offenders.
During the first day of community service for a new group, a freak storm appeared over the estate, and lightning struck close by to her and the young offenders.<<if $lauren.power is true>> Following the storm, Lauren fell ill for some time. However, once she recovered, Lauren discovered she now had the power of X-Ray Vision, allowing her to see through walls, clothing, and other solid objects.<</if>>
<<back>><div class="centered-image"><img src="resources/characters/allirae/alli-profile.jpg" alt="alli profile" width="1000" height="666"/></div>
!!!Alli
Power: <<if $game.chapter1complete is true>>Hell's Gateway<<else>>Unknown<</if>>
Description:
During your initial arrest, your older sister began to doubt her trust in your. During your trial, your Mom and younger sister both came to accept your side of the story. However, your older sister was not so supportive, and has ignored and avoided you ever since.
<<if $alli.power is false>>During the storm, Alli was not at home, and it is not determined if she was caught up in the storm.<<elseif $alli.power is true>>During the Storm, Alli was caught out in the open and was struck with nearby lightning. Following the storm, Alli reveals that she discovered she now had a power. Activated by negative emotions, she describes it as being able to cause untold amounts of damage, but does not elaborate further.
<</if>>
Timetable:
<b>07:00 - 08:00</b> : Her Bedroom
<b>08:00 - 09:00</b> : The Kitchen
<b>09:00 - 11:00</b> : Her Bedroom
<b>11:00 - 12:00</b> : The Living Room
<b>12:00 - 13:00</b> : The Kitchen
<b>13:00 - 16:00</b> : Not at Home
<b>16:00 - 18:00</b> : The Living Room
<b>18:00 - 19:00</b> : The Kitchen
<b>19:00 - 22:00</b> : Her Bedroom
<b>22:00 - 07:00</b> : Asleep
<<back>>
<div class="centered-image"><img src="resources/characters/lexiluna/lexi-profile.jpeg" alt="lexi profile" width="1000" height="666"/></div>
!!!Mom
Power: None
Description:
During your initial arrest, you Mom began to doubt her trust in your. However, during your trial, she and your younger sister Carolina both came to accept your side of the story, and now support you as you complete your community service.
<<if $game.introcomplete is true>>During the storm, your Mom was indoors all day, and as such was not exposed to the storms unique properties. Your Mom remains one of the few individuals in your life who doesn't possess any Power of their own.<</if>>
<<back>>
Here you will find list of creditation and sources for all the images and videos used within this game.
Cast:
<img src="resources/ui/alessa-credit.jpg" alt="alessa credit" width="500" height=""/><img src="resources/ui/skin-credit.jpg" alt="skin credit" width="500" height=""/><img src="resources/ui/kristen-credit.jpg" alt="kristen credit" width="500" height=""/><img src="resources/ui/megan-credit.jpg" alt="megan credit" width="500" height=""/><img src="resources/ui/lauren-credit.jpg" alt="lauren credit" width="500" height=""/><img src="resources/ui/lexi-credit.jpg" alt="lexi credit" width="500" height=""/><img src="resources/ui/carolina-credit.jpg" alt="carolina credit" width="500" height=""/><img src="resources/ui/alli-credit.jpg" alt="alli credit" width="500" height=""/>
Background images and event images have been taken from unsplash.com under the Unsplash License. Further attribution details can be found in the game files.
Event gifs and webms have been taken from giphy.com. Since some of this content originated in other media, all content is property of their respective owners.
Scene Images and Videos are properties of their respective production houses. Further attribution details can be found in the game files.
<<back>><<set $gameDate.setHours(9)>><<set $gameDate.setMinutes(0)>>I should never have picked up the phone.
<<speech "Stranger">>Mate, I need to call in that favour you owe me.<</speech>>
I should never have agreed to go.
<<speech "You">>Sure man, what do you need?<</speech>>
I should never have trusted him.
<<speech "Stranger">>I can explain later. I'll pick you up in an hour.<</speech>>
I should have realised what was going on.
<<speech "You">>Whose house is this? What are we doing here?<</speech>>
I should've known long before the window broke.
//SMASH//
<<speech "Stranger">>Look, just keep quiet and keep watch.<</speech>>
By now it was too late.
<<speech "You">>Nah, I'm out. This is too much.<</speech>>
They came by a few days later.
//KNOCK KNOCK//
<<speech "Stranger">>Young man, I'm placing you under arrest for breaking & entering and attempted burglary.<</speech>>
In court I professed my innocence.
<<speech "You">>I was led there by a friend. I didn't take anything.<</speech>>
They believed the story, but I was still accessory to burglary.
<<speech "Stranger">>By order of the court you are to serve your sentence on community service.<</speech>>
And so, that led me [[here|intro-2]].<<set $lauren.hasmet to true>><div class="centered-image"><img src="resources/characters/laurenphillips/lauren-office-01.jpeg" alt="Lauren Office 01" width="1000" height="666"/></div>
<<speech "Lauren">>Welcome to community service.<</speech>>
She must be the probation worker, the one in charge of keeping all of us in line.
<<speech "Lauren">>This is your chance to do something positive. A chance to really contribute and give something back to the community. You can help people and make a difference to the lives of others. That's what community service is all about.<</speech>>
//sigh//. This is not what I need first thing Monday morning.
<<speech "Megan">>And how does pickin' up litter do that?<</speech>>
You turn to see who spoke.
<<set $megan.hasmet to true>><div class="centered-image"><img src="resources/characters/meganrain/megan-01.jpeg" alt="Megan 01" height="749" width="500" /></div>
Wow.
<<speech "Lauren">>Picking up litter is only one aspect. Throughout your time I'm sure you'll also participate in some volunteer events. And besides, a clean community is a happy community. There are people who think you're, for lack of a better word, scum. It's up to you to prove them wrong.<</speech>>
<<speech "Skin">>What if they're right though? No offense, but maybe some of us are just criminals at heart.<</speech>>
The girl gestures towards one of the others on community service.
<<speech "Alessa">>Did you want me to break your nose?<</speech>>
<<speech "Skin">>You see what I mean.<</speech>>
You check out the two girls who have joined the conversation.
<<set $skin.hasmet to true>><img src="resources/characters/skindiamond/skin-01.jpeg" alt="Skin 01" height="750" width="500"/><<set $alessa.hasmet to true>><img src="resources/characters/alessasavage/alessa-01.jpg" alt="Alessa 01" height="749" width="500"/><br>
Is everyone on community service just hot girls?
[[Continue|intro-3]]<<speech "Lauren">>Alright that's enough out of you two. I'm here to keep all of you in line, and along the way ensure that you are all rehabilitated into society.<</speech>>
Looking around, you spot that there is indeed a fifth member of your community service group.
<<set $kristen.hasmet to true>><div class="centered-image"><img src="resources/characters/kristenscott/kristen-01.jpeg" alt="Kristen 01" height="750" width="500" /></div>
She seems a lot more shy than the others. Even if you barely talked to each other, you feel like you'll get along better with her than any of the others.
<<speech "Lauren">>Today your assignment is simple. The benches outside of the community centre need repainting.<</speech>>
<<speech "Megan">>Are we just doing the jobs the council can't be arsed with?<</speech>>
Looks like we're painting benches.
<div class="centered-image"><img src="resources/events/bench.jpg" alt="bench" width="1000" height="666"/></div>
You and the others on community service are painting the benches outside of the Community Centre. After basic introductions, you've learned the names of the girls. Alessa and Skin are still arguing after earlier. Megan is lazily painting whilst on her phone. So it's just you and Kristen to talk.
<<speech "Kristen">>So, what was your name again?<</speech>>
<<speech "You">><<textbox "$player.name" "John">><</speech>>
[[Continue|intro-4]]<<speech "You" "$player.name">>My name is $player.name. So, what did you get done for?<</speech>>
<<speech "Kristen">>Shoplifting. I'd rather not say more than that. What did you do?<</speech>>
<<speech "You" "$player.name">>My friend tricked me into helping him break into somebody's house. I left very quickly but they got me on CCTV.<</speech>>
<<speech "Kristen">>Shit. That's some friend.<</speech>>
<<speech "You" "$player.name">>Not anymore.<</speech>>
The conversation between Alessa and Skin seems to be more civil so you and Kristen listen in to see what they're talking about as you continue painting.
<<speech "Skin">>Wait let me guess. You seem like an assault kind of girl Alessa.<</speech>>
<<speech "Alessa">>Yeah, and you seem like a bitch.<</speech>>
<<speech "Skin">>So, am I wrong?<</speech>>
Alessa stays silent.
<<speech "Skin">>Was it on reality TV?<</speech>>
<<speech "Alessa">>No it was at the supermarket.<</speech>>
Megan finishes her phone call and decides to join the conversation.
<<speech "Megan">>All this talk and you haven't even told us what you did yet.<</speech>>
<<speech "Skin">>Me? I'm an artist. I draw works of art all across the city and get told off for the improvement.<</speech>>
<<speech "Megan">>So graffiti then. You know we have to clean up that shit.<</speech>>
<<speech "Skin">>It's art, not graffiti.<</speech>>
<<speech "Megan">>It's a shit stain on the wall, and we have to clean it up.<</speech>>
Skin storms up and fronts on Megan, knocking over a can of paint in the process.
<<speech "Skin">>Call it shit one more time. Go on, say it to my face you slut.<</speech>>
At that moment Lauren emerges to break up the fight.
<<speech "Lauren">>Break it up you two.<</speech>>
[[Continue|intro-5]]<<speech "Lauren">>You've only been here five minutes and you're already causing trouble.<</speech>>
You feel the temperature get a little colder.
<<speech "Lauren">>And what about that? How did that fall over?<</speech>>
Lauren points at the fallen paint pot.
Above, a formation of grey clouds move in.
<div class="centered-image"><img src="resources/events/storm.jpg" alt="storm" width="1000" height="668"/></div>
This weather has certainly taken a turn.
//SMASH//
<<speech "Lauren">>That's my car!<</speech>>
Lightning struck down, the shockwave breaking the windows on Lauren's parked car.
<<speech "Lauren">>Come on, we all need to get inside.<</speech>>
Lauren leads you and the group back up to the Community Centre. Lightning increases in frequency, striking down every few seconds, getting closer and closer.
Outside the door, Lauren fumbles with her keys attempting to unlock the door.
<div class="centered-image"><img src="resources/events/lightning.gif" alt="lightning" width="500"/></div>
You and the group are sent flying as lightning strikes nearby. You feel the surge of electricity move throughout your body.
[[Later that day...|intro-6]]After the lightning storm earlier, Lauren fell ill and decided to give you and the rest of the group the rest of the day as she would be unable to supervise you.
Even though you are certain you were struck by lightning, you know that can't be what happened. After all, a direct hit usually means death. But that's something to worry about another time.
<div class="centered-image"><img src="resources/events/computer.jpg" alt="computer" width="1000" height="666"/></div>
For now though, you decide to relax on your laptop. You open up a new incognito tab, and browse the new updates on your favourite porn games.
<<speech "Mom">>$player.name, dinner's ready.<</speech>>
Oh well, the porn games can wait.
[[Time to eat|intro-7]]<<set $lexi.hasmet to true>><div class="centered-image"><img src="resources/characters/lexiluna/lexi-kitchen-01.jpeg" alt="Lexi Kitchen" width="1000" height="666"/></div>
<<speech "Mom">>You took your time. What were you doing up there?<</speech>>
<<speech "You" "$player.name">>Same old stuff, just browsing the internet. Is it just us today?<</speech>>
<<speech "Mom">>Your sisters should be along shortly.<</speech>>
You hear footsteps from the stairs behind you before your sisters both join you at the dinner table.
<<set $carolina.hasmet to true>><div class="centered-image"><img src="resources/characters/carolinasweets/carolina-01.jpeg" alt="Carolina 01" width="500" height="750"/></div>
Carolina is your younger sister. Always full of energy, you and her have always got on well with each other.
<<set $alli.hasmet to true>><div class="centered-image"><img src="resources/characters/allirae/alli-01.jpg" alt="Alli 01" width="500" height="750"/></div>
Alli is your older sister. Unlike your relationship with Carolina, you and Alli rarely seem to see eye to eye. You remain civil with each other, but you lack the deep connection that you and Carolina share. This has become worse in recent weeks after your arrest.
<<speech "Mom">>You two better sit and eat before the food goes cold.<</speech>>
[[Continue.|intro-8]]<div class="centered-image"><img src="resources/events/pizza.jpg" alt="pizza" width="1000" height="666"/></div>
You and your family are eating dinner.
<<speech "Carolina">>So bro, how was community service?<</speech>>
<<speech "You" "$player.name">>I wasn't there that long. The probation worker fell ill after that storm.<</speech>>
<<speech "Carolina">>Yeah, me and my friend Alex got caught out in it. We barely got inside before it sent us flying off our feet.<</speech>>
<<speech "Mom">>Was it really that bad?<</speech>>
<<speech "You" "$player.name">>It was crazy. Appeared and disappeared within moments.<</speech>>
<<speech "Carolina">>And more lightning than I've ever seen.<</speech>>
The conversation changed to another topic, and dinner continued on as normal.
<<speech "Mom">>$player.name, help your sister with the washing up.<</speech>>
<<speech "Alli">>I don't need his help, I can handle it.<</speech>>
<<speech "Mom">>It'll go quicker with two of you. Never look a gift horse in the mouth.<</speech>>
Mom ushered you into the kitchen.
<div class="centered-image"><img src="resources/events/washingdishes.gif" alt="washing dishes" width="500"/></div>
You and your sister washed up quietly for a few minutes. The silence was agony.
<<speech "You" "$player.name">>So... How has your day been?<</speech>>
<<speech "Alli">>Fine.<</speech>>
<<speech "You" "$player.name">>You're still not speaking to me?<</speech>>
<<speech "Alli">>Nope.<</speech>>
<<speech "You" "$player.name">>C'mon, what is your problem with me?<</speech>>
Alli stayed silent. The rest of the washing up was finished in silence, after which you returned to your room.
<div class="centered-image"><img src="resources/events/computer.jpg" alt="computer" width="1000" height="666"/></div>
You spend the rest of the evening browsing the internet, playing video games, and reading news about the storm, before turning in for the night.
[[Sleep|intro-9]]<div class="centered-image"><img src="resources/events/lightning.gif" alt="lightning" width="500"/></div>
During the night you dream of the storm. You dream of the lightning, and the surge of electricity. You dream of community service, and painting benches. You dream of the other young offenders, studying each of their perfect figures. You dream of porn games, and the hours you've spent late at night picturing your fantasies in your mind.
You dream of a lot of things, but eventually you have to <<link[[wake up|intro-10]]>><<set $gameDate.setHours(7)>><<set $gameDate.setMinutes(0)>><<adddays 1>><</link>>.<<set $event.introstorm to true>>//BEEP BEEP BEEP//
Your morning alarm brings you back to reality. Still groggy, you lie in bed a few more minutes.
//KNOCK KNOCK//
<<speech "Mom">>Wake up honey, you don't want to be late.<</speech>>
You turn to your bedroom door to respond.
<div class="centered-image"><img src="resources/characters/lexiluna/lexi-01.jpeg" alt="Lexi 01" width="500" height="749"/></div>
After a moment of shock you manage to stumble a response.
<<speech "You" "$player.name">>Mom... Don't you want to put some clothes on?<</speech>>
Mom was never very conservative with clothes, but she would never stroll around the house in only her underwear.
<<speech "Mom">>Just trying something new. Besides, I don't see any problem with my clothing choice.<</speech>>
<<speech "You" "$player.name's Thoughts">>//Something really weird is going on.//<</speech>>
<<speech "Mom">>Now come on, get up or you'll be late to your community service.<</speech>>
You decide to do as she says, and she leaves the room as you climb out of bed. You start the day as you usually do, with a <<link[[morning shower|intro-11]]>><<addmins 10>><</link>>.<div class="centered-image"><img src="resources/characters/carolinasweets/carolina-profile.jpeg" alt="carolina profile" width="1000" height="667"/></div>
!!!Carolina
Power: <<if $carolina.power is true>>Pyrokinesis<<else>>Unknown<</if>>
Description:
During your initial arrest, your younger sister began to doubt her trust in your. However, during your trial, she and your Mom both came to accept your side of the story, and now support you as you complete your community service.
During the storm, Carolina and her friend were struck with nearby lightning.<<if $carolina.power is true>> Following the storm, Carolina discovered that she now had the ability to create fire. However, her inability to gain control over the fire led her to live in fear of her ability.<</if>>
<<back>>
You are lost in thought as you walk to the bathroom to shower. Mom seemed to be acting quite strange, but it wasn't just that. You have this feeling that something else was off. You were so zoned out that you walked into the bathroom without knocking, and were faced with Carolina getting undressed.
<div class="centered-image"><img src="resources/characters/carolinasweets/carolina-bathroom-01.jpeg" alt="carolina bathroom 01" width="500" height="750"/></div>
<<speech "You" "$player.name">>Oops. Sorry sis, I didn't know you were in here.<</speech>>
<<speech "You" "$player.name's Thoughts">>//I should probably avert my eyes.//<</speech>>
<<speech "Carolina">>It's okay. I guess I just forgot to lock the door.<</speech>>
<div class="centered-image"><img src="resources/characters/carolinasweets/carolina-bathroom-02.jpeg" alt="carolina bathroom 02" width="500" height="750"/></div>
<<speech "You" "$player.name's Thoughts">>//I should definitely avert my eyes.//<</speech>>
<<speech "You" "$player.name">>Well, just remember in future so I don't walk in on you again<</speech>>
<<speech "Carolina">>Why? There's not really anything wrong with it.<</speech>>
It's weird that she's not freaking out about this right now.
<div class="centered-image"><img src="resources/characters/carolinasweets/carolina-bathroom-03.jpeg" alt="carolina bathroom 03" width="500" height="750"/></div>
<<speech "Carolina">>Besides, if you want we can always share.<</speech>>
<<link[[Freak out and leave.|intro-11a]]>><<addmins 5>><</link>>
<<link[[Share the shower.|intro-11b]]>><<addmins 5>><</link>>
<<speech "You" "$player.name">>Okay, you're on. Let's share the shower.<</speech>>
<<speech "Carolina">>The shower seems to be acting up, is a bath okay?<</speech>>
<<speech "You" "$player.name">>A bath is fine as well.<</speech>>
As you start getting undressed, Carolina climbs into the bathtub and starts washing herself. You decide to check her out.
<div class="centered-image"><img src="resources/characters/carolinasweets/carolina-bathroom-04.jpeg" alt="carolina bathroom 04" width="1000" height="666"/></div>
If this is a dream, you don't want to wake up. You can't deny that you haven't had this exact fantasy in the past. You would never have acted on it, but when opportunity knocks...
<<speech "Carolina">>C'mon bro, what's taking you so long?<</speech>>
<div class="centered-image"><img src="resources/characters/carolinasweets/carolina-bathroom-05.jpeg" alt="carolina bathroom 05" width="1000" height="666"/></div>
<<speech "You" "$player.name">>Sorry, just got lost in thought for a moment there.<</speech>>
<<speech "Carolina">>Well don't leave me all alone here.<</speech>>
You waste no more time undressing, and are in the tub within seconds. You and Carolina are separately washing yourselves. You can't help but admire her figure, whilst also thinking about how the fuck you came to be in this position. After a moment of thought you wonder whether you should try and push it further.
<<link[[Push it further.|intro-11b1]]>><<addmins 5>><</link>>
<<link[[Finish your bath.|intro-11a]]>><<addmins 5>><</link>><<set $event.carolinaintroblowjob to false>><<set $event.intro0 to true>>You decide the situation was too weird and leave as quick as you can. Carolina looked a little confused as you left but you were not prepared to go any further. Shortly after you were back in your bedroom.
As you get dressed for the day, you begin to think over the weird things that had already happened today.
<<speech "You" "$player.name's Thoughts">>//First Mom wakes me up in nothing but her underwear, then Carolina undresses in front of me and even invites me to join her.//<</speech>>
You get the feeling that this won't be last of the weirdness.
Before heading downstairs you decide to check your phone, which is where you spot several new apps that weren't there yesterday.
<center>Phone:
[img[resources/ui/buttons/NOTEPAD-large.jpg][Notepad]]
[img[resources/ui/buttons/HINTS-large.jpg][Hints]]
[img[resources/ui/buttons/CHARACTERS-large.jpg][Characters]]
[img[resources/ui/buttons/CHOICES-large.jpg][Choices]]
[img[resources/ui/buttons/TUTORIAL-large.jpg][Tutorial]]
[img[resources/ui/buttons/CREDITS-large.jpg][Credits]]</center>
<<speech "You" "$player.name's Thoughts">>//How is this possible? Choices and Credits? And the Characters screen showed information that I haven't even learned yet.//<</speech>>
It all seemed very reminiscent of the porn games you frequented. You made a mental note to look into it later, for now, you had something more important on your mind: <<link[[breakfast|intro-12]]>><<addmins 10>><</link>><div class="centered-image"><img src="resources/characters/lexiluna/lexi-kitchen-02.jpeg" alt="lexi kitchen 02" width="1000" height="666"/></div>
You took a seat at the kitchen table and wait as Mom fries up some eggs for breakfast. She was still dressed in only her underwear, but this didn't seem to bother her.
<<speech "Alli">>Hey $player.name, could I speak to you for a moment?<</speech>>
You turn to face Alli, wondering what she has to say.
<div class="centered-image"><img src="resources/characters/allirae/alli-02.jpg" alt="alli 02" width="500" height="750"/></div>
<<speech "You" "$player.name's Thoughts">>//Alli as well, what is going on around here?//<</speech>>
<<speech "You" "$player.name">>Oh, so you decided to talk to me now?<</speech>>
<<speech "Alli">>Yes, I... I wanted to apologise for how I've been acting. I've been such a bitch to you and I just want you to know that I've had a sort of epiphany and I want to right some wrongs starting with how I've treated you.<</speech>>
She's speaking so fast you can barely keep up.
<<speech "You" "$player.name">>Woah, slow down, breath. What's this about.?<</speech>>
<<speech "Alli">>Okay. //phew//. Last night I started thinking about everything going on right now. I was thinking about how you've got this community service thing and I was never supportive of you like everyone else was.<</speech>>
<<speech "You" "$player.name">>You made it clear from the start that you didn't believe my side of the story.<</speech>>
<<speech "Alli">>No, I didn't. Not until last night. Mom and Carolina have been beside you all the way and I just feel really bad that I turned my back on you. I mean, I'm your sister why did I do that?<</speech>>
You sit speechless, unable to comprehend this sudden change of heart.
<<speech "Alli">>So, what I'm looking for is a fresh start between us two. Do you think that is possible? Can you forgive me?<</speech>>
<<speech "You" "$player.name">>I never held any grudge against you, so of course I can forgive you. Where is all this coming from anyway?<</speech>>
<<speech "Alli">>Like I said I was just thinking about it all last night, and this morning I woke up and realised I needed to change.<</speech>>
You made another mental note to add this to the growing list of weird shit going on today. Mom dishes up the eggs and breakfast continues normally, except for the increased amount of skin on show. By the end of the meal Alli had apologised almost a dozen different ways, you forgiving her each time.
Whilst you wanted to stay at home and investigate further into all the strange stuff going on, you still had to attend your <<link[[community service|intro-13]]>><<set $gameDate.setHours(9)>><<set $gameDate.setMinutes(0)>><</link>>.<<speech "You" "$player.name's Thoughts">>//Even if I go to hell, the price was worth it.//<</speech>>
You take the opportunity to try and push things further and take Carolina in your arms.
<div class="centered-image"><img src="resources/characters/carolinasweets/carolina-bathroom-06.jpeg" alt="carolina bathroom 06" width="1000" height="666"/></div>
//whimper//
You hear Carolina react to your touch. As you caress her, you feel your dick harden between her legs.
<div class="centered-image"><img src="resources/characters/carolinasweets/carolina-bathroom-07.jpeg" alt="carolina bathroom 07" width="1000" height="666"/></div>
<<speech "Carolina">>Oh, maybe I should take care of that?<</speech>>
<<speech "You" "$player.name">>Go ahead sis.<</speech>>
You move to sit up on the rim of the bathtub as Carolina leans in front of you.
<<set $event.carolinaintroblowjob to true>><div class="centered-image"><img src="resources/characters/carolinasweets/carolina-bathroom-08.jpeg" alt="carolina bathroom 08" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/carolinasweets/carolina-bathroom-01.webm" alt="carolina bathroom 01 video" width="1000" autoplay loop muted /></div>
<<speech "You" "$player.name">>If I'd known you were this good sis, I would've done this a long time ago.<</speech>>
Carolina moaned in response and quickened her pace, enjoying you in her mouth.
As you were getting close, you stood and pushed Carolina to her knees, emptying yourself down her throat.
<div class="centered-video"><video src="resources/characters/carolinasweets/carolina-bathroom-02.webm" alt="carolina bathroom 02 video" width="1000" autoplay loop muted /></div>
<<speech "Carolina">>We should do that more often.<</speech>>
<<speech "You" "$player.name">>Definitely.<</speech>>
After cleaning yourself up, you dry off and return to <<link[[your room|intro-11b2]]>><<addmins 15>><</link>>.<<set $event.intro0 to true>>Soon you are back in your bedroom, still in disbelief about what just happened. Not that you didn't enjoy it, and not that you didn't want more, but something strange is going on.
As you got dressed for the day, you began to think over the weird things that had already happened.
<<speech "You" "$player.name's Thoughts">>//First Mom wakes me up in nothing but her underwear, then Carolina undresses in front of me and even invites me to join her.<<if $event.carolinaintroblowjob is true>> And after I accept, and push the situation further, she sucks me off there and then.<</if>>//<</speech>>
You get the feeling that this won't be last of the weirdness for today.
Before heading downstairs you decide to check your phone, which is where you spot several new apps that weren't there yesterday.
<center>Phone:
[img[resources/ui/buttons/NOTEPAD-large.jpg][Notepad]]
[img[resources/ui/buttons/HINTS-large.jpg][Hints]]
[img[resources/ui/buttons/CHARACTERS-large.jpg][Characters]]
[img[resources/ui/buttons/CHOICES-large.jpg][Choices]]
[img[resources/ui/buttons/TUTORIAL-large.jpg][Tutorial]]
[img[resources/ui/buttons/CREDITS-large.jpg][Credits]]</center>
<<speech "You" "$player.name's Thoughts">>//How is this possible? Characters and Credits? And the Characters screen showed information that I haven't even learned yet.//<</speech>>
It all seemed very reminiscent of the porn games you frequented. You made a mental note to look into it later, for now, you had something more important on your mind: <<link[[breakfast|intro-12]]>><<addmins 10>><</link>>.You arrive at the Community Centre on time at 9am. The rest of your community service group are already there. A figure appears and greets you.
<div class="centered-image"><img src="resources/events/lucius.jpg" alt="lucius" width="500" height="749"/></div>
<<speech "Stranger">>Good morning.<</speech>>
<<speech "Megan">>Who the hell are you? Where's the woman from yesterday?<</speech>>
<<speech "Stranger">>Lauren? Out sick I'm afraid. I'm the replacement probation worker that the council has sent to oversee you until she recovers.<</speech>>
He has a strange manner. His speech was slow and calm, and yet unnerving.
<<speech "Skin">>So what do we call you then?<</speech>>
<<speech "Stranger" "Lucius">>You may refer to me as Lucius, though I doubt you'll see much of me. I prefer to monitor you from a distance.<</speech>>
<<speech "Megan">>That's creepy.<</speech>>
<<speech "Stranger" "Lucius">>I don't care much for what you think of me.<</speech>>
Your skin crawled as he spoke, so you decided to move the conversation along.
<<speech "You" "$player.name">>So what are we doing today then?<</speech>>
<<speech "Stranger" "Lucius">>There are a variety of tasks around the community centre that require your attention. Divide it up between you and get it done. Remember, just because you can't see me, it doesn't mean I'm not there keeping an eye on you.<</speech>>
Lucius retreats into the staff office, leaving you a list of jobs. After assigning one to each person, you go about doing what you <<link[[need to do|intro-14]]>><<set $gameDate.setHours(12)>><<set $gameDate.setMinutes(0)>><</link>>.After a few hours, you complete the task assigned to you.
Given all of the weird stuff happening at home, you decide to talk to the other members of the group to see if anything similar is happening. You also think it best to try and avoid Lucius if at all possible.
Where would you like to go?
<<if $event.introA is false>><<link[[The Mezzanine|intro-14a]]>><<addmins 10>><</link>><<elseif $event.introA is true>>You have already visited the Mezzanine.<</if>>
<<if $event.introB is false>><<link[[The Locker Room|intro-14b]]>><<addmins 10>><</link>><<elseif $event.introB is true>>You have already visited the Locker Room.<</if>>
<<if $event.introC is false>><<link[[The Storage Room|intro-14c]]>><<addmins 10>><</link>><<elseif $event.introC is true>>You have already visited the Storage Room.<</if>>
<<if $event.introD is false>><<link[[The Roof|intro-14d]]>><<addmins 10>><</link>><<elseif $event.introD is true>>You have already visited the Roof.<</if>>
<<nobr>><<if $event.introA is true>>
<<if $event.introB is true>>
<<if $event.introC is true>>
<<if $event.introD is true>>
<<link[[Continue.|intro-15]]>><<addmins 15>><</link>>
<</if>>
<</if>>
<</if>>
<</if>>
<</nobr>><<set $event.introA to true>>You head over to the Mezzanine.
The upper floor of the Community Centre, the Mezzanine contains a more relaxed meeting environment. There is a small games room, cafe, and several smaller meeting rooms.
You spot Skin taking a break in one of the meeting rooms, and go in to speak to her.
<div class="centered-image"><img src="resources/characters/skindiamond/skin-02.jpeg" alt="skin 02" width="1000" height="666"/></div>
<<speech "You" "$player.name">>Hey. I see you're taking a break as well.<</speech>>
<<speech "Skin">>May as well, the creep isn't around to bother us.<</speech>>
<<speech "You" "$player.name">>Yeah, something is definitely off with that guy.<</speech>>
<<speech "Skin">>Y'know, I never did catch your name yesterday.<</speech>>
<<speech "You" "$player.name">>$player.name. And your name was Skin, right?<</speech>>
<<speech "Skin">>Yep. Skin's the name, and skin's the game.<</speech>>
Skin takes the opportunity to unbutton her shirt and give you a peek.
<div class="centered-image"><img src="resources/characters/skindiamond/skin-03.jpeg" alt="skin 03" width="500" height="750"/></div>
<<speech "You" "$player.name">>Nice.<</speech>>
Despite this, you decide to stay on topic and try to determine if anything weird has happened to Skin.
<<speech "You" "$player.name">>So, anything interesting happen to you after yesterday?<</speech>>
<<speech "Skin">>How do you mean?<</speech>>
<<speech "You" "$player.name">>After that storm yesterday, I don't know I was just curious if anymore weird shit was going on around here.<</speech>>
<<speech "Skin">>Maybe something did happen, and maybe something didn't.<</speech>>
<div class="centered-image"><img src="resources/characters/skindiamond/skin-04.jpeg" alt="skin 04" width="1000" height="666"/></div>
Skin undresses further. You suspect that something did happen to her, but she seems a little distracted to divulge any more information.
<<speech "You" "$player.name">>Not that I don't appreciate the show, but what is going on here?<</speech>>
<<speech "Skin">>Can't I enjoy being appreciated by a man such as yourself.<</speech>>
<div class="centered-image"><img src="resources/characters/skindiamond/skin-05.jpeg" alt="skin 05" width="1000" height="666"/></div>
Skin starts rubbing herself, visibly enjoying the experience.
<<speech "Skin">>If you play your cards right, in the future you might get to do more than just watch.<</speech>>
<<speech "You" "$player.name">>I'll keep it in mind.<</speech>>
Skin barely hears your response as she quickens her pace. You decide to leave her to it, but as you leave you take one last look.
<div class="centered-image"><img src="resources/characters/skindiamond/skin-06.jpeg" alt="sking 06" width="500" height="750"/></div>
<<link[[Leave|intro-14]]>><<addmins 15>><</link>><<set $event.introB to true>>You head over to the Locker Room.
The Community Centre is often used for group activites, and acts as a central hub for much of the estate. The locker room is the main stop for staff at the facility, and as such has a few function rooms attached to it. Rooms such as a staff canteen, shower room, and the locker room itself provide a variety of services for people at the Community Centre.
You see Alessa relaxing in the staff canteen, and go over to speak with her.
<div class="centered-image"><img src="resources/characters/alessasavage/alessa-02.jpeg" alt="alessa 02" width="500" height="750"/></div>
<<speech "Alessa">>Hey. I see you found your way here as well.<</speech>>
<<speech "You" "$player.name">>Yeah, is this some kind of canteen?<</speech>>
<<speech "Alessa">>It's pretty much an entire kitchen. Though if you leave food in the fridge, don't expect it to stay there long.<</speech>>
<<speech "You" "$player.name">>I'll keep that in mind. I'm $player.name by the way. I don't think we spoke much yesterday.<</speech>>
You extend your hand, and Alessa returns the introduction. You notice that it seems as though she's checking you out.
<div class="centered-image"><img src="resources/characters/alessasavage/alessa-03.jpeg" alt="alessa 03" width="1000" height="666"/></div>
<<speech "Alessa">>None of us did very much after that freak storm.<</speech>>
<<speech "You" "$player.name">>That's underselling it, I can't say I've ever been struck by lightning before.<</speech>>
<<speech "Alessa">>Trust me, that shit will be bragging rights for years.<</speech>>
Alessa pauses for a moment, almost hesitantly, before speaking again.
<<speech "Alessa">>Listen, did anything weird happen to you after yesterday?<</speech>>
<<speech "You" "$player.name">>Why do you ask?<</speech>>
<<speech "Alessa">>I don't know, just some freaky stuff going on at the moment. Forget I mentioned it.<</speech>>
<<speech "You" "$player.name">>You sure? I won't tell anyone if that's what you're worried about.<</speech>>
<<speech "Alessa">>I know, I mean, I trust you. Just need to get my head straight first.<</speech>>
<<speech "You" "$player.name">>Okay, well you know where to find me.<</speech>>
You spend a few more minutes talking about idle topics, before excusing yourself and returning to the <<link[[main lobby|intro-14]]>><<addmins 20>><</link>>.<<set $event.introC to true>>You head over to the Storage Rooms
Since the Community Centre hosts a variety of different events and functions, a large amount of stuff has to be stored away to be used later. Anything from sports equipment, cafe food, or community service tools need a place to be organised and kept. As such, the Community Centre had a variety of rooms set aside to store everything.
You find Kristen in one of the storage rooms, and go over to speak with her.
<div class="centered-image"><img src="resources/characters/kristenscott/kristen-02.jpeg" alt="kristen 02" width="500" height="749"/></div>
<<speech "Kristen">>Hey $player.name.<</speech>>
<<speech "You" "$player.name">>Hey Kristen, how are you doing today?<</speech>>
<<speech "Kristen">>I'm doing okay I guess.<</speech>>
You don't believe her, she seems disheartened about something.
<<speech "You" "$player.name">>Is something wrong? You can talk to me you know.<</speech>>
<<speech "Kristen">>I know.<</speech>>
<<speech "You" "$player.name">>So, was there something you wanted to talk about?<</speech>>
<<speech "Kristen">>Do you remember that storm yesterday?<</speech>>
<<speech "You" "$player.name">>How could I forget? Freak storm appears and disappears in minutes. Not to mention us getting struck by lightning.<</speech>>
<<speech "Kristen">>Well, some really weird stuff has been going on since then. I guess I'm still freaked out about the whole thing.<</speech>>
<<speech "You" "$player.name">>Why, what's been happening?<</speech>>
<<speech "Kristen">>I don't really want to talk about it right now.<</speech>>
Kristen turns away and resumes sorting through the boxes in the store room. You decide to try and ease the situation and push her to reveal more.
<<speech "You" "$player.name">>What if I told you that weird crap has been happening to me as well.<</speech>>
<<speech "Kristen">>Really? Like what?<</speech>>
<<speech "You" "$player.name">>Hey, I asked first.<</speech>>
<<speech "Kristen">>You show me yours and I'll show you mine. I'll talk when you talk.<</speech>>
You stop and think for a second.
<<speech "You" "$player.name's Thoughts">>//How much do I want to reveal about today so far. It might not be best to publicly discuss Mom and Carolina being much more provocative.//<</speech>>
After a moment, you respond.
<<speech "You" "$player.name">>Well, yesterday my older sister was giving me the cold shoulder. She hasn't exactly been nice to me after I got arrested. But this morning, it's like she was a completely different person, talking about starting over and wanting forgiveness.<</speech>>
You manage to tell the story without revealing that your family are now openly walking around in their underwear.
<<speech "Kristen">>Maybe she really has turned over a new leaf.<</speech>>
<<speech "You" "$player.name">>You don't know my sister. God himself would have to climb down from the heavens to change her mind.<</speech>>
<<speech "Kristen">>In that case maybe it is a little weird.<</speech>>
<<speech "You" "$player.name">>So, I've told my story. What's yours?<</speech>>
<<speech "Kristen">>It's hard to explain. It might be nothing. But I've been having hallucinations or seeing stuff that isn't there. Maybe I'm just tired.<</speech>>
<<speech "You" "$player.name">>What kind of things have you been seeing?<</speech>>
<<speech "Kristen">>It's hard to remember. Mostly like flashes of people or objects or stuff. Do you think I should go to the doctor?<</speech>>
<<speech "You" "$player.name">>If you think that's the best thing to do?<</speech>>
<<speech "Kristen">>Alright then.<</speech>>
Kristen turns to leave, as she does so she turns back to say one last thing.
<<speech "Kristen">>Thanks $player.name. It's good to have somebody here that I can actually talk to.<</speech>>
Kristen exits, leaving you alone in the storeroom. You don't have anything else to do here so your return to the <<link[[main lobby|intro-14]]>><<addmins 25>><</link>>.<<set $event.introD to true>>You head over to the roof.
The roof of the Community Centre had been converted to a sort of indoor garden. It was likely designed to be a sort of chill hang-out spot to get away from the noisier parts of the centre. Up here you had access to the open sky, sun, and are constantly surrounding by all manner of plants.
You spot Megan relaxing and taking in the sun, and decide to go talk to her.
<div class="centered-image"><img src="resources/characters/meganrain/megan-02.jpeg" alt="megan 02" width="1000" height="666"/></div>
<<speech "You" "$player.name">>You seem to be enjoying yourself.<</speech>>
<<speech "Megan">>Why shouldn't I. We may have to do all these bullshit little jobs but it doesn't mean I can't come up here and top up my tan.<</speech>>
<<speech "You" "$player.name">>That's an interesting way of looking at things.<</speech>>
<<speech "Megan">>Damn straight. What was your name again?<</speech>>
<<speech "You" "$player.name">>$player.name. And you're Megan right? We didn't speak much yesterday before that storm.<</speech>>
<<speech "Megan">>That's right. And that storm was a godsend, got us a day off from this shit.<</speech>>
<<speech "You" "$player.name">>Oh yeah, and how did you spend that day off?<</speech>>
<<speech "Megan">>I had fun, what else are we supposed to do. Y'know, you should come out with us someday. I can show you a good time.<</speech>>
You're pretty certain nothing out of the ordinary happened to Megan, and decide to not even ask.
<<speech "You" "$player.name">>I'll have to take a rain check on that one.<</speech>>
<<speech "Megan">>Noted. But here's a preview for what happens when you do.<</speech>>
<div class="centered-image"><img src="resources/characters/meganrain/megan-03.jpeg" alt="megan 03" width="500" height="749"/></div>
Megan raises her top and flashes you, enjoying the reactions on your face.
<<speech "Megan">>See you around $player.name.<</speech>>
You take your leave and return to the <<link[[main lobby|intro-14]]>><<addmins 15>><</link>>.Talking to everyone had mixed results.
<<speech "You" "$player.name's Thoughts">>//Skin certainly seemed to indicate something out of the ordinary had happened, but she was more interested in getting herself off than talking about it. Something is definitely going on with Alessa, but she doesn't want to talk about it at all. Kristen has had some weirdness go on, but after our talk she thinks that there is a normal explanation for it. And Megan is acting as if nothing has changed, so everything must be normal with her.//<</speech>>
It's been a while since you last saw the probation worker, and since you've been inside all day, you decide to take the chance without him looking to go outside and take a breath of fresh air to try and get away from it all.
<<link[[Go outside.|intro-16]]>><<addmins 10>><</link>>Outside the wind is calm and the air is cool. Just what you needed in order to chill for a second. You close your eyes, taking in the moment.
<div class="centered-image"><img src="resources/events/sky.jpg" alt="sky" width="1000" height="666"/></div>
You hear muttering nearby.
Lucius is sat on a park bench, head down, whispering to himself. From where you're standing, it doesn't look like he's seen you, and unless he turns around, he wouldn't even know you were there.
You forget about Lucius for a moment and try to return to the calm state of mind. Unfortunately you ended up getting a little distraction.
<div class="centered-video"><video src="resources/events/reddress.webm" width="1000" alt="red dress" autoplay loop muted /></div>
You watch the woman in the red dress saunter past you towards the benches. You eyes are glued to her as she passes by Lucius.
//AARGH//
You stand in disbelief as Lucius pounces on the woman. She's thrown to the ground and he climbs above, thrashing away with his fists. You want more than anything to rush to her aid, but fear holds you back. You can't remain silent however, and let out a //gasp//.
<div class="centered-image"><img src="resources/events/blackeyes.gif" alt="black eyes" width="1000"/></div>
Lucius turns and faces you, black eyes on full display. Not wanting to face that right now, you turn and run back into the <<link[[Community Centre|intro-17]]>><<addmins 15>><</link>>.You rush into the main lobby of the community centre, locking the door behind you. Lucius slams the full force of his weight at the door. You push against it, trying to hold him back.
Hearing the commotion, the rest of the group appear in front of you.
<img src="resources/characters/alessasavage/alessa-02.jpeg" alt="alessa 02" width="300" /><img src="resources/characters/skindiamond/skin-01.jpeg" alt="skin 02" width="300" /><img src="resources/characters/kristenscott/kristen-01.jpeg" alt="kristen 01" width="300" /><img src="resources/characters/meganrain/megan-01.jpeg" alt="megan 01" width="300" />
<<speech "Alessa">>What the fuck is going on?<</speech>>
<<speech "You" "$player.name">>The probation worker, Lucius...<</speech>>
You struggle to get the words out.
<<speech "Skin">>What about him?<</speech>>
<<speech "You" "$player.name">>I've just seen him kill someone, then he chased me here.<</speech>>
<<speech "Megan">>Bullshit!<</speech>>
<<speech "You" "$player.name">>It's true. I was standing behind him, a woman walked past, and he lashed out at her.<</speech>>
Lucius rams the door several more times before quietening down again..
<<speech "Skin">>How do you know it was the probation worker?<</speech>>
<<speech "You" "$player.name">>He turned to face me and I got a good look at his face. I looked at him and he looked back at me with black eyes.<</speech>>
<<speech "Skin">>Black eyes?<</speech>>
<<speech "Megan">>I'll say it again: Bullshit!<</speech>>
<<speech "You" "$player.name">>It's not bullshit!<</speech>>
<<speech "Alessa">>He's telling the truth.<</speech>>
Everyone turns to look at Alessa.
<div class="centered-image"><img src="resources/characters/alessasavage/alessa-04.jpeg" alt="alessa 04" width="500" height="750"/></div>
<<speech "Skin">>And how could you possibly know that?<</speech>>
<<speech "Alessa">>It's complicated.<</speech>>
<<speech "Megan">>Well fucking un-complicate it then.<</speech>>
<<set $alessa.power to true>><<speech "Alessa">>After that storm yesterday, it's like I can hear what people are thinking and tell when they're lying to me.<</speech>>
<<speech "Megan">>You can hear people's thoughts? Alright, what am I thinking right now?<</speech>>
<<speech "Megan" "Megan's Thoughts">>//This is Bullshit!//<</speech>>
<<speech "Alessa">>You think it's bullshit.<</speech>>
<<speech "Megan">>Of course I think it's bullshit. You don't need to read my thoughts to know that.<</speech>>
<<speech "Kristen" "Kristen's Thoughts">>//Maybe I should say something. No, it's too weird.//<</speech>>
<<link[[Continue|intro-18]]>><<addmins 10>><</link>>Alessa turns and points at Kristen.
<div class="centered-image"><img src="resources/characters/kristenscott/kristen-01.jpeg" alt="kristen 01" width="500" height="750"/></div>
<<speech "Alessa">>Did something happen to you?<</speech>>
<<speech "Kristen">>I didn't say anything.<</speech>>
<<speech "Alessa">>Yeah, but you were thinking about saying something, and I could hear you thinking about it.<</speech>>
Kristen is uncomfortable being put on the spot, but backed into a corner she realises that there is no choice but to talk.
<<set $kristen.power to true>><<speech "Kristen">>During that storm yesterday, when the lightning struck us, I had a sort of vision.<</speech>>
<<speech "You" "$player.name">>What kind of vision?<</speech>>
<<speech "Kristen">>A vision of the future. It's like I was actually there, living it out. It felt so real.<</speech>>
<<speech "Alessa">>What did you see?<</speech>>
<<speech "Kristen">>I didn't see much, but what I did see wasn't good. The sky was red, the sun was eclipsed, lightning was everywhere. It was like hell on earth.<</speech>>
Kristen was visibly agitated, but otherwise continues with the story.
<<speech "Kristen">>There was this group. I couldn't see their faces. They were killing people in the street. Right outside the Community Centre. I thought for a moment that I'd be next.<</speech>>
<<speech "You" "$player.name">>What happened then?<</speech>>
<<speech "Kristen">>The last thing I saw after that... was you.<</speech>>
Kristen points at you. The rest of the group turn to look at you.
<<speech "You" "$player.name">>Me?<</speech>>
<<speech "Kristen">>You. After that I woke up, exactly where I had been.<</speech>>
<<speech "Alessa">>She's telling the truth.<</speech>>
<<speech "Megan">>So we're supposed to just believe that you can read minds and she can see the future? Nah, that's just too weird.<</speech>>
Skin, who had remained silent through Kristen's speech, suddenly spoke up.
<<speech "Skin">>Yeah, weird. About that.<</speech>>
<<link[[Continue|intro-19]]>><<addmins 10>><</link>><<speech "Megan">>I don't fucking believe this. I suppose you have some crazy new power as well do ya?<</speech>>
<div class="centered-image"><img src="resources/characters/skindiamond/skin-01.jpeg" alt="skin 01" width="500" height="750"/></div>
<<set $skin.power to true>><<speech "Skin">>Last night at my flat, I was experimenting with some new designs.<</speech>>
<<speech "Alessa">>You mean practicing your graffiti?<</speech>>
Skin gives Alessa a brief death stare before continuing.
<<speech "Skin">>I was painting randomly, and ended up with a design of a small rabbit.<</speech>>
<<speech "You" "$player.name">>Sounds pretty normal so far.<</speech>>
<<speech "Skin">>After I finished painting, for a brief moment, the rabbit came to life.<</speech>>
<<speech "Kristen">>What do you mean "came to life"?<</speech>>
<<speech "Skin">>As in it hopped of the fucking page and around my flat for a minute or so before vanishing. Even the original painting vanished as well.<</speech>>
<<speech "Megan">>This is even crazier than those two. What the hell are you all smoking?<</speech>>
<<speech "Alessa">>She's telling the truth as well.<</speech>>
<<speech "Megan">>For fucks sake. And what about you?<</speech>>
Megan directs her attention towards you.
<<speech "Megan">>I suppose you have something to tell us as well?<</speech>>
<<speech "You" "$player.name">>Ha, most certainly. But I couldn't even try to explain it.<</speech>>
<<speech "You" "$player.name's Thoughts">>//Once again it's probably best not to reveal everything about today, not until I've got a good understanding myself.//<</speech>>
<<speech "Alessa">>Try us.<</speech>>
<<speech "You" "$player.name">>Oh trust me, once I work out what the fuck is happening to me you'll all be the first to know. But before that we have another problem.<</speech>>
<<speech "Skin">>And what's that then?<</speech>>
<<speech "You" "$player.name">>I don't know how long we've been talking, but Lucius is being real quiet trying to break down that door.<</speech>>
Your attention then returns to the locked door to the Community Centre. It had been some time since Lucius last lunged at the door.
<<link[[Outside was silent|intro-20]]>><<addmins 10>><</link>><div class="centered-image"><img src="resources/events/computer.jpg" alt="computer" width="1000" height="666"/></div>
What a day.
To try and explain what happened today would probably break your brain. superpowers, red-eyed monsters, not to mention all the weird stuff going on with your Mom and sisters.
As you idly browse away on your laptop, you begin to put the pieces together. You quickly identify that the Storm must have been the catalyst that gave people powers. Alessa reading minds, Kristen seeing the future, Skin bringing paintings to life, and Megan with seemingly no power at all.
<<speech "You" "$player.name's Thoughts">>//Wait, so what's my power?//<</speech>>
You review all the information you've seen today:
* Mom waking me up in just her underwear
* Carolina getting undressed in front of me
* Carolina inviting me to join her getting washed<<if $event.carolinaintroblowjob is true>>, then giving me a blowjob during our bath.<</if>>
* Mom making breakfast, still in just her underwear
* Alli approaching me, in just her underwear
* Alli wanting a fresh start
* The mere existence of Lucius
* The Powers
You try to apply any sort of logic you can think of to the situation, but you draw a blank. Rather than face the issue now, you decide to spend some time with some porn games. You look through the latest updates and download one to your liking.
<<link[[Play Jen & Eric Porn Game|intro-28]]>><<addhours 1>><<addmins 30>><</link>>How does the numbering system work?
The version numbers follow the format: CHAPTER - UPDATE - FIX
For example: version 4.12.3 would be Chapter 4, Update 12, Bug Fix 3.
Changelog - 1.3.2 Hotfix
* Fixed an issue with Alli's blowjob option dissapearing
* Fixed an issue with images not loading on itch.io
* Fixed several spelling and grammatical errors
Changelog - 1.3.1
* Alli's Quest Line Complete (5 Events, 3 Story Choices, 3 Free-Mode interactions, 3 Background Events)
* 70 new Images, 40 new videos
* Approx 8'000 additional words
* Updated the Titlecard
* Updated general UI images
* Updated the Notepad to include character event hints
* Added a general Hints passage
* Added a basic Tutorial passage
* Removed the Mirror background events
* Altered code relating to images to match HTML standard
* Reduced dimensions of source images for better implementation into game code and reduced overall file size.
Changelog - 1.2.4 Hotfix
* Updated the Date/Time widget to the most up to date version
* Fixed my errors in the code based on old information
* Slight alteration to text stylescript to improve clarity against background.
* Background code added in preparation for next major update
Changelog - 1.2.3 Hotfix
* Reworked Sleep Code: You can sleep between 10pm and 7am. If the option to sleep is unavailable, you will be prompted to rest for an hour.
Changelog - 1.2.2 Hotfix
* Removed passages that redirect player (These forced "goto" passages removed the player's ability to undo/go back
* Reworked Sleep: After choosing to sleep, the player will wake up and, if it is a weekday, will only be given the option to attend Community Service. On the weekend, the option takes the player back to free-roam
* Reworked all code regarding time of day
* Fixed an issue with a broken link
Changelog - 1.2.1
* Altered the version format to CHAPTER - UPDATE - FIX
* Approx 10'000 additional words
* 2 Alessa Events, plus 3 background interactions
* 2 Skin Events, plus 3 background interactions
* 2 Kristen Events, plus 3 background interactions
* 2 Megan Events, plus 3 background interactions
* 3 background interactions for Lauren, Lexi, Carolina, and Alli
* Rewritten the latter half of the intro
* Adjusted the side bar buttons and passage links
* Re-invented the character of The Storm
* Added a porn game within the porn game
* Background images darkened and font size increased in an attempt to improve readability and clarity of text
* Fixed an issue with the UI Bar
* Fixed an issue with the notes not updating
* Changed technical handling of events
* Changed technical handling of sleep event
* Changed name of html file to avoid confusion with another game
Changelog - 0.1 - First Release
* Prologue
* Introduction to the Core Characters
* Functional Free-Mode Map
* Just over 10'000 words (Twine count includes code, so number may not be accurate)<div class="centered-image"><img src="resources/characters/alessasavage/alessa-home-01.jpg" alt="alessa home" width="1000" height="666"/></div>
<<link "Talk to Alessa">><<goto `either("alessa-home-talk-01", "alessa-home-talk-02", "alessa-home-talk-03")`>><</link>>
<<link[[Leave|alessa-home]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/characters/alessasavage/alessa-community-01.jpeg" alt="alessa community" width="1000" height="666"/></div>
<<if $alessa.event is 1>>[[Talk to Alessa|alessa-event-01]]<<elseif $alessa.event is 2>>[[Talk to Alessa|alessa-event-02]]<<else>><<link "Talk to Alessa">><<goto `either("alessa-comm-talk-01", "alessa-comm-talk-02", "alessa-comm-talk-03")`>><</link>><</if>>
<<link[[Leave|locker-room]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/characters/skindiamond/skin-home-01.jpeg" alt="skin home" width="1000" height="666"/></div>
<<link "Talk to Skin">><<goto `either("skin-home-talk-01", "skin-home-talk-02", "skin-home-talk-03")`>><</link>>
<<link[[Leave|skin-home]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/characters/skindiamond/skin-community-01.jpeg" alt="skin community" width="1000" height="666"/></div>
<<if $skin.event is 1>>[[Talk to Skin|skin-event-01]]<<elseif $skin.event is 2>>[[Talk to Skin|skin-event-02]]<<else>><<link "Talk to Skin">><<goto `either("skin-comm-talk-01", "skin-comm-talk-02", "skin-comm-talk-03")`>><</link>><</if>>
<<link[[Leave|mezzanine]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/characters/kristenscott/kristen-home-01.jpeg" alt="kristen home" width="1000" height="666"/></div>
<<link "Talk to Kristen">><<goto `either("kristen-home-talk-01", "kristen-home-talk-02", "kristen-home-talk-03")`>><</link>>
<<link[[Leave|kristen-home]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/characters/kristenscott/kristen-community-01.jpeg" alt="kristen community" width="1000" height="750"/></div>
<<if $kristen.event is 1>>[[Talk to Kristen|kristen-event-01]]<<elseif $kristen.event is 2>>[[Talk to Kristen|kristen-event-02]]<<else>><<link "Talk to Kristen">><<goto `either("kristen-comm-talk-01", "kristen-comm-talk-02", "kristen-comm-talk-03")`>><</link>><</if>>
<<link[[Leave|storage-room]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/characters/meganrain/megan-home-01.jpeg" alt="megan home" width="1000" height="667"/></div>
<<link "Talk to Megan">><<goto `either("megan-home-talk-01", "megan-home-talk-02", "megan-home-talk-03")`>><</link>>
<<link[[Leave|megan-home]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/characters/meganrain/megan-community-01.jpeg" alt="megan community" width="1000" height="666"/></div>
<<if $megan.event is 1>>[[Talk to Megan|megan-event-01]]<<elseif $megan.event is 2>>[[Talk to Megan|megan-event-02]]<<else>><<link "Talk to Megan">><<goto `either("megan-comm-talk-01", "megan-comm-talk-02", "megan-comm-talk-03")`>><</link>><</if>>
<<link[[Leave|roof]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/characters/carolinasweets/carolina-home-01.jpeg" alt="carolina home" width="1000" height="667"/></div>
<<link "Talk to Carolina">><<goto `either("carolina-home-talk-01", "carolina-home-talk-02", "carolina-home-talk-03")`>><</link>>
<<link[[Leave|home-carolina-room]]>><<addmins 5>><</link>><<nobr>>
<<if $alli.trust is false>>
<div class="centered-image"><img src="resources/characters/allirae/alli-hub-home.jpg" alt="alli hub home" width="1000" height="666"/></div>
<<elseif $alli.trust is true>>
<div class="centered-image"><img src="resources/characters/allirae/alliTRUST-hub-home.jpg" alt="alli trust hub home" width="1000" height="666"/></div>
<</if>>
<</nobr>>
<<nobr>>
<<if $alli.event is 1>>
[[Talk to Alli|alli-event-01]]
<<elseif $alli.event is 2>>
<<if $event.allitoldtruth is true>>
[[Talk to Alli|alli-event-02-TRUTH]]
<<elseif $event.allitoldtruth is false>>
[[Talk to Alli|alli-event-02-LIE]]
<</if>>
<<elseif $alli.event is 3>>
<<if $alli.templock is true>>
[[Apologise to Alli|alli-event-02-apologise]]
<<elseif $alli.templock is false>>
[[Talk to Alli|alli-event-03a]]
<</if>>
<<elseif $alli.event is 4>>
[[Talk to Alli|alli-event-04-choice]]
<<elseif $alli.event is 5>>
<<if $gameDate.getHours() gte 19>>
[[Talk to Alli|alli-event-05a]]
<</if>>
<<else>>
<<link "Talk to Alli">><<goto `either("alli-home-talk-01", "alli-home-talk-02", "alli-home-talk-03")`>><</link>>
<</if>><br>
<<if $alli.blowjob is true>>
<<if $alli.event is 3 or $alli.event is 4>>
[[Get a Blowjob|alli-sex-blowjob-01]]
<<elseif $alli.event is 5>>
<<link "Get a Blowjob">><<goto `either("alli-sex-blowjob-01", "alli-sex-blowjob-02")`>><</link>>
<<elseif $alli.event gte 6>>
<<link "Get a Blowjob">><<goto `either("alli-sex-blowjob-01", "alli-sex-blowjob-02", "alli-sex-blowjob-03")`>><</link>>
<</if>>
<</if>><br>
<<if $alli.footjob is true>>[[Get a Footjob|alli-sex-footjob]]<</if>><br>
<<if $alli.sex is true>><<link "Have Sex with Alli">><<goto `either("alli-sex-sex-01", "alli-sex-sex-02", "alli-sex-sex-03")`>><</link>><</if>><br>
<<if $alli.trust is true>>
<<if $gameDate.getHours() gte 7 and $gameDate.getHours() lt 8>>
[[Bedroom Sex Event|alli-bedroom-event]]
<<elseif $gameDate.getHours() gte 8 and $gameDate.getHours() lt 9>>
[[Kitchen Sex Event|alli-kitchen-event]]
<<elseif $gameDate.getHours() gte 9 and $gameDate.getHours() lt 11>>
[[Bedroom Sex Event|alli-bedroom-event]]
<<elseif $gameDate.getHours() gte 11 and $gameDate.getHours() lt 12>>
[[Living Room Sex Event|alli-living-event]]
<<elseif $gameDate.getHours() gte 12 and $gameDate.getHours() lt 13>>
[[Kitchen Sex Event|alli-kitchen-event]]
<<elseif $gameDate.getHours() gte 16 and $gameDate.getHours() lt 18>>
[[Living Room Sex Event|alli-living-event]]
<<elseif $gameDate.getHours() gte 18 and $gameDate.getHours() lt 19>>
[[Kitchen Sex Event|alli-kitchen-event]]
<<elseif $gameDate.getHours() gte 19 and $gameDate.getHours() lt 22>>
[[Bedroom Sex Event|alli-bedroom-event]]
<</if>>
<</if>><</nobr>>
<<link[[Leave|home-alli-room]]>><<addmins 5>><</link>><div class="centered-image"><img src="resources/characters/lexiluna/lexi-home-01.jpeg" alt="lexi home" width="1000" height="666"/></div>
<<link "Talk to Mom">><<goto `either("lexi-home-talk-01", "lexi-home-talk-02", "lexi-home-talk-03")`>><</link>>
<<link[[Leave|mc-home]]>><<addmins 5>><</link>>
<center><span style="font-size: 80px"><<timed 1s transition>>__Chapter 1__<</timed>></span></center><center><span style="font-size: 40px"><<timed 2s transition>>The Storm<</timed>></span></center>
<center><h4><<timed 4s transition>>[[Continue|home-mc-room]]<</timed>></h4></center>v1.4.1
- Alessa Questline
- Alessa Free-Roam Events
- Alessa Background Events
- Alter format of uploads
- resources folder
- index.html
- Send both to .zip
- Allows upload to itch.io
- New Locations
- Hospital
- Casino
- Used in later chapters
- Activites
- General activities around the game-world
- Alter Mirror Personality
- Change Dialogue to reflect true nature of Mirror entity
- Skin Home Intro Event
- Alessa Home Intro Event
- Kristen Home Intro Event
- Mirror Event
- Discover more about power
VERIFY NECESSITY OF LOCATION IMAGE WITH BACKGROUND IMAGE ON SAME PASSAGE
EXPAND CODE TO INDENT VERSION - USE NOBR
ADD COMMENTS
<!-- This is a Comment -->
Admin Skip Link Storage:
[[Skip Intro|intro-skip]]
<<link[[Go to your Bedroom|home-mc-room]]>><<set $gameDate.setHours(7)>><<set $gameDate.setMinutes(0)>><</link>>You go to the locker room to get ready for your community service. You arrive on time to start at 9.
Today, you and the group are assigned to picking up litter on the estate. You are finished by midday and as such look for other tasks to complete around the community centre until you are able to leave at 5pm.
<<link[[Finish|community-centre]]>><<set $gameDate.setHours(12)>><<set $gameDate.setMinutes(0)>><</link>>You go to the locker room to get ready for your community service. You arrive on time to start at 9.
Today, you and the group are assigned to cleaning up dog droppings from the estate. You are finished by midday and as such look for other tasks to complete around the community centre until you are able to leave at 5pm.
<<link[[Finish|community-centre]]>><<set $gameDate.setHours(12)>><<set $gameDate.setMinutes(0)>><</link>>You go to the locker room to get ready for your community service. You arrive on time to start at 9.
Today, you and the group are assigned to cleaning off the graffiti on the estate. You are finished by midday and as such look for other tasks to complete around the community centre until you are able to leave at 5pm.
<<link[[Finish|community-centre]]>><<set $gameDate.setHours(12)>><<set $gameDate.setMinutes(0)>><</link>>You go to the locker room to get ready for your community service. You arrive on time to start at 9.
Today, you and the group are assigned to cleaning up the community centre. You are finished by midday and as such look for other tasks to complete around the community centre until you are able to leave at 5pm.
<<link[[Finish|community-centre]]>><<set $gameDate.setHours(12)>><<set $gameDate.setMinutes(0)>><</link>><<set $lauren.event += 1>>You are completing tasks around the community centre when you hear voices in the probation worker's office.
You peek your head around the door and see Lauren standing by her desk.
<div class="centered-image"><img src="resources/characters/laurenphillips/lauren-office-01.jpeg" alt="lauren office" width="1000" height="666"/></div>
<<speech "Lauren">>Good morning $player.name.<</speech>>
<<speech "You" "$player.name">>Good morning, I thought you were off sick?<</speech>>
<<speech "Lauren">>After that storm I needed a day to rest. Fortunately I recover quickly.<</speech>>
<<speech "You" "$player.name's Thoughts">>//I wonder if the storm has affected her in any way.//<</speech>>
<<speech "You" "$player.name">>Well it's good to have you back. How are you feeling now then?<</speech>>
<<speech "Lauren">>Better than ever. I haven't had a day off in such a long time so it's done me the world of good.<</speech>>
<<speech "You" "$player.name's Thoughts">>//Either she's good at hiding it or she doesn't have a power.//<</speech>>
<<speech "Lauren">>Whilst I've got you here, I've been meaning to talk to each of you about yesterday. What did you all get up to without me here?<</speech>>
Oh shit! Maybe don't mention the murder that you covered up.
<<speech "You" "$player.name">>The usual, we just got on with our community service.<</speech>>
<<speech "Lauren">>Really? I wouldn't have expected a group of unsupervised community service members to actually do the community service.<</speech>>
<<speech "You" "$player.name's Thoughts">>//She doesn't know about Lucius, the replacement probation worker. Should I tell her?//<</speech>>
Do you want to tell Lauren about Lucius?
[[Yes|lauren-event-01a]]
[[No|lauren-event-01b]]You decided to tell Lauren about Lucius.<<set $event.luciustoldlauren to true>>
<<speech "You" "$player.name">>We were supervised. The council sent a replacement probation worker.<</speech>>
<<speech "Lauren">>Hmm, that's not right. Usually they can't get someboyd on such short notice. What was their name?<</speech>>
<<speech "You" "$player.name">>His name was Lucius, he didn't give us a last name. He gave us our tasks and spent the rest of the day in the office.<</speech>>
<<speech "Lauren">>Lucius? I don't recognise it. I'll check with the council; this situation is quite irregular. You ought to run along now, you have your community service after all.<</speech>>
You leave and head off to the locker room.
Time will tell if you made the right decision.
<<link[[Continue|lauren-hub-community]]>><<addmins 10>><</link>>You decided not to tell Lauren about Lucius.<<set $event.luciustoldlauren to false>>
<<speech "You" "$player.name">>Maybe we're different than the other groups you've had in the past.<</speech>>
<<speech "Lauren">>That remains to be seen, but so far, you have impressed me. Now run along now, you've got your community service to do after all.<</speech>>
You leave and head off to the locker room.
Time will tell if you made the right decision.
<<link[[Continue|lauren-hub-community]]>><<addmins 10>><</link>>
<div class="centered-image"><img src="resources/locations/office.jpg" alt="office" width="1000" height="666"/></div>
You are in the Staff Office.
Characters present at this location:
<<link[img[resources/avatars/lauren-avatar.jpg][lauren-hub-community]]>><<addmins 5>><</link>>
<<link[[Leave|community-centre]]>><<addmins 10>><</link>><div class="centered-image"><img src="resources/characters/laurenphillips/lauren-community-01.jpeg" alt="lauren community" width="1000" height="666"/></div>
<<if $lauren.event is 1>>[[Talk to Lauren|lauren-event-01-choice]]<<else>><<link "Talk to Lauren">><<goto `either("lauren-comm-talk-01", "lauren-comm-talk-02", "lauren-comm-talk-03")`>><</link>><</if>>
<<link[[Leave|office]]>><<addmins 5>><</link>>PLACEHOLDERby Blue PhantomYou turn your attention back to the door. You unlock it, opening it slightly to survey the outside world.
Nothing.
There was no sound, and Lucius was nowhere in sight.
<<speech "Megan">>Anything there?<</speech>>
<<speech "You" "$player.name">>He's disappeared.<</speech>>
<<speech "Skin">>That's problem solved then, isn't it?<</speech>>
<<speech "You" "$player.name">>Probably not.<</speech>>
A thought suddenly occurs to you.
<<speech "You" "$player.name">>Are there any other entrances to the building apart from the main door.<</speech>>
<<speech "Kristen">>There's a side door they have for staff and deliveries.<</speech>>
You turn back to the group, realising that whilst you have all been discussing the powers, Lucius must have entered the building another way.
Your realisation came a little too late however, as Lucius now stood a few feet behind the group, brandishing a large knife.
<div class="centered-image"><img src="resources/events/knife.gif" alt="knife" width="1000"/></div>
<<speech "You" "$player.name">>Everybody, run.<</speech>>
<<link[[Run|intro-21]]>><<addmins 5>><</link>>You are separated from the group as you run from Lucius. You look back to see his eyes glued to you. It seems you are his intended target.
There are only so many places in the Community Centre you can run to. Where do you go?
<<link[[The Mezzanine|intro-21a]]>><<addmins 5>><</link>>
<<link[[The Locker Room|intro-21b]]>><<addmins 5>><</link>>
<<link[[The Storage Room|intro-21c]]>><<addmins 5>><</link>>
<<link[[The Roof|intro-21d]]>><<addmins 5>><</link>>
<<set $event.introhide to "Skin">>You decide to run up to the mezzanine level and try to hide among the various offices. You find a secluded room in the corner and barricade yourself inside. Much to your surprise, Skin is here as well.
<<speech "You" "$player.name">>Fancy meeting you here.<</speech>>
<<speech "Skin">>Yeah we should really stop meeting like this, people might talk.<</speech>>
<<speech "You" "$player.name">>Does people talking bother you?<</speech>>
<<speech "Skin">>No, you?<</speech>>
<<speech "You" "$player.name">>Not in the slightest.<</speech>>
You both hear footsteps coming from the hallway outside.
<<speech "Skin">>Be honest with me, is this a bad time for flirting.<</speech>>
<<speech "You" "$player.name">>Probably, but it's a good moment to have since we're probably about to be violently killed by a man with black eyes.<</speech>>
<<speech "Skin">>It's typical, I discover I can bring graffiti to life and I don't even get the chance to try it out.<</speech>>
<<speech "You" "$player.name">>Do you think your power could help us? Can you paint a weapon or an escape hatch?<</speech>>
<<speech "Skin">>I don't really know how it works but I'd need paint before I could do that.<</speech>>
The footsteps gradually get closer and closer.
<<speech "You" "$player.name">>So we're stuck here with no way out and no way of defending ourselves?<</speech>>
<<speech "Skin">>I think I preferred it when we were flirting.<</speech>>
<<speech "You" "$player.name">>Me too.<</speech>>
The footsteps stop outside the door. For a moment there is silence.
<div class="centered-image"><img src="resources/events/doorbreak.gif" alt="door break" width="500"/></div>
<<speech "Stranger" "Lucius">>Found you.<</speech>>
<<link[[Continue|intro-21a1]]>><<addmins 10>><</link>><<set $event.introhide to "Alessa">>You decide to run to the locker room and try to hide among the various staff rooms. You find a secluded room in the corner and barricade yourself inside. Much to your surprise, Alessa is here as well.
<<speech "You" "$player.name">>Fancy meeting you here.<</speech>>
<<speech "Alessa">>Yeah yeah, what the fuck is going on?<</speech>>
<<speech "You" "$player.name">>The new probation worker is some kind of mental serial killer.<</speech>>
<<speech "Alessa">>How the hell did we end up in this situation? Nothing this interesting ever happens around here.<</speech>>
You both hear footsteps coming from the hallway outside.
<<speech "You" "$player.name">>I get the feeling things are going to be a bit more interesting around here from now on.<</speech>>
<<speech "Alessa">>Even if we survive this, the whole mind reading thing is gonna change a lot around here.<</speech>>
<<speech "You" "$player.name">>At least you know what your power is, mine is a bit of a mystery at the moment.<</speech>>
<<speech "Alessa">>Well, we'll probably die violently long before you get to work it out.<</speech>>
The footsteps gradually get closer and closer.
<<speech "You" "$player.name">>So we're stuck here with no way out and no way of defending ourselves?<</speech>>
<<speech "Alessa">>That's the gist of it.<</speech>>
<<speech "You" "$player.name">>Fuck's sake.<</speech>>
The footsteps stop outside the door. For a moment there is silence.
<div class="centered-image"><img src="resources/events/doorbreak.gif" alt="door break" width="500"/></div>
<<speech "Stranger" "Lucius">>Found you.<</speech>>
<<link[[Continue|intro-21b1]]>><<addmins 10>><</link>><<set $event.introhide to "Kristen">>You decide to run to the storage room and try to hide among the various boxes and cabinets. You find a secluded room in the corner and barricade yourself inside. Much to your surprise, Kristen is here as well.
<<speech "You" "$player.name">>Fancy meeting you here.<</speech>>
<<speech "Kristen">>It seemed like the best hiding place.<</speech>>
<<speech "You" "$player.name">>My thoughts exactly.<</speech>>
<<speech "Kristen">>So what do we do now?<</speech>>
You both hear footsteps coming from the hallway outside.
<<speech "You" "$player.name">>We stay calm and quiet, and hope that he walks past us.<</speech>>
<<speech "Kristen">>Good plan. I'm pretty certain we make it out of here alive anyway.<</speech>>
<<speech "You" "$player.name">>What gives you that idea?<</speech>>
<<speech "Kristen">>My vision of the future. It may not of looked great, but you were there, alive. You can't be alive in the future if you die here.<</speech>>
<<speech "You" "$player.name">>True.<</speech>>
The footsteps gradually get closer and closer.
<<speech "You" "$player.name">>So for the time being, we're stuck here with no way out and no way of defending ourselves?<</speech>>
<<speech "Kristen">>It looks that way, but I think we'll get out.<</speech>>
<<speech "You" "$player.name">>Here's hoping.<</speech>>
The footsteps stop outside the door. For a moment there is silence.
<div class="centered-image"><img src="resources/events/doorbreak.gif" alt="door break" width="500"/></div>
<<speech "Stranger" "Lucius">>Found you.<</speech>>
<<link[[Continue|intro-22c1]]>><<addmins 10>><</link>><<set $event.introhide to "Megan">>You decide to run to the roof and try to hide among the roof garden. You find a secluded shed-like room in the corner and barricade yourself inside. Much to your surprise, Megan is here as well.
<<speech "You" "$player.name">>Fancy meeting you here.<</speech>>
<<speech "Megan">>Ha, funny. What the fuck is going on?<</speech>>
<<speech "You" "$player.name">>The new probation worker is some kind of mental serial killer.<</speech>>
<<speech "Megan">>Why the fuck is a serial killer our probation worker?<</speech>>
You both hear footsteps coming from the roof garden outside.
<<speech "You" "$player.name">>It's just been that kind of day.<</speech>>
<<speech "Megan">>What does that mean?<</speech>>
<<speech "You" "$player.name">>You know, all the weird shit with powers and stuff. Being hunted to death just gets added to the list of fucked up stuff today.<</speech>>
<<speech "Megan">>Why didn't I get a power like you lot?<</speech>>
<<speech "You" "$player.name">>Maybe you dodged a bullet. Since that storm and these powers the world is all fucked up.<</speech>>
<<speech "Megan">>Maybe.<</speech>>
The footsteps gradually get closer and closer.
<<speech "You" "$player.name">>So for the time being, we're stuck here with no way out and no way of defending ourselves?<</speech>>
<<speech "Megan">>For fuck's sake.<</speech>>
<<speech "You" "$player.name">>My thoughts exactly.<</speech>>
The footsteps stop outside the door. For a moment there is silence.
<div class="centered-image"><img src="resources/events/doorbreak.gif" alt="door break" width="500"/></div>
<<speech "Stranger" "Lucius">>Found you.<</speech>>
<<link[[Continue|intro-22d1]]>><<addmins 10>><</link>>Lucius enters the room, each step slow and methodical.
<<speech "Stranger" "Lucius">>Before I kill you, I want you to know: this was not my intention. Well, I had no intention of killing you today, I would have killed you all at some point.<</speech>>
Lucius continues pacing forwards. You and Skin retreat until your back is against the wall.
<<speech "Stranger" "Lucius">>But you've seen too much and you've had a glimpse behind the mask. I cannot allow you to continue living. And besides, nobody will miss a bunch of petty criminals.<</speech>>
Knife in hand, Lucius lunges at you.
The fight itself is a blur. You managed to block his lunge. He punched back. You threw a jab. He blocked it. At some point he thrust the knife forward, and you directed it into his chest.
This, however, didn't seem to phase him, and he shrugged off the stab wound.
<<speech "You" "$player.name">>What the fuck are you?<</speech>>
<<speech "Stranger" "Lucius">>I'm a demon.<</speech>>
<div class="centered-image"><img src="resources/events/iamdemon.gif" alt="i'm a demon" width="1000"/></div>
With fighting out of the picture, you push Lucius off of you, grab the knife with one hand, Skin with the other hand, and run out of the door, heading back to the exit in the <<link[[main lobby|intro-22]]>><<addmins 10>><</link>>.You and $event.introhide return to the main lobby and join up with the rest of the group. During the panic, Skin had picked up a fire extinguisher, and Alessa had grabbed a broken bottle, both with the likely intentions of using them as defensive weapons. You still had the knife from before, still dripping with fresh blood.
<<speech "Megan">>Oh for fuck's sake, we're back where we started.<</speech>>
<<speech "Skin">>We have to fight back. We have to defend ourselves.<</speech>>
<<speech "You" "$player.name">>I already stabbed him in the chest and he shrugged it off like it was nothing.<</speech>>
<<speech "Megan">>We should just leg it.<</speech>>
<<speech "Alessa">>You think he'll stop? He will not stop. Either he kills us...<</speech>>
<<speech "Skin">>Or we kill him.<</speech>>
<<speech "Kristen">>Maybe there's another option?<</speech>>
<<speech "You" "$player.name">>I hate to admit it, but no, there's no time for a discussion. He's going to be here any second. If we're not ready when he gets here, we will die.<</speech>>
<<speech "Megan">>So what's the plan then?<</speech>>
You pause, and pace back and forth, trying to think up some strategy. The four girls all look on and wait; it's up to you to figure out what to do.
After a moment, you have an idea.
<<speech "You" "$player.name">>Here's the plan. The probation worker seems to be going for me specifically, so in this instance, I'm the bait.<</speech>>
You pause and hand the bloodied knife to Megan.
<<speech "You" "$player.name">>You four will separate around and hide. He'll enter the lobby, see me, and go towards me. Once he's close, you all spring out and jump him.<</speech>>
<<speech "Kristen">>An what happens to you in this plan?<</speech>>
<<speech "You" "$player.name">>If all goes well I'll be fine.<</speech>>
<<speech "Alessa">>And if all doesn't go well?<</speech>>
<<speech "You" "$player.name">>//sigh// Then I die.<</speech>>
The group disperses. Each of the girls finds a place to hide whilst you stand in the centre of the room. Hopefully the plan works.
You'll find out soon enough, as Lucius <<link[[enters the room|intro-23]]>><<addmins 10>><</link>>.Lucius enters the room, each step slow and methodical.
<<speech "Stranger" "Lucius">>Before I kill you, I want you to know: this was not my intention. Well, I had no intention of killing you today, I would have killed you all at some point.<</speech>>
Lucius continues pacing forwards. You and Alessa retreat until your back is against the wall.
<<speech "Stranger" "Lucius">>But you've seen too much and you've had a glimpse behind the mask. I cannot allow you to continue living. And besides, nobody will miss a bunch of petty criminals.<</speech>>
Knife in hand, Lucius lunges at you.
The fight itself is a blur. You managed to block his lunge. He punched back. You threw a jab. He blocked it. At some point he thrust the knife forward, and you directed it into his chest.
This, however, didn't seem to phase him, and he shrugged off the stab wound.
<<speech "You" "$player.name">>What the fuck are you?<</speech>>
<<speech "Stranger" "Lucius">>I'm a demon.<</speech>>
<div class="centered-image"><img src="resources/events/iamdemon.gif" alt="i'm a demon" width="1000"/></div>
With fighting out of the picture, you push Lucius off of you, grab the knife with one hand, Alessa with the other hand, and run out of the door, heading back to the exit in the <<link[[main lobby|intro-22]]>><<addmins 10>><</link>>.Lucius enters the room, each step slow and methodical.
<<speech "Stranger" "Lucius">>Before I kill you, I want you to know: this was not my intention. Well, I had no intention of killing you today, I would have killed you all at some point.<</speech>>
Lucius continues pacing forwards. You and Kristen retreat until your back is against the wall.
<<speech "Stranger" "Lucius">>But you've seen too much and you've had a glimpse behind the mask. I cannot allow you to continue living. And besides, nobody will miss a bunch of petty criminals.<</speech>>
Knife in hand, Lucius lunges at you.
The fight itself is a blur. You managed to block his lunge. He punched back. You threw a jab. He blocked it. At some point he thrust the knife forward, and you directed it into his chest.
This, however, didn't seem to phase him, and he shrugged off the stab wound.
<<speech "You" "$player.name">>What the fuck are you?<</speech>>
<<speech "Stranger" "Lucius">>I'm a demon.<</speech>>
<div class="centered-image"><img src="resources/events/iamdemon.gif" alt="i'm a demon" width="1000"/></div>
With fighting out of the picture, you push Lucius off of you, grab the knife with one hand, Kristen with the other hand, and run out of the door, heading back to the exit in the <<link[[main lobby|intro-22]]>><<addmins 10>><</link>>.
Lucius enters the room, each step slow and methodical.
<<speech "Stranger" "Lucius">>Before I kill you, I want you to know: this was not my intention. Well, I had no intention of killing you today, I would have killed you all at some point.<</speech>>
Lucius continues pacing forwards. You and Megan retreat until your back is against the wall.
<<speech "Stranger" "Lucius">>But you've seen too much and you've had a glimpse behind the mask. I cannot allow you to continue living. And besides, nobody will miss a bunch of petty criminals.<</speech>>
Knife in hand, Lucius lunges at you.
The fight itself is a blur. You managed to block his lunge. He punched back. You threw a jab. He blocked it. At some point he thrust the knife forward, and you directed it into his chest.
This, however, didn't seem to phase him, and he shrugged off the stab wound.
<<speech "You" "$player.name">>What the fuck are you?<</speech>>
<<speech "Stranger" "Lucius">>I'm a demon.<</speech>>
<div class="centered-image"><img src="resources/events/iamdemon.gif" alt="i'm a demon" width="1000"/></div>
With fighting out of the picture, you push Lucius off of you, grab the knife with one hand, Megan with the other hand, and run out of the door, heading back to the exit in the <<link[[main lobby|intro-22]]>><<addmins 10>><</link>>.<div class="centered-image"><img src="resources/events/knife.gif" alt="knife" width="1000"/></div>
You put the plan into effect: drawing Lucius to the centre of the room.
<<speech "You" "$player.name">>Well, you wanted me, so here I am.<</speech>>
<<speech "Stranger" "Lucius">>Yes, here you are.<</speech>>
<<speech "You" "$player.name">>The others will be long gone by the time you're finished with me. So I'd call that a success.<</speech>>
<<speech "Stranger" "Lucius">>Very noble of you. You don't think I'll hunt them down after I've finished with you.<</speech>>
Lucius takes a few steps forward.
<<speech "You" "$player.name">>What can I say, I'm a noble guy. And besides, once they're out it's only a matter of time before they reach the police.<</speech>>
<<speech "Stranger" "Lucius">>//haha// I may not be a real probation worker, but even I know that the police won't believe their story.<</speech>>
<<speech "You" "$player.name">>That's true, it's not a very believable story. But then again, that's why CCTV cameras exist. This Community Centre is full of them.<</speech>>
Lucius takes a few more steps forward, now halfway towards you.
<<speech "Stranger" "Lucius">>I think they'll be in for quite a surprise when they find out the camera footage is 'conveniently' corrupted.<</speech>>
<<speech "You" "$player.name">>Still, even without CCTV, my dead body and the body of the woman outside is enough evidence for them to start looking into it.<</speech>>
<<speech "Stranger" "Lucius">>That will be dealt with. With no body left for evidence, there is no evidence that a crime took place.<</speech>>
Lucius moves ever forward. With the girls out of his line of sight, they emerge silently from their hiding places, ready to strike.
<<speech "You" "$player.name">>Shit, I suppose you really did think of everything.<</speech>>
<<speech "Stranger" "Lucius">>That's part of the job.<</speech>>
<<speech "You" "$player.name">>Oh, but there was one part you missed.<</speech>>
<<speech "Stranger" "Lucius">>What did I miss?<</speech>>
The girls are within striking distance. You close the gap between you and Lucius.
<<speech "You" "$player.name">>You didn't consider the possibility that I was lying.<</speech>>
<<link[[Jump Him|intro-24]]>><<addmins 20>><</link>>On command and in sync, you all punch, strike, and lunge at Lucius. Within seconds he drops to the floor.
You and Kristen kick him senselessly.
Skin bashes on his skull with the fire extinguisher.
Alessa and Megan repeatedly stab him in the chest.
After a while, long after his body has stopped moving, you all ease up on the mutilation of Lucius' corpse.
You all stop and catch your breath.
<div class="centered-image"><img src="resources/events/demonexit.gif" alt="demon exit" width="500"/></div>
Lucius' lifeless body convulses, a black smokey storm erupts from his mouth, trailing off into the air vents and out onto the estate.
<<speech "You" "$player.name">>I think we did it.<</speech>>
<<link[[Continue|intro-25]]>><<addmins 5>><</link>>You are all standing over the body of Lucius. His features are almost unrecognisable after the attack. His skull and ribcage has caved in, the skin on his chest is in ribbons, and his body is covered in slashes and bruises.
<<speech "Megan">>Did we just kill the probation worker?<</speech>>
<<speech "You" "$player.name">>It wasn't the probation worker. The smoke and the black eyes aren't normal.<</speech>>
<<speech "Alessa">>So, what do we do with the body? I mean, he was seriously messed up in the head but he's right; the police would never believe our story.<</speech>>
<<speech "You" "$player.name">>Not to mention the fact he ruined the CCTV.<</speech>>
<<speech "Megan">>Maybe he was lying about the CCTV?<</speech>>
<<speech "Alessa">>He wasn't. I could tell with my power.<</speech>>
<<speech "Skin">>Didn't he say he was going to get rid of the bodies. If there's no body no crime or something like that?<</speech>>
<<speech "Alessa">>So, how do we get rid of the bodies?<</speech>>
<<speech "Kristen">>There's a small forest off from the estate. If we bury them out there nobody will ever know.<</speech>>
<<speech "Megan">>I don't like this. It doesn't feel right.<</speech>>
<<speech "Skin">>Oh, so beating him to death felt fine but covering it up doesn't feel right. Because let's be clear: we did this, we killed him.<</speech>>
<<speech "You" "$player.name">>We're all in this together now. This is a secret we all have to keep. Nobody can know the truth.<</speech>>
<<speech "Kristen">>There's some shovels in the storage room. I know where they are so I'll go get them.<</speech>>
After Kristen returns you split into two groups. One group takes the bodies out to the forest to be buried discreetly, whilst the other group cleans the Community Centre of evidence.
You join Kristen and Alessa on the <<link[[forest group|intro-26]]>><<addmins 10>><</link>>.<div class="centered-image"><img src="resources/locations/forest.jpg" alt="forest" width="1000" height="666"/></div>
Kristen was right, the forest outside of the estate was very much off the beaten path. Using some wheelbarrows and garden equipment, you transported the bodies to the forest without raising any suspicions.
It takes a while to dig the holes needed, but after a couple of hours the job is done. By burying both Lucius and the woman in the red dress, you hope that the issue goes away. It may be difficult to keep a secret such as this, but at least you don't have to do it alone.
When they talk about team bonding exercises, they likely didn't have group murder on the agenda, but nonetheless, your little community service group were bound by more than just the petty crimes. Time will tell how this event would shape the future for your group.
After some time, you and the forest group return to the Community Centre. With no probation worker left to supervise you, and since it was long past 5pm, you each go your separate ways, agreeing on the story that today was an ordinairy day on community service, and that the event should never be talked about again.
Some time later, you are <<link[[back in your room|intro-27]]>><<addhours 1>><<addmins 30>><</link>>.<center><h1>Jen & Eric Porn Game</h1></center>
You are Eric. About a year ago you met and fell in love with singel mother Jennifer. After 6 months, you proposed to her, and last month you were married. Now a family, you, Jennifer, and your now step-daughter Piper. However, now that you are all living under one roof, you have found yourself getting attracted to Piper.
In this game you corrupt the two girls, progressing through scenes, until they are both prepared enough to accept you as their master.
<nobr><div class="centered-image"><img src="resources/avatars/jennifer-avatar.jpg" alt="jennifer avatar" width="250" height=250"/></div>
<center>
<h3>[[Jennifer White|intro-28a]]</h3>
<h5>Current Corruption: $porngame.jennifercorrupt</h5>
</center></nobr>
<nobr><div class="centered-image"><img src="resources/avatars/piper-avatar.jpg" alt="piper avatar" width="250" height="250"/></div>
<center>
<h3>[[Piper Perri|intro-28b]]</h3>
<h5>Current Corruption: $porngame.pipercorrupt</h5>
</center></nobr>
<<if $porngame.jennifercorrupt gte 100 and $porngame.pipercorrupt gte 100>>[[Threesome|intro-28c]]<</if>>
<<link[[Exit Game|intro-29]]>><<addhours 1>><</link>><div class="centered-image"><img src="resources/avatars/jennifer-avatar.jpg" alt="jennifer avatar" width="250" height=250"/></div>
<center><h3>Jennifer White</h3></center>
<<link[[Increase Corruption|intro-28a]]>><<set $porngame.jennifercorrupt += 1>><</link>>
Current Corruption: $porngame.jennifercorrupt
Scenes:
<center><h3>Non-Nude:</h3></center>
<img src="resources/characters/jenniferwhite/nonude.jpeg" alt="jennifer no nude" height="500"/>
<<if $porngame.jennifercorrupt gte 5>><center><h3>Nude:</h3><center>
<img src="resources/characters/jenniferwhite/nude01.jpeg" alt="jennifer nude 01" height="500"/>
<img src="resources/characters/jenniferwhite/nude02.jpeg" alt="jennifer nude 02" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 15>><center><h3>Blowjob:</h3>></center>
<img src="resources/characters/jenniferwhite/blowjob01.jpeg" alt="jennifer blowjob 01" height="500"/>
<img src="resources/characters/jenniferwhite/blowjob02.jpeg" alt="jennifer blowjob 02" height="500"/>
<img src="resources/characters/jenniferwhite/blowjob03.jpeg" alt="jennifer blowjob 03" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 30>><center><h3>Over the counter:</h3>></center>
<img src="resources/characters/jenniferwhite/overcounter01.jpeg" alt="jennifer over counter 01" height="500"/>
<img src="resources/characters/jenniferwhite/overcounter02.jpeg" alt="jennifer over counter 02" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 45>><center><h3>On the Chair:</h3>></center>
<img src="resources/characters/jenniferwhite/onchair01.jpeg" alt="jennifer on chair 01" height="500"/>
<img src="resources/characters/jenniferwhite/onchair02.jpeg" alt="jennifer on chair 02" height="500"/>
<img src="resources/characters/jenniferwhite/onchair03.jpeg" alt="jennifer on chair 03" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 60>><center><h3>Cowgirl:</h3>></center>
<img src="resources/characters/jenniferwhite/cowgirl01.jpeg" alt="jennifer cowgirl 01" height="500"/>
<img src="resources/characters/jenniferwhite/cowgirl02.jpeg" alt="jennifer cowgirl 02" height="500"/>
<img src="resources/characters/jenniferwhite/cowgirl03.jpeg" alt="jennifer cowgirl 03" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 75>><center><h3>Reverse Cowgirl:</h3>></center>
<img src="resources/characters/jenniferwhite/reversecowgirl01.jpeg" alt="jennifer reverse cowgirl 01" height="500"/>
<img src="resources/characters/jenniferwhite/reversecowgirl02.jpeg" alt="jennifer reverse cowgirl 02" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 90>><center><h3>Cumshot:</h3>></center>
<img src="resources/characters/jenniferwhite/cumshot01.jpeg" alt="jennifer cumshot 01" height="500"/>
<img src="resources/characters/jenniferwhite/cumshot02.jpeg" alt="jennifer cumshot 02" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 100 and $porngame.pipercorrupt gte 100>>[[Threesome|intro-28c]]<</if>>
[[Back|intro-28]]<div class="centered-image"><img src="resources/avatars/piper-avatar.jpg" alt="piper avatar" width="250" height="250"/></div>
<center><h3>Piper Perri</h3></center>
<<link[[Increase Corruption|intro-28b]]>><<set $porngame.pipercorrupt += 1>><</link>>
Current Corruption: $porngame.pipercorrupt
Scenes:
<center><h3>Non-Nude:</h3></center>
<img src="resources/characters/piperperri/nonude.jpeg" alt="piper no nude" height="500"/>
<<if $porngame.pipercorrupt gte 5>>Nude:
<img src="resources/characters/piperperri/nude01.jpeg" alt="piper nude 01" height="500"/>
<img src="resources/characters/piperperri/nude02.jpeg" alt="piper nude 02" height="500"/>
<img src="resources/characters/piperperri/nude03.jpeg" alt="piper nude 03" height="500"/><</if>>
<<if $porngame.pipercorrupt gte 15>><center><h3>Prone Bone:</h3></center>
<img src="resources/characters/piperperri/prone01.jpeg" alt="piper prone 01" height="500"/>
<img src="resources/characters/piperperri/prone02.jpeg" alt="piper prone 02" height="500"/>
<img src="resources/characters/piperperri/prone03.jpeg" alt="piper prone 03" height="500"/><</if>>
<<if $porngame.pipercorrupt gte 30>><center><h3>Doggystyle:</h3></center>
<img src="resources/characters/piperperri/doggy01.jpeg" alt="piper doggy 01" height="500"/>
<img src="resources/characters/piperperri/doggy02.jpeg" alt="piper doggy 02" height="500"/><</if>>
<<if $porngame.pipercorrupt gte 45>><center><h3>Blowjob:</h3></center>
<img src="resources/characters/piperperri/blowjob01.jpeg" alt="piper blowjob 01" height="500"/>
<img src="resources/characters/piperperri/blowjob02.jpeg" alt="piper blowjob 02" height="500"/><</if>>
<<if $porngame.pipercorrupt gte 60>><center><h3>Cowgirl:</h3></center>
<img src="resources/characters/piperperri/cowgirl01.jpeg" alt="piper cowgirl 01" height="500"/>
<img src="resources/characters/piperperri/cowgirl02.jpeg" alt="piper cowgirl 02" height="500"/><</if>>
<<if $porngame.pipercorrupt gte 75>><center><h3>Reverse Cowgirl:</h3></center>
<img src="resources/characters/piperperri/reversecowgirl01.jpeg" alt="piper reverse cowgirl 01" height="500"/>
<img src="resources/characters/piperperri/reversecowgirl02.jpeg" alt="piper reverse cowgirl 02" height="500"/><</if>>
<<if $porngame.pipercorrupt gte 90>><center><h3>Cumshot:</h3></center>
<img src="resources/characters/piperperri/cumshot01.jpeg" alt="piper cumshot 01" height="500"/>
<img src="resources/characters/piperperri/cumshot02.jpeg" alt="piper cumshot 02" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 100 and $porngame.pipercorrupt gte 100>>[[Threesome|intro-28c]]<</if>>
[[Back|intro-28]]You finish up with Jen & Eric Porn Game and take a break from your computer. And then, lost in thought, you have an epiphany.
<<speech "You" "$player.name's Thoughts">>//Hold up, when I was corrupting the characters in the game, they were more receptive to my advances and overall wore less clothing. This morning, my mom and sisters were both more receptive towards me, and wore less clothing. It almost sounds stupid to say.//<</speech>>
<<speech "You" "$player.name">>My life has become a porn game.<</speech>>
It sounds absurd, but the facts line up. You'd already worked out that the storm had given everybody their powers, so why couldn't your power be that you turned the world into a porn game.
<<speech "You" "$player.name's Thoughts">>//Usually in games like this there's some kind of hint system or nudge in the right direction. If life is truly a porn game, then where is my hint or helper?//<</speech>>
You turn to look into the mirror of your room. In the past, you've often stared blankly at your reflection whilst in deep thought, as if seeing yourself think would make you smarter.
But as you looked out into your own eyes, you began to realise your reflection wasn't quite mirroring your movements, and it almost didn't seem like they were your eyes.
<<speech "You" "$player.name">>What is going on here?<</speech>>
You are quite surprised when your reflection speaks back.
<<speech "Mirror" "Mirror $player.name">>It's just one of those days.<</speech>>
<<link[[Continue|intro-30]]>><<addmins 10>><</link>><img src="resources/characters/jenniferwhite/threesome01.jpg" alt="threesome 01" height="500"/>
<img src="resources/characters/jenniferwhite/threesome02.jpg" alt="threesome 02" height="500"/>
<img src="resources/characters/jenniferwhite/threesome03.jpg" alt="threesome 03" height="500"/>
<img src="resources/characters/jenniferwhite/threesome04.jpg" alt="threesome 04" height="500"/>
<img src="resources/characters/jenniferwhite/threesome05.jpg" alt="threesome 05" height="500"/>
<img src="resources/characters/jenniferwhite/threesome06.jpg" alt="threesome 06" height="500"/>
<img src="resources/characters/jenniferwhite/threesome07.jpg" alt="threesome 07" height="500"/>
<img src="resources/characters/jenniferwhite/threesome08.jpg" alt="threesome 08" height="500"/>
<img src="resources/characters/jenniferwhite/threesome09.jpg" alt="threesome 09" height="500"/>
<img src="resources/characters/jenniferwhite/threesome10.jpg" alt="threesome 10" height="500"/>
<img src="resources/characters/jenniferwhite/threesome11.jpg" alt="threesome 11" height="500"/>
<img src="resources/characters/jenniferwhite/threesome12.jpg" alt="threesome 12" height="500"/>
[[Go Back|intro-28]]<<set $player.mirrormet to true>><<speech "You" "$player.name">>So, I'm hearing voices now? I must be going crazy.<</speech>>
<<speech "Mirror" "Mirror $player.name">>You're not going crazy.<</speech>>
<<speech "You" "$player.name">>I must be crazy, how can I not be?<</speech>>
<<speech "Mirror" "Mirror $player.name">>Crazy people don't think they're going crazy; they think they're getting saner. You're not going crazy. I'm in that head of yours, and all is mostly fine up here.<</speech>>
<<speech "You" "$player.name">>So, you're a voice inside my head. This has to have something to do with the storm right?<</speech>>
<<speech "Mirror" "Mirror $player.name">>You're beginning to put the pieces together, that's good, but I can explain a little more.
You've already worked out that the storm has affected people in different ways. During the storm, pieces of the storm's power imbued itself into people caught by the lightning. Since then, your reality has started to change around you. When that happened, I was created. I am the part of your subconscious that connected with the storms power.<</speech>>
<<speech "You" "$player.name">>So, you know what's going on then?<</speech>>
<<speech "Mirror" "Mirror $player.name">>I only know what you know, but now that I am a separate voice I can assist you in navigating the changes that are happening. For example, what do you think your power is?<</speech>>
<<speech "You" "$player.name">>I think that my experience with porn games has changed my reality and that everything weird since is because of weird game logic.<</speech>>
<<speech "Mirror" "Mirror $player.name">>That sounds about right, but let me ask you this. If your power can change reality around you, can you do it again?<</speech>>
<<speech "You" "$player.name">>Are you saying I might be able to alter things even more?<</speech>>
<<speech "Mirror" "Mirror $player.name">>It's just a theory based on the information we have, remember, I only have access to the information that you know yourself. I can't conjure information from thin air.<</speech>>
<<speech "You" "$player.name">>I need to try this out, but we need more information to work with. I'll look around and speak to the others, see what I can learn.<</speech>>
<<speech "Mirror" "Mirror $player.name">>Go for it. And if you want to speak with me again, just focus on the mirror.<</speech>>
Your reflection goes back to normal as you look away from the mirror. You decide that as a way to strive towards learning all you can, you set yourself a goal. You grab a nearby notepad and jot the goal down: Discover your Power.<<set $player.power to true>>
With that, you go about your day.
<<link[[Continue|intro-chapter1]]>><<addmins 30>><<set $game.introcomplete to true>><</link>><hr>
<<nobr>>
<center><h3>Intro:</h3></center>
<ul>
<<if $event.carolinaintroblowjob is true>>
<li>You received a blowjob from Carolina during the intro.</li>
<<elseif $event.carolinaintroblowjob is false>>
<li>You did not receive a blowjob from Carolina during the intro.</li>
<</if>>
<<if $event.introhide is "Skin">>
<li>You hid from Lucius with Skin.</li>
<<elseif $event.introhide is "Alessa">>
<li>You hid from Lucius with Alessa.</li>
<<elseif $event.introhide is "Kristen">>
<li>You hid from Lucius with Kristen.</li>
<<elseif $event.introhide is "Megan">>
<li>You hid from Lucius with Megan.</li><</if>></ul>
<hr>
<center><h3>Chapter 1:</h3></center>
<ul>
<<if $event.luciustoldlauren is true>>
<li>You told Lauren about Lucius.</li>
<<elseif $event.luciustoldlauren is false>>
<li>You did not tell Lauren about Lucius.</li>
<</if>>
</ul>
<hr>
<center><h3>Character Choices:</h3></center>
<center><h3>Alessa:</h3></center>
<hr>
<center><h3>Skin:</h3></center>
<hr>
<center><h3>Kristen:</h3></center>
<hr>
<center><h3>Megan:</h3></center>
<hr>
<center><h3>Lauren:</h3></center>
<hr>
<center><h3>Lexi:</h3></center>
<hr>
<center><h3>Carolina:</h3></center>
<hr>
<center><h3>Alli:</h3></center>
<ul>
<<if $event.allitoldtruth is true>>
<li>You told Alli the truth about your Power.</li>
<<elseif $event.allitoldtruth is false>>
<li>You hid the truth about your Power from Alli.</li>
<</if>>
<<if $event.allipry is true>>
<li>You pushed Alli for information about her power.</li>
<<elseif $event.allipry is false>>
<li>You did not push Alli for information about her power.</li>
<</if>>
<<if $event.allibond is true>>
<li>You bonded with Alli before fucking her.</li>
<<elseif $event.allibond is false>>
<li>You did not bond with Alli before fucking her.</li>
<</if>>
</ul>
<hr>
<</nobr>>
<<back>>
<div class="centered-image"><img src="resources/characters/mc/mirror-profile.jpg" alt="mirror profile" width="1000" height="562"/></div>
!!!Your reflection
During the storm, remnants of the storms power attached itself to the people caught outside by the lightning. This power manifests in different ways. Some people can read minds, and some people can see the future. For you, in addition to your ability to alter reality, it had a strange side effect. A part of your subconscious has attached itself to the storms power and split off from you.
Accessed through mirrors, your mirror self is able to assist with reviewing information, and can give their own opinion on the matter. However, since they are still a part of you, they only have access to your memory and information you have acquired. Over time, as you gain more knowledge, your mirror self will likely be more helpful in giving advice on current events, and can help you to better understand your own power.
<<back>><div class="centered-image"><img src="resources/events/computer.jpg" alt="computer" width="1000" height="666"/></div>
You start up your PC.
What would you like to do?
[[Jen & Eric Porn Game|porngame]]
<<link[[Turn off PC|home-mc-room]]>><<addmins 5>><</link>><<set $alessa.event +=1>>Alessa is chilling out in the staff canteen. You decide to go over and talk to her.
<div class="centered-image"><img src="resources/characters/alessasavage/alessa-community-01.jpeg" alt="alessa community" width="1000" height="666"/></div>
<<speech "You" "$player.name">>Hey, how are you doing after what happened?<</speech>>
<<speech "Alessa">>Are you referring to the incident with Lucius, or the fact that I can hear what people are thinking?<</speech>>
<<speech "You" "$player.name">>The incident with Lucius. Just figured I ought to check in and make sure you were alright.<</speech>>
<<speech "Alessa">>We did what we had to do. It was us or him, so it may as well have been him.<</speech>>
<<speech "You" "$player.name">>So, you don't feel guilty over what happened.<</speech>>
Alessa pauses for a moment, you think she may be deciding whether or not to trust you.
<<speech "Alessa">>Honestly, I do feel guilty over what we did. But there's so much about the whole situation that I can't begin to understand. I mean, the black eyes, the smoke, all the powers. It's a lot to take in you know.<</speech>>
<<speech "You" "$player.name">>I know what you mean. But at least you know what your power is. Reading minds and being able to tell when people are lying to you, that's cool.<</speech>>
<<speech "Alessa">>Honestly, it's a bit of a nightmare. I can't really control what I hear or even when I hear it. I'll just be walking down the street and people silently judge me, but to me it isn't silent. I'm subjected to the things people say when they're not listening.<</speech>>
<<speech "You" "$player.name">>It must be hard, not being able to tune out from it.<</speech>>
<<speech "Alessa">>It is, but it's because of what I hear all the time. People are a bunch of bastards. I've had people smile and be nice to me, but in their heads it's like they're a different person. I see people for who they truly are, and not who they pretend to be.<</speech>>
<<speech "You" "$player.name">>What's your impression of me?<</speech>>
Alessa looks into your eyes, reading you, judging you. You sense she can see everything going on in your head.
<<speech "Alessa">>It's strange, as if there are two voices in your head. One is very matter of fact, depends on information, and good at working things out. The other, which I think is your main voice, has had a lot change so suddenly and is confused about their place in all of this, but otherwise is somebody trying to do the right thing, and acts more on instinct than the first voice.<</speech>>
<<speech "You" "$player.name">>Wow, that's very deep.<</speech>>
<<speech "Alessa">>I've never tried to look that deeply before. Perhaps in the future I might be able to see more; I only really got a glimpse of what was going on in your head.<</speech>>
<<speech "You" "$player.name">>So, with more practice you think you can do more with your power?<</speech>>
<<speech "Alessa">>Maybe, would you be up for helping with that?<</speech>>
<<speech "You" "$player.name">>Sure.<</speech>>
You and Alessa talk for a little while more about idle topics. You think it's only a matter of time before Alessa learns everything that has happened to you since the storm. After, it's not like you can lie to her.
<<link[[Continue|alessa-hub-community]]>><<addmins 20>><</link>><<set $alessa.event +=1>>Alessa is hanging out in the staff canteen. Since it's only a matter of time before Alessa hears your thoughts and works out what has happened to you since the storm, you decide to come clean and see if she has any input on your situation.
<div class="centered-image"><img src="resources/characters/alessasavage/alessa-community-01.jpeg" alt="alessa community" width="1000" height="666"/></div>
<<speech "You" "$player.name">>Hey Alessa, you free to chat?<</speech>>
<<speech "Alessa">>Sure, what did you want to talk about?<</speech>>
<<speech "You" "$player.name">>Well, I figured before you hear me thinking about it I may as well tell you anyway.<</speech>>
<<speech "Alessa">>Tell me what?<</speech>>
You come clean to Alessa. You explain about how your family are all acting out of character, wearing less clothing and making it no big deal.<<if $event.carolinaintroblowjob is true>> You talk about getting a blowjob from your sister in the bathtub.<</if>> You talk about how everyone on community service has just been acting more provocative, and that both Skin and Megan had already flashed you. You explain that you know that the storm gave you some kind of power, and that your power must have done this, but you don't know how you did it or how it works.
Alessa pauses after your explanation, attempting to process everything.
<<speech "You" "$player.name">>So, what do you think?<</speech>>
<<speech "Alessa">>So, you mentioned how your family has been acting. The weird thing is, is that it isn't weird. At least not to me.<</speech>>
<<speech "You" "$player.name">>What do you mean?<</speech>>
<<speech "Alessa">>It's hard to explain. When I think about other families acting that way, it seems weird and taboo, like incest is totally not alright. But when I think about it with you, I don't know, it almost seems normal.<</speech>>
<<speech "You" "$player.name">>So stuff like incest is weird for other families, but it isn't weird with me.<</speech>>
<<speech "Alessa">>That's right. If a family member tried it on with me, I'd be freaked the fuck out, but if I think about you getting it on with a family member, it's just one of those things. It's normal.<</speech>>
<<speech "You" "$player.name">>That is strange, almost as if the logic of what is and isn't considered normal gets twisted when the same logic is applied to me.<</speech>>
Feeling this to be important information, you jot a note down in your notepad.
"When applied to me, some societal norms do not apply, such as the taboo regarding incest."
You thank Alessa for the chat, feeling relieved that the uncomfortable situation you are with your family is now put at ease since it's considered normal from an outside perspective.
Before you leave however, Alessa has one last thing to say.
<<speech "Alessa">>I don't often do this, but since you opened up and trusted me, I thought I would trust you back with something.<</speech>>
Alessa takes your notebook, writing down her address and phone number.
<<set $alessa.hasaddress to true>>//You can now visit Alessa outside of Community service.//
<<speech "You" "$player.name">>What's this?<</speech>>
<<speech "Alessa">>This is me. My phone number and home address. Feel free to visit anytime, my door is always open to you.<</speech>>
<<speech "You" "$player.name">>Thank you Alessa.<</speech>>
<<speech "Alessa">>No problem $player.name.<</speech>>
With that, you take your leave.
<<link[[Continue|alessa-hub-community]]>><<addmins 20>><</link>><center><h1>Jen & Eric Porn Game</h1></center>
You are Eric. About a year ago you met and fell in love with singel mother Jennifer. After 6 months, you proposed to her, and last month you were married. Now a family, you, Jennifer, and your now step-daughter Piper. However, now that you are all living under one roof, you have found yourself getting attracted to Piper.
In this game you corrupt the two girls, progressing through scenes, until they are both prepared enough to accept you as their master.
<nobr><div class="centered-image"><img src="resources/avatars/jennifer-avatar.jpg" alt="jennifer avatar" width="250" height=250"/></div>
<center>
<h3>[[Jennifer White|porngame01]]</h3>
<h5>Current Corruption: $porngame.jennifercorrupt</h5>
</center></nobr>
<nobr><div class="centered-image"><img src="resources/avatars/piper-avatar.jpg" alt="piper avatar" width="250" height="250"/></div>
<center>
<h3>[[Piper Perri|porngame02]]</h3>
<h5>Current Corruption: $porngame.pipercorrupt</h5>
</center></nobr>
<<if $porngame.jennifercorrupt gte 100 and $porngame.pipercorrupt gte 100>>[[Threesome|porngame03]]<</if>>
<<link[[Exit Game|mc-pc]]>><<addmins 20>><</link>><div class="centered-image"><img src="resources/avatars/jennifer-avatar.jpg" alt="jennifer avatar" width="250" height=250"/></div>
<center><h3>Jennifer White</h3></center>
<<link[[Increase Corruption|porngame01]]>><<set $porngame.jennifercorrupt += 1>><</link>>
Current Corruption: $porngame.jennifercorrupt
Scenes:
<center><h3>Non-Nude:</h3></center>
<img src="resources/characters/jenniferwhite/nonude.jpeg" alt="jennifer no nude" height="500"/>
<<if $porngame.jennifercorrupt gte 5>><center><h3>Nude:</h3><center>
<img src="resources/characters/jenniferwhite/nude01.jpeg" alt="jennifer nude 01" height="500"/>
<img src="resources/characters/jenniferwhite/nude02.jpeg" alt="jennifer nude 02" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 15>><center><h3>Blowjob:</h3>></center>
<img src="resources/characters/jenniferwhite/blowjob01.jpeg" alt="jennifer blowjob 01" height="500"/>
<img src="resources/characters/jenniferwhite/blowjob02.jpeg" alt="jennifer blowjob 02" height="500"/>
<img src="resources/characters/jenniferwhite/blowjob03.jpeg" alt="jennifer blowjob 03" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 30>><center><h3>Over the counter:</h3>></center>
<img src="resources/characters/jenniferwhite/overcounter01.jpeg" alt="jennifer over counter 01" height="500"/>
<img src="resources/characters/jenniferwhite/overcounter02.jpeg" alt="jennifer over counter 02" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 45>><center><h3>On the Chair:</h3>></center>
<img src="resources/characters/jenniferwhite/onchair01.jpeg" alt="jennifer on chair 01" height="500"/>
<img src="resources/characters/jenniferwhite/onchair02.jpeg" alt="jennifer on chair 02" height="500"/>
<img src="resources/characters/jenniferwhite/onchair03.jpeg" alt="jennifer on chair 03" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 60>><center><h3>Cowgirl:</h3>></center>
<img src="resources/characters/jenniferwhite/cowgirl01.jpeg" alt="jennifer cowgirl 01" height="500"/>
<img src="resources/characters/jenniferwhite/cowgirl02.jpeg" alt="jennifer cowgirl 02" height="500"/>
<img src="resources/characters/jenniferwhite/cowgirl03.jpeg" alt="jennifer cowgirl 03" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 75>><center><h3>Reverse Cowgirl:</h3>></center>
<img src="resources/characters/jenniferwhite/reversecowgirl01.jpeg" alt="jennifer reverse cowgirl 01" height="500"/>
<img src="resources/characters/jenniferwhite/reversecowgirl02.jpeg" alt="jennifer reverse cowgirl 02" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 90>><center><h3>Cumshot:</h3>></center>
<img src="resources/characters/jenniferwhite/cumshot01.jpeg" alt="jennifer cumshot 01" height="500"/>
<img src="resources/characters/jenniferwhite/cumshot02.jpeg" alt="jennifer cumshot 02" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 100 and $porngame.pipercorrupt gte 100>>[[Threesome|porngame03]]<</if>>
[[Back|porngame]]<div class="centered-image"><img src="resources/avatars/piper-avatar.jpg" alt="piper avatar" width="250" height="250"/></div>
<center><h3>Piper Perri</h3></center>
<<link[[Increase Corruption|porngame02]]>><<set $porngame.pipercorrupt += 1>><</link>>
Current Corruption: $porngame.pipercorrupt
Scenes:
<center><h3>Non-Nude:</h3></center>
<img src="resources/characters/piperperri/nonude.jpeg" alt="piper no nude" height="500"/>
<<if $porngame.pipercorrupt gte 5>>Nude:
<img src="resources/characters/piperperri/nude01.jpeg" alt="piper nude 01" height="500"/>
<img src="resources/characters/piperperri/nude02.jpeg" alt="piper nude 02" height="500"/>
<img src="resources/characters/piperperri/nude03.jpeg" alt="piper nude 03" height="500"/><</if>>
<<if $porngame.pipercorrupt gte 15>><center><h3>Prone Bone:</h3></center>
<img src="resources/characters/piperperri/prone01.jpeg" alt="piper prone 01" height="500"/>
<img src="resources/characters/piperperri/prone02.jpeg" alt="piper prone 02" height="500"/>
<img src="resources/characters/piperperri/prone03.jpeg" alt="piper prone 03" height="500"/><</if>>
<<if $porngame.pipercorrupt gte 30>><center><h3>Doggystyle:</h3></center>
<img src="resources/characters/piperperri/doggy01.jpeg" alt="piper doggy 01" height="500"/>
<img src="resources/characters/piperperri/doggy02.jpeg" alt="piper doggy 02" height="500"/><</if>>
<<if $porngame.pipercorrupt gte 45>><center><h3>Blowjob:</h3></center>
<img src="resources/characters/piperperri/blowjob01.jpeg" alt="piper blowjob 01" height="500"/>
<img src="resources/characters/piperperri/blowjob02.jpeg" alt="piper blowjob 02" height="500"/><</if>>
<<if $porngame.pipercorrupt gte 60>><center><h3>Cowgirl:</h3></center>
<img src="resources/characters/piperperri/cowgirl01.jpeg" alt="piper cowgirl 01" height="500"/>
<img src="resources/characters/piperperri/cowgirl02.jpeg" alt="piper cowgirl 02" height="500"/><</if>>
<<if $porngame.pipercorrupt gte 75>><center><h3>Reverse Cowgirl:</h3></center>
<img src="resources/characters/piperperri/reversecowgirl01.jpeg" alt="piper reverse cowgirl 01" height="500"/>
<img src="resources/characters/piperperri/reversecowgirl02.jpeg" alt="piper reverse cowgirl 02" height="500"/><</if>>
<<if $porngame.pipercorrupt gte 90>><center><h3>Cumshot:</h3></center>
<img src="resources/characters/piperperri/cumshot01.jpeg" alt="piper cumshot 01" height="500"/>
<img src="resources/characters/piperperri/cumshot02.jpeg" alt="piper cumshot 02" height="500"/><</if>>
<<if $porngame.jennifercorrupt gte 100 and $porngame.pipercorrupt gte 100>>[[Threesome|porngame03]]<</if>>
[[Back|porngame]]<img src="resources/characters/jenniferwhite/threesome01.jpg" alt="threesome 01" height="500"/>
<img src="resources/characters/jenniferwhite/threesome02.jpg" alt="threesome 02" height="500"/>
<img src="resources/characters/jenniferwhite/threesome03.jpg" alt="threesome 03" height="500"/>
<img src="resources/characters/jenniferwhite/threesome04.jpg" alt="threesome 04" height="500"/>
<img src="resources/characters/jenniferwhite/threesome05.jpg" alt="threesome 05" height="500"/>
<img src="resources/characters/jenniferwhite/threesome06.jpg" alt="threesome 06" height="500"/>
<img src="resources/characters/jenniferwhite/threesome07.jpg" alt="threesome 07" height="500"/>
<img src="resources/characters/jenniferwhite/threesome08.jpg" alt="threesome 08" height="500"/>
<img src="resources/characters/jenniferwhite/threesome09.jpg" alt="threesome 09" height="500"/>
<img src="resources/characters/jenniferwhite/threesome10.jpg" alt="threesome 10" height="500"/>
<img src="resources/characters/jenniferwhite/threesome11.jpg" alt="threesome 11" height="500"/>
<img src="resources/characters/jenniferwhite/threesome12.jpg" alt="threesome 12" height="500"/>
[[Go Back|porngame]]<<speech "You" "$player.name">>Hey, heard any interesting thoughts recently?<</speech>>
<<speech "Alessa">>A man at the supermarket was thinking about how he was going to use his power to seduce women.<</speech>>
<<speech "You" "$player.name">>What was his power?<</speech>>
<<speech "Alessa">>He could move milk with his mind.<</speech>>
<<speech "You" "$player.name">>Milk? What a shit power.<</speech>>
<<speech "Alessa">>Bet he could make a mean cup of tea though.<</speech>>
<<link[[Continue|alessa-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, up to much?<</speech>>
<<speech "Alessa">>Not really, just thinking about ways to use my power.<</speech>>
<<speech "You" "$player.name">>What have you come up with so far?<</speech>>
<<speech "Alessa">>I could be a private detective, sussing out the lies from the truth.<</speech>>
<<speech "You" "$player.name">>You a private detective?<</speech>>
<<speech "You" "$player.name's thoughts">>Yeah, right?<</speech>>
<<speech "Alessa">>Whatever you're thinking right now, remember I can hear it, and I disagree.<</speech>>
<<link[[Continue|alessa-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, what number am I thinking right now?<</speech>>
<<speech "You" "$player.name's thoughts">>//69//<</speech>>
<<speech "Alessa">>You know, I'm not some toy that you wind up and let it go.<</speech>>
<<speech "You" "$player.name">>Sorry.<</speech>>
<<speech "Alessa">>Apology accepted. Also, nice choice of number.<</speech>>
<<link[[Continue|alessa-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, heard any interesting thoughts recently?<</speech>>
<<speech "Alessa">>A man at the supermarket was thinking about how he was going to use his power to seduce women.<</speech>>
<<speech "You" "$player.name">>What was his power?<</speech>>
<<speech "Alessa">>He could move milk with his mind.<</speech>>
<<speech "You" "$player.name">>Milk? What a shit power.<</speech>>
<<speech "Alessa">>Bet he could make a mean cup of tea though.<</speech>>
<<link[[Continue|alessa-hub-home]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, up to much?<</speech>>
<<speech "Alessa">>Not really, just thinking about ways to use my power.<</speech>>
<<speech "You" "$player.name">>What have you come up with so far?<</speech>>
<<speech "Alessa">>I could be a private detective, sussing out the lies from the truth.<</speech>>
<<speech "You" "$player.name">>You a private detective?<</speech>>
<<speech "You" "$player.name's thoughts">>//Yeah, right?//<</speech>>
<<speech "Alessa">>Whatever you're thinking right now, remember I can hear it, and I disagree.<</speech>>
<<link[[Continue|alessa-hub-home]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, what number am I thinking right now?<</speech>>
<<speech "You" "$player.name's thoughts">>//69//<</speech>>
<<speech "Alessa">>You know, I'm not some toy that you wind up and let it go.<</speech>>
<<speech "You" "$player.name">>Sorry.<</speech>>
<<speech "Alessa">>Apology accepted. Also, nice choice of number.<</speech>>
<<link[[Continue|alessa-hub-home]]>><<addmins 5>><</link>><<set $skin.event += 1>>Skin is relaxing in on of the meeting rooms on the mezzanine level. You decide to go over and talk to her.
<div class="centered-image"><img src="resources/characters/skindiamond/skin-community-01.jpeg" alt="skin community" width="1000" height="666"/></div>
<<speech "You" "$player.name">>Hey, how are you doing after what happened?<</speech>>
<<speech "Skin">>You mean with that psycho probation worker. It was a bad situation, and what we did was a bad act, but that doesn't make us bad people.<</speech>>
<<speech "You" "$player.name">>So, you don't feel guilty over what happened.<</speech>>
<<speech "Skin">>Look, something important you need to know about me is that I don't sit around wallowing in grief and guilt. We did what we had to do, and now we move on.<</speech>>
<<speech "You" "$player.name">>Don't get me wrong, I agree with you. I we hadn't acted the way we had, he would have killed all of us.<</speech>>
<<speech "Skin">>Exactly.<</speech>>
<<speech "You" "$player.name">>Changing the topic, have you made much progress with your power. You can bring drawings to life or something like that?<</speech>>
<<speech "Skin">>Well, I've only managed small stuff so far, and it only seems to work on graffiti.<</speech>>
<<speech "You" "$player.name">>What kind of stuff have you made so far?<</speech>>
<<speech "Skin">>A few spiders, a toy robot, and two very horny rabbits. Y'know, you should come round my place sometime and I can show you what I've been working on. Here, I'll give you the details.<</speech>>
You pass Skin your notepad and she jots down her address and contact details.
<<set $skin.hasaddress to true>>//You can now visit Alessa outside of Community service.//
<<speech "Skin">>Now you'd better come visit, you hear.<</speech>>
<<speech "You" "$player.name">>If I'm in the area I'll be sure to stop by.<</speech>>
You and Skin talk a little more about idle topics, after which you take your leave.
<<link[[Continue|skin-hub-community]]>><<addmins 20>><</link>><<set $skin.event += 1>>Skin is chilling in one of the meeting rooms on the mezzanine level. You decide to talk to her to see if you can learn more about your own power.
<div class="centered-image"><img src="resources/characters/skindiamond/skin-community-01.jpeg" alt="skin community" width="1000" height="666"/></div>
<<speech "You" "$player.name">>Hey, up to much at the moment.<</speech>>
<<speech "Skin">>Not really, I just come up here for some peace and quiet.<</speech>>
<<speech "You" "$player.name">>Maybe you can help me then. I'm trying to learn more about what my power is exactly.<</speech>>
<<speech "Skin">>Alright then. So what do you know so far.<</speech>>
You explain everything you've found so far. You explain about how your family are all acting out of character, wearing less clothing and making it no big deal.<<if $event.carolinaintroblowjob is true>> You talk about getting a blowjob from your sister in the bathtub.<</if>> You talk about how everyone on community service has just been acting more provocative, and that both Skin and Megan had already flashed you. You explain that you know that the storm gave you some kind of power, and that your power must have twisted reality in some way, but you don't know how you did it or how it works.
<<speech "Skin">>So, basically, your power can allow you to change reality and shit.<</speech>>
<<speech "You" "$player.name">>That seems to be the common theme. The part of me that connected with the storm's power also seemed to work out that I can change things around me.<</speech>>
<<speech "Skin">>What if it's not just the stuff around you though?<</speech>>
<<speech "You" "$player.name">>What do you mean?<</speech>>
<<speech "Skin">>Well when your power started, it gave you the voice in your head, a sort of ability you can use to help deduce shit from the stuff you know. Maybe, once you really understand how your power works, you can get new abilities.<</speech>>
<<speech "You" "$player.name">>I don't quite get what you're saying.<</speech>>
<<speech "Skin">>Think of it this way. With my power, at the moment I can only make small stuff like rabbits come to life, but as I understand more and practice more, I should be able to make bigger stuff. So, logically, as you learn more and practice more, you should be able to do more stuff with your own power.<</speech>>
<<speech "You" "$player.name">>Maybe. If I can alter reality by gaining new abilities, then perhaps I may even be able to gain more powers.<</speech>>
<<speech "Skin">>Just don't take mine, I rather like what I can do.<</speech>>
<<speech "You" "$player.name">>Don't worry, I don't exactly want to steal powers from others, just do the same thing as other people.<</speech>>
Sensing that this information would be important later, you jot down what you've learned in your notepad.
"By changing reality, I should be able to acquire new abilities, and possibly more powers."
After this, you say goodbye to Skin and leave.
<<link[[Continue|skin-hub-community]]>><<addmins 20>><</link>><<speech "You" "$player.name">>Hey, made any more interesting stuff lately?<</speech>>
<<speech "Skin">>I wanted to test to see if what I brought to life had to exist in the real world, and so I decided to paint a dinosaur.<</speech>>
<<speech "You" "$player.name">>Did it work?<</speech>>
<<speech "Skin">>Oh yeah, it worked.<</speech>>
<<speech "You" "$player.name">>Well, what dinosaur did you paint?<</speech>>
<<speech "Skin">>A Velociraptor, only a small one though.<</speech>>
<<speech "You" "$player.name">>A Velociraptor! Aren't they the ones that killed a bunch of people in that dinosaur film?<</speech>>
<<speech "Skin">>Well, I figured I could take on a small one. In the end I didn't have to, it seems my creations can't harm me.<</speech>>
<<speech "You" "$player.name">>That's good to hear.<</speech>>
<<speech "You" "$player.name's thoughts">>//So, among everything else, we now have to deal with the possibility of dinosaurs running around.//<</speech>>
<<link[[Continue|skin-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, what's your impression of all this community service stuff.<</speech>>
<<speech "Skin">>It's just a thing we've got to do, so let's just get it done.<</speech>>
<<speech "You" "$player.name">>So nothing about it gets to you?<</speech>>
<<speech "Skin">>I didn't say that.<</speech>>
<<speech "You" "$player.name">>So, what's the worst part of this for you?<</speech>>
<<speech "Skin">>The fact we've painted over and washed off several of my own paintings around the estate. I put the time and effort into painting it only to have to come along later and wash it off.<</speech>>
<<speech "You" "$player.name">>Have you ever thought about portraying your art in a less illegal way?<</speech>>
Skin gives you a death glare, and you take that as your cue to leave.
<<link[[Continue|skin-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, how are you getting along with the others.<</speech>>
<<speech "Skin">>Megan's a bitch, Kristen doesn't talk much, and Alessa knows everything I'm thinking. It could be worse.<</speech>>
<<speech "You" "$player.name">>How could it be worse?<</speech>>
<<speech "Skin">>For all their flaws, with these powers around it's a lot more interesting around here. Can you imagine having to go about community service as ordinairy people.<</speech>>
<<speech "You" "$player.name">>Now that you mention it, that does seem like life could certainly be a lot shitter.<</speech>>
<<link[[Continue|skin-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, made any more interesting stuff lately?<</speech>>
<<speech "Skin">>I wanted to test to see if what I brought to life had to exist in the real world, and so I decided to paint a dinosaur.<</speech>>
<<speech "You" "$player.name">>Did it work?<</speech>>
<<speech "Skin">>Oh yeah, it worked.<</speech>>
<<speech "You" "$player.name">>Well, what dinosaur did you paint?<</speech>>
<<speech "Skin">>A Velociraptor, only a small one though.<</speech>>
<<speech "You" "$player.name">>A Velociraptor! Aren't they the ones that killed a bunch of people in that dinosaur film?<</speech>>
<<speech "Skin">>Well, I figured I could take on a small one. In the end I didn't have to, it seems my creations can't harm me.<</speech>>
<<speech "You" "$player.name">>That's good to hear.<</speech>>
<<speech "You" "$player.name's thoughts">>//So, among everything else, we now have to deal with the possibility of dinosaurs running around.//<</speech>>
<<link[[Continue|skin-hub-home]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, what's your impression of all this community service stuff.<</speech>>
<<speech "Skin">>It's just a thing we've got to do, so let's just get it done.<</speech>>
<<speech "You" "$player.name">>So nothing about it gets to you?<</speech>>
<<speech "Skin">>I didn't say that.<</speech>>
<<speech "You" "$player.name">>So, what's the worst part of this for you?<</speech>>
<<speech "Skin">>The fact we've painted over and washed off several of my own paintings around the estate. I put the time and effort into painting it only to have to come along later and wash it off.<</speech>>
<<speech "You" "$player.name">>Have you ever thought about portraying your art in a less illegal way?<</speech>>
Skin gives you a death glare, and you take that as your cue to leave.
<<link[[Continue|skin-hub-home]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, how are you getting along with the others.<</speech>>
<<speech "Skin">>Megan's a bitch, Kristen doesn't talk much, and Alessa knows everything I'm thinking. It could be worse.<</speech>>
<<speech "You" "$player.name">>How could it be worse?<</speech>>
<<speech "Skin">>For all their flaws, with these powers around it's a lot more interesting around here. Can you imagine having to go about community service as ordinairy people.<</speech>>
<<speech "You" "$player.name">>Now that you mention it, that does seem like life could certainly be a lot shitter.<</speech>>
<<link[[Continue|skin-hub-home]]>><<addmins 5>><</link>><<set $kristen.event += 1>>Kristen is sorting through the never-ending pile of boxes and junk in the storage rooms. You approach her.
<div class="centered-image"><img src="resources/characters/kristenscott/kristen-community-01.jpeg" alt="kristen community" width="1000" height="750"/></div>
<<speech "You" "$player.name">>Hey, how are you doing after what happened?<</speech>>
<<speech "Kristen">>Oh, hey, I'm fine.<</speech>>
Kristen responds, but turns away to return to her task, you sense something more is going on.
<<speech "You" "$player.name">>Are you sure you're alright? You can talk to me you know.<</speech>>
<<speech "Kristen">>It's just... We killed someone, and everyone else feels fine just moving on like it never happened. But it did happen, and I can't just ignore it like everyone else.<</speech>>
Kristen's voice trails off as she begins to cry. You take her your arms, holding her tight and giving her comfort. She surprises you by suddenly planting a kiss on your lips.
<div class="centered-image"><img src="resources/characters/kristenscott/kristen-03.jpeg" alt="kristen 03" width="1000" height="666"/></div>
<<speech "You" "$player.name">>What was that for?<</speech>>
<<speech "Kristen">>I just wanted to do that. And around you, I feel comfortable, able to take risks. I've never felt this way with anyone. Do you feel the same way?<</speech>>
You answer, but not with words, returning a passionate kiss.
<div class="centered-image"><img src="resources/characters/kristenscott/kristen-04.jpeg" alt="kristen 04" width="1000" height="666"/></div>
<<speech "You" "$player.name">>I do feel the same way. The relationship I have with you is not the same as I have with anyone else. This is different. This is special.<</speech>>
Kristen doesn't respond; she only smiles.
<<speech "You" "$player.name">>Can I get your address and phone number. I want to be able to see you outside of our community service.<</speech>>
<<speech "Kristen">>Sure.<</speech>>
Kristen takes your notepad and writes down her address and contact details.
<<set $kristen.hasaddress to true>>//You can now visit Kristen outside of Community service.//
<<speech "Kristen">>I hope you don't mind but I've got to get back to my task before the probation worker comes to check on me.<</speech>>
<<speech "You" "$player.name">>That's okay. I'll talk to you later.<</speech>>
Kristen turns back to the mountain of boxes. You take your leave.
<<link[[Continue|kristen-hub-community]]>><<addmins 20>><</link>><<set $kristen.event += 1>>Kristen is checking a list of stock against the dozens of cans and bottles in the storage room. Since a unique kind of relationship is forming between the two of you, you decide to come clean regarding what your already know about your power, and how things are changing around you.
<div class="centered-image"><img src="resources/characters/kristenscott/kristen-community-01.jpeg" alt="kristen community" width="1000" height="750"/></div>
<<speech "Kristen">>Hey, did you want something?<</speech>>
<<speech "You" "$player.name">>Hey, do you have a moment to talk.<</speech>>
You tell Kristen about everything you know. You tell Kristen what you have worked out about your power, and the changes it has made. You talk about the way your family is acting.<<if $event.carolinaintroblowjob is true>> You talk about getting a blowjob from your sister in the bathtub.<</if>> You talk about how everyone on community service has just been acting more provocative, and that both Skin and Megan had already flashed you. You expect that sooner or later, the other women in your life will try to escalate things, and that it might cause an issue on the relationship developing between the two of you.
<<speech "You" "$player.name">>Something great is happening with us, and I just feel like something is going to come along and mess it up.<</speech>>
<<speech "Kristen">>You mean, like somebody else trying to sleep with you whilst your seeing me.<</speech>>
<<speech "You" "$player.name">>Exactly.<</speech>>
<<speech "Kristen">>Look, you don't need to worry. It sounds weird, but it's okay for you to see and sleep with multiple people.<</speech>>
<<speech "You" "$player.name">>Wait, you mean you don't have a problem with me sleeping around and dating different women?<</speech>>
<<speech "Kristen">>It's strange, for any other guy I'd say it was wrong, but for you it almost seems normal. And although it's okay for you to do so, know that I would be exclusive to you. I wouldn't date other guys; that doesn't sit right with me.<</speech>>
You feel as though your power has had a more profound effect on people around you than you initially suspected. Knowing this information to be important, you jot it down in your notepad.
"It's normal for me to date or sleep with multiple women, with those women seeing it as a normal thing to do. Additionally, those standards don't apply to the women, and they see me as their exclusive partner."
<<speech "Kristen">>At the end of the day, your relationship with me is not going to be same as one you have with another girl. It's special.<</speech>>
<<speech "You" "$player.name">>This situation is a lot more complicated than I originally thought.<</speech>>
<<speech "Kristen">>You do realise you're speaking to someone who can see the future, right?<</speech>>
<<speech "You" "$player.name">>Speaking of which, what do you see regarding us?<</speech>>
<<speech "Kristen">>I don't really get to choose what I see, but I hope that that special thing we have continues in the future.<</speech>>
<<speech "You" "$player.name">>Me too.<</speech>>
You and Kristen talk idly for a few more minutes before she returns to her task. You excuse yourself and take your leave.
<<link[[Continue|kristen-hub-community]]>><<addmins 20>><</link>><<speech "You" "$player.name">>Hey.<</speech>>
<<speech "Kristen">>Hey, did you need something.<</speech>>
<<speech "You" "$player.name">>No, I just wanted to see you.<</speech>>
<<speech "Kristen">>Oh, really?<</speech>>
<div class="centered-image"><img src="resources/characters/kristenscott/kristen-04.jpeg" alt="kristen 04" width="1000" height="666"/></div>
<<link[[Continue|kristen-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, have you had any more visions of the future?<</speech>>
<<speech "Kristen">>I tend to forget most of them. It's like a dream; it's real when I'm there, but the memory fades when I wake up.<</speech>>
<<speech "You" "$player.name">>I'm sure one day you'll be able to see things more clearly.<</speech>>
<<speech "Kristen">>Maybe, then this power might actually come in handy.<</speech>>
<<link[[Continue|kristen-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>You know what you should do? You should use your power to see next weeks lottery numbers.<</speech>>
<<speech "Kristen">>I don't really get to choose what I see. But I've dreamed of winning the lottery one day.<</speech>>
<<speech "You" "$player.name">>Maybe one day you will. You can run off and be a millionaire.<</speech>>
<<speech "Kristen">>If I do, you're coming with me.<</speech>>
<<link[[Continue|kristen-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey.<</speech>>
<<speech "Kristen">>Hey, did you need something.<</speech>>
<<speech "You" "$player.name">>No, I just wanted to see you.<</speech>>
<<speech "Kristen">>Oh, really?<</speech>>
<div class="centered-image"><img src="resources/characters/kristenscott/kristen-04.jpeg" alt="kristen 04" width="1000" height="666"/></div>
<<link[[Continue|kristen-hub-home]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, have you had any more visions of the future?<</speech>>
<<speech "Kristen">>I tend to forget most of them. It's like a dream; it's real when I'm there, but the memory fades when I wake up.<</speech>>
<<speech "You" "$player.name">>I'm sure one day you'll be able to see things more clearly.<</speech>>
<<speech "Kristen">>Maybe, then this power might actually come in handy.<</speech>>
<<link[[Continue|kristen-hub-home]]>><<addmins 5>><</link>><<speech "You" "$player.name">>You know what you should do? You should use your power to see next weeks lottery numbers.<</speech>>
<<speech "Kristen">>I don't really get to choose what I see. But I've dreamed of winning the lottery one day.<</speech>>
<<speech "You" "$player.name">>Maybe one day you will. You can run off and be a millionaire.<</speech>>
<<speech "Kristen">>If I do, you're coming with me.<</speech>>
<<link[[Continue|kristen-hub-home]]>><<addmins 5>><</link>><<set $megan.event += 1>>Megan is sunbathing on a terrace in the roof garden. You go over to talk to her.
<div class="centered-image"><img src="resources/characters/meganrain/megan-community-01.jpeg" alt="megan community" width="1000" height="666"/></div>
<<speech "You" "$player.name">>Hey, how are you doing after what happened?<</speech>>
<<speech "Megan">>I still think we should've gone to the police, but it seems like nobody listens to me.<</speech>>
<<speech "You" "$player.name">>We do listen, but you know why we couldn't talk to the police.<</speech>>
<<speech "Megan">>It was self defense.<</speech>>
<<speech "You" "$player.name">>Let's review the event. Kristen and I kicked him, repeatedly. Skin hit him on the head, repeatedly. You and Alessa stabbed him, repeatedly.<</speech>>
<<speech "Megan">>So?<</speech>>
<<speech "You" "$player.name">>So, if it was self defense he would've been stabbed once, maybe twice. People acting in self defense don't cave in their attackers skulls with fire extinguishers. We look pretty guilty of murder.<</speech>>
<<speech "Megan">>I see you point.<</speech>>
<<speech "You" "$player.name">>Besides, how would we explain to the police about the black eyes, the smoke, and all our powers.<</speech>>
<<speech "Megan">>//Your// powers you mean? Everybody can do something special except me. I was caught up in that storm as well, so where's my power?<</speech>>
<<speech "You" "$player.name">>Maybe you have one, it just hasn't unlocked yet.<</speech>>
<<speech "Megan">>What do you mean?<</speech>>
<<speech "You" "$player.name">>Well, Kristen said she had the vision of the future immediately after the storm, and Skin said her power started when she was painting. The powers seem to appear at different times, so maybe you have one, it just hasn't appeared yet.<</speech>>
<<speech "Megan">>Either that, or maybe, they just can't improve on perfection.<</speech>>
Megan strikes a pose to emphasise her point.
<div class="centered-image"><img src="resources/characters/meganrain/megan-04.jpeg" alt="megan 04" width="500" height="749"/></div>
<<speech "You" "$player.name">>Alright then, I'll leave you to your sunbathing.<</speech>>
<<speech "Megan">>Sure. Come back and see me sometime.<</speech>>
Megan lies back down on the terrace as you take your leave.
<<link[[Continue|megan-hub-community]]>><<addmins 20>><</link>><<set $megan.event += 1>>Megan is relaxing in the roof garden. You doubt that talking with her will give you any insight on your power, but you decide to talk to her anyway.
<div class="centered-image"><img src="resources/characters/meganrain/megan-community-01.jpeg" alt="megan community" width="1000" height="666"/></div>
<<speech "You" "$player.name">>Hey, up to much?<</speech>>
<<speech "Megan">>No, not really. Up here is the once place the probation worker doesn't go looking for you, so I get some time to myself.<</speech>>
<<speech "You" "$player.name">>Do you mind if I join you?<</speech>>
<<speech "Megan">>Go for it.<</speech>>
You take a seat nearby.
<<speech "You" "$player.name">>By the way, what did you do to get you put on community service?<</speech>>
<<speech "Megan">>It wasn't anything special. I was caught driving on a suspended license.<</speech>>
<<speech "You" "$player.name">>If your license was suspended, why drive anywhere in the first place? Where were you going that was so important?<</speech>>
<<speech "Megan">>I... There was somewhere I needed to be. I'm not going to say any more than that.<</speech>>
<<speech "You" "$player.name">>That's fine, I won't pry further. Well, you're here now, so what do you think of this community service stuff?<</speech>>
<<speech "Megan">>It's basically all bullshit. Other people graffiti, and we clean it up. What's that about?<</speech>>
<<speech "You" "$player.name">>Somebody has to do it.<</speech>>
<<speech "Megan">>And that somebody is us. Other people get paid to do the jobs we do for free.<</speech>>
<<speech "You" "$player.name">>That's why it's a punishment. We didn't do enough to go to prison, but we did enough that we can't be let off scott free, so they put us here to take jobs away from the council.<</speech>>
<<speech "Megan">>Yeah. But I've said it once and I'll say it a thousand times more: It's bullshit.<</speech>>
Not wanting to get involved in an argument, you excuse yourself and take your leave.
<<link[[Continue|megan-hub-community]]>><<addmins 20>><</link>><<speech "You" "$player.name">>Hey, have you had any luck finding out your power?<</speech>>
<<speech "Megan">>No. I hope I don't get a shit one though.<</speech>>
<<speech "You" "$player.name">>How can there be any kind of shit super-power?<</speech>>
<<speech "Megan">>What if you could turn invisible, but only when people couldn't see you?<</speech>>
<<speech "You" "$player.name">>I stand corrected, that would be a shit power.<</speech>>
<<link[[Continue|megan-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, I think Lauren was looking for you earlier.<</speech>>
<<speech "Megan">>Shit, what does she want now?<</speech>>
<<speech "You" "$player.name">>Do you get in trouble with Lauren often?<</speech>>
<<speech "Megan">>Whatever it is, I didn't do it, and if I did, it wasn't my fault.<</speech>>
<<speech "You" "$player.name">>If I see Lauren, I'll be sure to pass on that remark.<</speech>>
Megan sarcastically flips you off as you leave.
<<link[[Continue|megan-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, if you do have a power, what do you hope that it is?<</speech>>
<<speech "Megan">>I'd want something that would make me rich, rather than something boring like being able to fly.<</speech>>
<<speech "You" "$player.name">>You could make money being able to fly, and you'd save money on the commute.<</speech>>
<<speech "Megan">>Yeah, but if I was rich, I wouldn't need to fly, I'd have chauffeurs and shit to drive me around everywhere.<</speech>>
<<link[[Continue|megan-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, have you had any luck finding out your power?<</speech>>
<<speech "Megan">>No. I hope I don't get a shit one though.<</speech>>
<<speech "You" "$player.name">>How can there be any kind of shit super-power?<</speech>>
<<speech "Megan">>What if you could turn invisible, but only when people couldn't see you?<</speech>>
<<speech "You" "$player.name">>I stand corrected, that would be a shit power.<</speech>>
<<link[[Continue|megan-hub-home]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, I think Lauren was looking for you earlier.<</speech>>
<<speech "Megan">>Shit, what does she want now?<</speech>>
<<speech "You" "$player.name">>Do you get in trouble with Lauren often?<</speech>>
<<speech "Megan">>Whatever it is, I didn't do it, and if I did, it wasn't my fault.<</speech>>
<<speech "You" "$player.name">>If I see Lauren, I'll be sure to pass on that remark.<</speech>>
Megan sarcastically flips you off as you leave.
<<link[[Continue|megan-hub-home]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey, if you do have a power, what do you hope that it is?<</speech>>
<<speech "Megan">>I'd want something that would make me rich, rather than something boring like being able to fly.<</speech>>
<<speech "You" "$player.name">>You could make money being able to fly, and you'd save money on the commute.<</speech>>
<<speech "Megan">>Yeah, but if I was rich, I wouldn't need to fly, I'd have chauffeurs and shit to drive me around everywhere.<</speech>>
<<link[[Continue|megan-hub-home]]>><<addmins 5>><</link>>PLAYTEST
Is the game working as intended, have you created any bugs?
If YES, fix bugs, or start work on bug fix update
If NO, all is well
CHANGELOG
Have you updated the in-game changelog?
If NO, update changelog
If YES, all is well
SPELLING/GRAMMAR
Is everything spelled correctly?
If NO, correct spelling
If YES, all is well
LINKS/CODE
Are there any broken links?
If YES, fix links, or start work on bug fix update
If NO, all is well
SOURCE TEXTS
Have you updated the .txt files with new image source details?
If NO, update .txt files with new details
If YES, all is well
ADMIN SKIPS
Have you removed the Admin Skip links on the start page?
If NO, remove the skip links
If YES, all is well
PROMISES
Have you delivered what you promised to deliver?
If NO, what have you missed, can you add it to the game?
If YES, all is well
FILE FORMAT
Does the resources folder contain future content?
Have you renamed the .html to index.html?
Have you sent the resources and .html to .zip, rather than the whole folder?
If NO, what future content is not needed yet, rename the .html, and ensure proper format of the .zip.
If YES, all is wellYou have accessed the Admin Intro Skip Passage.
Here you can select your choices from the intro, before proceeding direct to Chapter 1.
What is your name:<<textbox "$player.name" "John">>
Choices:
Carolina Intro Blowjob (Current: $event.carolinaintroblowjob)<<link [[True|intro-skip]]>><<set $event.carolinaintroblowjob to true>><<set $event.intro0 to true>><</link>>|<<link [[False|intro-skip]]>><<set $event.carolinaintroblowjob to false>><<set $event.intro0 to true>><</link>>
Who did you hide with? (Current: $event.introhide)
<<link [[Skin|intro-skip]]>><<set $event.introhide to "Skin">><</link>>
<<link [[Alessa|intro-skip]]>><<set $event.introhide to "Alessa">><</link>>
<<link [[Kristen|intro-skip]]>><<set $event.introhide to "Kristen">><</link>>
<<link [[Megan|intro-skip]]>><<set $event.introhide to "Megan">><</link>>
<<set $event.introstorm to true>><<set $game.introcomplete to true>><<set $skin.hasmet to true>><<set $skin.power to true>><<set $alessa.hasmet to true>><<set $alessa.power to true>><<set $kristen.hasmet to true>><<set $kristen.power to true>><<set $megan.hasmet to true>><<set $lauren.hasmet to true>><<set $lexi.hasmet to true>><<set $carolina.hasmet to true>><<set $alli.hasmet to true>><<set $player.power to true>><<set $player.mirrormet to true>><<set $player.goal to 1>>
<<link[[Continue|intro-chapter1]]>><<adddays 1>><<set $gameDate.setHours(21)>><<set $gameDate.setMinutes(0)>><</link>><<speech "Lauren">>Hello $player.name, have you seen Megan around?<</speech>>
<<speech "You" "$player.name">>Not since this morning, did you need her for something?<</speech>>
<<speech "Lauren">>Yes, if you see her tell her I was looking for her.<</speech>>
<<speech "You" "$player.name">>Will do.<</speech>>
<<link[[Continue|lauren-hub-community]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hello Ms Phillips, how are you today.<</speech>>
<<speech "Lauren">>I may be your probation worker $player.name, but that doesn't mean we have to be that formal with each other.<</speech>>
<<speech "You" "$player.name">>Okay then, Lauren.<</speech>>
<<speech "Lauren">>See, that's much better.<</speech>>
<<link[[Continue|lauren-hub-community]]>><<addmins 5>><</link>><<speech "Lauren">>Hello $player.name. Was there something you wanted?<</speech>>
<<speech "You" "$player.name">>Not really, just checking in to see if there was anything that needed doing.<</speech>>
<<speech "Lauren">>No specific tasks come to mind, try to find a job to do around the Community Centre.<</speech>>
<<speech "You" "$player.name">>Will do.<</speech>>
<<link[[Continue|lauren-hub-community]]>><<addmins 5>><</link>><<speech "Mom">>Hey sweety, how are you today?<</speech>>
<<speech "You" "$player.name">>Hey Mom, I'm doing alright I guess.<</speech>>
<<speech "Mom">>Okay then, well you know, if you ever need to talk, you know where to find me.<</speech>>
<<speech "You" "$player.name">>I know Mom.<</speech>>
<<link[[Continue|lexi-hub-home]]>><<addmins 5>><</link>><<speech "Mom">>Hey $player.name. I've noticed you and Alli seem to be getting along better lately.<</speech>>
<<speech "You" "$player.name">>Yeah, we decided to give our relationship a fresh start and get to know each other properly again<</speech>>
<<speech "Mom">>That's great to hear. I don't want my children falling out so much they stop talking to each other.<</speech>>
<<speech "You" "$player.name">>You don't have to worry about that, we all get along quite well nowadays.<</speech>>
<<link[[Continue|lexi-hub-home]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey Mom, are you up to much.<</speech>>
<<speech "Mom">>Nothing that can't wait a few minutes. I always have time for you honey.<</speech>>
<<speech "You" "$player.name">>Okay, well I was just checking in to see how you were.<</speech>>
<<speech "Mom">>I'm doing great. Things have changed so much recently, but we're all the better for it.<</speech>>
<<link[[Continue|lexi-hub-home]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey sis, how's college going so far?<</speech>>
<<speech "Carolina">>Great, we just got a new tutor, they know everything about the course.<</speech>>
<<speech "You" "$player.name">>It's good you've got somebody that knowledgable teaching you.<</speech>>
<<speech "Carolina">>She's also quite hot, I'm sure you'd like her too.<</speech>>
<<link[[Continue|carolina-hub-home]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey sis, having fun?<</speech>>
<<speech "Carolina">>Not really, I've got a load of coursework to do for college.<</speech>>
<<speech "You" "$player.name">>Did you want any help?<</speech>>
<<speech "Carolina">>That's okay, but come back later once I've finished so we can hang out.<</speech>>
<<link[[Continue|carolina-hub-home]]>><<addmins 5>><</link>><<speech "Carolina">>Hey bro, do you wanna hang out later?<</speech>>
<<speech "You" "$player.name">>Sure, what did you have in mind?<</speech>>
<<speech "Carolina">>Ultimate Combat. Best of three. Winner takes all.<</speech>>
<<speech "You" "$player.name">>You're on. Bet I win though, as usual.<</speech>>
<<link[[Continue|carolina-hub-home]]>><<addmins 5>><</link>><<speech "Alli">>Hey $player.name. How are you today?<</speech>>
<<speech "You" "$player.name">>Hey Alli, I'm alright I guess. Was there something on your mind?<</speech>>
<<speech "Alli">>I guess I'm still getting used to us talking.<</speech>>
<<speech "You" "$player.name">>We just need to talk more often, then you'll get used to it.<</speech>>
<<speech "Alli">>I'd like that.<</speech>>
<<link[[Continue|mc-home]]>><<addmins 5>><</link>><<speech "You" "$player.name">>Hey Alli, are you doing anything later.<</speech>>
<<speech "Alli">>Nothing set in stone, why?<</speech>>
<<speech "You" "$player.name">>I just thought it'd be good if we hanged out more, now that things are better between us.<</speech>>
<<speech "Alli">>That would be nice.<</speech>>
<<speech "You" "$player.name">>Okay then, I'll pop back later then.<</speech>>
<<link[[Continue|mc-home]]>><<addmins 5>><</link>><<speech "Alli">>Hey bro, can I ask you something?<</speech>>
<<speech "You" "$player.name">>Of course, what did you need?<</speech>>
<<speech "Alli">>Do you really forgive me for what I did, not being supportive and all that.<</speech>>
<<speech "You" "$player.name">>Alli, I've told you this countless times now. You're my sister, so of course I forgive you.<</speech>>
<<link[[Continue|mc-home]]>><<addmins 5>><</link>>You fall into a deep sleep.
<<if $event.carolinaintroblowjob is false>>You dream of the time you walked in on Carolina in the bathroom.
<div class="centered-image"><img src="resources/characters/carolinasweets/carolina-bathroom-02.jpeg" width="500" /></div>
<<elseif $event.carolinaintroblowjob is true>>You dream of the time you received a blowjob from Carolina in the bathroom.
<div class="centered-image"><img src="resources/characters/carolinasweets/carolina-bathroom-08.jpeg" width="1000" /></div>
<</if>>
[[Wake Up|wake-up]]You wake up at your usual time of 7:30am.
You go about your usual routine of showering, getting dressed, and eating breakfast.
After that, you look at your calendar and see what today holds in store for you.
<<nobr>>
<<if $gameDate.getDay() is 1 or $gameDate.getDay() is 2 or $gameDate.getDay() is 3 or $gameDate.getDay() is 4 or $gameDate.getDay() is 5>>
<<link "Go to your Community Service">><<set $gameDate.setHours(9)>><<goto `either("community1", "community2", "community3", "community4")`>><</link>>
<<elseif $gameDate.getDay() is 0 or $gameDate.getDay() is 6>>
[[Enjoy your day off|home-mc-room]]
<</if>>
<</nobr>>This is the basic guide to playing the game, and understanding the core mechanics at work.
<hr>
<h3>Navigation:</h3>
Community Service currently features three "hub" locations:
* The Main Character's Home
* The Estate
* The Community Centre
At these locations, you will see a variety of options of locations within these hubs.
<div class="centered-image"><img src="resources/ui/tutorial-01.jpg" alt="hub location tutorial image" width="1000" height="497"/></div>
Moving around these passages will pass time in the game. Some internal locations may need to be unlocked by interacting with characters, or may only be available at certain times of day.
<div class="centered-image"><img src="resources/ui/tutorial-02.jpg" alt="estate tutorial image" width="1000" height="497"/></div>
In internal locations, characters will be present at certain times of day. Interacting with the character will take you to that character's hub menu.
<hr>
<h3>Character Interaction:</h3>
Each character has a "hub menu", with some having several to accomodate the characters being in multiple locations. These hub menus are dynamic, and will change over the course of the game, whether this be changes to the images on screen, or more options available.
<div class="centered-image"><img src="resources/ui/tutorial-03.jpg" alt="character hub menu tutorial image" width="1000" height="497"/></div>
Regardless of progress in the game, one option will always be available: talking to the character. If there is a new event with that character, you will then play through that event. If there is currently no new content with that character, it will play a random background event.
<div class="centered-image"><img src="resources/ui/tutorial-04.jpg" alt="character backgroun event tutorial image" width="1000" height="493"/></div>
Over time, more events will become available with each character. Each character will have a specific list of events in their respective quest line. Once their quest line is complete, you will have access to the widest array of actions with that character, and new background events.
<hr>
<h3>Time:</h3>
The time of day is important in Community Service. (And took time to perfect in the early days, as some are aware). Community Service is an activity that must be completed every weekday, and lasts from 9am to 5pm. During this time you are limited to the Community Centre, but can interact with the characters present at that time.
Outside of that time, the Community Centre is closed, but other options are available. You can travel freely between the Estate and the Main Character's home, particularly over the weekend, when you don't have to attend Community Service.
It is important to note however, that at this stage in development, the NPCs of the game go to sleep at 10pm. After this time, you can still navigate the map, but it is advised that you return home to sleep to the following day.
As the game progresses, and more options become available, the game world will become more populated, and there will be more to do at specific times of day.<<set $alli.event +=1>>Alli is relaxing in her bedroom. After her change of heart, you decide to make an effort to get to know her better.
<div class="centered-image"><img src="resources/characters/allirae/event01/alli-Event01-01.jpg" alt="alli event01 01" width="1000" height="640"/></div>
<<speech "You" "$player.name">>Hey Alli.<</speech>>
<<speech "Alli">>Oh, hey $player.name, what are you doing here?<</speech>>
<<speech "You" "$player.name">>I came to spend time with you. You wanted a fresh start after all so I figured we should hang out for a bit.<</speech>>
<<speech "Alli">>Yeah, that sounds great.<</speech>>
Alli's tone sounds unenthusiastic and despondent.
<<speech "You" "$player.name">>Are you sure? Because I can come back at another time.<</speech>>
<<speech "Alli">>No, please don't. It's just... I'm having a bit of a bad day.<</speech>>
<<speech "You" "$player.name">>Why, what's wrong?<</speech>>
You both go and sit down on Alli's bed.
<<speech "Alli">>I don't know if I should say.<</speech>>
<<speech "You" "$player.name">>You can trust me. You know that, don't you? Even after everything, you're still my sister and I'm still your brother; we can trust each other.<</speech>>
<<speech "Alli">>I do know that, it's just... complicated.<</speech>>
<<speech "You" "$player.name">>I understand if you don't want to tell me, but whatever it is, it won't do you any good to keep it bottled up inside of you.<</speech>>
Alli pauses for a moment, contemplating all that you've said before responding.
<<speech "Alli">>Do you remember that storm?<</speech>>
How could I forget?
[[Continue|alli-event-01-choice]]<<speech "You" "$player.name">>I know about the storm. What happened to you?<</speech>>
<<speech "Alli">>I was out and about in the park. I had gone for a run and stopped to do some stretches...<</speech>>
<div class="centered-image"><img src="resources/characters/allirae/Event01/alli-event01-02.jpeg" alt="alli event01 02" width="500" height="750"/></div>
<<speech "Alli">>...It was good weather y'know, no sign of rain at all.<</speech>>
<<speech "You" "$player.name">>I remember. The storm appeared to come out of nowhere.<</speech>>
<<speech "Alli">>I saw it quickly cover the estate in darkness. Everything went cold.<</speech>>
<div class="centered-image"><img src="resources/characters/allirae/Event01/alli-event01-03.jpeg" alt="alli event01 03" width="500" height="750"/></div>
<<speech "You" "$player.name">>Let me guess, that's when the lightning struck.<</speech>>
<<speech "Alli">>Knocked me clean off my feet.<</speech>>
<div class="centered-image"><img src="resources/events/lightning.gif" alt="lightning" width="500"/></div>
<<speech "Alli">>After that I ran straight home, you arrived not long after.<</speech>>
<<speech "You" "$player.name">>But that's not the end of the story is it?<</speech>>
<<speech "Alli">>How do you know that?<</speech>>
How much should I say about the things that have changed? I could tell the truth, since we are trying to bond and develop trust between us. Or I could hide the truth about what I've changed, and talk about seeing other people's powers.
[[Tell the whole truth|alli-event-01-TRUTH]]
[[Avoid the whole truth|alli-event-01-LIE]]
<<set $event.allitoldtruth to true>><<set $alli.trustprogress += 1>>You decide to tell Alli the whole truth regarding the storm and the new reality you've created.
<<speech "You" "$player.name">>People caught in the storm, they get affected by it. Changed by it.<</speech>>
<<speech "Alli">>Wait, what did it do to you?<</speech>>
<<speech "You" "$player.name">>When I woke up the following morning, it's like the people around me have changed. Mom, Carolina, even you. You're acting differently. It's like my power has altered reality, into this...<</speech>>
<<speech "Alli">>What do you mean? What has reality changed into?<</speech>>
The moment of truth, let's see how she reacts.
<<speech "You" "$player.name">>It's like a porn game. All three of you are acting more provocatively, wearing less clothing. The girls on community service are acting more flirtatious and are more attracted to me. Even you, it was that morning that you decided to start over.<</speech>>
<<speech "Alli">>Before that morning, I wouldn't have thought of trying to mend things with you. Are you saying that your power did this? Did this to me? Made me act and feel the way I have around you.<</speech>>
<<speech "You" "$player.name">>I didn't have any control over it. It just happened. Things have only gotten weirder since that storm.<</speech>>
Alli doesn't respond as she thinks about what you've revealed.
<<speech "You" "$player.name">>I can understand if you've changed your mind and don't want anything to do with me. Who knows how much of you is the same as before and how much has been changed by my power. If I could change it back I would.<</speech>>
You don't know if you really mean that. This new reality has the making of being a great gift or a terrible curse.
<<speech "Alli">>I don't want to go back to the way I was.<</speech>>
<<speech "You" "$player.name">>Really? But what if your thoughts aren't even your own thoughts? It could just be my power manipulating me.<</speech>>
<<speech "Alli">>Your power may have changed the way I think, but it's still me having those thoughts. These past few weeks, I've had so much pent up anger and frustration. At any moment I felt like exploding, and I knew that all hell would break loose. But ever since the storm, I've felt better than ever.<</speech>>
<<speech "You" "$player.name">>So, you're not at all disturbed by the idea that the world is closer to a porn game than reality?<</speech>>
<<speech "Alli">>Maybe it should, but it doesn't. All I know is I'm happier than I was before. Does it disturb you? The idea of girls, even your own family, being attracted to you? Wanting to be with you.<</speech>>
Alli tugs on her t-shirt, letting her breasts free, a feast for your eyes.<<set $alli.trustprogress += 1>>
<div class="centered-image"><img src="resources/characters/allirae/Event01/alli-event01-04.jpg" alt="alli event01 04" width="1000" height="640"/></div>
<<speech "You" "$player.name">>I suppose when you put it that way, I suppose it isn't too bad.<</speech>>
You and Alli close in on each other and lock in a tender kiss.
<div class="centered-image"><img src="resources/characters/allirae/event01/alli-event01-05.jpg" alt="alli event01 05" width="1000" height="666"/></div>
<<speech "Alli">>If we had more time, perhaps we could go further.<</speech>>
<<speech "You" "$player.name">>What do you mean, we've got all the time in the world.<</speech>>
<<speech "Alli">>No, I've got work to do. We'll have to pick this up another time.<</speech>>
<<speech "You" "$player.name">>You'd better not make a habit out of teasing me.<</speech>>
<<speech "Alli">>Don't worry, I'll make it up to you.<</speech>>
You give Alli one last peck on the lips before getting up to leave her to her work. You think back on your choice to reveal the whole truth about your ability to Alli.
Time will tell if you made the right decision.
<<link[[Continue|mc-home]]>><<addmins 30>><</link>><<set $event.allitoldtruth to false>>You decide not to tell Alli the whole truth, instead focusing your response on the abilites of others.
<<speech "You" "$player.name">>People caught in the storm, they get affected by it. Changed by it. I've seen it at my community service, nearly everyone has been affected.<</speech>>
<<speech "Alli">>What do you mean affected?<</speech>>
<<speech "You" "$player.name">>Well one of them can read minds, another can bring her art to life, and the other had a vision of the future.<</speech>>
<<speech "Alli">>A vision of the future?<</speech>>
<<speech "You" "$player.name">>Yeah, apparently in the future she said it was like hell on earth.<</speech>>
Alli appears to shudder at the mention of the vision of the future. You feel you need to move the conversation past it.
<<speech "You" "$player.name">>Speaking of the storm, did it do something to you?<</speech>>
<<speech "Alli">>I... I can't really talk about it.<</speech>>
Alli is visibly agitated, shaking uncontrollably. You take her in your arms in a tight hug to try and calm her down.
<<speech "You" "$player.name">>I can tell it's not a great subject, so I won't pry anymore right now. But if you ever want to talk about it, I'm here for you.<</speech>>
<<speech "Alli">>I want to tell you, but I can't talk about it. It's too dangerous.<</speech>>
<<speech "You" "$player.name">>I can protect you, if that's what you're worried about.<</speech>>
<<speech "Alli">>That's not what I mean; it's too dangerous for you if I say anymore.<</speech>>
You don't know how to respond, so you just stay silent. You hold Alli in your arms a little longer, and she seems to relax after a few minutes.
<<speech "Alli">>I would love for us to just stay like this, but I've got work I need to do.<</speech>>
<<speech "You" "$player.name">>Okay then, well I'll come and check in on you later.<</speech>>
You leave Alli to her work. It seems that her power causes her a great deal of stress, and you make a mental note not to mention it in future. You think back on your choice to keep the truth about your power from her.
Time will tell if you made the right decision.
<<link[[Continue|mc-home]]>><<addmins 30>><</link>><<set $alli.event +=1>><<set $event.allipry to false>>Things went well with Alli last time you spoke, and she promised to make it up to you for cutting things short last time. As you enter her room, Alli appears to be waiting for you.
<div class="centered-image"><img src="resources/characters/allirae/Event02/alli-event02-01.jpeg" alt="alli event02 01" width="1000" height="666"/></div>
<<speech "Alli">>Hey $player.name, like what you see?<</speech>>
<<speech "You" "$player.name">>Very much so.<</speech>>
<<speech "Alli">>After our last talk, I wanted let loose a little and just chill out. Clothes tend to get in the way of that.<</speech>>
<<speech "You" "$player.name">>Well, you did say you'd make it up to me.<</speech>>
<<speech "Alli">>Oh yes, and I intend to.<</speech>>
<<set $alli.trustprogress += 1>>Alli smiles, and seductively pulls her bra to one side.
<div class="centered-image"><img src="resources/characters/allirae/Event02/alli-event02-02.jpeg" alt="alli event02 02" width="500" height="750"/></div>
Shortly after her top is off completely.
<div class="centered-image"><img src="resources/characters/allirae/Event02/alli-event02-03.jpeg" alt="alli event02 03" width="500" height="750"/></div>
You stare intently, feasting your eyes on her figure.
<div class="centered-image"><img src="resources/characters/allirae/Event02/alli-event02-04.jpeg" alt="alli event02 04" width="500" height="750"/></div>
Alli pauses as she removes her panties.
<<speech "You" "$player.name">>So, what happens now?<</speech>>
Alli motions you to approach her.
You take a seat on the sofa.
[[Continue|alli-event-02-continue]]<<set $alli.event +=1>>Alli seemed quite disturbed after you last conversation, so you decide to return to check up on her. You find Alli in her room, wearing only her underwear.
<div class="centered-image"><img src="resources/characters/allirae/event02/alli-Event02-01.jpeg" alt="alli event02 01" width="1000" height="666"/></div>
<<speech "You" "$player.name">>Hey Alli, just thought I'd check in on you after our last conversation.<</speech>>
<<speech "Alli">>Thanks, I feel much better now. I was having a bad day the last time we spoke, but you helped relax me.<</speech>>
<<speech "You" "$player.name">>Is that the reason for your change in wardrobe? You're more relaxed now?<</speech>>
<<speech "Alli">>Definitely. In the past I've been holding on to a lot of anger and pent up emotions. Now, I've decided to take a step back, chill out, and have some time to myself.<</speech>>
<<speech "You" "$player.name">>That's good to hear. Mind if I join you.<</speech>>
<<speech "Alli">>Be my guest.<</speech>>
You take a seat on the sofa next to Alli, and instinctively put your arm around her. At your touch, the tension is released from her body, as if your presence is a comfort to her.
<<speech "Alli">>It feels good to be held by you.<</speech>>
<<speech "You" "$player.name">>It feels good to hold you.<</speech>>
<<speech "Alli">>What if we just stayed like this? Hover in this moment forever.<</speech>>
<<speech "You" "$player.name">>I'd like that.<</speech>>
You spend a few more minutes holding each other. Over time, the holding starts to turn to feeling, and before long you're both feeling caressing each other gently.<<set $alli.trustprogress += 1>>
<<speech "Alli">>I don't know if I thanked you, for before.<</speech>>
<<speech "You" "$player.name">>It doesn't matter. That's what brothers do for their sisters.<</speech>>
<<speech "Alli">>It matters to me. I've not felt this comfortable with somebody in a long time. So thank you, for being there for me.<</speech>>
<<speech "You" "$player.name">>I'll always be there for you.<</speech>>
You spend some more time, caressing each other in silence. Your thoughts turn to your last conversation concerning Alli's power. Alli told you her power was dangerous, and that she can't talk about it, but you suspect that you need to know what it is in order to keep her safe.
In her relaxed state, you suspect she may be more open to revealing more information. But on the other hand, you are enjoying a nice moment, and talking about something that upsets her may spoil it slightly.
[[Ask about Alli's Power|alli-event-02-PRY]]
[[Continue the moment|alli-event-02-continue]]This is a page of general hints and tips for playing Community Service.
Character specific hints regarding events can be found in the [[Notepad]].
* NPCs go to sleep at 10pm
* NPCs move around the map, check their profile to see their timetable (Note: Only characters with quest-line updates will reflect this change)
* If you keep seeing the same background events, it's likely that character currently has no new content
* Each character has their own quest line of events. How do you access these events? Talk to the characters.
* Your relationships with different people will evolve differently. You may have a physical connection with one person, but a more emotional connection with another.
* Different choices will have different outcomes in future content, be sure to choose wisely.
* If an option hasn't been unlocked yet, there may be a story-related reason behind it.
* Check the changelog for information about how much content there is for a specific character.
* Jen & Eric porn games can be quick fix for sex content
* Feedback is important. If something is great about this game, or if something is broken. Tell us, so that we can improve.
<<back>>You and Alli are sat on the sofa, caressing each other.<<set $alli.trustprogress += 1>>
After a few minutes, Alli takes the initiative, and releases your cock from you trousers. You are taken aback by this turn of events. Unprompted, Alli starts sucking you off.
<div class="centered-image"><img src="resources/characters/allirae/Event02/alli-event02-05.jpeg" alt="alli event02 05" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event02/alli-event02-blowjob.webm" width="1000" autoplay loop muted/></div>
After some time, Alli decides to mix things up, and starts getting you off with her feet.
<div class="centered-image"><img src="resources/characters/allirae/Event02/alli-event02-06.jpeg" alt="alli event02 06" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event02/alli-event02-footjob.webm" width="1000" autoplay loop muted /></div>
You feel yourself getting close. You decide to warn Alli.
<<speech "You" "$player.name">>Alli, I'm gonna cum.<</speech>>
<<speech "Alli">>Just let it go. Cover my feet.<</speech>>
You waste not time, and let loose.
<div class="centered-video"><video src="resources/characters/allirae/Event02/alli-event02-cumshot.webm" width="1000" autoplay loop muted /></div>
<div class="centered-image"><img src="resources/characters/allirae/Event02/alli-event02-07.jpeg" alt="alli event02 07" width="1000" height="666"/></div>
<<speech "You" "$player.name">>We need to do this more often.<</speech>>
<<speech "Alli">>We can do that anytime you want.<</speech>>
<<set $alli.footjob to true>><<set $alli.blowjob to true>>//New actions have been unlocked in Free-Roam.//
After spending a few mintues with Alli in post orgasm bliss, you leave the room, remarking that you'll be back to see Alli later.
<<link[[Continue|mc-home]]>><<addmins 30>><</link>><<set $event.allipry to true>>You decide to take advantage of the moment and ask Alli about her Power.
<<speech "You" "$player.name">>Alli, about our last conversation. I want to be able to help you, and protect you.<</speech>>
<<speech "Alli">>I know that you will. I trust you $player.name.<</speech>>
<<speech "You" "$player.name">>And I trust you too. But in order to protect you, I need to know about the dangers that would look to hurt you.<</speech>>
Alli tenses at the touch, but nonetheless lets you speak.
<<speech "You" "$player.name">>I know you said that you can't talk about your Power, and that it's too dangerous for me to know. But if I knew more, I can help you more, and I can protect you.<</speech>>
Alli pulls back from your arms, visibly worried. She stands up and starts pacing the room as she responds.
<<speech "Alli">>I told you, I can't talk about it.<</speech>>
<<speech "You" "$player.name">>I know you don't want to, but I can help. We trust each other don't we, so why not trust me with this.<</speech>>
<<speech "Alli">>You don't understand! It's not that I don't //want// to talk about it, I //can't// talk about it.<</speech>>
<<speech "You" "$player.name">>But what does that mean exactly?<</speech>>
<<speech "Alli">>Listen to me, please don't ask me about it. Please don't make me think about it. You have no idea how dangerous it is.<</speech>>
<<speech "You" "$player.name">>So help me understand.<</speech>>
You stand up to join Alli, attempting to wrap your arms around her in a hug, but she shrugs you off.
<<speech "Alli">>No. I can't say anything, and right now, I need you to leave.<</speech>>
You stay silent, stunned at the sudden change that's occurred, and stand still in place.
<<speech "Alli">>Did you not hear me $player.name? You need to leave, right now.<</speech>>
Alli rushes you out of the room, never giving you the chance to respond. Shortly after you are in the living room.<<set $alli.trustprogress -= 2>><<set $alli.templock to true>>
Time will tell if you made the right decision.
<<link[[Continue|mc-home]]>><<addmins 30>><</link>><<set $alli.templock to false>>After upsetting Alli during your last conversation, you resolve to apologise for your action. Clearly, something about her Power scares her, and she will adamantly refuse to divulge any details to you.
You return to Alli after a short while has passed. She seems to have calmed down, and you find her in the same outfit as before.
<div class="centered-image"><img src="resources/characters/allirae/Event02/alli-event02-01.jpeg" alt="alli event02 01" width="1000" height="666"/></div>
<<speech "Alli">>$player.name, you're back?<</speech>>
<<speech "You" "$player.name">>Yes, I wanted to apologise for last time. I didn't understand the situation correctly.<</speech>>
<<speech "Alli">>That's okay. I know my reaction was a little over the top. Maybe we could just forget about all of that?<</speech>>
<<speech "You" "$player.name">>That sound's like a good idea. If I'm not mistaken, we were in the middle of a great moment.<</speech>>
<<speech "Alli">>Yes, we were.<</speech>>
<<speech "You" "$player.name">>Maybe we should pick up where we left off?<</speech>>
Alli nods. You approach and sit beside her on the sofa. You are unsure if she'll let you put your arms around her like last time, given the intensity of your last conversation.
After a few awkward minutes, Alli begins to nudge her head against you, and you take it as a cue to get more comfortable with her.
<<speech "Alli">>This is better.<</speech>>
<<speech "You" "$player.name">>Well, you did say you wanted to hover in this moment forever.<</speech>>
<<speech "Alli">>Yes, nowadays, when I'm near you, I just feel so comfortable. I feel relaxed... and happy.<</speech>>
<<speech "You" "$player.name">>I feel it too.<</speech>>
You both spend some time together, relaxing in each others arms. You slowly return to the same way as before, lightly caressing each other.
[[Continue|alli-event-02-continue]]<<set $alli.event +=1>>You return to Alli, looking for some more sibling bonding time.
<div class="centered-image"><img src="resources/characters/allirae/Event03/alli-event03-01.jpeg" alt="alli event03 01" width="1000" height="666"/></div>
<<speech "You" "$player.name">>Hey Alli, what are you up to?<</speech>>
<<speech "Alli">>Watching some TV. Want to join me?<</speech>>
<<speech "You" "$player.name">>Sure, what are you watching?<</speech>>
<<speech "Alli">>That new Jen & Eric film that came out.<</speech>>
<<speech "You" "$player.name">>I didn't know you were into that kind of film.<</speech>>
<<speech "Alli">>There's a lot you don't know about me.<</speech>>
You take a seat on the sofa next to Alli. She puts on the film, which you recognise as being based on the Jen & Eric series of games.
<div class="centered-video"><video src="resources/characters/jenniferwhite/movie.webm" width="1000" autoplay loop muted /></div>
The movie gets raunchier and raunchier, and you spot that Alli has started to impulsively undress, feeling herself up as she does.
<div class="centered-image"><img src="resources/characters/allirae/Event03/alli-event03-02.jpeg" alt="alli event03 02" width="500" height="750"/></div>
In response, you begin to undress as well.
<<speech "You" "$player.name">>Care to help me out over here?<</speech>>
Alli leans over and takes you cock in her mouth.
<div class="centered-image"><img src="resources/characters/allirae/Event02/alli-event02-05.jpeg" alt="alli event02 05" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event02/alli-event02-blowjob.webm" width="1000" autoplay loop muted /></div>
After a few minutes, Alli decides to repeat last time and begins jerking you off with her feet.
<div class="centered-video"><video src="resources/characters/allirae/Event02/alli-event02-footjob.webm" width="1000" autoplay loop muted /></div>
<div class="centered-image"><img src="resources/characters/allirae/Event02/alli-event02-06.jpeg" alt="alli event02 06" width="1000" height="666"/></div>
This continues for some time, until Alli abruptly stops.
[[Continue|alli-event-03b]]<<speech "You" "$player.name">>Is there something wrong?<</speech>>
<<speech "Alli">>No, nothing's wrong.<</speech>>
<<speech "You" "$player.name">>What is it then?<</speech>>
<<speech "Alli">>Close you eyes and lie down for me.<</speech>>
You do as Alli asks, lying flat along the sofa, eyes closed.
You feel Alli climb on top of you, lowering herself onto your cock. She holds there for a brief moment, getting herself comfortable.
<<set $alli.trustprogress += 1>><<speech "Alli">>You can open your eyes now.<</speech>>
<div class="centered-video"><video src="resources/characters/allirae/Event03/alli-event03-cowgirl01.webm" width="1000" autoplay loop muted /></div>
<<speech "Alli">>Like what you see?<</speech>>
You pause a moment before responding, enjoying the new sensation.
<<speech "You" "$player.name">>We should have done this sooner.<</speech>>
<<speech "Alli">>I agree.<</speech>>
You continue fucking Alli.
<div class="centered-video"><video src="resources/characters/allirae/Event03/alli-event03-cowgirl02.webm" width="1000" autoplay loop muted /></div>
Over the course of the next hour, you and Alli enjoy each other in several different positions.
<center><h3>Doggy</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event03/alli-event03-03.jpeg" alt="alli event03 03" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event03/alli-event03-doggy.webm" width="1000" autoplay loop muted /></div>
<center><h3>Sidefuck</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event03/alli-event03-04.jpeg" alt="alli event03 04" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event03/alli-event03-sidefuck.webm" width="1000" autoplay loop muted /></div>
<center><h3>Over the Sofa</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/Event03/alli-event03-oversofa.webm" width="1000" autoplay loop muted /></div>
<center><h3>Missionary</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/Event03/alli-event03-missionary.webm" width="1000" autoplay loop muted /></div>
<div class="centered-image"><img src="resources/characters/allirae/Event03/alli-event03-05.jpeg" alt="alli event03 05" width="1000" height="666"/></div>
Getting close to cumming, you pull out of Alli and release your load all over her feet.
<div class="centered-video"><video src="resources/characters/allirae/Event03/alli-event03-cumshot.webm" width="1000" autoplay loop muted /></div>
[[Continue|alli-event-03c]]You and Alli relax. Exhausted after your intense fuck session, you both hover in post orgasm bliss.
<<speech "You" "$player.name">>That was...<</speech>>
<<speech "Alli">>That was amazing!<</speech>>
<<speech "You" "$player.name">>Yes it was. You do realise that we're gonna do that all the time from now on.<</speech>>
<<speech "Alli">>Oh, I know.<</speech>>
<<speech "You" "$player.name">>How do you think Mom and Carolina will react though, when they see us like this.<</speech>>
<<speech "Alli">>Can we just keep it a secret? Not forever, just for a little while.<</speech>>
<<speech "You" "$player.name">>Yeah sure, of course we can keep it a secret, as long as we keep going.<</speech>>
<<speech "Alli">>I have no intention of stopping.<</speech>>
You and Alli continue chatting for a while, idly talking about the sex before moving on to other topics.
After a while, you leave Alli to clean up whilst you head back to your room.
<<link[[Continue|home-mc-room]]>><<addmins 90>><</link>><<set $alli.event +=1>>You return to Alli, looking for more sibling bonding time.
<div class="centered-image"><img src="resources/characters/allirae/Event04/alli-event04-01.jpeg" alt="alli event04 01" width="500" height="750"/></div>
<<speech "You" "$player.name">>Hey Alli, up to much at the moment?<</speech>>
<<speech "Alli">>Just waiting for you.<</speech>>
<<speech "You" "$player.name">>You don't waste any time.<</speech>>
<<speech "Alli">>Last time was amazing. I want more of it.<</speech>>
<div class="centered-image"><img src="resources/characters/allirae/Event04/alli-event04-02.jpeg" alt="alli event04 02" width="500" height="750"/></div>
<<speech "Alli">>But if you wanted to talk a little beforehand, I'd be happy to do that as well.<</speech>>
What do you want to do? Talk with Alli a little or forget talking and go straight to fucking.
<<link[[Talk|alli-event-04-BOND]]>><<$event.allibond to true>><</link>>
<<link[[Fuck|alli-event-04-FUCK]]>><<$event.allibond to false>><</link>>You decide to talk to Alli first.
<<speech "You" "$player.name">>How about we chat a little first, we need to make up for all the lost conversations over the years.<</speech>>
<<speech "Alli">>Sure, did you want to talk about something specific.<</speech>>
You take a seat next to Alli.
<<speech "You" "$player.name">>Well, why don't we talk about us. I mean, how do you think things are at the moment.<</speech>>
<<speech "Alli">>Well, things couldn't be better. I've felt far better since that storm rolled through than I ever did before. And I have you to thank for that.<</speech>>
<<speech "You" "$player.name">>I can't take all the credit, you also helped make this relationship what it is.<</speech>>
<<speech "Alli">>But if it wasn't for you, I wouldn't have found the comfort I needed, the love I hope I deserve. I dread to think what could've happened if we hadn't got together.<</speech>>
<<speech "You" "$player.name">>I know what we've got going is great but if we didn't it's not like everything would be awful. It would hardly have been the end of the world if we didn't hook up.<</speech>>
Your response seems to unsettle Alli, and she begins to shake. You put your arms around her to try to calm her.
<<speech "You" "$player.name">>Is something wrong?<</speech>>
Alli takes a deep breath and sighs before responding.
<<speech "Alli">>There's something I need to tell you.<</speech>>
[[Continue|alli-event-04-continue]]<<set $alli.trustprogress += 1>>Alli gets down on her knees as you release your cock.
<div class="centered-image"><img src="resources/characters/allirae/Event04/alli-event04-03.jpeg" alt="alli event04 03" width="500" height="750"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-blowjob.webm" width="1000" autoplay loop muted/></div>
Alli spends the next few minutes sucking your cock.
<<speech "Alli">>Fuck me $player.name<</speech>>
<center><h3>Cowgirl</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event04/alli-event04-04.jpeg" alt="alli event04 04" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-cowgirl.webm" width="1000" autoplay loop muted/></div>
<center><h3>Missionary</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-missionary01.webm" width="1000" autoplay loop muted/></div>
<center><h3>Sidefuck</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event04/alli-event04-05.jpeg" alt="alli event04 05" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-sidefuck.webm" width="1000" autoplay loop muted/></div>
<center><h3>Reverse Cowgirl</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event04/alli-event04-06.jpeg" alt="alli event04 06" width="500" height="750"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-reversecowgirl.webm" width="1000" autoplay loop muted/></div>
<center><h3>Doggy</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event04/alli-event04-07.jpeg" alt="alli event04 07" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-doggy.webm" width="1000" autoplay loop muted/></div>
<center><h3>Missionary Again</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-missionary02.webm" width="1000" autoplay loop muted/></div>
<<speech "You" "$player.name">>I'm going to cum soon.<</speech>>
<<speech "Alli">>Cum inside me.<</speech>>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-creampie.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/event04/alli-event04-08.jpeg" alt="alli event04 07" width="1000" height="666"/></div>
<<speech "Alli">>I love the feeling of your cum inside of me.<</speech>>
<<speech "You" "$player.name">>Well, we can do that whenever you want.<</speech>>
<<speech "Alli">>I have to go and get cleaned up, but come back and see to me later. Theres something else I want to talk to you about.<</speech>>
<<speech "You" "$player.name">>Will do.<</speech>>
You both leave to clean each other up, and soon you are back in your room.
<<link[[Continue|home-mc-room]]>><<addmins 60>><</link>><<set $alli.trustprogress += 1>><<speech "You" "$player.name">>What is it?<</speech>>
<<speech "Alli">>I told you before about how I got caught up in the storm, but I never told you about the effect the storm had on me.<</speech>>
<<nobr>>
<<if $event.allipry is true>>
<<speech "You" "$player.name">>I asked before and it upset you. So why talk about it now?<</speech>>
<<speech "Alli">>Things have changed since that conversation. The trust between us has grown and I feel more comfortable around you.<</speech>>
<</if>>
<</nobr>>
<<speech "You" "$player.name">>The storm gave you a power, didn't it?<</speech>>
<<speech "Alli">>Yes, but I can't talk specifically about what it is; it's too dangerous.<</speech>>
<<speech "You" "$player.name">>Why is it dangerous to talk about it?<</speech>>
<<speech "Alli">>That day, when I came home after the storm, I felt this rush of emotions. I was just so angry. Anger activated my power.<</speech>>
<<speech "You" "$player.name">>So when you get angry your power activates, but you can't tell me what happened.<</speech>>
<<speech "Alli">>Anger was just the start. Fear, jealousy, anger. Every negative emotion fed into the power, making it stronger. You have to understand, my power is dangerous. The first and last time I used it, it erupted out of me, and could have caused untold amounts of damage.<</speech>>
<<speech "You" "$player.name">>But if negative emotions fed into your power, how did you stop it? And how come it hasn't activated since then?<</speech>>
<<speech "Alli">>I managed to calm myself down, and have been using meditation ever since to moderate my emotional state. The only reason I feel safe to talk a little more about it now is because you're here. You make me feel safe.<</speech>>
<<speech "You" "$player.name">>You're scared of your power, aren't you. And that same fear gives it strength.<</speech>>
<<speech "Alli">>If I talk in riddles and about the emotional effect, I can avoid thinking about the power itself. But if I were to tell you what the power was, even now I couldn't hold it back.<</speech>>
<<speech "You" "$player.name">>In that case, it's probably best not to tell me. Not yet anyway. Maybe one day it'll be safe to say out loud.<</speech>>
You sit with Alli for a few minutes, arm around her shoulder, processing the information she's given you.
<<speech "Alli">>You know, I have found one other way of calming down enough not to think about it.<</speech>>
<<speech "You" "$player.name">>What's that?<</speech>>
<<speech "Alli">>Getting fucked by you.<</speech>>
<<speech "You" "$player.name">>Let's not waste any more time then.<</speech>>
<<link[[Fuck Alli|alli-event-04-FUCK]]>><<addmins 30>><</link>><<set $alli.trustprogress += 1>><<set $alli.event +=1>>As per her request, you return to Alli to see what she wanted to discuss.
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-01.jpg" alt="alli event05 01" width="1000" height="640"/></div>
<<speech "You" "$player.name">>Hey Alli, what did you want to talk to me about?<</speech>>
<<speech "Alli">>Sit with me.<</speech>>
You follow her instruction and sit with Alli on the bed.
<<speech "Alli">>I've been thinking a lot about us. About how you've been there for me. I wanted to thank you for everything you've done.<</speech>>
<<if $event.allitoldtruth is true>><<speech "Alli">>I know you took a risk telling me about your power, and I know you were worried about whether your power was affecting who I am.<</speech>>
<<speech "You" "$player.name">>Yeah, to be fair I was a bit worried about how much of you was still you.<</speech>>
<<speech "Alli">>It's still me in here. Your power just opened my eyes to what our relationship could become.<</speech>>
<</if>>
<<if $event.allibond is true>><<speech "Alli">>And once our relationship took off, I'm glad you still wanted to talk. You didn't treat me like a body to fuck, but a person to talk to before fucking. I appreciated that.<</speech>>
<<speech "You" "$player.name">>And I'm glad you revealed what you did about your power. I know that was hard for you to talk about.<</speech>>
<<speech "Alli">>It was, but it just goes to show how much we've come to care for and trust each other.<</speech>><</if>>
<<speech "You" "$player.name">>I'll always be there for you Alli.<</speech>>
<<speech "Alli">>I know that.<</speech>>
You and Alli pull towards each other for a kiss.
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-02.jpg" alt="alli event05 02" width="1000" height="666"/></div>
This kiss feels different than the others; more passionate, more loving. Whatever happens today, will have a long lasting effect on your relationship.
<<speech "You" "$player.name">>Let's go to bed.<</speech>>
<<speech "Alli">>Oh, are we going to sleep already?<</speech>>
<<speech "You" "$player.name">>Not exactly.<</speech>>
[[Continue|alli-event-05b]]<<set $alli.trustprogress += 1>>You and Alli go to the bed, and it isn't long before you start having some fun.
<center><h3>Blowjob</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-03.jpg" alt="alli event05 03" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-blowjob.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-04.jpg" alt="alli event05 04" width="1000" height="640"/></div>
<center><h3>Doggy</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-05.jpg" alt="alli event05 05" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-doggy.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-06.jpg" alt="alli event05 06" width="1000" height="640"/></div>
<center><h3>Cowgirl</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-07.jpg" alt="alli event05 07" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-cowgirl.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-08.jpg" alt="alli event05 08" width="1000" height="640"/></div>
<center><h3>Reverse Cowgirl</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-09.jpg" alt="alli event05 09" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-reversecowgirl.webm" width="1000" autoplay loop muted/></div>
<center><h3>Sidefuck</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-10.jpg" alt="alli event05 10" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-sidefuck.webm" width="1000" autoplay loop muted/></div>
<center><h3>Missionary</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-11.jpg" alt="alli event05 11" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-missionary.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-12.jpg" alt="alli event05 12" width="1000" height="640"/></div>
<center><h3>Creampie</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-creampie.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-13.jpg" alt="alli event05 13" width="1000" height="640"/></div>
You and Alli spend the rest of the day and night enjoying each others bodies. The sex is no longer just about pleasure, but there is a passion behind it.
<<link[[Next Morning|alli-event-05c]]>><<set $gameDate.setHours(7)>><<set $gameDate.setMinutes(30)>><<adddays 1>><</link>><<set $alli.trustprogress += 1>>It is early in the morning. You and Alli are still laid on the bed after a night of fucking.
<<speech "You" "$player.name">>Don't you think we ought to tell Mom and Carolina about us?<</speech>>
<<speech "Alli">>I'll tell them. They'll understand.<</speech>>
<<speech "You" "$player.name">>So, once they know, does that mean we'll be able to do this around the house?<</speech>>
<<speech "Alli">>You bet it does.<</speech>>
<<if $alli.trustprogress gte 10>><<speech "Alli">>Hey, $player.name.<</speech>>
<<speech "You" "$player.name">>Yes Alli.<</speech>>
<<speech "Alli">>How do you feel about me?<</speech>>
<<speech "You" "$player.name">>Well, it's hard to describe. Our relationship is complicated. But I care and love you.<</speech>>
<<speech "Alli">>How would you feel if I told you I love you, but not in the brother sister way, it's more than that now.<</speech>>
<<speech "You" "$player.name">>Then I'd say I love you back, in the same way. Things have developed far more than I could have dreamed, and after last night I feel more for you than just a brother sister relationship. It's deeper than that.<</speech>>
<<speech "Alli">>You have no idea how happy that makes me.<</speech>>
Alli kisses you passionately, sealing the love between you.
<</if>>
<<set $alli.sex to true>>//New Actions have been unlocked in free-roam.//
//New Background Events have been unlocked.//
<<set $alli.trust to true>>//Alli now trusts you implicitly//
You leave Alli before your alarm is due to go off. You manage to get a few more hours of sleep in, and at 7:30, you wake with your alarm, ready to start the day.
[[Wake Up|wake-up]]Alli is in the Kitchen, getting herself something to eat.
<div class="centered-image"><img src="resources/characters/allirae/KitchenEvent/alli-kitchen-01.jpg" alt="alli kitchen 01" width="500" height="749"/></div>
You sneak up behind her, hoping to surprise her.
<div class="centered-image"><img src="resources/characters/allirae/KitchenEvent/alli-kitchen-02.jpg" alt="alli kitchen 02" width="1000" height="667"/></div>
<<speech "Alli">>What the fuck? $player.name, don't scare me like that.<</speech>>
<<speech "You" "$player.name">>What, aren't you happy to see me?<</speech>>
<<speech "Alli">>You know I am, but I don't like surprises.<</speech>>
Alli walks over to the fridge. You follow closely behind.
<div class="centered-video"><video src="resources/characters/allirae/KitchenEvent/alli-kitchen-01.webm" width="1000" autoplay loop muted /></div>
<<speech "You" "$player.name">>Up for some fun?<</speech>>
<<speech "Alli">>What, here, in the kitchen?<</speech>>
<<speech "You" "$player.name">>Yeah. You and me, right here and now.<</speech>>
Alli pauses for a second, considering her options.
<<speech "Alli">>Okay then, but be quick, Mom or Carolina could come back around at any minute.<</speech>>
<<speech "You" "$player.name">>Yeah, it might be a bit awkward for them to find us like this.<</speech>>
<div class="centered-image"><img src="resources/characters/allirae/KitchenEvent/alli-kitchen-03.jpg" alt="alli kitchen 03" width="1000" height="667"/></div>
<div class="centered-video"><video src="resources/characters/allirae/KitchenEvent/alli-kitchen-02.webm" width="1000" autoplay loop muted /></div>
<div class="centered-image"><img src="resources/characters/allirae/KitchenEvent/alli-kitchen-04.jpg" alt="alli kitchen 04" width="1000" height="667"/></div>
You come inside Alli. However, in your moment of bliss, your mother enters the kitchen.
<div class="centered-image"><img src="resources/characters/lexiluna/lexi-kitchen-03.jpeg" alt="lexi kitchen 03" width="1000" height="666"/></div>
<<speech "Mom">>Alli? $player.name? What are you two doing in here?<</speech>>
<<speech "You" "$player.name">>Mom? We can explain.<</speech>>
Suddenly Mom's expression changes from concern to joy.
<div class="centered-image"><img src="resources/characters/lexiluna/lexi-kitchen-04.jpeg" alt="lexi kitchen 04" width="1000" height="666"/></div>
<<speech "Mom">>It's good to see you two finally getting along. But try not to make a mess in the kitchen. There is food around after all.<</speech>>
<<speech "Alli">>Okay Mom, we'll be sure to remember in future.<</speech>>
Alli gives you a wink: you're sure there'll be plenty more fun in the kitchen in future.
<<link[[Continue|mc-home]]>><<addmins 20>><</link>>Alli is watching TV in the Living Room.
<<speech "You" "$player.name">>What are you watching?<</speech>>
<<speech "Alli">>Whatever's on.<</speech>>
You take a seat next to Alli.
<<speech "Alli">>Now that you're here though, why don't we do something more interesting.<</speech>>
<div class="centered-image"><img src="resources/characters/allirae/LivingEvent/alli-living-01.jpg" alt="alli kitchen 01" width="1000" height="666"/></div>
<<speech "You" "$player.name">>What about the others?<</speech>>
<<speech "Alli">>They're all busy elsewhere.<</speech>>
<<speech "You" "$player.name">>Okay then, what did you have in mind?<</speech>>
<center><h3>Blowjob</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/LivingEvent/alli-living-02.jpg" alt="alli living 02" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/LivingEvent/alli-living-blowjob.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/LivingEvent/alli-living-03.jpg" alt="alli living 03" width="1000" height="666"/></div>
<center><h3>Sidefuck</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/LivingEvent/alli-living-04.jpg" alt="alli living 04" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/LivingEvent/alli-living-sidefuck.webm" width="1000" autoplay loop muted/></div>
<center><h3>Reverse Cowgirl</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/LivingEvent/alli-living-05.jpg" alt="alli living 05" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/LivingEvent/alli-living-reversecowgirl.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/LivingEvent/alli-living-06.jpg" alt="alli living 06" width="1000" height="666"/></div>
<center><h3>Cowgirl</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/LivingEvent/alli-living-07.jpg" alt="alli living 07" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/LivingEvent/alli-living-cowgirl.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/LivingEvent/alli-living-08.jpg" alt="alli living 08" width="1000" height="666"/></div>
<center><h3>Doggy</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/LivingEvent/alli-living-09.jpg" alt="alli living 09" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/LivingEvent/alli-living-doggy.webm" width="1000" autoplay loop muted/></div>
<center><h3>Cumshot</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/LivingEvent/alli-living-cumshot.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/LivingEvent/alli-living-10.jpg" alt="alli living 10" width="1000" height="666"/></div>
<div class="centered-image"><img src="resources/characters/allirae/LivingEvent/alli-living-11.jpg" alt="alli living 11" width="1000" height="666"/></div>
You come all over Alli's face. A noise catches your attention and you look across the room to see Carolina watching you both from a distance.
<div class="centered-image"><img src="resources/characters/carolinasweets/LivingEvent/carolina-living-01.jpeg" alt="carolina living 01" width="500" height="749"/></div>
She doesn't say anything, but you can tell she was enjoying the show you gave. Once she spots you looking her way, she rushes to her room, embarrassed to have been found out.
You and Alli clean up your mess in the Living Room, and you decide not to hang around too long.
<<link[[Continue|mc-home]]>><<addmins 30>><</link>>Alli is in her room. You enter, hoping for some fun time together.
<<speech "Alli">>Hey Bro.<</speech>>
<<speech "You" "$player.name">>Hey Sis. You busy?<</speech>>
<<speech "Alli">>Not really, why?<</speech>>
<<speech "You" "$player.name">>Because I have something here that's much more fun that whatever your doing right now.<</speech>>
<<speech "Alli">>Is that so.<</speech>>
You lie down on Alli's bed, leaving her to unzip your fly, releasing your cock.
<<speech "Alli">>You're right; this will be much more fun.<</speech>>
<center><h3>Blowjob</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/BedroomEvent/alli-bedroom-01.jpg" alt="alli living 02" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/BedroomEvent/alli-bedroom-blowjob.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/BedroomEvent/alli-bedroom-02.jpg" alt="alli living 02" width="1000" height="666"/></div>
<center><h3>Doggy</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/BedroomEvent/alli-bedroom-03.jpg" alt="alli living 03" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/BedroomEvent/alli-bedroom-doggy.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/BedroomEvent/alli-bedroom-04.jpg" alt="alli living 04" width="1000" height="666"/></div>
<center><h3>Reverse Cowgirl</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/BedroomEvent/alli-bedroom-05.jpg" alt="alli living 05" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/BedroomEvent/alli-bedroom-reversecowgirl.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/BedroomEvent/alli-bedroom-06.jpg" alt="alli living 06" width="1000" height="666"/></div>
<center><h3>Cowgirl</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/BedroomEvent/alli-bedroom-07.jpg" alt="alli living 07" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/BedroomEvent/alli-bedroom-cowgirl.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/BedroomEvent/alli-bedroom-08.jpg" alt="alli living 08" width="1000" height="666"/></div>
<center><h3>Sidefuck</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/BedroomEvent/alli-bedroom-09.jpg" alt="alli living 09" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/BedroomEvent/alli-bedroom-sidefuck.webm" width="1000" autoplay loop muted/></div>
<center><h3>Missionary</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/BedroomEvent/alli-bedroom-10.jpg" alt="alli living 10" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/BedroomEvent/alli-bedroom-missionary.webm" width="1000" autoplay loop muted/></div>
<center><h3>Cumshot</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/BedroomEvent/alli-bedroom-cumshot.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/BedroomEvent/alli-bedroom-11.jpg" alt="alli living 11" width="1000" height="666"/></div>
You cum all over Alli. You then hear a knocking on the wall, followed by Carolina shouting out.
<<speech "Carolina">>Can you two keep it down? I'm trying to study in here.<</speech>>
<<speech "You" "$player.name">>Sorry Sis, we'll try and be quieter.<</speech>>
You look down at Alli, who smiles and giggles back.
You leave Alli to get cleaned up as you return to your room.
<<link[[Continue|home-mc-room]]>><<addmins 30>><</link>><div class="centered-image"><img src="resources/characters/allirae/Event02/alli-event02-05.jpeg" alt="alli event02 05" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event02/alli-event02-blowjob.webm" width="1000" autoplay loop muted/></div>
<<back>><div class="centered-image"><img src="resources/characters/allirae/event02/alli-Event02-06.jpeg" alt="alli event02 06" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/event02/alli-Event02-footjob.webm" width="1000" autoplay loop muted/></div>
<<back>><center><h3>Doggy</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event03/alli-event03-03.jpeg" alt="alli event03 03" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event03/alli-event03-doggy.webm" width="1000" autoplay loop muted /></div>
<center><h3>Sidefuck</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event03/alli-event03-04.jpeg" alt="alli event03 04" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event03/alli-event03-sidefuck.webm" width="1000" autoplay loop muted /></div>
<center><h3>Over the Sofa</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/Event03/alli-event03-oversofa.webm" width="1000" autoplay loop muted /></div>
<center><h3>Missionary</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/Event03/alli-event03-missionary.webm" width="1000" autoplay loop muted /></div>
<div class="centered-image"><img src="resources/characters/allirae/Event03/alli-event03-05.jpeg" alt="alli event03 05" width="1000" height="666"/></div>
<center><h3>Cumshot</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/Event03/alli-event03-cumshot.webm" width="1000" autoplay loop muted /></div>
<div class="centered-image"><img src="resources/characters/allirae/Event02/alli-Event02-07.jpeg" alt="alli event02 07" width="1000" height="666"/></div>
<<back>><div class="centered-image"><img src="resources/characters/allirae/Event04/alli-Event04-03.jpeg" alt="alli event04 03" width="500" height="750"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-Event04-blowjob.webm" width="1000" autoplay loop muted/></div>
<<back>><div class="centered-image"><img src="resources/characters/allirae/Event05/alli-Event05-03.jpg" alt="alli event05 03" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-Event05-blowjob.webm" width="1000" autoplay loop muted/></div>
<<back>><center><h3>Cowgirl</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event04/alli-event04-04.jpeg" alt="alli event04 04" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-cowgirl.webm" width="1000" autoplay loop muted/></div>
<center><h3>Missionary</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-missionary01.webm" width="1000" autoplay loop muted/></div>
<center><h3>Sidefuck</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event04/alli-event04-05.jpeg" alt="alli event04 05" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-sidefuck.webm" width="1000" autoplay loop muted/></div>
<center><h3>Reverse Cowgirl</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event04/alli-event04-06.jpeg" alt="alli event04 06" width="500" height="750"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-reversecowgirl.webm" width="1000" autoplay loop muted/></div>
<center><h3>Doggy</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event04/alli-event04-07.jpeg" alt="alli event04 07" width="1000" height="666"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-doggy.webm" width="1000" autoplay loop muted/></div>
<center><h3>Missionary Again</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-missionary02.webm" width="1000" autoplay loop muted/></div>
<center><h3>Creampie</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/Event04/alli-event04-creampie.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/Event04/alli-event04-08.jpeg" alt="alli event04 07" width="1000" height="666"/></div>
<<back>><center><h3>Blowjob</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-03.jpg" alt="alli event05 03" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-blowjob.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-04.jpg" alt="alli event05 04" width="1000" height="640"/></div>
<center><h3>Doggy</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-05.jpg" alt="alli event05 05" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-doggy.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-06.jpg" alt="alli event05 06" width="1000" height="640"/></div>
<center><h3>Cowgirl</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-07.jpg" alt="alli event05 07" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-cowgirl.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-08.jpg" alt="alli event05 08" width="1000" height="640"/></div>
<center><h3>Reverse Cowgirl</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-09.jpg" alt="alli event05 09" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-reversecowgirl.webm" width="1000" autoplay loop muted/></div>
<center><h3>Sidefuck</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-10.jpg" alt="alli event05 10" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-sidefuck.webm" width="1000" autoplay loop muted/></div>
<center><h3>Missionary</h3></center>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-11.jpg" alt="alli event05 11" width="1000" height="640"/></div>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-missionary.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-12.jpg" alt="alli event05 12" width="1000" height="640"/></div>
<center><h3>Creampie</h3></center>
<div class="centered-video"><video src="resources/characters/allirae/Event05/alli-event05-creampie.webm" width="1000" autoplay loop muted/></div>
<div class="centered-image"><img src="resources/characters/allirae/Event05/alli-event05-13.jpg" alt="alli event05 13" width="1000" height="640"/></div>
<<back>>