JavaScript must be enabled to play.
Browser lacks capabilities required to play.
Upgrade or switch to another browser.
Loading…
<span style="font-size:22px"><<if hasVisited("day1")>> @@#now;<<now>>@@ <img src="jack.png"> <progress max="100" @value="$corr"></progress> Corruption $corr % <progress max="100" @value="$fit"></progress> Fitness $fit % <</if>> </span>
<<set $ashley to 0>> <<set $fay to 0>> <<set $carrey to 0>> <<set $foxy to 0>> <<set $sara to 0>> <<set $pat to 0>> <<set $diva to 0>> <<set $alice to 0>> <<set $julie to 0>> <<set $dee to 0>> <<set $corr to 0>> <<set $pop to 0>> <<set $sun to 0>> <<set $fit to 65>> <<set $test to 0>> <<set $gas to 0>> /% The names of the Days of the Week. %/ <<set setup.DAYS to ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]>> /% The names of the Time Periods of a Day. %/ <<set setup.PERIODS to ["Morning", "Afternoon", "Evening"]>> /% The current Game Day: Monday. %/ <<set $day to 1>> /% The current Time Period: Morning. %/ <<set $period to 0>> <<widget "checkScores">> <<if $ashley >= 100 and $fay >= 100 and $carrey >= 100 and $foxy >= 100 and $sara >= 100 and $pat >= 100 and $diva >= 100 and $alice >= 100 and $julie >= 100 and $dee >= 100>> <<goto "end">> <</if>> <</widget>>
<img src="tim1.gif">
<<nobr>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('1m')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('2m')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('3m')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('4m')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('5m')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('6m')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|1m]] [[2. Gym|2m]] [[3. Staff accommodation|3m]] [[4. School|4m]] [[5. The Head's rooms|5m]] [[6. Guest dormitory|6m]]
<img src="woods.png"> <<dialogue "Think" "brain.png" "It's my first day at work, I should be at the [[gym.|2m]]">> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<video src="fit1.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Afternoon" "aft.png" "Time to grab a quick lunch in the canteen then decide what to do this [[afternoon.|mapaft]]">> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="sacom.png"> <<dialogue "Think" "brain.png" "It's my first day at work, I should be at the [[gym.|2m]]">>
<img src="head.png"> <<dialogue "Think" "brain.png" "It's my first day at work, I should be at the [[gym.|2m]]">>
<img src="gd.png"> <<dialogue "Think" "brain.png" "It's my first day at work, I should be at the [[gym.|2m]]">>
<<dialogue "Think" "brain.png" "That was an amazing dvd of herself Dr Jones showed me. Should I follow her advice?">> <<nobr>> <div id="video-container"> <video id="main-video" src="bed1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="choice-container"> <div class="click-box" data-video="bed2.mp4">WANK</div> <div class="click-box" data-video="bed3.mp4">SLEEP</div> </div> </div> <</nobr>> <<dialogue "Think" "brain.png" "Time to [[sleep.|day1]]">>
<<dialogue "Ashley" "ashley2.png" "Complete $ashley %">> <<dialogue "Fay" "fay2.png" "Complete $fay %">> <<dialogue "Carrey" "carrey2.png" "Complete $carrey %">> <<dialogue "Foxy" "foxy2.png" "Complete $foxy %">> <<dialogue "Sara" "sara2.png" "Complete $sara %">> <<dialogue "Pat" "pat2.png" "Complete $pat %">> <<dialogue "Diva" "diva2.png" "Complete $diva %">> <<dialogue "Alice" "alice2.png" "Complete $alice %">> <<dialogue "Julie" "julie2.png" "Complete $julie %">> <<dialogue "Dee" "dee2.png" "Complete $dee %">>
/* * <<now>> * * Displays the current Day of Week, Period of Day and Day Number. */ <<widget "now">> \<<print setup.DAYS[$day % 7]>> <<print setup.PERIODS[$period]>> <</widget>> /* * <<AdvancePeriod [number of periods]>> * * Advance current Time Period by a set number of periods, if no number * if pass to widget then current Time Period is advanced by 1 unit. * * <<AdvancePeriod>> Advances time period by 1 unit. * <<AdvancePeriod 1>> Advances time period by 1 unit. * <<AdvancePeriod 2>> Advances time period by 2 units. * * If the current day's time boundary is exceeded then the Day Number * will also be updated. */ <<widget "AdvancePeriod">> \<<silently>> <<set _offset to 1>> <<set _periodsInDay to setup.PERIODS.length>> <<if $args.length > 0>> <<set _offset to $args[0]>> <</if>> <<set $period += _offset>> /% Update the Day Number as necessary. %/ <<if $period >= _periodsInDay>> <<set $day += Math.trunc($period / _periodsInDay)>> <<set $period to ($period % _periodsInDay)>> <</if>> <</silently>>\ <</widget>> /* * <<NextMorning>> * * Advances the current Time Period to the Morning of the next day. */ <<widget "NextMorning">> \<<silently>> /% Increament the Day Number by 1 unit. %/ <<set $day += 1>> /% Set the current Time Period to the index of the "Morning" element of setup.PERIODS array. %/ <<set $period to 1>> <</silently>>\ <</widget>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('1a')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('2a')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('3a')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('4a')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('5a')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('6a')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|1a]] [[2. Gym|2a]] [[3. Staff accommodation|3a]] [[4. School|4a]] [[5. The Head's rooms|5a]] [[6. Guest dormitory|6a]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('1e')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('2e')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('3e')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('4e')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('5e')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('6e')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|1e]] [[2. Gym|2e]] [[3. Staff accommodation|3e]] [[4. School|4e]] [[5. The Head's rooms|5e]] [[6. Guest dormitory|6e]]
<<if $ashley gte 100>> <<goto "1">> /* End game test - MUST be first condition */ <<elseif not hasVisited("ashley1")>> <<goto "ashley1">> <<else>> <<goto "ashley2">> <</if>>
<<if $fay gte 100>> <<goto "2">> /* End game test - MUST be first condition */ <<elseif not hasVisited("fay1")>> <<goto "fay1">> <<else>> <<goto "fay1b">> <</if>>
<<if $foxy gte 100>> <<goto "4">> /* End game test - MUST be first condition */ <<elseif not hasVisited("foxy1")>> <<goto "foxy1">> <!-- First visit --> <<elseif not hasVisited("week3")>> <<goto "foxy1">> <!-- Loop until week3 is visited --> <<elseif not hasVisited("foxy7alt")>> <<goto "foxy7">> <!-- After week3 --> <<elseif not hasVisited("foxy8alt")>> <<goto "foxy8">> <!-- Loop until foxy8alt is visited --> <<elseif not hasVisited("foxy10")>> <<goto "foxy10">> <!-- After foxy8alt --> <<else>> <<goto "foxy10">> <!-- Permanent destination --> <</if>>
<<if $carrey gte 100>> <<goto "3">> /* End game test - MUST be first condition */ <<elseif not hasVisited("carrey6alt")>> <<goto "carrey6">> <<else>><<goto "carrey9">> <</if>>
<<if $sara gte 100>> <<goto "5">> /* End game test - MUST be first condition */ <<elseif not hasVisited("sara3")>> <<goto "sara3">> <<elseif not hasVisited("sara6")>> <<goto "sara6">> <<elseif not hasVisited("sara10alt")>> <<goto "sara10">> <!-- Loop until sara10alt is visited --> <<elseif not hasVisited("sara8")>> <<goto "sara8">> <<elseif not hasVisited("sara11alt")>> <<goto "sara11">> <!-- Loop until sara11alt is visited --> <<elseif not hasVisited("sara12alt")>> <<goto "sara12">> <!-- Loop until sara12alt is visited --> <<else>> <<goto "sara7">> <!-- Permanent destination --> <</if>>
<<if $sara gte 100>> <<goto "5">> /* End game test - MUST be first condition */ <<elseif not hasVisited("sara1")>> <<goto "sara1">> <<elseif not hasVisited("sara2")>> <<goto "sara2">> <<elseif not hasVisited("sara3")>> <<goto "sara3">> <<elseif not hasVisited("sara5")>> <<goto "sara5">> <<elseif not hasVisited("sara6")>> <<goto "sara6">> <<elseif not hasVisited("sara10alt")>> <<goto "sara10">> <!-- Ensure sara10 leads to sara10alt eventually --> <<else>> <<goto "sara7">> <!-- Permanent destination after all conditions are met --> <</if>>
<<if $diva gte 100>> <<goto "7">> /* End game test - MUST be first condition */ <<elseif not hasVisited("diva4")>> <<goto "diva4">> <<elseif not hasVisited("diva5")>> <<goto "diva5">> <<elseif not hasVisited("diva7alt")>> <<goto "diva7">> <!-- Loop until diva7alt is visited --> <<elseif not hasVisited("diva8alt")>> <<goto "diva8">> <!-- Loop until diva8alt is visited --> <<else>> <<goto "diva9">> <!-- Permanent destination --> <</if>>
<<if $diva gte 100>> <<goto "7">> /* End game test - MUST be first condition */ <<elseif not hasVisited("diva1")>> <<goto "diva1">> <<elseif not hasVisited("diva2")>> <<goto "diva2">> <<elseif not hasVisited("diva3")>> <<goto "diva3">> <<else>> <<goto "diva2">> <!-- Always return to diva2 after visiting diva3 --> <</if>>
<<if $julie gte 100>> <<goto "9">> /* End game test - MUST be first condition */ <<elseif not hasVisited("julie1")>> <<goto "julie1">> /* First visit - mandatory */ <<elseif not hasVisited("julie2")>> <<goto "julie2">> /* Direct progression */ <<elseif not hasVisited("julie3") || $sun < 20>> <<goto "julie3">> /* First visit OR sun requirement not met */ <<elseif not hasVisited("julie4alt")>> <<goto "julie4">> /* Requires julie4alt completion */ <<else>> <<goto "julie6">> /* Final destination */ <</if>>
<<if $dee gte 100>> <<goto "10">> /* End game test - MUST be first condition */ <<elseif not hasVisited("dee2")>> <<goto "dee2">> <!-- First visit --> <<elseif not hasVisited("dee3")>> <<goto "dee3">> <!-- After dee2 --> <<elseif not hasVisited("week3")>> <<goto "dee2">> <!-- Loop until week3 is visited --> <<elseif not hasVisited("dee5alt")>> <<goto "dee5">> <!-- Requires dee5alt visit --> <<elseif not hasVisited("dee8")>> <<goto "dee8">> <!-- After dee5alt --> <<else>> <<goto "dee8">> <!-- Permanent destination --> <</if>>
<<if not hasVisited("secoff1") && not hasVisited("secroom1")>> <<goto "secoff1">> <<elseif not hasVisited("secoff2")>> <<goto "secoff2">> <<elseif not hasVisited("secoff3")>> <<goto "secoff3">> <<else>> <<goto "secoff5">> <</if>>
<<if not hasVisited("headintro") && $sun < 10>> <<goto "headintro">> <!-- First visit --> <<elseif not hasVisited("head1")>> <<if $sun >= 10>> <<goto "head1">> <!-- Unlocked at sun 10 --> <<else>> <<goto "headintro">> <!-- Loop until sun >= 10 --> <</if>> <<elseif not hasVisited("head2")>> <<if $sun >= 20>> <<goto "head2">> <!-- Unlocked at sun 20 --> <<else>> <<goto "head1">> <!-- Loop until sun >= 20 --> <</if>> <<elseif not hasVisited("head3")>> <<if $sun >= 30>> <<goto "head3">> <!-- Unlocked at sun 30 --> <<else>> <<goto "head2">> <!-- Loop until sun >= 30 --> <</if>> <<elseif not hasVisited("head4")>> <<if $sun >= 40>> <<goto "head4">> <!-- Unlocked at sun 40 --> <<else>> <<goto "head3">> <!-- Loop until sun >= 40 --> <</if>> <<else>> <<goto "head4">> <!-- Permanent destination --> <</if>>
<<if not hasVisited("theoff1") && not hasVisited("theroom1")>> <<goto "theoff1">> <<elseif not hasVisited("theoff2")>> <<goto "theoff2">> <<elseif not hasVisited("theoff3") && not hasVisited("theroom3")>> <<goto "theoff3">> <<elseif not hasVisited("theoff4")>> <<goto "theoff4">> <<else>> <<goto "theoff4">> <!-- Fallback --> <</if>>
<<if not hasVisited("janitor1")>> <<goto "janitor1">> <!-- First visit --> <<elseif not hasVisited("w3chef")>> <<goto "janitor1">> <!-- Loop until w3chef is visited --> <<elseif not hasVisited("janitor2")>> <<goto "janitor2">> <!-- After w3chef --> <<elseif not hasVisited("chef3")>> <<goto "janitor3">> <!-- Requires chef3 --> <<elseif not hasVisited("janitor4")>> <<goto "janitor4">> <!-- After chef3 --> <<elseif not hasVisited("chef6alt")>> <<goto "janitor5">> <!-- Requires chef6alt --> <<elseif not hasVisited("janitor6alt")>> <<goto "janitor6">> <!-- Requires janitor6alt visit --> <<elseif not hasVisited("janitor7")>> <<goto "janitor7">> <!-- After janitor6alt --> <<else>> <<goto "janitor7">> <!-- Permanent destination --> <</if>>
<<goto "chef1">>
<img src="woods1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="juliew" alt="juliew" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="divaw" alt="divew" title="Diva" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="school.png"> <<dialogue "Think" "brain.png" "Disrupting a class would be dumb.">> <<nobr>> <<switch random(1, 3)>> <<case 1>> <img src="office.png"> <img src="common.png"> <<case 2>> <img src="office.png"> <img src="stu.png"> <<case 3>> <img src="stu.png"> <img src="common.png"> <</switch>> <</nobr>> <<dialogue "Think" "brain.png" "There's a lot of study rooms, I should check them along with the common room and offices.">> <img src="sch1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashsch" alt="ashsch" title="Ashley" coords="153,96,82" shape="circle"> <area data-passage="deesch" alt="deesch" title="Dee" coords="157,269,79" shape="circle"> <area data-passage="secoff" alt="secoff" title="Secretary" coords="492,94,79" shape="circle"> <area data-passage="theoff" alt="theoff" title="Therapist" coords="491,274,74" shape="circle"> </map>
<img src="scom2.png" usemap="#image-map"> <map name="image-map"> <area data-passage="chef" alt="chef" title="Chef" coords="169,165,113" shape="circle"> <area data-passage="teacher" alt="teacher" title="Teacher" coords="474,165,112" shape="circle"> </map>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="study.png"> <img src="tv.png"> <<nobr>> <img src="gd12.png" usemap="#image-map"> <map name="image-map"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="139,181,81" shape="circle"> <area data-passage="saragd" alt="saragd" title="Sara" coords="339,179,82" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="529,178,79" shape="circle"> </map> <</nobr>> <<dialogue "Think" "brain.png" "I'll have a wander around the dorm coridors then take a look at the T.V. lounge and the study rooms.">>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="woods.png"> <<dialogue "Think" "brain.png" "I guess a jog in the woods would be cool.">> <img src="jogtest.gif" height="400"> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|bed]]">> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym.png"> <<dialogue "Think" "brain.png" "I guess a workout would be good.">> <video src="megym1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|bed]]">> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="school.png"> <<nobr>> <<switch random(1, 3)>> <<case 1>> <img src="office.png"> <img src="common.png"> <<case 2>> <img src="office.png"> <img src="stu.png"> <<case 3>> <img src="stu.png"> <img src="common.png"> <</switch>> <</nobr>> <<dialogue "Think" "brain.png" "There's a lot of empty rooms here I should check them out along with the common room and offices.">> <img src="sch4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="139,181,81" shape="circle"> <area data-passage="chef" alt="chef" title="Chef" coords="339,179,82" shape="circle"> <area data-passage="theoff" alt="theoff" title="Therapist" coords="529,178,79" shape="circle"> </map>
<img src="scom1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroom" alt="secretary" title="Secretary" coords="112,185,92" shape="circle"> <area data-passage="theroom" alt="theroom" title="Therapist" coords="319,184,86" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="524,179,89" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="study.png"> <img src="tv.png"> <<nobr>> <img src="gd6.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgd" alt="ashgd" title="Ashley" coords="102,99,78" shape="circle"> <area data-passage="patgd" alt="patgd" title="Pat" coords="241,265,80" shape="circle"> <area data-passage="cargd" alt="cargd" title="Carrey" coords="397,95,83" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="534,266,79" shape="circle"> </map> <</nobr>> <<dialogue "Think" "brain.png" "I'll have a wander around the dorm coridors then take a look at the t.v.. lounges and the study rooms.">>
<<nobr>> <<if visited() >= 2>> <<AdvancePeriod>> <</if>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <img src="clock.png"> <img src="wake2.png"> <<dialogue "Think" "brain.png" "First day in a new job, I should hit the [[shower.|shower1]]">>
<img src="mandf.png" usemap="#image-map"> <<dialogue "Think" "brain.png" "Should I peek in the women's or go straight into the men's.">> <map name="image-map"> <area data-passage="show1m" alt="show1m" title="shower" coords="245,405,99,79" shape="rect"> <area data-passage="show1f" alt="show1f" title="shower" coords="403,83,549,400" shape="rect"> </map>
<img src="ms.png"> <<dialogue "Think" "brain.png" "Empty. I'll get a [[shower in the men's.|show1m]]">>
<video src="mesh.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "I should grab some breakfast in the [[canteen|mapmorn]] then get to work.">> <<link "<img src='bfast.png'>">> <<goto "mapmorn">> <</link>>
<img src="school.png"> <<dialogue "Think" "brain.png" "It's my first day at work, I should be at the [[gym.|2m]]">>
<<dialogue "Ashley" "ashley2.png" "Hello, d’you think I look sexy Mr. gym?">> <<dialogue "Jack" "jack2.png" "Very.">> <video src="nancyg1.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Ashley" "ashley2.png" "Well aren’t you nice.">> <<dialogue "Think" "brain.png" "[[I should go.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<if visited() >= 2>><<dialogue "Ashley" "ashley2.png" "Watch me, Jack.">><<else>> <<dialogue "Ashley" "ashley2.png" "Did you tell Dr. Jones?">> <<dialogue "Jack" "jack2.png" "No.">> <<dialogue "Ashley" "ashley2.png" "Well aren’t you sweet, watch this.">> <</if>> <<nobr>> <div id="video-container"> <video id="main-video" src="ash4.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ash4.mp4,ash5.mp4,ash6.mp4" data-labels="NEXT,NEXT" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Think" "brain.png" "[[I should go.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Ashley" "ashley2.png" "Hot aren’t I?">> <<dialogue "Jack" "jack2.png" "Yes, very.">> <video src="nancyg2.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Ashley" "ashley2.png" "Well aren’t you sweet.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<dialogue "Jack" "jack2.png" "You know you’re not suppose to have one of those?">> <<dialogue "Ashley" "ashley2.png" "Oh shit, am I on your list?">> <<dialogue "Jack" "jack2.png" "Afraid so.">> <<dialogue "Ashley" "ashley2.png" "Listen, if you don’t tell Dr. Jones I’ll be so nice to you, let me show you.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ash1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ash1.mp4,ash2.mp4,ash3.mp4" data-labels="NEXT,NEXT" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Ashley" "ashley2.png" "So, it’ll be our secret, ok?">> <<dialogue "Jack" "jack2.png" "Ok, see you [[later.|v]]">> <<if visited() == 1>> <<set $ashley += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Ashley" "ashley2.png" "D’you think I’m sexy?">> <<dialogue "Jack" "jack2.png" "Absolutely.">> <<dialogue "Ashley" "ashley2.png" "Well aren’t you sweet, watch this.">> <<nobr>> <div id="video-container"> <video id="main-video" src="nancyg3a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="nancyg3a.mp4,nancyg3.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<if visited() == 1>> <<set $ashley += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Think" "brain.png" "There’s a lot of study rooms and tv lounges here.">> <<dialogue "Ashley" "ashley2.png" "You can look. Don’t be shy.">> <<dialogue "Jack" "jack2.png" "Err…thanks.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ash7.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ash7.mp4,ash8.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Ashley" "ashley2.png" "Hot aren’t I?">> <<dialogue "Jack" "jack2.png" "Yes, very.">> <<dialogue "Ashley" "ashley2.png" "Well aren’t you sweet.">> <<dialogue "Think" "brain.png" "[[I should go.|v]]">> <<if visited() == 1>> <<set $ashley += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<if $test == 0>> <<goto "ashley8alt">> <<else>> <<goto "ashgymx">> <</if>>
<<if $test == 0>> <<goto "fay4alt">> <<else>> <<goto "faygdx">> <</if>>
<<dialogue "Fay" "fay2.png" "Hey cutie, come in.">> <<nobr>> <div id="video-container"> <video id="main-video" src="fay2e.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="fay2e.mp4,fay2f.mp4,fay2g.mp4,fay2h.mp4" data-labels="GO IN,PANTS,CUM" data-index="0">GO IN</div> </div> <</nobr>> <<dialogue "Fay" "fay2.png" "Good job cutie. Come back anytime.">> <<dialogue "Jack" "jack2.png" "Err… thanks.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $fay += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "fay3alt">> <<else>> <<goto "faygdx">> <</if>>
<<dialogue "Think" "brain.png" "There’s a lot of study rooms and tv lounges here.">> <<nobr>> <<if visited() == 1 && not hasVisited("fay1")>> <<dialogue "Fay" "fay2.png" "You must be the new gym guy, I’d heard you were cute. I don’t do sports, but if you come here again maybe I’ll give you a workout.">> <<else>> <<dialogue "Fay" "fay2.png" "Hey cutie, I'm kind of busy right now, but do come back and see me.">> <</if>> <</nobr>> <video src="fay2a.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Jack" "jack2.png" "Err… thanks.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<if visited() == 1>> <<set $fay += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<nobr>> <<if visited() == 1 && not hasVisited("fay2")>> <<dialogue "Fay" "fay2.png" "You must be the new gym guy, I’d heard you were cute. I don’t do sports, but if you come to my room I’ll give you a workout.">> <<else>> <<dialogue "Fay" "fay2.png" "Hey cutie, looking good.">> <</if>> <</nobr>> <video src="fay1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Jack" "jack2.png" "Err… thanks.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<if visited() == 1>> <<set $fay += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>>
<<if $test == 0>> <<goto "ashley10alt">> <<else>> <<goto "ashgdx">> <</if>>
<<if $test == 0>> <<goto "ashley9alt">> <<else>> <<goto "ashgdx">> <</if>>
<<dialogue "Fay" "fay2.png" "Hey cutie pie, come in.">> <<nobr>> <div id="video-container"> <video id="main-video" src="fay6a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="fay6a.mp4,fay6b.mp4,fay6c.mp4" data-labels="GO IN,CUM" data-index="0">GO IN</div> </div> <</nobr>> <<dialogue "Fay" "fay2.png" "You love me jerking you off don't you.">> <<dialogue "Jack" "jack2.png" "Err yes… thanks.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $fay += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<nobr>> <<if visited() == 1 && not hasVisited("carrey1") >> <<dialogue "Carrey" "carrey2.png" "Hi you’re the new footie coach right, I love footie.">> <<else>> <<dialogue "Carrey" "carrey2.png" "Hello again, how's it going?">> <</if>> <</nobr>> <video src="carr1gyma.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Carrey" "carrey2.png" "Come up to my room somtime.">> <<dialogue "Jack" "jack2.png" "Ok.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<if visited() == 1>> <<set $carrey += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Think" "brain.png" "There’s a lot of study rooms and tv lounges here.">> <<dialogue "Carrey" "carrey2.png" "Hi, d’you think I’m hot?">> <video src="carr3.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Jack" "jack2.png" "Yes, very.">> <<dialogue "Carrey" "carrey2.png" "Cool, see you around.">> <<dialogue "Think" "brain.png" "She's hot. Time to [[go.|v]]">> <<if visited() == 1>> <<set $carrey += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<video src="carr4.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Carrey" "carrey2.png" "Hello again Jack, you should come to my room sometime.">> <<dialogue "Jack" "jack2.png" "Wow, ok.">> <<dialogue "Think" "brain.png" "She's hot. Time to [[go.|v]]">> <<if visited() == 1>> <<set $carrey += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<nobr>> <<if visited() == 1 && not hasVisited("carrey2") >> <<dialogue "Carrey" "carrey2.png" "Hi you’re the new footie coach right, I love footie I’ll see you out there.">> <<else>> <<dialogue "Carrey" "carrey2.png" "Hello again, how's it going?">> <</if>> <</nobr>> <video src="carr1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Jack" "jack2.png" "Ok, good.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<if visited() == 1>> <<set $carrey += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Think" "brain.png" "I wonder what Fay’s up to?">> <video src="fay2a.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Fay" "fay2.png" "Sorry cutie pie I’ve got plans today, but I’ll take care of you next time.">> <<dialogue "Jack" "jack2.png" "Ok, see you [[later.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<dialogue "Carrey" "carrey2.png" "Hi coach, come in, sit here.">> <<dialogue "Jack" "jack2.png" "Err… ok. ">> <<dialogue "Carrey" "carrey2.png" "Now show me your cock. Go on, quick.">> <<nobr>> <div id="video-container"> <video id="main-video" src="carr5.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="carr5.mp4,carr6.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Carrey" "carrey2.png" "Did you like that?">> <<dialogue "Jack" "jack2.png" "Wow, yes but I [[have to go.|x]]">> <<if visited() == 1>> <<set $carrey += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "fay7alt">> <<else>> <<goto "faygdx">> <</if>>
<<nobr>> <<if visited() == 1 && not hasVisited("foxy1") && not hasVisited("foxy3")>> <<dialogue "Foxy" "foxy2.png" "Oh hello, you’re the new guy. I’m Foxy, d’you think I look cute?">> <<else>> <<dialogue "Foxy" "foxy2.png" "Oh hello again, do I look cute today?">> <</if>> <</nobr>> <video src="sf1gym.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Jack" "jack2.png" "Yes, very cute.">> <<dialogue "Foxy" "foxy2.png" "Oh thank you, you’re nice, [[bye.|v]]">> <<if visited() == 1>> <<set $foxy += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<nobr>> <<if visited() == 1 && not hasVisited("foxy2") && not hasVisited("foxy3")>> <<dialogue "Foxy" "foxy2.png" "Oh hello, you’re the new guy. I’m Foxy, d’you like this?">> <<else>> <<dialogue "Foxy" "foxy2.png" "Oh hello again, do I look cute today?">> <</if>> <</nobr>> <video src="sf1cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Jack" "jack2.png" "Yes.">> <<dialogue "Foxy" "foxy2.png" "Oh thank you, you're nice, [[bye.|v]]">> <<if visited() == 1>> <<set $foxy += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Carrey" "carrey2.png" "This is fun, I love footie.">> <<dialogue "Jack" "jack2.png" "Me too.">> <<dialogue "Carrey" "carrey2.png" "Let’s take a little break, come with me.">> <<nobr>> <div id="video-container"> <video id="main-video" src="carr1gyma.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="carr1gyma.mp4,carr1gymb.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Someone’s coming, they might see us. ">> <<dialogue "Carrey" "carrey2.png" "Oh goodie.">> <<dialogue "Jack" "jack2.png" "No, we [[have to go.|x]]">> <<if visited() == 1>> <<set $carrey += 10>> <<if $carrey > 100>><<set $carrey = 100>><</if>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<dialogue "Carrey" "carrey2.png" "Hi coach.">> <img src="carrey5.png"> <<dialogue "Carrey" "carrey2.png" "Come up to my room sometime, [[bye bye.|v]]">> <<set $fromEvent to false>> <<set $box +=1>>
<<if $test == 0>> <<goto "carrey5alt">> <<else>> <<goto "cargymx">> <</if>>
<<if $test == 0>> <<goto "carrey6alt">> <<else>> <<goto "carschx">> <</if>>
<<dialogue "Think" "brain.png" "There’s a lot of study rooms and tv lounges here. Carrey?">> <<dialogue "Carrey" "carrey2.png" "Not now coach but this’ll keep you horny for me. Is it working?">> <<dialogue "Jack" "jack2.png" "God yes.">> <<nobr>> <div id="video-container"> <video id="main-video" src="carr3.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="carr3.mp4,carr4.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Carrey" "carrey2.png" "Haha [[bye bye.|v]]">> <<set $fromEvent to true>> <<set $box +=1>>
<<dialogue "Carrey" "carrey2.png" "Hi coach.">> <video src="carr1gyma.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Carrey" "carrey2.png" "Haha [[bye bye.|v]]">> <<set $fromEvent to true>> <<set $box +=1>>
<<nobr>> <<if visited() == 1 && not hasVisited("foxy1") && not hasVisited("foxy2")>> <<dialogue "Foxy" "foxy2.png" "Oh hello, you’re the new guy. I’m Foxy, d’you think I look cute?">> <<else>> <<dialogue "Foxy" "foxy2.png" "Oh hello again, do I look cute today?">> <</if>> <</nobr>> <video src="sf1w.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Jack" "jack2.png" "Yes, very cute.">> <<dialogue "Foxy" "foxy2.png" "Oh thank you, you're nice, [[bye.|v]]">> <<if visited() == 1>> <<set $foxy += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Foxy" "foxy2.png" "Oh hello, d’you like my jumpsuit?">> <<dialogue "Jack" "jack2.png" "Yes, very nice.">> <<dialogue "Foxy" "foxy2.png" "Come with me.">> <video src="sf2w.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Foxy" "foxy2.png" "D’you like them?">> <<dialogue "Jack" "jack2.png" "Yes, very nice.">> <<dialogue "Foxy" "foxy2.png" "Oh thank you, you’re sweet, [[bye.|v]]">> <<if visited() == 1>> <<set $foxy += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<if $test == 0>> <<goto "foxy6alt">> <<else>> <<goto "foxywx">> <</if>>
<<if $test == 0>> <<goto "foxy7alt">> <<else>> <<goto "foxyschx">> <</if>>
<<if $test == 0>> <<goto "foxy8alt">> <<else>> <<goto "foxyschx">> <</if>>
<video src="sf1cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Foxy" "foxy2.png" "Do you like this, it's still my favorite one">> <<dialogue "Jack" "jack2.png" "Yes, it’s very good.">> <<dialogue "Foxy" "foxy2.png" "You’re sweet, [[bye.|v]]">> <<set $box +=1>> <<set $fromEvent to true>> <<set $test to 0>>
<<dialogue "Think" "brain.png" "I’ll check out the snack room.">> <video src="sb2cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Sara" "sara2.png" "I want you to come to my room and take some photos of me and send them to my friend.">> <<dialogue "Jack" "jack2.png" "That’s not allowed and there’s no wi-fi.">> <<dialogue "Sara" "sara2.png" "No, not nude photos, I’ll have my clothes on and your phone can send them as data.">> <<dialogue "Jack" "jack2.png" "Err… I’ll think about it ok?">> <<dialogue "Sara" "sara2.png" "Ok, but don’t forget, I’ll [[see you later.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<video src="sb1cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Sara" "sara2.png" "Hi I’m Sara, are you the new sports guy?">> <<dialogue "Jack" "jack2.png" "Yes, Jack Cummins.">> <<dialogue "Sara" "sara2.png" "I’m not interested in sports but I do need to talk to you. I hang out in the dorm snack room, come and see me when you have time.">> <<dialogue "Jack" "jack2.png" "Err… ok.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Think" "brain.png" "I’ll go and see Sara.">> <<dialogue "Sara" "sara2.png" "Oh good, tell me where to stand.">> <video src="sb3cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Jack" "jack2.png" "Ok, where do I send them?">> <<dialogue "Sara" "sara2.png" "This number.">> <<dialogue "Jack" "jack2.png" "Who is it?">> <<dialogue "Sara" "sara2.png" "She’s my best friend. Ok, I’ll [[see you later.|v]]">> <<if visited() == 1>> <<set $sara += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<video src="sb2cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Sara" "sara2.png" "Thanks for taking the photos, she really liked them. Come up again and take some more, I’ll be really grateful.">> <<dialogue "Jack" "jack2.png" "Err… I’ll think about it ok?">> <<dialogue "Sara" "sara2.png" "Ok, but don’t forget, [[see you later.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Think" "brain.png" "I’ll go and see Sara.">> <<dialogue "Sara" "sara2.png" "Ok take photos. ">> <video src="sb4.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Jack" "jack2.png" "Err…these seem a bit too sexual.">> <<dialogue "Sara" "sara2.png" "Don’t worry, send them off, [[see you later.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<video src="sb1cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Sara" "sara2.png" "Hi Jack, I’m glad I caught you. I need you to take some more photos for my friend. ">> <<dialogue "Jack" "jack2.png" "I don’t know, the last ones seemed a bit too sexual.">> <<dialogue "Sara" "sara2.png" "Don’t worry, they won’t go on the net. Look take some photos of me and I’ll give you a blowjob, ok? Don’t forget, [[see you later.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Foxy" "foxy2.png" "Oh hello, do you still like my jumpsuit?">> <<dialogue "Jack" "jack2.png" "Yes.">> <<dialogue "Foxy" "foxy2.png" "Come with me.">> <<nobr>> <div id="video-container"> <video id="main-video" src="sf2w.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="sf2w.mp4,sf2wb.mp4" data-index="0">FUCK</div> </div> <</nobr>> <<dialogue "Foxy" "foxy2.png" "Did you like that?">> <<dialogue "Jack" "jack2.png" "Yes, very much.">> <<dialogue "Foxy" "foxy2.png" "You’re sweet, [[bye.|x]]">> <<if visited() == 1>> <<set $foxy += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<dialogue "Foxy" "foxy2.png" "Oh hello, do you want to see my kigurumi?">> <<dialogue "Jack" "jack2.png" "I don’t understand.">> <<dialogue "Foxy" "foxy2.png" "Wait an hour then come to my room.">> <<nobr>> <div id="video-container"> <video id="main-video" src="sf3.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="sf3.mp4,sf3a.mp4,sf3b.mp4,sf3c.mp4" data-labels="HOUR,LOOK,FUCK" data-index="0">HOUR</div> </div> <</nobr>> <<dialogue "Foxy" "foxy2.png" "D’you think I’m a good fuck?">> <<dialogue "Jack" "jack2.png" "Yes, very good.">> <<dialogue "Foxy" "foxy2.png" "You’re sweet, [[bye.|x]]">> <<if visited() == 1>> <<set $foxy += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Think" "brain.png" "I wonder what Foxy’s up to?">> <<dialogue "Foxy" "foxy2.png" "I bought something to practice with, do you want to see?">> <<dialogue "Jack" "jack2.png" "Err… yes I would.">> <<nobr>> <div id="video-container"> <video id="main-video" src="sf11.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="sf11.mp4,sf11a.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Foxy" "foxy2.png" "Did I do it right?">> <<dialogue "Jack" "jack2.png" "Yes, very good.">> <<dialogue "Foxy" "foxy2.png" "You’re nice, [[bye.|x]]">> <<if visited() == 1>> <<set $foxy += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Foxy" "foxy2.png" "Do you think I’m sexy. Is your cock getting hard?">> <<dialogue "Jack" "jack2.png" "Err… yes, both.">> <<nobr>> <div id="video-container"> <video id="main-video" src="sf9a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="sf9a.mp4,sf9b.mp4,sf9c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Foxy" "foxy2.png" "I’m getting good aren’t I?">> <<dialogue "Jack" "jack2.png" "Err… yes, very good.">> <<dialogue "Foxy" "foxy2.png" "You’re so sweet, [[bye.|x]]">> <<if visited() == 1>> <<set $foxy += 10>> <<if $foxy > 100>><<set $foxy = 100>><</if>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<video src="pp1gym.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Think" "brain.png" "Wow, Pat looks hot. I'd better [[go.|v]]">> <<if visited() == 1>> <<set $pat += 10>> <</if>> <<set $fromEvent to true>>
<<dialogue "Julie" "julie2.png" "’ello, who are you?">> <<dialogue "Jack" "jack2.png" "I’m Jack Cummins, the new P.E. teacher.">> <video src="ju1w.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Julie" "julie2.png" "Whatcha doin’ in the woods?">> <<dialogue "Jack" "jack2.png" "I’m looking for good places to jog.">> <<dialogue "Julie" "julie2.png" "I love the woods, I like to come here and strip off, is that a problem?">> <<dialogue "Jack" "jack2.png" "No that’s fine. I’ll leave you to it, [[bye.|v]]">> <<if visited() == 1>> <<set $julie += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Think" "brain.png" "There’s a lot of study rooms and tv lounges here.">> <video src="ag2.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Alice" "alice2.png" "Who are you?">> <<dialogue "Jack" "jack2.png" "I’m Jack Cummins, the new P.E. teacher.">> <<dialogue "Alice" "alice2.png" "Am I on your monitor list?">> <<dialogue "Jack" "jack2.png" "Yes, sorry.">> <<dialogue "Alice" "alice2.png" "Don’t worry, I know it’s part of the job. Have you fucked any of the other girls yet? Sorry, rude question. There’s a lack of dick here so if you play your cards right I might put yours in my mouth. Haha, bye.">> <<dialogue "Jack" "jack2.png" "Err... ok, [[bye.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Think" "brain.png" "There’s a girl watching me. I think she’s one from my list.">> <video src="diva1w.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<nobr>> <<if hasVisited("dee2")>> <<dialogue "Dee" "dee2.png" "Hi Jack how about some one-on-one.">> <<else>> <<dialogue "Dee" "dee2.png" "You’re the new gym guy aren’t you? I don’t like working out with the other girls. How about some one-on-one while you check out my form.">> <</if>> <</nobr>> <video src="de1gym.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Dee" "dee2.png" "Thanks, see you around.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <img src="clock.png"> <img src="wake2.png"> <<dialogue "Think" "brain.png" "First week in a new job, I should hit the [[shower.|shower2]]">> <<set $fit -= 5>> <<set $pop to 0>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if visited() == 1>> <<goto "h1alt">> <<else>> <<goto "headx">> <</if>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<dialogue "Secretary" "sec2.png" "Hello Jack how are you settling in?">> <<dialogue "Jack" "jack2.png" "Honestly, it’s all a bit confusing trying to keep an eye on everything.">> <<dialogue "Secretary" "sec2.png" "You mean your list of girls? Don’t worry I’m sure you’ll figure out their routines. Have you decided which ones you want to fuck?">> <<dialogue "Jack" "jack2.png" "I can’t do that, I work here.">> <<nobr>> <div id="video-container"> <video id="main-video" src="off1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="off1.mp4,off2.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "Oh, don’t be such a wuss, they’re not patients or students and half of them are older than you. But now I’m busy so [[off you go.|v]]">> <<set $fromEvent to true>>
<<dialogue "Jack" "jack2.png" "Hello aren’t you Miss Chisum the English teacher?">> <<dialogue "Teacher" "teach2.png" "Sally, yes I teach English and Art to whoever bothers to turn up. You must be the new fitness guy.">> <<dialogue "Jack" "jack2.png" "Yes, Jack Cummins.">> <video src="tea1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Teacher" "teach2.png" "Well, nice to meet you Jack, bye.">> <<dialogue "Progress" "prog.png" "The teacher [[likes you.|v]]">> <<set $fromEvent to false>>
<<if visited() >= 2>> <<dialogue "Janitor" "jan2.png" "Hi Jack, I’m busy at the moment, come back another day.">> <<else>> <<dialogue "Janitor" "jan2.png" "You’re the new athletics guy right?">> <<dialogue "Jack" "jack2.png" "Yes, Jack Cummins.">> <<dialogue "Janitor" "jan2.png" "I’m Eric, come and see me if you want to get together.">> <<dialogue "Jack" "jack2.png" "Thanks Eric, bye.">> <</if>> <<dialogue "Progress" "prog.png" "The janitor [[likes you.|v]]">> <<set $fromEvent to false>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<dialogue "Jack" "jack2.png" "Hello, are you Dr. Brown.">> <<dialogue "Therapist" "ther2.png" "Call me Will, and I’m a therapist not a doctor. You must be the new sports guy.">> <<dialogue "Jack" "jack2.png" "That’s right, I’m Jack.">> <<dialogue "Therapist" "ther2.png" "Good to meet you Jack. Listen, as well as helping her with the guests, Edna lets me run a small private practice here. I help people with, umm, various problems. Most I can handle myself but the last sports guy would lend a hand if I needed it. Would you be interested in doing the same?">> <<dialogue "Jack" "jack2.png" "What would I need to do?">> <<dialogue "Therapist" "ther2.png" "I’m a bit busy just now but come to my office or rooms and I’ll brief you, ok?">> <<dialogue "Jack" "jack2.png" "Ok, bye.">> <<dialogue "Progress" "prog.png" "The therapist [[likes you.|v]]">> <<set $fromEvent to false>>
<<dialogue "Think" "brain.png" "There’s a lot of study rooms and tv lounges here.">> <<dialogue "Pat" "pat2.png" "Hi I’m Pat, are you the new P.E. teacher.">> <<dialogue "Jack" "jack2.png" "Yes, I’m Jack.">> <video src="pp1a.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Pat" "pat2.png" "Do you watch internet porn Jack?">> <<dialogue "Jack" "jack2.png" "Err… sometimes.">> <<dialogue "Pat" "pat2.png" "Have you ever seen me on the net?">> <<dialogue "Jack" "jack2.png" "Sorry no.">> <<dialogue "Pat" "pat2.png" "Oh well. [[See you around Jack.|v]]">> <<if visited() == 1>> <<set $pat += 10>> <</if>> <<set $fromEvent to true>>
<<dialogue "Pat" "pat2.png" "Hi Jack. How’s things.">> <<dialogue "Jack" "jack2.png" "Err… ok.">> <video src="pp1b.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Pat" "pat2.png" "Do you think you’ll wank off later thinking about me.">> <<dialogue "Jack" "jack2.png" "Probably, I’ll [[see you later.|x]]">> <<if visited() == 1>> <<set $pat += 10>> <</if>> <<set $fromEvent to true>> <<set $pop +=10>>
<<dialogue "Think" "brain.png" "I wonder what Pat’s up to?">> <<dialogue "Pat" "pat2.png" "Oh hi Jack, come and watch this.">> <<nobr>> <div id="video-container"> <video id="main-video" src="pp5.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="pp5.mp4,pp5a.mp4,pp5b.mp4" data-labels="GO IN,NEXT" data-index="0">GO IN</div> </div> <</nobr>> <<dialogue "Pat" "pat2.png" "D’you think that was hot, are you hard?">> <<dialogue "Jack" "jack2.png" "God yes.">> <<dialogue "Pat" "pat2.png" "Good job not wanking. See you [[next time.|x]]">> <<if visited() == 1>> <<set $pat += 10>> <</if>> <<set $pop +=10>> <<set $fromEvent to true>>
<<dialogue "Pat" "pat2.png" "Hi Jack, you wanna see something?">> <<dialogue "Jack" "jack2.png" "What is it.">> <<dialogue "Pat" "pat2.png" "It’s like a game, I put on a show and you have to watch without wanking. D’you wanna try?">> <<dialogue "Jack" "jack2.png" "Err ok.">> <<dialogue "Pat" "pat2.png" "Coolsie, come in and sit down.">> <<nobr>> <div id="video-container"> <video id="main-video" src="pp.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="pp.mp4,pp2.mp4,pp2a.mp4,pp2b.mp4" data-labels="GO IN,NEXT,NEXT" data-index="0">GO IN</div> </div> <</nobr>> <<dialogue "Pat" "pat2.png" "D’you think that was hot, are you hard?">> <<dialogue "Jack" "jack2.png" "Err yes kind of.">> <<dialogue "Pat" "pat2.png" "Ok, see you [[next time.|x]]">> <<if visited() == 1>> <<set $pat += 10>> <</if>> <<set $fromEvent to true>> <<set $pop +=10>>
<img src="pp6.png"> <<dialogue "Pat" "pat2.png" "Hi Jack, give us a few minutes to get ready.">> <<nobr>> <div id="video-container"> <video id="main-video" src="pp6a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="pp6a.mp4,pp6b.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Pat" "pat2.png" "D’you think that was hot, are you hard?">> <<dialogue "Jack" "jack2.png" "God yes.">> <<dialogue "Pat" "pat2.png" "Good job not wanking. See you [[next time.|x]]">> <<if visited() == 1>> <<set $pat += 10>> <</if>> <<set $pop +=10>> <<set $fromEvent to true>>
<<dialogue "Pat" "pat2.png" "Hi Jack, watch this.">> <<nobr>> <div id="video-container"> <video id="main-video" src="pp7a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="pp7a.mp4,pp7b.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Pat" "pat2.png" "D’you think that was hot, are you hard?">> <<dialogue "Jack" "jack2.png" "God yes.">> <<dialogue "Pat" "pat2.png" "Good job not wanking. See you [[next time.|x]]">> <<if visited() == 1>> <<set $pat += 10>> <</if>> <<set $pop +=10>> <<set $fromEvent to true>>
<img src="pp8.png"> <<dialogue "Pat" "pat2.png" "Hi Jack, come in and watch us.">> <<nobr>> <div id="video-container"> <video id="main-video" src="pp8a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="pp8a.mp4,pp8b.mp4,pp8c.mp4" data-labels="NEXT,NEXT" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Pat" "pat2.png" "D’you think that was hot, are you hard?">> <<dialogue "Jack" "jack2.png" "God yes.">> <<dialogue "Pat" "pat2.png" "Good job not wanking. See you [[next time.|x]]">> <<if visited() == 1>> <<set $pat += 10>> <</if>> <<set $pop +=10>> <<set $fromEvent to true>> <<set $test to 0>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<dialogue "Foxy" "foxy2.png" "Oh hello, do you think I look sophisticated?">> <<dialogue "Jack" "jack2.png" "Yes.">> <<dialogue "Foxy" "foxy2.png" "Oh thank you, ok you can fuck me.">> <<nobr>> <div id="video-container"> <video id="main-video" src="sf8a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="sf8a.mp4,sf8b.mp4,sf8c.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Foxy" "foxy2.png" "Did you like that?">> <<dialogue "Jack" "jack2.png" "Yes, thank you.">> <<dialogue "Foxy" "foxy2.png" "You’re welcome, [[bye.|x]]">> <<if visited() == 1>> <<set $foxy += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Diva" "diva2.png" "You’re the new sporty guy right?">> <<dialogue "Jack" "jack2.png" "Yes, Jack Cummins.">> <video src="diva3w.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Diva" "diva2.png" "Come… to my room sometime, I’ll help you Cummins. Haha.">> <<dialogue "Jack" "jack2.png" "Err… ok, [[bye.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Think" "brain.png" "There’s a lot of study rooms and tv lounges here.">> <<dialogue "Diva" "diva2.png" "Hi Jack, you think I’m hot?">> <<dialogue "Jack" "jack2.png" "Wow, yes.">> <video src="divagd1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Diva" "diva2.png" "Jerk off about me later, haha.">> <<dialogue "Jack" "jack2.png" "Err ok, [[bye.|v]]">> <<if visited() == 1>> <<set $diva += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Think" "brain.png" "There’s a lot of study rooms and tv lounges here.">> <<dialogue "Diva" "diva2.png" "Hi Jack, you want to see me dance?">> <<nobr>> <div id="video-container"> <video id="main-video" src="divagd2.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="divagd2.mp4,divagd3.mp4" data-index="0">dance</div> </div> <</nobr>> <<dialogue "Diva" "diva2.png" "You think I’m hot?">> <<dialogue "Jack" "jack2.png" "Wow, yes. [[See you later.|v]]">> <<if visited() == 1>> <<set $diva += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Think" "brain.png" "The same girl’s spying on me. Probably a voyeur, let’s give her a show.">> <video src="diva2w.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<if visited() == 1>> <<set $diva += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Diva" "diva2.png" "Hi Jack, you think I look hot?">> <<dialogue "Jack" "jack2.png" "Wow, yes.">> <video src="divagd1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Diva" "diva2.png" "I like you Jack, if you keep coming to see me I might let you fuck me.">> <<dialogue "Jack" "jack2.png" "Err… ok thanks, [[bye.|v]]">> <<set $fromEvent to true>> <<set $box +=1>>
<<dialogue "Secretary" "sec2.png" "Hi Jack, strip off, get on the bed and I’ll get you hard.">> <<nobr>> <div id="video-container"> <video id="main-video" src="red1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="red1.mp4,red2.mp4,red3.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "Mmmm yes. Good job Jack, don’t be a stranger.">> <<dialogue "Jack" "jack2.png" "[[Ok, bye.|x]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Secretary" "sec2.png" "Hello Jack. Now take off your clothes and do it for me.">> <<dialogue "Jack" "jack2.png" "Err, ok.">> <<nobr>> <div id="video-container"> <video id="main-video" src="sr1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="sr1.mp4,sr2.mp4" data-index="0">WANK</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "Yes that’s it, cum for me. Yes, nice, good job. Come back another day and I’ll fuck your brains out, ok?">> <<dialogue "Jack" "jack2.png" "[[Err, ok, bye.|x]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Secretary" "sec2.png" "Oh hello Jack, this horny bitch is Emily and somehow she got hold of a phone. I think we should show her what real exhibitionism is, ok. Sit there and film her. Ok Emily, suck it.">> <<nobr>> <div id="video-container"> <video id="main-video" src="pun1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="pun1.mp4,pun3.mp4,pun4.mp4" data-labels="SIT,FILM" data-index="0">SIT</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "Not bad, but you didn’t make him come, you’ve got a lot to learn. Thanks for your help Jack see you later.">> <<dialogue "Jack" "jack2.png" "[[No problem, bye.|x]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to true>>
<<dialogue "Think" "brain.png" "I said I’d help Will today.">> <<dialogue "Therapist" "ther2.png" "Hi Jack, this lady wants to pretend she's being violated at work.">> <<nobr>> <div id="video-container"> <video id="main-video" src="theoff7.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="theoff7.mp4,theoff3.mp4,theoff4.mp4,theoff5.mp4,theoff6.mp4" data-labels="NEXT,NEXT,NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Therapist" "ther2.png" "Good job Jack, see you next time.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "alice4alt">> <<else>> <<goto "alicegdx">> <</if>>
<video src="ag2b.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Alice" "alice2.png" "Hello, feast your eyes on this. I bet your dick’s getting hard isn’t.">> <<dialogue "Jack" "jack2.png" "Sorry, yes.">> <<dialogue "Alice" "alice2.png" "Haha you're funny, you should drop around again.">> <<dialogue "Jack" "jack2.png" "Ok, [[bye.|v]]">> <<if visited() == 1>> <<set $alice += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<nobr>> <<switch random(1, 3)>> <<case 1>> <video src="ag2.mp4" autoplay loop muted controls height="480px"></video> <<case 2>> <video src="ag2b.mp4" autoplay loop muted controls height="480px"></video> <<case 3>> <video src="ag2c.mp4" autoplay loop muted controls height="480px"></video> <</switch>> <</nobr>> <<dialogue "Alice" "alice2.png" "Sorry Jack, I’m busy, but drop back later, you never know.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $fromEvent to true>>
<<dialogue "Dee" "dee2.png" "Oh, you poor boy I’ve given you an erection. Let me take care of it for you.">> <<nobr>> <div id="video-container"> <video id="main-video" src="deg2a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="deg2a.mp4,deg2b.mp4,deg2c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Dee" "dee2.png" "Did you like that Jack.">> <<dialogue "Jack" "jack2.png" "Yes thank you.">> <<dialogue "Dee" "dee2.png" "Cool, [[see you around.|x]]">> <<if visited() == 1>> <<set $dee += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<video src="ag2c.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Alice" "alice2.png" "Look at this body Jack. I bet you’d like to slide your dirty dick into wouldn’t you?">> <<dialogue "Jack" "jack2.png" "Err… yes.">> <<dialogue "Alice" "alice2.png" "You’re hilarious, you should come round again.">> <<dialogue "Jack" "jack2.png" "Ok, [[bye.|v]]">> <<if visited() == 1>> <<set $alice += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Chef" "chef2.png" "I love having your cock in my mouth Jack but please suck me.">> <<nobr>> <div id="video-container"> <video id="main-video" src="chef6a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="choice-container"> <div class="click-box" data-video="chef6c.mp4">SUCK</div> <div class="click-box" data-video="chef6b.mp4">NO</div> </div> </div> <</nobr>> <<dialogue "Chef" "chef2.png" "Thank you Jack that was great.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<set $fromEvent to false>> <<set $test += 10>> <<set $gas to 0>>
<<dialogue "Janitor" "jan2.png" "Come in Jack.">> <<dialogue "Jack" "jack2.png" "Ok Eric, what do you want me to do?">> <<dialogue "Janitor" "jan2.png" "Get on your knees and suck.">> <<nobr>> <div id="video-container"> <video id="main-video" src="jan6a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="jan6a.mp4,jan6b.mp4,jan6c.mp4" data-labels="SUCK,swallow" data-index="0">SUCK</div> </div> <</nobr>> <<dialogue "Janitor" "jan2.png" "Not bad, next time I’ll fuck your brains out. [[Now go.|x]]">> <<set $fromEvent to false>> <<set $test += 10>> <<set $gas to 0>>
<<dialogue "Think" "brain.png" "I wonder what Dee’s up to?">> <<dialogue "Dee" "dee2.png" "Hi Jack, d’you think I look hot?">> <<dialogue "Jack" "jack2.png" "Yes.">> <<dialogue "Dee" "dee2.png" "Am I giving you an erection?">> <<dialogue "Jack" "jack2.png" "Err... yes.">> <<dialogue "Dee" "dee2.png" "Come in. I’ll help you take care of it.">> <<nobr>> <div id="video-container"> <video id="main-video" src="de6a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="de6a.mp4,de6b.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Wow, oh my god.">> <<dialogue "Dee" "dee2.png" "Good job Jack, [[see you around.|x]]">> <<if visited() == 1>> <<set $dee += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<if visited() == 1>> <<set $test += 10>> <</if>>
<<dialogue "Alice" "alice2.png" "Hey funny guy, if you come in right now I’ll let you put your dirty dick in my sexy mouth.">> <<nobr>> <div id="video-container"> <video id="main-video" src="alcr1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="alcr1.mp4,ag4a.mp4,ag4b.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Alice" "alice2.png" "That was cool, play your cards right and I’ll let you stick it in my ass. Would you like that?">> <<dialogue "Jack" "jack2.png" "Err… yes. [[Bye.|x]]">> <<if visited() == 1>> <<set $alice += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "julie4alt">> <<else>> <<goto "juliewx">> <</if>>
<<dialogue "Julie" "julie2.png" "’ello, Jack. Don’t worry about me I like to feel the wind and sun on my skin. You can look if you want it’s no problem.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ju2w.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ju2w.mp4,ju3w.mp4" data-index="0">LOOK</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Thanks, you’re very pretty. I’ll leave you to it, [[bye.|v]]">> <<if visited() == 1>> <<set $julie += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to true>>
<<if $test == 0>> <<goto "julie5alt">> <<else>> <<goto "juliewx">> <</if>>
<<dialogue "Julie" "julie2.png" "’ello Jack, beautiful day isn’t it?">> <<nobr>> <div id="video-container"> <video id="main-video" src="ju2w.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ju2w.mp4,ju3w.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Yes it is. I’ll leave you to it, [[bye.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Julie" "julie2.png" "’ello, Jack. Nice to see you again, d’you really think I’m pretty.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ju2w.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ju2w.mp4,ju3w.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Yes, you’re very pretty. I’ll leave you to it, [[bye.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Julie" "julie2.png" "’ello Jack. D’you wanna to come with me to my room. I want to give you a blowjob.">> <<dialogue "Jack" "jack2.png" "Err… ok.">> <<nobr>> <div id="video-container"> <video id="main-video" src="jul6.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="jul6.mp4,jul6a.mp4,jul6b.mp4,jul6c.mp4" data-labels="GO,NEXT,CUM" data-index="0">GO</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "That was really nice thank you.">> <<dialogue "Julie" "julie2.png" "I ‘ad fun too. See ya Jack.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $julie += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Julie" "julie2.png" "’ello Jack. D’you wanna to come with me to my room.">> <<dialogue "Jack" "jack2.png" "Err… ok.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ju6w.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ju6w.mp4,ju4w.mp4,ju5w.mp4" data-labels="GO,CUM" data-index="0">GO</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "That was really nice thank you.">> <<dialogue "Julie" "julie2.png" "I ‘ad fun too. See ya Jack.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $julie += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Jack" "jack2.png" "I’m not sure you supposed to be using the teacher’s laptop.">> <<dialogue "Dee" "dee2.png" "It’s not connected to the net but please don't say anything, ok?">> <<dialogue "Jack" "jack2.png" "Well, oooh…..">> <<nobr>> <div id="video-container"> <video id="main-video" src="de5.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="de5.mp4,de5a.mp4,de5b.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Dee" "dee2.png" "Now, you’re not going to say anything are you?">> <<dialogue "Jack" "jack2.png" "No, no, of course not.">> <<dialogue "Dee" "dee2.png" "Thanks Jack, [[see you around.|x]]">> <<if visited() == 1>> <<set $dee += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Dee" "dee2.png" "Hi Jack. How’s the job.">> <<dialogue "Jack" "jack2.png" "A bit confusing.">> <<dialogue "Dee" "dee2.png" "I get that, a place full exhibitionists wanting you to look at their tits.">> <<nobr>> <div id="video-container"> <video id="main-video" src="de1cr.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="de1cr.mp4,de2cr.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Dee" "dee2.png" "What do you think of mine?">> <<dialogue "Jack" "jack2.png" "Wow.">> <<dialogue "Dee" "dee2.png" "Oh you’ve turn red, how charming, you’re shy. Don’t worry that won’t last long here, [[see you around.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<nobr>> <<if hasVisited("dee1")>> <<dialogue "Dee" "dee2.png" "Hi Jack. You’re looking fit.">> <<else>> <<dialogue "Dee" "dee2.png" "You’re the new gym guy aren’t you? Cool, we need more cock around here.">> <</if>> <</nobr>> <video src="de1cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Dee" "dee2.png" "See you around.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<if $test == 0>> <<goto "dee4alt">> <<else>> <<goto "deegymx">> <</if>>
<<if $test == 0>> <<goto "dee5alt">> <<else>> <<goto "deeschx">> <</if>>
<<dialogue "Think" "brain.png" "There’s a lot of study rooms and tv lounges here.">> <<dialogue "Dee" "dee2.png" "Hi Jack, d’you think I look hot?">> <<dialogue "Jack" "jack2.png" "Yes.">> <video src="red.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Dee" "dee2.png" "Thanks Jack, [[see you around.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<if $test == 0>> <<goto "dee7alt">> <<else>> <<goto "deegdx">> <</if>>
<<dialogue "Dee" "dee2.png" "Hi Jack how about some more one-on-one.">> <video src="de1gym.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Dee" "dee2.png" "Thanks, see you around.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Dee" "dee2.png" "Hi Jack. You’re looking fit.">> <<dialogue "Jack" "jack2.png" "Thanks.">> <video src="de1cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Dee" "dee2.png" "See you around.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Dee" "dee2.png" "Hi Jack, d’you think I look hot?">> <<dialogue "Jack" "jack2.png" "Yes.">> <video src="red.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Dee" "dee2.png" "Thanks Jack, [[see you around.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if visited() == 1>> <<goto "h6alt">> <<else>> <<goto "headx">> <</if>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if visited() == 1>> <<goto "h4alt">> <<else>> <<goto "headz1">> <</if>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if visited() == 1>> <<goto "h3alt">> <<else>> <<goto "headx">> <</if>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if visited() == 1>> <<goto "h2alt">> <<else>> <<goto "headx">> <</if>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if visited() == 1>> <<goto "h9alt">> <<else>> <<goto "headx">> <</if>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if visited() == 1>> <<goto "h8alt">> <<else>> <<goto "headz2">> <</if>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if visited() == 1>> <<goto "h10alt">> <<else>> <<goto "headx">> <</if>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if visited() == 1>> <<goto "h7alt">> <<else>> <<goto "headx">> <</if>>
<<if hasVisited("secoff2")>> <<dialogue "Secretary" "sec2.png" "Hi Jack, shown any of the girls your cock yet? Never mind, I'm too busy to talk right now but remember what I said about a show and you'll get a piece of this in return.">> <<else>> <<dialogue "Secretary" "sec2.png" "Hi Jack, fucked any of girls yet?">> <<dialogue "Jack" "jack2.png" "Er, no I haven’t.">> <<dialogue "Secretary" "sec2.png" "Did you know I was one of Edna’s first guests, then my family disowned me so I stayed on as her secretary?">> <<dialogue "Jack" "jack2.png" "You were a guest?">> <</if>> <<nobr>> <div id="video-container"> <video id="main-video" src="sec2accc.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="sec2accc.mp4,secroom4.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<nobr>> <<if hasVisited("secoff2")>> <<dialogue "Secretary" "sec2.png" "Oh, you’re turning red, how quaint. Don’t be shy.">> <<else>> <<dialogue "Secretary" "sec2.png" "I just said that. Yes, voyeurism, I use to pay the boys at school to wank so I could watch. Come back sometime, give me a good show and I’ll fuck your brains out, ok?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "Er, thanks, [[I should be going, bye.|v]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to true>>
<<if $test == 0>> <<goto "secroom4alt">> <<else>> <<goto "secroomx">> <</if>>
<<if $test == 0>> <<goto "secroom3alt">> <<else>> <<goto "secroomx">> <</if>>
<<if hasVisited("secroom2")>> <<dialogue "Secretary" "sec2.png" "Hi Jack, shown any of the girls your cock yet? Never mind, I'm too busy to talk right now but come and see me anytime you want.">> <<else>> <<dialogue "Secretary" "sec2.png" "Hi Jack, fucked any of girls yet?">> <<dialogue "Jack" "jack2.png" "Er, no I haven’t.">> <<dialogue "Secretary" "sec2.png" "Did you know I was one of Edna’s first guests, then my family disowned me so I stayed on as her secretary?">> <<dialogue "Jack" "jack2.png" "You were a guest?">> <<dialogue "Secretary" "sec2.png" "I just said that. Yes, voyeurism, I use to pay the boys at school to wank so I could watch. Come to my rooms sometime and if you give me a good show I’ll fuck your brains out in return.">> <</if>> <video src="off3.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Jack" "jack2.png" "Er, thanks, [[see you later, bye.|v]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to true>>
<<dialogue "Secretary" "sec2.png" "Hello Jack how are you settling in?">> <<dialogue "Jack" "jack2.png" "Honestly, it’s all a bit confusing trying to keep an eye on everything.">> <<dialogue "Secretary" "sec2.png" "You mean your list of girls? Don’t worry I’m sure you’ll figure out their routines. Have you decided which ones you want to fuck?">> <<dialogue "Jack" "jack2.png" "I can’t do that, I work here.">> <<nobr>> <div id="video-container"> <video id="main-video" src="sec2acca.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="sec2acca.mp4,sec2accb.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "Oh, don’t be such a wuss, they’re not patients or students and half of them are older than you. But now I’m busy so [[off you go.|v]]">> <<set $fromEvent to false>>
<video src="sec2acca.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Secretary" "sec2.png" "Hi Jack, I’m always happy to see you but I have plans, so raincheck ok.">> <<dialogue "Jack" "jack2.png" "Er ok, bye.">> <<dialogue "Think" "brain.png" "I'd better [[go.|v]]">> <<set $fromEvent to false>>
<<if $test == 0>> <<goto "secoff4alt">> <<else>> <<goto "secoffx">> <</if>>
<video src="intro1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Hi Jack, I'm too busy right now but do [[come back and see me.|v]]">> <<set $fromEvent to true>>
<video src="off3grey.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Secretary" "sec2.png" "Hi Jack, show me your cock. No forget that I'm too busy right now but do come to my room, ok?">> <<dialogue "Jack" "jack2.png" "Er ok, bye.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $fromEvent to true>>
<<dialogue "Teacher" "teach2.png" "Hello Jack, come in.">> <<nobr>> <div id="video-container"> <video id="main-video" src="tc.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="tc.mp4,t3b.mp4,t3c.mp4" data-labels="GO IN,CUM" data-index="0">GO IN</div> </div> <</nobr>> <<dialogue "Teacher" "teach2.png" "Thanks Jack, come back [[anytime.|v]]">> <<set $test += 10>> <<if $test >= 11>><<goto "teacherx">><</if>>
<<dialogue "Teacher" "teach2.png" "Hello Jack, come in.">> <<nobr>> <div id="video-container"> <video id="main-video" src="td.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="td.mp4,t4b.mp4,t4c.mp4" data-labels="GO IN,CUM" data-index="0">GO IN</div> </div> <</nobr>> <<dialogue "Teacher" "teach2.png" "Thanks Jack, come back [[anytime.|v]]">> <<set $fromEvent to false>> <<set $test += 10>> <<if $test >= 11>><<goto "teacherx">><</if>>
<<dialogue "Teacher" "teach2.png" "Hello Jack, come in.">> <<nobr>> <div id="video-container"> <video id="main-video" src="tb.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="tb.mp4,t2b.mp4,t2c.mp4" data-labels="GO IN,CUM" data-index="0">GO IN</div> </div> <</nobr>> <<dialogue "Teacher" "teach2.png" "Thanks Jack, come back [[anytime.|v]]">> <<set $fromEvent to false>> <<set $test += 10>> <<if $test >= 11>><<goto "teacherx">><</if>>
<<if visited() >= 2>><<dialogue "Teacher" "teach2.png" "Hi Jack, come in.">><<else>> <<dialogue "Teacher" "teach2.png" "Hello Jack.">> <<dialogue "Jack" "jack2.png" "You said you’d show me what you’re being treated for.">> <<dialogue "Teacher" "teach2.png" "Yes I did. Ok, come in and stand still while I pull down your pants.">> <<dialogue "Jack" "jack2.png" "Err….ooohhh.">> <</if>> <<nobr>> <div id="video-container"> <video id="main-video" src="ta.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ta.mp4,t1b.mp4,t1c.mp4" data-labels="GO IN,CUM" data-index="0">GO IN</div> </div> <</nobr>> <<dialogue "Teacher" "teach2.png" "Thanks Jack, come back [[anytime.|v]]">> <<set $fromEvent to false>> <<set $test += 10>> <<if $test >= 11>><<goto "teacherx">><</if>>
<<if visited() >= 2>><<dialogue "Teacher" "teach2.png" "Hi Jack, want another look?">><<else>> <<dialogue "Teacher" "teach2.png" "Hi Jack, how are finding life here.">> <<dialogue "Jack" "jack2.png" "A bit confusing, how did you end up here?">> <<dialogue "Teacher" "teach2.png" "I chose to work here so I could get free treatment from Edna.">> <<dialogue "Jack" "jack2.png" "Treatment for what?">> <<dialogue "Teacher" "teach2.png" "Come over here.">> <</if>> <<nobr>> <div id="video-container"> <video id="main-video" src="tea1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="tea1.mp4,tea1b.mp4" data-index="0">OK</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Wow. Exhibitionism.">> <<dialogue "Teacher" "teach2.png" "No, come to my room sometime and I’ll show you, bye.">> <<dialogue "Progress" "prog.png" "The teacher [[likes you more.|v]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<if visited() == 1>> <<set $test += 10>> <</if>> <<set $fromEvent to true>>
<<dialogue "Therapist" "ther2.png" "Hi Jack, I’m a bit busy at the moment, I’ll catch up with you later, ok.">> <<dialogue "Jack" "jack2.png" "Ok Will, see you [[later.|v]]">>
<<dialogue "Think" "brain.png" "So that counts as therapy. Must be a nice job.">> <video src="theroom2.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "I'd better [[go before they see me.|v]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to true>>
<<dialogue "Think" "brain.png" "So that’s what therapist’s do. Must be nice.">> <video src="theoff2.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Think" "brain.png" "I'd better [[go before they see me.|v]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to true>>
<<dialogue "Jack" "jack2.png" "Hello, are you Dr. Brown.">> <<dialogue "Therapist" "ther2.png" "Call me Will, and I’m a therapist not a doctor. You must be the new sports guy.">> <<dialogue "Jack" "jack2.png" "That’s right, I’m Jack.">> <<dialogue "Therapist" "ther2.png" "Good to meet you Jack. Listen, as well as helping her with the guests, Edna lets me run a small private practice here. I help people with, umm, various problems. Most I can handle myself but the last sports guy here would lend a hand if I needed it. Would you be interested in doing the same?">> <<dialogue "Jack" "jack2.png" "What would I need to do?">> <<dialogue "Therapist" "ther2.png" "I’m a bit busy just now but come to my office or rooms and I’ll brief you, ok?">> <<dialogue "Jack" "jack2.png" "Ok, bye.">> <<dialogue "Progress" "prog.png" "The therapist [[likes you.|v]]">> <<set $fromEvent to false>>
<<if ($test == 0 && $sun >= 20) || hasVisited("week6")>> <<goto "theoff5alt">> <<else>> <<goto "theoffx">> <</if>>
<<dialogue "Therapist" "ther2.png" "Hi Jack, I’m a bit busy at the moment, I’ll catch up with you later, ok.">> <<dialogue "Jack" "jack2.png" "Ok Will, see you [[later.|v]]">> <<set $fromEvent to false>>
<img src="the1.png"> <<dialogue "Therapist" "ther2.png" "Hi Jack, I’m a bit busy at the moment, I’ll catch up with you later, ok.">> <<dialogue "Jack" "jack2.png" "Ok Will, see you [[later.|v]]">> <<set $fromEvent to false>>
<<dialogue "Janitor" "jan2.png" "Hi Jack, I’m busy at the moment, come back another day.">> <<dialogue "Progress" "prog.png" "The janitor [[likes you.|v]]">> <<set $fromEvent to false>>
<<if $test == 0 && $gas == 10>> <<goto "janitor6alt">> <<else>> <<goto "janx">> <</if>>
<<dialogue "Janitor" "jan2.png" "Hi Jack, come in and sit down">> <<dialogue "Jack" "jack2.png" "I’m sorry Eric I'm not really ready for this, give me a little time please.">> <<nobr>> <div id="video-container"> <video id="main-video" src="jan2.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="jan2.mp4,jan3.mp4" data-index="0">STOP</div> </div> <</nobr>> <<dialogue "Janitor" "jan2.png" "Ok, but don’t mess me around, ok?">> <<dialogue "Jack" "jack2.png" "Ok, thanks Eric, [[bye.|v]]">> <<set $fromEvent to true>>
<<dialogue "Janitor" "jan2.png" "Hi Jack, I’m busy at the moment, come back another day.">> <<dialogue "Progress" "prog.png" "The janitor [[likes you.|v]]">> <<set $fromEvent to false>>
<<if visited() == 1>> <<dialogue "Think" "brain.png" "Wow, Eric’s gay, I wonder who the other guy is?">> <<else>> <<dialogue "Think" "brain.png" "Eric’s having fun.">> <</if>> <video src="jan1.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Think" "brain.png" "Why am I getting turned on watching this, [[I’d better go|v]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to true>>
<<dialogue "Janitor" "jan2.png" "Hi Jack, I’m busy at the moment, come back another day.">> <<dialogue "Progress" "prog.png" "The janitor [[likes you.|v]]">> <<set $fromEvent to false>>
<<if $test == 0 && $gas == 10>> <<goto "janitor8alt">> <<else>> <<goto "janx">> <</if>>
<<if $test == 0 && $gas == 10>> <<goto "janitor9alt">> <<else>> <<goto "janx">> <</if>>
<<if $test == 0 && $gas == 10>> <<goto "chef5alt">> <<else>> <<goto "chefx">> <</if>>
<<if $test == 0 && $gas == 10>> <<goto "chef6alt">> <<else>> <<goto "chefx">> <</if>>
<<if $test == 0 && $gas == 10>> <<goto "chef4alt">> <<else>> <<goto "chefx">> <</if>>
<<dialogue "Chef" "chef2.png" "Hello Mr. Physical, I’m so happy you changed your mind, lie back and let me take care of you.">> <<nobr>> <div id="video-container"> <video id="main-video" src="chef1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="chef1.mp4,chef2.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Thanks Chef.">> <<dialogue "Chef" "chef2.png" "My pleasure, [[come anytime.|v]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to false>> <<set $gas to 0>> <<set $test += 10>>
<<dialogue "Chef" "chef2.png" "Hello Mr. Physical, I’m so happy you’ve err.. come.">> <<dialogue "Jack" "jack2.png" "Err.. thanks?">> <<dialogue "Chef" "chef2.png" "Lie back on the bed so we can chat.">> <<nobr>> <div id="video-container"> <video id="main-video" src="chefkiss.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="chefkiss.mp4,chefkiss2.mp4" data-index="0">LEAVE</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "I know what happened in the shower, but I'm not ready for this, maybe I’ll come back [[another time.|v]]">> <<set $fromEvent to true>>
<<dialogue "Chef" "chef2.png" "Oh goody, Mr. Physical, lie back and let me take care of you.">> <<nobr>> <div id="video-container"> <video id="main-video" src="chef4a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="chef4a.mp4,chef4b.mp4,chef4c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Thanks Chef.">> <<dialogue "Chef" "chef2.png" "My pleasure, [[come anytime.|x]]">> <<set $fromEvent to false>> <<set $test += 10>> <<set $gas to 0>>
<<dialogue "Chef" "chef2.png" "Oh goody, do whatever you want to me, please.">> <<nobr>> <div id="video-container"> <video id="main-video" src="chef5a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="chef5a.mp4,chef5b.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Thanks Chef.">> <<dialogue "Chef" "chef2.png" "My pleasure, [[come anytime.|x]]">> <<set $fromEvent to false>> <<set $test += 10>> <<set $gas to 0>>
<<nobr>> <<if visited() == 1>> <video src="chefx1.mp4" autoplay loop muted controls height="480px"></video> <<else>> <video src="chefx.mp4" autoplay loop muted controls height="480px"></video> <</if>> <</nobr>> <<nobr>> <<if visited() == 1>> <<dialogue "Think" "brain.png" "That's the driver that delivers the food from the wholesaler. I'd better [[go before they see me.|v]]">> <<else>> <<dialogue "Think" "brain.png" "Why am I getting a hard on watching this? [[I'd better go.|v]]">> <</if>> <</nobr>> <<set $fromEvent to true>>
<<if lastVisited("mapmorn") is 4>> <<goto "mapaft">><</if>> <<if lastVisited("mapaft") is 4>> <<goto "mapeve">><</if>> <<if lastVisited("mapeve") is 4>> <<goto "bed">><</if>> <<if lastVisited("mapmorn1") is 4>> <<goto "mapaft1">><</if>> <<if lastVisited("mapaft1") is 4>> <<goto "mapeve1">><</if>> <<if lastVisited("mapeve1") is 4>> <<goto "bed1">><</if>> <<if lastVisited("mapmorns") is 4>> <<goto "mapafts">><</if>> <<if lastVisited("mapafts") is 4>> <<goto "mapeves">><</if>> <<if lastVisited("mapeves") is 4>> <<goto "beds">><</if>> <<if lastVisited("mapmornw2") is 4>> <<goto "mapaftw2">><</if>> <<if lastVisited("mapaftw2") is 4>> <<goto "mapevew2">><</if>> <<if lastVisited("mapevew2") is 4>> <<goto "w2bed">><</if>> <<if lastVisited("mapmornw2s") is 4>> <<goto "mapaftw2s">><</if>> <<if lastVisited("mapaftw2s") is 4>> <<goto "mapevew2s">><</if>> <<if lastVisited("mapevew2s") is 4>> <<goto "w2beds">><</if>> <<if lastVisited("mapmornw3") is 4>> <<goto "mapaftw3">><</if>> <<if lastVisited("mapaftw3") is 4>> <<goto "mapevew3">><</if>> <<if lastVisited("mapevew3") is 4>> <<goto "w3bed">><</if>> <<if lastVisited("mapmornw3s") is 4>> <<goto "mapaftw3s">><</if>> <<if lastVisited("mapaftw3s") is 4>> <<goto "mapevew3s">><</if>> <<if lastVisited("mapevew3s") is 4>> <<goto "w3beds">><</if>> <<if lastVisited("mapmornw6") is 4>> <<goto "mapaftw6">><</if>> <<if lastVisited("mapaftw6") is 4>> <<goto "mapevew6">><</if>> <<if lastVisited("mapevew6") is 4>> <<goto "w6bed">><</if>> <<if lastVisited("mapmornw6s") is 4>> <<goto "mapaftw6s">><</if>> <<if lastVisited("mapaftw6s") is 4>> <<goto "mapevew6s">><</if>> <<if lastVisited("mapevew6s") is 4>> <<goto "w6beds">><</if>> <<if lastVisited("mapmornw9") is 4>> <<goto "mapaftw9">><</if>> <<if lastVisited("mapaftw9") is 4>> <<goto "mapevew9">><</if>> <<if lastVisited("mapevew9") is 4>> <<goto "w9bed">><</if>> <<if lastVisited("mapmornw9s") is 4>> <<goto "mapaftw9s">><</if>> <<if lastVisited("mapaftw9s") is 4>> <<goto "mapevew9s">><</if>> <<if lastVisited("mapevew9s") is 4>> <<goto "w9beds">><</if>>
<<link "<img src='myroom.png'>">> <<goto "day2">> <</link>> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|day2]]">>
<<if not hasVisited("secroom1") && not hasVisited("secoff1")>> <<goto "secroom1">> <<elseif not hasVisited("secroom2")>> <<goto "secroom2">> <<elseif not hasVisited("secroom3alt")>> <<goto "secroom3">> <<elseif not hasVisited("secroom4alt")>> <<goto "secroom4">> <<else>> <<goto "secroom5">> <</if>>
<<if not hasVisited("secw1alt")>> <<goto "secw1">> /* Loop until secw1alt */ <<elseif not hasVisited("secw2alt") && $sun >= 20>> <<goto "secw2">> /* Requires $sun >= 20 */ <<else>> <<goto "secw3">> /* Default when sun too low or both alts visited */ <</if>>
<<if not hasVisited("theroom1") && not hasVisited("theoff1")>> <<goto "theroom1">> <<elseif not hasVisited("theroom2")>> <<goto "theroom2">> <<elseif not hasVisited("theroom3") && not hasVisited("theoff3")>> <<goto "theroom3">> <<elseif not hasVisited("theroom4")>> <<goto "theroom4">> <<else>> <<goto "theroom4">> <!-- Fallback --> <</if>>
<img src="mandf.png" usemap="#image-map"> <<dialogue "Think" "brain.png" "Should I peek in the women's or go straight into the men's.">> <map name="image-map"> <area data-passage="show2m" alt="show2m" title="shower" coords="245,405,99,79" shape="rect"> <area data-passage="show2f" alt="show2f" title="shower" coords="403,83,549,400" shape="rect"> </map>
<<if lastVisited("show2f") ==1>> <img src="sb1.png"> <<else>> <video src="mesh.mp4" autoplay loop muted controls height="480px"></video> <</if>> <<dialogue "Think" "brain.png" "I should grab some breakfast in the [[canteen|mapmorn1]] then get to work.">> <<link "<img src='bfast.png'>">> <<goto "mapmorn1">> <</link>>
<<nobr>> <<if visited() == 2>> <video src="fshow1.mp4" autoplay loop muted controls height="480px"></video> <<else>> <img src="ms.png"> <</if>> <</nobr>> <<nobr>> <<if visited() == 2>> <<dialogue "Think" "brain.png" "Oops, is that the teacher? I’d better [[shower in the men's.|show2m]]">> <<else>> <<dialogue "Think" "brain.png" "Empty. I'll get a [[shower in the men's.|show2m]]">> <</if>> <</nobr>>
<<nobr>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('1wm')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('2wm')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('3wm')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('4wm')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('5wm')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('6wm')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|1wm]] [[2. Gym|2wm]] [[3. Staff accommodation|3wm]] [[4. School|4wm]] [[5. The Head's rooms|5wm]] [[6. Guest dormitory|6wm]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('1wa')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('2wa')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('3wa')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('4wa')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('5wa')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('6wa')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|1wa]] [[2. Gym|2wa]] [[3. Staff accommodation|3wa]] [[4. School|4wa]] [[5. The Head's rooms|5wa]] [[6. Guest dormitory|6wa]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('1we')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('2we')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('3we')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('4we')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('5we')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('6we')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|1we]] [[2. Gym|2we]] [[3. Staff accommodation|3we]] [[4. School|4we]] [[5. The Head's rooms|5we]] [[6. Guest dormitory|6we]]
<img src="myroom.png"> <<nobr>> <<if visited() == 5 || visited() == 10>> <<dialogue "Sleep" "ni.png" "Time to go to [[bed.|sunday1]]">> <<else>> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|day2]]">> <</if>> <</nobr>> <<set $pop to 0>>
<img src="woods.png"> <<dialogue "Think" "brain.png" "It's my first week in this new job, I should be at the [[gym.|2wm]]">> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<nobr>> <<if visited() == 1>><video src="fit2.mp4" autoplay loop muted controls height="360px"></video><</if>> <<if visited() == 2>><video src="foot1.mp4" autoplay loop muted controls height="360px"></video><</if>> <<if visited() == 3>><video src="fit3.mp4" autoplay loop muted controls height="360px"></video><</if>> <<if visited() == 4>><video src="fit4.mp4" autoplay loop muted controls height="360px"></video><</if>> <<if visited() == 5>><video src="foot2.mp4" autoplay loop muted controls height="360px"></video><</if>> <</nobr>> <<dialogue "Afternoon" "aft.png" "Time to grab a quick lunch in the canteen then decide what to do this [[afternoon.|mapaft1]]">> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="sacom.png"> <<dialogue "Think" "brain.png" "It's my first week in this new job, I should be at the [[gym.|2wm]]">>
<img src="school.png"> <<dialogue "Think" "brain.png" "It's my first week in this new job, I should be at the [[gym.|2wm]]">>
<img src="head.png"> <<dialogue "Think" "brain.png" "It's my first week in this new job, I should be at the [[gym.|2wm]]">>
<img src="gd.png"> <<dialogue "Think" "brain.png" "It's my first week in this new job, I should be at the [[gym.|2wm]]">>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="woods1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="juliew" alt="juliew" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="divaw" alt="divaw" title="Diva" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="school.png"> <<dialogue "Think" "brain.png" "Disrupting a class would be dumb.">> <<nobr>> <<switch random(1, 3)>> <<case 1>> <img src="office.png"> <img src="common.png"> <<case 2>> <img src="office.png"> <img src="stu.png"> <<case 3>> <img src="stu.png"> <img src="common.png"> <</switch>> <</nobr>> <<dialogue "Think" "brain.png" "There's a lot of study rooms, I should check them along with the common room and offices.">> <<nobr>> <<if visited() == 1>> <img src="sch1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashsch" alt="ashsch" title="Ashley" coords="153,96,82" shape="circle"> <area data-passage="deesch" alt="deesch" title="Dee" coords="157,269,79" shape="circle"> <area data-passage="secoff" alt="secoff" title="Secretary" coords="492,94,79" shape="circle"> <area data-passage="theoff" alt="theoff" title="Therapist" coords="491,274,74" shape="circle"> </map> <<else>> <img src="sch3.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashsch" alt="ashsch" title="Ashley" coords="104,92,75" shape="circle"> <area data-passage="deesch" alt="deesch" title="Dee" coords="100,266,74" shape="circle"> <area data-passage="faysch" alt="faysch" title="Fay" coords="336,180,72" shape="circle"> <area data-passage="secoff" alt="secoff" title="Secretary" coords="545,91,76" shape="circle"> <area data-passage="foxysch" alt="foxysch" title="Foxy" coords="541,269,77" shape="circle"> </map> <</if>> <</nobr>>
<img src="scom2.png" usemap="#image-map"> <map name="image-map"> <area data-passage="chef" alt="chef" title="Chef" coords="169,165,113" shape="circle"> <area data-passage="teacher" alt="teacher" title="Teacher" coords="474,165,112" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="study.png"> <img src="tv.png"> <<nobr>> <img src="gd12.png" usemap="#image-map"> <map name="image-map"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="139,181,81" shape="circle"> <area data-passage="saragd" alt="saragd" title="Sara" coords="339,179,82" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="529,178,79" shape="circle"> </map> <</nobr>> <<dialogue "Think" "brain.png" "I'll have a wander around the dorm coridors then take a look at the T.V. lounge and the study rooms.">>
<img src="woods.png"> <<dialogue "Think" "brain.png" "I guess a jog in the woods would be cool.">> <img src="jogtest.gif" height="400"> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|bed1]]">> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="scom1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="112,185,92" shape="circle"> <area data-passage="theroom" alt="theroom" title="Therapist" coords="319,184,86" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="524,179,89" shape="circle"> </map>
<img src="school.png"> <<nobr>> <<switch random(1, 3)>> <<case 1>> <img src="office.png"> <img src="common.png"> <<case 2>> <img src="office.png"> <img src="stu.png"> <<case 3>> <img src="stu.png"> <img src="common.png"> <</switch>> <</nobr>> <<dialogue "Think" "brain.png" "There's a lot of empty rooms here I should check them out along with the common room and offices.">> <img src="sch4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="139,181,81" shape="circle"> <area data-passage="chef" alt="chef" title="Chef" coords="339,179,82" shape="circle"> <area data-passage="theoff" alt="theoff" title="Therapist" coords="529,178,79" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="study.png"> <img src="tv.png"> <<nobr>> <img src="gd6.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgd" alt="ashgd" title="Ashley" coords="102,99,78" shape="circle"> <area data-passage="patgd" alt="patgd" title="Pat" coords="241,265,80" shape="circle"> <area data-passage="cargd" alt="cargd" title="Carrey" coords="397,95,83" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="534,266,79" shape="circle"> </map> <</nobr>> <<dialogue "Think" "brain.png" "I'll have a wander around the dorm coridors then take a look at the t.v. lounges and the study rooms.">>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <img src="clock.png"> <img src="wake2.png"> <<dialogue "Think" "brain.png" "Sunday, cool. Time for a [[shower.|showers]]">> <<set $sun += 10>> <<set $fit -= 5>>
<img src="woods1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="juliew" alt="juliew" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="divaw" alt="divaw" title="Diva" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="scom3.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teacher" alt="teacher" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="theroom" alt="theroom" title="Therapist" coords="529,176,80" shape="circle"> </map>
<img src="school.png"> <<nobr>> <<switch random(1, 3)>> <<case 1>> <img src="office.png"> <img src="common.png"> <<case 2>> <img src="office.png"> <img src="stu.png"> <<case 3>> <img src="stu.png"> <img src="common.png"> <</switch>> <</nobr>> <<dialogue "Think" "brain.png" "There's a lot of empty rooms here I should check them out along with the common room and offices.">> <img src="sch4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="139,181,81" shape="circle"> <area data-passage="chef" alt="chef" title="Chef" coords="339,179,82" shape="circle"> <area data-passage="theoff" alt="theoff" title="Therapist" coords="529,178,79" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="study.png"> <img src="tv.png"> <img src="gd16.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgd" alt="ashgd" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargd" alt="cargd" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="saragd" alt="saragd" title="Sara" coords="323,271,83" shape="circle"> <area data-passage="patgd" alt="patgd" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map>
<img src="mandf.png" usemap="#image-map"> <<dialogue "Think" "brain.png" "Should I peek in the women's or go straight into the men's.">> <map name="image-map"> <area data-passage="showsm" alt="showsm" title="shower" coords="245,405,99,79" shape="rect"> <area data-passage="showsf" alt="showsf" title="shower" coords="403,83,549,400" shape="rect"> </map>
<video src="fshowd.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Oh my god, is that the secretary? I'd better [[shower in the men's.|showsm]]">>
<video src="mesh.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "I should grab some breakfast in the [[canteen.|mapmorns]]">> <<link "<img src='bfast.png'>">> <<goto "mapmorns">> <</link>>
<<nobr>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('1sm')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('2sm')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('3sm')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('4sm')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('5sm')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('6sm')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|1sm]] [[2. Gym|2sm]] [[3. Staff accommodation|3sm]] [[4. School|4sm]] [[5. The Head's rooms|5sm]] [[6. Guest dormitory|6sm]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('1we')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('2we')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('3we')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('4we')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('5we')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('6we')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|1se]] [[2. Gym|2se]] [[3. Staff accommodation|3se]] [[4. School|4se]] [[5. The Head's rooms|5se]] [[6. Guest dormitory|6se]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<if not hasVisited("head1")>> <<dialogue "Game" "gear.gif" "It’s Sunday afternoon, you should keep your appointment with the [[Head.|5sa]]">> <<else>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('1sa')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('2sa')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('3sa')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('4sa')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('5sa')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('6sa')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|1sa]] [[2. Gym|2sa]] [[3. Staff accommodation|3sa]] [[4. School|4sa]] [[5. The Head's rooms|5sa]] [[6. Guest dormitory|6sa]] <</if>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="woods1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="juliew" alt="juliew" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="divaw" alt="divaw" title="Diva" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="scom3.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teacher" alt="teacher" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="theroom" alt="theroom" title="Therapist" coords="529,176,80" shape="circle"> </map>
<img src="school.png"> <<nobr>> <<switch random(1, 3)>> <<case 1>> <img src="office.png"> <img src="common.png"> <<case 2>> <img src="office.png"> <img src="stu.png"> <<case 3>> <img src="stu.png"> <img src="common.png"> <</switch>> <</nobr>> <<dialogue "Think" "brain.png" "There's a lot of study rooms, I should check them out along with the common room and offices.">> <img src="sch4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="139,181,81" shape="circle"> <area data-passage="chef" alt="chef" title="Chef" coords="339,179,82" shape="circle"> <area data-passage="theoff" alt="theoff" title="Therapist" coords="529,178,79" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="study.png"> <img src="tv.png"> <img src="gd16.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgd" alt="ashgd" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargd" alt="cargd" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="saragd" alt="saragd" title="Sara" coords="323,271,83" shape="circle"> <area data-passage="patgd" alt="patgd" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map>
<img src="woods.png"> <<dialogue "Think" "brain.png" "I guess a jog in the woods would be cool.">> <img src="jogtest.gif" height="400"> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|bed1]]">> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym.png"> <<dialogue "Think" "brain.png" "I guess a workout would be good.">> <video src="megym1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|bed1]]">> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="scom3.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teacher" alt="teacher" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="theroom" alt="theroom" title="Therapist" coords="529,176,80" shape="circle"> </map>
<img src="school.png"> <<nobr>> <<switch random(1, 3)>> <<case 1>> <img src="office.png"> <img src="common.png"> <<case 2>> <img src="office.png"> <img src="stu.png"> <<case 3>> <img src="stu.png"> <img src="common.png"> <</switch>> <</nobr>> <<dialogue "Think" "brain.png" "There's a lot of empty rooms here I should check them out along with the common room and offices.">> <img src="sch6.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoff" alt="theoff" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="465,177,115" shape="circle"> </map>
<img src="study.png"> <img src="tv.png"> <img src="gd16.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgd" alt="ashgd" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargd" alt="cargd" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="saragd" alt="saragd" title="Sara" coords="323,271,83" shape="circle"> <area data-passage="patgd" alt="patgd" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="myroom.png"> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week2]]">> <<set $pop to 0>>
<<if $ashley gte 100>> <<goto "1">> /* End game test - MUST be first condition */ <<elseif not hasVisited("ashley7")>> <<goto "ashley7">> /* First visit */ <<elseif $sun < 30>> <<goto "ashley7">> /* Loop until $sun >= 30 */ <<elseif not hasVisited("ashley9alt")>> <<goto "ashley9">> /* Only when $sun >= 30 */ <<else>> <<goto "ashley7">> /* Default return */ <</if>>
<<if $fay gte 100>> <<goto "2">> /* End game test - MUST be first condition */ <<elseif not hasVisited("head3")>> /* Loop until head3 is visited */ <<goto "fay2">> <<elseif not hasVisited("fay3alt")>> /* After head3, loop fay3 until fay3alt */ <<goto "fay3">> <<else>> /* Final destination */ <<goto "fay5">> <</if>>
<<if $carrey gte 100>> <<goto "3">> /* End game test - MUST be first condition */ <<elseif not hasVisited("carrey1")>> <<goto "carrey1">> <!-- First visit --> <<elseif not hasVisited("carrey3")>> <<goto "carrey3">> <!-- After carrey1 --> <<elseif not hasVisited("carrey4")>> <<goto "carrey4">> <!-- After carrey3 --> <<elseif not hasVisited("carrey7")>> <<goto "carrey7">> <!-- Final progression --> <<else>> <<goto "carrey7">> <!-- Permanent destination --> <</if>>
<<if lastVisited("mapmorn") is 5>> <<goto "mapaft">><</if>> <<if lastVisited("mapaft") is 5>> <<goto "mapeve">><</if>> <<if lastVisited("mapeve") is 5>> <<goto "bed">><</if>> <<if lastVisited("mapmorn1") is 5>> <<goto "mapaft1">><</if>> <<if lastVisited("mapaft1") is 5>> <<goto "mapeve1">><</if>> <<if lastVisited("mapeve1") is 5>> <<goto "bed1">><</if>> <<if lastVisited("mapmorns") is 5>> <<goto "mapafts">><</if>> <<if lastVisited("mapafts") is 5>> <<goto "mapeves">><</if>> <<if lastVisited("mapeves") is 5>> <<goto "beds">><</if>> <<if lastVisited("mapmornw2") is 5>> <<goto "mapaftw2">><</if>> <<if lastVisited("mapaftw2") is 5>> <<goto "mapevew2">><</if>> <<if lastVisited("mapevew2") is 5>> <<goto "w2bed">><</if>> <<if lastVisited("mapmornw2s") is 5>> <<goto "mapaftw2s">><</if>> <<if lastVisited("mapaftw2s") is 5>> <<goto "mapevew2s">><</if>> <<if lastVisited("mapevew2s") is 5>> <<goto "w2beds">><</if>> <<if lastVisited("mapmornw3") is 5>> <<goto "mapaftw3">><</if>> <<if lastVisited("mapaftw3") is 5>> <<goto "mapevew3">><</if>> <<if lastVisited("mapevew3") is 5>> <<goto "w3bed">><</if>> <<if lastVisited("mapmornw3s") is 5>> <<goto "mapaftw3s">><</if>> <<if lastVisited("mapaftw3s") is 5>> <<goto "mapevew3s">><</if>> <<if lastVisited("mapevew3s") is 5>> <<goto "w3beds">><</if>> <<if lastVisited("mapmornw6") is 5>> <<goto "mapaftw6">><</if>> <<if lastVisited("mapaftw6") is 5>> <<goto "mapevew6">><</if>> <<if lastVisited("mapevew6") is 5>> <<goto "w6bed">><</if>> <<if lastVisited("mapmornw6s") is 5>> <<goto "mapaftw6s">><</if>> <<if lastVisited("mapaftw6s") is 5>> <<goto "mapevew6s">><</if>> <<if lastVisited("mapevew6s") is 5>> <<goto "w6beds">><</if>> <<if lastVisited("mapmornw9") is 5>> <<goto "mapaftw9">><</if>> <<if lastVisited("mapaftw9") is 5>> <<goto "mapevew9">><</if>> <<if lastVisited("mapevew9") is 5>> <<goto "w9bed">><</if>> <<if lastVisited("mapmornw9s") is 5>> <<goto "mapaftw9s">><</if>> <<if lastVisited("mapaftw9s") is 5>> <<goto "mapevew9s">><</if>> <<if lastVisited("mapevew9s") is 5>> <<goto "w9beds">><</if>>
<<if $carrey gte 100>> <<goto "3">> /* End game test - MUST be first condition */ <<elseif not hasVisited("carrey2")>> <<goto "carrey2">> <<elseif not hasVisited("week3")>> <<goto "carrey2">> <!-- Loop here until week3 is visited --> <<elseif not hasVisited("carrey5alt")>> <<goto "carrey5">> <!-- Unlocked after week3 --> <<elseif not hasVisited("carrey8")>> <<goto "carrey8">> <!-- Final progression --> <<else>> <<goto "carrey8">> <!-- Permanent destination --> <</if>>
<<goto "foxy2">>
<<if $foxy gte 100>> <<goto "4">> /* End game test - MUST be first condition */ <<elseif not hasVisited("foxy3")>> <<goto "foxy3">> <!-- First visit --> <<elseif not hasVisited("foxy4")>> <<goto "foxy4">> <!-- After foxy3 --> <<elseif not hasVisited("week3")>> <<goto "foxy3">> <!-- Loop until week3 is visited --> <<elseif not hasVisited("foxy6alt")>> <<goto "foxy6">> <!-- Requires foxy6alt visit --> <<elseif not hasVisited("foxy14")>> <<goto "foxy14">> <!-- After foxy6alt --> <<else>> <<goto "foxy14">> <!-- Permanent destination --> <</if>>
<<if $sara gte 100>> <<goto "5">> /* End game test - MUST be first condition */ <<elseif not hasVisited("sara1")>> <<goto "sara1">> <<elseif not hasVisited("sara2")>> <<goto "sara2">> <<elseif not hasVisited("sara3")>> <<goto "sara3">> <<elseif not hasVisited("sara4")>> <<goto "sara4">> <<elseif not hasVisited("week3")>> <<goto "sara4">> <!-- Loop here until week3 is visited --> <<elseif not hasVisited("sara5")>> <<goto "sara5">> <!-- Unlocked after week3 --> <<elseif not hasVisited("sara6")>> <<goto "sara6">> <!-- Final progression --> <<else>> <<goto "sara6">> <!-- Permanent destination --> <</if>>
<video src="sf1gym.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Foxy" "foxy2.png" "Oh hello, do I look cute?">> <<dialogue "Jack" "jack2.png" "Yes, very.">> <<dialogue "Foxy" "foxy2.png" "Oh thank you, you’re sweet, [[bye.|x]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<if $pat gte 100>> <<goto "6">> /* End game test - MUST be first condition */ <<elseif not hasVisited("pat2")>> <<goto "pat2">> /* First visit */ <<elseif not hasVisited("pat3") || $sun < 30>> <<goto "pat3">> /* First visit OR until $sun >= 30 */ <<elseif not hasVisited("pat4")>> <<goto "pat4">> /* After sun requirement met */ <<else>> <<goto "pat4b">> /* Final destination */ <</if>>
<<goto "pat1">>
<<if $diva gte 100>> <<goto "7">> /* End game test - MUST be first condition */ <<elseif not hasVisited("diva4")>> <<goto "diva4">> <<elseif not hasVisited("diva5")>> <<goto "diva5">> <<elseif not hasVisited("week3")>> <<goto "diva5">> <!-- Loop here until week3 is visited --> <<elseif not hasVisited("diva6")>> <<goto "diva6">> <!-- Unlocked after week3 --> <<else>> <<goto "diva6">> <!-- Permanent destination --> <</if>>
<<if $carrey gte 100>> <<goto "3">> /* End game test - MUST be first condition */ <<elseif not hasVisited("carrey6alt")>> <<goto "carrey6">> /* First loop: until carrey6alt */ <<elseif not hasVisited("carrey12alt")>> <<goto "carrey12">> /* Second loop: until carrey12alt */ <<else>> <<goto "carrey9">> /* Final destination */ <</if>>
<<if $alice gte 100>> <<goto "8">> /* End game test - MUST be first condition */ <<elseif not hasVisited("alice1")>> <<goto "alice1">> <!-- First visit --> <<elseif not hasVisited("alice2")>> <<goto "alice2">> <!-- After alice1 --> <<elseif not hasVisited("alice3")>> <<goto "alice3">> <!-- After alice2 --> <<elseif not hasVisited("week3")>> <<goto "alice3">> <!-- Loop until week3 is visited --> <<elseif not hasVisited("alice4alt")>> <<goto "alice4">> <!-- Requires alice4alt visit --> <<elseif not hasVisited("alice5")>> <<goto "alice5">> <!-- After alice4alt --> <<else>> <<goto "alice5">> <!-- Permanent destination --> <</if>>
<<dialogue "Think" "brain.png" "I wonder what Ashley’s doing?">> <<dialogue "Ashley" "ashley2.png" "Come in Jack.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ashj1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ashj1.mp4,ashj2.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Wow, thank you so much.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $ashley += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $julie gte 100>> <<goto "9">> /* End game test - MUST be first condition */ <<elseif not hasVisited("julie7alt") && $sun >= 20>><<goto "julie7">> <<else>> <<goto "julie9">> <</if>>
<<dialogue "Ashley" "ashley2.png" "Oh sorry I thought it was empty.">> <<dialogue "Jack" "jack2.png" "No problem.">> <<dialogue "Ashley" "ashley2.png" "Thanks, let me help you.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ashg4.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ashg4.mp4,ashg5.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Ashley" "ashley2.png" "Oooooh, good job. Don't be a stranger.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $ashley += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $dee gte 100>> <<goto "10">> /* End game test - MUST be first condition */ <<elseif not hasVisited("dee1")>> <<goto "dee1">> <!-- First visit --> <<elseif not hasVisited("week3")>> <<goto "dee1">> <!-- Loop until week3 is visited --> <<elseif not hasVisited("dee4alt")>> <<goto "dee4">> <!-- Requires dee4alt visit --> <<elseif not hasVisited("dee9")>> <<goto "dee9">> <!-- After dee4alt --> <<else>> <<goto "dee9">> <!-- Permanent destination --> <</if>>
<<if not hasVisited("teacher1")>><<goto "teacher1">> <<else>> <<goto "teacher2">> <</if>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <img src="clock.png"> <img src="wake2.png"> <<dialogue "Think" "brain.png" "I should hit the [[shower.|w2shower1]]">> <<set $test to 0>> <<if $gas <= 0>><<set $gas to 20>><</if>> <<set $fit -= 5>>
<<switch random(1, 4)>> <<case 1>> <video src="fshow1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, is that the teacher? I’d better [[shower in the men's.|w2showm]]">> <<case 2>> <video src="fshowd.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow is that the secretary? I’d better [[shower in the men's.|w2showm]]">> <<case 3>> <img src="ms.png"> <<dialogue "Think" "brain.png" "Empty. I'll get a [[shower in the men's.|w2showm]]">> <<case 4>> <img src="ms.png"> <<dialogue "Think" "brain.png" "Empty. I'll get a [[shower in the men's.|w2showm]]">> <</switch>>
<<if lastVisited("w2showf") ==1>> <img src="sb1.png"> <<else>> <video src="mesh.mp4" autoplay loop muted controls height="480px"></video> <</if>> <<dialogue "Think" "brain.png" "I should grab some breakfast in the [[canteen|mapmornw2]] then get to work.">> <<link "<img src='bfast.png'>">> <<goto "mapmornw2">> <</link>>
<img src="mandf.png" usemap="#image-map"> <<dialogue "Think" "brain.png" "Should I peek in the women's or go straight into the men's.">> <map name="image-map"> <area data-passage="w2showm" alt="w2showm" title="shower" coords="245,405,99,79" shape="rect"> <area data-passage="w2showf" alt="w2showf" title="shower" coords="403,83,549,400" shape="rect"> </map>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w21e')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w22e')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w23e')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w24e')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w25e')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w26e')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w21e]] [[2. Gym|w22e]] [[3. Staff accommodation|w23e]] [[4. School|w24e]] [[5. The Head's rooms|w25e]] [[6. Guest dormitory|w26e]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w21a')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w22a')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w23a')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w24a')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w25a')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w26a')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w21a]] [[2. Gym|w22a]] [[3. Staff accommodation|w23a]] [[4. School|w24a]] [[5. The Head's rooms|w25a]] [[6. Guest dormitory|w26a]]
<<nobr>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w21m')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w22m')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w23m')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w24m')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w25m')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w26m')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w21m]] [[2. Gym|w22m]] [[3. Staff accommodation|w23m]] [[4. School|w24m]] [[5. The Head's rooms|w25m]] [[6. Guest dormitory|w26m]]
<<goto "gymwork">>
<img src="scom2.png" usemap="#image-map"> <map name="image-map"> <area data-passage="chef" alt="chef" title="Chef" coords="169,165,113" shape="circle"> <area data-passage="teacher" alt="teacher" title="Teacher" coords="474,165,112" shape="circle"> </map>
<img src="woods1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="juliew" alt="juliew" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="divaw" alt="divaw" title="Diva" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<<if hasVisited("diva3")>> <<nobr>> <img src="gd13.png" usemap="#image-map"> <map name="image-map"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="139,181,81" shape="circle"> <area data-passage="divagd" alt="divegd" title="Diva" coords="339,179,82" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="529,178,79" shape="circle"> </map> <</nobr>> <<else>> <<nobr>> <img src="gd12.png" usemap="#image-map"> <map name="image-map"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="139,181,81" shape="circle"> <area data-passage="saragd" alt="saragd" title="Sara" coords="339,179,82" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="529,178,79" shape="circle"> </map> <</nobr>> <</if>>
<img src="sch3.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashsch" alt="ashsch" title="Ashley" coords="104,92,75" shape="circle"> <area data-passage="deesch" alt="deesch" title="Dee" coords="100,266,74" shape="circle"> <area data-passage="faysch" alt="faysch" title="Fay" coords="336,180,72" shape="circle"> <area data-passage="secoff" alt="secoff" title="Secretary" coords="545,91,76" shape="circle"> <area data-passage="foxysch" alt="foxysch" title="Foxy" coords="541,269,77" shape="circle"> </map>
<img src="scom2.png" usemap="#image-map"> <map name="image-map"> <area data-passage="chef" alt="chef" title="Chef" coords="169,165,113" shape="circle"> <area data-passage="teacher" alt="teacher" title="Teacher" coords="474,165,112" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<<if hasVisited("diva3")>> <<nobr>> <img src="gd13.png" usemap="#image-map"> <map name="image-map"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="139,181,81" shape="circle"> <area data-passage="divagd" alt="divegd" title="Diva" coords="339,179,82" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="529,178,79" shape="circle"> </map> <</nobr>> <<else>> <<nobr>> <img src="gd12.png" usemap="#image-map"> <map name="image-map"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="139,181,81" shape="circle"> <area data-passage="saragd" alt="saragd" title="Sara" coords="339,179,82" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="529,178,79" shape="circle"> </map> <</nobr>> <</if>>
<img src="sch3.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashsch" alt="ashsch" title="Ashley" coords="104,92,75" shape="circle"> <area data-passage="deesch" alt="deesch" title="Dee" coords="100,266,74" shape="circle"> <area data-passage="faysch" alt="faysch" title="Fay" coords="336,180,72" shape="circle"> <area data-passage="secoff" alt="secoff" title="Secretary" coords="545,91,76" shape="circle"> <area data-passage="foxysch" alt="foxysch" title="Foxy" coords="541,269,77" shape="circle"> </map>
<img src="scom4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="105,105,85" shape="circle"> <area data-passage="chef" alt="chef" title="Chef" coords="208,259,79" shape="circle"> <area data-passage="theroom" alt="theroom" title="Therapist" coords="317,102,84" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="428,261,81" shape="circle"> <area data-passage="teacher" alt="teacher" title="Teacher" coords="531,95,84" shape="circle"> </map>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="woods.png"> <<dialogue "Think" "brain.png" "I guess a jog in the woods would be cool.">> <img src="jogtest.gif" height="400"> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|w2bed]]">> <<set $fromEvent to false>> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="sch4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="139,181,81" shape="circle"> <area data-passage="chef" alt="chef" title="Chef" coords="339,179,82" shape="circle"> <area data-passage="theoff" alt="theoff" title="Therapist" coords="529,178,79" shape="circle"> </map>
<<if $fromEvent>> <<goto "eventBranch">> <<else>> <<goto "normalBranch">> <</if>> <<set $pop to 0>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <img src="clock.png"> <img src="wake2.png"> <<dialogue "Think" "brain.png" "Sunday, cool. Time for a [[shower.|w2shower1s]]">> <<set $sun += 10>> <<set $fit -= 5>> <<set $test to 0>>
<img src='chefb.png'> <<nobr>> <<if hasVisited("chef1")>> <<dialogue "Chef" "chef2.png" "Hi Jack, will you be long, my schedule is different on Sundays.">> <<else>> <<dialogue "Chef" "chef2.png" "Hi I'm Darren the Chef, will you be long?">> <</if>> <</nobr>> <video src="mesh.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Jack" "jack2.png" "Give me two minutes">> <<dialogue "Think" "brain.png" "He stared at my cock the whole time. I should grab some [[breakfast.|mapmornw2s]]">> <<link "<img src='bfast.png'>">> <<goto "mapmornw2s">> <</link>>
<<switch random(1, 2)>> <<case 1>> <video src="fshow1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's|w2showms]]">> <<case 2>> <video src="fshowd.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's|w2showms]]">> <</switch>>
<img src="mandf.png" usemap="#image-map"> <<dialogue "Think" "brain.png" "Should I peek in the women's or go straight into the men's.">> <map name="image-map"> <area data-passage="w2showms" alt="w2showms" title="shower" coords="245,405,99,79" shape="rect"> <area data-passage="w2showfs" alt="w2showfs" title="shower" coords="403,83,549,400" shape="rect"> </map>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w21as')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w22as')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w23as')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w24as')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w25as')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w26as')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w21as]] [[2. Gym|w22as]] [[3. Staff accommodation|w23as]] [[4. School|w24as]] [[5. The Head's rooms|w25as]] [[6. Guest dormitory|w26as]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w21es')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w22es')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w23es')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w24es')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w25es')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w26es')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w21es]] [[2. Gym|w22es]] [[3. Staff accommodation|w23es]] [[4. School|w24es]] [[5. The Head's rooms|w25es]] [[6. Guest dormitory|w26es]]
<<nobr>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w21ms')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w22ms')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w23ms')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w24ms')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w25ms')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w26ms')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w21ms]] [[2. Gym|w22ms]] [[3. Staff accommodation|w23ms]] [[4. School|w24ms]] [[5. The Head's rooms|w25ms]] [[6. Guest dormitory|w26ms]]
<img src="woods1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="juliew" alt="juliew" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="divaw" alt="divaw" title="Diva" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="sch4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="139,181,81" shape="circle"> <area data-passage="chef" alt="chef" title="Chef" coords="339,179,82" shape="circle"> <area data-passage="theoff" alt="theoff" title="Therapist" coords="529,178,79" shape="circle"> </map>
<img src="scom4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="105,105,85" shape="circle"> <area data-passage="chef" alt="chef" title="Chef" coords="208,259,79" shape="circle"> <area data-passage="theroom" alt="theroom" title="Therapist" coords="317,102,84" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="428,261,81" shape="circle"> <area data-passage="teacher" alt="teacher" title="Teacher" coords="531,95,84" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="gd16.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgd" alt="ashgd" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargd" alt="cargd" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="saragd" alt="saragd" title="Sara" coords="323,271,83" shape="circle"> <area data-passage="patgd" alt="patgd" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="woods1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="juliew" alt="juliew" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="divaw" alt="divaw" title="Diva" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="scom4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="105,105,85" shape="circle"> <area data-passage="chef" alt="chef" title="Chef" coords="208,259,79" shape="circle"> <area data-passage="theroom" alt="theroom" title="Therapist" coords="317,102,84" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="428,261,81" shape="circle"> <area data-passage="teacher" alt="teacher" title="Teacher" coords="531,95,84" shape="circle"> </map>
<img src="sch4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="139,181,81" shape="circle"> <area data-passage="chef" alt="chef" title="Chef" coords="339,179,82" shape="circle"> <area data-passage="theoff" alt="theoff" title="Therapist" coords="529,178,79" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="gd16.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgd" alt="ashgd" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargd" alt="cargd" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="saragd" alt="saragd" title="Sara" coords="323,271,83" shape="circle"> <area data-passage="patgd" alt="patgd" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map>
<img src="woods.png"> <<dialogue "Think" "brain.png" "I guess a walk in the woods would be cool.">> <img src="jogtest.gif" height="400"> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|w2beds]]">> <<set $fromEvent to false>> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<goto "gymfun">>
<img src="scom4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="105,105,85" shape="circle"> <area data-passage="chef" alt="chef" title="Chef" coords="208,259,79" shape="circle"> <area data-passage="theroom" alt="theroom" title="Therapist" coords="317,102,84" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="428,261,81" shape="circle"> <area data-passage="teacher" alt="teacher" title="Teacher" coords="531,95,84" shape="circle"> </map>
<img src="sch6.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoff" alt="theoff" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="465,177,115" shape="circle"> </map>
<<if hasVisited("diva3")>> <<nobr>> <img src="gd15.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgd" alt="ashgd" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="divagd" alt="divagd" title="Diva" coords="108,267,79" shape="circle"> <area data-passage="cargd" alt="cargd" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="deegd" alt="deegd" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgd" alt="patgd" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map> <</nobr>> <<else>> <<nobr>> <img src="gd16.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgd" alt="ashgd" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargd" alt="cargd" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="saragd" alt="saragd" title="Sara" coords="323,271,83" shape="circle"> <area data-passage="patgd" alt="patgd" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map> <</nobr>> <</if>>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<<nobr>> <<if $corr >= 25 && $fit >= 50>> <img src="myroom.png"> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|int1]]">> <<else>> <img src="myroom.png"> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week2]]">> <</if>> <</nobr>> <<set $pop to 0>>
<img src="woods1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="juliew" alt="juliew" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="divaw" alt="divaw" title="Diva" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="head" alt="head" title="Head" coords="317,181,145" shape="circle"> </map>
<<if hasVisited("diva3")>> <<nobr>> <img src="gd8.png" usemap="#image-map"> <map name="image-map"> <area data-passage="divagd" alt="divegd" title="Diva" coords="105,90,79" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargd" alt="cargd" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="saragd" alt="saragd" title="Sara" coords="323,271,83" shape="circle"> <area data-passage="patgd" alt="patgd" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map> <</nobr>> <<else>> <<nobr>> <img src="gd16.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgd" alt="ashsch" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygd" alt="faygd" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargd" alt="cargd" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="saragd" alt="saragd" title="Sara" coords="323,271,83" shape="circle"> <area data-passage="patgd" alt="patgd" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map> <</nobr>> <</if>>
<<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>> <<switch random(1, 6)>> <<case 1>><<goto "gymwork1">> <<case 2>><<goto "gymwork2">> <<case 3>><<goto "gymwork3">> <<case 4>><<goto "gymwork4">> <<case 5>><<goto "gymwork5">> <<case 6>><<goto "gymwork6">> <</switch>>
<<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>> <<if $corr < 10>><<goto "gymfun1">><</if>> <<if $corr >= 10>><<goto "gymfun2">><</if>>
<video src="fit1.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">>
<video src="fit4.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">>
<video src="foot2.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">>
<video src="fit3.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">>
<video src="fit2.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">>
<video src="foot1.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">>
<<nobr>> <div id="video-container"> <video id="main-video" src="foot2.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="foot2.mp4,foot2b.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">>
<video src="gym10.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">>
<<nobr>> <div id="video-container"> <video id="main-video" src="foot3a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="foot3a.mp4,foot3b.mp4,foot3c.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">>
<<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $fromEvent to false>>
<img src="gym.png"> <<dialogue "Think" "brain.png" "I'll save on laundry if I work out nude.">> <video src="megym2.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $fromEvent to false>>
<img src="head3.png"> <<nobr>> <<if lastVisited("w35as") == 3 || lastVisited("w65as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat.">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat.">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <video src="head5.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Jack" "jack2.png" "Er, a little fuzzy I think, I’m not sure.">> <<dialogue "Head" "head2.png" "Then how about a little reward for a lonely old lady.">> <<nobr>> <div id="video-container"> <video id="main-video" src="kristen.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="choice-container"> <div class="click-box" data-video="kiss.mp4">KISS</div> <div class="click-box" data-video="nokiss.mp4">NO</div> </div> </div> <</nobr>> <<dialogue "Think" "brain.png" "What am I doing, [[I should go.|x]]">>
<<nobr>> <<if lastVisited("w35as") == 3 || lastVisited("w65as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <<dialogue "Think" "brain.png" "Damn, why can’t I say no.">> <video src="head6.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Jack" "jack2.png" "Er, a little fuzzy I think, I’m not sure.">> <<dialogue "Think" "brain.png" "[[I should go.|x]]">>
<<nobr>> <<if lastVisited("w35as") == 3 || lastVisited("w65as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <video src="head7.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Think" "brain.png" "Damn, another hard on.">> <<dialogue "Jack" "jack2.png" "Er, good. Wow where has the time gone, [[I should go.|x]] Goodbye Dr. Jones.">>
<img src="head3.png"> <<nobr>> <<if lastVisited("w35as") == 3 || lastVisited("w65as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <video src="head8.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Jack" "jack2.png" "Er, a little fuzzy I think.">> <<dialogue "Head" "head2.png" "Good, now give me a big kiss.">> <<dialogue "Jack" "jack2.png" "I’m not sure this is right.">> <<dialogue "Head" "head2.png" "You want to obey me, it makes you feel happy.">> <<dialogue "Jack" "jack2.png" "Yes Dr Jones.">> <<nobr>> <div id="video-container"> <video id="main-video" src="kristen.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="kristen.mp4,kiss.mp4,kiss2.mp4" data-labels="KISS,MORE" data-index="0">KISS</div> </div> <</nobr>> <<dialogue "Head" "head2.png" "Thank you dear boy.">> <<dialogue "Think" "brain.png" "Oh my god, what am I doing. [[I should go.|x]]">>
<<nobr>> <<if lastVisited("w65as") == 3 || lastVisited("w95as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <<nobr>> <div id="video-container"> <video id="main-video" src="hint.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="hint.mp4,head9.mp4" data-index="0">PLAY</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Er, I don’t think this is appropriate.">> <<dialogue "Head" "head2.png" "Watch the cartoon.">> <<dialogue "Jack" "jack2.png" "Yes Dr Jones.">> <<dialogue "Head" "head2.png" "How do you feel now?">> <<dialogue "Jack" "jack2.png" "Er, a little fuzzy I think, I’m not sure.">> <<dialogue "Think" "brain.png" "[[I should go.|x]]">>
<<nobr>> <<if lastVisited("w65as") == 3 || lastVisited("w95as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <video src="head11.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Jack" "jack2.png" "Er, a little fuzzy I think.">> <<dialogue "Head" "head2.png" "Good, now kiss me.">> <<dialogue "Jack" "jack2.png" "Err I’m not sure this is right.">> <<dialogue "Head" "head2.png" "You want to obey.">> <<dialogue "Jack" "jack2.png" "Yes Dr Jones.">> <<nobr>> <div id="video-container"> <video id="main-video" src="kristen2.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="kristen2.mp4,head20.mp4,head21.mp4" data-labels="KISS,DO IT" data-index="0">KISS</div> </div> <</nobr>> <<dialogue "Head" "head2.png" "Thank you dear boy.">> <<dialogue "Think" "brain.png" "Oh my god, what am I doing.">> <<dialogue "Jack" "jack2.png" "[[I have to go.|x]]">>
<<nobr>> <<if lastVisited("w65as") == 3 || lastVisited("w95as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <<nobr>> <div id="video-container"> <video id="main-video" src="hint.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="hint.mp4,head10.mp4" data-index="0">PLAY</div> </div> <</nobr>> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Think" "brain.png" "Damn, another hard on.">> <<dialogue "Jack" "jack2.png" "Er, good. Wow where has the time gone, [[I should go.|x]] Goodbye Dr. Jones.">>
<<nobr>> <div id="video-container"> <video id="main-video" src="foot1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="foot1.mp4,foot1b.mp4,foot1c.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">>
<<if $ashley gte 100>> <<goto "1">> /* End game test - MUST be first condition */ <<elseif not hasVisited("ashley3")>> <<goto "ashley3">> <!-- First visit --> <<elseif not hasVisited("ashley4")>> <<goto "ashley4">> <!-- After ashley3 --> <<elseif not hasVisited("ashley1")>> <<goto "ashley4">> <!-- Loop until ashley1 is visited --> <<elseif not hasVisited("ashley6")>> <<goto "ashley6">> <!-- After ashley1 --> <<elseif not hasVisited("week3")>> <<goto "ashley6">> <!-- Loop until week3 is visited --> <<elseif not hasVisited("ashley8alt")>> <<goto "ashley8">> <!-- Requires ashley8alt visit --> <<else>> <<goto "ashley5">> <!-- Final destination --> <</if>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <img src="clock.png"> <img src="wake2.png"> <<dialogue "Think" "brain.png" "I should hit the [[shower.|w3shower1]]">> <<set $test to 0>> <<if $gas <= 0>><<set $gas to 20>><</if>> <<set $fit -= 5>>
<<nobr>> <div id="video-container"> <video id="main-video" src="bed1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="choice-container"> <div class="click-box" data-video="bed2.mp4">WANK</div> <div class="click-box" data-video="bed3.mp4">SLEEP</div> </div> </div> <</nobr>> <<nobr>> <<if visited("w2bed") % 6 == 0 and visited("w2bed") != 0>> <<dialogue "Sleep" "ni.png" "Go to [[sleep.|week2s]]">> <<else>> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week2]]">> <</if>> <</nobr>>
<img src="myroom.png"> <<nobr>> <<if visited("w2bed") % 6 == 0 and visited("w2bed") != 0>> <<dialogue "Sleep" "ni.png" "Go to [[sleep.|week2s]]">> <<else>> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week2]]">> <</if>> <</nobr>>
<<switch random(1, 4)>> <<case 1>> <video src="fshow1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's.|w3showm]]">> <<case 2>> <video src="fshowd.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's.|w3showm]]">> <<case 3>> <img src="ms.png"> <<dialogue "Think" "brain.png" "Empty. I'll get a [[shower in the men's.|w3showm]]">> <<case 4>> <img src="ms.png"> <<dialogue "Think" "brain.png" "Empty. I'll get a [[shower in the men's.|w3showm]]">> <</switch>>
<img src="mandf.png" usemap="#image-map"> <<dialogue "Think" "brain.png" "Should I peek in the women's or go straight into the men's.">> <map name="image-map"> <area data-passage="w3showm" alt="w3showm" title="shower" coords="245,405,99,79" shape="rect"> <area data-passage="w3showf" alt="w3showf" title="shower" coords="403,83,549,400" shape="rect"> </map>
<<if lastVisited("w3showf") ==1>> <img src="sb1.png"> <<else>> <video src="mesh.mp4" autoplay loop muted controls height="480px"></video> <</if>> <<dialogue "Think" "brain.png" "I should grab some breakfast in the [[canteen|mapmornw3]] then get to work.">> <<link "<img src='bfast.png'>">> <<goto "mapmornw3">> <</link>>
<<nobr>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w31m')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w32m')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w33m')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w34m')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w35m')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w36m')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w31m]] [[2. Gym|w32m]] [[3. Staff accommodation|w33m]] [[4. School|w34m]] [[5. The Head's rooms|w35m]] [[6. Guest dormitory|w36m]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w31e')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w32e')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w33e')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w34e')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w35e')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w36e')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w31e]] [[2. Gym|w32e]] [[3. Staff accommodation|w33e]] [[4. School|w34e]] [[5. The Head's rooms|w35e]] [[6. Guest dormitory|w36e]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w31a')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w32a')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w33a')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w34a')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w35a')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w36a')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w31a]] [[2. Gym|w32a]] [[3. Staff accommodation|w33a]] [[4. School|w34a]] [[5. The Head's rooms|w35a]] [[6. Guest dormitory|w36a]]
<img src="woods1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="julieww3" alt="julieww3" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="divaw" alt="divaw" title="Diva" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<goto "gw3">>
<img src="scom3.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="theroomw3" alt="theroomw3" title="Therapist" coords="529,176,80" shape="circle"> </map>
<img src="sch8.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxysch" alt="foxysch" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="deesch" alt="deesch" title="Dee" coords="108,267,79" shape="circle"> <area data-passage="carsch" alt="carsch" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="faysch" alt="faysch" title="Fay" coords="323,271,83" shape="circle"> <area data-passage="secoffw3" alt="secoffw3" title="Secretary" coords="532,90,79" shape="circle"> <area data-passage="ashschw3" alt="ashsch" title="Ashley" coords="534,265,78" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw3" alt="headw3" title="Head" coords="317,181,145" shape="circle"> </map>
<<if hasVisited("diva3")>> <<nobr>> <img src="gd20.png" usemap="#image-map"> <map name="image-map"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="102,99,78" shape="circle"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="241,265,80" shape="circle"> <area data-passage="divagd" alt="divagd" title="Diva" coords="397,95,83" shape="circle"> <area data-passage="faygdw3" alt="faygdw3" title="Fay" coords="534,266,79" shape="circle"> </map> <</nobr>> <<else>> <<nobr>> <img src="gd21.png" usemap="#image-map"> <map name="image-map"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="102,99,78" shape="circle"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="241,265,80" shape="circle"> <area data-passage="saraw3" alt="saraw3" title="Sara" coords="397,95,83" shape="circle"> <area data-passage="faygdw3" alt="faygdw3" title="Fay" coords="534,266,79" shape="circle"> </map> <</nobr>> <</if>>
<img src="woods1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="julieww3" alt="julieww3" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="divaw" alt="divaw" title="Diva" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="scom1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="112,185,92" shape="circle"> <area data-passage="theroomw3" alt="theroomw3" title="Therapist" coords="319,184,86" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="524,179,89" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="scom10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="529,176,80" shape="circle"> </map> <</if>> <</nobr>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="sch8.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxysch" alt="foxysch" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="deesch" alt="deesch" title="Dee" coords="108,267,79" shape="circle"> <area data-passage="carsch" alt="carsch" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="faysch" alt="faysch" title="Fay" coords="323,271,83" shape="circle"> <area data-passage="secoffw3" alt="secoffw3" title="Secretary" coords="532,90,79" shape="circle"> <area data-passage="ashschw3" alt="ashsch" title="Ashley" coords="534,265,78" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw3" alt="headw3" title="Head" coords="317,181,145" shape="circle"> </map>
<<if hasVisited("diva3")>> <<nobr>> <img src="gd8.png" usemap="#image-map"> <map name="image-map"> <area data-passage="divagd" alt="divegd" title="Diva" coords="105,90,79" shape="circle"> <area data-passage="faygdw3" alt="faygdw3" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargdw3" alt="cargdw3" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="saraw3" alt="saraw3" title="Sara" coords="323,271,83" shape="circle"> <area data-passage="patgdw3" alt="patgdw3" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map> <</nobr>> <<else>> <<nobr>> <img src="gd21.png" usemap="#image-map"> <map name="image-map"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="102,99,78" shape="circle"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="241,265,80" shape="circle"> <area data-passage="saraw3" alt="saraw3" title="Sara" coords="397,95,83" shape="circle"> <area data-passage="faygdw3" alt="faygdw3" title="Fay" coords="534,266,79" shape="circle"> </map> <</nobr>> <</if>>
<img src="woods.png"> <<dialogue "Think" "brain.png" "I guess a jog in the woods would be cool.">> <img src="jogtest.gif" height="400"> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|w3bed]]">> <<set $fromEvent to false>> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="scom10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="529,176,80" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="scom1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="112,185,92" shape="circle"> <area data-passage="theroomw3" alt="theroomw3" title="Therapist" coords="319,184,86" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="524,179,89" shape="circle"> </map> <</if>> <</nobr>>
<img src="sch10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoffw3" alt="theoffw3" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="secoffw3" alt="secoffw3" title="Secretary" coords="465,177,115" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw3" alt="headw3" title="Head" coords="317,181,145" shape="circle"> </map>
<<if hasVisited("diva3")>> <<nobr>> <img src="gd15.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw3" alt="ashgdw3" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="divagd" alt="divagd" title="Diva" coords="108,267,79" shape="circle"> <area data-passage="cargdw3" alt="cargdw3" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="deegdw3" alt="deegdw3" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw3" alt="patgdw3" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map> <</nobr>> <<else>> <<nobr>> <img src="gd5.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw3" alt="ashgdw3" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygdw3" alt="faygdw3" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargdw3" alt="cargdw3" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="deegdw3" alt="deegdw3" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw3" alt="patgdw3" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map> <</nobr>> <</if>>
<<if $fromEvent && $test == 0>> <<goto "eventBranch1">> <!-- Special event path --> <<else>> <<goto "normalBranch1">> <!-- Default path --> <</if>> <<set $pop to 0>>
<<nobr>> <div id="video-container"> <video id="main-video" src="bed1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="choice-container"> <div class="click-box" data-video="bed2.mp4">WANK</div> <div class="click-box" data-video="bed3.mp4">SLEEP</div> </div> </div> <</nobr>> <<nobr>> <<if visited("w3bed") % 6 == 0 and visited("w3bed") != 0>> <<dialogue "Sleep" "ni.png" "Go to [[sleep.|week3s]]">> <<else>> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week3]]">> <</if>> <</nobr>>
<img src="myroom.png"> <<nobr>> <<if visited("w3bed") % 6 == 0 and visited("w3bed") != 0>> <<dialogue "Sleep" "ni.png" "Go to [[sleep.|week3s]]">> <<else>> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week3]]">> <</if>> <</nobr>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <img src="clock.png"> <img src="wake2.png"> <<dialogue "Think" "brain.png" "Sunday, cool. Time for a [[shower.|w3shower1s]]">> <<set $test to 0>> <<set $sun += 10>> <<if $gas <= 0>><<set $gas to 20>><</if>> <<set $fit -= 5>>
<img src="mandf.png" usemap="#image-map"> <<dialogue "Think" "brain.png" "Should I peek in the women's or go straight into the men's.">> <map name="image-map"> <area data-passage="w3showms" alt="w3showms" title="shower" coords="245,405,99,79" shape="rect"> <area data-passage="w3showfs" alt="w3showfs" title="shower" coords="403,83,549,400" shape="rect"> </map>
<<switch random(1, 2)>> <<case 1>> <video src="fshow1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's|w3showms]]">> <<case 2>> <video src="fshowd.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's|w3showms]]">> <</switch>>
<img src='chefb.png'> <<dialogue "Chef" "chef2.png" "Hi Jack, will you be long.">> <video src="mesh.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Jack" "jack2.png" "Give me two minutes">> <<dialogue "Chef" "chef2.png" "Cool, see you later.">> <<dialogue "Think" "brain.png" "He stared at my cock the whole time. I suppose if he's gay I should be flattered. What do I do if he comes on to me? He’s quite attractive for a man. What am I thinking!? I should grab some [[breakfast.|mapmornw3s]]">> <<link "<img src='bfast.png'>">> <<goto "mapmornw3s">> <</link>> <<if hasVisited("head5")>><<goto "w3chef">><</if>>
<<nobr>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w31ms')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w32ms')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w33ms')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w34ms')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w35ms')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w36ms')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w31ms]] [[2. Gym|w32ms]] [[3. Staff accommodation|w33ms]] [[4. School|w34ms]] [[5. The Head's rooms|w35ms]] [[6. Guest dormitory|w36ms]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w31es')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w32es')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w33es')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w34es')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w35es')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w36es')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w31es]] [[2. Gym|w32es]] [[3. Staff accommodation|w33es]] [[4. School|w34es]] [[5. The Head's rooms|w35es]] [[6. Guest dormitory|w36es]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<if not hasVisited("head5")>> <<dialogue "Game" "gear.gif" "It’s Sunday afternoon, you should keep your appointment with the [[Head.|w35as]]">> <<else>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w31as')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w32as')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w33as')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w34as')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w35as')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w36as')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w31as]] [[2. Gym|w32as]] [[3. Staff accommodation|w33as]] [[4. School|w34as]] [[5. The Head's rooms|w35as]] [[6. Guest dormitory|w36as]] <</if>>
<img src="woods1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="julieww3" alt="julieww3" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="divaw" alt="divaw" title="Diva" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="scom3.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="theroomw3" alt="theroomw3" title="Therapist" coords="529,176,80" shape="circle"> </map>
<img src="sch10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoffw3" alt="theoffw3" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="secoffw3" alt="secoffw3" title="Secretary" coords="465,177,115" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw3" alt="headw3" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="gd8.png" usemap="#image-map"> <map name="image-map"> <area data-passage="divagd" alt="divegd" title="Diva" coords="105,90,79" shape="circle"> <area data-passage="faygdw3" alt="faygdw3" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargdw3" alt="cargdw3" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="saraw3" alt="saraw3" title="Sara" coords="323,271,83" shape="circle"> <area data-passage="patgdw3" alt="patgdw3" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map>
<img src="woods1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="julieww3" alt="juliew" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="divaw" alt="divaw" title="Diva" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="scom10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="529,176,80" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="scom1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="112,185,92" shape="circle"> <area data-passage="theroomw3" alt="theroomw3" title="Therapist" coords="319,184,86" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="524,179,89" shape="circle"> </map> <</if>> <</nobr>>
<img src="sch10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoffw3" alt="theoffw3" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="secoffw3" alt="secoffw3" title="Secretary" coords="465,177,115" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw3" alt="headw3" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="gd5.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw3" alt="ashgdw3" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygdw3" alt="faygdw3" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargdw3" alt="cargdw3" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="deegdw3" alt="deegdw3" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw3" alt="patgdw3" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map>
<img src="woods.png"> <<dialogue "Think" "brain.png" "I guess a jog in the woods would be cool.">> <img src="jogtest.gif" height="400"> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|w3beds]]">> <<set $fromEvent to false>> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<goto "gymfun">>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="scom1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="112,185,92" shape="circle"> <area data-passage="theroomw3" alt="theroomw3" title="Therapist" coords="319,184,86" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="524,179,89" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="scom10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroom" alt="secroom" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="529,176,80" shape="circle"> </map> <</if>> <</nobr>>
<img src="sch10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoffw3" alt="theoffw3" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="secoffw3" alt="secoffw3" title="Secretary" coords="465,177,115" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw3" alt="headw3" title="Head" coords="317,181,145" shape="circle"> </map>
<<if hasVisited("diva3")>> <<nobr>> <img src="gd15.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw3" alt="ashgdw3" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="divagd" alt="divagd" title="Diva" coords="108,267,79" shape="circle"> <area data-passage="cargdw3" alt="cargdw3" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="deegdw3" alt="deegdw3" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw3" alt="patgdw3" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map> <</nobr>> <<else>> <<nobr>> <img src="gd5.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw3" alt="ashgdw3" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygdw3" alt="faygdw3" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargdw3" alt="cargdw3" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="deegdw3" alt="deegdw3" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw3" alt="patgdw3" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegd" alt="alicegd" title="Alice" coords="534,265,78" shape="circle"> </map> <</nobr>> <</if>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <img src="clock.png"> <img src="wake2.png"> <<dialogue "Think" "brain.png" "I should hit the [[shower.|w6shower1]]">> <<set $test to 0>> <<if $gas <= 0>><<set $gas to 20>><</if>> <<set $fit -= 5>>
<<if $corr < 25>> <<set $corr to 25>> <</if>> <<set $pop to 0>> <<set $gas to 0>> <<set $sun to 0>> <<goto "week3">>
<img src='chefb.png'> <<dialogue "Chef" "chef2.png" "Hi Jack, would you like some help with that?">> <<nobr>> <<if visited() == 1>> <<dialogue "Think" "brain.png" "Oh shit, before I came here I would’ve said no, but now I don't know. What do I do?">> <</if>> <</nobr>> <<nobr>> <div id="video-container"> <img src="6.gif"> </div> <div id="button-container"> <div class="choice-container"> <div class="click-box" data-video="chefbj.mp4">OK</div> <div class="click-box" data-video="mesh.mp4">NO</div> </div> </div> <</nobr>> <<dialogue "Chef" "chef2.png" "Cool, see you later.">> <<dialogue "Think" "brain.png" "I should grab some [[breakfast.|mapmornw3s]]">> <<link "<img src='bfast.png'>">> <<goto "mapmornw3s">> <</link>> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $test += 10>> <<if hasVisited("chef3")>><<goto "alt1">><</if>>
<<if not hasVisited("head4")>> <<goto "head4">> <!-- First visit --> <<elseif not hasVisited("head5")>> <<if $sun >= 10>> <<goto "head5">> <!-- Unlocked at sun 10 --> <<else>> <<goto "head4">> <!-- Loop until sun >= 10 --> <</if>> <<elseif not hasVisited("head6")>> <<if $sun >= 20>> <<goto "head6">> <!-- Unlocked at sun 20 --> <<else>> <<goto "head5">> <!-- Loop until sun >= 20 --> <</if>> <<elseif not hasVisited("head7")>> <<if $sun >= 30>> <<goto "head7">> <!-- Unlocked at sun 30 --> <<else>> <<goto "head6">> <!-- Loop until sun >= 30 --> <</if>> <<elseif not hasVisited("head8")>> <<if $sun >= 40>> <<goto "head8">> <!-- Unlocked at sun 40 --> <<else>> <<goto "head7">> <!-- Loop until sun >= 40 --> <</if>> <<else>> <<goto "head8">> <!-- Permanent destination --> <</if>>
<<if not hasVisited("teacher1")>> <<goto "teacher1">> <<elseif not hasVisited("teacher2")>> <<goto "teacher2">> <<elseif not hasVisited("t1")>> <<goto "t1">> <<else>> <<switch random(1, 3)>> <<case 1>><<goto "t2">> <<case 2>><<goto "t3">> <<case 3>><<goto "t4">> <</switch>> <</if>> <<if visited() == 1>> <<set $corr += 2>> <</if>>
<<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>> <<switch random(1, 6)>> <<case 1>><<goto "gymwork1">> <<case 2>><<goto "gymwork2">> <<case 3>><<goto "gymwork9">> <<case 4>><<goto "gymwork4">> <<case 5>><<goto "gymwork7">> <<case 6>><<goto "gymwork8">> <</switch>>
<<if not hasVisited("chef1")>> <<goto "chef1">> <!-- First visit --> <<elseif not hasVisited("w3chef")>> <<goto "chef1">> <!-- Loop until w3chef is visited --> <<elseif not hasVisited("chef2")>> <<goto "chef2">> <!-- After w3chef --> <<elseif not hasVisited("head5")>> <<goto "chef2">> <!-- Loop until boss5 is visited --> <<elseif not hasVisited("chef3")>> <<goto "chef3">> <!-- After boss5 --> <<elseif not hasVisited("chef4alt")>> <<goto "chef4">> <!-- Requires chef4alt --> <<elseif not hasVisited("chef5alt")>> <<goto "chef5">> <!-- Requires chef5alt --> <<elseif not hasVisited("chef6alt")>> <<goto "chef6">> <!-- Requires chef6alt --> <<elseif not hasVisited("chef7")>> <<goto "chef7">> <!-- Final progression --> <<else>> <<goto "chef7">> <!-- Permanent destination --> <</if>>
<<if not hasVisited("theoff1") && not hasVisited("theroom1")>> <<goto "theoff1">> <<elseif not hasVisited("theoff3") && not hasVisited("theroom3")>> <<goto "theoff3">> <<elseif not hasVisited("theoff5alt")>> <<goto "theoff5">> /* Loops until theoff5alt */ <<elseif not hasVisited("theoff6")>> <<goto "theoff6">> /* After theoff5alt */ <<else>> <<goto "theoff6">> /* Permanent destination */ <</if>>
<<if not hasVisited("theroom1") && not hasVisited("theoff1")>> <<goto "theroom1">> <<elseif not hasVisited("theroom3") && not hasVisited("theoff3")>> <<goto "theroom3">> <<elseif not hasVisited("theroom4")>> <<goto "theroom4">> <<else>> <<goto "theroom4">> <!-- Fallback --> <</if>>
<<nobr>> <<if $corr >= 50 && $fit >= 50>> <img src="myroom.png"> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|int2]]">> <<else>> <img src="myroom.png"> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week3]]">> <</if>> <</nobr>> <<set $pop to 0>>
<<if $test == 0>> <<goto "ashley11alt">> <<else>> <<goto "ashgdx">> <</if>>
<<dialogue "Think" "brain.png" "I wonder what Ashley’s doing?">> <<dialogue "Ashley" "ashley2.png" "Sorry Jack I’ve got plans, but don’t be a stranger.">> <video src="ash12.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to false>> <<set $test to 0>>
<<if $ashley gte 100>> <<goto "1">> /* End game test - MUST be first condition */ <<elseif not hasVisited("ashley7")>> <<goto "ashley7">> /* First visit */ <<elseif not hasVisited("ashley9alt")>> <<goto "ashley9">> /* First visit - loops until ashley9alt */ <<elseif not hasVisited("ashley10alt") && $sun >= 10>> <<goto "ashley10">> /* Requires $sun >= 10 */ <<elseif not hasVisited("ashley11alt") && $sun >= 20>> <<goto "ashley11">> /* Requires $sun >= 20 */ <<elseif not hasVisited("ashley12")>> <<goto "ashley12">> /* Final progression */ <<else>> <<goto "ashley12">> /* Permanent destination */ <</if>>
<<if $foxy gte 100>> <<goto "4">> /* End game test - MUST be first condition */ <<elseif not hasVisited("foxy5")>> <<goto "foxy5">> <!-- First visit --> <<elseif not hasVisited("foxy11alt")>> <<goto "foxy11">> <!-- Loop until foxy11alt is visited --> <<elseif not hasVisited("foxy12alt")>> <<goto "foxy12">> <!-- Loop until foxy12alt is visited --> <<elseif not hasVisited("foxy13")>> <<goto "foxy13">> <!-- Final progression --> <<else>> <<goto "foxy13">> <!-- Permanent destination --> <</if>>
<<dialogue "Think" "brain.png" "I’ll check out the snack room.">> <video src="sfeggs.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Foxy" "foxy2.png" "Oh hello, I’m cooking, do I look cute?">> <<dialogue "Jack" "jack2.png" "Yes, very.">> <<dialogue "Foxy" "foxy2.png" "Oh thank you, you’re nice, [[bye.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<if $test == 0>> <<goto "foxy11alt">> <<else>> <<goto "foxygdx">> <</if>>
<<if $test == 0>> <<goto "foxy12alt">> <<else>> <<goto "foxygdx">> <</if>>
<video src="sfeggs.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Foxy" "foxy2.png" "Oh hello, I’m cooking, do I look cute?">> <<dialogue "Jack" "jack2.png" "Yes, very.">> <<dialogue "Foxy" "foxy2.png" "Oh thank you, you’re nice, [[bye.|v]]">> <<set $box +=1>> <<set $fromEvent to true>> <<set $test to 0>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if visited() == 1>> <<goto "h5alt">> <<else>> <<goto "headx">> <</if>>
<<if $dee gte 100>> <<goto "10">> /* End game test - MUST be first condition */ <<elseif not hasVisited("dextra") && hasVisited("head3")>><<goto "dextra">> <<else>> <<goto "dee6">> <</if>>
<video src="sf1w.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Foxy" "foxy2.png" "Oh hello again, do I look cute today?">> <<dialogue "Jack" "jack2.png" "Yes, very cute.">> <<dialogue "Foxy" "foxy2.png" "Oh thank you, you're nice, [[bye.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Ashley" "ashley2.png" "Hello again, sexy aren’t I?">> <<nobr>> <<switch random(1, 4)>> <<case 1>> <video src="nancyg1.mp4" autoplay loop muted controls height="360px"></video> <<case 2>> <video src="nancyg2.mp4" autoplay loop muted controls height="360px"></video> <<case 3>> <video src="nancyg3.mp4" autoplay loop muted controls height="480px"></video> <<case 4>> <video src="nancyg3a.mp4" autoplay loop muted controls height="480px"></video> <</switch>> <</nobr>> <<dialogue "Jack" "jack2.png" "Yes, very.">> <<dialogue "Ashley" "ashley2.png" "Well aren’t you sweet.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<video src="fay2a.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Fay" "fay2.png" "Sorry cutie pie I’ve got plans today, but I’ll take care of you next time.">> <<dialogue "Jack" "jack2.png" "Ok, see you [[later.|x]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Ashley" "ashley2.png" "Sorry Jack I’ve got plans, but don’t be a stranger.">> <video src="ash12.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Ashley" "ashley2.png" "Hello Jack, do I look hot.">> <<dialogue "Jack" "jack2.png" "Wow, yes.">> <<nobr>> <<switch random(1, 4)>> <<case 1>> <video src="nancyg1.mp4" autoplay loop muted controls height="360px"></video> <<case 2>> <video src="nancyg2.mp4" autoplay loop muted controls height="360px"></video> <<case 3>> <video src="nancyg3.mp4" autoplay loop muted controls height="360px"></video> <<case 4>> <video src="nancyg3a.mp4" autoplay loop muted controls height="360px"></video> <</switch>> <</nobr>> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<dialogue "Carrey" "carrey2.png" "Hi coach.">> <video src="carr1gyma.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Carrey" "carrey2.png" "Haha [[bye bye.|x]]">> <<set $fromEvent to true>>
<<dialogue "Carrey" "carrey2.png" "Hi coach.">> <img src="carrey5.png"> <<dialogue "Carrey" "carrey2.png" "Come up to my room sometime, [[bye bye.|x]]">> <<set $fromEvent to true>>
<<dialogue "Carrey" "carrey2.png" "Not now coach but this’ll keep you horny for me. Is it working?">> <<dialogue "Jack" "jack2.png" "God yes.">> <<nobr>> <div id="video-container"> <video id="main-video" src="carr3.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="carr3.mp4,carr4.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Carrey" "carrey2.png" "Haha [[bye bye.|x]]">> <<set $box +=1>> <<set $fromEvent to true>>
<video src="sfeggs.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Foxy" "foxy2.png" "Oh hello, I’m cooking, do I look cute?">> <<dialogue "Jack" "jack2.png" "Yes, very.">> <<dialogue "Foxy" "foxy2.png" "Oh thank you, you’re nice, [[bye.|x]]">> <<set $box +=1>> <<set $fromEvent to true>>
<video src="sf1cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Foxy" "foxy2.png" "Do you like this, it's still my favorite one">> <<dialogue "Jack" "jack2.png" "Yes, it’s very good.">> <<dialogue "Foxy" "foxy2.png" "You’re sweet, [[bye.|x]]">> <<set $box +=1>> <<set $fromEvent to true>>
<video src="sf1w.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Foxy" "foxy2.png" "Oh hello, do I look cute?">> <<dialogue "Jack" "jack2.png" "Yes, very.">> <<dialogue "Foxy" "foxy2.png" "Oh thank you, you’re nice, [[bye.|x]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<nobr>> <div id="video-container"> <video id="main-video" src="pp1a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="pp1a.mp4,pp1b.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Pat" "pat2.png" "I don’t have a show for you today but you can wank off later thinking about this.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<set $fromEvent to true>>
<video src="divagd3.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Diva" "diva2.png" "You still think I’m hot?">> <<dialogue "Jack" "jack2.png" "Wow, yes. [[See you later.|x]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<nobr>> <<switch random(1, 3)>> <<case 1>> <video src="ag2.mp4" autoplay loop muted controls height="480px"></video> <<case 2>> <video src="ag2b.mp4" autoplay loop muted controls height="480px"></video> <<case 3>> <video src="ag2c.mp4" autoplay loop muted controls height="480px"></video> <</switch>> <</nobr>> <<dialogue "Alice" "alice2.png" "Sorry Jack, I’m busy, but drop back later, you never know.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<set $box +=1>> <<set $fromEvent to true>>
<video src="ju1w.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Julie" "julie2.png" "’ello Jack, beautiful day isn’t it?">> <<dialogue "Jack" "jack2.png" "Yes it is. I’ll leave you to it, [[bye.|x]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Dee" "dee2.png" "Hi Jack, d’you think I look hot?">> <<dialogue "Jack" "jack2.png" "Yes.">> <video src="red.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Dee" "dee2.png" "Thanks, [[see you around.|x]]">> <<set $box +=1>> <<set $fromEvent to true>>
<video src="de1gym.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Dee" "dee2.png" "Thanks, see you around.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<set $box +=1>> <<set $fromEvent to false>>
<video src="de1cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Dee" "dee2.png" "I'm busy at the moment, see you around.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<set $box +=1>> <<set $fromEvent to false>>
<video src="sec2acca.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Secretary" "sec2.png" "Hi Jack, I’m always happy to see you but I have plans, so raincheck ok.">> <<dialogue "Jack" "jack2.png" "Er ok, bye.">> <<dialogue "Think" "brain.png" "I'd better [[go.|x]]">> <<set $fromEvent to false>>
<video src="off3grey.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Secretary" "sec2.png" "Hi Jack, I’m always happy to see you but I have plans, so raincheck ok.">> <<dialogue "Jack" "jack2.png" "Er ok, bye.">> <<dialogue "Think" "brain.png" "I'd better [[go.|x]]">> <<set $fromEvent to false>>
<video src="theroom3.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Therapist" "ther2.png" "Hi Jack, I’m a bit busy at the moment, I’ll catch up with you later, ok.">> <<dialogue "Jack" "jack2.png" "Ok Will, see you [[later.|x]]">> <<set $gas -= 10>> <<set $fromEvent to false>>
<img src="the1.png"> <<dialogue "Therapist" "ther2.png" "Hi Jack, I’m a bit busy at the moment, I’ll catch up with you later, ok.">> <<dialogue "Jack" "jack2.png" "Ok Will, see you [[later.|x]]">> <<set $gas -= 10>> <<set $fromEvent to false>>
<<dialogue "Think" "brain.png" "Eric’s having fun.">> <video src="jan1.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Think" "brain.png" "I’m getting turned on watching this, [[I’d better go.|x]]">> <<set $gas -= 10>> <<set $fromEvent to true>>
<<nobr>> <<if hasVisited("chef6alt")>> <video src="chefx2.mp4" autoplay loop muted controls height="480px"></video> <<else>> <video src="chefx3.mp4" autoplay loop muted controls height="480px"></video> <</if>> <</nobr>> <<nobr>> <<if hasVisited("chef6alt")>> <<dialogue "Think" "brain.png" "That's the driver that delivers the food from the wholesaler. I'd better [[go before they see me.|x]]">> <<else>> <<dialogue "Think" "brain.png" "Chef's busy, [[I'd better go.|x]]">> <</if>> <</nobr>> <<set $gas -= 10>> <<nobr>> <<if hasVisited("chef6alt")>> <<set $fromEvent to true>> <<else>> <<set $fromEvent to false>> <</if>> <</nobr>>
<<nobr>> <<switch random(1, 4)>> <<case 1>> <video src="ta.mp4" autoplay loop muted controls height="480px"></video> <<case 2>> <video src="tb.mp4" autoplay loop muted controls height="480px"></video> <<case 3>> <video src="tc.mp4" autoplay loop muted controls height="480px"></video> <<case 4>> <video src="td.mp4" autoplay loop muted controls height="480px"></video> <</switch>> <</nobr>> <<dialogue "Teacher" "teach2.png" "Hi Jack, it’s good to see you but I have plans, so come back [[another time ok.|x]]">> <<set $fromEvent to false>>
<video src="mesh.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "I should grab some [[breakfast.|mapmornw3s]]">> <<link "<img src='bfast.png'>">> <<goto "mapmornw3s">> <</link>> <<set $test to 0>>
<img src="ash1.png"> <<dialogue "Ashley" "ashley2.png" "Come in Jack.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ash10a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ash10a.mp4,ash10b.mp4,ash10c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Wow, thanks Ashley you’re amazing.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $ashley += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Ashley" "ashley2.png" "Hey Jack, take me to your room right now.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ash9a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ash9a.mp4,ash9b.mp4,ash9c.mp4" data-labels="NEXT,FUCK" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Ashley" "ashley2.png" "Thanks Jack, see you later.">> <<dialogue "Think" "brain.png" "Wow, this place is [[something else.|x]]">> <<if visited() == 1>> <<set $ashley += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $corr < 50>> <<set $corr to 50>> <</if>> <<set $pop to 0>> <<set $gas to 0>> <<set $sun to 0>> <<goto "week6">>
<<if $dee gte 100>> <<goto "10">> /* End game test - MUST be first condition */ <<elseif not hasVisited("dextra")>> <<goto "dextra">> <<elseif not hasVisited("dee7alt")>> <<goto "dee7">> <!-- Loop until dee7alt is visited --> <<else>> <<goto "dee10">> <!-- Proceed after dee7alt --> <</if>>
<<if not hasVisited("head8")>> <<goto "head8">> <!-- First visit --> <<elseif not hasVisited("head9")>> <<if $sun >= 10>> <<goto "head9">> <!-- Unlocked at sun 10 --> <<else>> <<goto "head8">> <!-- Loop until sun >= 10 --> <</if>> <<elseif not hasVisited("head10")>> <<if $sun >= 20>> <<goto "head10">> <!-- Unlocked at sun 20 --> <<else>> <<goto "head9">> <!-- Loop until sun >= 20 --> <</if>> <<elseif not hasVisited("head11")>> <<if $sun >= 30>> <<goto "head11">> <!-- Unlocked at sun 30 --> <<else>> <<goto "head10">> <!-- Loop until sun >= 30 --> <</if>> <<elseif not hasVisited("head12")>> <<if $sun >= 40>> <<goto "head12">> <!-- Unlocked at sun 40 --> <<else>> <<goto "head11">> <!-- Loop until sun >= 40 --> <</if>> <<else>> <<goto "head12">> <!-- Permanent destination --> <</if>>
<img src="mandf.png" usemap="#image-map"> <<dialogue "Think" "brain.png" "Should I peek in the women's or go straight into the men's.">> <map name="image-map"> <area data-passage="w6showm" alt="w6showm" title="shower" coords="245,405,99,79" shape="rect"> <area data-passage="w6showf" alt="w6showf" title="shower" coords="403,83,549,400" shape="rect"> </map>
<<switch random(1, 4)>> <<case 1>> <video src="fshow1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's.|w6showm]]">> <<case 2>> <video src="fshowd.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's.|w6showm]]">> <<case 3>> <img src="ms.png"> <<dialogue "Think" "brain.png" "Empty. I'll get a [[shower in the men's.|w6showm]]">> <<case 4>> <img src="ms.png"> <<dialogue "Think" "brain.png" "Empty. I'll get a [[shower in the men's.|w6showm]]">> <</switch>>
<<if lastVisited("w6showf") ==1>> <img src="sb1.png"> <<else>> <video src="mesh.mp4" autoplay loop muted controls height="480px"></video> <</if>> <<dialogue "Think" "brain.png" "I should grab some breakfast in the [[canteen|mapmornw6]] then get to work.">> <<link "<img src='bfast.png'>">> <<goto "mapmornw6">> <</link>>
<<nobr>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w61m')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w62m')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w63m')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w64m')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w65m')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w66m')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w61m]] [[2. Gym|w62m]] [[3. Staff accommodation|w63m]] [[4. School|w64m]] [[5. The Head's rooms|w65m]] [[6. Guest dormitory|w66m]]
<img src="woods2.png" usemap="#image-map"> <map name="image-map"> <area data-passage="julieww6" alt="julieww6" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="secwood" alt="secwood" title="Secretary" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<goto "gw6">>
<img src="scom10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroomw6" alt="secroomw6" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="529,176,80" shape="circle"> </map>
<img src="sch60.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxyschw6" alt="foxyschw6" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="deesch" alt="deesch" title="Dee" coords="108,267,79" shape="circle"> <area data-passage="carschw6" alt="carschw6" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="theoffw3" alt="theoffw3" title="Therapist" coords="323,271,83" shape="circle"> <area data-passage="secoffw6" alt="secoffw6" title="Secretary" coords="532,90,79" shape="circle"> <area data-passage="ashschw3" alt="ashsch" title="Ashley" coords="534,265,78" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw6" alt="headw6" title="Head" coords="317,181,145" shape="circle"> </map>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="gd60.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw6" alt="ashgdw6" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygdw6" alt="faygdw6" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargdw6" alt="cargdw6" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="deegdw6" alt="deegdw6" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw6" alt="patgdw6" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegdw6" alt="alicegdw6" title="Alice" coords="534,265,78" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="gd61.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="saraw6" alt="saraw6" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="juliegd" alt="juliegd" title="Julie" coords="322,94,80" shape="circle"> <area data-passage="deegdw6" alt="deegdw6" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw6" alt="patgdw6" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="divagdw6" alt="divagdw6" title="Diva" coords="534,265,78" shape="circle"> </map> <</if>> <</nobr>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w61a')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w62a')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w63a')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w64a')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w65a')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w66a')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w61a]] [[2. Gym|w62a]] [[3. Staff accommodation|w63a]] [[4. School|w64a]] [[5. The Head's rooms|w65a]] [[6. Guest dormitory|w66a]]
<img src="woods2.png" usemap="#image-map"> <map name="image-map"> <area data-passage="julieww6" alt="julieww6" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="secwood" alt="secwood" title="Secretary" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="scom1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroomw6" alt="secroom" title="Secretary" coords="112,185,92" shape="circle"> <area data-passage="theroomw6" alt="theroomw6" title="Therapist" coords="319,184,86" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="524,179,89" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="scom10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroomw6" alt="secroomw6" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="529,176,80" shape="circle"> </map> <</if>> <</nobr>>
<img src="sch60.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxyschw6" alt="foxyschw6" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="deesch" alt="deesch" title="Dee" coords="108,267,79" shape="circle"> <area data-passage="carschw6" alt="carschw6" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="theoffw3" alt="theoffw3" title="Therapist" coords="323,271,83" shape="circle"> <area data-passage="secoffw6" alt="secoffw6" title="Secretary" coords="532,90,79" shape="circle"> <area data-passage="ashschw3" alt="ashsch" title="Ashley" coords="534,265,78" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw6" alt="headw6" title="Head" coords="317,181,145" shape="circle"> </map>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="gd61.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="saraw6" alt="saraw6" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="juliegd" alt="juliegd" title="Julie" coords="322,94,80" shape="circle"> <area data-passage="deegdw6" alt="deegdw6" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw6" alt="patgdw6" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="divagdw6" alt="divagdw6" title="Diva" coords="534,265,78" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="gd60.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw6" alt="ashgdw6" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygdw6" alt="faygdw6" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargdw6" alt="cargdw6" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="deegdw6" alt="deegdw6" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw6" alt="patgdw6" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegdw6" alt="alicegdw6" title="Alice" coords="534,265,78" shape="circle"> </map> <</if>> <</nobr>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w61e')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w62e')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w63e')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w64e')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w65e')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w66e')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w61e]] [[2. Gym|w62e]] [[3. Staff accommodation|w63e]] [[4. School|w64e]] [[5. The Head's rooms|w65e]] [[6. Guest dormitory|w66e]]
<img src="woods.png"> <<dialogue "Think" "brain.png" "I guess a jog in the woods would be cool.">> <img src="jogtest.gif" height="400"> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|w6bed]]">> <<set $fromEvent to false>> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="scom10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroomw6" alt="secroomw6" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="529,176,80" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="scom1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroomw6" alt="secroom" title="Secretary" coords="112,185,92" shape="circle"> <area data-passage="theroomw6" alt="theroomw6" title="Therapist" coords="319,184,86" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="524,179,89" shape="circle"> </map> <</if>> <</nobr>>
<img src="sch10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoffw3" alt="theoffw3" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="secoffw6" alt="secoffw6" title="Secretary" coords="465,177,115" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw6" alt="headw6" title="Head" coords="317,181,145" shape="circle"> </map>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="gd60.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw6" alt="ashgdw6" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="faygdw6" alt="faygdw6" title="Fay" coords="108,267,79" shape="circle"> <area data-passage="cargdw6" alt="cargdw6" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="deegdw6" alt="deegdw6" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw6" alt="patgdw6" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegdw6" alt="alicegdw6" title="Alice" coords="534,265,78" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="gd61.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="saraw6" alt="saraw6" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="juliegd" alt="juliegd" title="Julie" coords="322,94,80" shape="circle"> <area data-passage="deegdw6" alt="deegdw6" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw6" alt="patgdw6" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="divagdw6" alt="divagdw6" title="Diva" coords="534,265,78" shape="circle"> </map> <</if>> <</nobr>>
<img src="myroom.png"> <<nobr>> <<if visited("w6bed") % 6 == 0 and visited("w6bed") != 0>> <<dialogue "Sleep" "ni.png" "Go to [[sleep.|week6s]]">> <<else>> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week6]]">> <</if>> <</nobr>>
<<nobr>> <div id="video-container"> <video id="main-video" src="bed1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="choice-container"> <div class="click-box" data-video="bed2.mp4">WANK</div> <div class="click-box" data-video="bed3.mp4">SLEEP</div> </div> </div> <</nobr>> <<nobr>> <<if visited("w6bed") % 6 == 0 and visited("w6bed") != 0>> <<dialogue "Sleep" "ni.png" "Go to [[sleep.|week6s]]">> <<else>> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week6]]">> <</if>> <</nobr>>
<<if $fromEvent && $test == 0>> <<goto "eventBranch6">> <!-- Special event path --> <<else>> <<goto "normalBranch6">> <!-- Default path --> <</if>> <<set $pop to 0>> <<checkScores>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <img src="clock.png"> <img src="wake2.png"> <<dialogue "Think" "brain.png" "Sunday, cool. Time for a [[shower.|w6shower1s]]">> <<set $test to 0>> <<set $sun += 10>> <<if $gas <= 0>><<set $gas to 20>><</if>> <<set $fit -= 5>>
<img src="mandf.png" usemap="#image-map"> <<dialogue "Think" "brain.png" "Should I peek in the women's or go straight into the men's.">> <map name="image-map"> <area data-passage="w6showms" alt="w6showms" title="shower" coords="245,405,99,79" shape="rect"> <area data-passage="w6showfs" alt="w6showfs" title="shower" coords="403,83,549,400" shape="rect"> </map>
<<switch random(1, 2)>> <<case 1>> <video src="fshow1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's|w6showms]]">> <<case 2>> <video src="fshowd.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's|w6showms]]">> <</switch>>
<video src="mesh.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "I should grab some [[breakfast.|mapmornw6s]]">> <<link "<img src='bfast.png'>">> <<goto "mapmornw6s">> <</link>>
<<nobr>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w61ms')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w62ms')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w63ms')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w64ms')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w65ms')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w66ms')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w61ms]] [[2. Gym|w62ms]] [[3. Staff accommodation|w63ms]] [[4. School|w64ms]] [[5. The Head's rooms|w65ms]] [[6. Guest dormitory|w66ms]]
<img src="woods2.png" usemap="#image-map"> <map name="image-map"> <area data-passage="julieww6" alt="julieww6" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="secwood" alt="secwood" title="Secretary" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym61.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygymw6" alt="foxygymw6" title="Foxy" coords="170,174,117" shape="circle"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="465,177,115" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="scom10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroomw6" alt="secroomw6" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="529,176,80" shape="circle"> </map>
<img src="sch10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoffw3" alt="theoffw3" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="secoffw6" alt="secoffw6" title="Secretary" coords="465,177,115" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw6" alt="headw6" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="gd63.png" usemap="#image-map"> <map name="image-map"> <area data-passage="juliegd" alt="juliegd" title="Julie" coords="102,99,78" shape="circle"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="241,265,80" shape="circle"> <area data-passage="saraw6" alt="saraw6" title="Sara" coords="397,95,83" shape="circle"> <area data-passage="faygdw6" alt="faygdw6" title="Fay" coords="534,266,79" shape="circle"> </map>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w61es')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w62es')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w63es')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w64es')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w65es')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w66es')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w61es]] [[2. Gym|w62es]] [[3. Staff accommodation|w63es]] [[4. School|w64es]] [[5. The Head's rooms|w65es]] [[6. Guest dormitory|w66es]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<if not hasVisited("head9")>> <<dialogue "Game" "gear.gif" "It’s Sunday afternoon, you should keep your appointment with the [[Head.|w65as]]">> <<else>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w61as')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w62as')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w63as')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w64as')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w65as')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w66as')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w61as]] [[2. Gym|w62as]] [[3. Staff accommodation|w63as]] [[4. School|w64as]] [[5. The Head's rooms|w65as]] [[6. Guest dormitory|w66as]] <</if>>
<img src="woods2.png" usemap="#image-map"> <map name="image-map"> <area data-passage="julieww6" alt="julieww6" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="secwood" alt="secwood" title="Secretary" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym62.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygymw6" alt="foxygymw6" title="Foxy" coords="170,174,117" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="465,177,115" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="scom1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroomw6" alt="secroomw6" title="Secretary" coords="112,185,92" shape="circle"> <area data-passage="theroomw6" alt="theroomw6" title="Therapist" coords="319,184,86" shape="circle"> <area data-passage="janitor" alt="janitor" title="Janitor" coords="524,179,89" shape="circle"> </map>
<img src="sch10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoffw3" alt="theoffw3" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="secoffw6" alt="secoffw6" title="Secretary" coords="465,177,115" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw6" alt="headw6" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="gd63.png" usemap="#image-map"> <map name="image-map"> <area data-passage="juliegd" alt="juliegd" title="Julie" coords="102,99,78" shape="circle"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="241,265,80" shape="circle"> <area data-passage="saraw6" alt="saraw6" title="Sara" coords="397,95,83" shape="circle"> <area data-passage="faygdw6" alt="faygdw6" title="Fay" coords="534,266,79" shape="circle"> </map>
<img src="woods.png"> <<dialogue "Think" "brain.png" "I guess a jog in the woods would be cool.">> <img src="jogtest.gif" height="400"> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|w6beds]]">> <<set $fromEvent to false>> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<goto "gymfun">>
<img src="scom10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="113,181,85" shape="circle"> <area data-passage="secroomw6" alt="secroomw6" title="Secretary" coords="317,179,82" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="529,176,80" shape="circle"> </map>
<img src="sch10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoffw3" alt="theoffw3" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="secoffw6" alt="secoffw6" title="Secretary" coords="465,177,115" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw6" alt="headw6" title="Head" coords="317,181,145" shape="circle"> </map>
<img src="gd62.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw6" alt="ashgdw6" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="divagdw6" alt="divagdw6" title="Diva" coords="108,267,79" shape="circle"> <area data-passage="cargdw6" alt="cargdw6" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="deegdw6" alt="deegdw6" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw6" alt="patgdw6" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="alicegdw6" alt="alicegdw6" title="Alice" coords="534,265,78" shape="circle"> </map>
<<nobr>> <<if $corr >= 75 && $fit >= 50>> <img src="myroom.png"> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|int6]]">> <<else>> <img src="myroom.png"> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week6]]">> <</if>> <</nobr>> <<set $pop to 0>> <<checkScores>>
<<if $corr < 75>> <<set $corr to 75>> <</if>> <<set $pop to 0>> <<set $gas to 0>> <<set $sun to 0>> <<goto "week9">>
<<if $fay gte 100>> <<goto "2">> /* End game test - MUST be first condition */ <<elseif not hasVisited("fay2")>> <<goto "fay2">> <!-- First visit --> <<elseif not hasVisited("fay3alt")>> <<goto "fay3">> <<elseif not hasVisited("fay4alt")>> <<goto "fay4">> <<elseif not hasVisited("fay6alt")>> <<goto "fay6">> <<elseif not hasVisited("fay7alt")>> <<goto "fay7">> <<elseif not hasVisited("fay8alt")>> <<goto "fay8">> <<else>> <<goto "fay5">> <!-- Permanent destination --> <</if>>
<<if $ashley gte 100>> <<goto "1">> /* End game test - MUST be first condition */ <<elseif not hasVisited("ashley7")>> <<goto "ashley7">> /* First visit */ <<elseif not hasVisited("ashley9alt")>> <<goto "ashley9">> /* Loop until ashley9alt */ <<elseif not hasVisited("ashley10alt")>> <<goto "ashley10">> /* Loop until ashley10alt */ <<elseif not hasVisited("ashley11alt")>> <<goto "ashley11">> /* Loop until ashley11alt */ <<elseif not hasVisited("ashley13alt") && $sun >= 20>> <<goto "ashley13">> /* Requires $sun >= 20 */ <<else>> <<goto "ashley12">> /* Default destination */ <</if>>
<<if $test == 0>> <<goto "carrey10alt">> <<else>> <<goto "cargdx">> <</if>>
<<if $test == 0>> <<goto "carrey11alt">> <<else>> <<goto "cargdx">> <</if>>
<<if $test == 0>> <<goto "carrey12alt">> <<else>> <<goto "carschx">> <</if>>
<img src="carr12.png"> <<dialogue "Carrey" "carrey2.png" "Hi coach, do I look hot.">> <<dialogue "Jack" "jack2.png" "God yes.">> <<dialogue "Carrey" "carrey2.png" "Then get in here and fuck me in the arse.">> <<nobr>> <div id="video-container"> <video id="main-video" src="carr12a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="carr12a.mp4,carr12b.mp4,carr12c.mp4" data-labels="DO IT,CUM" data-index="0">DO IT</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Oh my god. ">> <<dialogue "Carrey" "carrey2.png" "Oh yes yes. Cool, see you [[later coach.|x]]">> <<if visited() == 1>> <<set $carrey += 10>> <<if $carrey > 100>><<set $carrey = 100>><</if>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Think" "brain.png" "I wonder what Carrey’s up to?">> <img src="carr10.png"> <<dialogue "Carrey" "carrey2.png" "Hi coach, d’you think I look sexy.">> <<dialogue "Jack" "jack2.png" "Wow, yes.">> <<dialogue "Carrey" "carrey2.png" "Then get in here I want practice on you.">> <<nobr>> <div id="video-container"> <video id="main-video" src="carr10a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="carr10a.mp4,carr10b.mp4,carr10c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Wow, yes yes. ">> <<dialogue "Carrey" "carrey2.png" "Thanks, see you [[later coach.|x]]">> <<if visited() == 1>> <<set $carrey += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Carrey" "carrey2.png" "Hi coach, what d’you think.">> <<dialogue "Jack" "jack2.png" "Amazing.">> <<dialogue "Carrey" "carrey2.png" "Then get in here I want more practice.">> <<nobr>> <div id="video-container"> <video id="main-video" src="carr11a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="carr11a.mp4,carr11b.mp4" data-labels="CUM" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Oh my god. ">> <<dialogue "Carrey" "carrey2.png" "Thanks, see you [[later coach.|x]]">> <<if visited() == 1>> <<set $carrey += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "carrey13alt">> <<else>> <<goto "cargdx">> <</if>>
<<if $carrey gte 100>> <<goto "3">> /* End game test - MUST be first condition */ <<elseif not hasVisited("carrey1")>> <<goto "carrey1">> <!-- First visit --> <<elseif not hasVisited("carrey3")>> <<goto "carrey3">> <!-- After carrey1 --> <<elseif not hasVisited("carrey4")>> <<goto "carrey4">> <!-- After carrey3 --> <<elseif not hasVisited("carrey10alt")>> <<goto "carrey10">> <!-- Loop until carrey10alt --> <<elseif not hasVisited("carrey11alt")>> <<goto "carrey11">> <!-- Loop until carrey11alt --> <<else>> <<goto "carrey7">> <!-- Permanent destination --> <</if>>
<img src="carr13.png"> <<dialogue "Carrey" "carrey2.png" "Hi coach.">> <<dialogue "Jack" "jack2.png" "Hi Carrey.">> <<dialogue "Carrey" "carrey2.png" "Get in here and fuck me.">> <<nobr>> <div id="video-container"> <video id="main-video" src="carr13a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="carr13a.mp4,carr13b.mp4,carr13c.mp4" data-labels="ANAL,CUM" data-index="0">ANAL</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Oh my god. ">> <<dialogue "Carrey" "carrey2.png" "Thanks, see you [[later coach.|x]]">> <<if visited() == 1>> <<set $carrey += 10>> <<if $carrey > 100>><<set $carrey = 100>><</if>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Think" "brain.png" "There’s a lot of study rooms and tv lounges here. Carrey?">> <<dialogue "Carrey" "carrey2.png" "Not now coach but this’ll keep you horny for me. Is it working?">> <<dialogue "Jack" "jack2.png" "God yes.">> <<nobr>> <div id="video-container"> <video id="main-video" src="carr3.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="carr3.mp4,carr4.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Carrey" "carrey2.png" "Haha [[bye bye.|v]]">> <<if visited() == 1>> <<set $carrey += 10>> <<if $carrey > 100>><<set $carrey = 100>><</if>> <</if>> <<set $fromEvent to true>> <<set $box +=1>> <<set $test to 0>>
<<if $carrey gte 100>> <<goto "3">> /* End game test - MUST be first condition */ <<elseif not hasVisited("carrey1")>> <<goto "carrey1">> <!-- First visit --> <<elseif not hasVisited("carrey3")>> <<goto "carrey3">> <!-- After carrey1 --> <<elseif not hasVisited("carrey4")>> <<goto "carrey4">> <!-- After carrey3 --> <<elseif not hasVisited("carrey10alt")>> <<goto "carrey10">> <!-- Loop until carrey10alt --> <<elseif not hasVisited("carrey11alt")>> <<goto "carrey11">> <!-- Loop until carrey11alt --> <<elseif not hasVisited("carrey13alt")>> <<goto "carrey13">> <!-- Loop until carrey13alt --> <<else>> <<goto "carrey14">> <!-- Permanent destination --> <</if>>
<<if $test == 0>> <<goto "ashley13alt">> <<else>> <<goto "ashgdx">> <</if>>
<img src="ash14.png"> <<dialogue "Ashley" "ashley2.png" "Jacky, I need you totake me to your room and do me up the arse right now.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ash13a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ash13a.mp4,ash13b.mp4,ash13c.mp4" data-labels="ANAL,CUM" data-index="0">ANAL</div> </div> <</nobr>> <<dialogue "Ashley" "ashley2.png" "Thanks Jack, see you later.">> <<dialogue "Think" "brain.png" "Wow, this place is [[something else.|x]]">> <<if visited() == 1>> <<set $ashley += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if not hasVisited("head12")>> <<goto "head12">> <!-- First visit --> <<elseif not hasVisited("head13")>> <<if $sun >= 10>> <<goto "head13">> <!-- Unlocked at sun 10 --> <<else>> <<goto "head12">> <!-- Loop until sun >= 10 --> <</if>> <<elseif not hasVisited("head14")>> <<if $sun >= 20>> <<goto "head14">> <!-- Unlocked at sun 20 --> <<else>> <<goto "head13">> <!-- Loop until sun >= 20 --> <</if>> <<elseif not hasVisited("head15")>> <<if $sun >= 30>> <<goto "head15">> <!-- Unlocked at sun 30 --> <<else>> <<goto "head14">> <!-- Loop until sun >= 30 --> <</if>> <<elseif not hasVisited("head16")>> <<if $sun >= 40>> <<goto "head16">> <!-- Unlocked at sun 40 --> <<else>> <<goto "head15">> <!-- Loop until sun >= 40 --> <</if>> <<else>> <<goto "head16">> <!-- Permanent destination --> <</if>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if visited() == 1>> <<goto "h11alt">> <<else>> <<goto "headx">> <</if>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if visited() == 1>> <<goto "h12alt">> <<else>> <<goto "headz3">> <</if>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if $corr > 100>><<set $corr = 100>><</if>> <<if visited() == 1>> <<goto "h13alt">> <<else>> <<goto "headx">> <</if>> <<set $test to 0>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if $corr > 100>><<set $corr = 100>><</if>> <<if visited() == 1>> <<goto "h14alt">> <<else>> <<goto "headx">> <</if>> <<set $test to 0>>
<<if visited() == 1>> <<set $corr += 5>> <</if>> <<if $corr > 100>><<set $corr = 100>><</if>> <<if visited() == 1>> <<goto "h15alt">> <<else>> <<goto "headx">> <</if>>
<<set $corr += 5>> <<if $corr > 100>><<set $corr = 100>><</if>> <<if visited() == 1>> <<goto "h16alt">> <<else>> <<goto "headx">> <</if>> <<set $test to 0>>
<<if $test == 0>> <<goto "fay8alt">> <<else>> <<goto "faygdx">> <</if>>
<<dialogue "Think" "brain.png" "There’s so many empty rooms in here. Fay?">> <<dialogue "Fay" "fay2.png" "Come with me. Get in there, strip and lie down.">> <<dialogue "Jack" "jack2.png" "What are you going to do?">> <<dialogue "Fay" "fay2.png" "We’re going to have some fun.">> <<nobr>> <div id="video-container"> <video id="main-video" src="fay8a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="fay8a.mp4,fay8b.mp4,fay8c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Fay" "fay2.png" "Oh yes, that’s nice. Now say thank you mistress.">> <<dialogue "Jack" "jack2.png" "Thank you mistress.">> <<dialogue "Fay" "fay2.png" "Ok, off you go cutie, [[bye bye.|x]]">> <<if visited() == 1>> <<set $fay += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "fay6alt">> <<else>> <<goto "faygdx">> <</if>>
<<if $ashley gte 100>> <<goto "1">> /* End game test - MUST be first condition */ <<elseif not hasVisited("ashley1")>> <<goto "ashley1">> <<elseif not hasVisited("ashley15alt")>> <<goto "ashley15">> <!-- First visit - loops until ashley15alt is visited --> <<elseif not hasVisited("ashley16alt")>> <<goto "ashley16">> <!-- First visit - loops until ashley16alt is visited --> <<else>> <<goto "ashley2">> <!-- Permanent destination --> <</if>>
<<if $test == 0>> <<goto "ashley15alt">> <<else>> <<goto "ashschx">> <</if>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<dialogue "Ashley" "ashley2.png" "Come here, do me now before I change my mind.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ash15a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ash15a.mp4,ash15b.mp4,ash15c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Ashley" "ashley2.png" "Thanks Jacky, see you later.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $ashley += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "ashley16alt">> <<else>> <<goto "ashschx">> <</if>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here. Oh there's Ashley.">> <img src="ash16.png"> <<dialogue "Ashley" "ashley2.png" "Do you want to fuck me Jacky?">> <<nobr>> <div id="video-container"> <video id="main-video" src="ash16a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ash16a.mp4,ash16b.mp4,ash16c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Ashley" "ashley2.png" "Such a helpful boy.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $ashley += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Think" "brain.png" "There’s a lot of empty classrooms and offices here.">> <<dialogue "Ashley" "ashley2.png" "Hello Jack, watch this.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ash4.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ash4.mp4,ash5.mp4,ash6.mp4" data-labels="NEXT,NEXT" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Think" "brain.png" "[[I should go.|x]]">> <<set $fromEvent to true>>
<<if $foxy gte 100>> <<goto "4">> /* End game test - MUST be first condition */ <<elseif not hasVisited("foxy16")>><<goto "foxy16">> <<else>> <<goto "foxy2">> <</if>>
<<if $foxy gte 100>> <<goto "4">> /* End game test - MUST be first condition */ <<elseif not hasVisited("foxy1")>> <<goto "foxy1">> <<elseif not hasVisited("foxy7alt")>> <<goto "foxy7">> <!-- Loop until foxy7alt is visited --> <<elseif not hasVisited("foxy8alt")>> <<goto "foxy8">> <!-- Loop until foxy8alt is visited --> <<elseif not hasVisited("foxy15alt")>> <<goto "foxy15">> <!-- Loop until foxy15alt is visited --> <<else>> <<goto "foxy10">> <!-- Permanent destination --> <</if>>
<<dialogue "Foxy" "foxy2.png" "Oh hello, you’ve been watching me. Have you got a hard on?">> <<dialogue "Jack" "jack2.png" "Yes.">> <<dialogue "Foxy" "foxy2.png" "Oh kinky, ok you can fuck me.">> <<nobr>> <div id="video-container"> <video id="main-video" src="foxy15a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="foxy15a.mp4,foxy15b.mp4,foxy15c.mp4" data-labels="FUCK,CUM" data-index="0">FUCK</div> </div> <</nobr>> <<dialogue "Foxy" "foxy2.png" "Am I like a dirty whore now?">> <<dialogue "Jack" "jack2.png" "Yes.">> <<dialogue "Foxy" "foxy2.png" "Oh good, [[bye.|x]]">> <<if visited() == 1>> <<set $foxy += 10>> <<if $foxy > 100>><<set $foxy = 100>><</if>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "foxy15alt">> <<else>> <<goto "foxyschx">> <</if>>
<<dialogue "Foxy" "foxy2.png" "Are you watching me?">> <<dialogue "Jack" "jack2.png" "Err… yes.">> <<dialogue "Foxy" "foxy2.png" "Oh good, are you getting hard?">> <<dialogue "Jack" "jack2.png" "Err… yes.">> <<dialogue "Foxy" "foxy2.png" "Come with me, I want to feel dirty and bad.">> <<nobr>> <div id="video-container"> <video id="main-video" src="foxy16.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="foxy16.mp4,foxy16a.mp4,foxy16b.mp4,foxy16c.mp4" data-labels="OK,ANAL,CUM" data-index="0">OK</div> </div> <</nobr>> <<dialogue "Foxy" "foxy2.png" "I feel so bad, thank you.">> <<dialogue "Jack" "jack2.png" "No problem, [[bye.|x]]">> <<if visited() == 1>> <<set $foxy += 10>> <<if $foxy > 100>><<set $foxy = 100>><</if>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "foxy16alt">> <<else>> <<goto "foxygymx">> <</if>>
<video src="secout2a.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Secretary" "sec2.png" "Hi Jack, I’m always happy to see but I have plans, so [[raincheck ok.|x]]">> <<set $fromEvent to false>>
<video src="sb1cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Sara" "sara2.png" "Sorry Jack I’m busy, [[catch you later.|x]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<if $test == 0>> <<goto "sara10alt">> <<else>> <<goto "sarax">> <</if>>
<<dialogue "Think" "brain.png" "I’ll go and see Sara.">> <<dialogue "Sara" "sara2.png" "Ok take some sexy photos and then I’ll get you off.">> <<nobr>> <div id="video-container"> <video id="main-video" src="saraw3a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="saraw3a.mp4,saraw3b.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Sara" "sara2.png" "Cum on my face. Ok send them and I’ll [[see you later.|x]]">> <<if visited() == 1>> <<set $sara += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "sara11alt">> <<else>> <<goto "sarax">> <</if>>
<<dialogue "Sara" "sara2.png" "Once you’ve finished taking the photos just do whatever you want to me.">> <<nobr>> <div id="video-container"> <video id="main-video" src="saraw61a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="saraw61a.mp4,saraw61b.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Sara" "sara2.png" "Mmmnn, that was nice, come back anytime and we’ll do it again.">> <<dialogue "Jack" "jack2.png" "Ok thanks, I’ll [[see you later.|x]]">> <<if visited() == 1>> <<set $sara += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Sara" "sara2.png" "Once you’ve finished taking the photos please fuck me in the arse again.">> <<nobr>> <div id="video-container"> <video id="main-video" src="saraw3a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="saraw3a.mp4,saraw62b.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Sara" "sara2.png" "Mmmnn, that was nice, come back anytime.">> <<dialogue "Jack" "jack2.png" "Ok thanks, I’ll [[see you later.|x]]">> <<if visited() == 1>> <<set $sara += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "sara12alt">> <<else>> <<goto "sarax">> <</if>>
<video src="sb2cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Sara" "sara2.png" "Thanks for taking the photos, Beth really liked them, can you do some more?">> <<dialogue "Jack" "jack2.png" "I don’t know, I could lose my job.">> <<dialogue "Sara" "sara2.png" "I’ll give you another blowjob.">> <<dialogue "Jack" "jack2.png" "I’ll think about it ok? [[See you later.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<video src="sb1cr.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Sara" "sara2.png" "Hi Jack, I’m glad I caught you. I really need you to take some more photos for Beth. ">> <<dialogue "Jack" "jack2.png" "I don’t think it's good idea.">> <<dialogue "Sara" "sara2.png" "Look if you take more photos you can do anything you want to me. The truth is I like everthing, so just use me however you want. Don’t forget, [[see you later.|v]]">> <<set $box +=1>> <<set $fromEvent to false>>
<img src="pp60.png"> <img src="pp61.png"> <<dialogue "Pat" "pat2.png" "Hi Jack there’s nobody here and I’m horny so you’ll have to do.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ppw61a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ppw61a.mp4,ppw61b.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Pat" "pat2.png" "Nice, you’re pretty good at that.">> <<dialogue "Jack" "jack2.png" "Thanks Pat, [[see you later.|x]]">> <<if visited() == 1>> <<set $pat += 10>> <</if>> <<set $pop +=10>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Pat" "pat2.png" "Hi Jack, come in and check this out, it’s gonna get you rock hard.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ppw62a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ppw62a.mp4,ppw62b.mp4,ppw62c.mp4" data-labels="NEXT,NEXT" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Pat" "pat2.png" "I bet you're hard now?">> <<dialogue "Jack" "jack2.png" "God yes.">> <<dialogue "Pat" "pat2.png" "Good job not wanking. See you [[next time.|x]]">> <<if visited() == 1>> <<set $pat += 10>> <<if $pat > 100>><<set $pat = 100>><</if>> <</if>> <<set $pop +=10>> <<set $fromEvent to true>> <<set $test to 0>>
<<if $test == 0 && $pop == 0>> <<goto "pat10alt">> <<else>> <<goto "patgdx">> <</if>>
<<if $pat gte 100>> <<goto "6">> /* End game test - MUST be first condition */ <<elseif not hasVisited("pat2")>> <<goto "pat2">> <<elseif not hasVisited("pat3")>> <<goto "pat3">> <<elseif not hasVisited("pat4")>> <<goto "pat4">> <<elseif not hasVisited("pat5")>> <<goto "pat5">> <<elseif not hasVisited("pat6")>> <<goto "pat6">> <<elseif not hasVisited("pat7")>> <<goto "pat7">> <<elseif not hasVisited("pat8")>> <<goto "pat8">> <<elseif not hasVisited("pat10alt") && $sun >= 10>> <<goto "pat10">> <!-- Requires $sun >= 10 --> <<elseif not hasVisited("pat11alt") && $sun >= 30>> <<goto "pat11">> <!-- Requires $sun >= 30 --> <<else>> <<goto "pat12">> <!-- Final destination --> <</if>>
<<dialogue "Pat" "pat2.png" "Hi Jack, come in and watch us.">> <<nobr>> <div id="video-container"> <video id="main-video" src="pp6a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="pp6a.mp4,pp6b.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Pat" "pat2.png" "Good job not wanking. See you [[next time.|x]]">> <<if not hasVisited("pat1")>> <<set $pat += 10>> <<if $pat > 100>><<set $pat = 100>><</if>> <</if>> <<set $pop +=10>> <<set $fromEvent to true>> <<set $test to 0>>
<<dialogue "Think" "brain.png" "I wonder what Diva’s up to?">> <<dialogue "Diva" "diva2.png" "I told you I’d let you fuck me. Just one thing, I only do anal.">> <<nobr>> <div id="video-container"> <video id="main-video" src="divw61a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="divw61a.mp4,divw61b.mp4,divw61c.mp4,divw61d.mp4" data-labels="ANAL,NEXT,CUM" data-index="0">ANAL</div> </div> <</nobr>> <<dialogue "Diva" "diva2.png" "Good job Jack, remember to come back for seconds sometime.">> <<dialogue "Jack" "jack2.png" "Err… ok thanks, [[bye.|x]]">> <<if visited() == 1>> <<set $diva += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "diva7alt">> <<else>> <<goto "divagdx">> <</if>>
<<if $test == 0>> <<goto "diva8alt">> <<else>> <<goto "divagdx">> <</if>>
<<if $test == 0>> <<goto "alice6alt">> <<else>> <<goto "alicegdx">> <</if>>
<<dialogue "Alice" "alice2.png" "Hey funny guy, if you get your dick out right now you can shove it in my ass.">> <<nobr>> <div id="video-container"> <video id="main-video" src="alw6a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="alw6a.mp4,alw6b.mp4,alw6c.mp4" data-labels="ANAL,CUM" data-index="0">ANAL</div> </div> <</nobr>> <<dialogue "Alice" "alice2.png" "That was great Jack. Come back and I’ll let you do it again.">> <<dialogue "Jack" "jack2.png" "Ok thanks, [[bye.|x]]">> <<if visited() == 1>> <<set $alice += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $alice gte 100>> <<goto "8">> /* End game test - MUST be first condition */ <<elseif not hasVisited("alice2")>> <<goto "alice2">> <<elseif not hasVisited("alice3")>> <<goto "alice3">> /* After alice2 */ <<elseif not hasVisited("alice4alt")>> <<goto "alice4">> /* Loop until alice4alt */ <<elseif not hasVisited("alice6alt") && $sun >= 10>> <<goto "alice6">> /* Requires $sun >= 10 */ <<elseif not hasVisited("alice7alt") && $sun >= 30>> <<goto "alice7">> /* Requires $sun >= 30 */ <<else>> <<goto "alice5">> /* Default when sun too low or all completed */ <</if>>
<<dialogue "Julie" "julie2.png" "’ello Jack, I'm busy. See you later.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<set $box +=1>> <<set $fromEvent to false>>
<<if $test == 0>> <<goto "julie7alt">> <<else>> <<goto "juliegdx">> <</if>>
<<dialogue "Julie" "julie2.png" "’ello Jack. D’you wanna to come with me to my room. I want to try anal with you.">> <<dialogue "Jack" "jack2.png" "Err… ok.">> <<nobr>> <div id="video-container"> <video id="main-video" src="juw61a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="juw61a.mp4,juw61b.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "That was really hot thank you.">> <<dialogue "Julie" "julie2.png" "I ‘ad fun too. See ya Jack.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<set $julie += 20>> <<if $julie > 100>><<set $julie = 100>><</if>> <<set $box +=1>> <<set $fromEvent to false>>
<<dialogue "Julie" "julie2.png" "’ello Jack, beautiful day isn’t it?">> <<nobr>> <div id="video-container"> <video id="main-video" src="ju2w.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ju2w.mp4,ju3w.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Yes it is. I’ll leave you to it, [[bye.|v]]">> <<set $box +=1>> <<set $fromEvent to true>> <<set $test to 0>>
<<if $dee gte 100>> <<goto "10">> /* End game test - MUST be first condition */ <<elseif not hasVisited("dee7alt")>> <<goto "dee7">> /* Loop until dee7alt visited */ <<elseif not hasVisited("dextra6alt")>> <<goto "dextra6">> /* Requires dextra6alt completion */ <<elseif not hasVisited("dee11alt") && $sun >= 10>> <<goto "dee11">> /* Requires $sun >= 10 */ <<elseif not hasVisited("dee12alt") && $sun >= 20>> <<goto "dee12">> /* Requires $sun >= 20 */ <<elseif not hasVisited("dee13alt") && $sun >= 30>> <<goto "dee13">> /* Requires $sun >= 30 */ <<else>> <<goto "dee10">> /* Default when sun too low or all completed */ <</if>>
<<if $test == 0>> <<goto "dee11alt">> <<else>> <<goto "deegdx">> <</if>>
<<dialogue "Dee" "dee2.png" "Come here Jack I need your help.">> <<dialogue "Jack" "jack2.png" "What’s the problem?">> <<dialogue "Dee" "dee2.png" "I’m gagging for anal today, can you do it? Don’t be shy.">> <<nobr>> <div id="video-container"> <video id="main-video" src="dew61a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="dew61a.mp4,dew61b.mp4,dew61c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Wow, oh my god.">> <<dialogue "Dee" "dee2.png" "Good job Jack, [[see you around.|x]]">> <<if visited() == 1>> <<set $dee += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "dee12alt">> <<else>> <<goto "deegdx">> <</if>>
<<dialogue "Think" "brain.png" "I wonder what Dee’s up to?">> <<dialogue "Dee" "dee2.png" "Come here Jack I need cock now.">> <<nobr>> <div id="video-container"> <video id="main-video" src="dew62a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="dew62a.mp4,dew62b.mp4,dew62c.mp4" data-labels="ANAL,CUM" data-index="0">ANAL</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Oh my god, wow.">> <<dialogue "Dee" "dee2.png" "Good job Jack, [[see you around.|x]]">> <<if visited() == 1>> <<set $dee += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "dee13alt">> <<else>> <<goto "deegdx">> <</if>>
<<dialogue "Think" "brain.png" "I’ll check out the snack room.">> <<dialogue "Dee" "dee2.png" "Come here Jack I your need cock now.">> <<dialogue "Jack" "jack2.png" "But, anyone could walk in.">> <<dialogue "Dee" "dee2.png" "I hope it’s when you’re fucking me in the arse.">> <<nobr>> <div id="video-container"> <video id="main-video" src="dew63a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="dew63a.mp4,dew63b.mp4,dew63c.mp4" data-labels="ANAL,CUM" data-index="0">ANAL</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Oh my god, wow.">> <<dialogue "Dee" "dee2.png" "Good job Jack, [[see you around.|x]]">> <<if visited() == 1>> <<set $dee += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "secw1alt">> <<else>> <<goto "secwx">> <</if>>
<<dialogue "Secretary" "sec2.png" "Hi Jack it’s nice out isn’t it, So let me see you get yours out.">> <<nobr>> <div id="video-container"> <video id="main-video" src="secout1a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="secout1a.mp4,secout1b.mp4,secout1c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "Thanks Jack, [[see you later.|x]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "secw2alt">> <<else>> <<goto "secwx">> <</if>>
<<dialogue "Secretary" "sec2.png" "Hi Jack, you know I like the outdoors and the backdoors">> <<nobr>> <div id="video-container"> <video id="main-video" src="secout2a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="secout2a.mp4,secout2c.mp4,secout2d.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "Nice Jack, [[bye.|x]]">> <<set $fromEvent to false>> <<set $test += 10>>
<video src="secout2a.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Secretary" "sec2.png" "Hi Jack, I’m always happy to see but I have plans, so [[raincheck ok.|v]]">> <<set $fromEvent to false>>
<<dialogue "Secretary" "sec2.png" "Come in Jack. pretend I’m a hot young man.">> <<dialogue "Jack" "jack2.png" "What?">> <<dialogue "Secretary" "sec2.png" "Don’t be coy, you know what I mean.">> <<nobr>> <div id="video-container"> <video id="main-video" src="secrw61a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="secrw61a.mp4,secrw61b.mp4,secrw61c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "Well done Jack, [[see you later.|x]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "secroom6alt">> <<else>> <<goto "secroomx">> <</if>>
<<if not hasVisited("secroom1") && not hasVisited("secoff1")>> <<goto "secroom1">> <<elseif not hasVisited("secoff2") && not hasVisited("secroom2")>> <<goto "secroom2">> <<elseif not hasVisited("secroom3")>> <<goto "secroom3">> <<elseif not hasVisited("secroom4alt")>> <<goto "secroom4">> <!-- Requires secroom4alt visit --> <<elseif not hasVisited("secroom6alt")>> <<goto "secroom6">> <!-- Requires secroom6alt visit --> <<elseif not hasVisited("secroom7alt")>> <<goto "secroom7">> <!-- Requires secroom7alt visit --> <<else>> <<goto "secroom8">> <!-- Permanent destination --> <</if>>
<<if $test == 0>> <<goto "theroom5alt">> <<else>> <<goto "theroomx">> <</if>>
<<dialogue "Think" "brain.png" "I said I’d help Will today.">> <<dialogue "Therapist" "ther2.png" "Hi Jack, this lady wants to try double penetration.">> <<nobr>> <div id="video-container"> <video id="main-video" src="therdp1a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="therdp1a.mp4,therdp1b.mp4,therdp1c.mp4,therdp1d.mp4" data-labels="NEXT,NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Therapist" "ther2.png" "Good job Jack, see you next time.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Therapist" "ther2.png" "My next client wants to have a party with two gay men and join in. Now it’s important that it seems real so I need to be sure you won’t hesitate in the moment. So if you want do this kiss me now if not I’ll understand. So, what do you think?">> <<nobr>> <div id="video-container"> <video id="main-video" src="theroom3.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="choice-container"> <div class="click-box" data-video="theroom3b.mp4">KISS</div> <div class="click-box" data-video="nokiss.mp4">NO</div> </div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "This place gets stranger by the day and if I keep coming here he’ll probably have me sucking his cock [[before long.|v]]">> <<set $fromEvent to true>>
<<if $test == 0>> <<goto "theroom7alt">> <<else>> <<goto "theroomx">> <</if>>
<<dialogue "Think" "brain.png" "I said I’d help Will today.">> <<dialogue "Therapist" "ther2.png" "Ok Jack, sit back and go with flow.">> <<nobr>> <div id="video-container"> <video id="main-video" src="tdpbi1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="tdpbi1.mp4,tdpbi1a.mp4,tdpbi1b.mp4,tdpbi1c.mp4,tdpbi1d.mp4" data-labels="NEXT,NEXT,NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Therapist" "ther2.png" "Good job Jack, I really enjoyed that, see you next time.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to false>> <<set $test += 10>> <<set $gas to 0>>
<<if not hasVisited("theroom3") && not hasVisited("theoff3")>> <<goto "theroom3">> <<elseif not hasVisited("theroom5alt")>> <<goto "theroom5">> <!-- Must include path to theroom5alt --> <<elseif not hasVisited("theroom6")>> <<goto "theroom6">> <<elseif not hasVisited("theroom7alt")>> <<goto "theroom7">> <!-- Must include path to theroom7alt --> <<else>> <<goto "theroom8">> <!-- Final destination --> <</if>>
<<dialogue "Jack" "jack2.png" "Wow, I wonder if he’s a client or a boyfriend?">> <<nobr>> <<if visited() == 1>> <video src="to8a.mp4" autoplay loop muted controls height="480px"></video> <<elseif visited() == 2>> <video src="to8b.mp4" autoplay loop muted controls height="480px"></video> <<elseif visited() == 3>> <video src="to8c.mp4" autoplay loop muted controls height="480px"></video> <<else>> <!-- Default case after 3 visits --> <video src="to8a.mp4" autoplay loop muted controls height="480px"></video> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "Wow, I’m getting a hard on, [[I’d better go.|v]]">> <<set $fromEvent to true>>
<<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>> <<switch random(1, 6)>> <<case 1>><<goto "gymwork10">> <<case 2>><<goto "gymwork2">> <<case 3>><<goto "gymwork9">> <<case 4>><<goto "gymwork4">> <<case 5>><<goto "gymwork7">> <<case 6>><<goto "gymwork8">> <</switch>>
<<dialogue "Think" "brain.png" "I wonder what Diva’s up to?">> <<dialogue "Diva" "diva2.png" "Nice to see you Jack, you know what I like.">> <<nobr>> <div id="video-container"> <video id="main-video" src="dw62a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="dw62a.mp4,dw62b.mp4,dw62c.mp4,dw62d.mp4" data-labels="ANAL,NEXT,CUM" data-index="0">ANAL</div> </div> <</nobr>> <<dialogue "Diva" "diva2.png" "That was great Jack">> <<dialogue "Jack" "jack2.png" "Thanks, [[bye.|x]]">> <<if visited() == 1>> <<set $diva += 20>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<img src="diva9.png"> <<dialogue "Diva" "diva2.png" "Hi Jack, sorry I’m busy at the moment.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to true>> <<set $test to 0>>
<<dialogue "Alice" "alice2.png" "I’ve got a great ass haven’t I Jack?">> <<dialogue "Jack" "jack2.png" "Yes.">> <<dialogue "Alice" "alice2.png" "Well stick your dick in it and make it rough.">> <<nobr>> <div id="video-container"> <video id="main-video" src="alw7a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="alw7a.mp4,alw7b.mp4,alw7c.mp4" data-labels="ANAL,CUM" data-index="0">ANAL</div> </div> <</nobr>> <<dialogue "Alice" "alice2.png" "That was cool Jack, thanks. See you later.">> <<dialogue "Jack" "jack2.png" "Err… yes. [[Bye.|x]]">> <<set $alice += 20>> <<if $alice > 100>><<set $alice = 100>><</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "alice7alt">> <<else>> <<goto "alicegdx">> <</if>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <img src="clock.png"> <img src="wake2.png"> <<dialogue "Think" "brain.png" "I should hit the [[shower.|w9shower1]]">> <<set $test to 0>> <<if $gas <= 0>><<set $gas to 20>><</if>> <<set $fit -= 5>>
<<if not hasVisited("secoff1") && not hasVisited("secroom1")>> <<goto "secoff1">> <<elseif not hasVisited("secoff2") && not hasVisited("secroom2")>> <<goto "secoff2">> <<elseif not hasVisited("secoff4alt")>> <<goto "secoff4">> /* Looping passage (must reach secoff4alt) */ <<elseif not hasVisited("secoff7alt")>> <<goto "secoff7">> /* Looping passage (must reach secoff7alt) */ <<elseif not hasVisited("secoff8alt")>> <<goto "secoff8">> /* Looping passage (must reach secoff8alt) */ <<elseif not hasVisited("secoff9alt")>> <<goto "secoff9">> /* Looping passage (must reach secoff9alt) */ <<elseif not hasVisited("secoff10")>> <<goto "secoff10">> /* Non-looping progression */ <<elseif not hasVisited("secoff11alt")>> <<goto "secoff11">> /* Final looping passage */ <<else>> <<goto "secoff12">> /* Permanent end point */ <</if>>
<<dialogue "Secretary" "sec2.png" "Come in Jack and take a seat, this is Owen from the village, he keeps the footie pitch and garden nice. The thing is, he thinks you’re hot so I said you’d let him suck your cock.">> <<dialogue "Jack" "jack2.png" "What!">> <<dialogue "Secretary" "sec2.png" "Oh, don’t be such an old woman, you’ll enjoy it and I get to watch. So be nice and give him a kiss">> <video src="sec4int.mp4" autoplay loop muted controls height="480px"></video> <<nobr>> <img src="yn.png" usemap="#image-map"> <map name="image-map"> <area data-passage="yes" alt="yes" title="yes" coords="3,1,293,192" shape="rect"> <area data-passage="no" alt="no" title="no" coords="347,1,637,193" shape="rect"> </map> <</nobr>>
<<nobr>> <div id="video-container"> <video id="main-video" src="sec4int2.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="sec4int2.mp4,sec4c.mp4,sec4cum.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "That was so hot, see you [[later Jack.|x]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "secoff11alt">> <<else>> <<goto "secoffx">> <</if>>
<<dialogue "Secretary" "sec2.png" "Ok Jack, time to return the favour. Let me see you suck Owen’s cock.">> <<nobr>> <div id="video-container"> <video id="main-video" src="sec4no.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="sec4no.mp4,sec4int3.mp4,sec4d.mp4,sec4e.mp4" data-labels="OK,SUCK,FUCK" data-index="0">OK</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "That was super hot, see you [[later Jack.|x]]">> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Jack" "jack2.png" "Sorry I can’t do it, bye.">> <video src="sec4no.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "I should stay away from the [[secretary's office.|x]]">> <<set $fromEvent to false>>
<<if $test == 0>> <<goto "secoff7alt">> <<else>> <<goto "secoffx">> <</if>>
<<dialogue "Jack" "jack2.png" "Hi Emily, you look nice.">> <<dialogue "Female" "wom2.png" "Hi Jack are you looking for Joyce too?">> <<dialogue "Secretary" "sec2.png" "Emily, Jack, what a nice surprise. I’ve got an idea, two young people learning together, I’d love to watch that. Come on Emily.">> <<nobr>> <div id="video-container"> <video id="main-video" src="sec3learna.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="sec3learna.mp4,sec3learnb.mp4,sec3learnc.mp4,sec3learnd.mp4" data-labels="NEXT,FILM,MORE" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "Thanks for helping Jack [[see you later.|x]]">> <<set $fromEvent to true>>
<<dialogue "Secretary" "sec2.png" "I want you to do to me what you did to Emily, so get your cock out.">> <<nobr>> <div id="video-container"> <video id="main-video" src="secoff8a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="secoff8a.mp4,secoff8b.mp4,secoff8c.mp4" data-labels="ANAL,CUM" data-index="0">ANAL</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "Someone’s coming, ohhh you are bad. I love it. Thanks Jack [[see you later.|x]]">> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "secoff8alt">> <<else>> <<goto "secoffx">> <</if>>
<<dialogue "Secretary" "sec2.png" "You’re a good boy Jack and you know what I like. Do it.">> <<nobr>> <div id="video-container"> <video id="main-video" src="secr7a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="secr7a.mp4,secr7b.mp4,secr7c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "Thanks Jack, [[see you later.|x]]">> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "secroom7alt">> <<else>> <<goto "secroomx">> <</if>>
<video src="sec2acca.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Secretary" "sec2.png" "Hi Jack, I’m always happy to see you but I have plans today.">> <<dialogue "Jack" "jack2.png" "Er ok, bye.">> <<dialogue "Think" "brain.png" "I'd better [[go.|v]]">> <<set $fromEvent to false>>
<<dialogue "Secretary" "sec2.png" "Come in Jack I’m feeling horny.">> <<nobr>> <div id="video-container"> <video id="main-video" src="secoff9a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="secoff9a.mp4,secoff9b.mp4,secoff9c.mp4,secoff9d.mp4" data-labels="NEXT,ANAL,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Secretary" "sec2.png" "Thanks Jack [[see you later.|x]]">> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "secoff9alt">> <<else>> <<goto "secoffx">> <</if>>
<<dialogue "Janitor" "jan2.png" "Hi Jack. Strip off and suck my cock.">> <<nobr>> <div id="video-container"> <video id="main-video" src="jan8a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="jan8a.mp4,jan8c.mp4,jan8d.mp4" data-labels="BEND,RELAX" data-index="0">BEND</div> </div> <</nobr>> <<dialogue "Janitor" "jan2.png" "Not bad fun boy, see you later.">> <<dialogue "Think" "brain.png" "Why do I like it when he uses me like this? [[Time to go.|x]]">> <<set $fromEvent to false>> <<set $test += 10>> <<set $gas to 0>>
<<dialogue "Janitor" "jan2.png" "Get on your knees and suck it bitch boy.">> <<nobr>> <div id="video-container"> <video id="main-video" src="jan9a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="jan9a.mp4,jan9b.mp4,jan9c.mp4,jan9d.mp4" data-labels="BEND,RELAX,END" data-index="0">BEND</div> </div> <</nobr>> <<dialogue "Janitor" "jan2.png" "Say thank you sir.">> <<dialogue "Jack" "jack2.png" "Thank you sir.">> <<dialogue "Janitor" "jan2.png" "Cool, now get out.">> <<dialogue "Think" "brain.png" "What's happening to me? [[Time to go.|x]]">> <<set $fromEvent to false>> <<set $test += 10>> <<set $gas to 0>>
<<dialogue "Think" "brain.png" "Eric’s having fun.">> <video src="jan1.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Think" "brain.png" "I’m getting really turned on watching this, I’d better [[go before he sees me.|v]]">> <<set $fromEvent to true>> <<set $test to 0>>
<<if not hasVisited("janitor1")>> <<goto "janitor1">> /* First visit */ <<elseif not hasVisited("janitor2")>> <<goto "janitor2">> <<elseif not hasVisited("janitor4")>> <<goto "janitor4">> <<elseif not hasVisited("janitor6alt")>> <<goto "janitor6">> /* Loop until janitor6alt */ <<elseif not hasVisited("janitor8alt")>> <<goto "janitor8">> /* Loop until janitor8alt */ <<elseif not hasVisited("janitor9alt") && $sun >= 20>> <<goto "janitor9">> /* Requires $sun >= 20 */ <<else>> <<goto "janitor11">> /* Final destination */ <</if>>
<video src="intro1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Hi Jack, I'm too [[busy right now.|v]]">> <<set $fromEvent to true>>
<img src="mandf.png" usemap="#image-map"> <<dialogue "Think" "brain.png" "Should I peek in the women's or go straight into the men's.">> <map name="image-map"> <area data-passage="w9showm" alt="w9showm" title="shower" coords="245,405,99,79" shape="rect"> <area data-passage="w9showf" alt="w9showf" title="shower" coords="403,83,549,400" shape="rect"> </map>
<<switch random(1, 4)>> <<case 1>> <video src="fshow1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's.|w9showm]]">> <<case 2>> <video src="fshowd.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's.|w9showm]]">> <<case 3>> <img src="ms.png"> <<dialogue "Think" "brain.png" "Empty. I'll get a [[shower in the men's.|w9showm]]">> <<case 4>> <img src="ms.png"> <<dialogue "Think" "brain.png" "Empty. I'll get a [[shower in the men's.|w9showm]]">> <</switch>>
<<if lastVisited("w9showf") ==1>> <img src="sb1.png"> <<else>> <video src="mesh.mp4" autoplay loop muted controls height="480px"></video> <</if>> <<dialogue "Think" "brain.png" "I should grab some breakfast in the [[canteen|mapmornw9]] then get to work.">> <<link "<img src='bfast.png'>">> <<goto "mapmornw9">> <</link>>
<<nobr>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w91m')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w92m')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w93m')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w94m')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w95m')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w96m')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w91m]] [[2. Gym|w92m]] [[3. Staff accommodation|w93m]] [[4. School|w94m]] [[5. The Head's rooms|w95m]] [[6. Guest dormitory|w96m]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w91a')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w92a')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w93a')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w94a')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w95a')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w96a')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w91a]] [[2. Gym|w92a]] [[3. Staff accommodation|w93a]] [[4. School|w94a]] [[5. The Head's rooms|w95a]] [[6. Guest dormitory|w96a]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w91e')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w92e')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w93e')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w94e')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w95e')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w96e')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w91e]] [[2. Gym|w92e]] [[3. Staff accommodation|w93e]] [[4. School|w94e]] [[5. The Head's rooms|w95e]] [[6. Guest dormitory|w96e]]
<img src="woods2.png" usemap="#image-map"> <map name="image-map"> <area data-passage="julieww6" alt="julieww6" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="secwood" alt="secwood" title="Secretary" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<goto "gw9">>
<img src="scom4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroomw6" alt="secroomw6" title="Secretary" coords="105,105,85" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="208,259,79" shape="circle"> <area data-passage="theroomw6" alt="theroomw6" title="Therapist" coords="317,102,84" shape="circle"> <area data-passage="janitorw9" alt="janitorw9" title="Janitor" coords="428,261,81" shape="circle"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="531,95,84" shape="circle"> </map>
<img src="sch60.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxyschw6" alt="foxyschw6" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="deesch" alt="deesch" title="Dee" coords="108,267,79" shape="circle"> <area data-passage="carschw6" alt="carschw6" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="theoffw9" alt="theoffw9" title="Therapist" coords="323,271,83" shape="circle"> <area data-passage="secoffw6" alt="secoffw6" title="Secretary" coords="532,90,79" shape="circle"> <area data-passage="ashschw3" alt="ashsch" title="Ashley" coords="534,265,78" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw9" alt="headw9" title="Head" coords="317,181,145" shape="circle"> </map>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="gd91.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw9" alt="ashgdw9" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="saraw9" alt="saraw9" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="faygdw9" alt="faygdw9" title="Fay" coords="322,94,80" shape="circle"> <area data-passage="deegdw9" alt="deegdw9" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="cargdw6" alt="cargdw6" title="Carrey" coords="532,90,79" shape="circle"> <area data-passage="alicegdw9" alt="alicegdw9" title="Alice" coords="534,265,78" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="gd90.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="saraw9" alt="saraw9" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="faygdw9" alt="faygdw9" title="Fay" coords="322,94,80" shape="circle"> <area data-passage="deegdw9" alt="deegdw9" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw9" alt="patgdw9" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="divagdw9" alt="divagdw9" title="Diva" coords="534,265,78" shape="circle"> </map> <</if>> <</nobr>>
<img src="woods2.png" usemap="#image-map"> <map name="image-map"> <area data-passage="julieww6" alt="julieww6" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="secwood" alt="secwood" title="Secretary" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="scom4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroomw6" alt="secroomw6" title="Secretary" coords="105,105,85" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="208,259,79" shape="circle"> <area data-passage="theroomw6" alt="theroomw6" title="Therapist" coords="317,102,84" shape="circle"> <area data-passage="janitorw9" alt="janitorw9" title="Janitor" coords="428,261,81" shape="circle"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="531,95,84" shape="circle"> </map>
<img src="sch60.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxyschw6" alt="foxyschw6" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="deesch" alt="deesch" title="Dee" coords="108,267,79" shape="circle"> <area data-passage="carschw6" alt="carschw6" title="Carrey" coords="322,94,80" shape="circle"> <area data-passage="theoffw9" alt="theoffw9" title="Therapist" coords="323,271,83" shape="circle"> <area data-passage="secoffw6" alt="secoffw6" title="Secretary" coords="532,90,79" shape="circle"> <area data-passage="ashschw3" alt="ashsch" title="Ashley" coords="534,265,78" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw9" alt="headw9" title="Head" coords="317,181,145" shape="circle"> </map>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="gd90.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="saraw9" alt="saraw9" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="faygdw9" alt="faygdw9" title="Fay" coords="322,94,80" shape="circle"> <area data-passage="deegdw9" alt="deegdw9" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw9" alt="patgdw9" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="divagdw9" alt="divagdw9" title="Diva" coords="534,265,78" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="gd91.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw9" alt="ashgdw9" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="saraw9" alt="saraw9" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="faygdw9" alt="faygdw9" title="Fay" coords="322,94,80" shape="circle"> <area data-passage="deegdw9" alt="deegdw9" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="cargdw6" alt="cargdw6" title="Carrey" coords="532,90,79" shape="circle"> <area data-passage="alicegdw9" alt="alicegdw9" title="Alice" coords="534,265,78" shape="circle"> </map> <</if>> <</nobr>>
<img src="woods.png"> <<dialogue "Think" "brain.png" "I guess a jog in the woods would be cool.">> <img src="jogtest.gif" height="400"> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|w9bed]]">> <<set $fromEvent to false>> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="105,105,85" shape="circle"> <area data-passage="foxygym" alt="foxygym" title="Foxy" coords="208,259,79" shape="circle"> <area data-passage="cargym" alt="cargym" title="Carrey" coords="317,102,84" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="428,261,81" shape="circle"> <area data-passage="patgym" alt="patgym" title="Pat" coords="531,95,84" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="scom4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroomw6" alt="secroomw6" title="Secretary" coords="105,105,85" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="208,259,79" shape="circle"> <area data-passage="theroomw6" alt="theroomw6" title="Therapist" coords="317,102,84" shape="circle"> <area data-passage="janitorw9" alt="janitorw9" title="Janitor" coords="428,261,81" shape="circle"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="531,95,84" shape="circle"> </map>
<img src="sch10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoffw9" alt="theoffw9" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="secoffw6" alt="secoffw6" title="Secretary" coords="465,177,115" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw9" alt="headw9" title="Head" coords="317,181,145" shape="circle"> </map>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="gd91.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw9" alt="ashgdw9" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="saraw9" alt="saraw9" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="faygdw9" alt="faygdw9" title="Fay" coords="322,94,80" shape="circle"> <area data-passage="deegdw9" alt="deegdw9" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="cargdw6" alt="cargdw6" title="Carrey" coords="532,90,79" shape="circle"> <area data-passage="alicegdw9" alt="alicegdw9" title="Alice" coords="534,265,78" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="gd90.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="saraw9" alt="saraw9" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="faygdw9" alt="faygdw9" title="Fay" coords="322,94,80" shape="circle"> <area data-passage="deegdw9" alt="deegdw9" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw9" alt="patgdw9" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="divagdw9" alt="divagdw9" title="Diva" coords="534,265,78" shape="circle"> </map> <</if>> <</nobr>>
<<if $fromEvent && $test == 0>> <<goto "eventBranch9">> <!-- Special event path --> <<else>> <<goto "normalBranch9">> <!-- Default path --> <</if>> <<set $pop to 0>> <<checkScores>>
<<nobr>> <div id="video-container"> <video id="main-video" src="bed1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="choice-container"> <div class="click-box" data-video="bed2.mp4">WANK</div> <div class="click-box" data-video="bed3.mp4">SLEEP</div> </div> </div> <</nobr>> <<nobr>> <<if visited("w9bed") % 6 == 0 and visited("w9bed") != 0>> <<dialogue "Sleep" "ni.png" "Go to [[sleep.|week9s]]">> <<else>> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week9]]">> <</if>> <</nobr>>
<img src="myroom.png"> <<nobr>> <<if visited("w9bed") % 6 == 0 and visited("w9bed") != 0>> <<dialogue "Sleep" "ni.png" "Go to [[sleep.|week9s]]">> <<else>> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week9]]">> <</if>> <</nobr>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <img src="clock.png"> <img src="wake2.png"> <<dialogue "Think" "brain.png" "Sunday, cool. Time for a [[shower.|w9shower1s]]">> <<set $test to 0>> <<set $sun += 10>> <<if $gas <= 0>><<set $gas to 20>><</if>> <<set $fit -= 5>>
<img src="mandf.png" usemap="#image-map"> <<dialogue "Think" "brain.png" "Should I peek in the women's or go straight into the men's.">> <map name="image-map"> <area data-passage="w9showms" alt="w9showms" title="shower" coords="245,405,99,79" shape="rect"> <area data-passage="w9showfs" alt="w9showfs" title="shower" coords="403,83,549,400" shape="rect"> </map>
<video src="mesh.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "I should grab some [[breakfast.|mapmornw9s]]">> <<link "<img src='bfast.png'>">> <<goto "mapmornw9s">> <</link>>
<<switch random(1, 2)>> <<case 1>> <video src="fshow1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's|w9showms]]">> <<case 2>> <video src="fshowd.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Wow, I’d better [[shower in the men's|w9showms]]">> <</switch>>
<<nobr>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w91ms')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w92ms')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w93ms')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w94ms')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w95ms')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w96ms')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w91ms]] [[2. Gym|w92ms]] [[3. Staff accommodation|w93ms]] [[4. School|w94ms]] [[5. The Head's rooms|w95ms]] [[6. Guest dormitory|w96ms]]
<img src="woods2.png" usemap="#image-map"> <map name="image-map"> <area data-passage="julieww6" alt="julieww6" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="secwood" alt="secwood" title="Secretary" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym62.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygymw6" alt="foxygymw6" title="Foxy" coords="170,174,117" shape="circle"> <area data-passage="deegym" alt="deegym" title="Dee" coords="465,177,115" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="scom4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroomw6" alt="secroomw6" title="Secretary" coords="105,105,85" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="208,259,79" shape="circle"> <area data-passage="theroomw6" alt="theroomw6" title="Therapist" coords="317,102,84" shape="circle"> <area data-passage="janitorw9" alt="janitorw9" title="Janitor" coords="428,261,81" shape="circle"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="531,95,84" shape="circle"> </map>
<img src="sch10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoffw9" alt="theoffw9" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="secoffw6" alt="secoffw6" title="Secretary" coords="465,177,115" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw9" alt="headw9" title="Head" coords="317,181,145" shape="circle"> </map>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="gd90.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="saraw9" alt="saraw9" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="faygdw9" alt="faygdw9" title="Fay" coords="322,94,80" shape="circle"> <area data-passage="deegdw9" alt="deegdw9" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw9" alt="patgdw9" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="divagdw9" alt="divagdw9" title="Diva" coords="534,265,78" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="gd91.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw9" alt="ashgdw9" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="saraw9" alt="saraw9" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="faygdw9" alt="faygdw9" title="Fay" coords="322,94,80" shape="circle"> <area data-passage="deegdw9" alt="deegdw9" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="cargdw6" alt="cargdw6" title="Carrey" coords="532,90,79" shape="circle"> <area data-passage="alicegdw9" alt="alicegdw9" title="Alice" coords="534,265,78" shape="circle"> </map> <</if>> <</nobr>>
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w91es')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w92es')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w93es')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w94es')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w95es')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w96es')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w91es]] [[2. Gym|w92es]] [[3. Staff accommodation|w93es]] [[4. School|w94es]] [[5. The Head's rooms|w95es]] [[6. Guest dormitory|w96es]]
<<nobr>> <<AdvancePeriod>> <span style ="font-size:24px"> @@#now;<<now>>@@ </span> <</nobr>> <<if not hasVisited("head9")>> <<dialogue "Game" "gear.gif" "It’s Sunday afternoon, you should keep your appointment with the [[Head.|w95as]]">> <<else>> <<nobr>> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Interactive Map</title> <style> body { text-align: center; font-family: Arial, sans-serif; } .map-container { position: relative; display: inline-block; } .map-container img { width: 100%; height: auto; } .marker { position: absolute; background-color: black; color: white; border: 2px solid white; border-radius: 50%; width: 30px; height: 30px; text-align: center; line-height: 30px; font-weight: bold; cursor: pointer; } </style> </head> <body> <div class="map-container"> <img src="newmap.png" alt="Game Map"> <!-- Number Markers --> <div class="marker" style="top: 2%; left: 15%;" onclick="goToPassage('w91as')">1</div> <div class="marker" style="top: 25%; left: 40%;" onclick="goToPassage('w92as')">2</div> <div class="marker" style="top: 52%; left: 10%;" onclick="goToPassage('w93as')">3</div> <div class="marker" style="top: 60%; left: 28%;" onclick="goToPassage('w94as')">4</div> <div class="marker" style="top: 65%; left: 45%;" onclick="goToPassage('w95as')">5</div> <div class="marker" style="top: 65%; left: 76%;" onclick="goToPassage('w96as')">6</div> </div> <script> function goToPassage(passage) { if (typeof SugarCube !== "undefined" && SugarCube.Engine) { SugarCube.Engine.play(passage); } else { alert("SugarCube Engine not found. Ensure this runs in a Twine environment."); } } </script> </body> </html> <</nobr>> [[1. Picnic area and woods|w91as]] [[2. Gym|w92as]] [[3. Staff accommodation|w93as]] [[4. School|w94as]] [[5. The Head's rooms|w95as]] [[6. Guest dormitory|w96as]] <</if>>
<img src="woods2.png" usemap="#image-map"> <map name="image-map"> <area data-passage="julieww6" alt="julieww6" title="Julie" coords="110,190,89" shape="circle"> <area data-passage="secwood" alt="secwood" title="Secretary" coords="319,190,89" shape="circle"> <area data-passage="foxyw" alt="foxyw" title="Foxy" coords="531,189,90" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="gym61.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygymw6" alt="foxygymw6" title="Foxy" coords="170,174,117" shape="circle"> <area data-passage="ashgym" alt="ashgym" title="Ashley" coords="465,177,115" shape="circle"> </map> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<img src="scom4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroomw6" alt="secroomw6" title="Secretary" coords="105,105,85" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="208,259,79" shape="circle"> <area data-passage="theroomw6" alt="theroomw6" title="Therapist" coords="317,102,84" shape="circle"> <area data-passage="janitorw9" alt="janitorw9" title="Janitor" coords="428,261,81" shape="circle"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="531,95,84" shape="circle"> </map>
<img src="sch10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoffw9" alt="theoffw9" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="secoffw6" alt="secoffw6" title="Secretary" coords="465,177,115" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw9" alt="headw9" title="Head" coords="317,181,145" shape="circle"> </map>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="gd91.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw9" alt="ashgdw9" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="saraw9" alt="saraw9" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="faygdw9" alt="faygdw9" title="Fay" coords="322,94,80" shape="circle"> <area data-passage="deegdw9" alt="deegdw9" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="cargdw6" alt="cargdw6" title="Carrey" coords="532,90,79" shape="circle"> <area data-passage="alicegdw9" alt="alicegdw9" title="Alice" coords="534,265,78" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="gd90.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="saraw9" alt="saraw9" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="faygdw9" alt="faygdw9" title="Fay" coords="322,94,80" shape="circle"> <area data-passage="deegdw9" alt="deegdw9" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw9" alt="patgdw9" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="divagdw9" alt="divagdw9" title="Diva" coords="534,265,78" shape="circle"> </map> <</if>> <</nobr>>
<img src="woods.png"> <<dialogue "Think" "brain.png" "I guess a jog in the woods would be cool.">> <img src="jogtest.gif" height="400"> <<dialogue "Think" "brain.png" "Time to go back to [[my room.|w9beds]]">> <<set $fromEvent to false>> <<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>>
<<goto "gymfun">>
<img src="scom4.png" usemap="#image-map"> <map name="image-map"> <area data-passage="secroomw6" alt="secroomw6" title="Secretary" coords="105,105,85" shape="circle"> <area data-passage="chefw3" alt="chefw3" title="Chef" coords="208,259,79" shape="circle"> <area data-passage="theroomw6" alt="theroomw6" title="Therapist" coords="317,102,84" shape="circle"> <area data-passage="janitorw9" alt="janitorw9" title="Janitor" coords="428,261,81" shape="circle"> <area data-passage="teachw3" alt="teachw3" title="Teacher" coords="531,95,84" shape="circle"> </map>
<img src="sch10.png" usemap="#image-map"> <map name="image-map"> <area data-passage="theoffw9" alt="theoffw9" title="Therapist" coords="170,174,117" shape="circle"> <area data-passage="secoffw6" alt="secoffw6" title="Secretary" coords="465,177,115" shape="circle"> </map>
<img src="head1.png" usemap="#image-map"> <map name="image-map"> <area data-passage="headw9" alt="headw9" title="Head" coords="317,181,145" shape="circle"> </map>
<<nobr>> <<if $day % 2 === 0>> <!-- Show image for even days --> <img src="gd90.png" usemap="#image-map"> <map name="image-map"> <area data-passage="foxygd" alt="foxygd" title="Foxy" coords="105,90,79" shape="circle"> <area data-passage="saraw9" alt="saraw9" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="faygdw9" alt="faygdw9" title="Fay" coords="322,94,80" shape="circle"> <area data-passage="deegdw9" alt="deegdw9" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="patgdw9" alt="patgdw9" title="Pat" coords="532,90,79" shape="circle"> <area data-passage="divagdw9" alt="divagdw9" title="Diva" coords="534,265,78" shape="circle"> </map> <<else>> <!-- Show image for odd days --> <img src="gd91.png" usemap="#image-map"> <map name="image-map"> <area data-passage="ashgdw9" alt="ashgdw9" title="Ashley" coords="105,90,79" shape="circle"> <area data-passage="saraw9" alt="saraw9" title="Sara" coords="108,267,79" shape="circle"> <area data-passage="faygdw9" alt="faygdw9" title="Fay" coords="322,94,80" shape="circle"> <area data-passage="deegdw9" alt="deegdw9" title="Dee" coords="323,271,83" shape="circle"> <area data-passage="cargdw6" alt="cargdw6" title="Carrey" coords="532,90,79" shape="circle"> <area data-passage="alicegdw9" alt="alicegdw9" title="Alice" coords="534,265,78" shape="circle"> </map> <</if>> <</nobr>>
<img src="myroom.png"> <<dialogue "Sleep" "ni.png" "Time to go to [[sleep.|week9]]">> <<set $pop to 0>> <<checkScores>>
<<set $fit += 10>> <<if $fit > 100>><<set $fit = 100>><</if>> <<switch random(1, 6)>> <<case 1>><<goto "gymwork1">> <<case 2>><<goto "gymwork10">> <<case 3>><<goto "gymwork9">> <<case 4>><<goto "gymwork4">> <<case 5>><<goto "gymwork7">> <<case 6>><<goto "gymwork8">> <</switch>>
<video src="fay1b.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Fay" "fay2.png" "I heard you coach footie, you should come to my room sometime, I like playing with balls too.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to true>>
<<if $fay gte 100>> <<goto "2">> /* End game test - MUST be first condition */ <<elseif not hasVisited("fay2")>> <<goto "fay2">> /* First visit - mandatory start */ <<elseif not hasVisited("fay3alt")>> <<goto "fay3">> /* Direct progression from fay2 */ <<elseif not hasVisited("fay4alt")>> <<goto "fay4">> /* Requires fay4alt completion */ <<elseif not hasVisited("fay6alt")>> <<goto "fay6">> /* Requires fay6alt completion */ <<elseif not hasVisited("fay7alt")>> <<goto "fay7">> /* Requires fay7alt completion */ <<else>> <<goto "fay5">> /* Final destination */ <</if>>
<<if $fay gte 100>> <<goto "2">> /* End game test - MUST be first condition */ <<elseif not hasVisited("fay2")>> <<goto "fay2">> /* First visit */ <<elseif not hasVisited("fay3alt")>> <<goto "fay3">> /* Until fay3alt */ <<elseif not hasVisited("fay4alt")>> <<goto "fay4">> /* Until fay4alt */ <<elseif not hasVisited("fay6alt")>> <<goto "fay6">> /* Until fay6alt */ <<elseif not hasVisited("fay7alt")>> <<goto "fay7">> /* Until fay7alt */ <<elseif not hasVisited("fay8alt")>> <<goto "fay8">> /* Until fay8alt */ <<elseif not hasVisited("fay9alt")>> <<goto "fay9">> /* Until fay9alt */ <<elseif not hasVisited("fay10alt") && $sun >= 10>> <<goto "fay10">> /* Requires $sun >= 10 */ <<elseif not hasVisited("fay11alt") && $sun >= 20>> <<goto "fay11">> /* Requires $sun >= 20 */ <<else>> <<goto "fay12">> /* Final destination */ <</if>>
<<dialogue "Fay" "fay2.png" "Get in here cutie I need you to fuck me.">> <<nobr>> <div id="video-container"> <video id="main-video" src="fay7a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="fay7a.mp4,fay7b.mp4,fay7c.mp4" data-labels="GO IN,CUM" data-index="0">GO IN</div> </div> <</nobr>> <<dialogue "Fay" "fay2.png" "Good job cutie pie.">> <<dialogue "Jack" "jack2.png" "Err… thanks.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $fay += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "fay9alt">> <<else>> <<goto "faygdx">> <</if>>
<<dialogue "Think" "brain.png" "There must be one here amoungst all this am-dram junk. Fay?">> <<dialogue "Fay" "fay2.png" "What are you doing in the old school drama scenery and prop store.">> <<dialogue "Jack" "jack2.png" "I was looking for a torch.">> <<dialogue "Fay" "fay2.png" "Oooh peeping tom, kinky.">> <<dialogue "Jack" "jack2.png" "No, it’s for jogging.">> <<dialogue "Fay" "fay2.png" "Boring. Stay here and don’t move. Say yes mistress.">> <<dialogue "Jack" "jack2.png" "Yes mistress.">> <<nobr>> <div id="video-container"> <video id="main-video" src="fay10a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="fay10a.mp4,fay10b.mp4,fay10c.mp4,fay10d.mp4,fay10e.mp4" data-labels="WAIT,OBEY,RELAX,CUM" data-index="0">WAIT</div> </div> <</nobr>> <<dialogue "Fay" "fay2.png" "You liked that didn’t you?">> <<dialogue "Jack" "jack2.png" "Yes mistress.">> <<dialogue "Fay" "fay2.png" "Ok, run along cutie pie, [[bye bye.|x]]">> <<if visited() == 1>> <<set $fay += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "fay10alt">> <<else>> <<goto "faygdx">> <</if>>
<<dialogue "Think" "brain.png" "I wonder what Fay’s up to?">> <<dialogue "Fay" "fay2.png" "Come in, have a drink and strip.">> <<dialogue "Jack" "jack2.png" "Yes mistress.">> <<nobr>> <div id="video-container"> <video id="main-video" src="fay9a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="fay9a.mp4,fay9b.mp4,fay9c.mp4,fay9d.mp4" data-labels="OBEY,RELAX,CUM" data-index="0">OBEY</div> </div> <</nobr>> <<dialogue "Fay" "fay2.png" "Was that nice cutie?">> <<dialogue "Jack" "jack2.png" "Yes mistress.">> <<dialogue "Fay" "fay2.png" "Good, [[bye bye.|x]]">> <<if visited() == 1>> <<set $fay += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "fay11alt">> <<else>> <<goto "faygdx">> <</if>>
<<dialogue "Fay" "fay2.png" "Look at this one cutie pie, it vibrates. Do you want it up your bum.">> <<dialogue "Jack" "jack2.png" "Yes please mistress.">> <<nobr>> <div id="video-container"> <video id="main-video" src="fay11a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="fay11a.mp4,fay11b.mp4,fay11c.mp4" data-labels="BEND,CUM" data-index="0">BEND</div> </div> <</nobr>> <<dialogue "Fay" "fay2.png" "Well done cutie.">> <<dialogue "Jack" "jack2.png" "Thank you mistress.">> <<dialogue "Fay" "fay2.png" "Ok, [[bye bye.|x]]">> <<if visited() == 1>> <<set $fay += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Think" "brain.png" "I wonder what Fay’s up to?">> <video src="fay2a.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Fay" "fay2.png" "Sorry cutie pie, I’ve got plans today.">> <<dialogue "Jack" "jack2.png" "Ok, see you [[later.|v]]">> <<if not hasVisited("fay1")>> <<set $fay += 10>> <<if $fay > 100>><<set $fay = 100>><</if>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test to 0>>
<<dialogue "Think" "brain.png" "There’s a lot of study rooms and tv lounges here.">> <<dialogue "Dee" "dee2.png" "Hi Jack, have you got a hard on?">> <<dialogue "Jack" "jack2.png" "Yes.">> <<dialogue "Dee" "dee2.png" "Come here, I’ll take care of it.">> <<nobr>> <div id="video-container"> <video id="main-video" src="dextra1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="dextra1.mp4,dextra2.mp4" data-index="0">CUM</div> </div> <</nobr>> <<dialogue "Dee" "dee2.png" "Did you like that Jack.">> <<dialogue "Jack" "jack2.png" "Yes thank you.">> <<dialogue "Dee" "dee2.png" "Cool, [[see you around.|v]]">> <<if visited() == 1>> <<set $dee += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "dextra6alt">> <<else>> <<goto "deegdx">> <</if>>
<<dialogue "Dee" "dee2.png" "Thanks for coming to see me, I want you to do something for me.">> <<dialogue "Jack" "jack2.png" "What is it.">> <<dialogue "Dee" "dee2.png" "I love anal. I want you to fuck me in the arse.">> <<nobr>> <div id="video-container"> <video id="main-video" src="dextra6a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="dextra6a.mp4,dextra6b.mp4,dextra6c.mp4,dextra6d.mp4,dextra6e.mp4" data-labels="ERR...,OK,MORE,CUM" data-index="0">ERR...</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Oh my god, wow.">> <<dialogue "Dee" "dee2.png" "Good job Jack, [[see you around.|x]]">> <<if visited() == 1>> <<set $dee += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "dw91alt">> <<else>> <<goto "deegdx">> <</if>>
<<dialogue "Dee" "dee2.png" "Hi Jack, come in and watch, Dagmar’s going to lick me out, cool huh?.">> <<nobr>> <div id="video-container"> <video id="main-video" src="dw91.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="dw91.mp4,dw91a.mp4,dw91b.mp4,dw91c.mp4" data-labels="WATCH,WANK,CUM" data-index="0">WATCH</div> </div> <</nobr>> <<dialogue "Dee" "dee2.png" "Thanks for wanking, that made it super hot.">> <<dialogue "Jack" "jack2.png" "Err.. thank you.">> <<dialogue "Dee" "dee2.png" "Cool, [[see you around.|x]]">> <<if visited() == 1>> <<set $dee += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "dw92alt">> <<else>> <<goto "deegdx">> <</if>>
<<dialogue "Think" "brain.png" "Dee’s door’s open, oh wow.">> <<nobr>> <div id="video-container"> <video id="main-video" src="dw92a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="dw92a.mp4,dw92b.mp4,dw92c.mp4,dw92d.mp4" data-labels="JOIN,FUCK,CUM" data-index="0">JOIN</div> </div> <</nobr>> <<dialogue "Dee" "dee2.png" "Thanks for helping that was cool.">> <<dialogue "Jack" "jack2.png" "Err.. thanks.">> <<dialogue "Dee" "dee2.png" "Cool, [[see you around.|x]]">> <<if visited() == 1>> <<set $dee += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $test == 0>> <<goto "dw93alt">> <<else>> <<goto "deegdx">> <</if>>
<<dialogue "Dee" "dee2.png" "Hi Jack, this my friend Barry, come and join us.">> <<nobr>> <div id="video-container"> <video id="main-video" src="dw93a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="dw93a.mp4,dw93b.mp4,dw93c.mp4,dw93d.mp4,dw93e.mp4" data-labels="JOIN,LICK,ANAL,CUM" data-index="0">JOIN</div> </div> <</nobr>> <<dialogue "Dee" "dee2.png" "Thanks for helping that was cool.">> <<dialogue "Jack" "jack2.png" "Err.. thanks.">> <<dialogue "Dee" "dee2.png" "Cool, [[see you around.|x]]">> <<set $dee += 20>> <<if $dee > 100>><<set $dee = 100>><</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $dee gte 100>> <<goto "10">> /* End game test - MUST be first condition */ <<elseif not hasVisited("dee7alt")>> <<goto "dee7">> /* Loops until dee7alt visited */ <<elseif not hasVisited("dextra6alt")>> <<goto "dextra6">> /* Requires dextra6alt completion */ <<elseif not hasVisited("dee11alt")>> <<goto "dee11">> /* Requires dee11alt completion */ <<elseif not hasVisited("dee12alt")>> <<goto "dee12">> /* Requires dee12alt completion */ <<elseif not hasVisited("dee13alt")>> <<goto "dee13">> /* Requires dee13alt completion */ <<elseif not hasVisited("dw91alt")>> <<goto "dw91">> /* Requires dw91alt completion */ <<elseif not hasVisited("dw92alt") && $sun >= 10>> <<goto "dw92">> /* Requires dw92alt AND $sun >= 10 */ <<elseif not hasVisited("dw93alt") && $sun >= 20>> <<goto "dw93">> /* Requires dw93alt AND $sun >= 20 */ <<else>> <<goto "dw94">> /* Final destination */ <</if>>
<<if $sara gte 100>> <<goto "5">> /* End game test - MUST be first condition */ <<elseif not hasVisited("sara3")>> <<goto "sara3">> <<elseif not hasVisited("sara10alt")>> <<goto "sara10">> <!-- Loop until sara10alt is visited --> <<elseif not hasVisited("sara11alt")>> <<goto "sara11">> <!-- Loop until sara11alt is visited --> <<elseif not hasVisited("sara12alt")>> <<goto "sara12">> <!-- Loop until sara12alt is visited --> <<elseif not hasVisited("sbw9alt")>> <<goto "sbw9">> <!-- Loop until sbw9alt is visited --> <<else>> <<goto "sbw9">> <!-- Permanent destination --> <</if>>
<<if $test == 0>> <<goto "sbw9alt">> <<else>> <<goto "sarax">> <</if>>
<<dialogue "Sara" "sara2.png" "Hi Jack, kiss me.">> <<nobr>> <div id="video-container"> <video id="main-video" src="sbw91a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="sbw91a.mp4,sbw91b.mp4,sbw91c.mp4" data-labels="KISS,CUM" data-index="0">KISS</div> </div> <</nobr>> <<dialogue "Sara" "sara2.png" "Mmmmnnmm, that was yummy, [[see you later Jack.|x]]">> <<set $sara += 20>> <<if $sara > 100>><<set $sara = 100>><</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<dialogue "Think" "brain.png" "I wonder what Fay’s up to?">> <<dialogue "Fay" "fay2.png" "Hello Mr sports have you come for a workout?">> <<dialogue "Jack" "jack2.png" "I think so.">> <<dialogue "Fay" "fay2.png" "Ok cutie, take off your pants.">> <<nobr>> <div id="video-container"> <video id="main-video" src="fay2a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="fay2a.mp4,fay2c.mp4,fay2d.mp4" data-labels="PANTS,CUM" data-index="0">PANTS</div> </div> <</nobr>> <<dialogue "Fay" "fay2.png" "Oooh…nice. Come back anytime.">> <<dialogue "Jack" "jack2.png" "Err… thanks.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $fay += 10>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test += 10>>
<<if $pat gte 100>> <<goto "6">> /* End game test - MUST be first condition */ <<elseif not hasVisited("pat2")>> <<goto "pat2">> /* First visit */ <<elseif not hasVisited("pat3")>> <<goto "pat3">> /* After pat2 */ <<elseif not hasVisited("pat4")>> <<goto "pat4">> /* After pat3 */ <<elseif not hasVisited("pat5") && $sun >= 10>> <<goto "pat5">> /* Requires $sun >= 10 */ <<elseif not hasVisited("pat6") && $sun >= 20>> <<goto "pat6">> /* Requires $sun >= 20 */ <<elseif not hasVisited("pat7") && $sun >= 30>> <<goto "pat7">> /* Requires $sun >= 30 */ <<elseif not hasVisited("pat8") && $sun >= 40>> <<goto "pat8">> /* Requires $sun >= 40 */ <<else>> <<goto "pat4b">> /* Default when sun too low or all completed */ <</if>>
<<nobr>> <div id="video-container"> <video id="main-video" src="pp1a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="pp1a.mp4,pp1b.mp4" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Pat" "pat2.png" "I don’t have a show for you today but you can wank off later thinking about this.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to true>> <<set $test to 0>>
<<if $julie gte 100>> <<goto "9">> /* End game test - MUST be first condition */ <<elseif not hasVisited("julie1")>> <<goto "julie1">> /* First visit */ <<elseif not hasVisited("julie2")>> <<goto "julie2">> /* After julie1 */ <<elseif not hasVisited("julie4alt")>> <<goto "julie4">> /* Requires julie4alt completion */ <<elseif hasVisited("julie4alt") && $sun < 20>> <<goto "julie6">> /* Loop until $sun >= 20 */ <<elseif not hasVisited("julie5alt")>> <<goto "julie5">> /* Requires julie5alt completion */ <<else>> <<goto "julie8">> /* Final destination */ <</if>>
<video src="head.mp4" autoplay loop muted controls height="480px"></video> <<nobr>> <<if lastVisited("5sa") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. I like to get to know my staff, tell me about what you did when you weren’t working.">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. I like to get to know my staff, tell me about what you did when you weren’t working.">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "I’d play football and computer games.">> <<dialogue "Head" "head2.png" "So you weren’t running around chasing girls just footballs. Let me guess, you get tongue tied with pretty girls and you find the pushy ones intimidating?">> <<dialogue "Jack" "jack2.png" "Wow, how did you know?">> <<dialogue "Head" "head2.png" "It’s my job dear boy, but it will make your job here difficult. Let’s boost your confidence a little, sit back relax and watch this cartoon.">> <<nobr>> <div id="video-container"> <video id="main-video" src="dvd1.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="dvd1.mp4,head1.mp4" data-index="0">PLAY</div> </div> <</nobr>> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Think" "brain.png" "Shit, I've got a hard on.">> <<dialogue "Jack" "jack2.png" "Er, good. Wow where has the time gone, [[I should go.|x]] Goodbye Dr. Jones.">>
<<nobr>> <<if lastVisited("w25as") == 3 || lastVisited("w35as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <<nobr>> <div id="video-container"> <video id="main-video" src="head3.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="choice-container"> <div class="click-box" data-video="w1480.mp4">stroke</div> <div class="click-box" data-video="resist.mp4">resist</div> </div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "Oh my god, what am I doing, I’m so sorry Dr Jones.">> <<dialogue "Head" "head2.png" "Don’t worry it happens sometimes.">> <<dialogue "Think" "brain.png" "Did the dvd make me undress? Did Dr. Jones know? [[I should go.|x]]">>
<<nobr>> <<if lastVisited("w25as") == 3 || lastVisited("w35as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <video src="head2.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Think" "brain.png" "Shit, I've got a hard on again.">> <<dialogue "Jack" "jack2.png" "Er, good. Wow where has the time gone, [[I should go.|x]] Goodbye Dr. Jones.">>
<<nobr>> <<if lastVisited("w25as") == 3 || lastVisited("w35as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <video src="head4.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "This is going too far, why can’t I say no.">> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Think" "brain.png" "Damn, another hard on. She must be able to see me getting an erection while I'm under. Maybe she’s a voyeur.">> <<dialogue "Jack" "jack2.png" "Er, ok I think. Wow where has the time gone, [[I should go.|x]] Goodbye Dr. Jones.">>
<<nobr>> <<if lastVisited("w65as") == 3 || lastVisited("w95as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <<nobr>> <div id="video-container"> <video id="main-video" src="head19.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="head19.mp4,head12.mp4" data-index="0">PLAY</div> </div> <</nobr>> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Think" "brain.png" "Damn, another hard on.">> <<dialogue "Jack" "jack2.png" "Er, good. Wow where has the time gone, [[I should go.|x]] Goodbye Dr. Jones.">>
<<nobr>> <<if lastVisited("w95as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <<nobr>> <div id="video-container"> <video id="main-video" src="head19.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="head19.mp4,head13.mp4" data-index="0">PLAY</div> </div> <</nobr>> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Think" "brain.png" "Damn, another hard on.">> <<dialogue "Jack" "jack2.png" "Er, good. Wow where has the time gone, [[I should go.|x]] Goodbye Dr. Jones.">>
<<nobr>> <<if lastVisited("w95as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <<nobr>> <div id="video-container"> <video id="main-video" src="head19.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="head19.mp4,head14.mp4" data-index="0">PLAY</div> </div> <</nobr>> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Think" "brain.png" "Damn, another hard on.">> <<dialogue "Jack" "jack2.png" "Er, good. Wow where has the time gone, [[I should go.|x]] Goodbye Dr. Jones.">>
<<nobr>> <<if lastVisited("w95as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <video src="head15.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Jack" "jack2.png" "Er, a little fuzzy I think.">> <<dialogue "Head" "head2.png" "Good, now make love to me.">> <<dialogue "Jack" "jack2.png" "Err I’m not sure this is right.">> <<dialogue "Head" "head2.png" "Obey me, obey me now.">> <<dialogue "Jack" "jack2.png" "Yes Dr Jones.">> <<nobr>> <div id="video-container"> <video id="main-video" src="kristen2.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="kristen2.mp4,head20.mp4,head22.mp4" data-labels="OBEY,DO IT" data-index="0">OBEY</div> </div> <</nobr>> <<dialogue "Head" "head2.png" "Thank you dear boy.">> <<dialogue "Think" "brain.png" "Oh my god, what am I doing.">> <<dialogue "Jack" "jack2.png" "[[I have to go.|x]]">> <<set $fromEvent to false>>
<<nobr>> <<if lastVisited("w95as") == 3>> <<dialogue "Head" "head2.png" "Ahh, right on time, come in take a seat. Anything to report?">> <<else>> <<dialogue "Head" "head2.png" "Well this is not the usual appointment, but it’s always nice to be visited by a handsome young man. Take a seat. Anything to report?">> <</if>> <</nobr>> <<dialogue "Jack" "jack2.png" "They all seem to be offline.">> <<dialogue "Head" "head2.png" "Very good dear boy, let’s boost your confidence a little more, sit back relax and watch the cartoon.">> <<nobr>> <div id="video-container"> <video id="main-video" src="head19.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="head19.mp4,head16.mp4" data-index="0">PLAY</div> </div> <</nobr>> <<dialogue "Head" "head2.png" "How do you feel?">> <<dialogue "Think" "brain.png" "Damn, another hard on.">> <<dialogue "Jack" "jack2.png" "Er, good. Wow where has the time gone, [[I should go.|x]] Goodbye Dr. Jones.">>
<<if $julie gte 100>> <<goto "9">> /* End game test - MUST be first condition */ <<elseif not hasVisited("julie1")>> <<goto "julie1">> /* First visit */ <<elseif not hasVisited("julie2")>> <<goto "julie2">> <<elseif not hasVisited("julie4alt")>> <<goto "julie4">> /* Until julie4alt */ <<elseif not hasVisited("julie5alt")>> <<goto "julie5">> /* Until julie5alt */ <<elseif $sun < 20>> <<goto "julie6">> /* Loop until $sun >= 20 */ <<elseif not hasVisited("julie7alt")>> <<goto "julie7">> /* Until julie7alt */ <<else>> <<goto "julie8">> /* Final destination */ <</if>>
<<if not hasVisited("secoff1") && not hasVisited("secroom1")>> <<goto "secoff1">> <<elseif not hasVisited("secoff2") && not hasVisited("secroom2")>> <<goto "secoff2">> <<elseif not hasVisited("secoff4alt")>> <<goto "secoff4">> /* Requires secoff4alt */ <<elseif not hasVisited("secoff5")>> <<goto "secoff5">> /* After secoff4alt */ <<else>> <<goto "secoff5">> /* Permanent destination */ <</if>>
<<if $pat gte 100>> <<goto "6">> /* End game test - MUST be first condition */ <<elseif not hasVisited("pat2")>> <<goto "pat2">> <<elseif not hasVisited("pat3")>> <<goto "pat3">> <<elseif not hasVisited("pat4")>> <<goto "pat4">> <<elseif not hasVisited("pat5")>> <<goto "pat5">> <<elseif not hasVisited("pat6")>> <<goto "pat6">> <<elseif not hasVisited("pat7")>> <<goto "pat7">> <<elseif not hasVisited("pat8")>> <<goto "pat8">> <<elseif not hasVisited("pat10alt")>> <<goto "pat10">> <<elseif not hasVisited("pat11alt")>> <<goto "pat11">> <<else>> <<goto "pat12">> <!-- Final destination --> <</if>>
<<if $ashley gte 100>> <<goto "1">> /* End game test - MUST be first condition */ <<elseif not hasVisited("ashley7")>> <<goto "ashley7">> /* First visit */ <<elseif not hasVisited("ashley9alt")>> <<goto "ashley9">> /* Loop until ashley9alt */ <<elseif not hasVisited("ashley10alt")>> <<goto "ashley10">> /* Loop until ashley10alt */ <<elseif not hasVisited("ashley11alt")>> <<goto "ashley11">> /* Loop until ashley11alt */ <<elseif not hasVisited("ashley13alt") && $sun >= 20>> <<goto "ashley13">> /* Requires $sun >= 20 */ <<elseif not hasVisited("ashley17") && $ashley < 100>> <<goto "ashley17">> <<else>> <<goto "ashley12">> /* Default destination */ <</if>>
<<if $alice gte 100>> <<goto "8">> /* End game test - MUST be first condition */ <<elseif not hasVisited("alice2")>> <<goto "alice2">> <<elseif not hasVisited("alice3")>> <<goto "alice3">> /* After alice2 */ <<elseif not hasVisited("alice4alt")>> <<goto "alice4">> /* Loop until alice4alt */ <<elseif not hasVisited("alice6alt")>> <<goto "alice6">> <<elseif not hasVisited("alice7alt") && $sun >= 20>> <<goto "alice7">> /* Requires $sun >= 20 */ <<else>> <<goto "alice8">> /* Default when sun too low or all completed */ <</if>>
<<if $diva gte 100>> <<goto "7">> /* End game test - MUST be first condition */ <<elseif not hasVisited("diva5")>> <<goto "diva5">> <<elseif not hasVisited("diva7alt")>> <<goto "diva7">> /* Loop until diva7alt */ <<elseif not hasVisited("diva8alt")>> <<goto "diva8">> /* Loop until diva8alt */ <<elseif $diva < 100 && not hasVisited("diva10alt")>> <<goto "diva10">> /* Only if $diva < 100 */ <<else>> <<goto "diva9">> /* Permanent destination */ <</if>>
<<if $test == 0>> <<goto "diva10alt">> <<else>> <<goto "divagdx">> <</if>>
<<if not hasVisited("theoff3") && not hasVisited("theroom3")>> <<goto "theoff3">> <<elseif not hasVisited("theoff5alt")>> <<goto "theoff5">> /* Loops until theoff5alt */ <<elseif not hasVisited("theoff7alt") && $sun >= 10>> <<goto "theoff7">> /* Requires $sun >= 10 */ <<else>> <<goto "theoff8">> /* Final destination */ <</if>>
<<dialogue "Think" "brain.png" "I wonder what Ashley’s doing?">> <<dialogue "Ashley" "ashley2.png" "Jacky boy, come in.">> <<nobr>> <div id="video-container"> <video id="main-video" src="ash13a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="ash13a.mp4,ash13b.mp4,ash13c.mp4" data-labels="NEXT,CUM" data-index="0">NEXT</div> </div> <</nobr>> <<dialogue "Ashley" "ashley2.png" "Good job Jacky.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<if not hasVisited("ashley1") || not hasVisited("ashley8alt")>> <<set $ashley += 10>> <<if $ashley > 100>><<set $ashley = 100>><</if>> <</if>> <<set $box +=1>> <<set $fromEvent to false>>
<<nobr>> <<switch random(1, 3)>> <<case 1>> <video src="ag2.mp4" autoplay loop muted controls height="480px"></video> <<case 2>> <video src="ag2b.mp4" autoplay loop muted controls height="480px"></video> <<case 3>> <video src="ag2c.mp4" autoplay loop muted controls height="480px"></video> <</switch>> <</nobr>> <<dialogue "Alice" "alice2.png" "Sorry Jack, I'm busy.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $fromEvent to true>> <<set $box +=1>> <<set $test to 0>>
<img src="ash16.png"> <<dialogue "Game" "gear.gif" "[[Ashley is complete.|v]]">> <<set $fromEvent to false>>
<img src="fay2e.png"> <<dialogue "Game" "gear.gif" "[[Fay is complete.|v]]">> <<set $fromEvent to false>>
<img src="carrey5.png"> <<dialogue "Game" "gear.gif" "[[Carrey is complete.|v]]">> <<set $fromEvent to false>>
<img src="foxend.png"> <<dialogue "Game" "gear.gif" "[[Foxy is complete.|v]]">> <<set $fromEvent to false>>
<img src="sarend.png"> <<dialogue "Game" "gear.gif" "[[Sara is complete.|v]]">> <<set $fromEvent to false>>
<img src="pp6.png"> <<dialogue "Game" "gear.gif" "[[Pat is complete.|v]]">> <<set $fromEvent to false>>
<img src="divend.png"> <<dialogue "Game" "gear.gif" "[[Diva is complete.|v]]">> <<set $fromEvent to false>>
<img src="alicend.png"> <<dialogue "Game" "gear.gif" "[[Alice is complete.|v]]">> <<set $fromEvent to false>>
<img src="juliend.png"> <<dialogue "Game" "gear.gif" "[[Julie is complete.|v]]">> <<set $fromEvent to false>>
<img src="deend.png"> <<dialogue "Game" "gear.gif" "[[Dee is complete.|v]]">> <<set $fromEvent to false>>
<<if $test == 0 && (hasVisited("theroom6alt") || hasVisited("secoff11alt"))>> <<goto "theoff7alt">> <<else>> <<goto "theoffx">> <</if>>
<<dialogue "Jack" "jack2.png" "Hi Will, we’ve done everyone on the list.">> <<dialogue "Therapist" "ther2.png" "I’ll give you the new list if you show me you can handle any client's needs.">> <<nobr>> <div id="video-container"> <video id="main-video" src="to7a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="to7a.mp4,to7b.mp4,to7c.mp4" data-labels="SUCK,CUM" data-index="0">SUCK</div> </div> <</nobr>> <<dialogue "Therapist" "ther2.png" "Good job Jack, here’s the list, see you next time.">> <<dialogue "Think" "brain.png" "Time to [[go.|x]]">> <<if visited() == 1>> <<set $corr += 2>> <</if>> <<set $fromEvent to false>> <<set $gas to 0>>
<img src='vidrev1.gif'> <img src="18.jpg"><img src="19.jpg"> <<dialogue "Game" "gear.gif" "Welcome to The Institute. I recommend using Chrome Browser to play this game. If you are of a legal age to view explicit content [[click yes,|intro2]] if not please leave this site.">>
<video src="game.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Game" "gear.gif" "To progress through the game click on the green boxes, the numbers, some pictures, the blue words and the circular pictures.">> <video src="game1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Game" "gear.gif" "To win the game you'll need to complete the list of ten names Dr. Jones will give Jack to 100%. To do this you'll need to push up Jack’s corruption while keeping up his fitness levels. [[Start the game.|intro4]]">>
<video src="intro2a.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Game" "gear.gif" "Hello, this is Jack Cummins, he’s a young man living in a small town in the south west of England. Life’s ok, he works at the local gym as equipment manager and has a nice flat, although he is behind with the rent. His passion is football, he goes to watch his local lower league professional team on Saturdays and helps coach his local amateur team on Sundays. Then everything changes when the gym suddenly shuts down.">> <video src="intro2b.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Game" "gear.gif" "He spends the next couple of weeks on the internet and at the job center without success, then he spots a job on the board for a P.E. (physical education) teacher at a place called The Institute in the Snowdonia foothills. He has no teaching qualifications and it’s too far to commute, but it’s a residential position and he’s falling further behind with his rent so he decides to apply. Oddly the card says to apply by mail and include a photo. Jack doesn’t see how this will help as he’s got such a generic face that he's constantly being mistaken for other people. He digs out an old envelope and stamp, adds a spare passport photo, drops it in the mail and forgets about it. [[Continue.]]">>
<<dialogue "Julie" "julie2.png" "’ello Jack, I'm busy. See you later.">> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $box +=1>> <<set $fromEvent to false>> <<set $test to 0>>
<<dialogue "Dee" "dee2.png" "Hi Jack, d’you think I look hot?">> <<dialogue "Jack" "jack2.png" "Yes.">> <video src="red.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Dee" "dee2.png" "Thanks Jack, [[see you around.|v]]">> <<if not hasVisited("dee5")>> <<set $dee += 10>> <<if $dee > 100>><<set $dee = 100>><</if>> <</if>> <<set $box +=1>> <<set $fromEvent to false>> <<set $test to 0>>
<img src="the1.png"> <<dialogue "Therapist" "ther2.png" "Hi Jack, I’m a bit busy at the moment, I’ll catch up with you later, ok.">> <<dialogue "Jack" "jack2.png" "Ok Will, see you [[later.|v]]">> <<set $fromEvent to false>> <<set $test to 0>>
<<dialogue "Diva" "diva2.png" "Nice to see you Jack, you know what I like.">> <<nobr>> <div id="video-container"> <video id="main-video" src="divw61a.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="divw61a.mp4,divw61b.mp4,divw61c.mp4,divw61d.mp4" data-labels="ANAL,NEXT,CUM" data-index="0">ANAL</div> </div> <</nobr>> <<dialogue "Diva" "diva2.png" "That was great Jack">> <<dialogue "Jack" "jack2.png" "Thanks, [[bye.|x]]">> <<set $diva += 20>> <<if $diva > 100>><<set $diva = 100>><</if>> <<set $box +=1>> <<set $test += 10>> <<set $fromEvent to false>>
<<dialogue "Secretary" "sec2.png" "Ah come in and take a seat. I’m Joyce, Dr Jones’s secretary, she’ll see you in a moment. I can see why she gave you the job.">> <<dialogue "Jack" "jack2.png" " I can’t, I’m not a teacher you see.">> <video src="intro1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Secretary" "sec2.png" "Oh, Dr. Jones likes handsome young men. You’ll be living in the staff block, it’s better than it sounds. You see this was a boarding school but we only have 64 guests and only half a dozen staff live on site, the rest live in the village, so there's lots of rooms to choose from. I picked out the best available for you, I’ll show you after you see Dr. Jones.">> <<dialogue "Jack" "jack2.png" "Thank you. Did you say guests?">> <<dialogue "Secretary" "sec2.png" "Oh yes, guests. This place looks and runs like a college but that is just to keep the guests busy while we work on changing their behaviour. You put on P.E. sessions mornings Monday to Saturday, gym or football, at least until you get into the rhythm. We put on college style classes in the school but we don’t care if the guests attend them or not. Their parents don’t spend a fortune to send their daughters here to become academics or athletes, they want us to stop them posting their sexual encounters all over the internet. Ah, Dr. Jones will [[see you now.|intro5]]">>
<<dialogue "Head" "head2.png" "Come in Mr. Cummins, take a seat. Has Joyce explained the job?">> <<dialogue "Jack" "jack2.png" "Er, yes, thanks.">> <<dialogue "Head" "head2.png" " Good, but that is only half the job. All residential staff are given a list of ten guests to keep an eye on, here’s your list. (see right hand bar).">> <<dialogue "Jack" "jack2.png" "Do you want me to spy?">> <<dialogue "Head" "head2.png" "No, no Mr. Cummins, I don’t want to make our guests paranoid, they are aware they are being monitored. What I want you to look for are signs that they have acquired technology. Airpods, usb cables, thumb drives, external batteries, hard drives or modems.">> <<dialogue "Jack" "jack2.png" "Modems?">> <<dialogue "Head" "head2.png" "They’re what people used to connect to the internet before wi-fi. I don’t allow wi-fi here which I’m sure you’ll find inconvenient but it’s important that we keep the guests off the net. And speaking of the guests, people think that because I’m a psychiatrist this is a mental health facility, it isn’t and our guests are not ill. You see parents send their daughters here because they believe, correctly in my view, that filming themselves having sex and posting it on the net will damage their future prospects. Our job is not to cure them but to alter their personality just enough so they no longer want to expose themselves on the net. You see exhibitionism is not a mental illness any more than voyeurism or a high sex drive. It'll be easier if I show you, this is how fianaced my PhD studies 50 years ago.">> <<nobr>> <div id="video-container"> <video id="main-video" src="dvd.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="dvd.mp4,dvd2.mp4,dvd3.mp4,dvd4.mp4,pants5.mp4" data-labels="PLAY,NEXT,NEXT,WOW" data-index="0">PLAY</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "[[Wow!|intro6]]">>
<<if $pop == 0>> <<goto "pat6alt">> <<else>> <<goto "patgdx">> <</if>>
<<if $pop == 0>> <<goto "pat4alt">> <<else>> <<goto "patgdx">> <</if>>
<<if $pop == 0>> <<goto "pat3alt">> <<else>> <<goto "patgdx">> <</if>>
<<if $pop == 0>> <<goto "pat5alt">> <<else>> <<goto "patgdx">> <</if>>
<<if $pop == 0>> <<goto "pat7alt">> <<else>> <<goto "patgdx">> <</if>>
<<if $pop == 0>> <<goto "pat8alt">> <<else>> <<goto "patgdx">> <</if>>
<<if $pop == 0>> <<goto "pat11alt">> <<else>> <<goto "patgdx">> <</if>>
<<if $pop == 0>> <<goto "pat12alt">> <<else>> <<goto "patgdx">> <</if>>
<img src="head.png"> <<dialogue "Think" "brain.png" "Nobody here, what's that on the table?">> <<nobr>> <<switch random(1, 6)>> <<case 1>> <img src="file1.jpg"> <<case 2>> <img src="file2.jpg"> <<case 3>> <img src="file3.jpg"> <<case 4>> <img src="file4.jpg"> <<case 5>> <img src="file5.jpg"> <<case 6>> <img src="file6.jpg"> <</switch>> <</nobr>> <<dialogue "Think" "brain.png" "I should leave before anyone see's me and come back Sunday afternoon. Time to [[go.|x]]">> <<set $fromEvent to false>>
<<dialogue "Head" "head2.png" "It's not Sunday afternoon yet but it’s always nice to be visited by a handsome young man. Take a seat">> <video src="hint.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Head" "head2.png" "If you're having trouble finding your way around you should talk to my secretary, she knows more about this Institute than I do.">> <<dialogue "Think" "brain.png" "Thanks Dr. Jones I'll do that, [[bye.|v]]">> <<if visited() >= 2>><<goto "headx">><</if>>
<<dialogue "Game" "gear.gif" "Good job player, you have completed the game.">> <video src="party.mp4" autoplay loop muted controls height="360px"></video> <<dialogue "Game" "gear.gif" "There are many ways to complete this game, why not play again with a different strategy.">>
<img src="head.png"> <<dialogue "Think" "brain.png" "She's not here, what's that on the table?">> <video src="rs.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Maybe I should [[ask the residential staff how this place works.|x]]">> <<set $fromEvent to false>>
<img src="head.png"> <<dialogue "Think" "brain.png" "She's not here, what's that on the table?">> <video src="rs.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Maybe I should [[ask the residential staff how this place works.|x]]">> <<set $fromEvent to false>>
<img src="head.png"> <<dialogue "Think" "brain.png" "She's not here, what's that on the table?">> <video src="rs.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Maybe I should [[ask the residential staff how this place works.|x]]">> <<set $fromEvent to false>>
<<dialogue "Game" "gear.gif" "A week later he gets a letter saying he’s got the job plus a train ticket dated Sunday and instructions on how to get an Uber from the station to The Institute. He jumps on the internet but all he can find is an old newspaper article about a Dr. Enda Jones opening a clinic, in a former private boarding school, to treat internet addiction. The article said little about the clinic, instead focusing on how only the very wealthy can afford to go there.">> <video src="cont.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Game" "gear.gif" "Jack was now so far behind with his rent that he had no choice, so early Sunday morning he sets off for his new job. What he didn't know was that Dr Jones liked to test her behaviour modification treatments on her residential staff and she intended Jack to become her latest guinea pig. What happens to Jack now is up to you so [[click here.|intro3]]">>
<<dialogue "Head" "head2.png" "Oh, you have an erection, how flattering, you should masturbate later. Anyway, I know it seems tame by today’s standards, but it was considered pornography 50 years ago. This is why the young ladies that are sent here are guests not patients. Do you understand?">> <<dialogue "Jack" "jack2.png" "Yes Dr. Jones.">> <<dialogue "Head" "head2.png" "Good, now come to my rooms every Sunday afternoon to keep me up to date. But also feel free to drop in anytime, my door is always open.">> <<dialogue "Jack" "jack2.png" "I wouldn’t want to impose.">> <<dialogue "Head" "head2.png" "Dear boy, when you get to my age a visit from a handsome young man is never an imposition. Now off you go and take care of that erection.">> <<dialogue "Secretary" "sec2.png" "Everything good? Ok come with me I’ll show you your rooms. ">> <<nobr>> <div id="video-container"> <video id="main-video" src="intro2.mp4" autoplay loop muted controls></video> </div> <div id="button-container"> <div class="click-box" data-playlist="intro2.mp4,room.mp4" data-index="0">ROOM</div> </div> <</nobr>> <<dialogue "Jack" "jack2.png" "This will be great, thank you.">> <<dialogue "Secretary" "sec2.png" " Good, now get settled in and get a good nights sleep, you start work tomorrow. Come and see me if you need anything, in fact come and see me anyway, I like handsome young men too. Do you understand handsome?">> <<dialogue "Jack" "jack2.png" "Er, yes thanks.">> <<dialogue "Think" "brain.png" "It's been a long day I'll dump my stuff in the draws and [[hit the sack.|intro7]]">>
<video src="theroom3.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Therapist" "ther2.png" "Hi Jack, come in, sit down.">> <<dialogue "Jack" "jack2.png" "Hi Will, thanks. So, this thing you wanted me to help you with?">> <<dialogue "Therapist" "ther2.png" "The thing is your generation has grown up watching pornography in a way previous generations never did. And for some people when they start having sex for real it does not measure up to the fantasy they’ve created in the minds. So, I try to help them and for their last session with me I make their most erotic sexual fantasy real in a safe, confidential and non-judgemental environment. Occasionally their fantasy involves two men, that’s were you come in, understand?">> <<dialogue "Jack" "jack2.png" "Err yes, I suppose I could help.">> <<dialogue "Therapist" "ther2.png" "Ok, take this it has all the details.">> <<dialogue "Game" "gear.gif" "The game will ensure you’re there at the [[right time.|v]]">> <<set $fromEvent to false>>
<img src="the1.png"> <<dialogue "Therapist" "ther2.png" "Hi Jack, come in, sit down.">> <<dialogue "Jack" "jack2.png" "Hi Will, thanks. So, this thing you wanted me to help you with?">> <<dialogue "Therapist" "ther2.png" "The thing is your generation has grown up watching pornography in a way previous generations never did. And for some people when they start having sex for real it does not measure up to the fantasy they’ve created in the minds. So, I try to help them and for their last session with me I make their most erotic sexual fantasy real in a safe, confidential and non-judgemental environment. Occasionally their fantasy involves two men, that’s were you come in, understand?">> <<dialogue "Jack" "jack2.png" "Err yes, I suppose I could help.">> <<dialogue "Therapist" "ther2.png" "Ok, take this it has all the details.">> <<dialogue "Game" "gear.gif" "The game will ensure you’re there at the [[right time.|v]]">> <<set $fromEvent to false>>
<<if visited() >= 2>> <<dialogue "Chef" "chef2.png" "Hi Mr. Physical, do you later.">> <<else>> <<dialogue "Chef" "chef2.png" "Hi, are you the new Physical Education teacher?">> <<dialogue "Jack" "jack2.png" "Yes, Jack Cummins.">> <<dialogue "Chef" "chef2.png" "Lovely to meet Mr. Cum…err…ing, just call me Chef everyone does.">> <<dialogue "Jack" "jack2.png" "Ok, see you later.">> <<dialogue "Chef" "chef2.png" "I hope so.">> <</if>> <<dialogue "Progress" "prog.png" "The chef [[likes you.|v]]">> <<set $fromEvent to false>>
<img src="gym.png"> <<dialogue "Think" "brain.png" "I guess a workout would be good.">> <video src="megym1.mp4" autoplay loop muted controls height="480px"></video> <<dialogue "Think" "brain.png" "Time to [[go.|v]]">> <<set $fromEvent to false>>