<center>
<h1 class="ptitle">BAR</h1>
<div id="place-head">
[img[setup.ImagePath+'/bar/barbanner.png']]
</div>
<br>
<<button 'Drink 🍸'>>
<<if $player.money - 15 >= 0>>
<<AddMoney -15>>
<<AddTime 2>>
<<Energy -10>>
<<UpdateBar>>
<<notify 'alert'>>You have a drink at the bar<</notify>>
<<else>>
<<notify 'alert'>>You don't have enough money!<</notify>>
<</if>>
<</button>>
<<button 'Socialize 🗣️'>>
<<notify 'alert'>>You socialize at the bar<</notify>>
<<AddTime 2>>
<<Energy -10>>
<<AddSocial>>
<</button>>
<<button 'City 🏙️' 'CityMap'>><</button>>
<<SetPlayerLocation Bar>>
</center><center>
<h1 class="ptitle">BEACH</h1>
<div id="place-head">
[img[setup.ImagePath+'/beach/beachbanner.png']]
</div>
<br>
<<button 'Swim 🏊🏼♀️'>>
<<if $player.clothing.type == 'swim'>>
<<goto 'BeachSwim'>>
<<else>>
<<notify 'fitness'>>You aren't wearing a swimsuit!<</notify>>
<</if>>
<</button>>
<<button 'Sunbathe ☀️'>>
<<if $player.clothing.type == 'swim'>>
<<goto 'BeachSunbathe'>>
<<else>>
<<notify 'fitness'>>You aren't wearing a swimsuit!<</notify>>
<</if>>
<</button>>
<<button 'Explore 🔍'>>
<<notify 'alert'>>Work in progress!<</notify>>
<</button>>
<<button 'Change Clothes 👙' 'Wardrobe'>>
<</button>>
<<button 'City 🏙️'>>
<<if $player.clothing.type == 'swim'>>
<<notify 'alert'>>You cannot go out wearing a swimsuit<</notify>>
<<else>>
<<goto 'CityMap'>>
<</if>>
<</button>>
<<if $game.time == "N" || $game.time == "LN" || $game.time == "E">>
<<goto 'BeachNight'>>
<</if>>
<<SetPlayerLocation Beach>>
</center><center>
<h1 class="ptitle">BEACH</h1>
<div id="place-head">
[img[setup.ImagePath+'/beach/beachNight/banner.png']]
</div>
<br>
<<button 'Explore 🏝️'>>
<<notify 'alert'>>Work in progress!<</notify>>
<</button>>
<<button 'Change Clothes 👙'>>
<<goto 'Wardrobe'>>
<</button>>
<<button 'City 🏙️'>>
<<if $player.clothing.type == 'swim'>>
<<notify 'alert'>>You cannot go out wearing a swimsuit<</notify>>
<<else>>
<<goto 'CityMap'>>
<</if>>
<</button>>
<<if $game.time == "N" == false && $game.time == "LN" == false && $game.time == "E" == false>>
<<goto 'Beach'>>
<</if>>
</center><center>
<h1 class="ptitle">BEACH SUNBATHE</h1>
<h3>You are sunbathing on the beach.</h3>
<div id="place-head">
[img[setup.ImagePath+'/beach/sunbathe/banner.jpg']]
</div>
<br>
<<Energy 10>>
<<AddTime '2'>>
<<button '$location.beach.title' 'Beach'>><</button>>
</center><center>
<h1 class="ptitle">BEACH SWIM</h1>
<div id="place-head">
[img[setup.ImagePath+'/beach/swim/water.gif']]
</div>
<!-- FLASH SCENE -->
<<set $game.dice to random(1,2)>>
<<if $game.dice == 1>>
<h3>You see two boys watching you and whispering..</h3>
<<if $player.corruption.level > 0>>
<<linkreplace "<<lr 'Flash them'>>">>
<<set $game.randomMedia to either("swimflash1.webp", "swimflash2.webp", "swimflash3.webp", "swimflash4.webp")>>
[img[setup.ImagePath+'/beach/swim/flash/' + $game.randomMedia]]
<<AddExb>>
<<AddArousal>>
<<set $beachScenes.SwimFlash = true>>
<</linkreplace>>
<</if>>
<<linkreplace "<<lr 'Ignore them'>>">>
<h3>You ignore them and continue swimming.</h3>
<</linkreplace>>
<</if>>
<!-- FLASH SCENE -->
<<Energy -15>>
<<AddTime '2'>>
<br>
<<button '$location.beach.title' 'Beach'>><</button>>
</center><center>
<h1 class="ptitle">CITY MAP</h1>
<div id="place-head">
<<if $game.time == "EM" || $game.time == "M" || $game.time == "A">>
[img[setup.ImagePath+'/citymap/citybanner.jpg']]
<style>
body.citymap-background {
background: url("images/citymap/citybg.webp") center center / cover no-repeat;
}
</style>
<<elseif $game.time == "E" || $game.time == "N" || $game.time == "LN">>
[img[setup.ImagePath+'/citymap/citybannernight.jpg']]
<style>
body.citymap-background {
background: url("images/citymap/citynightbg.png") center center / cover no-repeat;
}
</style>
<</if>>
</div>
<br>
<div class="gridcity-container">
<<button '$location.house.title'>>
<<EnterLocation House>>
<</button>>
<<if $Quests.Marcus.StudyWithMarcus.active == true>>
<<button '$location.marcusHouse.title'>>
<<EnterLocation MarcusHouse>>
<</button>>
<</if>>
<<button '$location.school.title'>>
<<EnterLocation School>>
<</button>>
<<button '$location.park.title'>>
<<EnterLocation Park>>
<</button>>
<<button '$location.mall.title'>>
<<EnterLocation Mall>>
<</button>>
<<button '$location.restaurant.title'>>
<<EnterLocation Restaurant>>
<</button>>
<<button '$location.club.title'>>
<<EnterLocation Club>>
<</button>>
<<button '$location.bar.title'>>
<<EnterLocation Bar>>
<</button>>
<<button '$location.gym.title'>>
<<EnterLocation Gym>>
<</button>>
<<button '$location.pool.title'>>
<<EnterLocation Pool>>
<</button>>
<<button '$location.beach.title'>>
<<EnterLocation Beach>>
<</button>>
</div>
<<SetPlayerLocation CityMap>>
</center>
<style>
.passage button {
width: 100%;
}
</style><center>
<h1 class="ptitle">CLUB</h1>
<div id="place-head">
[img[setup.ImagePath+'/club/clubbanner.png']]
</div>
<br>
<<button 'Dance 💃🏼' 'ClubDance'>><</button>>
<<button 'WC 🚾' 'ClubBathroom'>><</button>>
<<button 'City 🏙️' 'CityMap'>><</button>>
<<SetPlayerLocation Club>>
</center><center>
<h1 class="ptitle">DANCING</h1>
<h3>You dance to the music, feeling the beat and letting your body move to it.</h3>
<<set $game.randomMedia to either("clubdance1.gif", "clubdance2.webp", "clubdance3.gif", "clubdance4.gif", "clubdance5.gif", "clubdance6.gif")>>
<div id="club">
[img[setup.ImagePath+'club/dance/' + $game.randomMedia]]
</div>
<br>
<<Energy -20>>
<<set $game.dice to random (1,2)>>
<<if $player.corruption.level > 0 && $game.dice == 1>>
<h3>After some drinks and dancing, you feel a little more confident in your body. You feel like you could take on the world!</h3>
<<linkreplace "<<lr'Naughty dance'>>">>
<<AddExb>>
<<AddArousal>>
<<set $game.randomMedia to either("sexdance.gif", "sexdance1.gif", "sexdance2.gif")>>
<div id="club">
[img[setup.ImagePath+'club/dance/' + $game.randomMedia]]
</div>
<h3>When you look to the side, you see several guys drooling at you while you dance.</h3>
<<linkreplace "<<lr'Flash to them'>>">>
<<set $game.randomMedia to either("clubflash.gif", "clubflash1.gif", "clubflash2.gif", "clubflash3.webp", "clubflash4.gif")>>
<div id="club">
[img[setup.ImagePath+'club/flash/' + $game.randomMedia]]
</div>
<<set $clubScenes.ClubFlash = true>>
<</linkreplace>>
<</linkreplace>>
<br>
<</if>>
<<AddTime 1>>
<<button 'Return ↩️' 'Club'>><</button>>
</center><center>
<h1 class="ptitle">CLUB BATHROOM 🚾</h1>
<div id="place-head">
[img[setup.ImagePath+'/club/bathroom/clubbathbanner.png']]
</div>
<br>
<<button 'Cabin 🚽' 'ClubBathroomCabin'>><</button>>
<<button 'Return ↩️' 'Club'>><</button>>
</center><center>
<h1 class="ptitle">BATHROOM CABIN</h1>
[img[setup.ImagePath+'/club/bathroom/gloryhole.jpg']]
<br>
<<if $club.scenes.Gloryhole == false>>
<h3>Upon entering the cabin, you are faced with a hole in the wall that separates your cabin from the cabin next door.</h3>
<<linkreplace '<<lr "You look closer">>' t8n>>
<h3>Suddenly, someone puts their dick in the opening and you can see a hard, throbbing dick.</h3>
<<video 'club/bathroom/gloryholeEvent/gloryhole1'>>
<<speech "Strange" "Strange">>Can you help me ? I promise I will reward you<</speech>>
<h3>You feel tempted to put your hand on him, but at the same time you are afraid of who it might be on the other side.</h3>
<<if $player.corruption.level > 0>>
<<linkreplace '<<lr "You put your hand on it">>' t8n>>
<<video 'club/bathroom/gloryholeEvent/gloryhole2'>>
<h3>You put your hand in and start to masturbate him, you start to feel excited</h3>
<<speech "Strange" "Strange">>Good girl, how about you use your mouth now?<</speech>>
<h3>You feel extremely tempted to do what he asks, and without thinking much, you put his dick in your mouth</h3>
<<linkreplace '<<lr "Blow him">>' t8n>>
<<video 'club/bathroom/gloryholeEvent/gloryhole3'>>
<<speech "Strange" "Strange">>What a delicious mouth, it's very difficult to get something like that around here lately<</speech>>
<<Speech $player "Eeehh.. thank you">>
<<speech "Strange" "Strange">>I would love to be able to feel your breasts on my dick, if you do I will improve your reward even more<</speech>>
<<linkreplace '<<lr "Boobjob him">>' t8n>>
<<video 'club/bathroom/gloryholeEvent/gloryhole4'>>
<<speech "Strange" "Strange">>I'm so horny!! I can't hold it in anymore, I need to cum<</speech>>
<h3>You masturbate him again, and open your mouth for him to cum</h3>
<<linkreplace '<<lr "Finish">>' t8n>>
<<video 'club/bathroom/gloryholeEvent/gloryhole5'>>
<<speech "Strange" "Strange">>Oh.. How delicious, thank you, here is your reward<</speech>>
<h3>He gives you 50$ through the hole in the wall</h3>
<<AddMoney 50>>
<<AddCorruption>>
<<AddTime 1>>
<<set $club.scenes.Gloryhole to true>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<<Speech $player "I better get out of here">>
<h3>You are scared and prefer not to do anything</h3>
<<NotifyCorruption 1>>
<</if>>
<</linkreplace>>
<<else>>
<br>
<<linkreplace '<<lr "Gloryhole">>' t8n>>
<<linkreplace '<<lr "Blowjob">>' t8n>>
<<if $game.time == "LN">>
<h3>It's late, I should go home</h3>
<<else>>
<<set $game.randomMedia to either("blowjob1.webp", "blowjob2.webp", "blowjob3.webp", "blowjob4.webp", "blowjob5.webp")>>
<<set $game.randomMoney to random(40,60)>>
[img[setup.ImagePath+'/club/bathroom/gloryhole/' + $game.randomMedia]]
<h3>You earned $ $game.randomMoney</h3>
<<AddMoney $game.randomMoney>>
<<AddTime 1>>
<<Energy -20>>
<</if>>
<</linkreplace>>
<</linkreplace>>
<</if>>
<<button 'Return ↩️' 'Club'>><</button>>
</center><center>
<h1 class="ptitle">GYM</h1>
<div id="place-head">
[img[setup.ImagePath+'/gym/gymbanner.png']]
</div>
<br>
<<if $gym.days == 0 >>
<div>
<h2>Buy Gym Membership</h2>
<<button '1 Day - 50$'>>
<<BuyGym 50 1>>
<</button>>
<<button '7 Day - 150$'>>
<<BuyGym 150 7>>
<</button>>
<<button '30 Day - 300$'>>
<<BuyGym 300 30>>
<</button>>
<br><br>
</div>
<<else>>
<<button 'Workout 🏋🏻♀️'>>
<<if $player.clothing.type == 'fitness'>>
<<goto 'Workout'>>
<<else>>
<<notify 'fitness'>>You aren't wearing gym clothes!<</notify>>
<</if>>
<</button>>
<<button 'Changing Room 👟' 'Wardrobe'>>
<</button>>
<</if>>
<<button 'City 🏙️' 'CityMap'>><</button>>
<<SetPlayerLocation Gym>>
</center><center>
<h1 class="ptitle">FLASHING</h1>
<b><p class ="pbody">You feel excited and do a little exhibitionism at the gym</p></b>
<<set $game.randomMedia to either("workoutflash.webp", "workoutflash1.webp", "workoutflash2.webp", "workoutflash3.webp", "workoutflash4.webp", "workoutflash5.webp", "workoutEvent.webp")>>
<div class='gym'>
[img[setup.ImagePath+'/gym/flash/' + $game.randomMedia]]
<<if $game.randomMedia == "workoutEvent.webp">>
<<linkreplace "<<lr 'Go to treadmill'>>">>
<br><br>
[img[setup.ImagePath+'/gym/flash/workoutEvent1.webp']]
<<linkreplace "<<lr 'Take panties off'>>" t8n>>
<h3>You take your panties off!</h3>
[img[setup.ImagePath+'/gym/flash/workoutEvent2.webp']]
<</linkreplace>>
<</linkreplace>>
<</if>>
</div>
<<AddExb>>
<<AddArousal>>
<br>
<<button 'Return ↩️' 'Gym'>><</button>>
</center><center>
<h1 class="ptitle">WORKOUT</h1>
<b><p class ="pbody">The personal trainer from the gym comes to help you with the exercise</p></b>
<<speech "Personal" "Personal Trainer">>Come here gorgeous, suck my cock<</speech>>
<<speech "Player" "$player.name">>Let me take my jacket off<</speech>>
<<video 'gym/sex/personalsex1' 'webm'>>
<br>
<<linkreplace '<<lr "Blow him">>' t8n>>
<<speech "Personal" "Personal Trainer">>Mhmmm.. Keep going bitch, I'm going to fuck you soon<</speech>>
<<video 'gym/sex/personalsex2' 'webm'>>
<<speech "Player" "$player.name">>You wanna fuck my little pussy ?<</speech>>
<<speech "Personal" "Personal Trainer">>I want you naked, take off your clothes!<</speech>>
<<linkreplace '<<lr "Take clothes off">>' t8n>>
<<video 'gym/sex/personalsex3' 'webm'>>
<<speech "Personal" "Personal Trainer">>Come here and ride on me, let me feel your pussy<</speech>>
<<linkreplace '<<lr "Ride him">>' t8n>>
<<video 'gym/sex/personalsex4' 'webm'>>
<<speech "Personal" "Personal Trainer">>I'm so hard, let me stick my cock on you<</speech>>
<<linkreplace '<<lr "Put inside">>' t8n>>
<<video 'gym/sex/personalsex5' 'webm'>>
<<speech "Personal" "Personal Trainer">>Harder bitch, harder!!<</speech>>
<<speech "Player" "$player.name">>Feel's so nice :)<</speech>>
<<linkreplace '<<lr "Sit on him">>' t8n>>
<<speech "Personal" "Personal Trainer">>Common girl, I know you can do better<</speech>>
<<video 'gym/sex/personalsex6' 'webm'>>
<<speech "Personal" "Personal Trainer">>Get up and get on all fours bitch<</speech>>
<<linkreplace '<<lr "Get on all fours">>' t8n>>
<<video 'gym/sex/personalsex7' 'webm'>>
<<speech "Personal" "Personal Trainer">>You have a such gorgeous ass<</speech>>
<<speech "Player" "$player.name">>Close your mouth and fuck me harder idiot<</speech>>
<<linkreplace '<<lr "Keep going">>' t8n>>
<<video 'gym/sex/personalsex8' 'webm'>>
<<speech "Personal" "Personal Trainer">>Hang, I'm going to fuck you real hard<</speech>>
<<linkreplace '<<lr "Hang on metal bar">>' t8n>>
<<video 'gym/sex/personalsex9' 'webm'>>
<<speech "Player" "$player.name">>Let's finish this, lie down!<</speech>>
<<speech "Personal" "Personal Trainer">>Ok babe<</speech>>
<<linkreplace '<<lr "Ride him">>' t8n>>
<<video 'gym/sex/personalsex10' 'webm'>>
<<speech "Personal" "Personal Trainer">>Ohh fuck, I'm cumming!!!<</speech>>
<<speech "Player" "$player.name">>Cum on my face<</speech>>
<<linkreplace '<<lr "Cum!!">>' t8n>>
<<speech "Personal" "Personal Trainer">>Ohhhhhhh..!!!!!!<</speech>>
<<video 'gym/sex/personalsex11' 'webm'>>
<<speech "Personal" "Personal Trainer">>Leave it clean babe<</speech>>
<<linkreplace '<<lr "Clean his cock">>' t8n>>
<<video 'gym/sex/personalsex12' 'webm'>>
<<speech "Personal" "Personal Trainer">>Thanks, I need to go, let do this again soon<</speech>>
<<set $gym.scenes.GymPersonalSex to true>>
<<AddCorruption>>
<<AddArousal 0>>
<<Energy -10>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<br>
<<button 'Return ↩️' 'Gym'>><</button>>
</center><center>
<h1 class="ptitle">WORKOUT</h1>
<b><p class ="pbody">You spend some time working out.</p></b>
<<set $game.dice to random(1,2)>>
<<if $player.clothing.name == 'Fitness Clothes 3'>>
<<set $game.randomMedia to either("sexyworkout.gif", "sexyworkout1.webp", "sexyworkout2.webp", "sexyworkout3.webp", "sexyworkout4.webp", "sexyworkout5.gif")>>
<div class='gym'>
[img[setup.ImagePath+'/gym/workout/' + $game.randomMedia]]
</div>
<<if $game.dice == 1 && $player.corruption.level > 1>>
<<speech "Personal" "Personal Trainer">>I'm so hard for you, lets have fun<</speech>>
<<button 'Accept' 'GymSex'>><</button>>
<</if>>
<<else>>
<<set $game.randomMedia to either("workout.gif", "workout1.gif", "workout2.gif", "workout3.gif", "workout4.gif")>>
<div class='gym'>
[img[setup.ImagePath+'/gym/workout/' + $game.randomMedia]]
</div>
<<if $game.dice == 1>>
<<speech "Personal" "Personal Trainer">>Hey, need some help ?<</speech>>
<<button 'Accept help' 'WorkoutHelp'>><</button>>
<</if>>
<</if>>
<<AddFit>>
<<AddTime 2>>
<<Energy -10>>
<br>
<<button 'Flash 🫦'>>
<<if $player.corruption.level < 1>>
<<NotifyCorruption 1>>
<<else>>
<<goto 'GymFlash'>>
<</if>>
<</button>>
<<button 'Return ↩️' 'Gym'>><</button>>
</center><center>
<h1 class="ptitle">PERSONAL HELP</h1>
<b><p class ="pbody">The coach helps you with your exercise</p></b>
<<set $game.randomMedia to either("WorkoutHelp.webp")>>
<div class='gym'>
[img[setup.ImagePath+'/gym/workout/' + $game.randomMedia]]
</div>
<<speech "Personal" "Personal Mind">>*I'll be fucking this bitch soon*<</speech>>
<br>
<<button 'Return ↩️' 'Gym'>><</button>>
</center><center>
<h1 class="ptitle">MALL</h1>
<div id="place-head">
[img[setup.ImagePath+'/shopping/shoppingbanner.webp']]
</div>
<br>
<<button 'Clothing Store 👚' 'ClothingStore'>><</button>>
<<button 'Tech Store 💻' 'TechStore'>><</button>>
<<if $player.corruption.level > 0>>
<<button 'Flash ❤️🔥' 'MallFlash'>><</button>>
<</if>>
<<button 'City 🏙️' 'CityMap'>><</button>>
<<SetPlayerLocation Mall>>
</center><center>
<h1 class="ptitle">MALL FLASH</h1>
<h3>You expose yourself in public at the mall</h3>
<<set $game.randomMedia to either("flash1.webp", "flash2.webp", "flash3.webp", "flash4.webp","flash5.webp","flash6.gif")>>
<div class='shower'>
[img[setup.ImagePath+'/shopping/flash/' + $game.randomMedia]]
</div>
<<AddExb>>
<<AddArousal>>
<<AddTime '1'>>
<<set $mallScenes.MallFlash = true>>
<<button 'Return ↩️' 'Mall'>><</button>>
</center><center>
<h1 class="ptitle">CASUAL CLOTHES</h1>
<div class="gridclothingstore-container">
<<if $clothes.casual1.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/casual/casual1.webp']]
<div class= "gridclothingstore-text">+ $clothes.casual1.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.casual1.corruption corruption</div>
<<button 'Buy ($clothes.casual1.price $)'>>
<<BuyClothes $clothes.casual1>>
<</button>>
</div>
<</if>>
<<if $clothes.casual2.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/casual/casual2.webp']]
<div class= "gridclothingstore-text">+ $clothes.casual2.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.casual2.corruption corruption</div>
<<button 'Buy ($clothes.casual2.price $)'>>
<<BuyClothes $clothes.casual2>>
<</button>>
</div>
<</if>>
<<if $clothes.casual3.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/casual/casual3.webp']]
<div class= "gridclothingstore-text">+ $clothes.casual3.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.casual3.corruption corruption</div>
<<button 'Buy ($clothes.casual3.price $)'>>
<<BuyClothes $clothes.casual3>>
<</button>>
</div>
<</if>>
<<if $clothes.casual4.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/casual/casual4.webp']]
<div class= "gridclothingstore-text">+ $clothes.casual4.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.casual4.corruption corruption</div>
<<button 'Buy ($clothes.casual4.price $)'>>
<<BuyClothes $clothes.casual4>>
<</button>>
</div>
<</if>>
</div>
<br>
<<button 'Return 👚' 'ClothingStore'>><</button>>
</center><center>
<h1 class="ptitle">CLOTHING STORE</h1>
<div id="place-head">
[img[setup.ImagePath+'/shopping/clothingstore/clothingstorebanner.jpg']]
</div>
<br>
<<button 'Casual Clothes 👗' 'CasualClothes'>><</button>>
<<button 'School Clothes 👔' 'SchoolClothes'>><</button>>
<<button 'Fitness Clothes 👟' 'FitnessClothes'>><</button>>
<<button 'Swim Clothes 👙' 'SwimClothes'>><</button>>
<<button 'Mall 🏬' 'Mall'>><</button>>
</center><center>
<h1 class="ptitle">FITNESS CLOTHES</h1>
<<message "Fitness Clothing">>
<div class="gridclothingstore-container">
<<if $clothes.fitness1.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/fitness/fitness1.webp']]
<div class= "gridclothingstore-text">+ $clothes.fitness1.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.fitness1.corruption corruption</div>
<<button 'Buy ($clothes.fitness1.price $)'>>
<<BuyClothes $clothes.fitness1>>
<</button>>
</div>
<</if>>
<<if $clothes.fitness2.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/fitness/fitness2.webp']]
<div class= "gridclothingstore-text">+ $clothes.fitness2.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.fitness2.corruption corruption</div>
<<button 'Buy ($clothes.fitness2.price $)'>>
<<BuyClothes $clothes.fitness2>>
<</button>>
</div>
<</if>>
<<if $clothes.fitness3.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/fitness/fitness3.webp']]
<div class= "gridclothingstore-text">+ $clothes.fitness3.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.fitness3.corruption corruption</div>
<<button 'Buy ($clothes.fitness3.price $)'>>
<<BuyClothes $clothes.fitness3>>
<</button>>
</div>
<</if>>
<<if $clothes.fitness4.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/fitness/fitness4.webp']]
<div class= "gridclothingstore-text">+ $clothes.fitness4.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.fitness4.corruption corruption</div>
<<button 'Buy ($clothes.fitness4.price $)'>>
<<BuyClothes $clothes.fitness4>>
<</button>>
</div>
<</if>>
</div>
<br>
<<button 'Return 👚' 'ClothingStore'>><</button>>
</center><center>
<h1 class="ptitle">SCHOOL CLOTHES</h1>
<div class="gridclothingstore-container">
<<if $clothes.school1.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/school/school1.webp']]
<div class= "gridclothingstore-text">+ $clothes.school1.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.school1.corruption corruption</div>
<<button 'Buy ($clothes.school1.price $)'>>
<<BuyClothes $clothes.school1>>
<</button>>
</div>
<</if>>
<<if $clothes.school2.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/school/school2.webp']]
<div class= "gridclothingstore-text">+ $clothes.school2.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.school2.corruption corruption</div>
<<button 'Buy ($clothes.school2.price $)'>>
<<BuyClothes $clothes.school2>>
<</button>>
</div>
<</if>>
<<if $clothes.school3.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/school/school3.webp']]
<div class= "gridclothingstore-text">+ $clothes.school3.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.school3.corruption corruption</div>
<<button 'Buy ($clothes.school3.price $)'>>
<<BuyClothes $clothes.school3>>
<</button>>
</div>
<</if>>
<<if $clothes.school4.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/school/school4.webp']]
<div class= "gridclothingstore-text">+ $clothes.school4.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.school4.corruption corruption</div>
<<button 'Buy ($clothes.school4.price $)'>>
<<BuyClothes $clothes.school4>>
<</button>>
</div>
<</if>>
<<if $clothes.cheerleader.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/school/cheerleader.webp']]
<div class= "gridclothingstore-text">+ $clothes.cheerleader.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.cheerleader.corruption corruption</div>
<<button 'Buy ($clothes.cheerleader.price $)'>>
<<BuyClothes $clothes.cheerleader>>
<</button>>
</div>
<</if>>
</div>
<br>
<<button 'Return 👚' 'ClothingStore'>><</button>>
</center><center>
<h1 class="ptitle">swim CLOTHES</h1>
<div class="gridclothingstore-container">
<<if $clothes.swim1.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/swim/swim1.webp']]
<div class= "gridclothingstore-text">+ $clothes.swim1.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.swim1.corruption corruption</div>
<<button 'Buy ($clothes.swim1.price $)'>>
<<BuyClothes $clothes.swim1>>
<</button>>
</div>
<</if>>
<<if $clothes.swim2.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/swim/swim2.webp']]
<div class= "gridclothingstore-text">+ $clothes.swim2.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.swim2.corruption corruption</div>
<<button 'Buy ($clothes.swim2.price $)'>>
<<BuyClothes $clothes.swim2>>
<</button>>
</div>
<</if>>
<<if $clothes.swim3.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/swim/swim3.webp']]
<div class= "gridclothingstore-text">+ $clothes.swim3.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.swim3.corruption corruption</div>
<<button 'Buy ($clothes.swim3.price $)'>>
<<BuyClothes $clothes.swim3>>
<</button>>
</div>
<</if>>
<<if $clothes.swim4.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/swim/swim4.webp']]
<div class= "gridclothingstore-text">+ $clothes.swim4.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.swim4.corruption corruption</div>
<<button 'Buy ($clothes.swim4.price $)'>>
<<BuyClothes $clothes.swim4>>
<</button>>
</div>
<</if>>
<<if $clothes.swim5.purchased == false>>
<div>
[img[setup.ImagePath+'/player/clothes/swim/swim5.webp']]
<div class= "gridclothingstore-text">+ $clothes.swim5.beauty beauty</div>
<div class= "gridclothingstore-text">Need $clothes.swim5.corruption corruption</div>
<<button 'Buy ($clothes.swim5.price $)'>>
<<BuyClothes $clothes.swim5>>
<</button>>
</div>
<</if>>
</div>
<br>
<<button 'Return 👚' 'ClothingStore'>><</button>>
</center><center>
<h1 class="ptitle">TECH STORE</h1>
<div id="place-head">
[img[setup.ImagePath+'/shopping/techstore/techbanner.jpg']]
</div>
<br>
<div class="gridclothingstore-container">
<<if $items.laptop.purchased == false>>
<div>
[img[setup.ImagePath+'/player/items/laptop.webp']]
<div>
<<button 'Buy ($items.laptop.price $)'>>
<<Buy $items.laptop>>
<</button>>
</div>
</div>
<</if>>
<<if $items.phone.purchased == false>>
<div>
[img[setup.ImagePath+'/player/items/phone.webp']]
<div>
<<button 'Buy ($items.phone.price $)'>>
<<Buy $items.phone>>
<</button>>
</div>
<</if>>
<<if $items.webcam.purchased == false>>
<div>
[img[setup.ImagePath+'/player/items/webcam.webp']]
<div>
<<button 'Buy ($items.webcam.price $)'>>
<<Buy $items.webcam>>
<</button>>
</div>
</div>
<</if>>
</div>
<br>
<<button 'Mall 🏬' 'Mall'>><</button>>
</center><center>
<h1 class="ptitle">PARK</h1>
<div id="place-head">
[img[setup.ImagePath+'/park/parkbanner.jpg']]
</div>
<br>
<<button 'Go Jog 🏃🏼'>>
<<if $player.energy <= 10>>
<<notify 'alert'>>You are too tired to jog!<</notify>>
<</if>>
<<if $player.clothing.type != "fitness">>
<<notify 'alert'>>You are not wearing fitness clothes to jog!<</notify>>
<<else>>
<<goto 'ParkJog'>>
<</if>>
<</button>>
<<button 'Change Clothes 👟' 'Wardrobe'>><</button>>
<<button 'City 🏙️' 'CityMap'>><</button>>
<<if $game.time == "N" || $game.time == "LN" || $game.time == "E">>
<<goto 'ParkLateNight'>>
<</if>>
<<SetPlayerLocation Park>>
</center>
/*QUESTS*/<center>
<h1 class="ptitle">JOGGING</h1>
<div id="place-head">
[img[setup.ImagePath+'/park/jogging.gif']]
</div>
<<set $game.randomMedia to either("flashing1.webp", "flashing2.webp", "flashing3.webp", "flashing4.webp", "flashing5.webp")>>
<<set $game.dice to random(1,3)>>
<br>
<<if $game.dice == 1>>
<h3>You notice a man looking at your body while you run</h3>
<<if $player.corruption.level == 0 >>
<<linkreplace "<<lr 'Ignore him '>>" t8n>>
<<speech "Player" "$player.name">>Leave me alone you pervert!<</speech>>
<</linkreplace>>
<<elseif $player.corruption.level > 0 >>
<<linkreplace "<<lr 'Flash him 🫦'>>" t8n>>
[img[setup.ImagePath+'/park/' + $game.randomMedia]]
<<speech "Strange" "Strange">>Nice body babe!<</speech>>
<<AddExb>>
<<AddArousal>>
<<set $parkScenes.JoggingFlash to true>>
<</linkreplace>>
<</if>>
<</if>>
<<Energy -15>>
<<AddFit>>
<<AddTime '2'>>
<<if $game.time == "LN" == true>>
<<button 'Return ↩️' 'ParkLateNight'>><</button>>
<<else>>
<<button 'Return ↩️' 'Park'>><</button>>
<</if>>
</center><center>
<h1 class="ptitle">LATE NIGHT AT PARK</h1>
<div id="place-head">
[img[setup.ImagePath+'/park/parklatenight/parklnbanner.webp']]
</div>
<br>
<<button 'Go Jog 🏃🏼'>>
<<if $player.energy <= 10>>
<<notify 'alert'>>You are too tired to jog!<</notify>>
<</if>>
<<if $player.clothing.type != "fitness">>
<<notify 'alert'>>You are not wearing fitness clothes to jog!<</notify>>
<<else>>
<<goto 'ParkLateNightJog'>>
<</if>>
<</button>>
<<button 'Change Clothes 👟' 'Wardrobe'>><</button>>
<<button 'City 🏙️' 'CityMap'>><</button>>
<<SetPlayerLocation ParkLateNight>>
</center><center>
<h1 class="ptitle">LATE NIGHT JOGGING</h1>
<div id="place-head">
[img[setup.ImagePath+'/park/parklatenight/latenightjog.gif']]
</div>
<<Energy -10>>
<<set $game.dice to random(1,3)>>
<<if $game.dice == 1>>
<h4 class="ptitle">You see someone following you and start running faster</h4>
[img[setup.ImagePath+'/park/parklatenight/escape.gif']]
<br><br>
<<linkreplace "<<lr 'Try to escape'>>" t8n>>
<<set $game.dice to random(1,2)>>
<<if $game.dice == 1>>
<h4 class="ptitle"><span class="drunk">While trying to escape, you feel a strong blow to your head and faint.</span></h4>
<<timed 3s t8n>> <<goto 'ParkLateNightRape'>><</timed>>
<<else>>
<h4 class="ptitle">You manage to lose him and go straight home</h4>
<<AddFit>>
<<button 'Go home 🏠' 'Hallway'>><</button>>
<</if>>
<</linkreplace>>
<<else>>
<br>
<<button 'Return ↩️' 'ParkLateNight'>><</button>>
<</if>>
</center><center>
<h1 class="ptitle">Strange Guy</h1>
<div id="place-head">
</div>
<<linkreplace "<<lr 'Wake up'>>" t8n>>
<h4 class="ptitle">After passing out for a while, you finally wake up, with your head hurting and tied up.</h4>
<<video 'park/parklatenight/strangeforced1'>>
<br>
<<linkreplace "<<lr 'Where am I ?'>>" t8n>>
<h4 class="ptitle">A strange man approaches you and starts touching your body</h4>
<<video 'park/parklatenight/strangeforced2'>>
<<speech 'Player' '$player.name'>>Mhmmmmmm...<</speech>>
<<speech 'Strange' 'Strange Guy'>>Calm down sweetie, there's no point trying to run away.<</speech>>
<br>
<<linkreplace "<<lr 'He turns your back'>>" t8n>>
<<video 'park/parklatenight/strangeforced3'>>
<<speech 'Strange' 'Strange Guy'>>You have a very hot ass, I can't waste this opportunity.<</speech>>
<br>
<<linkreplace "<<lr 'Continue'>>" t8n>>
<h4 class="ptitle">After observing your body, he starts giving you whips while enjoying every moment.</h4>
<<video 'park/parklatenight/strangeforced4'>>
<br>
<<linkreplace "<<lr 'On fours'>>" t8n>>
<h4 class="ptitle">He unties you and takes you to a tree, where he ties you again and puts you on all fours. He takes his dick out and puts it inside your mouth, making you swallow it whole.</h4>
<<video 'park/parklatenight/strangeforced5'>>
<<speech 'Strange' 'Strange Guy'>>Be a good girl and suck my dick<</speech>>
<br>
<<linkreplace "<<lr 'Suck it'>>" t8n>>
<h4 class="ptitle">He continues to put his dick in your mouth, but now putting it all the way in, making you choke.</h4>
<<video 'park/parklatenight/strangeforced6'>>
<<speech 'Strange' 'Strange Guy'>>Be a good girl and suck my dick<</speech>>
<br>
<<linkreplace "<<lr 'Fuck me'>>" t8n>>
<h4 class="ptitle">After enjoying your mouth a lot, he goes behind you and puts his entire dick in your pussy, and starts fucking you really hard.</h4>
<<video 'park/parklatenight/strangeforced7'>>
<<speech 'Strange' 'Strange Guy'>>Oh, you're so hot<</speech>>
<br>
<<linkreplace "<<lr 'Let me go'>>" t8n>>
<h4 class="ptitle">After fucking you hard, he knocks you out and you black out again. You wake up scared with a bucket of warm water thrown under your body, you realize that you are tied up again in the same place as before.</h4>
<<video 'park/parklatenight/strangeforced8'>>
<h4 class="ptitle">After he cleans you up, you faint again</h4>
<<AddCorruption>>
<<AddArousal 0>>
<<set $park.scenes.RapeAtPark to true>>
<<Energy 0>>
<<button 'You passed out' 'ParkLateNight'>><</button>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
</center><center>
<h1 class="ptitle">PUBLIC POOL</h1>
<div id="place-head">
[img[setup.ImagePath+'/pool/poolbanner.jpg']]
</div>
<br>
<<button 'Swim 🏊🏼♀️'>>
<<if $player.clothing.type == 'swim'>>
<<goto 'PoolSwim'>>
<<else>>
<<notify 'fitness'>>You aren't wearing a swimsuit!<</notify>>
<</if>>
<</button>>
<<button 'Change Clothes 👙' 'Wardrobe'>>
<</button>>
<<button 'City 🏙️'>>
<<if $player.clothing.type == 'swim'>>
<<notify 'alert'>>You cannot go out wearing a swimsuit<</notify>>
<<else>>
<<goto 'CityMap'>>
<</if>>
<</button>>
<<SetPlayerLocation Pool>>
</center><center>
<h1 class="ptitle">SWIM</h1>
<h3>You are swimming in the pool. </h3>
<<set $game.randomMedia to either("swim1.gif", "swim2.gif")>>
[img[setup.ImagePath+'/pool/swim/' + $game.randomMedia]]
<br><br>
<<AddTime 1>>
<<AddFit>>
<<Energy -15>>
<<button 'Return ↩️' 'Pool'>><</button>>
<<SetPlayerLocation Pool>>
</center><center>
<h1 class="ptitle">HALLWAY</h1>
<div id="place-head">
[img[setup.ImagePath+'/house/hallway/hallway.png']]
</div>
<br>
<<button "My bedroom 🛏️" "Bedroom">><</button>>
<<button "Bathroom 🚾" "Bathroom">><</button>>
<<button "Kitchen 🍽️" "Kitchen">><</button>>
<<button "$brother.relationship's Bedroom 👨🏻🦱" "BrotherRoom">><</button>>
<<button "$dad.relationship's Bedroom 🧓🏻" "DadBedroom">><</button>>
<<button "Living Room 🛋️" "LivingRoom">><</button>>
<<button "City 🏙️">>
<<if $player.clothing.type == 'naked' && $player.corruption.level < 4>>
<<NotifyCorruption 4>>
<<elseif $player.clothing.type == 'underwear' && $player.corruption.level < 3>>>
<<NotifyCorruption 3>>
<<else>>
<<goto 'CityMap'>>
<</if>>
<</button>>
<<SetPlayerLocation House>>
</center><center>
<h1 class="ptitle">BATHROOM</h1>
<div id="place-head">
[img[setup.ImagePath+'/house/bathroom/bathroom.png']]
</div>
<br>
<<if $game.time == "LN">>
<<button '❌ Too late to shower ❌'>><</button>>
<<else>>
<<button 'Shower 🚿' 'BathroomShower'>><</button>>
<</if>>
<<button 'Mirror 🪞' 'BathroomMirror'>><</button>>
<<button 'Hallway 🚪' 'Hallway'>><</button>>
</center><center>
<h1 class="ptitle">BATHROOM FLASHING</h1>
<<message 'Just as you were about to take off your clothes, you realize someone is spying on you 👀'>>
<br>
<<if $player.corruption.level > 0>>
<<linkreplace "<<lr 'Flash to him 📸'>>" t8n>>
<<set $game.randomMedia to either("bathroomflashing1.webp", "bathroomflashing2.webp", "bathroomflashing3.webp", "bathroomflashing4.gif")>>
[img[setup.ImagePath+'/house/bathroom/' + $game.randomMedia]]
<<message ' You decide to give the spy a little show ❤️🔥! '>>
<<notify 'corruption'>>$dad.relationship corruption +1<</notify>>
<br>
<<button 'Go to shower 🚿' 'BathroomShower'>><</button>>
<<AddDadCorruption>>
<<AddExb>>
<<AddArousal>>
<<set $dad.scenes.ShowerFlash to true>>
<</linkreplace>>
<<else>>
<<linkreplace "<<lr 'Close the door'>>" t8n>>
[img[setup.ImagePath+'/house/bathroom/closedoor.gif']]
<<message 'You close the door and go to your shower. (Need 15+ corruption to unlock)'>>
<br>
<<button 'Go to shower 🚿' 'BathroomShower'>><</button>>
<</linkreplace>>
<</if>>
</center><center>
<h1 class="ptitle">You watch yourself in the mirror 🪞</h1>
<div id="place-head">
</div>
<<set $game.randomMedia to either("mirror.webp")>>
[img[setup.ImagePath+'/house/bathroom/mirror/' + $game.randomMedia]]
<br>
<<button 'Apply make up 💄' 'BathroomMirrorMakeUp'>><</button>>
<<button 'Bathroom 🚾' 'Bathroom'>><</button>>
</center><center>
<h1 class="ptitle">You apply some make up 💄</h1>
<div id="place-head">
</div>
<<set $game.randomMedia to either("makeup.gif", "makeup1.gif", "makeup2.gif")>>
[img[setup.ImagePath+'/house/bathroom/mirror/' + $game.randomMedia]]
<br>
<<button 'Bathroom 🚾'>>
<<goto 'Bathroom'>>
<</button>>
</center><center>
<h1 class="ptitle">You take a shower and wash all your body! 🚿</h1>
<div id="place-head">
</div>
<<set $game.dice to random(1,2)>>
<<if $game.dice == 1 && $dad.arousal > 0 && $dad.corruption > 0 && previous() != "BathroomFlashScene">>
<<goto "BathroomFlashScene">>
<</if>>
<<set $game.randomMedia to either("shower.webp", "shower1.webp", "shower2.webp", "shower3.webp", "shower4.webp", "shower5.webp")>>
<div class='shower'>
[img[setup.ImagePath+'/house/bathroom/shower/' + $game.randomMedia]]
</div>
<br>
<<button 'Masturbate ❤️🔥'>>
<<if $player.arousal > 0>>
<<goto 'BathroomShowerMasturbate'>>
<<else>>
<<notify 'corruption'>>You are not aroused enough to masturbate<</notify>>
<</if>>
<</button>>
<<button 'Bathroom 🚾' 'Bathroom'>><</button>>
<<Energy 10>>
<<AddTime 1>>
</center><center>
<h1 class="ptitle">MASTURBATE 🚿</h1>
<div id="place-head">
</div>
<h3 class="ptitle">You masturbate yourself. Corruption increased!</h3>
<<set $game.randomMedia to either("showermasturbate1.webp", "showermasturbate2.webp", "showermasturbate3.webp")>>
<div class='showermast'>
[img[setup.ImagePath+'/house/bathroom/shower/' + $game.randomMedia]]
</div>
<br>
<<button 'Bathroom 🚾' 'Bathroom'>><</button>>
<<AddCorruption>>
<<AddArousal 0>>
</center><center>
<h1 class="ptitle">YOUR BEDROOM</h1>
<div id="place-head">
[img[setup.ImagePath+'/house/bedroom/bedroom.png']]
</div>
<<if previous() == "Hallway" && ($dad.arousal > 0 || $brother.arousal > 0)>>
<<goto 'BedroomGrope'>>
<</if>>
<br>
<!-- STUDY -->
<<if $game.time == "LN">>
<<button '❌ Too late to study ❌'>><</button>>
<<elseif $player.energy <= 0>>
<<button '🪫 Too tired to study 🪫'>><</button>>
<<else>>
<<button 'Study 📖' 'BedroomStudy'>><</button>>
<<if $school.homework == false && $game.days > 1>>
<<button 'Do homework 📖'>>
<<set $school.homework = true>>
<<goto 'Bedroom'>>
<<notify 'intelligence'>>You do your homework!<</notify>>
<</button>>
<</if>>
<</if>>
<!-- SLEEP -->
<<if $game.time == "N" || $game.time == "LN">>
<<button 'Sleep 💤' 'BedroomSleep'>><</button>>
<<else>>
<<button '❌ Too early to sleep ❌'>><</button>>
<</if>>
<!-- NAP -->
<<button 'Nap 💤'>>
<<Energy 15>>
<<if $game.time == "LN">>
<<goto 'BedroomSleep'>>
<<else>>
<<AddTime 2>>
<<notify 'alert'>>You take a nap for an hour. You feel a little more rested.<</notify>>
<<run Engine.show()>>
<</if>>
<</button>>
<!-- WARDROBE -->
<<button 'Wardrobe 👚' 'Wardrobe'>><</button>>
<!-- LAPTOP -->
<<if $items.laptop.purchased == true>>
<<button 'Laptop 💻' 'Laptop'>><</button>>
<</if>>
<!-- PHONE -->
<<if $items.phone.purchased == true>>
<<button 'Phone 📱' 'Phone'>><</button>>
<</if>>
<!-- HALLWAY -->
<<button 'Hallway 🚪'>>
<<if $player.clothing.type == 'naked' && $player.corruption.level < 2>>
<<NotifyCorruption 2>>
<<elseif $player.clothing.type == 'underwear' && $player.corruption.level < 1>>>
<<NotifyCorruption 1>>
<<elseif $player.energy == 0>>
<<notify 'corruption'>>You need to sleep!<</notify>>
<<else>>
<<goto 'Hallway'>>
<</if>>
<</button>>
</center><center>
<h1 class="ptitle">GROPE</h1>
<<set $game.dice to random(1,5)>>
<<set $game.randomMedia to either("dad_groping1.gif", "dad_groping2.webp", "dad_groping3.webp", "dad_groping4.webp", "dad_groping5.webp")>>
<<if $game.dice === 1 && $dad.arousal > 0>>
[img[setup.ImagePath+'/house/bedroom/' + $game.randomMedia]]
<<speech "Dad" "$dad.relationship">>You are looking gorgeous today sweetheart!<</speech>>
<<notify 'corruption'>>$dad.relationship Corruption increased<</notify>>
<<message "Your $dad.relationship <b>groped</b> you!">>
<<AddDadCorruption>>
<<set $dad.scenes.BedroomGrope to true>>
<<AddArousal>>
<<AddCorruption>>
<<elseif $game.dice === 2 && $brother.arousal > 0>>
[img[setup.ImagePath+'/house/bedroom/' + $game.randomMedia]]
<<speech "Brother" "$brother.relationship">>Hey sister, where are you going ?<</speech>>
<<notify 'corruption'>>$brother.relationship Corruption increased<</notify>>
<<message 'Your $brother.relationship <b>groped</b> you!'>>
<<AddBrotherCorruption>>
<<set $brother.scenes.BedroomGrope to true>>
<<AddArousal>>
<<AddCorruption>>
<<else>>
<<goto 'Bedroom'>>
<</if>>
<<UpdateBar>>
<br>
<<button 'Return ↩️' 'Bedroom'>><</button>>
</center><center>
<h1 class="ptitle">SLEEP</h1>
<div id="place-head">
<<set $game.dice to random(1,4)>>
<!-- DAD SCENE -->
<<if $dad.arousal > 0 && $dad.corruption > 0 && previous() isnot "BedroomSleepDadScene" && $game.dice == 1>>
<<goto 'BedroomSleepDadScene'>>
<</if>>
<<set $game.randomMedia to either("sleep.gif", "sleep1.gif")>>
[img[setup.ImagePath+'/house/bedroom/sleep/' + $game.randomMedia]]
</div>
<br>
<<button 'Wake up' 'Bedroom'>><</button>>
<!-- NEW DAY -->
<<NewDay>>
</center><center>
<h1 class="ptitle">$dad.relationship SLEEP SCENE</h1>
<div id="place-head">
</div>
<!-- DAD SLEEP SCENE PT 1 -->
<h3>While you are sleeping, your father comes into your room to see if everything is okay. For a moment his lust gets louder and he puts his dick out of his shorts and takes off the blanket.</h3>
<<video 'house/bedroom/sleep/dad_sleepscene1'>>
<h3>He climbs on top of your bed and starts caressing your ass.</h3>
<<linkreplace "<<lr 'He take off your shorts'>>">> <!-- PT 1.2 -->
<<speech "Dad" "$dad.relationship Mind">>I need to see her ass, it feels soo good..<</speech>>
<<video 'house/bedroom/sleep/dad_sleepscene2'>>
<br>
<<linkreplace "<<lr 'He starts to masturbate himself'>>">> <!-- PT 1.3 -->
<h3>Your $dad.relationship starts masturbating while he rubs your ass.</h3>
<<video 'house/bedroom/sleep/dad_sleepscene3'>>
<<speech "Dad" "$dad.relationship Mind">>Holy fuck, she is so fucking hot<</speech>>
<!-- DAD SLEEP SCENE PT 2 -->
<<if $dad.arousal > 1 && $dad.corruption > 4>>
<<linkreplace "<<lr 'He fondle your breasts'>>">> <!-- PT 2.1 -->
<h3>While your father masturbates, he starts fondling your breasts</h3>
<<video 'house/bedroom/sleep/dad_sleepscene4'>>
<br>
<<linkreplace "<<lr 'He take your shirt off'>>">> <!-- PT 2.2 -->
<h3>After a while, he take your shirt off</h3>
<<video 'house/bedroom/sleep/dad_sleepscene5'>>
<br>
<<linkreplace "<<lr 'He suck your tits'>>">> <!-- PT 2.3 -->
<h3>After removing your shirt, he starts to suck your tits</h3>
<<video 'house/bedroom/sleep/dad_sleepscene6'>>
<br>
<!-- DAD SLEEP SCENE PT 3 -->
<<if $dad.arousal > 2 && $dad.corruption > 14>>
<<set $dad.arousal to 0>>
<<set $dad.scenes.BedroomSleepDadScene to true>>
<<linkreplace "<<lr 'He put his dick inside you pussy'>>">> <!-- PT 3.1 -->
<h3>He opens your legs and puts his dick in your pussy, and you wake up..</h3>
<<video 'house/bedroom/sleep/dad_sleepscene7'>>
<<speech "Player" "$player.name">>Dad ? What are you doing in my room? And why I'm naked ??<</speech>>
<<speech "Dad" "$dad.relationship">>Shh.. You can go back to sleep honey, daddy's just relieving himself a little<</speech>>
<<linkreplace "<<lr 'He fucks you'>>">> <!-- PT 3.2 -->
<h3>He start to fuck you pussy</h3>
<<video 'house/bedroom/sleep/dad_sleepscene8'>>
<br>
<<linkreplace "<<lr 'Ask him to stop'>>">> <!-- PT 3.3 -->
<h3>You try to ask him to stop but he puts his hand over your mouth.</h3>
<<video 'house/bedroom/sleep/dad_sleepscene9'>>
<<speech "Dad" "$dad.relationship">>Shh.. We don't want to make noise, your $brother.relationship can wake up<</speech>>
<<linkreplace "<<lr 'He cum inside you'>>">> <!-- PT 3.4 -->
<h3>Your father cums in your pussy, after that he goes back to his room.</h3>
<<video 'house/bedroom/sleep/dad_sleepscene10'>>
<br>
<<message "$dad.relationship Corruption increased">>
<<AddArousal 0>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<h3>After a while, your $dad.relationship goes back to his room. ($dad.relationship corruption must be at least 15 and be aroused to unlock the final of the scene!)</h3>
<</if>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<h3>After a while, your dad goes back to his room. (Dad's corruption must be at least 10 and be very aroused to unlock part 2 of the scene!)</h3>
<</if>>
<</linkreplace>>
<</linkreplace>>
<br>
<<AddDadCorruption>>
<<AddCorruption>>
<<button 'You go back to sleep' 'BedroomSleep'>><</button>>
</center><center>
<h1 class="ptitle">STUDY</h1>
<div id="place-head">
</div>
<<set $game.dice to random(1,5)>>
<!-- DAD SCENE -->
<<if $game.dice == 1 && $dad.arousal > 0 && $dad.corruption > 0>>
<<goto 'BedroomStudyDadGrope'>>
<!-- BROTHER SCENE -->
<<elseif $game.dice == 2 && $brother.arousal > 0 && $brother.corruption > 0>>
<<goto 'BedroomStudyBrotherGrope'>>
<<else>>
[img[setup.ImagePath+'/house/bedroom/study/study.webp']]
<br><br>
<<notify'intelligence'>>+1 Intelligence<</notify>>
<<message "You studied an hour and feel <b>smarter</b>!">>
<br>
<<button 'Return ↩️' 'Bedroom'>><</button>>
<<AddInt>>
<<Energy -10>>
<<AddTime '2'>>
<</if>>
</center><center>
<h1 class="ptitle">$brother.relationship Grope</h1>
<div id="place-head">
</div>
<<set $game.randomMedia to either("brother_studygrope1.webp", "brother_studygrope2.webp")>>
[img[setup.ImagePath+'/house/bedroom/study/' + $game.randomMedia]]
<<speech "Brother" "$brother.relationship">>Hey sister, you have gorgeous boobs<</speech>>
<<speech "Player" "$player.name">>Leave me alone idiot!<</speech>>
<<linkreplace "<<lr 'Keep studying'>>" t8n>>
<br>
[img[setup.ImagePath+'/house/bedroom/study/study.webp']]
<h3>You studied for an hour and felt smarter!</h3>
<<button 'Return ↩️' 'Bedroom'>><</button>>
<<AddInt>>
<<Energy -10>>
<<AddBrotherCorruption>>
<<AddCorruption>>
<<set $brother.scenes.BedroomStudyGrope to true>>
<<AddTime '2'>>
<</linkreplace>>
</center><center>
<h1 class="ptitle">$dad.relationship GROPE</h1>
<div id="place-head">
</div>
<!-- DAD SCENE PT 1 -->
<<video 'house/bedroom/study/dad_studygrope1'>>
<<speech "Dad" "Dad">>Hey, what are you doing?<</speech>>
<<speech "Player" "$player.name">>I'm studying for school.<</speech>>
<<if $dad.arousal == 0>>
<<set $dad.arousal += 1>>
<</if>>
<!-- DAD SCENE PT 2 -->
<<if $dad.arousal > 1 && $dad.corruption >= 5>>
<<linkreplace "<<lr 'Ignore him'>>" t8n>>
<<video 'house/bedroom/study/dad_studygrope2'>>
<<speech "Dad" "$dad.relationship">>Common, I'm so horny right now, don't wanna help your <b>$dad.relationship</b> ?<</speech>>
<<speech "Player" "$player.name">>I can't, please leave me alone..<</speech>>
<<linkreplace "<<lr 'He keeps groping you'>>" t8n>>
<<video 'house/bedroom/study/dad_studygrope3'>>
<<speech "Dad" "$dad.relationship">>Your breasts have grown a lot, they are very soft<</speech>>
<<speech "Player" "$player.name">>*Mphhmm..*<</speech>>
<<speech "Dad" "$dad.relationship">>Get up babe, you can keep studying if you want<</speech>>
<!-- DAD SCENE PT 3 -->
<<if $dad.arousal > 2 && $dad.corruption >= 10>>
<<linkreplace "<<lr 'You get up from the chair'>>" t8n>>
<<video 'house/bedroom/study/dad_studygrope4'>>
<<speech "Player" "$player.name">>What are you doing ?<</speech>>
<<linkreplace "<<lr '$dad.relationship gropes you'>>" t8n>>
<<video 'house/bedroom/study/dad_studygrope5'>>
<<speech "Dad" "$dad.relationship">>Let's take off these panties, you get much better without it<</speech>>
<<speech "Player" "$player.name">>What?!<</speech>>
<<linkreplace "<<lr 'He caress your pussy'>>" t8n>>
<<video 'house/bedroom/study/dad_studygrope6'>>
<<speech "Dad" "$dad.relationship">>What a delicious pussy you have<</speech>>
<!-- DAD SCENE PT 4 -->
<<if $dad.arousal > 2 && $dad.corruption >= 15>>
<<set $dad.arousal = 0>>
<<set $dad.scenes.BedroomStudyGrope to true>>
<<linkreplace "<<lr 'He put his cock inside you'>>" t8n>>
<<video 'house/bedroom/study/dad_studygrope7'>>
<<speech "Dad" "$dad.relationship">>You are very tight, I thought you had already fuck with a lot of guys<</speech>>
<<speech "Player" "$player.name">>I didnt!!!<</speech>>
<<linkreplace "<<lr 'He cum inside you'>>" t8n>>
<<speech "Dad" "$dad.relationship">>I will cum!!!<</speech>>
<<video 'house/bedroom/study/dad_studygrope8'>>
<<speech "Player" "$player.name">>What???!!!<</speech>>
<</linkreplace>>
<</linkreplace>>
<</if>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</if>>
<</linkreplace>>
<</linkreplace>>
<</if>>
<<linkreplace "<<lr 'Keep studying'>>" t8n>>
<br>
[img[setup.ImagePath+'/house/bedroom/study/study.webp']]
<br>
You studied an hour and feel <b>smarter</b>!
<br>
<br>
<<button 'Return ↩️' 'Bedroom'>><</button>>
<<AddCorruption>>
<<AddInt>>
<<set $dad.arousal += 1>>
<<AddDadCorruption>>
<<Energy -10>>
<<AddTime '2'>>
<</linkreplace>>
</center><center>
<h1 class="ptitle">CHANGE CLOTHES</h1>
<div class="gridclothingstore-menu">
<<button 'Underwear 🩲'>>
<<set $activeTab to "Underwear">>
<<run Engine.show()>>
<</button>>
<<button 'Casual 👗'>>
<<set $activeTab to "Casual">>
<<run Engine.show()>>
<</button>>
<<button 'School 👩🏼🎓'>>
<<set $activeTab to "School">>
<<run Engine.show()>>
<</button>>
<<button 'Fitness 👟'>>
<<set $activeTab to "Fitness">>
<<run Engine.show()>>
<</button>>
<<button 'Swim 👙'>>
<<set $activeTab to "Swim">>
<<run Engine.show()>>
<</button>>
<<button 'Uniform 👔'>>
<<set $activeTab to "Uniform">>
<<run Engine.show()>>
<</button>>
</div>
<br>
<<switch $activeTab>>
<<case "Underwear">>
<div class="gridclothingstore-container">
<<Wardrobe $clothes.naked>>
<<Wardrobe $clothes.underwear>>
</div>
<<case "Casual">>
<div class="gridclothingstore-container">
<<Wardrobe $clothes.default>>
<<Wardrobe $clothes.casual1>>
<<Wardrobe $clothes.casual2>>
<<Wardrobe $clothes.casual3>>
<<Wardrobe $clothes.casual4>>
</div>
<<case "School">>
<div class="gridclothingstore-container">
<<Wardrobe $clothes.school1>>
<<Wardrobe $clothes.school2>>
<<Wardrobe $clothes.school3>>
<<Wardrobe $clothes.school4>>
<<Wardrobe $clothes.cheerleader>>
</div>
<<case "Fitness">>
<div class="gridclothingstore-container">
<<Wardrobe $clothes.fitness1>>
<<Wardrobe $clothes.fitness2>>
<<Wardrobe $clothes.fitness3>>
<<Wardrobe $clothes.fitness4>>
</div>
<<case "Swim">>
<div class="gridclothingstore-container">
<<Wardrobe $clothes.swim1>>
<<Wardrobe $clothes.swim2>>
<<Wardrobe $clothes.swim3>>
<<Wardrobe $clothes.swim4>>
<<Wardrobe $clothes.swim5>>
</div>
<<case "Uniform">>
<<Wardrobe $clothes.sexymaid>>
<</switch>>
<br>
<<button 'Return ↩️'>>
<<if $player.clothing.type == 'naked' && $player.corruption.level < 3>>
<<NotifyCorruption 3>>
<<elseif $player.clothing.type == 'underwear' && $player.corruption.level < 2>>
<<NotifyCorruption 2>>
<<else>>
<<print '<<goto "' + previous() + '">>'>>
<</if>>
<</button>>
</center>
<style>
.passage button {
width: 100%;
}
</style><center>
<h1 class="ptitle">$brother.relationship Flash</h1>
<h3>You give a little show to your $brother.relationship</h3>
<<set $game.randomMedia to either("brotherflash1.webp", "brotherflash2.gif", "brotherflash3.webp", "brotherflash4.webp", "brotherflash5.gif")>>
<div class='shower'>
[img[setup.ImagePath+'/house/brotherbedroom/' + $game.randomMedia]]
</div>
<<set $brother.scenes.BedroomFlash = true>>
<<AddExb>>
<<AddArousal>>
<<AddBrotherCorruption>>
<<AddTime '1'>>
<br>
<<button 'Return ↩️' 'BrotherRoom'>><</button>>
</center><center>
<h1 class="ptitle">$brother.relationship's Bedroom</h1>
<div id="place-head">
[img[setup.ImagePath+'/house/brotherbedroom/brotherbedroom.png']]
</div>
<br>
<<if $game.time == "LN">>
<h3>It's late at night, your brother is sleeping.</h3>
<<else>>
<<button 'Flash to him ❤️🔥'>>
<<if $player.corruption.level > 0>>
<<goto 'BrotherFlash'>>
<<else>>
<<NotifyCorruption 1>>
<</if>>
<</button>>
<<button 'Tease him ❤️🔥'>>
<<if $player.corruption.points >= 5>>
<<goto 'BrotherTease'>>
<<else>>
<<NotifyCorruption 5>>
<</if>>
<</button>>
<</if>>
<<button 'Hallway 🚪' 'Hallway'>><</button>>
</center><center>
<h1 class="ptitle">$brother.relationship TEASE</h1>
<h3>You tease your $brother.relationship a bit</h3>
<<set $game.randomMedia to either("brothertease1.webp", "brothertease2.webp", "brothertease3.webp", "brothertease4.gif", "brothertease5.webp")>>
<div class='shower'>
[img[setup.ImagePath+'/house/brotherbedroom/' + $game.randomMedia]]
</div>
<<set $brother.scenes.BedroomTease = true>>
<<AddArousal>>
<<AddBrotherCorruption>>
<<AddTime '1'>>
<br>
<<button 'Return ↩️' 'BrotherRoom'>><</button>>
</center><center>
<h1 class="ptitle">$dad.relationship's Bedroom</h1>
<div id="place-head">
[img[setup.ImagePath+'/house/dadbedroom/banner.jpg']]
</div>
<<set $game.dice to random(1,3)>>
<<if $game.dice == 1>>
<<set $game.randomMedia to either("dadpeek1.gif", "dadpeek2.gif")>>
<h3>You hear a strange noise coming from your $dad.relationship bedroom.</h3>
<<linkreplace "<<lr 'Peek 👀'>>" t8n>>
[img[setup.ImagePath+'/house/dadbedroom/' + $game.randomMedia]]
<h3>When you peek, you see your father having sex with a prostitute</h3>
<<set $dad.scenes.ProstituteSex = true>>
<<AddArousal>>
<</linkreplace>>
<<else>>
<br>
<</if>>
<<button 'Hallway 🚪' 'Hallway'>><</button>>
</center><center>
<h1 class="ptitle">KITCHEN</h1>
<div id="place-head">
[img[setup.ImagePath+'/house/kitchen/kitchen.jpg']]
</div>
<br>
<<button 'Eat' 'KitchenEat'>><</button>>
<<if $game.time == "LN">>
<<button '❌ Too late wash the dishes ❌'>><</button>>
<<else>>
<<button 'Wash Dishes' 'WashDishes'>><</button>>
<</if>>
<<button 'Hallway 🚪' 'Hallway'>><</button>>
</center><center>
<h1 class="ptitle">EATING</h1>
<h3>You sit down and eat your food. It's delicious!</h3>
[img[setup.ImagePath+'/house/kitchen/eat/eating.gif']]
<br><br>
<<button 'Return ↩️' 'Kitchen'>><</button>>
</center>
<<AddTime '1'>><center>
<h1 class="ptitle">WASHING DISHES</h1>
<<set $game.dice to random(1,3)>>
<<if $game.dice == 1>>
<h3>While washing the dishes, your $dad.relationship arrives from behind and takes advantage of you</h3>
<<set $game.randomMedia to either("washgrope1.webp", "washgrope2.webp", "washgrope3.webp")>>
<<AddArousal>>
<<AddDadCorruption>>
<<set $dad.scenes.WashDishes to true>>
<<else>>
<h3>Washing dishes is a boring chore, but it needs to be done.</h3>
<<set $game.randomMedia to either("wash1.webp", "wash2.webp", "wash3.webp", "wash4.webp")>>
<</if>>
<div class='shower'>
[img[setup.ImagePath+'/house/kitchen/washDishes/' + $game.randomMedia]]
</div>
<br>
<<button 'Return ↩️' 'Kitchen'>>
<<AddTime '1'>>
<<Energy -10>>
<</button>>
</center><center>
<h1 class="ptitle">LIVING ROOM</h1>
<div id="place-head">
[img[setup.ImagePath+'/house/livingroom/livingroom.jpg']]
</div>
<br>
<<button 'Hallway 🚪' 'Hallway'>><</button>>
</center><center>
<h1 class="ptitle">HALLWAY</h1>
<div id="place-head">
[img[setup.ImagePath+'/marcus/house/hallway.png']]
</div>
<br>
<<button "Marcus's bedroom 🛏️" "MarcusBedroom">><</button>>
<<button "Bathroom 🚾" "MarcusBathroom">><</button>>
<<button "City 🏙️" "CityMap">><</button>>
<<SetPlayerLocation MarcusHouse>>
</center><center>
<h1 class="ptitle">MARCUS'S BATHROOM</h1>
<div id="place-head">
[img[setup.ImagePath+'/marcus/house/bathroom/bathroombanner.png']]
</div>
<br>
<<button 'Hallway 🚪' 'MarcusHallway'>><</button>>
</center><center>
<h1 class="ptitle">MARCUS'S BEDROOM</h1>
<h3>You two sit at the table to study</h3>
<<Speech $npc.Marcus "Thanks for coming, I really needed help with the subjects">>
<<Speech $player "No problem, it's a pleasure to help you">>
<<Speech $npc.Marcus "I'm glad you think so, I'm really grateful">>
<<Speech $player "Don't worry, you'll do great, I'm sure of it">>
<<Speech $npc.Marcus "Thanks, I really needed to hear that">>
<<Speech $player "So, let's start ?">>
<<Speech $npc.Marcus "Yes!">>
<<video 'marcus/house/bedroom/studyEvent/studyevent1'>>
<h3>After some minutes studying..</h3>
<<Speech $npc.Marcus "Wait, I need to tell you something">>
<<Speech $player "What is it ?">>
<<Speech $npc.Marcus "This might sound a little strange, but I'm really horny and I can't concentrate">>
<!-- PT 1 -->
<<if $Quests.Marcus.StudyWithMarcus.progress > 0 && $player.corruption.level > 0>>
<<linkreplace "<<lr 'You think about it..'>>" t8n>>
<<Speech $player "Oh, I see, I can help you with that">>
<<Speech $npc.Marcus "Really ?">>
<<linkreplace "<<lr 'He put you on the table'>>" t8n>>
<h3>He puts you on the table and opens your blouse</h3>
<<video 'marcus/house/bedroom/studyEvent/studyevent2'>>
<<Speech $player "Wow, what a hurried boy">>
<<Speech $npc.Marcus "I'm sorry, I just can't help it">>
<h3>After taking off your blouse, he starts to kiss your breasts</h3>
<<video 'marcus/house/bedroom/studyEvent/studyevent3'>>
<<Speech $player "Oh, Marcus, you're so naughty">>
<<Speech $npc.Marcus "Let me taste this pussy">>
<!-- PT 2 -->
<<if $Quests.Marcus.StudyWithMarcus.progress > 2 >>
<<linkreplace "<<lr 'He gives you oral sex'>>" t8n>>
<<video 'marcus/house/bedroom/studyEvent/studyevent4'>>
<h3>Marcus kneels in front of you and starts giving you oral sex</h3>
<<Speech $player "Mhmmm.. This is so good, but now it's time to show what I can do">>
<<linkreplace "<<lr 'Suck his cock'>>" t8n>>
<h3>You get down on your knees, unbutton his pants and start sucking his dick</h3>
<<video 'marcus/house/bedroom/studyEvent/studyevent5'>>
<<Speech $npc.Marcus "Wow, you suck really well">>
<h3>You look directly into his eyes, as you continue sucking his dick, you can see that he is extremely excited</h3>
<<video 'marcus/house/bedroom/studyEvent/studyevent6'>>
<<Speech $npc.Marcus "I can't resist, I need to fuck your pussy">>
<!-- PT 3 -->
<<if $Quests.Marcus.StudyWithMarcus.progress > 4 >>
<<Speech $player "Come fuck, you bastard!">>
<<linkreplace "<<lr 'On fours!'>>" t8n>>
<h3>You get on all fours for him, he comes to you and starts to fit his dick in your pussy</h3>
<<video 'marcus/house/bedroom/studyEvent/studyevent7'>>
<<Speech $player "Ohhh, yes, fuck me!!">>
<<Speech $npc.Marcus "You're so tight, it's driving me crazy">>
<<linkreplace "<<lr 'He lifts yours leg'>>" t8n>>
<<video 'marcus/house/bedroom/studyEvent/studyevent8'>>
<<Speech $npc.Marcus "Ride on me!">>
<<linkreplace "<<lr 'Ride on him'>>" t8n>>
<<video 'marcus/house/bedroom/studyEvent/studyevent9'>>
<<Speech $npc.Marcus "Harder!!">>
<<Speech $player "Ohhh, yes, fuck me!!">>
<<video 'marcus/house/bedroom/studyEvent/studyevent10'>>
<<Speech $npc.Marcus "I want you on fours again!">>
<<linkreplace "<<lr 'On fours again!'>>" t8n>>
<<video 'marcus/house/bedroom/studyEvent/studyevent11'>>
<<Speech $player "I want it harder!!">>
<<Speech $npc.Marcus "If that's how you want it, here I come!">>
<<video 'marcus/house/bedroom/studyEvent/studyevent12'>>
<<Speech $npc.Marcus "I can't hold it in any longer, I'm going to cum!!">>
<<Speech $player "Cum on my mouth!">>
<<linkreplace "<<lr 'Cum!!'>>" t8n>>
<h3>He kneels you down and pours all his cum into your mouth</h3>
<<video 'marcus/house/bedroom/studyEvent/studyevent13'>>
<<Speech $npc.Marcus "I hope we can do this more often">>
<<Speech $player "We will definitely do">>
<<FinishQuest $Quests.Marcus.StudyWithMarcus>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<<Speech $player "It's late, I need to go home, we can continue this another time">>
<<Speech $npc.Marcus "Ok, I hope to see you soon">>
<h3>Keep visiting Marcus to advance the scene</h3>
<!-- PT 3 END -->
<</if>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<<Speech $player "It's late, I need to go home, we can continue this another time">>
<<Speech $npc.Marcus "Ok, I hope to see you soon">>
<h3>Keep visiting Marcus to advance the scene</h3>
<!-- PT 2 END -->
<</if>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<<linkreplace "<<lr 'What should I do ?'>>" t8n>>
<<NotifyCorruption 1>>
<<Speech $player "Sorry, but I think I better go home">>
<<Speech $npc.Marcus "Oh, I'm sorry, I didn't want to make you uncomfortable">>
<<Speech $player "No, it's okay, I just think it's better to go">>
<h3>Keep visiting Marcus to advance the scene</h3>
<</linkreplace>>
<!-- PT 1 END -->
<</if>>
<<button 'Return ↩️' 'MarcusBedroom'>>
<<UpdateQuest $Quests.Marcus.StudyWithMarcus 1>>
<<AddTime 2>>
<<AddCorruption>>
<</button>>
</center><center>
<h1 class="ptitle">MARCUS'S BEDROOM</h1>
<div id="place-head">
[img[setup.ImagePath+'/marcus/house/bedroom/bedroombanner.png']]
</div>
<br>
<<button 'Study with Marcus' 'BedroomMarcusStudy'>><</button>>
<<button 'Hallway 🚪' 'MarcusHallway'>><</button>>
</center><center>
<h1 class="ptitle">RESTAURANT</h1>
<div id="place-head">
[img[setup.ImagePath+'/restaurant/restaurantbanner.webp']]
</div>
<br>
<<if $location.restaurant == false>>
<<goto 'CityMap'>>
<<if $player.clothing.type == "restaurant">>
<<set $player.clothing = $clothes.default>>
<</if>>
<<notify>>The restaurant is closed!<</notify>>
<</if>>
<<if $player.work.name != 'Restaurant'>>
<<button 'Apply to work 💼' 'RestaurantInterview'>><</button>>
<<else>>
<<if $player.energy >= 10>>
<<button 'Work 💼'>>
<<if $restaurant.scenes.PromotedScene == true>>
<<if $player.clothing.type == 'restaurant'>>
<<goto 'RestaurantVIP'>>
<<else>>
<<notify 'alert'>>You need to wear the uniform of the VIP section!<</notify>>
<</if>>
<<else>>
<<goto 'RestaurantWork'>>
<</if>>
<</button>>
<<button 'Change Clothes 👠' 'Wardrobe'>><</button>>
<<else>>
<<button '🪫 Too tired to work 🪫'>><</button>>
<</if>>
<<button "Quit job ❌">>
<<run Dialog.setup("XXXXXX")>>
<<run Dialog.wiki("You quit the job!")>>
<<run Dialog.open()>>
<<set $player.work.name to 'Unemployed'>>
<<goto 'Restaurant'>>
<</button>>
<</if>>
<<button 'City 🏙️'>>
<<if $player.clothing.type == 'restaurant'>>
<<notify 'alert'>>You can't go out using this uniform!<</notify>>
<<else>>
<<goto 'CityMap'>>
<</if>>
<</button>>
<<SetPlayerLocation Restaurant>>
</center><center>
<h1 class="ptitle">JOB INTERVIEW</h1>
<div id="place-head">
[img[setup.ImagePath+'/restaurant/interview/boss.jpg']]
</div>
<br>
<<button 'Pass the interview 📖'>>
<<if $player.intelligence >= 5>>
<<goto 'RestaurantInterviewEnd'>>
<<else>>
<<notify 'intelligence'>>You aren't smart enough to do the job! (5+ int)<</notify>>
<</if>>
<</button>>
<<button 'Seduce the boss 🫦'>>
<<if $player.corruption.level > 0>>
<<goto 'RestaurantInterviewSex'>>
<<else>>
<<NotifyCorruption 1>>
<</if>>
<</button>>
<<button 'Return ↩️' 'Restaurant'>><</button>>
</center><center>
<h1 class="ptitle">YOU GOT THE JOB!</h1>
<<speech "Boss" "Boss">>Congratulations! You got the job, don't be late and come every day to avoid being fired<</speech>>
<<video 'restaurant/interview/interview_end'>>
<<speech "Player" "$player.name">>Thank you!! I'm so happy<</speech>>
<<set $player.work.name = 'Restaurant'>>
<<button 'Return ↩️' 'Restaurant'>><</button>>
</center><center>
<h1 class="ptitle">SEDUCE THE BOSS 🫦</h1>
<br>
<!-- INTERVIEW SCENE PT 1 -->
<<speech "Scene" "Scene">>A voice calls your name inside the room, you get up and go there<</speech>>
<<video 'restaurant/interview/interview1'>>
<<speech "Boss" "Boss">>Welcome, you can sit down so we can start the interview<</speech>>
<<speech "Player" "$player.name">>Thank you, sir.<</speech>>
<<speech "Boss" "Boss">>I will start the interview, your approval for the waitress position will depend on your experience in the position<</speech>>
<<speech "Player" "$player.name">>How about we skip this boring part and get to the part where things get fun?<</speech>>
<<speech "Boss" "Boss">>What do you mean ?<</speech>>
<!-- INTERVIEW SCENE PT 2 -->
<<linkreplace "<<lr 'Kiss him 💋'>>" t8n>>
<<video 'restaurant/interview/interview2'>>
<<speech "Boss" "Boss">>I got it.. you are a smart girl. Come here, I want to see you closer<</speech>>
<<speech "Player" "$player.name">>Okay boss<</speech>>
<!-- INTERVIEW SCENE PT 3 -->
<<linkreplace "<<lr 'Go close to him'>>" t8n>>
<<video 'restaurant/interview/interview3'>>
<<speech "Boss" "Boss">>Be a good girl and get my dick out<</speech>>
<<speech "Player" "$player.name">>Whatever you want boss<</speech>>
<!-- INTERVIEW SCENE PT 4 -->
<<linkreplace "<<lr 'Unzip his pants'>>" t8n>>
<<video 'restaurant/interview/interview4'>>
<<speech "Boss" "Boss">>Now be a good slut and suck my dick<</speech>>
<!-- INTERVIEW SCENE PT 5 -->
<<linkreplace "<<lr 'Blow him'>>" t8n>>
<<video 'restaurant/interview/interview5'>>
<<speech "Player" "$player.name">>Am I being a good boss girl?<</speech>>
<<speech "Boss" "Boss">>Yes, dear, and if you continue like this the position will be yours. Now get on all fours on the table, I'm going to fuck your pussy<</speech>>
<<speech "Player" "$player.name">>What ? But I thought it would just be a blowjob<</speech>>
<<speech "Boss" "Boss">>Haha, do you think you're the first to offer your body in exchange for the job? Now hurry up before I get angry<</speech>>
<!-- INTERVIEW SCENE PT 6 -->
<<linkreplace "<<lr 'Go to the table'>>" t8n>>
<<video 'restaurant/interview/interview6'>>
<<speech "Player" "$player.name">>Go slowly, please<</speech>>
<<speech "Boss" "Boss">>Shut up and be an obedient whore<</speech>>
<!-- INTERVIEW SCENE PT 7 -->
<<linkreplace "<<lr 'Harder!'>>" t8n>>
<<video 'restaurant/interview/interview7'>>
<<speech "Player" "$player.name">>It hurts!! Go slowly please<</speech>>
<<speech "Boss" "Boss">>You won't get the job if you continue like this. Get up, I want you on top of me<</speech>>
<!-- INTERVIEW SCENE PT 8 -->
<<linkreplace "<<lr 'Get up'>>" t8n>>
<<video 'restaurant/interview/interview8'>>
<<speech "Boss" "Boss">>Come here, sit on my lap, I'll make you bounce, bitch<</speech>>
<<speech "Player" "$player.name">>Okay sir..<</speech>>
<<speech "Boss" "Boss">>Why are you still dressed? Take off your clothes now you slut!<</speech>>
<!-- INTERVIEW SCENE PT 9 -->
<<linkreplace "<<lr 'Take off your clothes'>>" t8n>>
<<video 'restaurant/interview/interview9'>>
<<speech "Boss" "Boss">>Much better this way, don't you agree?<</speech>>
<<speech "Player" "$player.name">>Yes sir..<</speech>>
<<speech "Boss" "Boss">>Now get up, let's go somewhere more comfortable<</speech>>
<!-- INTERVIEW SCENE PT 10 -->
<<linkreplace "<<lr 'Get up'>>" t8n>>
<<video 'restaurant/interview/interview10'>>
<<speech "Boss" "Boss">>Follow me!<</speech>>
<!-- INTERVIEW SCENE PT 11 -->
<<linkreplace "<<lr 'Follow him'>>" t8n>>
<<video 'restaurant/interview/interview11'>>
<<speech "Boss" "Boss">>Now ride for your boss, you slut<</speech>>
<<speech "Scene" "Scene">>After a while..<</speech>>
<<speech "Boss" "Boss">>Come here, I wanna cum on you!<</speech>>
<!-- INTERVIEW SCENE PT 12 -->
<<linkreplace "<<lr 'Kneel for him'>>" t8n>>
<<speech "Boss" "Boss">>I'm cumming slut!!!!<</speech>>
[img[setup.ImagePath+'/restaurant/interview/interview12.webp']]
<<set $restaurant.scenes.InterviewScene to true>>
<<set $player.work.name to 'restaurant'>>
<<AddCorruption>>
<<AddArousal 0>>
<br>
<<button 'End Interview' 'RestaurantInterviewEnd'>><</button>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
</center><center>
<h1 class="ptitle">PROMOTION!!!</h1>
<div id="place-head">
[img[setup.ImagePath+'/restaurant/interview/boss.jpg']]
</div>
<h3>You answer your boss's call and go to your office</h3>
<<video 'restaurant/interview/interview1'>>
<<speech "Player" "$player.name">>Did you call me boss?<</speech>>
<<speech "Boss" "Boss">>Yes, I'm happy to tell you that you will be promoted!<</speech>>
<<speech "Player" "$player.name">>This is amazing, for what position will I go?<</speech>>
<<speech "Boss" "Boss">>So we need to talk about it, here at the restaurant there is a secret section for VIP customers, you were promoted to work as a waitress in this section.<</speech>>
<<speech "Player" "$player.name">>I don't understand, I figured that I would go to a higher position, earn a higher salary ...<</speech>>
<<speech "Boss" "Boss">>Don't worry dear, the salary there is bigger, just as the tips are much more generous.<</speech>>
<<speech "Player" "$player.name">>And what is the difference between my current work for this new one?<</speech>>
<<speech "Boss" "Boss">>It starts with the uniform, VIP customers don't like boring traditional uniforms, so this here will be their new uniform from now on.<</speech>>
<<set $clothes.sexymaid.purchased = true>>
[img[setup.ImagePath+'/player/clothes/restaurant/sexyuniform.webp']]
<br>
<<linkreplace "<<lr 'Wear the uniform'>>" t8n>>
<<ChangeClothes $clothes.sexymaid>>
<<speech "Player" "$player.name">>I don't know if I like it, it's a bit revealing.<</speech>>
<<speech "Boss" "Boss">>Don't worry, you will get used to it. Come with me, I will show you where the VIP section is.<</speech>>
<<button 'Follow the boss' 'RestaurantVIPScene'>><</button>>
<</linkreplace>>
</center><center>
<h1 class="ptitle">VIP SECTION</h1>
<div id="place-head">
[img[setup.ImagePath+'/restaurant/vip/banner.jpg']]
</div>
<br>
<<set $game.randomMedia to either("blowclient1.webp", "blowclient2.webp", "blowclient3.webp", "fuckclient2.webp", "fuckclient3.webp")>>
<<set $game.randomMoney to random(20,30)>>
<<message "You got $game.randomMoney $">>
<<AddMoney $game.randomMoney>>
<<Energy -25>>
<<AddRestaurantXP>>
<h3>A customer is requesting a special dish!</h3>
<<linkreplace "<<lr 'Serve him'>>" t8n>>
<div class="shower">
[img[setup.ImagePath+'/restaurant/vip/' + $game.randomMedia]]
</div>
<<set $game.randomMoney to random(20,30)>>
<<message "You got $game.randomMoney $">>
<<AddMoney $game.randomMoney>>
<br>
<</linkreplace>>
<<AddTime 2>>
<<button 'Return ↩️' 'Restaurant'>><</button>>
</center><center>
<h1 class="ptitle">VIP SECTION</h1>
<div id="place-head">
[img[setup.ImagePath+'/restaurant/vip/banner.jpg']]
</div>
<<speech "Boss" "Boss">>Welcome to the VIP section, here will be your new place of work.<</speech>>
<h3>You look around and see several erotic scenes in the VIP section.</h3>
<<linkreplace "<<lr 'Look'>>" t8n>>
[img[setup.ImagePath+'/restaurant/vip/fuckclient2.webp']]
<h3>You get scared, but soon all that environment begins to become exciting.</h3>
<<speech "Player" "$player.name">>Ok, can I start?<</speech>>
<<speech "Boss" "Boss">>For sure, but first I need to check if you are really fit for the position.<</speech>>
<<speech "Player" "$player.name">>What I need to do ?<</speech>>
<<speech "Boss" "Boss">>You need to make a blowjob in me here in the middle of everyone.<</speech>>
<<linkreplace "<<lr 'Blow him'>>" t8n>>
<h3>You open the zipper of his pants and start making a blowjob.</h3>
[img[setup.ImagePath+'/restaurant/vip/blowclient1.webp']]
<<speech "Boss" "Boss">>Good girl, surely it will be a good waitress here.<</speech>>
<<linkreplace "<<lr 'Cum'>>" t8n>>
<h3>Without much delay, he enjoys his face and leaves back to the office</h3>
[img[setup.ImagePath+'/restaurant/vip/cum1.webp']]
<<set $restaurant.scenes.PromotedScene = true>>
<br>
<<button 'Go to work' 'RestaurantVIP'>><</button>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
</center><center>
<h1 class="ptitle">WORKING</h1>
<<set $game.randomMedia to either("working.webp", "working1.gif", "working2.gif")>>
<<set $game.randomMoney to random(10,20)>>
<<set $game.dice to random(1,2)>>
[img[setup.ImagePath+'/restaurant/' + $game.randomMedia]]
<<message "You got $game.randomMoney $">>
<<AddMoney $game.randomMoney>>
<<Energy -10>>
<<AddRestaurantXP>>
<<AddTime '2'>>
<br>
<<if $player.work.workExp >= 10 && $restaurant.scenes.PromotedScene == false && $player.corruption.level > 1>>
<h3>You hear your boss calling you from his office.</h3>
<<speech "Boss" "Boss">>$player.name come to my office!<</speech>>
<<button 'Go to his office' 'RestaurantPromotionScene'>><</button>>
<<else>>
<<if $game.dice == 1>>
<<speech "Strange" "Customer">>Hey sweetie, do you want to earn a tip? Show me that body<</speech>>
<<if $player.corruption.level > 0>>
<<linkreplace "<<lr 'Flash him'>>" t8n>>
<<set $game.randomMedia to either("flash.webp", "flash1.webp", "flash2.webp", "flash3.webp")>>
<<set $game.randomMoney to random(5,15)>>
<<AddMoney $game.randomMoney>>
<<AddExb>>
<<AddArousal>>
<<UpdateBar>>
[img[setup.ImagePath+'/restaurant/' + $game.randomMedia]]
<<message "You got $game.randomMoney $ from tips">>
<br>
<</linkreplace>>
<<else>>
<<linkreplace "<<lr 'Flash him'>>" t8n>>
<<NotifyCorruption 1>>
<</linkreplace>>
<</if>>
<</if>>
<<button 'Return ↩️' 'Restaurant'>><</button>>
<</if>>
</center><center>
<h1 class="ptitle">SCHOOL</h1>
<div id="place-head">
[img[setup.ImagePath+'/school/schoolbanner.jpg']]
</div>
<br>
<<if $player.energy >= 10>>
<<if $school.daysToNextTest == 0>>
<<button 'School Test 👩🏻🏫' 'SchoolTest'>><</button>>
<<else>>
<<if $game.time == "EM">>
<<button 'Math Class 👩🏻🏫' 'Classroom'>>
<<if $Quests.MathTeacher.Homework.progress == 0>>
<<UpdateQuest $Quests.MathTeacher.Homework 0 "Deliver the homework to the teacher at class">>
<</if>>
<</button>>
<<elseif $game.time == "M">>
<<button 'History Class 👩🏻🏫' 'Classroom'>><</button>>
<<elseif $game.time == "A">>
<<button 'PE Class 👩🏻🏫' 'SchoolGym'>><</button>>
<<if $Quests.MathTeacher.Tutoring.progress >= 1>>
<<button 'Go to teacher office 👩🏻🏫' 'Tutoring'>><</button>>
<</if>>
<<elseif $game.time == "E">>
<<button 'Classroom 👩🏻🏫' 'EmptyClassroom'>><</button>>
<</if>>
<</if>>
<<elseif $player.energy <= 10>>
<<button '🪫 Too tired to study 🪫'>><</button>>
<</if>>
<<button "Men's Bathroom 🚹" 'SchoolBathroom'>>
<<set $school.bathroom = "m">>
<</button>>
<<button "Women's Bathroom 🚺" 'SchoolBathroom'>>
<<set $school.bathroom = "f">>
<</button>>
<<button "Library 📚" 'Library'>><</button>>
<<button 'City 🏙️' 'CityMap'>><</button>>
</center>
<<SetPlayerLocation School>>
/*QUESTS */
<<if $Quests.Game.FirstDayOfSchool.completed == false>>
<<FinishQuest $Quests.Game.FirstDayOfSchool>>
<<StartQuest $Quests.Game.SchoolTest>>
<<StartQuest $Quests.MathTeacher.Homework>>
<<StartQuest $Quests.Coach.Cheerleader>>
<</if>><center>
<<if $school.bathroom == 'f'>>
<h1 class="ptitle">WOMAN'S BATHROOM</h1>
<<else>>
<h1 class="ptitle">MEN'S BATHROOM</h1>
<</if>>
<div id="place-head">
[img[setup.ImagePath+'/school/bathroom/bathroombanner.jpg']]
</div>
<br>
<<set $game.dice to random(1,3)>>
<<if $school.bathroom == 'm' && previous() != "SchoolBathroomStudentSex" && $game.dice == 1>>
<<Speech $npc.Marcus "What are you doing here ? Here is the men's bathroom">>
<<linkreplace "<<lr 'Tease him'>>">>
<<if $player.corruption.level > 0>>
<<set $school.scenes.BathroomFlash = true>>
<<AddExb>>
<<AddArousal>>
[img[setup.ImagePath+'/school/bathroom/flashtits.webp']]
<br>
<<timed 1s>>
<<Speech $player "Do you like them ?">>
<</timed>>
<<timed 2s>>
<<Speech $npc.Marcus "What a bitch... Do you want to fuck?">>
<</timed>>
<<timed 3s>>
<<button 'Yes' 'SchoolBathroomStudentSex'>>
<<if $player.corruption.level > 1>>
<<goto 'SchoolBathroomStudentSex'>>
<<else>>
<<NotifyCorruption 2>>
<</if>>
<</button>>
<<linkreplace "<<lr 'No'>>">>
<<goto 'School'>>
<<notify 'alert'>>You leave the bathroom to avoid problems<</notify>>
<</linkreplace>>
<</timed>>
<br>
<<else>>
<<NotifyCorruption 1>>
<</if>>
<</linkreplace>>
<<button 'Get out' 'School'>><</button>>
<<else>>
<<button 'Cabin 🚽' 'SchoolBathroomCabin'>><</button>>
<<button 'School Hallway 🏫' 'School'>><</button>>
<</if>>
</center><center>
<h1 class="ptitle">CABIN</h1>
<div id="place-head">
[img[setup.ImagePath+'/school/bathroom/cabinbanner.webp']]
</div>
<br>
<<button 'Return ↩️'>>
<<print '<<goto "' + previous() + '">>'>>
<</button>>
</center><center>
<<if $school.bathroom == 'f'>>
<h1 class="ptitle">WOMAN'S BATHROOM</h1>
<<else>>
<h1 class="ptitle">MEN'S BATHROOM</h1>
<</if>>
<<Speech $npc.Marcus "Take my cock babe">>
<<video 'school/bathroom/bathroom_sex_student/bathroom_sex_student1'>>
<<Speech $player "Come fuck my pussy">>
<<linkreplace '<<lr "Bend to him">>' t8n>>
<<Speech $npc.Marcus "Mhmmm... I'm going to put it all in">>
<<video 'school/bathroom/bathroom_sex_student/bathroom_sex_student2'>>
<<Speech $player "Fuck me harder!!!">>
<<linkreplace '<<lr "Fuck harder">>' t8n>>
<<video 'school/bathroom/bathroom_sex_student/bathroom_sex_student3'>>
<<Speech $npc.Marcus "Come here, ride on me">>
<<linkreplace '<<lr "Sit on him">>' t8n>>
<<video 'school/bathroom/bathroom_sex_student/bathroom_sex_student4'>>
<<Speech $player "**I can't even feel this idiot tiny dick**">>
<<linkreplace '<<lr "Ride him">>' t8n>>
<<video 'school/bathroom/bathroom_sex_student/bathroom_sex_student5'>>
<<Speech $npc.Marcus "I'm cumming!!!">>
<<Speech $player "You what???">>
<<linkreplace '<<lr "💦">>' t8n>>
<<video 'school/bathroom/bathroom_sex_student/bathroom_sex_student6'>>
<<Speech $player "You cum inside me!!!">>
<<linkreplace '<<lr "Get up">>' t8n>>
<<video 'school/bathroom/bathroom_sex_student/bathroom_sex_student7'>>
<<Speech $npc.Marcus "I'm sorry, I can't resist">>
<<Speech $player "Idiot!!">>
<<button 'Return ↩️' 'SchoolBathroom'>><</button>>
<<set $school.scenes.BathroomStudentSex to true>>
<<Energy -10>>
<<AddArousal 0>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
</center><center>
<h1 class="ptitle">SCHOOL TEST</h1>
<div id="place-head">
[img[setup.ImagePath+'/school/schoolTest/schooltestbanner.jpg']]
</div>
<br>
<<linkreplace '<<lr "Take the school test">>' t8n>>
<<set _daysPassed to $game.days / 2>>
<<set _requiredIntelligence to Math.floor(_daysPassed)>>
<<if $player.intelligence == _requiredIntelligence>>
<<set $school.grade to 6>>
<<else>>
<<set $school.grade to Math.floor($player.intelligence / _requiredIntelligence) * 6>>
<<if $school.grade > 10>>
<<set $school.grade to 10>>
<</if>>
<</if>>
<h3>YOUR SCORE IS: $school.grade</h3>
<<set $school.daysToNextTest = 7>>
<<AddTime 2>>
<<if $school.grade < 6 && $Quests.MathTeacher.Tutoring.progress == 0>>
<<Speech $npc.MathTeacher "Hey $player.name, come to my desk.">>
<<button 'Go to teacher desk' 'TutoringEvent'>>
<<StartQuest $Quests.MathTeacher.Tutoring>>
<</button>>
<<else>>
<<if $Quests.Marcus.StudyWithMarcus.active == false>>
<<Speech $npc.Marcus "Hey $player.name, I saw that you got a good grade, can't we study at my house sometime?">>
<<Speech $player "Alright, we can study in the afternoon then!">>
<<Speech $npc.Marcus "Alright, I'll wait for you there, I live in the residential area">>
<<Speech $player "OK!">>
<<StartQuest $Quests.Marcus.StudyWithMarcus>>
<</if>>
<<button 'Return ↩️' 'School'>><</button>>
<</if>>
<</linkreplace>>
</center><center>
<h1 class="ptitle">CLASSROOM</h1>
<div id="place-head">
[img[setup.ImagePath+'/school/classroom/classbanner.jpg']]
</div>
<br>
<<button 'Study 📖'>>
<<set $school.ClassroomStudy = "Study">>
<<goto 'ClassroomEvent'>>
<</button>>
<<button 'Socialize 💬'>>
<<set $school.ClassroomStudy = "Socialize">>
<<goto 'ClassroomEvent'>>
<</button>>
<<if $school.homework == true>>
<<button 'Deliver homework to the teacher' 'MathHomeworkEvent'>><</button>>
<</if>>
<<button 'School Hallway 🏫' 'School'>><</button>>
</center><center>
<h1 class="ptitle">STUDY</h1>
<<set $game.dice to random(1,2)>>
<<switch $school.ClassroomStudy>>
<<case "Study">>
[img[setup.ImagePath+'/school/classroom/study.gif']]
<<message "You pay attention to the class and feel <b>smarter</b>!">>
<<AddInt>>
<<case "Socialize">>
<h2>You waste time socializing with your classmates!</h2>
[img[setup.ImagePath+'/school/classroom/classroomtalking.jpg']]
<<AddSocial>>
<<if $game.dice == 1>>
<br>
<<message "You notice that some guys are staring at you">>
<br>
<<linkreplace "<<lr 'Flash to them'>>" t8n>>
<<if $player.corruption.level > 0>>
<<set $game.randomMedia to either("flash.webp", "flash1.webp", "flash2.gif", "flash3.webp", "flash4.webp", "flash5.webp", "flash6.webp")>>
[img[setup.ImagePath+'/school/classroom/' + $game.randomMedia]]
<br>
<<set $school.scenes.ClassroomFlash to true>>
<<AddExb>>
<<AddArousal>>
<<else>>
<<NotifyCorruption 1>>
<</if>>
<</linkreplace>>
<</if>>
/*EMPTY CLASSROOM*/
<<case "Empty">>
<h2>The room is empty, you take the opportunity to study</h2>
<<if $Quests.MathTeacher.Tutoring.completed>>
<<Speech $npc.Janitor "What are you doing here ? The class is over">>
<</if>>
<</switch>>
<<button 'Return ↩️' 'School'>>
<<AddTime '2'>>
<<Energy -10>>
<</button>>
</center><center>
<h1 class="ptitle">CLASSROOM</h1>
<div id="place-head">
[img[setup.ImagePath+'/school/classroom/classEmptyBanner.jpg']]
</div>
<br>
<<button 'Study 📖'>>
<<set $school.ClassroomStudy = "Empty">>
<<set $game.dice to random(1,2)>>
<<if $game.dice == 1 && $Quests.MathTeacher.Tutoring.completed>>
<<goto 'JanitorEmptyClassEvent'>>
<<else>>
<<goto 'ClassroomEvent'>>
<</if>>
<</button>>
<<button 'School Hallway 🏫' 'School'>><</button>>
</center><center>
<h1 class="ptitle">CLASSROOM</h1>
<h3> After entering the room, you go to your chair</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent1'>>
<h3>You sit down in your chair and start organizing your books to study</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent2'>>
<h3>While you are studying, you have a strange feeling, as if someone is watching you..</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent3'>>
<<if $Quests.Janitor.Afterclass.progress == 0>>
<h3>You get up and look back, but you don't see anything, so you go to the door and close it</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent4'>>
<h3>After closing the door, you keep studying and increase your intelligence</h3>
<<AddInt>>
<<StartQuest $Quests.Janitor.Afterclass>>
<<set $Quests.Janitor.Afterclass.progress = 1>>
<<else>>
<h3>After closing the door, you hear a noise behind you, you turn around and see the janitor</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent5'>>
<h3>He looks at you and smile, you start to get nervous</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent6'>>
<br>
<<linkreplace "<<lr 'You drop the pen'>>">>
<h3>He starts to walk towards you, you drop the pen and try to get up, but he catches it first</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent7'>>
<<Speech $player "Oops">>
<<Speech $npc.Janitor "Here you go, what's your name? I'm the school janitor, Mr.Wilson.">>
<<Speech $player "I'm $player.name, nice to meet you!">>
<<Speech $npc.Janitor "Nice to meet you too, $player.name, I'm here to clean the room">>
<<video 'school/classroom/janitorAfterclass/janitorEvent8'>>
<<Speech $player "Alright, I was about to finish, I'll let you clean the room">>
<<Speech $npc.Janitor "You don't have to leave, you can stay here with me">>
<<Speech $player "I'm sorry, I have to go, I have a lot of things to do">>
<<Speech $npc.Janitor "I ordered you to stay">>
<h3>You are startled by his tone of voice and sit down again</h3>
<<linkreplace "<<lr 'You sit down again'>>">>
<<video 'school/classroom/janitorAfterclass/janitorEvent9'>>
<h3>He starts to clean the room and you keep studying</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent10'>>
<<Speech $npc.Janitor "How are private classes with teacher $npc.MathTeacher.name going?">>
<<Speech $player "I don't know what you're talking about">>
<<Speech $npc.Janitor "Don't lie to me, I know everything that happens in this school">>
<<video 'school/classroom/janitorAfterclass/janitorEvent11'>>
<<Speech $npc.Janitor "I know he fucks you really good during classes">>
<<Speech $player "Who told you this?">>
<<Speech $npc.Janitor "The walls of this school are thinner than you imagine, and now I want a little piece of you too">>
<<video 'school/classroom/janitorAfterclass/janitorEvent12'>>
<<Speech $player "I'm not going to do anything to you, you disgusting">>
<<Speech $npc.Janitor "Okay... If you prefer to go that route, I guess I'll have to send the video of you two having sex to everyone at school...">>
<h3>You immediately freeze when you find out that he has a video of you having sex with your teacher</h3>
<<linkreplace "<<lr 'What do I do ?'>>">>
<<video 'school/classroom/janitorAfterclass/janitorEvent13'>>
<<Speech $player "Okay, if I do what you're asking me, will you delete the video?">>
<<Speech $npc.Janitor "Of course, I just want to have the pleasure of fucking this hot little body, just like professor $npc.MathTeacher.name had">>
<<Speech $player "Okay, we have a deal.">>
<<linkreplace "<<lr 'He kisses you'>>">>
<<video 'school/classroom/janitorAfterclass/janitorEvent14'>>
<<Speech $npc.Janitor "Let's take a look at these titties">>
<h3>He moves your dress to the side and exposes your breasts</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent15'>>
<h3>Your only option is to watch, your secret cannot be exposed</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent16'>>
<h3>You feel like a slut, being abused by the school janitor</h3>
<<Speech $npc.Janitor "Let's see if this little body is that hot">>
<h3>He opens your dress even more, exposing practically your entire body</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent17'>>
<h3>After that, he removes your panties, exposing your pussy</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent18'>>
<<Speech $npc.Janitor "It looks like someone hasn't shaved in a while, but that's okay, I like it that way too">>
<h3>Finally, he removes all your clothes and leaves you naked, he pulls you to sit on the table</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent19'>>
<br>
<<if $Quests.Janitor.Afterclass.progress >= 2>>
<<linkreplace "<<lr 'He masturbates you'>>">>
<h3>After putting you on the table, he starts to masturbate you</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent20'>>
<h3>You begin to feel very excited and desired</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent21'>>
<h3>He takes your hand and puts it on his dick, making you jerk off for him</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent22'>>
<br>
<<linkreplace "<<lr 'You kneel for him'>>">>
<h3>You kneel and wait for him to take off all his clothes</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent23'>>
<h3>You take his dick in your hand and start jerking him off</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent24'>>
<h3>He asks you to start sucking him, and so you do</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent25'>>
<h3>You continue to suck him while he watches you like you are a slut</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent26'>>
<h3>You look into his eyes<h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent27'>>
<br>
<<if $Quests.Janitor.Afterclass.progress >= 4>>
<<linkreplace "<<lr 'He wants to fuck you'>>">>
<h3>He lifts you up and puts you on all fours, like a little dog</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent28'>>
<h3>He puts his dick inside your pussy and starts fucking you</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent29'>>
<h3>His dick softens and he asks you to suck it again until it gets hard</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent30'>>
<h3>After a while, he manages to get hard again and puts you on the table</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent31'>>
<h3>He opens your legs wide and fucks you hard</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent32'>>
<br>
<<linkreplace "<<lr 'He wants you on top of him'>>">>
<h3>He puts you on top of him and makes you sit on his dick</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent33'>>
<h3>He asks you to turn to him</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent34'>>
<h3>He puts his dick inside your pussy and starts making you bounce really hard</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent35'>>
<br>
<<linkreplace "<<lr 'He wants to cum'>>">>
<h3>After a while, he asks you to get down on your knees and starts jerking off for you</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent36'>>
<h3>He cums inside your mouth</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent37'>>
<h3>You get up and leave</h3>
<<video 'school/classroom/janitorAfterclass/janitorEvent38'>>
<<AddCorruption>>
<<FinishQuest $Quests.Janitor.Afterclass>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<h3>You hear someone walk down the hall, you get dressed and go back to your normal activities</h3>
<<UpdateQuest $Quests.Janitor.Afterclass 1 "Keep going to study in the classroom after classes">>
<<AddArousal>>
<</if>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<h3>You hear someone walk down the hall, you get dressed and go back to your normal activities</h3>
<<UpdateQuest $Quests.Janitor.Afterclass 1 "Keep going to study in the classroom after classes">>
<<AddArousal>>
<</if>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</if>>
<br>
<<button 'Return ↩️' 'EmptyClassroom'>><</button>>
</center><center>
<h1 class="ptitle">HOMEWORK DELIVER</h1>
<<Speech $player "Teacher, I came to give you my homework">>
<<Speech $npc.MathTeacher "Ok, let me take a look and I will tell you your grade">>
<h3>He corrects your homework and calls you at his table</h3>
<<Speech $npc.MathTeacher "You got all the questions wrong..">>
<<video 'school/classroom/teacherEvent/teacherEvent1'>>
<<Speech $player "Why? I'm sure I did everything right">>
<<Speech $npc.MathTeacher "Things work differently around here, you need to make an effort to get along..">>
<<Speech $player "I think I already understand what you mean">>
<<if $player.corruption.level <= 1>>
<h3>You're not corrupt enough to do what he wants. 30+ Corruption</h3>
<</if>>
<<if $player.corruption.level > 1>>
<<linkreplace '<<lr "Take off your shirt">>' t8n>>
<h3>You start to unbutton your uniform in front of the teacher</h3>
<<video 'school/classroom/teacherEvent/teacherEvent2'>>
<<Speech $player "Maybe this will help to improve the grade">>
<<Speech $npc.MathTeacher "It will definitely help">>
<<linkreplace '<<lr "He caress you body">>' t8n>>
<<video 'school/classroom/teacherEvent/teacherEvent3'>>
<<Speech $npc.MathTeacher "You have a very beautiful body">>
<<Speech $player "And it will be all yours if you help me">>
<<linkreplace '<<lr "He sucks your tits">>' t8n>>
<<video 'school/classroom/teacherEvent/teacherEvent4'>>
<<Speech $npc.MathTeacher "Mhmm.. Good girl">>
<<Speech $player ":)">>
<!-- 1 PROGRESS -->
<<if $Quests.MathTeacher.Homework.progress > 1>>
<<linkreplace '<<lr "Blowjob">>' t8n>>
<<video 'school/classroom/teacherEvent/teacherEvent5'>>
<<Speech $npc.MathTeacher "Put it in your mouth and suck">>
<<Speech $player "Mhmmmm...">>
<<linkreplace '<<lr "Keep going">>' t8n>>
<<video 'school/classroom/teacherEvent/teacherEvent6'>>
<<Speech $npc.MathTeacher "Good girl, keep going">>
<!-- 3 PROGRESS -->
<<if $Quests.MathTeacher.Homework.progress > 3>>
<<linkreplace '<<lr "Go on fours">>' t8n>>
<<Speech $npc.MathTeacher "Your pussy is very tight babe">>
<<video 'school/classroom/teacherEvent/teacherEvent7'>>
<<Speech $npc.MathTeacher "Come ride a little, slut">>
<<linkreplace '<<lr "Ride on him">>' t8n>>
<<video 'school/classroom/teacherEvent/teacherEvent8'>>
<<Speech $npc.MathTeacher "You are so beautiful, you are leaving your teacher very excited">>
<<Speech $player "I hope this will help me take good grades">>
<<linkreplace '<<lr "Go to desk">>' t8n>>
<<video 'school/classroom/teacherEvent/teacherEvent9'>>
<h3>He puts you on all fours again and continues fucking you</h3>
<<linkreplace '<<lr "Continue">>' t8n>>
<<video 'school/classroom/teacherEvent/teacherEvent10'>>
<<Speech $npc.MathTeacher "This is so fucking good!!!">>
<<if $Quests.MathTeacher.Homework.progress > 5>>
<<linkreplace '<<lr "He stick inside">>' t8n>>
<<video 'school/classroom/teacherEvent/teacherEvent11'>>
<<Speech $npc.MathTeacher "I'm gonna cum, come here!!">>
<<linkreplace '<<lr "Cum">>' t8n>>
<<video 'school/classroom/teacherEvent/teacherEvent12'>>
<<Speech $npc.MathTeacher "Come here, take all my cum!!">>
<<FinishQuest $Quests.MathTeacher.Homework>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<<AddArousal>>
<<Speech $player "If you want to cum you will have to keep helping me..">>
<</if>><!-- 5 PROGRESS -->
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<<AddArousal>>
<<Speech $player "If you want to fuck my pussy will have to keep helping me..">>
<</if>><!-- 3 PROGRESS -->
<</linkreplace>>
<</linkreplace>>
<<else>>
<<AddArousal>>
<<Speech $player "If you keep helping me like this, you will have more..">>
<</if>><!-- 1 PROGRESS -->
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</if>>
<<button 'School Hallway 🏫' 'School'>>
<<if $player.corruption.level > 1>>
<<UpdateQuest $Quests.MathTeacher.Homework 1 "You need to get a good grade on the activity, no matter what">>
<<else>>
<<UpdateQuest $Quests.MathTeacher.Homework 0 "You need to get a good grade on the activity, no matter what">>
<</if>>
<<AddTime 2>>
<<Energy -10>>
<<set $school.homework = false>>
<</button>>
</center><center>
<h1 class="ptitle">LIBRARY</h1>
<div id="place-head">
[img[setup.ImagePath+'/school/library/librarybanner.jpg']]
</div>
<br>
<<button 'Study 📖' 'LibraryStudy'>><</button>>
<<button 'School Hallway 🏫' 'School'>><</button>>
</center>
/*QUESTS*/<center>
<h1 class="ptitle">PLAYING WITH NATASHA</h1>
<h3>Soon after, you open your blouse exposing your breasts.</h3>
<<video 'school/library/library_lesbian/lesbian_library3'>>
<<Speech $npc.Natasha "Wow, you really like this">>
<<Speech $player "I told you">>
<<linkreplace '<<lr "Unzip Natasha dress">>' t8n>>
<h3>Soon after, you unzip Natasha's clothes, exposing her bra.</h3>
<<video 'school/library/library_lesbian/lesbian_library4'>>
<<Speech $npc.Natasha "Come here, let me suck those titties">>
<<video 'school/library/library_lesbian/lesbian_library5'>>
<<Speech $player "I wonder if anyone is seeing us">>
<<linkreplace '<<lr "Natasha remove your pants">>' t8n>>
<<video 'school/library/library_lesbian/lesbian_library6'>>
<<Speech $npc.Natasha "I don't know, but I hope so">>
<<linkreplace '<<lr "Continue">>' t8n>>
<h3>You hear voices and footsteps approaching you</h3>
<<Speech $npc.Natasha "I think the librarian is coming, hide!">>
<<video 'school/library/library_lesbian/lesbian_library7'>>
<br>
<!-- 1 PROGRESS -->
<<if $Quests.Natasha.LibraryExhibitionism.progress > 1>>
<<linkreplace '<<lr "Hide">>' t8n>>
<<Speech $npc.Natasha "I think they're gone, we can continue now">>
<<video 'school/library/library_lesbian/lesbian_library8'>>
<<Speech $player "Let me taste this pussy">>
<h3>You get up and start showing off</h3>
<<linkreplace '<<lr "Show off">>' t8n>>
<<video 'school/library/library_lesbian/lesbian_library9'>>
<<Speech $npc.Natasha "Good girl, keep going">>
<h3>Natasha feels inspired and starts taking off all her clothes</h3>
<<linkreplace '<<lr "Continue">>' t8n>>
<<Speech $player "Hey, how about you take off your panties?">>
<<video 'school/library/library_lesbian/lesbian_library11'>>
<<Speech $npc.Natasha "Good idea">>
<h3>You hear voices and footsteps approaching you</h3>
<<Speech $npc.Natasha "I think the librarian is coming, hide!">>
<!-- 3 PROGRESS -->
<<if $Quests.Natasha.LibraryExhibitionism.progress > 3>>
<<linkreplace '<<lr "Hide">>' t8n>>
<h3>After a while, the librarian leaves</h3>
<<Speech $npc.Natasha "We can continue now">>
<<video 'school/library/library_lesbian/lesbian_library10'>>
<<Speech $player "Take it all away Natasha!!">>
<<linkreplace '<<lr "Natasha take it all">>' t8n>>
<<video 'school/library/library_lesbian/lesbian_library12'>>
<<Speech $player "That's it!">>
<h3>You hear voices and footsteps approaching you</h3>
<<Speech $npc.Natasha "I think the librarian is coming, hide!">>
<<if $Quests.Natasha.LibraryExhibitionism.progress > 5>>
<<linkreplace '<<lr "Hide">>' t8n>>
<h3>After a while, the librarian leaves, soon after, Natasha starts sucking your pussy</h3>
<<video 'school/library/library_lesbian/lesbian_library13'>>
<<Speech $player "Mhmm.. I'm going to cum">>
<h3>You cum while Natasha gives you oral</h3>
<<linkreplace '<<lr "Make up with Natasha">>' t8n>>
<<video 'school/library/library_lesbian/lesbian_library14'>>
<<Speech $player "That was amazing!!">>
<<Speech $npc.Natasha "You can come here whenever you want, I do this almost every day">>
<<Speech $player "I'm sure I'll be back several times!">>
<<FinishQuest $Quests.Natasha.LibraryExhibitionism>>
<</linkreplace>>
<</linkreplace>>
<</if>><!-- 5 PROGRESS -->
<</linkreplace>>
<</linkreplace>>
<<else>>
<<AddArousal>>
<<Speech $player "Okay for today, we'll continue another day">>
<</if>><!-- 3 PROGRESS -->
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<<AddArousal>>
<<Speech $player "Okay for today, we'll continue another day">>
<</if>><!-- 1 PROGRESS -->
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<button "Library 📚">>
<<goto 'Library'>>
<<AddTime 2>>
<<Energy -20>>
<<AddCorruption>>
<<set $Quests.Natasha.LibraryExhibitionism.progress += 1>>
<</button>>
</center><center>
<h1 class="ptitle">LIBRARY STUDY</h1>
<<video 'school/library/library_lesbian/lesbian_library1'>>
<h3>While you are reading a book, your friend Natasha appears to talk to you</h3>
<<Speech $npc.Natasha "Hi $player.name, what are you doing?">>
<<video 'school/library/library_lesbian/lesbian_library2'>>
<<Speech $player "I was looking for some books to study, and you?">>
<<Speech $npc.Natasha "I was looking to have fun, you know I'm a fan of exhibitionism. I was thinking about satisfying that desire a little, do you want to do it with me?">>
<<if $player.corruption.level > 0>>
<<Speech $player "I'm in, I'm also a fan of exhibitionism.">>
<<button 'Play with her' 'LibraryExhibitionism'>>
<<if $Quests.Natasha.LibraryExhibitionism.active == false>>
<<StartQuest $Quests.Natasha.LibraryExhibitionism>>
<</if>>
<</button>>
<<else>>
<h3>You are not sure if you want to do it, you are not sure if you want to be seen by other people. Maybe if you were more corrupt.. (+15 Corruption)</h3>
<<Speech $player "I don't know, I'm not sure if I want to do it.">>
<<Speech $npc.Natasha "Okay.. Next time maybe.">>
<<AddInt>>
<</if>>
<br>
<<button "Library 📚" 'Library'>>
<<AddTime 2>>
<<Energy -10>>
<</button>>
</center><center>
<h1 class="ptitle">CHEERLEADER EVENT</h1>
<<if $Quests.Coach.Cheerleader.progress == 1>>
<h3>Before you enter, you see a girl leaving the coach's office crying.</h3>
<<Speech $player "Hey, what happened?">>
<<Speech $npc.Amelia "He's a pervert, he demands you have sex with him to join the cheerleaders">>
<h3>For a second, you freeze and wonder if it's really worth doing this to join the cheerleaders.</h3>
<<set $Quests.Coach.Cheerleader.progress = 2>>
<</if>>
<<linkreplace '<<lr "Enter the coach office">>' t8n>>
<<if $player.corruption.level > 1>>
/*EVENT START */
<h3>You enter the coach's office, already decided that you will do everything to get on the team</h3>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent1'>>
<h3>He looks at you and smiles</h3>
<<Speech $player "I came as you asked, with my uniform and ready to join the team">>
<<Speech $npc.Coach "Do you already know the process of joining the team?">>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent2'>>
<<Speech $player "Of course I know, and I will make sure you don't regret the decision to put me on the team">>
<<linkreplace '<<lr "Kneel">>' t8n>>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent3'>>
<<Speech $npc.Coach "I didn't expect it to be so easy, you'll definitely join the team">>
<h3>You take his dick out and start giving him a blowjob</h3>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent4'>>
<<Speech $npc.Coach "What a fucking hot mouth">>
<<Speech $player "Did you like it ? I'll show you what she's capable of">>
<<linkreplace '<<lr "Suck him">>' t8n>>
<h3>You accelerate more and more, swallowing his entire dick with your mouth</h3>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent5'>>
<<Speech $npc.Coach "You must love sucking a cock">>
<h3>He gets up and leans on the table</h3>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent6'>>
<<Speech $player "Do you want to see something?">>
/*PART 2 */
<<if $Quests.Coach.Cheerleader.progress > 5>>
<<linkreplace '<<lr "Take off your top">>' t8n>>
<h3>You take off your top, exposing your breasts, then he starts caressing them.</h3>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent7'>>
<<Speech $npc.Coach "They are beautiful, but I want to see your pussy too">>
<<linkreplace '<<lr "Take off your panties">>' t8n>>
<h3>You lie down on the table and take off your panties</h3>
<<Speech $player "Do you want to suck my pussy?">>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent8'>>
<h3>Without waiting, he throws himself into your pussy and starts giving you oral sex</h3>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent9'>>
<<Speech $player "Mhmmmm.... This is so fucking good">>
<<linkreplace '<<lr "He puts his dick inside">>' t8n>>
<h3>After sucking you, he starts rubbing his dick against your pussy, then puts it inside you</h3>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent10'>>
<<Speech $npc.Coach "Isn't that what you wanted?">>
<<Speech $player "Fuck me harder!!">>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent11'>>
<<Speech $npc.Coach "Get up, I want to fuck you on all fours">>
/*PART 3 */
<<if $Quests.Coach.Cheerleader.progress > 8>>
<<linkreplace '<<lr "On fours">>' t8n>>
<h3>He lifts you up and turns you onto your back, placing you on all fours on the table</h3>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent12'>>
<<Speech $npc.Coach "Do you like being fucked like a doggy?">>
<<Speech $player "I love!">>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent13'>>
<<Speech $npc.Coach "I'm going to cum, open your mouth">>
<<linkreplace '<<lr "He cums">>' t8n>>
<h3>He masturbates in your mouth until he cums and fills you with cum</h3>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent14'>>
<<Speech $player "So, am I on the team?">>
<<video 'school/gym/cheerleaderEvent/cheerleaderEvent15'>>
<<Speech $npc.Coach "I'll definitely be waiting for you at the next trainings.">>
<<FinishQuest $Quests.Coach.Cheerleader>>
/*LINK REPLACE END */
<</linkreplace>>
<</linkreplace>>
<<else>>
<<AddArousal>>
<h3>Suddenly, you hear the school principal knocking on the door. You get dressed quickly and you leave.</h3>
<</if>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<<AddArousal>>
<h3>Suddenly, you hear the school coordinator knocking on the door. You get dressed quickly and you leave.</h3>
<</if>>
<</linkreplace>>
<</linkreplace>>
/*EVENT END */
<<else>>
<<NotifyCorruption 2>>
<</if>>
<</linkreplace>>
<<button 'Return ↩️' 'School'>>
<<if $Quests.Coach.Cheerleader.progress >= 2>>
<<AddCorruption>>
<<set $Quests.Coach.Cheerleader.progress += 1>>
<</if>>
<<AddTime 2>>
<</button>>
</center><center>
<h1 class="ptitle">PE CLASS</h1>
<div id="place-head">
[img[setup.ImagePath+'/school/gym/gymclass.gif']]
</div>
<h3>You work out in the gym, improving your fitness</h3>
<<AddTime 2>>
<<AddFit>>
<<Energy -15>>
<<button 'Return ↩️' 'School'>><</button>>
</center><center>
<h1 class="ptitle">SCHOOL GYM</h1>
<div id="place-head">
[img[setup.ImagePath+'/school/gym/schoolgymbanner.png']]
</div>
<br>
<<if $player.fitness >= 15 && $Quests.Coach.Cheerleader.progress == 0>>
<<set $Quests.Coach.Cheerleader.progress = 1>>
<<Speech $npc.Coach "Hey, you're doing great in PE classes, you should try joining the cheerleaders">>
<<Speech $player "Wow, really? I would love">>
<<if $player.clothing.name == "Cheerleader Uniform">>
<<Speech $npc.Coach "You already have the uniform, great!">>
<<Speech $player "Yes, I'm ready to join the cheerleaders">>
<<Speech $npc.Coach "Just come to my office when you're ready">>
<<button 'Join Cheerleaders 🎉' 'CheerleaderEvent'>><</button>>
<<else>>
<<Speech $npc.Coach "Yes, just buy the uniform and come to my office wearing it">>
<</if>>
<<elseif $Quests.Coach.Cheerleader.progress > 0 && $Quests.Coach.Cheerleader.completed == false>>
<<button 'Join Cheerleaders 🎉'>>
<<if $player.clothing.name == "Cheerleader Uniform">>
<<goto 'CheerleaderEvent'>>
<<else>>
<<notify 'alert'>>You need the cheerleader clothes to join them<</notify>>
<</if>>
<</button>>
<<if $Quests.Coach.Cheerleader.progress == 1>>
<<set $Quests.Coach.Cheerleader.progress = 2>>
<</if>>
<</if>>
<<button 'Attend Class 📖'>>
<<goto 'GymClass'>>
<</button>>
<<button 'Change Clothes 👙' 'Wardrobe'>><</button>>
<<button 'School Hallway 🏫' 'School'>><</button>>
</center><center>
<h1 class="ptitle">TUTORING</h1>
<<video 'school/tutoring/tutoring1'>>
<<Speech $npc.MathTeacher "Glad you came, we can start our private lessons ?">>
<<Speech $player "Yes we can, teacher.">>
<<linkreplace '<<lr "Study">>' t8n>>
<<video 'school/tutoring/tutoring2'>>
<<Speech $npc.MathTeacher "So we need to talk about something first..">>
<<Speech $player "About what ?">>
<<linkreplace '<<lr "Continue">>' t8n>>
<<video 'school/tutoring/tutoring3'>>
<<Speech $npc.MathTeacher "Nothing is free, and I have already kept an eye on you for a while">>
<<Speech $player "What do you mean ?">>
<<linkreplace '<<lr "Continue">>' t8n>>
<<video 'school/tutoring/tutoring4'>>
<<Speech $npc.MathTeacher "I need it to return my help in a way..">>
<<Speech $player "I'm not sure if I want it">>
<!-- 1 PROGRESS -->
<<if $Quests.MathTeacher.Tutoring.progress > 1>>
<<linkreplace '<<lr "Handjob">>' t8n>>
<<video 'school/tutoring/tutoring5'>>
<<Speech $npc.MathTeacher "Put it in your mouth and suck">>
<<Speech $player "Mhmmmm...">>
<<linkreplace '<<lr "Blow him">>' t8n>>
<<video 'school/tutoring/tutoring6'>>
<<Speech $npc.MathTeacher "Good girl, keep going">>
<<linkreplace '<<lr "Sit at the table">>' t8n>>
<<video 'school/tutoring/tutoring7'>>
<<Speech $npc.MathTeacher "Spread your legs for me">>
<!-- 3 PROGRESS -->
<<if $Quests.MathTeacher.Tutoring.progress > 3>>
<<linkreplace '<<lr "Spread legs">>' t8n>>
<<video 'school/tutoring/tutoring8'>>
<<Speech $npc.MathTeacher "You are so beautiful, you are leaving your teacher very excited">>
<<Speech $player "I don't think this is correct..">>
<<linkreplace '<<lr "Jerk him">>' t8n>>
<<video 'school/tutoring/tutoring9'>>
<<Speech $npc.MathTeacher "Jerk me off, your bitch, and carress your pussy for me">>
<<Speech $player "Okay..">>
<<linkreplace '<<lr "Open legs">>' t8n>>
<<video 'school/tutoring/tutoring10'>>
<<Speech $npc.MathTeacher "I'm going to fuck your pussy now">>
<<Speech $player "But we should be studying to improve my grades">>
<<if $Quests.MathTeacher.Tutoring.progress > 5>>
<<linkreplace '<<lr "He stick inside">>' t8n>>
<<video 'school/tutoring/tutoring11'>>
<<Speech $npc.MathTeacher "Yes, we go, but only after you pay for class">>
<<linkreplace '<<lr "Keep going">>' t8n>>
<<video 'school/tutoring/tutoring12'>>
<<Speech $npc.MathTeacher "Take off this shirt, I want to see your breasts">>
<<linkreplace '<<lr "Turn aside">>' t8n>>
<<video 'school/tutoring/tutoring13'>>
<<Speech $npc.MathTeacher "I will cum!!!">>
<<linkreplace '<<lr "He cums">>' t8n>>
<<video 'school/tutoring/tutoring14'>>
<<Speech $player "You cum inside me ??">>
<<linkreplace '<<lr "Finish">>' t8n>>
<<Speech $npc.MathTeacher "Yes baby, I couldn't take it in time, now get ready and go away before someone sees both of us here">>
<<video 'school/tutoring/tutoring15'>>
<<FinishQuest $Quests.MathTeacher.Tutoring>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<h3>Suddenly, you hear the school principal knocking on the door. You get dressed quickly and you leave.</h3>
<<AddArousal>>
<</if>><!-- 5 PROGRESS -->
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<h3>Suddenly, you hear the school principal knocking on the door. You get dressed quickly and you leave.</h3>
<<AddArousal>>
<</if>><!-- 3 PROGRESS -->
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<else>>
<h3>Suddenly, you hear the school coordinator knocking on the door. You get dressed quickly and you leave.</h3>
<<AddArousal>>
<</if>><!-- 1 PROGRESS -->
<</linkreplace>>
<</linkreplace>>
<</linkreplace>>
<<button 'School Hallway 🏫' 'School'>>
<<set $Quests.MathTeacher.Tutoring.progress += 1>>
<<AddTime 2>>
<<AddCorruption>>
<</button>>
</center><center>
<h1 class="ptitle">TEACHER</h1>
<div id="place-head">
[img[setup.ImagePath+'/school/tutoring/tutoringbanner.jpg']]
</div>
<br>
<<Speech $npc.MathTeacher "You should know why I called you, right?">>
<<Speech $player "Yes I know.">>
<<Speech $npc.MathTeacher "You have low grades, and I can't allow you to continue like this.">>
<<Speech $npc.MathTeacher "I am willing to help you, but you need to strive.">>
<<Speech $npc.MathTeacher "I will be available to help you every day at afternoon in my office.">>
<<Speech $npc.MathTeacher "You can come here at any time, and I will be willing to help you. ">>
<<Speech $npc.MathTeacher "Now go home, and study.">>
<<Speech $player "Yes sir.">>
<<button 'Return ↩️' 'School'>>
<<set $Quests.MathTeacher.Tutoring.progress = 1>>
<</button>>
</center><center>
<h1 class="ptitle">PATREON ACTIVATION</h1>
<<textbox "$patreonCode" ''>>
<br><br>
<<button 'Return ↩️'>>
<<print '<<goto "' + previous() + '">>'>>
<</button>>
</center><!-- BUY CLOTHES -->
<<widget "BuyClothes">>
<<if $player.corruption.points >= _args[0].corruption>>
<<if $player.money >= _args[0].price>>
<<set _args[0].purchased to true>>
<<set $player.money -= _args[0].price>>
<<notify 'alert'>>You bought _args[0].name!<</notify>>
<<run Engine.show()>>
<<else>>
<<notify 'alert'>>You don't have enough money!<</notify>>
<</if>>
<<else>>
<<notify 'alert'>>You aren't corrupted enough to buy this!<</notify>>
<</if>>
<</widget>>
<!-- CLOTHES INITIALIZATION -->
<<widget "ClothesInit">>
<<set $activeTab to "Casual">>
<<set
$clothes = {
"naked" : {
"name" : "Naked",
"type" : "underwear",
"price" : 0,
"beauty" : 0,
"purchased" : true,
"corruption" : 0,
"image" : "naked.webp"
},
"underwear" : {
"name" : "Underwear",
"type" : "underwear",
"price" : 0,
"beauty" : 0,
"purchased" : true,
"corruption" : 0,
"image" : "underwear.webp"
},
"default" : {
"name" : "Default",
"type" : "casual",
"price" : 0,
"beauty" : 0,
"purchased" : true,
"corruption" : 0,
"image" : "/default.webp"
},
"casual1" : {
"name" : "Casual Clothes",
"type" : "casual",
"price" : 50,
"beauty" : 1,
"purchased" : false,
"corruption" : 0,
"image" : "casual1.webp"
},
"casual2" : {
"name" : "Casual Clothes 1",
"type" : "casual",
"price" : 100,
"beauty" : 2,
"purchased" : false,
"corruption" : 5,
"image" : "casual2.webp"
},
"casual3" : {
"name" : "Casual Clothes 2",
"type" : "casual",
"price" : 150,
"beauty" : 3,
"purchased" : false,
"corruption" : 15,
"image" : "casual3.webp"
},
"casual4" : {
"name" : "Casual Clothes 3",
"type" : "casual",
"price" : 200,
"beauty" : 4,
"purchased" : false,
"corruption" : 30,
"image" : "casual4.webp"
},
"school1" : {
"name" : "School Uniform",
"type" : "school",
"price" : 0,
"beauty" : 0,
"purchased" : true,
"corruption" : 0,
"image" : "school1.webp"
},
"school2" : {
"name" : "School Uniform 1",
"type" : "school",
"price" : 50,
"beauty" : 1,
"purchased" : false,
"corruption" : 5,
"image" : "school2.webp"
},
"school3" : {
"name" : "School Uniform 2",
"type" : "school",
"price" : 100,
"beauty" : 2,
"purchased" : false,
"corruption" : 15,
"image" : "school3.webp"
},
"school4" : {
"name" : "School Uniform 3",
"type" : "school",
"price" : 150,
"beauty" : 3,
"purchased" : false,
"corruption" : 30,
"image" : "school4.webp"
},
"cheerleader" : {
"name" : "Cheerleader Uniform",
"type" : "school",
"price" : 100,
"beauty" : 3,
"purchased" : false,
"corruption" : 15,
"image" : "cheerleader.webp"
},
"fitness1" : {
"name" : "Fitness Clothes",
"type" : "fitness",
"price" : 50,
"beauty" : 1,
"purchased" : false,
"corruption" : 0,
"image" : "fitness1.webp"
},
"fitness2" : {
"name" : "Fitness Clothes 1",
"type" : "fitness",
"price" : 100,
"beauty" : 2,
"purchased" : false,
"corruption" : 5,
"image" : "fitness2.webp"
},
"fitness3" : {
"name" : "Fitness Clothes 2",
"type" : "fitness",
"price" : 150,
"beauty" : 3,
"purchased" : false,
"corruption" : 15,
"image" : "fitness3.webp"
},
"fitness4" : {
"name" : "Fitness Clothes 3",
"type" : "fitness",
"price" : 200,
"beauty" : 4,
"purchased" : false,
"corruption" : 30,
"image" : "fitness4.webp"
},
"swim1" : {
"name" : "Swim Clothes 1",
"type" : "swim",
"price" : 50,
"beauty" : 1,
"purchased" : false,
"corruption" : 0,
"image" : "swim1.webp"
},
"swim2" : {
"name" : "Swim Clothes 2",
"type" : "swim",
"price" : 100,
"beauty" : 2,
"purchased" : false,
"corruption" : 5,
"image" : "swim2.webp"
},
"swim3" : {
"name" : "Swim Clothes 3",
"type" : "swim",
"price" : 150,
"beauty" : 3,
"purchased" : false,
"corruption" : 15,
"image" : "swim3.webp"
},
"swim4" : {
"name" : "Swim Clothes 4",
"type" : "swim",
"price" : 200,
"beauty" : 4,
"purchased" : false,
"corruption" : 30,
"image" : "swim4.webp"
},
"swim5" : {
"name" : "Swim Clothes 5",
"type" : "swim",
"price" : 250,
"beauty" : 5,
"purchased" : false,
"corruption" : 45,
"image" : "swim5.webp"
},
"sexymaid" : {
"name" : "Sexy Maid",
"type" : "restaurant",
"price" : 0,
"beauty" : 5,
"purchased" : false,
"corruption" : 0,
"image" : "sexyuniform.webp"
},
}>>
<<set $player.clothing = $clothes.default>>
<</widget>>
<!-- CHANGE CLOTHES -->
<<widget "ChangeClothes">>
<<if $player.corruption.points >= _args[0].corruption>>
<<if $player.clothing.beauty > 0>>
<<set $player.beauty -= $player.clothing.beauty>>
<</if>>
<<set $player.clothing = _args[0]>>
<<set $player.beauty += _args[0].beauty>>
<<UpdateBar>>
<<else>>
<<notify 'alert'>>You aren't corrupted enough to use this!<</notify>>
<</if>>
<</widget>>
<!-- WARDROBE -->
<<widget 'Wardrobe'>>
<<set _clothes to _args[0]>>
<<capture _clothes>>
<<if _clothes.purchased == true>>
<<= "<<link [img[setup.ImagePath+'/player/clothes/' + _clothes.type + '/' + _clothes.image]]>> <<ChangeClothes _clothes>> <</link>>">>
<</if>>
<</capture>>
<</widget>><<widget "CorruptionController">>
<<if $player.corruption.points < 15>>
<<set $player.corruption.title = "Pure 😇">>
<<set $player.corruption.level = 0>>
<<elseif $player.corruption.points == 15>>
<<set $player.corruption.title = "Naughty 😏">>
<<set $player.corruption.level = 1>>
<<elseif $player.corruption.points == 30>>
<<set $player.corruption.title = "Slut 😈">>
<<set $player.corruption.level = 2>>
<<elseif $player.corruption.points == 45>>
<<set $player.corruption.title = "Whore 🔥">>
<<set $player.corruption.level = 3>>
<</if>>
<</widget>>
<<widget "NotifyCorruption">>
<<set _levelNeeded = _args[0]>>
<<switch _levelNeeded>>
<<case 1>>
<<set _pointsNeeded to 15>>
<<case 2>>
<<set _pointsNeeded to 30>>
<<case 3>>
<<set _pointsNeeded to 45>>
<<default>>
<<set _pointsNeeded to _levelNeeded>>
<</switch>>
<<notify 'corruption'>><<= "You are not corrupted enough to do this. (+" + _pointsNeeded + " corruption required!)" >> <</notify>>
<</widget>><<widget "InitDev">>
<<set $patreon to false>>
<<set $patreonCode to ''>>
<<set $devMode to false>>
<</widget>>
<<widget "CheckPatreon">>
<<set _patreonCode to "RTS03">>
<<if $patreon && $patreonCode is not _patreonCode >>
<<set $patreon to false>>
<<else>>
<<set $patreon to true>>
<</if>>
<<unset _patreonCode>>
<</widget>><<widget "EnergyController">>
<<if $player.energy >= 100>>
<<set $player.energy to 100>>
<</if>>
<<if $player.energy <= 0>>
<<set $player.energy to 0>>
<</if>>
<<if $player.energy == 0 && passage() != 'Bedroom' && passage() != 'NoEnergy'>>
<<goto 'NoEnergy'>>
<</if>>
<</widget>><<widget "InitGame">>
<<set
$game = {
"days" : 1,
"dice" : 0,
"randomMedia" : "",
"randomMoney" : 0,
"maxEnergy" : 100,
"maxArousal" : 10,
"night" : false,
"time" : "EM",
"day" : "Sunday",
"timeIcon" : '☀️',
"devMode" : false
}>>
<</widget>><<widget "InitLocations">>
<<set $location = {
"house" : { "open": true, "title": "House 🏠" },
"school" : { "open": true, "title": "School 🏫" },
"gym" : { "open": true, "title": "Gym 🏋️♀️" },
"park" : { "open": true, "title": "Park 🌳" },
"restaurant" : { "open": true, "title": "Restaurant 🍽️" },
"mall" : { "open": true, "title": "Mall 🛍️" },
"club" : { "open": true, "title": "Club 🍸" },
"beach" : { "open": true, "title": "Beach 🏖️" },
"bar" : { "open": true, "title": "Bar 🍺" },
"pool" : { "open": true, "title": "Public Pool 🏊♀️" },
"marcusHouse" : { "open": false, "title": "Marcus's House 🏠" },
}>>
<<set $park ={
"scenes" : {
"RapeAtPark" : false
}
}>>
<<set $school = {
"grade" : 0,
"daysToNextTest" : 7,
"homework" : false,
"testDone" : false,
"ClassroomEvent" : "",
"bathroom" : "m",
"scenes" : {
"ClassroomFlash" : false,
"BathroomStudentSex" : false
}
}>>
<<set $gym = {
"days" : 0,
"scenes" : {
"GymFlash" : false,
"GymPersonalSex" : false
}
}>>
<<set $items = {
"laptop" : {
"name" : "Laptop",
"price" : 1000,
"purchased" : false,
"image" : "laptop.webp"
},
"phone" : {
"name" : "Phone",
"price" : 500,
"purchased" : false,
"image" : "phone.webp"
},
"webcam" : {
"name" : "1080p Webcam",
"price" : 250,
"purchased" : false,
"image" : "webcam.webp"
},
}>>
<<set $restaurant = {
"xp" : 0,
"promoted" : false,
"scenes" : {
"InterviewScene" : false,
"PromotedScene" : false
}
}>>
<<set $club = {
"gloryholeExp" : 0,
"scenes" : {
"Gloryhole" : false
}
}>>
<</widget>>
<<widget "EnterLocation">>
<<set _location = _args[0]>>
<<if _location == 'House'>>
<<goto 'Hallway'>>
<<SetPlayerLocation House>>
<</if>>
<<if _location == 'MarcusHouse'>>
<<if !$location.marcusHouse.open>>
<<notify 'alert'>>There's no one at his house at this time.<</notify>>
<<else>>
<<goto 'MarcusHallway'>>
<<SetPlayerLocation MarcusHouse>>
<</if>>
<</if>>
<<if _location == 'School'>>
<<if $player.clothing.type != 'school'>>
<<notify 'alert'>>You need to wear the school uniform!<</notify>>
<<elseif !$location.school.open>>
<<notify 'alert'>>School is closed right now!<</notify>>
<<else>>
<<goto 'School'>>
<<SetPlayerLocation School>>
<</if>>
<</if>>
<<if _location == 'Gym'>>
<<if !$location.gym.open>>
<<notify 'alert'>>The gym is closed right now!<</notify>>
<<else>>
<<goto 'Gym'>>
<<SetPlayerLocation Gym>>
<</if>>
<</if>>
<<if _location == 'Park'>>
<<if $location.park.open>>
<<goto 'Park'>>
<<SetPlayerLocation Park>>
<<else>>
<<goto 'ParkLateNight'>>
<<SetPlayerLocation ParkLateNight>>
<</if>>
<</if>>
<<if _location == 'Restaurant'>>
<<if $location.restaurant.open>>
<<goto 'Restaurant'>>
<<SetPlayerLocation Restaurant>>
<<else>>
<<notify 'alert'>>The restaurant is closed right now!<</notify>>
<</if>>
<</if>>
<<if _location == 'Mall'>>
<<if $location.mall.open>>
<<goto 'Mall'>>
<<SetPlayerLocation Mall>>
<<else>>
<<notify 'alert'>>The mall is closed right now!<</notify>>
<</if>>
<</if>>
<<if _location == 'Club'>>
<<if $location.club.open>>
<<goto 'Club'>>
<<SetPlayerLocation Club>>
<<else>>
<<notify 'alert'>>The club is closed right now!<</notify>>
<</if>>
<</if>>
<<if _location == 'Beach'>>
<<if $location.beach.open>>
<<goto 'Beach'>>
<<SetPlayerLocation Beach>>
<<else>>
<<goto 'BeachNight'>>
<<SetPlayerLocation BeachNight>>
<</if>>
<</if>>
<<if _location == 'Bar'>>
<<if $location.bar.open>>
<<goto 'Bar'>>
<<SetPlayerLocation Bar>>
<<else>>
<<notify 'alert'>>The bar is closed right now!<</notify>>
<</if>>
<</if>>
<<if _location == 'Pool'>>
<<if $location.pool.open>>
<<goto 'Pool'>>
<<SetPlayerLocation Pool>>
<<else>>
<<notify 'alert'>>The pool is closed right now!<</notify>>
<</if>>
<</if>>
<</widget>>
<<widget "SetLocation">>
<<set $location[$args[0]].open = _args[1]>>
<<if def _args[2]>>
<<set $location[$args[0]].title = _args[2]>>
<</if>>
<</widget>>
<<widget "SetPlayerLocation">>
<<set $player.location = _args[0]>>
<</widget>><<widget "InitNPC">>
<<set $npc = {
"MathTeacher" :{
"title": "Math Teacher",
"name": "Mr. Thompson",
"avatar": "MathTeacher",
"location": "School"
},
"HistoryTeacher" :{
"title": "History Teacher",
"name": "Mr. Johnson",
"avatar": "HistoryTeacher",
"location": "School"
},
"Coach" :{
"title": "Coach",
"name": "Mr. Williams",
"avatar": "Coach",
"location": "School"
},
"Marcus" :{
"title": "Student",
"name": "Marcus Ramirez",
"avatar": "Marcus",
"location": "School",
},
"Natasha" :{
"title": "Student",
"name": "Natasha Bennett",
"avatar": "Natasha",
"location": "School Library"
},
"Amelia" :{
"title": "Student",
"name": "Amelia Taylor",
"avatar": "Amelia",
"location": "School Library"
},
"Janitor" :{
"title": "Janitor",
"name": "Mr. Wilson",
"avatar": "Janitor",
"location": "School"
},
"Strange" :{
"title": "Strange",
"name": "Strange",
"avatar": "Strange",
"location" : "Park",
}
}>>
<</widget>>
<<widget "InitFamily">>
<<set
$dad = {
"name" : "Dad",
"arousal" : 0,
"corruption" : 0,
"sideBarText" : "",
"relationship" : "Stepfather",
"player" : "Stepsister",
"scenes" : {
"BedroomGrope" : false,
"BedroomStudyDadGrope" : false,
"BedroomSleepDadScene" : false,
"ShowerFlash" : false,
"ProstituteSex" : false,
"WashDishes" : false
}
}>>
<<set
$brother = {
"name" : "Brother",
"arousal" : 0,
"corruption" : 0,
"sideBarText" : "",
"relationship" : "Stepbrother",
"player" : "Stepdaugther",
"scenes" : {
"BedroomGrope" : false,
"BedroomStudyGrope" : false,
"BedroomSleepScene" : false,
"BedroomFlash" : false,
"BedroomTease" : false
}
}>>
<<set
$grandpa = {
"name" : "Grandfather",
"arousal" : 0,
"corruption" : 0,
"sideBarText" : "",
"relationship" : "Stepgrandfather",
"player" : "Stepdaugther",
"scenes" : {
"BedroomGrope" : false
}
}>>
<</widget>><center>
<h1 class="ptitle">YOU ARE TIRED!</h1>
<h3>You feel very tired and go straight home to sleep.</h3>
<<button "My room 🛏️" "BedroomSleep">>
<<ChangeClothes $clothes.underwear>>
<</button>>
<<SetPlayerLocation House>>
</center><<widget "InitPlayer">>
<<set
$player = {
"name" : "Victoria",
"avatar" : "Player",
"energy" : 100,
"money" : 50,
"corruption" : {
"title" : "Pure 😇",
"level" : 0,
"points" : 0
},
"exhibitionism" : 0,
"intelligence" : 0,
"social" : 0,
"fitness" : 0,
"beauty" : 0,
"arousal" : 0,
"location" : "House",
"work" : {
"name" : "Unemployed",
"workExp" : 0,
},
"xcam" : {
"account" : false,
"name" : "Victoria",
"exp" : 0
}
}>>
<</widget>><<widget "InitQuests">>
<<set $Quests = {}>>
<<set $Quests.Game = {}>>
<<set $Quests.MathTeacher = {}>>
<<set $Quests.Coach = {}>>
<<set $Quests.Marcus = {}>>
<<set $Quests.Natasha = {}>>
<<set $Quests.Janitor = {}>>
<<set $Quests.Strange = {}>>
<<CreateQuest MathTeacher "Homework" "Go to the math class">>
<<CreateQuest MathTeacher "Tutoring" "Have private lessons with the math teacher">>
<<CreateQuest Coach "Cheerleader" "Go to the PE class">>
<<CreateQuest Game "FirstDayOfSchool" "Go to your first day of school">>
<<CreateQuest Game "SchoolTest" "Take the school test on Monday">>
<<CreateQuest Janitor "Afterclass" "Go to the classroom after class">>
<<CreateQuest Marcus "StudyWithMarcus" "Go to Marcus house and study with him">>
<<CreateQuest Natasha "LibraryExhibitionism" "Go to the library and talk with Natasha">>
<</widget>>
<<widget "FinishQuest">>
<<if _args[0].completed == false>>
<<set _args[0].completed = true>>
<<set _args[0].active = false>>
<<notify 'alert'>>_args[0].title quest completed!<</notify>>
<</if>>
<</widget>>
<<widget "StartQuest">>
<<if _args[0].completed == false>>
<<set _args[0].active = true>>
<<notify 'alert'>>New quest avaliable!<</notify>>
<</if>>
<</widget>>
<<widget "CreateQuest">>
<<set _npcName to _args[0]>>
<<set _title to _args[1]>>
<<set _description to _args[2]>>
<<if not $Quests[_npcName][_title]>>
<<set $Quests[_npcName][_title] to {
"title": _title,
"description": _description,
"progress": 0,
"active": false,
"completed": false
}>>
<</if>>
<</widget>>
<<widget "UpdateQuest">>
<<set _quest to _args[0]>>
<<set _quest.progress += _args[1]>>
<<if _args[2] != null>>
<<set _quest.description to _args[2]>>
<<notify 'alert'>>Quest _quest.title has been updated!<</notify>>
<</if>>
<</widget>>
<<widget "ShowActiveQuests">>
<<for _npcName, _npcQuests range $Quests>>
<<for _questName, _quest range _npcQuests>>
<<if _quest.active>>
<<set _titleWithSpaces to _quest.title.replace(/([A-Z])/g, (letter) => " " + letter)>>
<div>
<b>_titleWithSpaces</b>
<br>
_quest.description
</div>
<</if>>
<</for>>
<</for>>
<</widget>><<widget "InitScenes">>
<!-- PARK SCENES START -->
<<set
$parkScenes = {
"JoggingFlash" : false
}>>
<!-- PARK SCENES END -->
<!-- BEACH SCENES START -->
<<set
$beachScenes = {
"SwimFlash" : false
}>>
<!-- BEACH SCENES END -->
<!-- MALL SCENES START -->
<<set
$mallScenes = {
"MallFlash" : false
}>>
<!-- MALL SCENES END -->
<!-- CLUB SCENES START -->
<<set
$clubScenes = {
"ClubFlash" : false
}>>
<!-- CLUB SCENES END -->
<</widget>><<widget "AddCorruption">>
<<set $player.corruption.points += 1>>
<<notify 'corruption'>>Corruption +1!<</notify>>
<</widget>>
<<widget "AddExb">>
<<set $player.exhibitionism += 1>>
<<notify 'corruption'>>Exhibitionism +1!<</notify>>
<</widget>>
<<widget "AddBrotherCorruption">>
<<set $brother.corruption += 1>>
<</widget>>
<<widget "AddDadCorruption">>
<<set $dad.corruption += 1>>
<</widget>>
<<widget "AddInt">>
<<set $player.intelligence += 1>>
<<notify 'intelligence'>>Intelligence +1!<</notify>>
<</widget>>
<<widget "AddFit">>
<<set $player.fitness += 1>>
<<notify 'fitness'>>Fitness +1!<</notify>>
<</widget>>
<<widget "AddSocial">>
<<set $player.social += 1>>
<<notify 'social'>>Social +1!<</notify>>
<</widget>>
<<widget "AddArousal">>
<<if _args[0] == 0 >>
<<set $player.arousal = 0>>
<<else>>
<<set $player.arousal += 1>>
<</if>>
<</widget>>
<<widget "AddMoney">>
<<if $player.money + _args[0] >= 0 >>
<<set $player.money += _args[0]>>
<<UpdateBar>>
<</if>>
<</widget>>
<<widget "Energy">>
<<if _args[0] == 0>>
<<set $player.energy = 0>>
<<else>>
<<set $player.energy += _args[0]>>
<</if>>
<<EnergyController>>
<</widget>>
<<widget "AddRestaurantXP">>
<<set $player.work.workExp += 1>>
<</widget>><<widget "InitTime">>
<<newcycle 'time' 2>>
<<phase 'EM' 'M' 'A' 'E' 'N' 'LN'>>
<</newcycle>>
<<newcycle 'day' 1>>
<<phase 'Monday' 'Tuesday' 'Wednesday' 'Thursday' 'Friday' 'Saturday' 'Sunday'>>
<</newcycle>>
<<script>>
Cycle.get('day').suspend();
<</script>>
<<script>>
Cycle.get('time').suspend();
<</script>>
<</widget>>
<<widget "NewDay">>
<<set $game.days += 1>>
<!-- ENERGY -->
<<set $player.energy to 100>>
<!-- AROUSALS -->
<<if $dad.arousal < 4>>
<<set $dad.arousal += 1>>
<</if>>
<<if $brother.arousal < 4>>
<<set $brother.arousal += 1>>
<</if>>
<!-- GYM -->
<<if $gym.days > 0>>
<<set $gym.days -= 1>>
<</if>>
<<if $player.arousal < 10>>
<<AddArousal>>
<<else>>
<<set $player.arousal = 10>>
<</if>>
<<if $school.daysToNextTest > 0>>
<<set $school.daysToNextTest -= 1>>
<<if $school.daysToNextTest == 0>>
<<notify 'alert'>>You have a test at school today!<</notify>>
<</if>>
<</if>>
<<script>>
Cycle.get('time').reset();
Cycle.get('day').update(1);
<</script>>
<</widget>>
<!-- ADD TIME -->
<<widget "AddTime">>
<<if $game.time != "LN">>
<<run Cycle.get('time').update(_args[0])>>
<</if>>
<<TimeController>>
<<EnergyController>>
<</widget>>
<<widget "TimeController">>
<!-- RESET VARIABLES -->
<<set _times to ['LN', 'N', 'E', 'A', 'M', 'EM']>>
<<set _icons to ['🌑', '🌒', '⛅', '🌤️', '☀️', '🌤️']>>
<<for _i to 0; _i lt _times.length; _i++>>
<<if Cycle.check('time', _times[_i])>>
<<set $game.time to _times[_i]>>
<<set $game.timeIcon to _icons[_i]>>
<<break>>
<</if>>
<</for>>
<<set _days to ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]>>
<<for _i to 0; _i < _days.length; _i++>>
<<if Cycle.check('day', _days[_i])>>
<<set $game.day to _days[_i]>>
<</if>>
<</for>>
<<if $game.time == "EM">>
<<if $game.day != 'Saturday' && $game.day != 'Sunday'>>
<<SetLocation 'school' true "School 🏫">>
<</if>>
<<SetLocation 'gym' true "Gym 🏋️♂️">>
<<SetLocation 'club' false "❌ Club 🍸">>
<<SetLocation 'bar' false "❌ Bar 🍺">>
<<SetLocation 'restaurant' true "Restaurant 🍽️">>
<<SetLocation 'beach' true "Beach 🏖️">>
<<SetLocation 'park' true "Park 🌳">>
<<SetLocation 'mall' true>>
<<SetLocation 'pool' true>>
<</if>>
<<if $game.time == 'LN'>>
<<SetLocation 'park' false "⚠️ Park 🌳">>
<<SetLocation 'beach' false "⚠️ Beach 🏖️">>
<</if>>
<<if $game.time == 'N'>>
<<SetLocation 'club' true "Club 🍸">>
<<SetLocation 'restaurant' false "❌ Restaurant 🍽️">>
<<if $player.location == 'School'>>
<<goto 'CityMap'>>
<<notify 'alert'>>School is closed!<</notify>>
<</if>>
<</if>>
<<if $game.time == "E">>
<<SetLocation 'school' false "❌ School 🏫">>
<<SetLocation 'gym' false "❌ Gym 🏋️♂️">>
<<SetLocation 'bar' true "Bar 🍺">>
<<SetLocation 'marcusHouse' false "❌ Marcus's House 🏠">>
<<if $player.location == 'MarcusHouse'>>
<<goto 'CityMap'>>
<<notify 'alert'>>There's no one at Marcus's house at this time.<</notify>>
<</if>>
<</if>>
<<if $game.time == "A">>
<<SetLocation 'marcusHouse' true "Marcus's House 🏠">>
<</if>>
<<UpdateBar>>
<</widget>><center>
<<set _devLocation to ''>>
<<textbox "_devLocation" ''>>
<<button 'Go to'>>
<<goto _devLocation>>
<</button>>
<<button 'Cheats' 'Cheats'>><</button>>
<<button 'Advance Day'>>
<<NewDay>>
<<UpdateBar>>
<</button>>
</center>
<style>
button {
font-style: normal;
font-size: 20px;
font-weight: 600;
text-align: center;
transition-duration: 0.4s;
padding: 0.4em;
margin-bottom: 5px;
margin-left: auto;
margin-right: auto;
width:33.3%;
height: 52px;
border: 4px solid #08090B;
background:#2F2D34 !important;
border-radius:10px;
cursor:pointer;
line-height: normal;
box-shadow: 0 0 20px 1px #000000bf;
min-width: -webkit-fill-available;
color: white;
position:relative;
}
input[type=text] {
min-width: 100%;
}
</style><<TimeController>>
<<CorruptionController>>
<<EnergyController>>
<<CheckPatreon>>
<<switch $dad.arousal>>
<<case 0>>
<<set $dad.sideBarText to "Not aroused">>
<<case 1>>
<<set $dad.sideBarText to "Little Aroused">>
<<case 2>>
<<set $dad.sideBarText to "Aroused">>
<<case 3>>
<<set $dad.sideBarText to "Very Aroused">>
<</switch>>
<<switch $brother.arousal>>
<<case 0>>
<<set $brother.sideBarText to "Not aroused">>
<<case 1>>
<<set $brother.sideBarText to "Little Aroused">>
<<case 2>>
<<set $brother.sideBarText to "Aroused">>
<<case 3>>
<<set $brother.sideBarText to "Very Aroused">>
<</switch>>
<<UpdateBar>><center>
<h1 class="ptitle">QUESTS</h1>
<div class="grid-quests">
<<ShowActiveQuests>>
</div>
<br>
<<button 'Return ↩️'>>
<<print '<<goto "' + previous() + '">>'>>
<</button>>
</center>
<style>
/* STATUS PLAYER */
.grid-quests {
display: flex;
flex-direction: column;
gap: 10px;
width: 100%;
height: auto;
border-radius: 20px;
padding: 5px;
}
.grid-quests > div {
background-color: rgba(137, 2, 62);
text-align: center;
font-size: 24px;
color: rgba(255, 217, 218);
border-radius: 25px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.grid-quests .block {
display: flex;
flex-direction: column;
}
.grid-quests .block:not(:last-child) {
margin-bottom: 10px; /* Espaçamento entre os blocos */
}
</style><div class="card">
<p class="time-text">$game.timeIcon
<span>
<<switch $game.time>>
<<case "EM">>
Early Morning
<<case "M">>
Morning
<<case "A">>
Afternoon
<<case "E">>
Evening
<<case "N">>
Night
<<case "LN">>
Late Night
<</switch>>
</span></p>
</div>
<br>
<div class="card">
<p class="time-text">🗓️<<showcycle 'day' upperfirst>></p>
</div>
<br>
<div class="grid-container">
<<switch $player.corruption.level>>
<<case 0>>
<div class="pure">$player.corruption.title</div>
<<case 1>>
<div class="naughty">$player.corruption.title</div>
<<case 2>>
<div class="slut">$player.corruption.title</div>
<<case 3>>
<div class="whore">$player.corruption.title</div>
<</switch>>
<div>💵Money: $player.money $</div>
<<if $player.energy > 30 >>
<div>🔋Energy: $player.energy%</div>
<<else>>
<div>🪫Energy: $player.energy%</div>
<</if>>
<div>❤️🔥Arousal: $player.arousal/$game.maxArousal</div>
<div>🫦Corruption: $player.corruption.points</div>
<div>👀Exhibitionism: $player.exhibitionism</div>
<div>📖Intelligence: $player.intelligence</div>
<div>💬Social: $player.social</div>
<div>👟Fitness: $player.fitness</div>
<div>💄Beauty: $player.beauty</div>
</div>
<br>
<div class="grid-container">
<a href="https://www.patreon.com/astk1" class="grid-container" target="_blank">
<div><i class="fa-brands fa-patreon"></i> Patreon</div>
</a>
<a href="https://discord.gg/cb4YRG8gwm" class="grid-container" target="_blank">
<div><i class="fab fa-discord"></i> Discord</div>
</a>
<b>Version 0.3.1</b>
</div><script src="https://kit.fontawesome.com/a41af1217c.js" crossorigin="anonymous"></script>
<<script>>
setup.Path = "";
setup.ImagePath = setup.Path + "images/";
setup.SoundPath = setup.Path + "sounds/";
<</script>>
<<InitDev>>
<<InitTime>>
<<InitQuests>>
<<InitNPC>>
<<InitLocations>>
<<InitPlayer>>
<<InitGame>>
<<InitScenes>>
<<ClothesInit>>
<<InitFamily>><center>
<br>
<div class="sidebarClothing">
<b>Your Outfit</b>
[img[setup.ImagePath+'player/clothes/'+$player.clothing.type+'/'+$player.clothing.image]]
</div>
<br>
<div class="buttons">
<<button 'Quests' 'Quests'>><</button>>
</div>
<br>
<div class="grid-rightsidebar">
<<if $player.location == 'Restaurant'>>
<b>Work</b>
<div>$player.work.name</div>
<b>Work Experience</b>
<div>$player.work.workExp</div>
<<elseif $player.location == 'School'>>
<b>Grade</b>
<div>$school.grade</div>
<b>Days to next school test</b>
<div>$school.daysToNextTest</div>
<<else>>
<div class="block">
<div class="title">
<b>$dad.relationship</b>
</div>
<div>$dad.sideBarText</div>
<div>Corruption: $dad.corruption</div>
</div>
<div class="block">
<div class="title">
<b>$brother.relationship</b>
</div>
<div>$brother.sideBarText</div>
<div>Corruption: $brother.corruption</div>
</div>
<</if>>
</div>
<br>
<div class="buttons">
<<if $devMode>>
Dice: $game.dice /
Location: $player.location
<<button '<i class="fa-solid fa-code"></i> Dev'>>
<<set Dialog.setup("Dev")>>
<<run Dialog.wiki(Story.get("Dev").processText());>>
<<run Dialog.open()>>
<</button>>
<</if>>
<<if $items.phone.purchased == true>>
<<button 'Phone 📱' 'Phone'>><</button>>
<</if>>
<<button 'Cheats 👾'>>
<<if $patreon>>
<<goto 'Cheats'>>
<<else>>
<<goto 'ActivationPatreon'>>
<</if>>
<</button>>
<<button 'Go to your room' 'Bedroom'>><</button>>
<<button 'Walkthrough' 'Walkthrough'>><</button>>
<<if $game.devMode>>
<<button 'Add Time'>>
<<AddTime '2'>>
<<UpdateBar>>
<</button>>
$game.dice
<</if>>
</div>
</center>
<style>
.buttons button {
font-style: normal;
font-size: 20px;
font-weight: 600;
text-align: center;
transition-duration: 0.4s;
padding: 0.4em;
margin-bottom: 5px;
margin-left: auto;
margin-right: auto;
width:33.3%;
height: 52px;
border: 4px solid #08090B;
background:#2F2D34 !important;
border-radius:10px;
cursor:pointer;
line-height: normal;
box-shadow: 0 0 20px 1px #000000bf;
min-width: -webkit-fill-available;
color: white;
position:relative;
}
</style><center>
<h1 class="ptitle">CHEATS</h1>
<<SetPlayerLocation Cheats>>
<<CheckPatreon>>
<<if $patreon is false>>
<<print '<<goto "' + previous() + '">>'>>
<<notify 'alert'>>I'm smarter than you!<</notify>>
<</if>>
<h2>❗Cheats can break the game, use on your own!❗</h2>
<div class="grid-cheats">
<<button 'Add $dad.relationship corruption'>>
<<AddDadCorruption>>
<<UpdateBar>>
<</button>>
<<button 'Add $brother.relationship corruption'>>
<<AddBrotherCorruption>>
<<UpdateBar>>
<</button>>
<<button 'Add Arousal ❤️🔥'>>
<<AddArousal>>
<<UpdateBar>>
<</button>>
<<button 'Add Corruption 🫦'>>
<<AddCorruption>>
<<UpdateBar>>
<</button>>
<<button 'Add Exhibitionism 🫦'>>
<<AddExb>>
<<UpdateBar>>
<</button>>
<<button 'Add Intelligence 📖'>>
<<AddInt>>
<<UpdateBar>>
<</button>>
<<button 'Add Social 💬'>>
<<AddSocial>>
<<UpdateBar>>
<</button>>
<<button 'Add Fitness 👟'>>
<<AddFit>>
<<UpdateBar>>
<</button>>
<<button 'Add Beauty 💄'>>
<<set $player.beauty += 1>>
<<UpdateBar>>
<</button>>
<<button 'Full Energy 🔋'>>
<<set $player.energy = 100>>
<<UpdateBar>>
<</button>>
<<button 'Add 1000$ 💵'>>
<<set $player.money += 1000>>
<<UpdateBar>>
<</button>>
</div>
<br>
<<button 'Return ↩️'>>
<<print '<<goto "' + previous() + '">>'>>
<</button>>
</center>
<style>
.passage button {
width: 100%;
}
</style><center>
<h1 class="ptitle">LAPTOP</h1>
<div id="place-head">
[img[setup.ImagePath+'/house/bedroom/laptop/laptop.webp']]
</div>
<br>
<<button 'Watch porn 🔞'>>
<<if $player.arousal < 1>>
<<notify 'arousal'>>You aren't aroused enough!<</notify>>
<<else>>
<<goto 'WatchPorn'>>
<</if>>
<</button>>
<<button 'xCam 📷' 'xCam'>><</button>>
<<button 'Cheats 👾' 'Cheats'>><</button>>
<<button 'Turn off 🔴' 'Bedroom'>><</button>>
</center><center>
<h1 class="ptitle">PORN</h1>
<<set $game.randomMedia to either("masturbate.webp", "masturbate2.webp", "masturbate3.webp", "masturbate4.gif", "masturbate5.webp", "masturbate6.webp", "masturbate7.webp", "masturbate8.webp")>>
<div class='watchporn'>
[img[setup.ImagePath+'/house/bedroom/laptop/watchporn/' + $game.randomMedia]]
</div>
<<message "You watch some porn at the laptop and release your arousal">>
<<notify 'corruption'>>Player corruption increased<</notify>>
<<AddArousal 0>>
<<AddCorruption>>
<br>
<<button 'Return ↩️' 'Laptop'>><</button>>
</center><center>
<h1 class="ptitle">LIVESTREAM</h1>
<<set $game.randomMoney to random(100, 150)>>
<<AddMoney $game.randomMoney>>
<<AddTime 2>>
<<set $player.xcam.exp += 1>>
<h3>You made a stream and won $game.randomMoney $!</h3>
<<set $game.randomMedia to either("camgirl.webp", "camgirl1.webp", "camgirl2.webp", "camgirl3.webp", "camgirl4.webp", "camgirl5.webp", "camgirl6.webp")>>
[img[setup.ImagePath+'/house/bedroom/laptop/xcam/' + $game.randomMedia]]
<br><br>
<<button 'Return ↩️' 'xCam'>><</button>>
</center><center>
<h1 class="ptitle">XCAM</h1>
<div id="place-head">
[img[setup.ImagePath+'/house/bedroom/laptop/laptop.webp']]
</div>
<br>
<div>
<<if $player.xcam.account == false>>
<<button 'Create an account 🔗'>>
<<if $player.corruption.level < 3>>
<<NotifyCorruption 3>>
<<else>>
<<set $player.xcam.account == true>>
<<script>>
Dialog.setup("Please enter your model name: ");
Dialog.wiki('<<textbox "$player.xcam.name" "Victoria" autofocus>><<button "Done">><<goto "xCam">><<set $player.xcam.account to true>><<run Dialog.close()>><</button>>');
Dialog.open({top: "calc(50vh - 51px)"}, setup.done);
<</script>>
<span id="name"></span>
<</if>>
<</button>>
<</if>>
<<if $player.xcam.account == true>>
<<button 'Go Live 🎥' 'Live'>>
<<set $player.xcam.exp += 1>>
<</button>>
<</if>>
<<button 'Return ↩️' 'Laptop'>><</button>>
</div>
</center><center>
<h1 class="ptitle">PHONE</h1>
<div id="place-head">
[img[setup.ImagePath+'/house/bedroom/phone/phonebanner.jpg']]
</div>
<br>
<<button 'Take a selfie 📸'>>
<<notify 'alert'>>Work in progress..<</notify>>
<</button>>
<<button 'Cheats 👾' 'Cheats'>><</button>>
<<button 'Turn off 🔴'>>
<<print '<<goto "' + previous() + '">>'>>
<</button>>
</center><center>
<h1 class="ptitle">WALKTHROUGH</h1>
<<button 'Return ↩️'>>
<<print '<<goto "' + previous() + '">>'>>
<</button>>
<table class="container">
<thead>
<tr>
<th colspan="5"><h1>House</h1></th>
</tr>
</thead>
<thead>
<tr>
<th><h1>Scene</h1></th>
<th><h1>Requirements</h1></th>
<th><h1>Chance</h1></th>
<th><h1>Guide</h1></th>
<th><h1>Unlocked?</h1></th>
</tr>
</thead>
<tr>
<td>Bedroom grope</td>
<td>$dad.relationship needs to be at least little aroused</td>
<td>20%</td>
<td>Go to your room</td>
<td><<if $dad.scenes.BedroomGrope>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Sex/Grope while you study</td>
<td>$dad.relationship little aroused and at least 1 corruption</td>
<td>20%</td>
<td>Study at your room</td>
<td><<if $dad.scenes.BedroomStudyGrope>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Sex/Grope while you sleep</td>
<td>$dad.relationship needs to be at least little aroused</td>
<td>25%</td>
<td>Sleep at your room</td>
<td><<if $dad.scenes.BedroomSleepDadScene>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Flash at shower</td>
<td>$dad.relationship little aroused and player corruption 20+</td>
<td>50%</td>
<td>Take a shower at house bathroom</td>
<td><<if $dad.scenes.ShowerFlash>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Sex with a prostitute</td>
<td></td>
<td>25%</td>
<td>Go to $dad.relationship's bedroom</td>
<td><<if $dad.scenes.ProstituteSex>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Grope while washing dishes</td>
<td></td>
<td>33%</td>
<td>Wash the dishes at the kitchen</td>
<td><<if $dad.scenes.WashDishes>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Bedroom grope</td>
<td>$brother.relationship needs to be at least little aroused</td>
<td>20%</td>
<td>Go to your room</td>
<td><<if $brother.scenes.BedroomGrope>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>$brother.relationship tease</td>
<td>5+ corruption</td>
<td>100%</td>
<td>Go to your $brother.relationship bedroom</td>
<td><<if $brother.scenes.BedroomTease>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>$brother.relationship flash</td>
<td>15+ corruption</td>
<td>100%</td>
<td>Go to your $brother.relationship bedroom</td>
<td><<if $brother.scenes.BedroomFlash>>✅<<else>>❌<</if>></td>
</tr>
/*SCHOOL */
<thead>
<tr>
<th colspan="5"><h1>School</h1></th>
</tr>
</thead>
<thead>
<tr>
<th><h1>Scene</h1></th>
<th><h1>Requirements</h1></th>
<th><h1>Chance</h1></th>
<th><h1>Guide</h1></th>
<th><h1>Unlocked?</h1></th>
</tr>
</thead>
<tr>
<td>Classroom flash</td>
<td>15+ corruption</td>
<td>50%</td>
<td>Go to classroom and socialize</td>
<td><<if $school.scenes.ClassroomFlash>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Bathroom flash</td>
<td>15+ corruption</td>
<td>50%</td>
<td>Go to bathroom and flash</td>
<td><<if $school.scenes.BathroomFlash>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Bathroom sex</td>
<td>30+ corruption</td>
<td>50%</td>
<td>Go to the bathroom and flash to the student</td>
<td><<if $school.scenes.BathroomStudentSex>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Tutoring event</td>
<td>Have a grade lower than 6 on the test</td>
<td>100%</td>
<td>Take the school test on monday</td>
<td><<if $Quests.MathTeacher.Tutoring.completed>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Join Cheerleader</td>
<td>15+ Fitness</td>
<td>100%</td>
<td>Go to the gym class</td>
<td><<if $Quests.Coach.Cheerleader.completed>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Homework Deliver</td>
<td>Do your homework at home and 30+ corruption</td>
<td>100%</td>
<td>Deliver the homework to the teacher at classroom</td>
<td><<if $Quests.MathTeacher.Homework.completed>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Janitor Event</td>
<td>Tutoring quest completed</td>
<td>50%</td>
<td>Study in the classroom afterclass</td>
<td><<if $Quests.Janitor.Afterclass.completed>>✅<<else>>❌<</if>></td>
</tr>
/*RESTAURANT */
<thead>
<tr>
<th colspan="5"><h1>Restaurant</h1></th>
</tr>
</thead>
<thead>
<tr>
<th><h1>Scene</h1></th>
<th><h1>Requirements</h1></th>
<th><h1>Chance</h1></th>
<th><h1>Guide</h1></th>
<th><h1>Unlocked?</h1></th>
</tr>
</thead>
<tr>
<td>Interview</td>
<td>15+ corruption</td>
<td>100%</td>
<td>Apply for the restaurant job interview</td>
<td><<if $restaurant.scenes.InterviewScene>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Flash at working</td>
<td>15+ corruption</td>
<td>50%</td>
<td>Work at restaurant</td>
<td><<if $restaurant.scenes.InterviewScene>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>VIP Promotion</td>
<td>30+ corruption and 10 working xp</td>
<td>100%</td>
<td>Work at restaurant</td>
<td><<if $restaurant.scenes.PromotedScene>>✅<<else>>❌<</if>></td>
</tr>
/* GYM */
<thead>
<tr>
<th colspan="5"><h1>Gym</h1></th>
</tr>
</thead>
<thead>
<tr>
<th><h1>Scene</h1></th>
<th><h1>Requirements</h1></th>
<th><h1>Chance</h1></th>
<th><h1>Guide</h1></th>
<th><h1>Unlocked?</h1></th>
</tr>
</thead>
<tr>
<td>Gym Flash</td>
<td>15+ corruption and fitness clothes</td>
<td>50%</td>
<td>Workout at the academy</td>
<td><<if $restaurant.scenes.InterviewScene>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Sex with personal</td>
<td>30+ corruption and fitness clothes</td>
<td>50%</td>
<td>Wear the slutiest fitness clothes and workout at gym</td>
<td><<if $restaurant.scenes.InterviewScene>>✅<<else>>❌<</if>></td>
</tr>
/* PARK */
<thead>
<tr>
<th colspan="5"><h1>Park</h1></th>
</tr>
</thead>
<thead>
<tr>
<th><h1>Scene</h1></th>
<th><h1>Requirements</h1></th>
<th><h1>Chance</h1></th>
<th><h1>Guide</h1></th>
<th><h1>Unlocked?</h1></th>
</tr>
</thead>
<tr>
<td>Flash while jogging</td>
<td>15+ corruption</td>
<td>50%</td>
<td>Jog at the park</td>
<td><<if $parkScenes.JoggingFlash>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Get fucked at the park</td>
<td>Late night</td>
<td>33%</td>
<td>Jog in the park late night</td>
<td><<if $park.scenes.RapeAtPark>>✅<<else>>❌<</if>></td>
</tr>
/* Club */
<thead>
<tr>
<th colspan="5"><h1>Club</h1></th>
</tr>
</thead>
<thead>
<tr>
<th><h1>Scene</h1></th>
<th><h1>Requirements</h1></th>
<th><h1>Chance</h1></th>
<th><h1>Guide</h1></th>
<th><h1>Unlocked?</h1></th>
</tr>
</thead>
<tr>
<td>Club Flash</td>
<td>15+ corruption</td>
<td>50%</td>
<td>Dance in the club</td>
<td><<if $clubScenes.ClubFlash>>✅<<else>>❌<</if>></td>
</tr>
<tr>
<td>Club Gloryhole</td>
<td>15+ corruption</td>
<td>100%</td>
<td>Go to the club bathroom cabin</td>
<td><<if $club.scenes.Gloryhole>>✅<<else>>❌<</if>></td>
</tr>
/* BEACH */
<thead>
<tr>
<th colspan="5"><h1>Beach</h1></th>
</tr>
</thead>
<thead>
<tr>
<th><h1>Scene</h1></th>
<th><h1>Requirements</h1></th>
<th><h1>Chance</h1></th>
<th><h1>Guide</h1></th>
<th><h1>Unlocked?</h1></th>
</tr>
</thead>
<tr>
<td>Swimming Flash</td>
<td>15+ corruption</td>
<td>50%</td>
<td>Swim at beach</td>
<td><<if $beachScenes.SwimFlash>>✅<<else>>❌<</if>></td>
</tr>
/* MALL */
<thead>
<tr>
<th colspan="5"><h1>Mall</h1></th>
</tr>
</thead>
<thead>
<tr>
<th><h1>Scene</h1></th>
<th><h1>Requirements</h1></th>
<th><h1>Chance</h1></th>
<th><h1>Guide</h1></th>
<th><h1>Unlocked?</h1></th>
</tr>
</thead>
<tr>
<td>Mall Flash</td>
<td>15+ corruption</td>
<td>100%</td>
<td>Go to the mall</td>
<td><<if $mallScenes.MallFlash>>✅<<else>>❌<</if>></td>
</tr>
/* MALL */
<thead>
<tr>
<th colspan="5"><h1>Marcus</h1></th>
</tr>
</thead>
<thead>
<tr>
<th><h1>Scene</h1></th>
<th><h1>Requirements</h1></th>
<th><h1>Chance</h1></th>
<th><h1>Guide</h1></th>
<th><h1>Unlocked?</h1></th>
</tr>
</thead>
<tr>
<td>Sex</td>
<td>15+ corruption</td>
<td>100%</td>
<td>Have a good grade on school test, he will ask you for study with him</td>
<td><<if $Quests.Marcus.StudyWithMarcus.completed>>✅<<else>>❌<</if>></td>
</tr>
/*END TABLE */
</table>
<<button 'Return ↩️'>>
<<print '<<goto "' + previous() + '">>'>>
<</button>>
</center>
<style>
@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);
body {
font-family: 'Open Sans', sans-serif;
font-weight: 300;
line-height: 1.42em;
color:#A7A1AE;
background-color:#1F2739;
}
h1 {
font-size:3em;
font-weight: 300;
line-height:1em;
text-align: center;
color: #79d3fd;
}
h2 {
font-size:1em;
font-weight: 300;
text-align: center;
display: block;
line-height:1em;
padding-bottom: 2em;
color: #FB667A;
}
h2 a {
font-weight: 700;
text-transform: uppercase;
color: #FB667A;
text-decoration: none;
}
.blue { color: #185875; }
.yellow { color: #FFF842; }
.container th h1 {
font-weight: bold;
font-size: 1em;
text-align: center;
color: #41a9da;
}
.container td {
font-weight: normal;
font-size: 1em;
-webkit-box-shadow: 0 2px 2px -2px #0E1119;
-moz-box-shadow: 0 2px 2px -2px #0E1119;
box-shadow: 0 2px 2px -2px #0E1119;
}
.container {
text-align: center;
overflow: hidden;
width: 80%;
margin: 0 auto;
display: table;
padding: 0 0 8em 0;
}
.container td, .container th {
padding-bottom: 2%;
padding-top: 2%;
padding-left:2%;
width: 20%;
}
/* Background-color of the odd rows */
.container tr:nth-child(odd) {
background-color: #323C50;
}
/* Background-color of the even rows */
.container tr:nth-child(even) {
background-color: #2C3446;
}
.container th {
background-color: #1F2739;
text-align: center;
}
.container td:first-child { color: #FB667A; }
.container tr:hover {
background-color: #464A52;
-webkit-box-shadow: 0 6px 6px -6px #0E1119;
-moz-box-shadow: 0 6px 6px -6px #0E1119;
box-shadow: 0 6px 6px -6px #0E1119;
}
.container td:hover {
background-color: #FFF842;
color: #403E10;
font-weight: bold;
box-shadow: #7F7C21 -1px 1px, #7F7C21 -2px 2px, #7F7C21 -3px 3px, #7F7C21 -4px 4px, #7F7C21 -5px 5px, #7F7C21 -6px 6px;
transform: translate3d(6px, -6px, 0);
transition-delay: 0s;
transition-duration: 0.4s;
transition-property: all;
transition-timing-function: line;
}
@media (max-width: 800px) {
.container td:nth-child(4),
.container th:nth-child(4) { display: none; }
}
</style><!-- UPDATE RIGHT SIDE BAR -->
<<widget "UpdateBar">><<silently>>
<<replace "#story-caption">><<include "StoryCaption">><</replace>>
<<script>>updateright();<</script>>
<</silently>><</widget>>
<!-- MESSAGE INFO -->
<<widget "message">>
<span class="message">_args[0]</span>
<</widget>>
<!-- SPEECH -->
<<widget "Speech">>
<<print "<<speech '"+ _args[0].avatar + "' ' "+ _args[0].name +"'>> "+ _args[1] +"<</speech>>">>
<</widget>>
<!-- BUY GENERIC -->
<<widget "Buy">>
<<if $player.money >= _args[0].price>>
<<set $player.money -= _args[0].price>>
<<set _args[0].purchased = true>>
<<notify 'alert'>>You bought _args[0].name!<</notify>>
<<run Engine.show()>>
<<else>>
<<notify 'alert'>>You don't have enough money!<</notify>>
<</if>>
<</widget>>
<!-- BUY GYM -->
<<widget "BuyGym">>
<<if $player.money >= _args[0]>>
<<set $player.money -= _args[0]>>
<<notify 'fitness'>>You bought _args[1] day membership!<</notify>>
<<set $gym.days = _args[1]>>
<<goto 'Gym'>>
<<run Engine.show()>>
<<else>>
<<notify 'alert'>>You don't have enough money!<</notify>>
<</if>>
<</widget>>
<<widget "lr">>
<<print "<div class='linkreplace macro-linkreplace'><p>_args[0]</p></div>">>
<</widget>><<widget video>>
<<set _extension = ($args[1] ?? 'mp4')>>
<<set _videoType = 'video/' + _extension>>
<<set $url to setup.ImagePath+'/'+$args[0]+'.' + _extension>>
<br><video controls autoplay loop onloadstart="this.volume=0.0">
<source @src="$url" @type="_videoType">
</video><br>
<</widget>><div class="hideuiR">
<center>
<h1>🔞 WARNING 🔞</h1>
<h3>This game contains mature content and is not suitable for all audiences. You must be of legal age in your jurisdiction to play this game. By accepting these terms, you confirm you meet the age requirement.</h3>
<<button 'Accept' 'WarningGame'>><</button>>
<a href="https://f95zone.to/"><<button "Reject">><</button>></a>
</center>
</div>
<style>
#right-ui-bar {
display: none;
}
#ui-bar {
display: none;
}
#story a.link-external:after {
content: "";
}
</style><center>
<h1 class="ptitle">CHARACTER</h1>
<div id="place-head">
[img[setup.ImagePath+'/game/banner.png']]
</div>
<br>
<<message 'Choose <b>your name</b>'>>
<br>
<<textbox "$player.name" "Victoria">>
<br><br>
<<message 'Choose your relationship with the guys that live with you and what they are to you'>>
<<speech "Dad" "Old Man">>Who am I to you ?<</speech>>
He is yours
<<textbox "$dad.relationship" "Stepfather">>
and you are his
<<textbox "$dad.player" "Stepdaughter">>
<br>
<<speech "Brother" "Young Man">>Who am I to you ?<</speech>>
He is yours
<<textbox "$brother.relationship" "Stepbrother">>
and you are his
<<textbox "$brother.player" "Stepsister">>
<br><br>
<<button 'Continue' 'GameMechanics'>><</button>>
</center>
<style>
#right-ui-bar {
display: none;
}
#ui-bar {
display: none;
}
</style><center>
<h1 class="ptitle">GAME MECHANICS</h1>
This game is still in the development phase, so there will be incomplete scenes, inaccessible locations, or with little content. There will also possibly be bugs during your gameplay.
<h2>Scenes and Actions</h2>
The game's actions and scenes are unlocked based on your corruption level, your initial stage is "Pure", every 15 points of corruption your stage evolves and you will have access to new actions and scenes.
<br>
[img[setup.ImagePath+'/game/corruptionStage.png']]
<h2>Time</h2>
[img[setup.ImagePath+'/game/time.png']]
<br>
The game has a time system, actions such as taking a shower, studying, and working out advance one or half period of the day. The day is divided into:
<br>
<b>Early Morning > Morning > Afternoon > Evening > Night > Late Night</b>
<h2>Stats</h2>
[img[setup.ImagePath+'/game/stats.png']]
<br>
Your character has attributes that influence events and actions, and you can evolve them during your gameplay in the game, for example, when studying you gain more intelligence,
when working out or walking you gain fitness points. Some attributes still do not have a direct influence on the game and do not even unlock new things.
<h2>Clothes</h2>
[img[setup.ImagePath+'/game/clothes.png']]
<br>
The game has a clothing system that you can purchase and wear to access certain locations such as schools and clubs.
Some scenes are only released with specific clothes. Clothes increase your beauty attribute, the more expensive the clothes, the greater the increase.
<h2>House Events</h2>
[img[setup.ImagePath+'/game/family.png']]
<br>
Events related to people who live in the same house as you are linked to the state and its corruption. Currently, they can be "Normal", "Aroused" and "Very Aroused".
This status directly influences the scenes that occur indoors, the more excited they are, the further the events will go. Corruption also influences.
<br><br>
<<button 'History' 'History'>><</button>>
</center><center>
<div id="place-head">
[img[setup.ImagePath+'/game/banner.png']]
</div>
<h1 class="ptitle">EPISODE 1</h1>
<div id="place-head"></div>
<h3>$player.name lost her mother while he was still a baby, after which his father fell into a terrible depression and ended up betting a large part of his wealth on gambling and spending it on alcohol.
Nowadays, $player.name finds herself in a situation of poverty and has the dream of growing up in life and becoming a rich and successful woman.</h3>
<h3>You need to work hard at school and get a job to save money so you can leave home and start your successful life.</h3>
<br>
<div>
<<button 'Start' 'Bedroom' >>
<<StartQuest $Quests.Game.FirstDayOfSchool>>
<</button>>
</div>
</center>
<style>
#right-ui-bar {
display: none;
}
#ui-bar {
display: none;
}
</style><div class="hideuiR">
<center>
<h1>⚠️ WARNING ⚠️</h1>
<h3>This game is mainly focused on Grind/Sandbox, if you have as a priority a great story, with a lot of text to read maybe this game does not like you so much.</h3>
<h3>As it is in an early version, the game does not offer much play time, but your feedback is very important for development.</h3>
<h3>All characters and stories in this game are purely fictional, they have no relationship with the real world.</h3>
<<button 'I understand' 'Character'>><</button>>
<a href="https://f95zone.to/"><<button "This is not my type of game">><</button>></a>
</center>
</div>
<style>
#right-ui-bar {
display: none;
}
#ui-bar {
display: none;
}
#story a.link-external:after {
content: "";
}
</style>