Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
Loading…
<<initInv>>\
<<set $days to ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]>>\
<<set $periods to ["Night", "Morning", "Noon", "Afternoon", "Evening", "Late evening"]>>\
<<set $day to 1>>\
<<set $period to 1>>\
<<set $mc to {
name: "John",
int: 0,
str: 0,
charisma: 0,
friends: 0,
drunk: false,
seXP: 0,
porn: 0,
dom: 0,
sub: 0,
job: null,
money: 100,
eyes: "blue",
hair: "blond",
}>>\
<<set $sis to {
name: "Sasha",
trust: 2,
corr: 0,
sex: 0,
loc: "bathroom",
}>>\
<<set $mom to {
name: "Mom",
trust: 2,
corr: 0,
sex: 0,
loc: "kitchen",
}>>\
<<set $kate to {
name: "Kate",
trust: 0,
corr: 0,
sex: 0,
loc: "classroom",
}>>\
<<set $hotdog to{
int: 0,
}>>\
<<set $lemo to{
int: 0,
}>>\
<<set $lucy to {
name: "Lucy",
trust: 0,
corr: 0,
sex: 0,
loc: "classroom",
}>>\
<<set $jade to {
name: "Jade",
trust: 0,
corr: 0,
sex: 0,
loc: "classroom",
}>>\
<<set $teacher to {
name: "Teacher",
int: 0,
trust: 0,
corr: 0,
sex: 0,
loc: "classroom",
}>>\
<<set $quest to {
jadeclass: 0,
lucyclass: 0,
kateclass: 0,
jadegym: 0,
lucylibrary: 0,
katepool: 0,
teacheroffice: 0,
sisbathroom: 0,
sisbedroom: 0,
momhouse: 0,
}>>\
<<homeworksetup>>\
<<set $has to {
study: 0,
work: 0,
wash: 0,
lunch: 0,
dinner: 0,
porn: 0,
dishes: 0,
vacuum: 0,
passTest: 0,
failTest: 0,
metjade: 0,
metlucy: 0,
metkate: 0,
giftJade: 0,
giftSister: 0,
giftMom: 0,
giftLucy: 0,
giftKate: 0,
sisterintro: 0,
pocketmoney: 0,
usedcheat: 0,
bathroomkey: 0,
bathroomkeycopy: 0,
sexapplucy: 0,
sexappkate: 0,
sexapplucy: 0,
lucyid: 0,
kateid: 0,
jadeid: 0,
}>>\
<<set $homework to {
has: 0,
subject: 0,
difficulty: 0,
done: 0,
}>>\
''Welcome to the new version of Become Someone, which is the v0.3 I hope you enjoy the new content!''
<button id="startbutton" class="large green button">[[Let's start|Game start]]</button>
<<widget "now">>
\<<print $days[$day % 7]>> - <<print $periods[$period]>><br> Day $day
<</widget>>
<<widget "AdvancePeriod">>
\<<silently>>
<<set _offset to 1>>
<<set _periodsInDay to $periods.length>>
<<if $args.length > 0>>
<<set _offset to $args[0]>>
<</if>>
<<set $period += _offset>>
<<if $period >= _periodsInDay>>
<<set $day += Math.trunc($period / _periodsInDay)>>
<<set $period to ($period % _periodsInDay)>>
<</if>>
<</silently>>\
<</widget>>
<<widget "NextMorning">>
\<<silently>>
<<set $day += 1>>
<<set $period to 1>>
<</silently>>\
<</widget>>
<<widget "mcint">>
<<set $mc.int = parseInt($mc.int) + 1>> ''You are now more intelligent''\
<</widget>>
<<widget "mcstr">>
<<set $mc.str = parseInt($mc.str) + 1>> ''You are now stronger''\
<</widget>>
<<widget "mcfriend">>
<<set $mc.friend = parseInt($mc.friend) + 1>> ''You have a new friend !''\
<</widget>>
<<widget "mccharisma">>
<<set $mc.charisma = parseInt($mc.charisma) + 1>> ''You're now a bit more charismatic''\
<</widget>>
<<widget "mcsex">>
<<set $mc.seXP = parseInt($mc.seXP) + 1>> ''You're now a bit more sexually experienced''\
<</widget>>
<<widget "mcporn">>
<<set $mc.porn = parseInt($mc.porn) + 1>> ''You're now a bit more addicted to porn''\
<</widget>>
<<widget "mcsub">>
<<set $mc.sub = parseInt($mc.sub) + 1>> ''You're now more submissive''\
<</widget>>
<<widget "mcdom">>
<<set $mc.dom = parseInt($mc.dom) + 1>> ''You're now more dominant''\
<</widget>>
<<widget "sistrust">>
<<set $sis.trust = parseInt($sis.trust) + 1>> ''Your sister trusts you more''\
<</widget>>
<<widget "sistrustminus">>
<<set $sis.trust = parseInt($sis.trust) - 1>> ''Your sister trusts you less''\
<</widget>>
<<widget "siscorr">>
<<set $sis.corr = parseInt($sis.corr) + 1>> ''Your sister is slightly more corrupted''\
<</widget>>
<<widget "momtrust">>
<<set $mom.trust = parseInt($mom.trust) + 1>> ''Your mother trusts you more''\
<</widget>>
<<widget "momtrustminus">>
<<set $mom.trust = parseInt($mom.trust) - 1>> ''Your mother trusts you less''\
<</widget>>
<<widget "momcorr">>
<<set $mom.corr = parseInt($mom.corr) + 1>> ''Your mother is slightly more corrupted''\
<</widget>>
<<widget "katetrust">>
<<set $kate.trust = parseInt($kate.trust) + 1>> ''Kate trusts you more''\
<</widget>>
<<widget "katetrustminus">>
<<set $kate.trust = parseInt($kate.trust) - 1>> ''Kate trusts you less''\
<</widget>>
<<widget "katecorr">>
<<set $kate.corr = parseInt($kate.corr) + 1>> ''Kate is slightly more corrupted''\
<</widget>>
<<widget "jadetrust">>
<<set $jade.trust = parseInt($jade.trust) + 1>> ''Jade trusts you more''\
<</widget>>
<<widget "jadetrustminus">>
<<set $jade.trust = parseInt($jade.trust) - 1>> ''Jade trusts you less''\
<</widget>>
<<widget "jadecorr">>
<<set $jade.corr = parseInt($jade.corr) + 1>> ''Jade is slightly more corrupted''\
<</widget>>
<<widget "lucytrust">>
<<set $lucy.trust = parseInt($lucy.trust) + 1>> ''Lucy trusts you more''\
<</widget>>
<<widget "lucytrustminus">>
<<set $lucy.trust = parseInt($lucy.trust) - 1>> ''Lucy trusts you less''\
<</widget>>
<<widget "homeworksetup">>
<<set $codes to {
supporter: hashStr("B201"),
supersupporter: hashStr("C382"),
gamelover: hashStr("D421"),
}>>
<</widget>>
<<widget "lucycorr">>
<<set $lucy.corr = parseInt($lucy.corr) + 1>> ''Lucy is slightly more corrupted''\
<</widget>>
<<widget "teacherint">>
<<set $teacher.int = parseInt($teacher.int) + 1>> ''Your teacher is a bit more interested in you''\
<</widget>>
<<widget "teachercorr">>
<<set $teacher.corr = parseInt($teacher.corr) + 1>> ''Your teacher is slightly more corrupted''\
<</widget>>
<<widget "teachertrust">>
<<set $teacher.trust = parseInt($teacher.trust) + 1>> ''Your teacher trusts you more''\
<</widget>>
<<widget "dayreset">>
<<set $has.study to 0>>
<<set $has.work to 0>>
<<set $has.wash to 0>>
<<set $has.lunch to 0>>
<<set $has.dinner to 0>>
<<set $has.porn to 0>>
<</widget>>
<<widget "locations">>
<<if $period is 1>>\
<<set $sis.loc to "bathroom">>\
<<set $mom.loc to "kitchen">>\
<<set $jade.loc to "classroom">>\
<<set $kate.loc to "classroom">>\
<<set $lucy.loc to "classroom">>\
<<set $teacher.loc to "classroom">>\
<<elseif $period is 0>>\
<<set $sis.loc to "her bedroom">>\
<<set $mom.loc to "her bedroom">>\
<<set $jade.loc to "her bedroom">>\
<<set $kate.loc to "her bedroom">>\
<<set $lucy.loc to "her bedroom">>\
<<set $teacher.loc to "her bedroom">>\
<<elseif $period is 2>>\
<<set $sis.loc to "high school">>\
<<set $mom.loc to "Mom's work">>\
<<set $jade.loc to "cafeteria">>\
<<set $kate.loc to "cafeteria">>\
<<set $lucy.loc to "cafeteria">>\
<<set $teacher.loc to "teacher office">>\
<<elseif $period is 3>>\
<<set $sis.loc to "high school">>\
<<set $mom.loc to "Mom's work">>\
<<set $jade.loc to "gym">>\
<<set $kate.loc to "pool">>\
<<set $lucy.loc to "library">>\
<<set $teacher.loc to "teacher office">>\
<<elseif $period is 4>>\
<<set $sis.loc to "her bedroom">>\
<<set $mom.loc to "kitchen">>\
<<set $jade.loc to "Jade's home">>\
<<set $kate.loc to "Kate's home">>\
<<set $lucy.loc to "Lucy's home">>\
<<set $teacher.loc to "Teacher's home">>\
<<elseif $period is 5>>\
<<set $sis.loc to "living room">>\
<<set $mom.loc to "her bedroom">>\
<<set $jade.loc to "Jade's home">>\
<<set $kate.loc to "Kate's home">>\
<<set $lucy.loc to "Lucy's home">>\
<<set $teacher.loc to "Teacher's home">>\
<</if>>\
<</widget>>
<<widget "receivehomework">>
<<set $homework.has to 1>>\
<<set $homework.subject to either("Math", "Statistics", "Economics", "French")>>\
<<if $quest.teacheroffice is 1>><<set $homework.difficulty to "Impossible">><<else>><<set $homework.difficulty to either("Easy", "Hard")>><</if>>\
<<set $homework.done to 0>>\
You received a<<if $homework.subject is "Economics">>n<</if>> <<print "$homework.subject">> homework this is a<<if $homework.difficulty isnot "Hard">>n<</if>> <<print "$homework.difficulty">> assignment.
<</widget>><h2 style="color: #848ed8;font-family: 'Raleway',sans-serif;font-size: 30px;font-weight: 800;line-height: 50px;margin: 0 0 24px;text-align: center;text-transform: uppercase;">Intro</h2>
<p style="text-align:justify;">You are a fresh faced young man that is going to start college tomorrow. You live with your mother and your sister. Your parents are divorced but you still have a good relationship with your dad and you will be able to visit him (next update).</p><p>College life is going to be smooth or hard depending on your choices, you will be able to go through different daily choices allowing you to make a routine of your own.</p><p>But first let me know a bit more about you :</p>\
''What's your name ?''
<<textbox "$mc.name" "John">>
''You were born in a:''
* <label><<radiobutton "$familybackground" "rich">>Rich family</label>
* <label><<radiobutton "$familybackground" "poor" checked>>Poor family</label>
''In school, you were a rather:''
* <label><<radiobutton "$mc.int" 3>>Good student</label>
* <label><<radiobutton "$mc.int" 1 checked>>Bad student</label>
''And someone''
* <label><<radiobutton "$mc.charisma" 3>>Popular</label>
* <label><<radiobutton "$mc.charisma" 1 checked>>Invisible</label>
''Do you like sports ?''
* <label><<radiobutton "$mc.str" 4>>Yes</label>
* <label><<radiobutton "$mc.str" 1 checked>>No</label>
''Eye color'' :
* <label><<radiobutton "$mc.eyes" "blue">>blue</label>
* <label><<radiobutton "$mc.eyes" "green" checked>>green</label>
* <label><<radiobutton "$mc.eyes" "black" checked>>Black</label>
''Hair color :''
* <label><<radiobutton "$mc.hair" "blond">>blond</label>
* <label><<radiobutton "$mc.hair" "brown" checked>>brown</label>
* <label><<radiobutton "$mc.hair" "black" checked>>Black</label>
<button id="backgroundbutton" class="Large button green">[[Let's go!|Little intro][$path to "university"]]</button>
[[Bedroom]]
[[Desk]]
[[Bathroom]]
[[Kitchen]]
[[Street]]
[[Living room|livingroom]]
[[Sister Bedroom]]
[[Mom bedroom|mombedroom]]<h2 style="color: #848ed8;font-family: 'Raleway',sans-serif;font-size: 30px;font-weight: 800;line-height: 50px;margin: 0 0 24px;text-align: center;text-transform: uppercase;">tips:</h2>
<h3>Your actual stats:</h3><p><span class="int stat">Intelligence: $mc.int</span>
<span class="str stat">Strength: $mc.str</span>
<span class="char stat">Charisma: $mc.charisma</span>
<span class="porn stat">Porn Addiction: $mc.porn</span>
<span class="sex stat">Sexual Experience: $mc.seXP</span>
<span class="friends stat">Number of friends: $mc.friends (in this case the word friends refers to both friends and sex-friends)</span></p><p>''You will need to upgrade them to unlock content.''</p><p>Each girl you will meet (mother and sister included) will be influenced by 2 main stats: corruption and trust. Raising a girl’s Corruption will allow you to perform certain actions. But, not as many as raising her Trust. (that does not hide pregnancy content you moron).</p><p>As the game progresses you will be able to find a job and even leave college if you choose. ''Be careful, you won’t be able to go back to school once you leave.''</p>
<button id="backgroundbutton" class="large button green">[[Game start|Starting Bedroom]]</button>
<<if $period is 5 or $period is 0>>
[[Sleep|Dream]]
<<else>>
There is nothing to do in your bedroom for the moment
<</if>>
<<if $days is "Monday" && $has.pocketmoney is 0>><<set $money += 100>><<set $has.pocketmoney to 1>><<elseif $days isnot "Monday">><<set $has.pocketmoney to 0>><</if>>
[[SexApp]]
[[Go out|House]]<<linkreplace "Study">>
<<if $has.study is 0>>
<<set $studyspeech to random(2)>>
<<if $studyspeech is 0>>
You did <<print random(1, 4)>> pages of math exercices you feel like you gained a few new brain cells
<video src="ressources/videos/study/0.webm" autoplay loop></video>
<<mcint>>
<<AdvancePeriod>>
<<set $has.study to 1>>
<<elseif $studyspeech is 1>>
You worked on your <<print either("history", "geography", "law", "biology", "chemistry", "physics", "economics")>> synthesis, only <<print random(100, 200)>> pages left to sum up
<video src="ressources/videos/study/1.webm" autoplay loop></video>
<<mcint>>
<<AdvancePeriod>>
<<set $has.study to 1>>
<<elseif $studyspeech is 2>>
After a few hours of work you finally master a chapter of <<print either("microeconomics", "macroeconomics", "management", "sociology", "statistics")>> that was a hard one !
<video src="ressources/videos/study/2.webm" autoplay loop></video>
<<mcint>>
<<AdvancePeriod>>
<<set $has.study to 1>>
<</if>>
<<else>>
You already studied today
<</if>>
<</linkreplace>>
<<if $homework.has is 1 && $homework.done is 0 && $homework.difficulty isnot "Impossible" && $period is 3>>
[[Do your homework|Homework]]
<<elseif $homework.has is 1 && $homework.done is 0 && $homework.difficulty isnot "Impossible" && $period is 4>>
[[Do your homework|Homework]]
<<else>>
<</if>>
[[Porn|WatchPorn][$has.porn to 1; $mc.porn += 1]]
<<if $has.lucyid is 1 && $has.sendnotes is 0 && $has.class is 1>>
[[Send today notes to lucy|lucynotes][$notes to 1]]
<<elseif $has.lucyid is 1 && $lucy.notes is 1 && $has.class is 1>>
[[Send today notes to lucy|lucynotes][$notes to 2]]
<<else>>
<</if>>
[[Go back|House]]<<if $sis.loc is "bathroom" && $quest.sisbathroom is 0>>
<<print "$sis.name">> is showering, the door is locked
<span style="color:orange">''You need to come back another time and steal the key. Once you have it you can make a copy and enter the bathroom whenever you want. Be sure to corrupt and garner enough trust from your sister first, or she might get angry.''</span>
<<set $quest.sisbathroom += 1>>
<<elseif $sis.loc is "bathroom" && $quest.sisbathroom is 1>>
<<print "$sis.name">> is showering, the door is locked. Come at an other time to steal the bathroom key.
<<elseif $sis.loc isnot "bathroom" && $quest.sisbathroom is 1>>
You enter the bathroom, and get the key, you may now find the strange shop to make a copy of it!
<<set $has.bathroomkey to 1>>
<<set $quest.sisbathroom += 1>>
<<elseif $sis.loc is "bathroom" && $quest.sisbathroom is 2>>
<<print "$sis.name">> is showering, the door is not locked but she might suspect you if you don't use the copy to make her think that she forgot to lock the door.
<<elseif $sis.loc is "bathroom" && $quest.sisbathroom is 3 && $sis.corr >= 10 && $sis.trust >= 10 && $has.bathroomkeycopy is 1>>
[[Enter the bathroom|sisbathroomscene][$scene to 1]]
<<elseif $sis.loc is "bathroom" && $quest.sisbathroom is 3 && $sis.corr < 10 && $sis.trust < 10 && $has.bathroomkeycopy is 1>>
[[Enter the bathroom|sisbathroomscene][$scene to 2]]
<<else>>
There is nothing do to here
<</if>>
[[Go back|House]]
<<if $period is 1>>
[[Have Lunch|Lunch][$has.lunch to 1]]
<<elseif $period is 4 or $period is 5 && $has.dinner is 0 >>
[[Eat with your family|eatingdinner][$has.dinner to 1]]
<</if>>
<<if $period is 4 or $period is 5>>
<<if $has.dishes is 0>>
[[Wash the dishes|washingdishes]]
<<else>>
<</if>>
<</if>>
[[Back|House]] [[House]]
[[University]]
[[Park]]
[[Strange shop]][[Blowjob]]
<<if $mc.porn >= 6>>[[Softporn]]<</if>>
<<if $mc.porn >= 10>>[[Lesbian]]<</if>>
<<if $mc.porn >= 15>>[[Black]]<</if>>
<<if $mc.porn >= 20>>[[Hardcore]]<</if>>
<<if $mc.porn >= 25>>[[Gangbang]]<</if>>
<<if $mc.porn >= 30>>[[Bukkake]]<</if>><<if $day is 1>>
<<if $has.sisterintro is 1>>
You had already started eating when your sister walked in. She heads towards her usual seat, shooting you a quick glance, but as soon as her butt hits the chair she can’t help but let out a small moan of pain.
<<speech "Mom">>Is everything ok sweetie ?<</speech>>
<<speech "Sasha">>Don't you worry mum I just did a little too many squats<</speech>>
You finish your meals quietly
<<else>>
Your sister didn't come to eat with you and mom, you may try to find a way to reconcile with her
<</if>>
<<else>>
You eat your lunch quietly nothing happened
<</if>>
[[Time to go to school|University]]<<if $period >= 4 or $period is 0>>
The doors seem to be closed
[[Come back home|House]]
<<else>>
[[Classroom|Classroom]]
[[Library|Library]]
[[Toilets|University restrooms]]
[[Pool|University pool]]
[[Gym|University gym]]
[[Cafeteria|Cafeteria]]
[[Teacher office|teacheroffice]]
<</if>>[[Hotdog Truck|hotdogtruck]]
[[Lemonade Truck|lemonadetruck]]
[[Come back home|House]]
[[Street]][[Electronics]]
[[Makeup]]
[[Clothes]]
[[Luxury]]<<if $mc.money <= 5>>
<<linkreplace "Buy hotdog" t8n>>You don't have enough money<</linkreplace>>
<<else>>
[[Buy hotdog|hotdogscene][$mc.money -= 5]]
<</if>>
[[Go back|Park]]<<if $mc.money <= 5>>
<<linkreplace "Buy lemonade" t8n>>You don't have enough money<</linkreplace>>
<<else>>
[[Buy Lemonade|lemonadescene][$mc.money -= 5]]
<</if>>
[[Go back|Park]][[Mall]] [[Mall]] [[Mall]] [[Mall]] <<if $period is 1>>
<<if $has.metjade is 0>>[[Sit next to the shy girl with glasses|sitjade]]<<else>>[[Sit next to Jade|sitjade]]<</if>>
<<if $has.metkate is 0>>[[Sit next to the slutty girl|sitkate]]<<else>>[[Sit next to Kate|sitkate]]<</if>>
<<if $has.metlucy is 0>>[[Sit next to the good looking brunette|sitlucy]]<<else>>[[Sit next to Lucy|sitlucy]]<</if>>
<<linkreplace "Listen to the lesson">>You listen carefully to the lesson. You notice that the teacher is giving you some glances.
<<mcint>>
<<teacherint>>
<<AdvancePeriod>>
<</linkreplace>>
<<if $homework.has is 0>>
<<receivehomework>>
<<elseif $homework.has is 1 && $homework.done is 1>>
You give your homework to your teacher
<<speech "Teacher">>Well done <<print "$mc.name">><</speech>>
<<teachertrust>>
<<set $homework.has to 0>>
<<elseif $homework.has is 1 && $homework.done is 0>>
You try to avoid any eye contact with your teacher as you enter the classroom
<<speech "Teacher">>Do your homework next time <<print "$mc.name">><</speech>>
<<set $homework.has to 0>>
<</if>>
<<elseif $period is 2 or $period is 3>>
There aren't any classes during the afternoon students are free to do other activities such as sports or reading books at the library
<<else>>
There is no one here
<</if>>
[[Go back|University]]
<<if $period is 3 && $has.metlucy is 1>>
[[Sit in front of lucy|librarylucy]]
<</if>>
<<linkreplace "Study" t8n>>You studied for few hours
<<mcint>>
<<set $period += 1>><</linkreplace>>
[[Go back|University]]<<set $randomevent = random(100)>>
<<if $randomevent lte 90>>
''There is no one here''
<<else>>
[[You hear strange noises coming from one of the stalls|restroomscene]]
<</if>>
[[Go back|University]]<<linkreplace "Have a swim" t8n>>
That was a nice swimming session
<<mcstr>>
<<set $period += 1>><</linkreplace>>
<<if $period is 3 && $has.metkate is 1>>
<<if $quest.katepool is 0>>[[Try to impress Kate|poolkate]]<<else>>[[Train with Kate|poolkate]]<</if>>
<</if>>
[[Go back|University]]<<linkreplace "Train your body" t8n>>
You've built some new muscles
<<mcstr>>
<<set $period += 1>><</linkreplace>>
<<if $period is 3 && $has.metjade is 1>>
[[Ask Jade to train with her|jadetrain]]
<</if>>
[[Go back|University]]<<set $randomgirltodream = ["kate", "jade", "lucy"]>>
<<set $girldream = $randomgirltodream.random()>>
<<set $sleepinggif = random(5)>>
<<if $girldream == "kate">>
You have a nice dream about Kate
<<if $sleepinggif is 0>>
<video autoplay loop src="ressources/dream/kate0.webm"></video>
<<elseif $sleepinggif is 1>>
<video autoplay loop src="ressources/dream/kate1.webm"></video>
<<elseif $sleepinggif is 2>>
<video src="ressources/dream/kate2.webm" autoplay loop></video>
<<elseif $sleepinggif is 3>>
<video src="ressources/dream/kate3.webm" autoplay loop></video>
<<elseif $sleepinggif is 4>>
<video src="ressources/dream/kate4.webm" autoplay loop></video>
<<else>>
<video src="ressources/dream/kate5.webm" autoplay loop></video>
<</if>>
<<elseif $girldream == "jade">>
<<speech "Jade">>Your muscles are so big Mr <<print "$mc.eyes">> eyes <</speech>>
<<if $sleepinggif is 0>>
<video src="ressources/dream/jade0.webm" autoplay loop></video>
<<elseif $sleepinggif is 1>>
<video src="ressources/dream/jade1.webm" autoplay loop></video>
<<elseif $sleepinggif is 2>>
<video src="ressources/dream/jade2.webm" autoplay loop></video>
<<elseif $sleepinggif is 3>>
<video src="ressources/dream/jade3.webm" autoplay loop></video>
<<elseif $sleepinggif is 4>>
<video src="ressources/dream/jade4.webm" autoplay loop></video>
<<else>>
<video src="ressources/dream/jade5.webm" autoplay loop></video>
<</if>>
<<elseif $girldream== "lucy">>
<<speech "Lucy">>You better study more if you want to be able to do the same thing with me in real life<</speech>>
<<if $sleepinggif is 0>>
<video src="ressources/dream/lucy0.webm" autoplay loop></video>
<<elseif $sleepinggif is 1>>
<video src="ressources/dream/lucy1.webm" autoplay loop></video>
<<elseif $sleepinggif is 2>>
<video src="ressources/dream/lucy2.webm" autoplay loop></video>
<<elseif $sleepinggif is 3>>
<video src="ressources/dream/lucy3.webm" autoplay loop></video>
<<elseif $sleepinggif is 4>>
<video src="ressources/dream/lucy4.webm" autoplay loop></video>
<<else>>
<video src="ressources/dream/lucy5.webm" autoplay loop></video>
<</if>>
<</if>>
<<link "Stop dreaming">><<if $period isnot 0>><<NextMorning>><<elseif $period is 0>><<AdvancePeriod>><</if>><<dayreset>><<goto "Bedroom">><</link>><<set $randomscene = random(8)>>
You open your favorite browser in Incognito mode and search some nice blowjob video
<<if $randomscene is 0>>
<video src="ressources/videos/porn/blowjob/0.webm" autoplay loop></video>
<<elseif $randomscene is 1>>
<video src="ressources/videos/porn/blowjob/1.webm" autoplay loop></video>
<<elseif $randomscene is 2>>
<video src="ressources/videos/porn/blowjob/2.webm" autoplay loop></video>
<<elseif $randomscene is 3>>
<video src="ressources/videos/porn/blowjob/3.webm" autoplay loop></video>
<<elseif $randomscene is 4>>
<video src="ressources/videos/porn/blowjob/4.webm" autoplay loop></video>
<<elseif $randomscene is 5>>
<video src="ressources/videos/porn/blowjob/5.webm" autoplay loop></video>
<<elseif $randomscene is 6>>
<video src="ressources/videos/porn/blowjob/6.webm" autoplay loop></video>
<<elseif $randomscene is 7>>
<video src="ressources/videos/porn/blowjob/7.webm" autoplay loop></video>
<<elseif $randomscene is 8>>
<video src="ressources/videos/porn/blowjob/8.webm" autoplay loop></video>
<</if>>
<<mcporn>>
[[Wipe your dick|Desk]]<<set $randomscene = random(6)>>
<<set $randomsoftspeech = ["You open your favorite browser in Incognito mode, time to watch some soft porn", "You open your favorite browser in Incognito mode, that's how do you do it boy", "You open your favorite browser in Incognito mode, she seems to like it quite a lot !"]>>
<<if $lesbianporn is 0>>You open your favorite browser in Incognito mode, fuck this lesbian porn time to watch some real porn
<video src="ressources/videos/porn/softporn/0.webm" autoplay loop></video>
<<else>>
<<set $test = $randomsoftspeech.random()>>
<<print "$test">>
<</if>>
<<if $randomscene is 0>>
<video src="ressources/videos/porn/softporn/0.webm" autoplay loop></video>
<<elseif $randomscene is 1>>
<video src="ressources/videos/porn/softporn/1.webm" autoplay loop></video>
<<elseif $randomscene is 2>>
<video src="ressources/videos/porn/softporn/2.webm" autoplay loop></video>
<<elseif $randomscene is 3>>
<video src="ressources/videos/porn/softporn/3.webm" autoplay loop></video>
<<elseif $randomscene is 4>>
<video src="ressources/videos/porn/softporn/4.webm" autoplay loop></video>
<<elseif $randomscene is 5>>
<video src="ressources/videos/porn/softporn/5.webm" autoplay loop></video>
<<elseif $randomscene is 6>>
<video src="ressources/videos/porn/softporn/6.webm" autoplay loop></video>
<<elseif $randomscene is 7>>
<video src="ressources/videos/porn/softporn/7.webm" autoplay loop></video>
<<elseif $randomscene is 8>>
<video src="ressources/videos/porn/softporn/8.webm" autoplay loop></video>
<<elseif $randomscene is 9>>
<video src="ressources/videos/porn/softporn/9.webm" autoplay loop></video>
<<elseif $randomscene is 10>>
<video src="ressources/videos/porn/softporn/10.webm" autoplay loop></video>
<</if>>
[[Go back|Desk]]
<<mcporn>><<set $randomscene = random(10)>>
<<set $randomlesbianspeech = ["You open your favorite browser in Incognito mode, time to watch some lesbian porn", "You open your favorite browser in Incognito mode, I feel like watching some pussy clash today", "You open your favorite browser in Incognito mode, that's some nice pussy action !"]>>
<<if $lesbianporn is 0>>You open your favorite browser in Incognito mode, this time you want to discover some new porn, what about lesbian porn
<video src="ressources/videos/porn/lesbian/0.webm" autoplay loop></video>
<<else>>
<<set $test = $randomlesbianspeech.random()>>
<<print "$test">>
<</if>>
<<if $randomscene is 0>>
<video src="ressources/videos/porn/lesbian/0.webm" autoplay loop></video>
<<elseif $randomscene is 1>>
<video src="ressources/videos/porn/lesbian/1.webm" autoplay loop></video>
<<elseif $randomscene is 2>>
<video src="ressources/videos/porn/lesbian/2.webm" autoplay loop></video>
<<elseif $randomscene is 3>>
<video src="ressources/videos/porn/lesbian/3.webm" autoplay loop></video>
<<elseif $randomscene is 4>>
<video src="ressources/videos/porn/lesbian/4.webm" autoplay loop></video>
<<elseif $randomscene is 5>>
<video src="ressources/videos/porn/lesbian/5.webm" autoplay loop></video>
<<elseif $randomscene is 6>>
<video src="ressources/videos/porn/lesbian/6.webm" autoplay loop></video>
<<elseif $randomscene is 7>>
<video src="ressources/videos/porn/lesbian/7.webm" autoplay loop></video>
<<elseif $randomscene is 8>>
<video src="ressources/videos/porn/lesbian/8.webm" autoplay loop></video>
<<elseif $randomscene is 9>>
<video src="ressources/videos/porn/lesbian/9.webm" autoplay loop></video>
<<elseif $randomscene is 10>>
<video src="ressources/videos/porn/lesbian/10.webm" autoplay loop></video>
<</if>>
[[Go back|Desk]]
<<mcporn>><<set $randomscene = random(10)>>
<<set $randomblackspeech = ["You open your favorite browser in Incognito mode, time to watch some black porn", "You open your favorite browser in incognito mode, why do white bitches prefer black cocks?", "You open your favorite browser in Incognito mode, that's my boy!"]>>
<<if $lesbianporn is 0>>You open your favorite browser in Incognito mode, this time you want to discover some new porn, maybe going a bit darker wouldn't be that unpleasant
<video src="ressources/videos/porn/black/0.webm" autoplay loop></video>
<<else>>
<<set $test = $randomblackspeech.random()>>
<<print "$test">>
<</if>>
<<if $randomscene is 0>>
<video src="ressources/videos/porn/black/0.webm" autoplay loop></video>
<<elseif $randomscene is 1>>
<video src="ressources/videos/porn/black/1.webm" autoplay loop></video>
<<elseif $randomscene is 2>>
<video src="ressources/videos/porn/black/2.webm" autoplay loop></video>
<<elseif $randomscene is 3>>
<video src="ressources/videos/porn/black/3.webm" autoplay loop></video>
<<elseif $randomscene is 4>>
<video src="ressources/videos/porn/black/4.webm" autoplay loop></video>
<<elseif $randomscene is 5>>
<video src="ressources/videos/porn/black/5.webm" autoplay loop></video>
<<elseif $randomscene is 6>>
<video src="ressources/videos/porn/black/6.webm" autoplay loop></video>
<<elseif $randomscene is 7>>
<video src="ressources/videos/porn/black/7.webm" autoplay loop></video>
<<elseif $randomscene is 8>>
<video src="ressources/videos/porn/black/8.webm" autoplay loop></video>
<<elseif $randomscene is 9>>
<video src="ressources/videos/porn/black/9.webm" autoplay loop></video>
<<elseif $randomscene is 10>>
<video src="ressources/videos/porn/black/10.webm" autoplay loop></video>
<</if>>
[[Go back|Desk]]
<<mcporn>><<set $randomscene = random(11)>>
<<set $randomhardcorespeech = ["You open your favorite browser in incognito mode, smash that pussy!", "You open your favorite browser in Incognito mode, this little pussy is getting destroyed", "You open your favorite browser in Incognito mode, get pounded !"]>>
<<if $lesbianporn is 0>>You open your favorite browser in Incognito mode, time to go hardcore
<video src="ressources/videos/porn/hardcore/0.webm" autoplay loop></video>
<<else>>
<<set $test = $randomhardcorespeech.random()>>
<<print "$test">>
<</if>>
<<if $randomscene is 0>>
<video src="ressources/videos/porn/hardcore/0.webm" autoplay loop></video>
<<elseif $randomscene is 1>>
<video src="ressources/videos/porn/hardcore/1.webm" autoplay loop></video>
<<elseif $randomscene is 2>>
<video src="ressources/videos/porn/hardcore/2.webm" autoplay loop></video>
<<elseif $randomscene is 3>>
<video src="ressources/videos/porn/hardcore/3.webm" autoplay loop></video>
<<elseif $randomscene is 4>>
<video src="ressources/videos/porn/hardcore/4.webm" autoplay loop></video>
<<elseif $randomscene is 5>>
<video src="ressources/videos/porn/hardcore/5.webm" autoplay loop></video>
<<elseif $randomscene is 6>>
<video src="ressources/videos/porn/hardcore/6.webm" autoplay loop></video>
<<elseif $randomscene is 7>>
<video src="ressources/videos/porn/hardcore/7.webm" autoplay loop></video>
<<elseif $randomscene is 8>>
<video src="ressources/videos/porn/hardcore/8.webm" autoplay loop></video>
<<elseif $randomscene is 9>>
<video src="ressources/videos/porn/hardcore/9.webm" autoplay loop></video>
<<elseif $randomscene is 10>>
<video src="ressources/videos/porn/hardcore/10.webm" autoplay loop></video>
<<else>>
<video src="ressources/porn/hardcore/11.webm" autoplay loop></video>
<</if>>
[[Go back|Desk]]
<<mcporn>><<set $randomscene = random(10)>>
<<set $randomgangbangpseech = ["You open your favorite browser in Incognito mode, that's my boys !", "You open your favorite browser in Incognito mode, look like someone is going to be gangbanged", "You open your favorite browser in Incognito mode, I didn't know you could fit 2 in a hole !?"]>>
<<if $lesbianporn is 0>>You open your favorite browser in Incognito mode, hardcore isn't enough for me, what if there was more than one man ?
<video src="ressources/videos/porn/gangbang/0.webm" autoplay loop></video>
<<else>>
<<set $test = $randomgangbangpseech.random()>>
<<print "$test">>
<</if>>
<<if $randomscene is 0>>
<video src="ressources/videos/porn/gangbang/0.webm" autoplay loop></video>
<<elseif $randomscene is 1>>
<video src="ressources/videos/porn/gangbang/1.webm" autoplay loop></video>
<<elseif $randomscene is 2>>
<video src="ressources/videos/porn/gangbang/2.webm" autoplay loop></video>
<<elseif $randomscene is 3>>
<video src="ressources/videos/porn/gangbang/3.webm" autoplay loop></video>
<<elseif $randomscene is 4>>
<video src="ressources/videos/porn/gangbang/4.webm" autoplay loop></video>
<<elseif $randomscene is 5>>
<video src="ressources/videos/porn/gangbang/5.webm" autoplay loop></video>
<<elseif $randomscene is 6>>
<video src="ressources/videos/porn/gangbang/6.webm" autoplay loop></video>
<<elseif $randomscene is 7>>
<video src="ressources/videos/porn/gangbang/7.webm" autoplay loop></video>
<<elseif $randomscene is 8>>
<video src="ressources/videos/porn/gangbang/8.webm" autoplay loop></video>
<<elseif $randomscene is 9>>
<video src="ressources/videos/porn/gangbang/9.webm" autoplay loop></video>
<<elseif $randomscene is 10>>
<video src="ressources/videos/porn/gangbang/10.webm" autoplay loop></video>
<</if>>
[[Go back|Desk]]
<<mcporn>><<set $randomscene = random(6)>>
You open your favorite browser in Incognito mode, after all this fuck time to watch some bitches getting jerk on
<<if $randomscene is 0>>
<video src="ressources/videos/porn/bukkake/0.webm" autoplay loop></video>
<<elseif $randomscene is 1>>
<video src="ressources/videos/porn/bukkake/1.webm" autoplay loop></video>
<<elseif $randomscene is 2>>
<video src="ressources/videos/porn/bukkake/2.webm" autoplay loop></video>
<<elseif $randomscene is 3>>
<video src="ressources/videos/porn/bukkake/3.webm" autoplay loop></video>
<<elseif $randomscene is 4>>
<video src="ressources/videos/porn/bukkake/4.webm" autoplay loop></video>
<<elseif $randomscene is 5>>
<video src="ressources/videos/porn/bukkake/5.webm" autoplay loop></video>
<<elseif $randomscene is 6>>
<video src="ressources/videos/porn/bukkake/6.webm" autoplay loop></video>
<</if>>
[[Go back|Desk]]
<<mcporn>><<if $sis.loc is "her bedroom" && $period is 4>>
[[Help your sisters with her homework|sisterhomework]]
<</if>>
<<if $period is 0 && $sis.loc is "her bedroom">>
[[Ask your sister to sleep with her|sleepingsis]]
<<elseif $period is 5 && $sis.loc is "her bedroom">>
[[Ask your sister to sleep with her|sleepingsis]]
<</if>>
<<if $sis.loc is "her bedroom" && $sis.corr >= 10 && $sis.trust >= 10>>
<<if $mc.dom > $mc.sub>>
[[Time to fuck this bitch|sisbedroomscene][$scene to 1]]
<<else>>
[[Gently ask your sister to have sex|sisbedroomscene][$scene to 2]]
<</if>>
<</if>>
[[Leave|House]]<<speech "Sasha">>Bro?? ... <<print "$mc.name">> wake up you're going to be late for your first day!<</speech>>
You grumble a bit trying to emerge from your dreams
<<speech "Sasha">>Come on!<</speech>>
She gives you a hard spanking to get you out from bed
<video src="ressources/videos/sisterspanking.webm" autoplay loop></video>
[[Teach her a lesson]]
[[Ask mom for help]]<div id="now"><<now>></div>\
<div id="helpss">
<p class="title stats2">Stats:</p><hr><strong>Intelligence:</strong> $mc.int
<strong>Strength:</strong> $mc.str
<strong>Porn addiction:</strong> $mc.porn
<strong>Dominant:</strong> $mc.dom
<strong>Submissive:</strong> $mc.sub
<strong>Money:</strong> $mc.money
<p class="title girlsloc">Girl's location:</p><hr><strong>Jade:</strong> $jade.loc
<strong>Lucy:</strong> $lucy.loc
<strong>Kate:</strong> $kate.loc
<strong>Mom:</strong> $mom.loc
<strong>Sister:</strong> $sis.loc
<strong>Teacher:</strong> $teacher.loc
<p class="title fasttravel">Fast travel:</p><hr>\
[[Park]]
[[University]]
[[House]]\
</div>\
<<locations>>\
<nav id="story-menu">\
<button id="storybutton" class="large blue button">[[Progress]]</button>
<button id="storybutton" class="large blue button">[[Cheat]]</button>
<button id="storybutton" class="large blue button">[[Credits]]</button>
<button id="storybutton" class="large blue button"><<link "Saves">><<script>>UI.saves()<</script>><</link>></button>
<button id="storybutton" class="large blue button"><<link "Restart">><<script>>UI.restart()<</script>><</link>></button>
</nav>You get out of your bed take your sister on your knees and give her a good spanking
<video src="ressources/videos/spanksister.webm" autoplay loop></video>
<<speech "Sasha">>Hey what are you doi- HAH ! .. hey stop i- HAH !<</speech>>
You stop after a few, her buttocks are red but she has a tiny smile on her face
She gets up and as she was going to leave she turns back to you
<<speech "Sasha">>I'll let it pass for today but next time I won't let you win so easily<</speech>>
<<siscorr>>
<<mcdom>>
<<set $has.sisterintro += 1>>
[[Time for breakfast|Kitchen]]Your mom arrives in your room out of breath
<<speech "Mom">>Sasha why do you feel obliged to bully your brother like this?<</speech>>
<<speech "Sasha">>I'm not bullying him! I tried to help him wake up so he won't be late for school.<</speech>>
You tell your mom about the spanking, exaggerating the situation a bit.
<<speech "Mom">>You need to behave better if you don't want to get punished, Sasha!<</speech>>
Your sister looks at you in the eyes
<<speech "Sasha">>You're going to pay for this you little bitch<</speech>>
<<speech "Mom">>Sasha!!! Go to your room and think about your attitude.<</speech>>
Sasha leaves the room not without a last murderous look
<<mcsub>>
<<sistrustminus>>
<<momtrust>>
[[Time for breakfast|Kitchen]]<video src="ressources/scenes/park/hotdog/serve.mp4" autoplay loop></video>
A nice waitress gives you your hotdog
<<if $hotdog.int >= 5 && $hotdog.int < 10>>
[[Ask her to give you a blowjob|hotdogscene2][$hotdogscene to 0]]
<<linkreplace "Give a tip">>She smiles and winks at you.
<<set $mc.money -= 2>>
<<set $hotdog.int += 1>> <strong>She is a bit more interested in you</strong><</linkreplace>>
<<elseif $hotdog.int >= 10>>
[[Fuck her|hotdogscene2][$hotdogscene to 1;$scene to 0]]
[[Ask her to give you a blowjob|hotdogscene2][$hotdogscene to 0]]
<<linkreplace "Give a tip">>She smiles and winks at you.
<<set $mc.money -= 2>>
<<set $hotdog.int += 1>> <strong>She is a bit more interested in you</strong><</linkreplace>>
<<else>>
<<linkreplace "Give a tip">>She smiles and winks at you.
<<set $mc.money -= 2>>
<<set $hotdog.int += 1>> <strong>She is a bit more interested in you</strong><</linkreplace>>
<</if>>
[[Go back|Park]]<video src="ressources/scenes/park/lemonade/serve.mp4" autoplay loop></video>
A nice waitress gives you your lemonade
<<if $lemo.int >= 5 && $lemo.int < 10>>
[[Ask her to give you a blowjob|lemonadescene2][$lemoscene to 0]]
<<linkreplace "Give a tip">>She smiles and winks at you.
<<set $mc.money -= 2>>
<<set $lemo.int += 1>> <strong>She is a bit more interested in you</strong><</linkreplace>>
<<elseif $lemo.int >= 10>>
[[Fuck her|lemonadescene2][$lemoscene to 1;$scene to 0]]
[[Ask her to give you a blowjob|lemonadescene2][$lemoscene to 0]]
<<linkreplace "Give a tip">>She smiles and winks at you.
<<set $mc.money -= 2>>
<<set $lemo.int += 1>> <strong>She is a bit more interested in you</strong><</linkreplace>>
<<else>>
<<linkreplace "Give a tip">>She smiles and winks at you.
<<set $mc.money -= 2>>
<<set $lemo.int += 1>> <strong>She is a bit more interested in you</strong><</linkreplace>>
<</if>>
[[Go back|Park]]<<set $random = random(3)>>
<<if $hotdogscene is 0>>
<<if $random is 0>>
<video src="ressources/scenes/park/hotdog/blowjob0.mp4" autoplay loop></video>
<<elseif $random is 1>>
<video src="ressources/scenes/park/hotdog/blowjob1.mp4" autoplay loop></video>
<<else>>
<video src="ressources/scenes/park/hotdog/blowjob2.mp4" autoplay loop></video>
<</if>>
<<else>>
<<if $scene is 0>>
<<if $random is 0>>
<video src="ressources/scenes/park/hotdog/doggy0.mp4" autoplay loop></video>
<<elseif $random is 1>>
<video src="ressources/scenes/park/hotdog/doggy1.mp4" autoplay loop></video>
<<elseif $random is 2>>
<video src="ressources/scenes/park/hotdog/doggy2.mp4" autoplay loop></video>
<<else>>
<video src="ressources/scenes/park/hotdog/doggy3.mp4" autoplay loop></video>
<</if>>
<<elseif $scene is 1>>
<<if $random is 1>>
<video src="ressources/scenes/park/hotdog/reversecowgirl0.mp4" autoplay loop></video>
<<else>>
<video src="ressources/scenes/park/hotdog/reversecowgirl1.mp4" autoplay loop></video>
<</if>>
<<elseif $scene is 2>>
<video src="ressources/scenes/park/hotdog/facial.mp4" autoplay loop></video>
<</if>>
[[Doggy|hotdogscene2][$scene to 0]]
[[Reverse cowgirl|hotdogscene2][$scene to 1]]
[[Facial|hotdogscene2][$scene to 2]]
<</if>>
[[Go back|Park]]<<set $random = random(2)>>
<<if $lemoscene is 0>>
<<if $random is 0>>
<video src="ressources/scenes/park/lemonade/blowjob0.mp4" autoplay loop></video>
<<elseif $random is 1>>
<video src="ressources/scenes/park/lemonade/blowjob1.mp4" autoplay loop></video>
<<elseif $random is 2>>
<video src="ressources/scenes/park/lemonade/blowjob2.mp4" autoplay loop></video>
<</if>>
<<else>>
<<if $scene is 0>>
<<if $random is 0>>
<video src="ressources/scenes/park/lemonade/doggy0.mp4" autoplay loop></video>
<<elseif $random is 1>>
<video src="ressources/scenes/park/lemonade/doggy1.mp4" autoplay loop></video>
<<elseif $random is 2>>
<video src="ressources/scenes/park/lemonade/doggy2.mp4" autoplay loop></video>
<</if>>
<<elseif $scene is 1>>
<video src="ressources/scenes/park/lemonade/reversecowgirl.mp4" autoplay loop></video>
<<elseif $scene is 2>>
<video src="ressources/scenes/park/lemonade/facial.mp4" autoplay loop></video>
<</if>>
[[Doggy|lemonadescene2][$scene to 0]]
[[Reversecowgirl|lemonadescene2][$scene to 1]]
[[Facial|lemonadescene2][$scene to 2]]
<</if>>
[[Go back|Park]]<<if $period is 1 or $period is 4 or $period is 5>>
There is no one here
<<else>>
There is light inside
[[Knock on the door|insideteacheroffice]]
<</if>>
[[Go back|University]]<<if $quest.teacheroffice is 0 && $teacher.int >= 5>>
You hear a strict “Enter” coming from inside so you open the door. Your teacher is sitting behind her desk. She immediately smiles when she recognizes you…
<<speech "Teacher">>Oh! it's you <<print "$mc.name">>. Please have a seat. What can I do for you today?<</speech>>
[[Ask for some private lessons|teacherofficescene]]
<<elseif $quest.teacheroffice is 1 && $teacher.int >= 10 && $teacher.trust >= 5 && $homework.has is 1 && $homework.difficulty is "Impossible" >>
[[I need help with the homework|teacherofficescene]]
<<elseif $quest.teacheroffice is 1 && $teacher.int < 10 or $teacher.trust < 5 or $homework.difficulty isnot "Impossible">>
<<speech "Teacher">> <<print "$mc.name">>! <<if $teacher.int < 10 && $teacher.trust < 5 && $homework.difficulty isnot "Impossible">>You need to attend classes more often and complete your assignments!<<elseif $teacher.int < 10>> You need to attend classes more often<<elseif $teacher.trust < 5>>You must complete your assignments!<<elseif $homework.difficulty isnot "Impossible">> Come back When you really need my help!<</if>><</speech>>
<<elseif $quest.teacheroffice is 2 && $teacher.int >= 15 && $teacher.trust >= 10>>
END OF CONTENT WITH THE CURRENT CHAR
<<elseif $quest.teacheroffice is 2 && $teacher.int < 15 && $teacher.trust < 10>>
END OF CONTENT WITH THE CURRENT CHAR
<<speech "Teacher">> $mc.name <<if $teacher.int < 15 && $teacher.trust < 10>>You need to attend classes more often and do your homeworks!<<elseif $teacher.int < 15>> You need to attend classes more often<<else>>You must do your homeworks!<</if>><</speech>>
<<elseif $quest.teacheroffice is 0 && $teacher.int < 5>>
<<speech "Teacher">>I don't have time for you right now could you leave my office and close the door behind you $mc.name please ?<</speech>>
<</if>>
[[Go back|University]]
<<if $quest.teacheroffice is 0>>
You sit on the chair in front of your teacher, you unpack your things and start <<print either("doing some math exercices", "studying your economics synthesis", "preparing your next lesson")>>
At some point you <<print either("Do not understand something <<set _bloc to 1>>", "Block on a formula <<set _bloc to 2>>")>>, you look up to your teacher. She is focused on her own work, but after a few seconds of admiring her body
[img["ressources/teacheroffice/0.jpg"]]
She notices you
<<speech "Teacher">>What's wrong <<print "$mc.name">>?<</speech>>
You stand up from your chair and take the sheets you were working on with you. You stand next to her while she looks at what you point out to her... she smells nice... even though you are not touching, you can feel her warmth
<<if _bloc is 1>><<speech "Teacher">>It's simpler than you think, you must do this... and that... so you got this... and that's how it works<</speech>><<else>><<speech "Teacher">>So the GDP can be calculated using Y (Revenue) = C (consumption) + I (investment) + G (Government expenses) when there are no external factors. Here is an example:<</speech>><</if>>
<<if _bloc is 2>>FORMULA RESOLUTION<</if>>
You thank her for the explanation. As she hands you back your sheets your hands touch, she almost caress yours. Your eyes meet
<<if $mc.dom > $mc.sub>>You give her a nice smile
She seems to be embarassed she maybe thought that you were more submissive
<<speech "Teacher">>Mmh... if you don't need me anymore you can leave<</speech>>
<<mcint>>
<<teacherint>>
[[Leave the room|University]]
<<if $mc.dom >= 5>><<linkreplace "Not without a last provocation">>You compliment her chest
[img["ressources/teacheroffice/1.jpg"]]
<<speech "Teacher">>You are a little rascal... *She smiles* but I like you. Have a nice view<</speech>>
[img["ressources/teacheroffice/2.jpg"]]
<<mcdom>>
<<teacherint>><<set $teacher.int += 2>>
<<teachertrust>>
<</linkreplace>><</if>>
<<else>>you blush and dodge her gaze
<<mcsub>>
<<mcint>>
<<teacherint>>
[[Leave the room without a word|University]]
<</if>>
<<elseif $quest.teacheroffice is 1>>
You take a chair and sit next to her as she takes a look at the homework she gave you.
As she focuses on solving it, you take the opportunity to look at her breasts
[img["ressources/teacheroffice/3.jpg"]]
After a few minutes and tries she admits defeat
<<speech "Teacher">>Ok... I think that I made a mistake when I wrote the question which made it impossible to solve. How can I make it up to you?<</speech>>
<<if $mc.dom > $mc.sub>>
<<linkreplace "Unzip your pants and make her suck your cock">>
<video src="ressources/teacheroffice/0.webm" autoplay loop></video>
<<linkreplace "Make her suck harder">>
<video src="ressources/teacheroffice/1.webm" autoplay loop></video>
But after a few minutes...
<<linkreplace "Someone knock on the door">>She gets up and scream <<speech "Teacher">>Wait a minute I'm already taking care of someone<</speech>> You put your cock back in your pants
<<speech "Teacher">>Let's continue this later, ok ?<</speech>>
You nod
<<mcdom>>
<<teacherint>>
<<teachertrust>>
[[Leave the room|University]]
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<else>>
Lewd thoughts begin to run through your mind, which quickly make you get a hard on
<<speech "Teacher">>I see... let me take care of you<</speech>>
She gets your cock out of your pants and starts sucking on it
<<linkreplace "She goes harder">>She starts to go harder on your cock but after a few minutes...
<<linkreplace "Someone knocks on the door">>She jumps up and screams <<speech "Teacher">>Wait a minute I'm already taking care of someone<</speech>> You put your cock back in your pants
<<speech "Teacher">>Let's continue this later, ok ?<</speech>>
You nod
<<mcsub>>
<<teacherint>>
<<teachertrust>>
[[Leave the room|University]]
<</linkreplace>>
<</linkreplace>>
<</if>>
<<AdvancePeriod>>
<<elseif $quest.teacheroffice is 2>>
END OF CURRENT CONTENT WITH THIS CHAR
<<else>>
END OF CURRENT CONTENT WITH THIS CHAR
<</if>>
<<set $quest.teacheroffice += 1>>
<<AdvancePeriod>><<if $has.metjade is 0>>
You sit next to a nice brunette wearing glasses, she is quite cute despite the fact that she looks like a nerd.
She seems focused on something.
<<linkreplace "Try to see what she is working on" t8n>><<speech "Jade">>Do you mind ?<</speech>>
<<set $has.metjade to 1>>
She notices that you look a bit surprised from her reaction
<<speech "Jade">>Sorry I just don't like when people disturb me when I'm working, nice to meet you I'm <strong><span style="color:#e56cf0">Jade</span></strong><</speech>>
You shake hands
<<linkreplace "Suddenly" t8n>><<speech "Teacher">>Jade! <<print $mc.name>>! Could you please focus on the lesson like your classmates?<</speech>>
You both nod as an answer
[[End of the lesson|jadefirstend]]
<</linkreplace>>
<</linkreplace>>
<<elseif $has.metjade is 1 && $quest.jadeclass is 1 && $jade.corr >= 5 && $jade.trust >= 5>>
Jade seems to be focused on something again
[[Try to not disturb her|jadesitscene][$sitscene to 1]]
<<elseif $has.metjade is 1 && $quest.jadeclass is 2 && $jade.corr >= 10 && $jade.trust >= 10>>
She seems to be waiting quietly for something lost in her thoughts
[[Ask her what she is waiting for|jadesitscene][$sitscene to 2]]
<<elseif $has.metjade is 1 && $quest.jadeclass is 3 && $jade.corr >= 15 && $jade.trust >= 15>>
As you were walking to the seat next to her she gives you a big smile she was clearly waiting for you
[[Kiss her on the cheek|jadesitscene][$sitscene to 3]]
<<elseif $has.metjade is 1 && $quest.jadeclass is 4>>
[[She starts to look for your cock|jadesitscene][$sitscene to 4]]
<<elseif $has.metjade is 1 && $quest.jadeclass >= 4 && $teacher.int >= 20 && $teacher.trust >= 15 && $jade.corr >= 20 && $jade.trust >= 20>>
As soon as the lesson start your teacher and Jade seems to be focused on you
[[Fuck them at the end of the lesson|teachandjadescene]]
<<link replace"Not today">><<AdvancePeriod>> <<mcint>>
[[Go back|University]]
<</linkreplace>>
<<else>>
You both listened to the lesson and nothing happened
''Hint: Train with her at the gym and message her during the evening to unlock more''
<<AdvancePeriod>>
<<mcint>>
<</if>>
<<if $has.metjade is 1 && $quest.jadeclass >= 4 && $jade.int >= 15 && $jade.corr >= 15>>
[[Fuck Jade after the lesson|jadeclassscene]]
<</if>>
[[University hall|University]]<<if $has.metkate is 0>>
You take a seat next to the girl who is almost always late for class. She is at least wearing the school uniform, even though is seems that her skirt is shorter than the rest of the girls’.
She doesn’t seem to notice you sitting down next to her, as she is absorbed into sending messages and pictures with her phone.
The teacher enters the classroom and begins the lesson, as you were listening she taps your arm.
<<speech "???">>Hey why did you sit next to me!? don't expect me to sleep with me that easily!<</speech>>
<<if $mc.dom > $mc.sub>>
You know how little bitches like her work, you take her hand and put it on your cock.
<video src="ressources/videos/class/kate/rubbing.webm" autoplay loop></video>
<<speech "???">>Hey! You could have asked me my name at least before starting this sort of little game... I'm Kate nice to meet you and your big cock<</speech>>
She continues to rub your cock during the lesson but as you were going to cum she suddenly stops
<<speech "Kate">>You don't want to mess your pants, do you? So that's it for today<</speech>>
The bell rings signaling the end of the course. Kate immediately gets up, you stand up to let her pass
<<speech "Kate">>Wow thank you Mr Big cock the gentleman! See ya next time!<</speech>>
She leaves the classroom in such a hurry that she completely forgets to take the homework sheet with her.
<<mcdom>>
<<else>>
You splutter excuses but she puts a finger on your mouth
<<speech "Kate">>Stop looking for an excuse, I was kidding. Actually I'm kinda of a slut and I don't care what you think of it. Have you got a big cock<</speech>>
You blush from the question and start thinking about the question asking yourself if you were a slut what would you consider a "big cock". It seems that she does not want to wait for your answer. She gets her hand and start rubbing you until you pop a boner.
<video src="ressources/videos/class/kate/rubbing.webm" autoplay loop></video>
<<speech "Kate">>Mmmh... I think that we got a pretty big boy under there! You act like a shy little girl but you could destroy my pussy with this big cock... let's see how much time you can resist<</speech>>
She starts rubbing faster... and faster until you are ready to cum... but then she stops just in time
<<speech "Kate">>You don't want to mess your pants, do you? So that's it for today<</speech>>
The bell rings signaling the end of the course. Kate immediately gets up, you stand up to let her pass
<<speech "Kate">>Wow thank you Mr Big cock the gentleman! See ya next time!<</speech>>
She leaves the class so fast that she even forget to take the sheet with homework instructions
<<mcsub>>
<</if>>
<<set $has.metkate to 1>>\
<<set $quest.kateclass += 1>>\
<<mcint>>
[[Leave the classroom|University]]
<<elseif $has.metkate is 1 && $quest.kateclass is 1 && $kate.corr >= 10 && $kate.trust >= 5>>
Kate’s chair is empty, but you decide to sit there anyway. Your teacher begins the lesson.
<<linkreplace "After a few minutes">>Suddenly the classroom door opens. Kate walks in, mumbling some excuses and rushes for her chair. You stand up as fast as you can to let her pass. She gives you a big smile.
<<speech "Kate">>Hey Mr Big cock it's you again<</speech>>
<<speech "Teacher">>Kate ! Could you please watch your langage and be quiet especially when you are late!?<</speech>>
<<speech "Kate">>Sorry!<</speech>>
After sitting she turns back to you
<<speech "Kate">>You’ve been really helpful, making sure I always have the homework. I think someone has earned a little reward. Meet me in the restrooms after class.<</speech>>
The lesson goes by nothing happened, she leaves the class without even looking at you
[[Join her in the restrooms|katerestroomscene][$restroomscene to 1]]
<</linkreplace>>
<<elseif $has.metkate is 1 && $quest.kateclass is 2 && $kate.corr >= 15 && $kate.trust >= 10>>
Kate is sitting at her desk like the first time you met each other. She looks up as you enter the class, waves at you and shout
<<speech "Kate">>Hey mister big cock come sit next to me!<</speech>>
You reach the chair next to her.
<<speech "Kate">>So I tought after giving you a little reward you might stop helping me... but you just keep on sending me the homework again and again… I think it's time for the big reward! Join me in the restrooms like the other time<</speech>>
<<linkreplace "End of the lesson">> She packs her stuff and takes your hand [[Follow her|katerestroomscene][$restroomscene to 2]]<</linkreplace>>
<<elseif $quest.kateclass gte 3>>
You reached the end of the content Kate Class
Kate didn’t show up to class today. You listened to the lesson.
<<mcint>>
<<teacherint>>
[[Go back|University]]
<<else>>
Kate didn't show up during today class. You listened to the lesson
<span style="orange">''Hint: Get her SexApp Id at the pool and raise her corruption and trust stats to progress on this quest''</span>
<<mcint>>
<<teacherint>>
[[Go back|University]]
<</if>>
<<AdvancePeriod>>
<<if $has.metlucy is 0>>
You approach the chair next to the girl but as you were going to sit you notice that there is a bag on it. You ask her if she could move it... She does not answer so you tap on her shoulder. She jumps on her chair from surprise.
<<speech "???">>What do you want for fuck sake ?<</speech>>
You point out the back on the chair
<<speech "???">>Ho... sorry no one ever sit next to me so I got the reflex to put a bag there so it's easier to grab my things. Nice to meet you, I'm Lucy!<</speech>>
She gives you a handshake... her hands are soft and tiny compared to yours. You think that she is quite cute when she smiles. She takes the bag off the chair.
<<speech "Lucy">>Here you are, ho one last thing, I do not attend classes to have conversations so when the lesson start I would like you to not speak too much. Is that ok with you ?<</speech>>
You nod
<<speech "Lucy">>Perfect I hope that you will respect this rule<</speech>>
The teacher enter the classroom and the lesson starts.
Lucy is writing almost everything the teacher is saying on her computer you feel impressed.
At the end of the lesson, she checks on yours how much you have written.
<<speech "Lucy">>Mmmh... 4 pages... wait! 4! How did you manage to write that much I only have 3... Have you done some sort of typing training?<</speech>>
You flex your finger to make her laugh
[img["ressources/images/school/finger.jpg"]]
She laughs
<<speech "Lucy">>Instead of making jokes could you please share what you wrote during the class with me? Here is my SexApp Id, send it to me later<</speech>>
<<set $has.lucyid to 1>>''You now have Lucy’s SexApp Id. You'll be able to talk to her using SexApp from now on.''
She leaves her chair
<<speech "Lucy">>See you mister fast fingers<</speech>>
<<mcint>>
<<lucytrust>>
<<set $has.sendnotes to 0>>
<<set $has.metlucy to 1>>
[[Leave the room|University]]
<<elseif $has.metlucy is 1 && $has.sendnotes is 1 && $lucy.corr >= 5 && $lucy.trust >= 5>>
You are a bit early so there is nobody except you in the class. You start unpacking your things, turn on your computer and open google docs to take notes.
<<linkreplace "Lucy arrives">>She enters the class and notices you sitting next to her place. She joins you
<<speech "Lucy">> Thank you for the notes it was useful. Do you mind sending me what you write in class everyday? It would help me quite a lot as I'm not able to write as fast as you.<</speech>>
<<set $lucy.notes to 1>>
You promise, she gives you a naughty smiles
<<speech "Lucy">>Be sure that I will reward you according to the quality of your notes<</speech>>
<<if $mc.dom > $mc.sub>>
<<linkreplace "Ask for a little demonstration">>She seems to be surprised by your request <<speech "Lucy">>Now? But the others students are going to arrive soon<</speech>>
She seems a bit hesitant
<<speech "Lucy">>We can't do that here for sure... but... I think that there is a way... follow me<</speech>>
[[Follow her|lucyclassscene]]
<</linkreplace>>
<<else>>
You blush from your lewds thoughts
<<speech "Lucy">>Look at this cute little blush I feel like talking to a little boy. Let's see what big boy thinks...<</speech>>
[[She starts touching your crotch|lucyclassscene]]
<</if>>
<</linkreplace>>
<<elseif $has.metlucy is 1 && $quest.lucyclass is 1 && $lucy.corr >= 10 && $lucy.trust >= 10>>
You enter the class, Lucy notices you and she moves her bag to let you sit. You exchange pleasantries.
<<speech "Lucy">>I feel guilty asking you that much while you don't get much in return...<</speech>>
<<if $mc.dom > $mc.sub>>
[[Tell her that there is a way to balance the scales|lucyclassscene2]]
<<else>>
Lewds thoughts are going through your minds, you think of the time she sucked your cock... you get a boner.
<<speech "Lucy">>At least big boy dare tell me how he wants to get rewarded! Follow me<</speech>>
[[Follow her|lucyclassscene2]]
<</if>>
<<elseif $has.metlucy is 1>>
You sit next to her, nothing special happened
<span style="color:orange">''Hint: Visit her at the library, talk to her with SexApp and don't forget to send her your notes to gain trust and corruption to unlock new events''</span>
[[Go back|Classroom]]
<</if>>
<<AdvancePeriod>><<if $period is 2>>
<<linkreplace "Eat alone" t8n>>You have eaten your lunch alone
<<AdvancePeriod>><</linkreplace>>
<<if $has.metjade is 1>>[[Eat with Jade|jadecafeteria]]<</if>>
<<if $has.metkate is 1>>[[Eat with Kate|katecafeteria]]<</if>>
<<if $has.metlucy is 1>>[[Eat with Lucy|lucycafeteria]]<</if>>
<<else>>
The cafeteria is empty
<</if>>
[[Go back|University]]<<if $quest.lucylibrary is 0>>
You decide to sit in front of Lucy. She looks up to you.
<<speech "Lucy">>I knew you were a serious student!<</speech>>
You nod
<<speech "Lucy">>Do you know that studying makes me horny as fuck?<</speech>>
She laughs from your expression betraying your surprise
<<speech "Lucy">>Come here more often from now on and you might see what I'm talking about<</speech>>
<<lucycorr>>
<<lucytrust>>
<<set $quest.lucylibrary += 1>>
<<elseif $quest.lucylibrary is 1 && $lucy.corr >= 5 && $lucy.trust >= 5>>
Lucy is not there you decide to sit in-front of the chair she sits on usually. After a few minutes she arrives. She notices you and instead of walking toward her seat, she approaches you and whispers in your ear.
<<speech "Lucy">>I think that someone came to see how horny I am today. Actually I'm in the mood to suck a cock right now so follow me<</speech>>
[[Follow her|lucyrestroomscene][$scene to 1]]
<<lucycorr>>
<<lucytrust>>
<<set $quest.lucylibrary += 1>>
<<elseif $quest.lucylibrary is 2 && $lucy.corr >= 10 && $lucy.trust >= 10>>
Lucy is sitting as usual on her chair. You decide to sit next to her this time.
<<speech "Lucy">>Great, you’re here! I need some help with this Math problem.<</speech>>
As you work on the problem, she starts rubbing your cock.
<<speech "Lucy">>Come on <<print "$mc.name">> finish it before I make you cum and I will give you a nice reward<</speech>>
Because you want the reward so much you use all your brain cells, feeling the math quintessence…
<video src="ressources/videos/study/0.webm" autoplay loop></video>
<<linkreplace "Solve it">>You finally find the answer
<<speech "Lucy">>Nice job <<print "$mc.name">>, you deserve a little reward, follow me<</speech>>
[[Follow her|lucyrestroomscene][$scene to 2]]
<<lucycorr>>
<<lucytrust>>
<</linkreplace>>
<<set $quest.lucylibrary += 1>>
<<else>>
<<set $randomsituation to random(2)>>
<<if $randomsituation is 0>>
You sit in front of Lucy, she does not look up from her computer but a smile appears on her face. She slowly starts to play footsie under the table. She then starts to rub your crotch with her feet.
<video src="ressources/videos/library/2.webm" autoplay loop></video>
She stops right before you cum
<<speech "Lucy">>Wouldn't be nice to mess your pants<</speech>>
She winks and leaves
<<elseif $randomsituation is 1>>
You decide to sit next to Lucy this time. She gives you a quick glance and seems to focus again on her computer but as you start working too you feel her hand getting on your crotch. She opens your pants and start rubbing your dick.
<video src="ressources/videos/library/1.webm" autoplay loop></video>
She stops right before you cum
<<speech "Lucy">>Wouldn't be nice to mess your pants<</speech>>
She winks and leaves\
<<else>>
You sit in front of Lucy, she seems so focused on her work that she doesn’t even notice you. You start working, expecting her to notice you at some point. After an hour you decide to leave.
<video src="ressources/videos/library/0.webm" autoplay loop></video>
<</if>>\
<<mcint>>
<span style="color:orange">''If you wish to unlock scenes you need to up Lucy's corruption and trust by helping her or completing quests and texting with her during the evening. You also need int for this quest''</span>
<</if>>\
<<if $quest.lucylibrary >= 3>>''You have reached the end of the content for Library Lucy''<</if>>
<<AdvancePeriod>>\
[[Go back|University]]<<if $quest.katepool is 0>>
<<if $mc.str >= 5>>
You do a nice dive into the pool
<video src="ressources/videos/nicedive.webm" autoplay loop></video>
You take a lap and get out of the pool in a cool way.
<video src="ressources/videos/gettingout.webm" autoplay loop></video>
As you look up you notice that Kate was there waiting for you
<<speech "Kate">>Nice show mister big cock! Hope to see you more often here! Also here is my SexApp id!<</speech>>
She leaves you giving you a nice look at her ass
<video src="ressources/videos/walkingout.webm" autoplay loop></video>
<span style="color:##19bde6">''Thoughts: I should come here more often to train with her that might be worth it''</span>
<<else>>
You build up some momentum as you start running to do a cool dive but nearly fall in the process. You make it into the pool but not in the way you expected.
<video src="ressources/videos/poolfail.webm" autoplay loop></video>
You feel someone grabbing you from behind. You reach the edge of the pool.
<<speech "Kate">>Nice try Mr Big cock but I think that you might need a bit more training before trying to do some pro moves!<</speech>>
She mumbles while touching your crotch
<<speech "Kate">>Come more often to train and you might get my attention. Also here is my SexApp id<</speech>>
<</if>>
<<set $has.kateid to 1>> ''You can now talk to Kate on SexApp''
<<katetrust>>
<<katecorr>>
<<set $quest.katepool += 1>>
<<elseif $quest.katepool is 1 && $kate.corr >= 5 && $kate.trust >= 5 && $mc.str >= 5>>
You trained as usual with Kate, but as you were going to the locker room she stops you
<<speech "Kate">>I think it's time to give you a little reward for your efforts. Follow me<</speech>>
[[Follow her|katepoolscene][$scene to 1]]
<<elseif $quest.katepool is 2 && $kate.corr >= 10 && $kate.trust >= 10 && $mc.str >= 10>>
You finish your lap but as your head pops out of the water you notice that Kate is still swimming. She finally reaches you.
<<speech "Kate">>You are a real monster now <<print "$mc.name">>, I will never be able to beat you from now on!<</speech>>
You smile from pride
<<speech "Kate">>But don't get too cocky or you will loose everything. But right now I think you deserve to be rewarded for beating me<</speech>>
[[Fuck her|katepoolscene][$scene to 2]]
<<else>>
You trained with Kate. You're getting better at swimming!
<<mcstr>>
<span style="color:orange">''If you wish to unlock scenes you need to up Kate's corruption and trust by helping her or completing quests and texting with her during the evening. You also need strength for this quest''</span>
<</if>>
<<if $quest.katepool >= 3>>''You have reached the end of the content for Pool Kate''<</if>>
<<AdvancePeriod>>
[[Go back|University]]<<if $quest.jadegym is 0>>
Jade is there doing some curls
[img["ressources/images/jade/gym/17.jpg"]]
She notices you
[img["ressources/images/jade/gym/16.jpg"]]
<<if $mc.str < 5>>
<<speech "Jade">>Hey mister <<print "$mc.eyes">>. First time I’ve seen you in here. I expect that I will see you here more often from now on! Hope we can train together! Also here is my SexApp Id text me!<</speech>>
<<set $has.jadeid to 1>> ''You can now talk to Jade on SexApp''
<<else>>
<<speech "Jade">>Hey mister <<print "$mc.eyes">>. That's some big muscles we have there. Would you mind being my coach ?<</speech>>
You accept the offer
<<speech "Jade">>Here is my SexApp Id, text me! I just finishes training today, see you next time!<</speech>>
<<set $has.jadeid to 1>> ''You can now talk to Jade on SexApp''
<</if>>
<<speech "Jade">>I just finishes training today, see you next time!<</speech>>
She leaves giving you the opportunity to have a nice look at her ass, She turns back at some point giving you a nice smile
[img["ressources/images/jade/gym/13.jpg"]]
<<set $quest.jadegym += 1>>
<<elseif $quest.jadegym is 1 && $jade.corr >= 5 && $jade.trust >= 5 && $mc.str >= 10>>
While you were doing your usualy ab exercises, she suddenly grabs your cock.
<video src="ressources/videos/gym/grabcock.mp4" autoplay loop></video>
<<speech "Jade">>I knew you had a hard on! To be honest... making all those exercices made me quite in the mood too. All of this exercise has really gotten me in the mood. No one ever comes by this part of the gym so let’s mess around right here.<</speech>>
[[Accept|jadegymscene][$scene to 1]]
<<elseif $quest.jadegym is 2 && $jade.corr >= 10 && $jade.trust >= 10 && $mc.str >= 15>>
As you were doing some exercise, she calls you over asking for your help with something.
[[Go for her|jadegymscene][$scene to 2]]
<<else>>
<<set $randomtraining to random(2)>>
<<if $randomtraining is 0>>
For today’s training, you decide to do some bench presses with dumbbells.
<video src="ressources/videos/gym/0.webm" autoplay loop></video>
<<elseif $randomtraining is 1>>
For today’s training, you decide to do some lat pull downs.
<video src="ressources/videos/gym/1.webm" autoplay loop></video>
<<else>>
For today’s training, you decide to work on your abs by doing some crunches
<</if>>
<video src="ressources/videos/gym/2.webm" autoplay loop></video>
<<mcstr>>
<span style="color:orange">''If you wish to unlock scenes you need to up Jade's corruption and trust by helping her or completing quests and texting with her during the evening. You also need str for this quest''</span>
<</if>>
<<if $quest.jadegym >= 3>>''You have reached the end of the content for Gym Jade''<</if>>
<<AdvancePeriod>>
[[Go back|University]]
<<if $scene is 1>>
You get your pants down, she notices it and start sucking your cock
<video src="ressources/scenes/university/meganrain/restroom/blowjob.mp4" autoplay loop></video>
<<linkreplace "But then">>Someone enters the restroom, and knocks on the door to your stall.
<<speech "???">>Could you please hurry up I need to pee<</speech>>
You get your cock back in your pants, flush the toilet and get out.
Kate is there waiting
<<speech "Kate">>Hey, Mr. Big Cock! Why were you taking so long inside there? Don’t tell me you were doing nasty things with the girl in the other stall.<</speech>>
You blush
<<speech "Kate">>Come on! Don't be embarrassed, next time it might be me in the other stall. Now gtfo I need to take a dump.<</speech>>
[[Leave the toilets|University]]
<<mcsex>>
<</linkreplace>>
<<else>>
<p>ou enter the second stall. You notice a hole cut into the connecting wall. You get closer to the hole and watch the show.</p><p>A nice brunette teen is there masturbating</p>
<video src="ressources/scenes/university/meganrain/restroom/masturbating.mp4" autoplay loop></video>
[[Put your cock in the hole|restroomscene][$scene to 1]]
<</if>>
After the lesson Jade turns to you, you look each other in the eyes for a few seconds.
<<speech "Jade">>Do you mind getting your ass up mister <<print $mc.eyes>> eyes? in case you didn't notice you're at the end of the row.<</speech>>
You get up and let her pass, as you watch her leave she turns back and waves at you.
<<speech "Jade">>See you mister <<print $mc.eyes>> eyes<</speech>>
<<jadetrust>>
<<mcint>>
<<AdvancePeriod>>
<<set $quest.jadeclass += 1>>
[[Time to leave|University]]<<if $sitscene is 1>>
<<if $quest.jadeclass is 0>>
After a few seconds she finally notices you
<<speech "Jade">> Ho mister <<print $mc.eyes>> eyes you decided to sit next to me again ! Thanks for not disturbing me this time<</speech>>
As she finishes her sentence the teacher enter the room
<<speech "Teacher">>Let's start today course about ...<</speech>>
During the lesson Jade seems to get closer and closer as time goes by. You finally are so close that your legs touch each others. You feel her warm and she doesn't seem to mind it. She continues to listen to the lesson as if nothing changed.
<<linkreplace "End of the lesson" t8n>>You pack your things and get off your seat, you were going to reach the exit door but then you feel a hand on your shoulder your turn back and Jade is there with a red face
<<speech "Jade">>Mister <<print $mc.eyes>> eyes you forgot your pen !<</speech>>
You take the pen and thank her
<<speech "Jade">>Sitting next to you isn't bad it helps me to focus on the lesson... try to do it more often... please<</speech>>
She hits you by trying to get off the classroom with a face as red as a tomato you hear a little sorry coming from her
[[Go back|University]]
<<jadecorr>><<set $jade.corr += 1>>
<<jadetrust>><<set $jade.trust += 1>>
<<set $quest.jadeclass += 1>>
<</linkreplace>>
<<else>>
As you sit she turns to you
<<speech "Jade">>Sorry about last time, I was in a hurry.<</speech>>
You ask her what was the rush for
<<speech "Jade">>LADY THINGS! You wouldn't understand!<</speech>>
<<speech "Teacher">>Jade! could you please be a bit less noisy? <</speech>>
<<speech "Jade">>Yes Mrs sorry<</speech>>
During the lesson she gets closer to you again this time you sometimes feel a little rub from her leg that is giving you a boner
<<linkreplace "Time to try something">>You slowly place your hand on her thigh, rubbing it softly
She moans a bit and mumbles,
<<speech "Jade">>Mister <<print $mc.eyes>> eyes I don't think it's the right place to do this<</speech>>
Not listening to her you decide to slide you hand closer to her crotch, her moaning intensifies but as you were getting close to the right spot she grabs your arm and ask you to stop
<<speech "Jade">> It's not that I don't like it but I don't think it's the right time to do this<</speech>>
But her face gives away her true feelings
<<jadecorr>><<set $jade.corr += 2>>
<<linkreplace "End of the lesson">>You need to pee, so you quickly pack your things and go for the restrooms, as you were peeing you hear the door opening
<<speech "Jade">>You can't do that when we're in class! What if someone noticed!?<</speech>>
[[Apologize|jadesitscene2][$reaction to 0]]
[[Confront her|jadesitscene2][$reaction to 1]]<</linkreplace>><</linkreplace>>
<</if>>
<<elseif $sitscene is 2>>
She jumps from the surprise but she begins to smile as soon as she recognizes you
<<speech "Jade">>I was just waiting for you<</speech>>
You sit and both of you start your usual game...
Your legs touch each others but as you were starting to move your hand she grabs your cock
She unzips your pants, pulls it out from under the table and starts rubbing it
<video src="ressources/videos/class/jade/1.webm" autoplay loop></video>
<<linkreplace "Finish" t8n>>You finish while she was still stroking it
<video src="ressources/videos/class/jade/0.webm" autoplay loop></video>
Thank god no one seems to have noticed
<<mcsex>>
<<jadetrust>><<set $jade.trust +=2>>
<<jadecorr>><<set $jade.corr += 3>>
<<set $quest.jadeclass += 1>>
[[Leave the class|University]]
<</linkreplace>>
<<elseif $sitscene is 3>>
She seems a bit surprised, she blushes from your kiss
<<if $mc.dom > $mc.sub>> <<linkreplace "Give her a real kiss now">>You take her head with your hands and give her a nice french kiss... your tongues wrapping on each other... your mind going blank and your desire growing.
<<linkreplace "But...">><<speech "Teacher">> $mc.name ! Could you please calm down and let her breath a bit please, so I could start the lesson.<</speech>><<linkreplace "Stop kissing">>You stop kissing give look each other in the eyes for a second before starting to listen to the course. <<mcint>>
<<mcdom>>
<<jadecorr>>
<<AdvancePeriod>>
<<set $quest.jadeclass += 1>>
[[Pack your things and leave the class|University]]<</linkreplace>><</linkreplace>>
<</linkreplace>>
<<else>><<speech "Jade">>That was nice, but don't forget that I'm the one in charge in this relationship.<</speech>>
She grabs your head giving you a surprisingly pleasant kiss... your tongues wrapping around each others... your mind going blank and your desire growing.
<<linkreplace "But...">>
<<speech "Teacher">>Jade! Could you please calm down and let him breath a bit please, so I could start the lesson.<</speech>>
<<linkreplace "Stop kissing">>You stop kissing and look each other in the eyes for a second, before starting to pay attention to the lesson. <<mcint>>
<<mcsub>>
<<jadecorr>>
<<set $quest.jadeclass += 1>>
<<AdvancePeriod>>
[[Pack your things and leave the class|University]]<</linkreplace>>
<</linkreplace>>
<</if>>
<<else>>
She takes your cock out of your pants and start rubbing it while the lesson continues
<video src="ressources/videos/class/jade/1.webm" autoplay loop></video>
<<linkreplace "Cum">><video src="ressources/videos/class/jade/0.webm" autoplay loop></video><</linkreplace>>
She licks the cum on her hand and give you a tissue so you can clean your cock before putting it back.
It seems that your teacher noticed something
<<teacherint>>
<<mcsex>>
<<jadecorr>>
<<mcint>>
<<set $quest.jadeclass += 1>>
[[Pack your things and leave|University]]
<</if>>
<<AdvancePeriod>><<if $reaction is 0>>
Despite knowing that she liked it you decide to apologize to avoid any trouble
<<jadetrust>><<set $jade.trust += 2>>
<<mcsub>>
<<speech "Jade">>Thank you for understanding. You know... It’s not that I don’t like you but I prefer to do this sort of things in private, not in class.<</speech>>
<span style="color:##19bde6">''Thoughts: I should corrupt her a bit more and gain her trust before trying this sort of thing again''</span>
<<elseif $reaction is 1>>
You finish peeing but instead of putting your dick away, you decide to use it. You push her to her knees and force her to suck your cock
As a submissive girl she does not resist
<video src="ressources/videos/class/jade/2.webm" autoplay loop></video>
<<jadecorr>><<set $jade.corr += 3>>
<<mcdom>><<set $mc.dom += 2>>
<<mcsex>>
<<if $jade.corr gte 10>>
<<linkreplace "finish on her face">><video src="ressources/videos/class/jade/3.webm" autoplay loop></video><</linkreplace>>
<</if>>
<</if>>
<<set $quest.jadeclass += 1>>
<<AdvancePeriod>>
[[Leave the room|University]]You have eaten with Jade
<<jadetrust>>
<<AdvancePeriod>>
[[Go back|University]]You have eaten with Kate
<<katetrust>>
<<AdvancePeriod>>
[[Go back|University]]You have eaten with Lucy
<<lucytrust>>
<<AdvancePeriod>>
[[Go back|University]]<<linkreplace "Activate Light cheats">>
<<set $kate.corr += 5>>
<<set $kate.trust += 5>>
<<set $lucy.corr += 5>>
<<set $lucy.trust += 5>>
<<set $jade.corr += 5>>
<<set $jade.trust += 5>>
<<set $mom.corr += 5>>
<<set $mom.trust += 5>>
<<set $sis.corr += 5>>
<<set $sis.trust += 5>>
<<set $teacher.int += 5>>
<<set $teacher.trust += 5>>
<<set $mc.int += 5>>
<<set $mc.str += 5>>
<<set $mc.seXP += 5>>
<<set $mc.porn += 5>>
''Choose one of the following path:''
<<linkreplace "dominant path">><<set $mc.dom += 5>><</linkreplace>>
<<linkreplace "submissive path">><<set $mc.sub += 5>><</linkreplace>>
<</linkreplace>>
[[Go back|House]]
<<set $has.usedcheat to 1>><h3>You'll have to wait the next update !</h3>
______________
You listened to the lesson, nothing happened
<<AdvancePeriod>>
<<mcint>>
[[Go back|University]]<<if $homework.difficulty is "Easy">>
Your <<print "$homework.subject">> homework took you a bit of time but was quite easy to make.
<<if $has.metkate is 1 && $has.kateid is 1>>
<<linkreplace "Send the homework to Kate">>You send over SexApp the homework to Kate, You receive a thanks from her a few minute after
<<set _thanks to random(5)>>
[img["ressources/homework/kate/" + _thanks + ".jpg"]]
<</linkreplace>>
<</if>>
[[Go back|Desk]]
<<else>>
It took you a lot of time to finish your homework. But after a few hours you are finally done. You hope that you will get an easier assignment next time.
[[Go back|Desk]]
<<mcint>>
<<if $has.metkate is 1 && $has.kateid is 1>>
<<linkreplace "Send the homework to Kate">>You send the homework over to Kate through SexApp, You receive a thanks from her a few minute after
<<set _thanks to random(5)>>
[img["ressources/homework/kate/" + _thanks + ".jpg"]]
<<katetrust>>
<<katecorr>>
<</linkreplace>>
<</if>>
[[Go back|Desk]]
<</if>>
<<set $homework.done to 1>><<if $restroomscene is 1>>
<<if $mc.dom > $mc.sub>>
Kate is waiting for you standing against the wall looking at something on her phone. You go towards her, grab her and start fondling her chest as you continually kiss her neck driving her mad. You get her shirt off enough to get her tits out. Then you attack her skirt to go to her panties, you squat to pull down her panties and have a plain view of this nice pussy.
You push her to her knee and pull your cock out of your pants.
<<speech "Kate">>As big as always<</speech>>
She then starts to suck it.
<video src="ressources/scenes/university/kate/restrooms/blowjob0.mp4" autoplay loop controls></video>
<<linkreplace "Throatfuck">>
<video src="ressources/scenes/university/kate/restrooms/deepthroat0.mp4" autoplay loop controls></video>
<<linkreplace "Deepthroat">>
<video src="ressources/scenes/university/kate/restrooms/deepthroat1.mp4" autoplay loop controls></video>
<<linkreplace "Facial">>You finally cum on her face
<video src="ressources/scenes/university/kate/restrooms/facial.mp4" autoplay loop controls></video>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<mcdom>>
<<else>>
As you enter the restrooms she puts her hands on your head and kiss you romanticaly. She opens your pants and start rubbing your cock.
<<speech "Kate">>As big as always<</speech>>
Your own desire growing you fondle her breasts and start getting her shirt off. Slowly but surely your hands are getting closer to her pussy. You get on your knees and remove her panties you get a plain view of her nice pussy.
She pushes you back a bit and starts sucking your cock
<video src="ressources/scenes/university/kate/restrooms/blowjob0.mp4" autoplay loop></video>
<<linkreplace "Deepthroat">>
<video src="ressources/scenes/university/kate/restrooms/deepthroat0.mp4" autoplay loop controls></video>
<<linkreplace "Facial">>You finally cum on her face
<video src="ressources/scenes/university/kate/restrooms/facial.mp4" autoplay loop controls></video>
<</linkreplace>>
<</linkreplace>>
<<mcsub>>
<</if>>
<<else>>
<<if $mc.dom > $mc.sub>>
You enter the restroom, knowing that this time she is not only going to suck your cock but you're going to fuck her like the little slut she is. She is already ready to fuck, her tits are out of her shirt and her panties are off.
[[Fuck her|katerestroomscene2]]
<<else>>
You enter the restroom, she is there waiting for you, her nipples out and her panties removed. She walks towards you like a cat in heat. She makes you lay on the cold floor, the coldness excites you even more. She squats just upon your dick ready to be penetrated
[[Fuck her|katerestroomscene2]]
<</if>>
<</if>>
<<mcsex>>
<<set $quest.kateclass += 1>>
[[Finish|University]]<<if $katerestroomscene2 is 1>>
<<set _random to random(2)>>
<<if _random is 0>>
<video src="ressources/scenes/university/kate/restrooms/doggy0.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _random is 1>>
<video src="ressources/scenes/university/kate/restrooms/doggy1.mp4" width="1200" height="600" autoplay loop></video>
<<else>>
<video src="ressources/scenes/university/kate/restrooms/doggy2.mp4" width="1200" height="600" autoplay loop></video>
<</if>>
<<elseif $katerestroomscene2 is 2>>
<video src="ressources/scenes/university/kate/restrooms/cowgirl1.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $katerestroomscene2 is 3>>
<video src="ressources/scenes/university/kate/restrooms/missionary.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $katerestroomscene2 is 4>>
<video src="ressources/scenes/university/kate/restrooms/reversecowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $katerestroomscene2 is 5>>
<video src="ressources/scenes/university/kate/restrooms/titsjob.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $katerestroomscene2 is 6>>
<video src="ressources/scenes/university/kate/restrooms/69.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $katerestroomscene2 is 7>>
<video src="ressources/scenes/university/kate/restrooms/blowjob1.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $katerestroomscene2 is 8>>
<video src="ressources/scenes/university/kate/restrooms/facial.mp4" width="1200" height="600" autoplay loop></video>
<<else>>
<video src="ressources/scenes/university/kate/restrooms/cowgirl1.mp4" width="1200" height="600" autoplay loop></video>
<<mcsex>>
<</if>>
[[Doggy|katerestroomscene2][$katerestroomscene2 to 1]]
[[Cowgirl|katerestroomscene2][$katerestroomscene2 to 2]]
[[Missionary|katerestroomscene2][$katerestroomscene2 to 3]]
[[Reverse cowngirl|katerestroomscene2][$katerestroomscene2 to 4]]
[[Titsjob|katerestroomscene2][$katerestroomscene2 to 5]]
[[69|katerestroomscene2][$katerestroomscene2 to 6]]
[[69|katerestroomscene2][$katerestroomscene2 to 7]]
[[Facial|katerestroomscene2][$katerestroomscene2 to 8]]
[[Go back|University]]<<linkreplace "Activate Medium cheat">>
<<set $kate.corr += 10>>
<<set $kate.trust += 10>>
<<set $lucy.corr += 10>>
<<set $lucy.trust += 10>>
<<set $jade.corr += 10>>
<<set $jade.trust += 10>>
<<set $mom.corr += 10>>
<<set $mom.trust += 10>>
<<set $sis.corr += 10>>
<<set $sis.trust += 10>>
<<set $teacher.int += 10>>
<<set $teacher.trust += 10>>
<<set $mc.int += 10>>
<<set $mc.str += 10>>
<<set $mc.seXP += 10>>
<<set $mc.porn += 10>>
''Choose one of the following path:''
<<linkreplace "dominant path">><<set $mc.dom += 10>><</linkreplace>>
<<linkreplace "submissive path">><<set $mc.sub += 10>><</linkreplace>>
<</linkreplace>>
[[Go back|House]]
<<set $has.usedcheat to 1>><<linkreplace "Activate Hard cheats">>
<<set $kate.corr += 15>>
<<set $kate.trust += 15>>
<<set $lucy.corr += 15>>
<<set $lucy.trust += 15>>
<<set $jade.corr += 15>>
<<set $jade.trust += 15>>
<<set $mom.corr += 15>>
<<set $mom.trust += 15>>
<<set $sis.corr += 15>>
<<set $sis.trust += 15>>
<<set $teacher.int += 15>>
<<set $teacher.trust += 15>>
<<set $mc.int += 15>>
<<set $mc.str += 15>>
<<set $mc.seXP += 15>>
<<set $mc.porn += 15>>
''Choose one of the following path:''
<<linkreplace "dominant path">><<set $mc.dom += 15>><</linkreplace>>
<<linkreplace "submissive path">><<set $mc.sub += 15>><</linkreplace>>
<</linkreplace>>
[[Go back|House]]
<<set $has.usedcheat to 1>><<if $notes is 1>>
Lucy replies with a nice picture of… her boobs!
<<set _thanks to random(2)>>
[img["ressources/homework/lucy/" + _thanks + ".jpg"]]
<<lucytrust>>
<<lucycorr>>
<<else>>
<<set _picture to either(1, 2, 3)
<<if _picture is 1>>
Lucy replies with a nice picture of… her boobs!
<<set _thanks to random(2)>>
[img["ressources/homework/lucy/" + _thanks + ".jpg"]]
<<elseif _picture is 2>>
Lucy replies with a nice picture of… her ass!
<<set _thanks to random(3, 5)>>
[img["ressources/homework/lucy/" + _thanks + ".jpg"]]
<<elseif _picture is 3>>
Lucy replies with a nice picture of… her body!
<<set _thanks to random(6, 8)>>
[img["ressources/homework/lucy/" + _thanks + ".jpg"]]
<</if>>
<<lucytrust>>
<<lucycorr>>
<</if>><<if $mc.dom > $mc.sub>>
You leave the classroom, turn right, then take a left. You walk up to a door in the teacher’s hallway that has no name written on it.
<<speech "Lucy">>This office hasn’t been assigned to anyone yet this year. We won't be bothered here. We only have 10 minutes before the lesson start so let's do this quickly!<</speech>>
You sit on the only chair in the room while she gets on her knees
She then start sucking your cock
<video src="ressources/scenes/university/lucy/class/blowjob0.mp4" autoplay loop></video>
<<linkreplace "Jerk off">><video src="ressources/scenes/university/lucy/class/facial.mp4" autoplay loop></video>
<<lucycorr>><<set $lucy.corr += 1>>
<<mcsex>>
<<mcdom>>
[[Go back to class|classafterlucyscene]]
<</linkreplace>>
<<else>>
You quit the class, turn right, then left getting in front of a door inside teacher's hallway which has no name written on it
<<speech "Lucy">>This is a desk which has not been attributed this year. We won't be bothered here. We only have 10 minutes before the lesson start so let's do this quickly!<</speech>>
She gets a chair for you and takes seat on an other
<<speech "Lucy">>Let me take care of your big boy, my cute little boy<</speech>>
she then starts sucking your cock
<video src="ressources/scenes/university/lucy/class/blowjob0.mp4" autoplay loop></video>
<<linkreplace "Jerk off">><video src="ressources/scenes/university/lucy/class/facial.mp4" autoplay loop></video>
<<lucycorr>><<set $lucy.corr += 1>>
<<mcsex>>
<<mcsub>>
[[Go back to class|classafterlucyscene]]
<</linkreplace>>
<</if>>
You came back to the class right before the lesson starts, everyone noticing that something is strange
<<speech "Teacher">>Lucy... <<print "$mc.name">>... is everything okay<</speech>>
You both nod, blushing even more as you rush to your seats.
Nothing more happened during the lesson
<<teacherint>>
<<mcint>>
[[Leave the class|University]]<<if $lucyclassscene is 1>>
<video src="ressources/scenes/university/lucy/dorm/blowjob.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $lucyclassscene is 2>>
<video src="ressources/scenes/university/lucy/dorm/finger.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $lucyclassscene is 3>>
<video src="ressources/scenes/university/lucy/dorm/cowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $lucyclassscene is 4>>
<video src="ressources/scenes/university/lucy/dorm/reversecowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $lucyclassscene is 5>>
<video src="ressources/scenes/university/lucy/dorm/jerkoff.mp4" width="1200" height="600" autoplay loop></video>
<<else>>
She leads you to her dorm, this is quite narrow but it looks comfortable and not too ugly. As you were going to compliment her on the look of the place she takes your hand and leads you to her room.
She makes you sit on the bed and starts sucking your dick
<video src="ressources/scenes/university/lucy/dorm/blowjob.mp4" width="1200" height="600" autoplay loop></video>
<<mcsex>>
<</if>>
[[Blowjob|lucyclassscene2][$lucyclassscene to 1]]
[[Finger|lucyclassscene2][$lucyclassscene to 2]]
[[Cowgirl|lucyclassscene2][$lucyclassscene to 3]]
[[Reverse Cowgirl|lucyclassscene2][$lucyclassscene to 4]]
[[Jerk off|lucyclassscene2][$lucyclassscene to 5]]
[[Go back|University]]
<<if $scene is 1>>
<<if $lucyrestroomscene is 1>>
<video src="ressources/scenes/university/lucy/library/facial.mp4" width="1200" height="600" autoplay loop></video>
<<mcsex>>
[[Leave|University]]
<<else>>
You enter the library toilets reserved for the teachers. She gets on her knees and start sucking your cock
<video src="ressources/scenes/university/lucy/library/blowjob1.mp4" width="1200" height="600" autoplay loop></video>
[[Facial|lucyrestroomscene][$lucyrestroomscene to 1]]
<</if>>
<<else>>
<<if $lucyrestroomscene is 1>>
<video src="ressources/scenes/university/lucy/library/blowjob1.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $lucyrestroomscene is 2>>
<video src="ressources/scenes/university/lucy/library/fîngerpussy.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $lucyrestroomscene is 3>>
<video src="ressources/scenes/university/lucy/library/reversecowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $lucyrestroomscene is 4>>
<video src="ressources/scenes/university/lucy/library/reversecowgirl1.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $lucyrestroomscene is 5>>
<video src="ressources/scenes/university/lucy/library/facial.mp4" width="1200" height="600" autoplay loop></video>
<<else>>
Like the first time she gets on her knees and start sucking your cock
<video src="ressources/scenes/university/lucy/library/blowjob0.mp4" width="1200" height="600" autoplay loop></video>
<<mcsex>>
<</if>>
[[Blowjob|lucyrestroomscene][$lucyrestroomscene to 1]]
[[Finger her|lucyrestroomscene][$lucyrestroomscene to 2]]
[[Reverse cowngirl|lucyrestroomscene][$lucyrestroomscene to 3]]
[[Reverse cowgirl 2|lucyrestroomscene][$lucyrestroomscene to 4]]
[[Facial|lucyrestroomscene][$lucyrestroomscene to 5]]
[[Stop fucking her and get back|University]]
<</if>><<if $scene is 1>>
She leads you off towards a sorority house. Surprisingly, she seems to have a key.
<<speech "Kate">>This is were I live, the other students are always away during the afternoon so we can fuck here<</speech>>
She gets starts sucking your cock
<video src="ressources/scenes/university/kate/pool/blowjob.mp4" width="1200" height="600" autoplay loop></video>
<<linkreplace "cum">>
<video src="ressources/scenes/university/kate/pool/facial.mp4" width="1200" height="600" autoplay loop></video>
<<mcsex>>
<</linkreplace>>
<<else>>
<<if $katepoolscene is 1>>
<video src="ressources/scenes/university/kate/pool//blowjob.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $katepoolscene is 2>>
<video src="ressources/scenes/university/kate/pool//69.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $katepoolscene is 3>>
<video src="ressources/scenes/university/kate/pool//missionary.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $katepoolscene is 4>>
<video src="ressources/scenes/university/kate/pool//reversecowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $katepoolscene is 5>>
<<speech "Kate">>That was nice Mr big cock<</speech>>
<video src="ressources/scenes/university/kate/pool/facial.mp4" width="1200" height="600" autoplay loop></video>
<<else>>
<<speech "Kate">>I want to try something new, lay on the ground!<</speech>>
You obey and she gets on you
<<speech "Kate">>Lick my pussy while I suck your cock<</speech>>
<video src="ressources/scenes/university/kate/pool//69.mp4" width="1200" height="600" autoplay loop></video>
<<mcsex>>
<</if>>
[[Blowjob|katepoolscene][$katepoolscene to 1]]
[[69|katepoolscene][$katepoolscene to 2]]
[[Missionary|katepoolscene][$katepoolscene to 3]]
[[Reverse cowgirl|katepoolscene][$katepoolscene to 4]]
[[Facial|katepoolscene][$katepoolscene to 5]]
<</if>>
[[Stop fucking her and get back|University]]<<if $scene is 1>>
She starts giving you a nice blowjob
<video src="ressources/scenes/university/jade/gym/blowjob1.mp4" width="1200" height="600" autoplay loop></video>
<<linkreplace "Cum">>
<video src="ressources/scenes/university/jade/gym/facial.mp4" width="1200" height="600" autoplay loop></video>
<<mcsex>>
<<set $quest.jadegym += 1>>
<</linkreplace>>
<<else>>
<<if $jadegymscene is 1>>
<video src="ressources/scenes/university/jade/gym/blowjob1.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $jadegymscene is 2>>
<video src="ressources/scenes/university/jade/gym/cowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $jadegymscene is 3>>
<video src="ressources/scenes/university/jade/gym/doggy.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $jadegymscene is 4>>
<video src="ressources/scenes/university/jade/gym/facial.mp4" width="1200" height="600" autoplay loop></video>
<<else>>
But then as you reach her she gets on her knees gets your cock off your pants and starts sucking it
<video src="ressources/scenes/university/jade/gym/blowjob0.mp4" width="1200" height="600" autoplay loop></video>
<<mcsex>>
<</if>>
[[Blowjob|jadegymscene][$jadegymscene to 1]]
[[Cowgirl|jadegymscene][$jadegymscene to 2]]
[[Doggy|jadegymscene][$jadegymscene to 3]]
[[Facial|jadegymscene][$jadegymscene to 4]]
<</if>>
[[Stop fucking her|University]]<<if $quest.sisbathroom is 2 && $has.bathroomkey is 1 && $period isnot 5 && $period isnot 0>>
<<linkreplace "ask for a copy of the key for 30$">>
<<if $mc.money >= 30>>
After a few minutes the shop keep comes out from the back room with the copy and the original key.
<<set $has.bathroomkeycopy to 1>>
<<set $quest.sisbathroom += 1>>
<<set $mc.money -= 30>>
<<else>>
You don't have enough money
<</if>>
<</linkreplace>>
<<else>>
The shop seems to be closed
<</if>>
[[Leave|Street]]<<if $scene is 1>>
You quietly unlock the door and enter the bathroom, she seems a bit surprised at first but then she invites you in.
<<speech "Sasha">>Since you’re here, come and help me wash my back.<</speech>>
<video src="ressources/scenes/home/sis/bathroom/wash.mp4" width="1200" height="600" autoplay loop></video> ''video in the first hotfix''
[[Fuck her|sisbathroomscene][$scene to 3]]
<<elseif $scene is 2>>
You quietly unlock the door and enter the bathroom, she immediately yells at you.
<<speech "Sasha">>Get the fuck out you goddamned pervert!<</speech>>
<<sistrustminus>>
[[Leave the bathroom|House]]
<<if $mc.dom > $mc.sub && $sis.corr >= 10>>[[Fuck her against her will|sisbathroomscene][$scene to 4]]<</if>>
<<elseif $scene is 3>>
<<if $bathroomscene is 1>>
<video src="ressources/scenes/home/sis/bathroom/blowjob.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bathroomscene is 2>>
<video src="ressources/scenes/home/sis/bathroom/doggy.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bathroomscene is 3>>
<video src="ressources/scenes/home/sis/bathroom/missionary.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bathroomscene is 4>>
<video src="ressources/scenes/home/sis/bathroom/cowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bathroomscene is 5>>
<video src="ressources/scenes/home/sis/bathroom/reversecowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bathroomscene is 6>>
<video src="ressources/scenes/home/sis/bathroom/facial.mp4" width="1200" height="600" autoplay loop></video>
<<else>>
You stop washing her and make her face you. She gets on her knees and starts to suck your cock
<video src="ressources/scenes/home/sis/bathroom/blowjob.mp4" width="1200" height="600" autoplay loop></video>
<<mcsex>>
<<siscorr>>
<</if>>
[[Blowjob|sisbathroomscene][$bathroomscene to 1]]
[[Doggy|sisbathroomscene][$bathroomscene to 2]]
[[Missionary|sisbathroomscene][$bathroomscene to 3]]
[[Cowgirl|sisbathroomscene][$bathroomscene to 4]]
[[Reverse cowgirl|sisbathroomscene][$bathroomscene to 5]]
[[Facial|sisbathroomscene][$bathroomscene to 6]]
<<else>>
<<if $bathroomscene is 1>>
<video src="ressources/scenes/home/sis/bathroom/blowjob.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bathroomscene is 2>>
<video src="ressources/scenes/home/sis/bathroom/doggy.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bathroomscene is 3>>
<video src="ressources/scenes/home/sis/bathroom/missionary.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bathroomscene is 4>>
<video src="ressources/scenes/home/sis/bathroom/cowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bathroomscene is 5>>
<video src="ressources/scenes/home/sis/bathroom/reversecowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bathroomscene is 6>>
<video src="ressources/scenes/home/sis/bathroom/facial.mp4" width="1200" height="600" autoplay loop></video>
<<else>>
You make her gets on her knees and tell her to suck your cock. As the submissive bitch you made her become she obeys
<video src="ressources/scenes/home/sis/bathroom/blowjob.mp4" width="1200" height="600" autoplay loop></video>
<<mcsex>>
<<mcdom>>
<<siscorr>>
<</if>>
[[Blowjob|sisbathroomscene][$bathroomscene to 1]]
[[Doggy|sisbathroomscene][$bathroomscene to 2]]
[[Missionary|sisbathroomscene][$bathroomscene to 3]]
[[Cowgirl|sisbathroomscene][$bathroomscene to 4]]
[[Reverse cowgirl|sisbathroomscene][$bathroomscene to 5]]
[[Facial|sisbathroomscene][$bathroomscene to 6]]
<</if>><<if $has.usedcheat is 0>>
<<textbox "_testcode" "cheat code here">>
<<linkreplace "Active cheats">>
<<set _val = hashStr(_testcode)>>
<<if _val == $codes.supporter>>
Light cheat unlocked
[[Light cheat]]
<<elseif _val == $codes.supersupporter>>
Medium cheat unlocked
[[Medium cheat]]
<<elseif _val == $codes.gamelover>>
Hard cheat unlocked
[[Hard cheat]]
<<else>>
Sorry the code you entered is not valid
<</if>>
<</linkreplace>>
<<else>>
<</if>>
<<return>>
To get the code you must donate on Patreon:
<a href="https://www.patreon.com/bePatron?u=10423542" data-patreon-widget-type="become-patron-button">[img["ressources/patreon.jpg"]]</a>You helped <<print "$sis.name">> with her homeworks
<<sistrust>>
<<AdvancePeriod>>
[[Leave the room|House]]<<if $sis.trust >= 5>>
You slept with your sister, nothing happened
<<if $period isnot 0>><<NextMorning>><<elseif $period is 0>><<AdvancePeriod>><</if>>
<<sistrust>>
<<else>>
<<speech "Sasha">>Nah, go sleep in your bed<</speech>>
<</if>>
[[Leave the room|House]]<video src="ressources/dream/kate3.webm" autoplay loop></video><<if $mom.loc is "her bedroom" && $mom.trust >= 5 && $period is 4>>
[[Sleep with your mother|sleepingwithmom]]
<<elseif $mom.loc is "her bedroom" && $mom.trust >= 5 && $period is 5>>
[[Sleep with your mother|sleepingwithmom]]
<<elseif $period is 0>>
Your mother is already sleeping!
<<elseif $mom.loc is "her bedroom" && $mom.trust <= 4>>
''Your mother doesn't trust you enough to let you sleep with her''
<<elseif $mom.loc is "her bedroom" && $mom.trust >= 10 && $mom.corr >= 10>>
[[Time to have some fun with mom|mombedscene]]
[[Sleep with your mother|sleepingwithmom]]
<<else>>
There is nothing to do here for the moment
<</if>>
[[Leave|House]]<<if $talking is 0>>
[[Talk about school|eatingdinner][$talking to "school"]]
[[Talk about sports|eatingdinner][$talking to "sport"]]
[[Listen to your sister|eatingdinner][$talking to "sister"]]
<<elseif $talking is "school">>
You talked about school with your mother and sister. Your mother seems to be quite happy that you feel concerned by your studies
<<momtrust>>
<<elseif $talking is "sport">>
You talked about sports with your mother and sister, they didn't seem to be listening to you
<<elseif $talking is "sister">>
You listened to your sister talking about her problems, it seems to have pleased her
<<sistrust>>
<<siscorr>>
<</if>>
[[Leave the table|House][$talking to 0]]You have washed the dishes
<video src="ressources/videos/dishes.webm" autoplay loop></video>
<<speech "Mom">>Thanks for the help!<</speech>>
<<momtrust>>
<<AdvancePeriod>>
[[Leave|House]]<<if $period is 5 && $sis.loc is "living room">>
[[Watch something with your sister|watchtvsis][$watching to 0]]
<</if>>
<<if $period is 4 or $period is 5>>
<<if $has.vacuum is 0>>
[[Clean the living room|cleaninglivingroom]]
<<else>>\
<</if>>\
<</if>>\
<<if $period isnot 4 or $period isnot 5>>
''There is nothing to do here for the moment''
<</if>>
[[Leave|House]]<<if $watching is 0>>
[[Something funny|watchtvsis][$watch to "funny";$watching to 1]]
[[A romantic film|watchtvsis][$watch to "romance";$watching to 1]]
[[Some Porn|watchtvsis][$watch to "porn";$watching to 1]]
<<else>>
<<set _random = random(2)>>
<<if $watch is "funny">>
You have watched a funny show
<<if _random is 0>>
<video src="ressources/videos/tv/funny/0.webm" autoplay loop></video>
<<elseif _random is 1>>
<video src="ressources/videos/tv/funny/1.webm" autoplay loop></video>
<<else>>
<video src="ressources/videos/tv/funny/2.webm" autoplay loop></video>
<</if>>
<<AdvancePeriod>>
<<elseif $watch is "romance">>
You have watched a long and annoying romantic film
<<if _random is 0>>
<video src="ressources/videos/tv/romance/0.webm" autoplay loop></video>
<<elseif _random is 1>>
<video src="ressources/videos/tv/romance/1.webm" autoplay loop></video>
<<else>>
<video src="ressources/videos/tv/romance/2.webm" autoplay loop></video>
<</if>>
<<AdvancePeriod>>
<<sistrust>>
<<else>>
You have watched some porn together, your sister seemed rather focused.
<<if _random is 0>>
<video src="ressources/videos/tv/porn/0.webm" autoplay loop></video>
<<elseif _random is 1>>
<video src="ressources/videos/tv/porn/1.webm" autoplay loop></video>
<<else>>
<video src="ressources/videos/tv/porn/2.webm" autoplay loop></video>
<</if>>
<<AdvancePeriod>>
<<siscorr>>
<<mcporn>>
<</if>>
<</if>>
[[Leave|House]]
You have vacuumed the living room
<video src="ressources/videos/vacuum.webm" autoplay loop></video>
<<speech "Mom">>Well done sweetie, that's nice of you to help me with house tasks<</speech>>
<<momtrust>>
<<AdvancePeriod>>
[[Leave|House]]You slept with your mom, during the night you felt her grinding on your cock a bit during the night
<<NextMorning>>
<<momcorr>>
[[Leave the room|House]]<<if $scene is 1>>
<<if $bedscene is 1>>
<video src="ressources/scenes/home/sis/bedroom/blowjob1.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bedscene is 2>>
<video src="ressources/scenes/home/sis/bedroom/missionary.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bedscene is 3>>
<video src="ressources/scenes/home/sis/bedroom/doggy.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bedscene is 4>>
<video src="ressources/scenes/home/sis/bedroom/cowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bedscene is 5>>
<video src="ressources/scenes/home/sis/bedroom/reversecowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bedscene is 6>>
<video src="ressources/scenes/home/sis/bedroom/creampie.mp4" width="1200" height="600" autoplay loop></video>
<<else>>
You enter her room, she is laying on her bed staring at her phone.
<<speech "Sasha">>What's up?<</speech>>
She notices your boner
<<speech "Sasha">>Ho... I see... someone wants some care!<</speech>>
She comes closer, gets on her knees and starts to give you a nice blowjob
<video src="ressources/scenes/home/sis/bedroom/blowjob0.mp4" width="1200" height="600" autoplay loop></video>
<</if>>
[[Blowjob|sisbedroomscene][$bedscene to 1]]
[[Missionary|sisbedroomscene][$bedscene to 2]]
[[Doggy|sisbedroomscene][$bedscene to 3]]
[[Cowgirl|sisbedroomscene][$bedscene to 4]]
[[Reverse cowgirl|sisbedroomscene][$bedscene to 5]]
[[Creampie|sisbedroomscene][$bedscene to 6]]
<<else>>
<<if $bedscene is 1>>
<video src="ressources/scenes/home/sis/bedroom/blowjob0.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bedscene is 2>>
<video src="ressources/scenes/home/sis/bedroom/missionary.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bedscene is 3>>
<video src="ressources/scenes/home/sis/bedroom/doggy.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bedscene is 4>>
<video src="ressources/scenes/home/sis/bedroom/cowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bedscene is 5>>
<video src="ressources/scenes/home/sis/bedroom/reversecowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif $bedscene is 6>>
<video src="ressources/scenes/home/sis/bedroom/creampie.mp4" width="1200" height="600" autoplay loop></video>
<<else>>
You enter her room, she is laying on her bed watching her phones
<<speech "Sasha">>What do you want?<</speech>>
You go towards her, grab her out of her bed, push her to her knees and start deep throating this little bitch.
<video src="ressources/scenes/home/sis/bedroom/blowjob1.mp4" width="1200" height="600" autoplay loop></video>
<</if>>
[[Blowjob|sisbedroomscene][$bedscene to 1]]
[[Missionary|sisbedroomscene][$bedscene to 2]]
[[Doggy|sisbedroomscene][$bedscene to 3]]
[[Cowgirl|sisbedroomscene][$bedscene to 4]]
[[Reverse cowgirl|sisbedroomscene][$bedscene to 5]]
[[Creampie|sisbedroomscene][$bedscene to 6]]
<</if>>
[[Leave|House]]<<if _bedscene is 1>>
<video src="ressources/scenes/home/mom/bedroom/blowjob.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _bedscene is 2>>
<video src="ressources/scenes/home/mom/bedroom/cowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _bedscene is 3>>
<video src="ressources/scenes/home/mom/bedroom/doggy.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _bedscene is 4>>
<video src="ressources/scenes/home/mom/bedroom/sidefuck.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _bedscene is 5>>
<video src="ressources/scenes/home/mom/bedroom/missionary.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _bedscene is 6>>
<video src="ressources/scenes/home/mom/bedroom/facial.mp4" width="1200" height="600" autoplay loop></video>
<<else>>
You enter her room, it seems that she is not there. You feel someone pushing you from behind
<<speech "Mom">>Looking for someone sweetie?<</speech>>
She gets you on her bed
<<speech "Mom">>I think that you deserve a little reward for all your recent efforts<</speech>>
She gets her clothes off, you stare at her
<<speech "Mom">>What are you waiting for!? Go on! Undress too!<</speech>>
You obey, she pushes you on the bed and climbs on you, you start licking her pussy while she sucks your dick
<video src="ressources/scenes/home/mom/bedroom/69.mp4" width="1200" height="600" autoplay loop></video>
<</if>>
[[Blowjob|mombedscene][_bedscene to 1]]
[[Cowgirl|mombedscene][_bedscene to 2]]
[[Doggy|mombedscene][_bedscene to 3]]
[[Side fuck|mombedscene][_bedscene to 4]]
[[Missionary|mombedscene][_bedscene to 5]]
[[Facial|mombedscene][_bedscene to 6]]
[[Leave|House]][img["ressources/profilpictures/home/sis.jpg"]]<span style="font-size:1.17em;font-weight:bold;margin-left: 15px; display: initial">Sister</span>
<hr>
Sister Corruption: <<print "$sis.corr">>
Sister Trust: <<print "$sis.trust">>
Sister Bedrooom Quest: <<print "$quest.sisbedroom">>
Sister Bathroom Quest: <<print "$quest.sisbathroom">>
[img["ressources/profilpictures/home/mom.jpg"]]<span style="font-size:1.17em;font-weight:bold;margin-left: 15px; display: initial">Mom</span>
<hr>
Mother Corruption: <<print "$mom.corr">>
Mother Trust: <<print "$mom.trust">>
[img["ressources/profilpictures/university/jade.png"]]<span style="font-size:1.17em;font-weight:bold;margin-left: 15px; display: initial">Jade</span>
<hr>
Jade Corruption: <<print "$jade.corr">>
Jade Trust: <<print "$jade.trust">>
Jade Class Quest: <<print "$quest.jadeclass">>
Jade Gym Quest: <<print "$quest.jadegym">>
[img["ressources/profilpictures/university/kate.png"]]<span style="font-size:1.17em;font-weight:bold;margin-left: 15px; display: initial">Kate</span>
<hr>
Kate Corruption: <<print "$kate.corr">>
Kate Trust: <<print "$kate.trust">>
Kate Class Quest: <<print "$quest.kateclass">>
Kate Pool Quest: <<print "$quest.katepool">>
[img["ressources/profilpictures/university/lucy.png"]]<span style="font-size:1.17em;font-weight:bold;margin-left: 15px; display: initial">Lucy</span>
<hr>
Lucy Corruption: <<print "$lucy.corr">>
Lucy Trust: <<print "$lucy.trust">>
Lucy Class Quest: <<print "$quest.lucyclass">>
Lucy Library Quest: <<print "$quest.lucylibrary">>
[img["ressources/profilpictures/university/teacher.png"]]<span style="font-size:1.17em;font-weight:bold;margin-left: 15px; display: initial">Teacher</span>
<hr>
Teacher Interest: <<print "$teacher.int">>
Teacher Trust: <<print "$teacher.trust">>
Teacher Office Quest: <<print "$quest.teacheroffice">>
<<return>><<if $has.lucyid>>
<<linkreplace "send some messages to Lucy">>
You texted each other a bit, nothing much
<<AdvancePeriod>>
<<lucytrust>>
<<lucycorr>>
<</linkreplace>>
<</if>>
<<if $has.kateid>>
<<linkreplace "send some messages to Kate">>
You texted each other a bit, nothing much
<<AdvancePeriod>>
<<katetrust>>
<<katecorr>>
<</linkreplace>>
<</if>>
<<if $has.jadeid>>
<<linkreplace "send some messages to Jade">>
You texted each other a bit, nothing much
<<AdvancePeriod>>
<<jadetrust>>
<<jadecorr>>
<</linkreplace>>
<</if>>
<<if $has.lucyid is 0 && $has.kateid is 0 && $has.jadeid is 0>>
You don't have any friends on SexApp yet
<</if>>
<<return>><h1>Thanks to Hiev for all his help</h1>
Videos and Images displayed in this game are used without removing the watermark that are on them.
By playing this game you must have an account with a valid membership on these sites:
<a src="https://www.brazzers.com/home" style="font-size:14px;">Brazzers</a>
<a src="https://bangbros.com/" style="font-size:14px;">Bangbros</a>
<a src="https://www.littlecaprice-dreams.com/" style="font-size:14px;">Little caprice dreams</a>
<a src="https://pornhub.com/" style="font-size:14px;">Pornhub</a>
<a src="https://www.teamskeet.com/t1/" style="font-size:14px;">Team Skeet</a>
<a src="https://digitalplayground.com/home" style="font-size:14px;">Digital Playground</a>
<a src="https://mofos.com" style="font-size:14px;">Mofos</a>
<a src="https://wicked.com/" style="font-size:14px;">Wicked</a>
<a src="https://www.fakehub.com" style="font-size:14px;">Fake hub</a>
<a src="https://www.realitykings.com" style="font-size:14px;">Reality King</a>
<a src="https://babes.com" style="font-size:14px;">Babes</a>
Some images come from
<a src="https://sex.com" style="font-size:14px;">Sex</a>
<a src="https://giphy.com/explore/bank" style="font-size:14px;">Giphy</a>
Most Backgrounds come from:
<a src="https://unsplash.com" style="font-size:14px;">Unsplash</a>
Notes:
In this story the step-mom and step-sis are referred as Sis and Mom but that's only Main character point of view which is story fictional. All scenes come from Legal Porn sites and do not represent real incest scenes! <<if _scene is 1>>
<video src="ressources/scenes/university/jade/class/blowjob1.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _scene is 2>>
<video src="ressources/scenes/university/jade/class/doggy0.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _scene is 3>>
<video src="ressources/scenes/university/jade/class/cowgirl.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _scene is 4>>
<video src="ressources/scenes/university/jade/class/missionary.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _scene is 5>>
<video src="ressources/scenes/university/jade/class/sidefuck.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _scene is 6>>
<video src="ressources/scenes/university/jade/class/standfuck.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _scene is 7>>
<video src="ressources/scenes/university/jade/class/69.mp4" width="1200" height="600" autoplay loop></video>
<<elseif _scene is 8>>
<video src="ressources/scenes/university/jade/class/facial.mp4" width="1200" height="600" autoplay loop></video>
<<else>>
You mumble to Jade to stay after the lesson
After everyone leaves the classroom, you stand next to her, gets your cock out of your pants. She knows what to do
<video src="ressources/scenes/university/jade/class/blowjob0.mp4" width="1200" height="600" autoplay loop></video>
<<mcsex>>
<<jadecorr>>
<<jadetrust>>
<</if>>
[[Blowjob|jadeclassscene][_scene to 1]]
[[Doggy|jadeclassscene][_scene to 2]]
[[Cowgirl|jadeclassscene][_scene to 3]]
[[Missionary|jadeclassscene][_scene to 4]]
[[Side fuck|jadeclassscene][_scene to 5]]
[[Stand fuck|jadeclassscene][_scene to 6]]
[[69|jadeclassscene][_scene to 7]]
[[Facial|jadeclassscene][_scene to 8]]
[[Leave|University]]