Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
Loading…
//Welcome to degradation!//
''This game is meant for players 18+!''
''DISCLAIMER:''
This is an 18+ game by Wel Ard. It is a work of fiction and should not be taken as more than erotic writing. All characters are 18+
Discord for suggestions/to message me: https://discord.gg/dczSkTVG2e
''List of kinks/fetishes:''
//Humiliation
SPH
Cuck
Blackmail
Rape
Feminization
Incest//
''Thank you to Sissy Serahhh for letting me use a ton of your pictures and even modeling some for me!''
//All characters appearing in this work are fictitious. Any resemblance to real persons, living or dead, is purely coincidental.//
[[I confirm I am at least 18 years old|Intro]]@@.money;Money: $player.money@@
@@.feminization;Feminization: $player.feminization@@
@@.degradation;Degradation:$player.degradation@@
Day: <<date>>
Time of Day: <<if $timeofday == 0>> Early Morning <<elseif $timeofday ==0.25>> Morning <<elseif $timeofday == 0.50>> Afternoon <<elseif $timeofday == 0.75>> Evening <<elseif $timeofday == 1>> Midnight<</if>>
<<if $bullytask >= 2>>
Days to complete next task: $bullyfail
<</if>>
<<switch $bullytask>>
<<case 1>> ''Task:''$bully.name wants a pair of $mom.name's panties. Am I really going to do this?
<<case 2 3 4>> ''Task:''$bully.name wants me in $mom.name's panties and my beard clean shaven every day. What choice do I have?
<<case 5>>
Time to go see what $bully.name wants...
<<case 6 7>> ''Task:''$bully.name wants me in $mom.name's panties, some sort of hosiery and clean shaven... //Am I really going along with this?//
<<case 8 9>>
''Task:'' $bully.name wants me in the usual get up, with the added addition that I need to shave my whole body. $friend.name can probably help with that...
<<case 10>>
''Task:'' $bully.name wants a picture of $mom.name's tits... Maybe while she's asleep...
<</switch>>
<<if $begin == 0>>
@@.degradation;Welcome to Degradation@@
<<else>>
<<button "Return Home" "Bedroom">>
<</button>>
<<button "Examine Self" "self">>
<</button>>
<<button "Debug" "debug">>
<</button>>
<</if>>
Created by: Wel Ard\
<<set $is18 = 1>>
<<if $is18 == 1>> <img src="images/10.jpg" width="50%">
<<elseif $is18 == 0>> Closed
<</if>>
Before we get going, let's pick our names!
What's your name?
<<textbox "$player.name" "Chase" autofocus>>
Please customize the names of the other characters in the game to your liking.
Your mother's name?
<<textbox "$mom.name" "Mom">>
Your bully's name?
<<textbox "$bully.name" "Chris">>
Your female crush/friend's name?
<<textbox "$friend.name" "Sarah">>
<<link "Begin" "Begin">>
<<set $begin to 1>>
<</link>>@@.degradation;//Welcome to Degradation! Allow me to set the scene for you...//@@
$player.name is a young, 18 year old boy who lives at home with his single mother, you call her $mom.name. $mom.name is a small but fierce businesswoman. She expects the best from you and will do anything to help you achieve your goals. She generally dresses conservatively, but it is impossible to hide her large bust. Her breasts are the source of much talk and jokes from your classmates.
<img src="images/momanime.jpg" height="600px" width="450px" >
Your father has been out of the picture since you were young, but that has never set you back. Despite your rather small frame, you've managed to be quite the successful student at the esteemed Oktober Academy, a private school downtown. It's your senior year, you've never been popular but never stood out too much either. Except to $bully.name, for some reason he's made it his life mission to fuck with you.
@@.mc;//"The strongest survive, right?"//@@
<img src="images/sarah1.jpg" height="600px" width="450px" >
This is $friend.name, another 18 year old senior at Oktober Academy. The two of you have been friends since middle school, you would like to be more than that but she seems oblivious to any advances you make. She's quite flirty and loves to overshare, the two of you will be going your separate ways after graduation, so if there was ever a time to make a move, it's now!
Oktober Academy is one of the premier prep schools in the country and boasts the #1 Ivy League attendance of any high school in the nation. You take your grades very seriously, you've already got an acceptance to Harvard and nothing is going to get in the way of that. All you have to do is keep your grades up and you're out of this town.
[[Go to your room|Bedroom]]/*
Date & Time Widget Setup
*/
<<set
window.GameDays to [
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
];
window.GameMonths to [
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
];
/*
Below we have to use the multi-parameter version of the Date
constructor, rather than the date string version, because the
date string version treats a missing timezone offset as UTC.
While there are ways to determine players' timezone offsets,
so they could be added to a date string, it's more convenient
simply to use the multi-parameter constructor.
The point of this is so that you can simply initialize the game
world clock to whatever date and time you wish without having to
worry about the players' timezone offsets, while still ensuring
that they all see the same game world dates and times.
*/
/* params: year , month(0-based) , day , hour(24H) , minute [, second ] */
$gameDate to new Date(2014, 2, 17,); /* e.g. Mar 17, 2015 03:24 */
>>
/*
Date & Time Advancement Widget Definitions
*/
/* Adds the specified number of minutes. */
<<widget "addmins">>\
<<run $gameDate.setMinutes($gameDate.getMinutes() + $args[0])>>\
<</widget>>
/* Adds the specified number of hours. */
<<widget "addhours">>\
<<run $gameDate.setHours($gameDate.getHours() + $args[0])>>\
<</widget>>
/* Adds the specified number of days. */
<<widget "adddays">>\
<<run $gameDate.setHours($gameDate.getHours() + $args[0] * 24)>>\
<</widget>>
/*
Date & Time Printing Widget Definitions
*/
/* Prints the current date ("{weekday} {month} {day}, {year}"). */
<<widget "date">>\
<<print String.format("{0} {1} {2}, {3}",
GameDays[$gameDate.getDay()],
GameMonths[$gameDate.getMonth()],
$gameDate.getDate(),
$gameDate.getFullYear()
)>>\
<</widget>>
/* Prints the current time (12H). */
<<widget "time12hr">>\
<<if $gameDate.getHours() eq 0>>\
12\
<<elseif $gameDate.getHours() gt 12>>\
<<print $gameDate.getHours() - 12>>\
<<else>>\
<<print $gameDate.getHours()>>\
<</if>>:\
<<if $gameDate.getMinutes() lt 10>>0<</if>><<print $gameDate.getMinutes()>> \
<<if $gameDate.getHours() gte 12>>PM<<else>>AM<</if>>\
<</widget>>
/* Prints the current time (24H). */
<<widget "time24hr">>\
<<if $gameDate.getHours() lt 10>>0<</if>><<print $gameDate.getHours()>>:\
<<if $gameDate.getMinutes() lt 10>>0<</if>><<print $gameDate.getMinutes()>>\
<</widget>>
/* Prints the current date and time (12H). */
<<widget "datetime">><<date>> <<time12hr>> (<<time24hr>>)<</widget>><<if $bullyfail < 1>>
I failed to follow $bully.name's tasks. //$bully.name takes his evidence straight to Ms. Thaxton and $mom.name. Both are horrified. Ms. Thaxton reports you to both the Principal and the police. Your dreams of Harvard and maybe even freedom, are over.//
<<else>>
<img src="images/bedroom.jpg" width="50%">
<<if GameDays[$gameDate.getDay()] is "Sat" || GameDays[$gameDate.getDay()] is "Sun">>
//No school on the weekends, I'm free to do whatever I want!//
<<else>>
//yawn// ''It's a school day... Better put my uniform on.''
[[Go to school|Oktober]]
<</if>>
[[Open your wardrobe|Wardrobe]]
[[Enter the bathroom|Bathroom]]
[[Hop on the computer|Computer]]
<<if $player.outerTop == "" || $player.outerbottom == "">>
''I can't go downstairs without pants and a shirt on! $mom.name is just downstairs.''
<<else>>
[[Go downstairs|Livingroom]]
<</if>>
<<if $timeofday >= 0.75>>
<<link "Go to sleep" "Bedroom">>
<<set $timeofday to 0>>
<<adddays 1>>
<<set $player.beard += 0.25>>
<<set $player.bodyhair += 0.1>>
<<set $mathscore -= 0.25>>
<<set $englishscore -=0.25>>
<<set $historyscore -=0.25>>
<<set $bullyfail -= 1>>
<<set $checkedtoday to 0>>
<</link>>
<<else>> It's too early to go to sleep, I'm not tired yet.
<</if>>
<</if>><img src="images/wardrobe.jpg" width="50%">
''Outfits:''
<<link "Equip Outfit 1 (Casual)" "Wardrobe">>
<<set $player.headSlot to $outfitone.headSlot>>
<<set $player.outerTop to $outfitone.outerTop>>
<<set $player.underTop to $outfitone.underTop>>
<<set $player.outerbottom to $outfitone.outerbottom>>
<<set $player.underbottoms to $outfitone.underbottoms>>
<<set $player.penis to $outfitone.penis>>
<<set $player.hosiery to $outfitone.hosiery>>
<<set $player.socks to $outfitone.socks>>
<<set $player.shoes to $outfitone.shoes>>
<</link>>
Outfit 1: Head: $outfitone.headSlot, Top: $outfitone.outerTop, Under-Top: $outfitone.underTop, Pants/Skirts: $outfitone.outerbottom, Underwear: $outfitone.underbottoms, Penis: $outfitone.penis, Hosiery: $outfitone.hosiery, Socks: $outfitone.socks, Shoes: $outfitone.shoes
<<link "Equip Outfit 2 (School)" "Wardrobe">>
<<set $player.headSlot to $outfittwo.headSlot>>
<<set $player.outerTop to $outfittwo.outerTop>>
<<set $player.underTop to $outfittwo.underTop>>
<<set $player.outerbottom to $outfittwo.outerbottom>>
<<set $player.underbottoms to $outfittwo.underbottoms>>
<<set $player.penis to $outfittwo.penis>>
<<set $player.hosiery to $outfittwo.hosiery>>
<<set $player.socks to $outfittwo.socks>>
<<set $player.shoes to $outfittwo.shoes>>
<</link>>
Outfit 2: Head: $outfittwo.headSlot, Top: $outfittwo.outerTop, Under-Top: $outfittwo.underTop, Pants/Skirts: $outfittwo.outerbottom, Underwear: $outfittwo.underbottoms, Penis: $outfittwo.penis, Hosiery: $outfittwo.hosiery, Socks: $outfittwo.socks, Shoes: $outfittwo.shoes
''Tops''
<<if $ownedclothes.includes("tshirt")>>
<<linkreplace "Put on a tshirt">>
<<set $player.outerTop to "tshirt">>
You put on a tshirt.
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.outerTop to "tshirt">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.outerTop to "tshirt">>
Added to outfit 2
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("schoolshirt")>>
<<linkreplace "Put on your school blazer">>
<<set $player.outerTop to "schoolshirt">>
You put on your Oktober Academy blazer, you're ready for school!
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.outerTop to "schoolshirt">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.outerTop to "schoolshirt">>
Added to outfit 2
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("schoolgirlshirt")>>
<<linkreplace "Put on your school girl shirt">>
<<set $player.outerTop to "schoolgirlshirt">>
$player put's on a girl's Oktober Academy shirt, making sure to stuff the chest with nearby tissues.
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.outerTop to "schoolgirlshirt">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.outerTop to "schoolgirlshirt">>
Added to outfit 2
<</linkreplace>>
<</if>>
''Bottoms''
<<if $ownedclothes.includes("jeans")>>
<<linkreplace "Put on some jeans">>
<<set $player.outerbottom to "jeans">>
You put on a pair of jeans!
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.outerbottom to "jeans">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.outerbottom to "jeans">>
Added to outfit 2
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("schoolpants")>>
<<linkreplace "Put on your school trousers">>
<<set $player.outerbottom to "schoolpants">>
You put on a pair of black trousers, ready for school!
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.outerbottom to "schoolpants">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.outerbottom to "schoolpants">>
Added to outfit 2
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("schoolskirt")>>
<<linkreplace "Put on your school skirt">>
<<set $player.outerbottom to "schoolskirt">>
You put on the Oktober Academy skirt showing off your legs!
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("schoolskirt")>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.outerbottom to "schoolskirt">>
Added to outfit 1
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("schoolskirt")>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.outerbottom to "schoolskirt">>
Added to outfit 2
<</linkreplace>>
<</if>>
''Underwear''
<<if $ownedclothes.includes("boxers")>>
<<linkreplace "Put on some boxers">>
<<set $player.underbottoms to "boxers">>
You put on a pair of boxers!
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.underbottoms to "boxers">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.underbottoms to "boxers">>
Added to outfit 2
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("momspanties")>>
<<linkreplace "Put on $mom.name's panties">>
<<set $player.underbottoms to "momspanties">>
$player.name slips on his borrowed pair of panties.
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.underbottoms to "momspanties">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.underbottoms to "momspanties">>
Added to outfit 2
<</linkreplace>>
<</if>>
''Socks/Hosiery''
<<if $ownedclothes.includes("athletic socks")>>
<<linkreplace "Put on athletic socks">>
<<set $player.socks to "athleticsocks">>
$player.name slips on a pair of athletic socks.
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.socks to "athleticsocks">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.socks to "athleticsocks">>
Added to outfit 2
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("black stockings")>>
<<linkreplace "Put on black thigh high stockings">>
<<set $player.hosiery to "black stockings">>
$player.name gently slides the stockings up their legs. Taking a moment to admire how nice their legs look now.
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.hosiery to "black stockings">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.hosiery to "black stockings">>
Added to outfit 2
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("white stockings")>>
<<linkreplace "Put on white thigh high stockings">>
<<set $player.hosiery to "white stockings">>
$player.name gently slides the stockings up their legs. Taking a moment to admire how nice their legs look now.
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.hosiery to "white stockings">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.hosiery to "white stockings">>
Added to outfit 2
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("black pantyhose")>>
<<linkreplace "Put on black pantyhose">>
<<set $player.hosiery to "black pantyhose">>
$player.name gently slides the pantyhose up to their waist. The tightness helping to hide your already small penis.
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.hosiery to "black pantyhose">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.hosiery to "black pantyhose">>
Added to outfit 2
<</linkreplace>>
<</if>>
''Shoes''
<<if $ownedclothes.includes("sneakers")>>
<<linkreplace "Put on a pair of sneakers">>
<<set $player.shoes to "sneakers">>
$player.name slips a pair of sneakers on.
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.shoes to "sneakers">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.shoes to "sneakers">>
Added to outfit 2
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("schoolshoes")>>
<<linkreplace "Put on your school shoes.">>
<<set $player.shoes to "schoolshoes">>
$player.name slips on their school shoes.
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.shoes to "schoolshoes">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.shoes to "schoolshoes">>
Added to outfit 2
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("schoolpumps")>>
<<linkreplace "Put on your school pumps">>
<<set $player.shoes to "schoolpumps">>
$player.name slips on their school flats.
<</linkreplace>>
<<linkreplace "Add to outfit 1">>
<<set $outfitone.shoes to "schoolpumps">>
Added to outfit 1
<</linkreplace>>
<<linkreplace "Add to outfit 2">>
<<set $outfittwo.shoes to "schoolpumps">>
Added to outfit 2
<</linkreplace>>
<</if>>
[[Return to Bedroom|Bedroom]]
<<if $player.feminization <= 2 && $player.beard >= 1>>
<img src="images/mchead.jpg" width='250' height='250'>
$player.name is a rather good looking guy, with curly hair and nice eyes. He could likely work as a model if it wasn't for his short height and skinny body.
//Right now $player.name has a short, well-trimmed beard.//
<<elseif $player.feminization <=2 && $player.beard <= 1>>
<img src="images/mcheadshaved.jpg" width='250' height='250'>
$player.name is a rather good looking guy, with curly hair and nice eyes. He could likely work as a model if it wasn't for his short height and skinny body.
//Right now $player.name is clean shaven!//
<<if $player.bodyhair < 1>>
<img src="images/hairless.jpg" width='250' height='250'>
//Right now $player.name is totally smooth and hairless!//
<<elseif $player.feminization >=4>>
<img src="images/femboymchead.jpg" width='350' height='300'>
@@.feminization;Since $player.name started taking those weird pills $bully.name gave them, their face has begun to change a bit. Their skin is softer, their lips fuller and facial hair thinner/lighter. They almost resemble a boyish girl now.@@
<</if>>
<</if>>
/*Clothing begin*/
''Top''
<<if $player.outerTop == "tshirt">>
<img src="images/tshirt.webp" width="25%" height="25%">
Just your ordinary tshirt. Nothing special about it.
<<elseif $player.outerTop == "schoolshirt">>
<img src="images/schoolshirt.png" width="25%" height="25%">
The Oktober Academy blazer and shirt. The school logo is stitched onto the breast.
<<elseif $player.outerTop == "schoolgirlshirt">>
<img src="images/schoolgirlshirt.jpg" width="25%" height="25%">
The Oktober Academy girl's shirt. Much more form fitting and stuffed at the chest to give the illusion of breasts.
<<elseif $player.outerTop == "">>
You're wearing no shirt! Your skinny body is on display.
<</if>>
''Undershirts/Bra''
<<if $player.underTop == "simplebra">>
<img src="images/simplebra.jpg" width="25%" height="25%">
This simple bra lies nearly flat against your chest.
<<elseif $player.underTop == "lacebra">>
<img src="images/lacybra.png" width="25%" height="25%">
This cute lace bra lies nearly flat against your chest, the design is exceptionally girly and makes your body appear more feminine.
<<else>>
$player.name is not wearing any kind of undershirt or bra.
<</if>>
''Pants''
<<if $player.outerbottom == "jeans">>
<img src="images/jeans.jpg" width="25%" height="25%">
Old reliable. A simple pair of jeans that goes with just about anything.
<<elseif $player.outerbottom == "schoolpants">>
<img src="images/schoolpants.png" width="25%" height="25%">
A nice pair of black trousers. A required part of the Oktober academy uniform.
<<elseif $player.outerbottom == "schoolskirt">>
<img src="images/schoolskirt.jpg" width="25%" height="25%">
This skirt, emblazoned with the Oktober Academy logo shows off your legs and meets school regulations.
<<else>>
$player.name is not wearing any pants!
<</if>>
''Underwear''
<<if $player.underbottoms == "boxers">>
<img src="images/boxers.png" width="25%" height="25%">
Just your average pair of boxers. Lets everything hang comfortably.
<<elseif $player.underbottoms == "momspanties">>
<img src="images/mompanties.jpg" width="25%" height="25%">
These belong to $mom.name and now you're wearing them! Even though these are meant for girls, your tiny cock fits in them snugly.
<<else>>
$player.name isn't wearing any kind of underwear! Anyone around can see their penis!
<</if>>
''Penis''
<<if $player.penis =="free">>
<img src="images/penisfree.jpg" width="25%" height="25%">
$player.name has a rather small penis, measuring just over 4"(10cm) erect and 2.5" soft. (6cm)
<<elseif $player.penis =="caged">>
<img src="images/peniscaged.png" width="25%" height="25%">
$player's tiny clit has been locked away in a girly pink cage. Thinking about $mom.name is painful.
<</if>>
''Socks/Hosiery''
<<if $player.socks == "athleticsocks">>
<img src="images/athleticsocks.webp" width="25%" height="25%">
Your average pair of athletic socks, comfortable and functional.
<<else>>
$player.name is not wearing any socks.
<</if>>
<<if $player.hosiery == "black stockings">>
<img src="images/blackstockings.jpg" width="25%" height="25%">
A pair of black thigh high stockings. They make your legs appear more feminine and meet school regulations.
<<elseif $player.hosiery == "white stockings">>
<img src="images/whitestockings.jpg" width="25%" height="25%">
A pair of white thigh high stockings. They make your legs appear more feminine and meet school regulations.
<<elseif $player.hosiery == "black pantyhose">>
<img src="images/blackpantyhose.jpg" width="25%" height="25%">
A warm pair of black pantyhose. These help to keep your penis safely tucked away and make your legs appear more girly. They also have the added benefit of meeting school regulations!
<<else>>
$player.name is not wearing any hosiery.
<</if>>
''Shoes''
<<if $player.shoes == "sneakers">>
<img src="images/sneakers.webp" width="25%" height="25%">
Nothing beats a comfortable pair of sneakers.
<<elseif $player.shoes == "schoolshoes">>
<img src="images/schoolshoes.jpg" width="25%" height="25%">
Stiff and leathery but meets school regulation.
<<elseif $player.shoes == "schoolpumps">>
<img src="images/schoolpumps.jpg" width="25%" height="25%">
The female version of girls regulation shoes. Adds a bit of height and makes your legs look better.
<<else>>
$player.name is not wearing any shoes!
<</if>>
<<button "Return" `previous()`>><</button>>
<<set $is18 to 0>>
<<set $timeofday to 0>>
<<set $begin to 0>>
<<set $pornchoice to 0>>
<<set $fitness to 0>>
<<set $visitkier to 0>>
<<set $kiermember to 0>>
<<set $stretchchoice to 0>>
<<set $englishgrade to 1>>
<<set $historygrade to 1>>
<<set $mathgrade to 1>>
<<set $mathscore to 100>>
<<set $englishscore to 100>>
<<set $historyscore to 100>>
<<set $followers to 34>>
<<set $warhammerchoice to 0>>
<<set $historygoof to 0>>
<<set $thaxtonstare to 0>>
<<set $thaxtonpic to 0>>
<<set $bullytask to 0>>
<<set $bullyfail to 30>>
<<set $pansted to 0>>
<<set $sarahchoice to 0>>
<<set $checkedtoday to 0>>
<<include storyobjects>>
<<include storyflags>>
<<set $ownedclothes to ["jeans", "athletic socks", "boxers", "tshirt", "schoolshirt", "schoolpants", "sneakers", "schoolshoes",]>>
<<widget "updatebar">><<silently>>
<<replace "#story-caption">><<display "StoryCaption">><</replace>>
<</silently>><</widget>>
Debug:
<<button "Add Money (100)" "debug">>
<<set $player.money += 100>>
<</button>>
<<button "Add Fem (1)" "debug">>
<<set $player.feminization += 1>>
<</button>>
<<button "Add deg (1)" "debug">>
<<set $player.degradation += 1>>
<</button>>
<<button "Move time forward (0.25)" "debug">>
<<set $timeofday += 0.25>>
<</button>>
<<button "Move forward a day (1 day)" "debug">>
<<adddays 1>>
<</button>>
<<button "Return" `previous()`>><</button>>
Tasks
<<button "Add Bully Task (1)" "debug">>
<<set $bullytask += 1>>
<</button>>
Task: $bullytask
Clothing
Head Slot
<<textbox "$player.headSlot" "">>
Shirt
<<textbox "$player.outerTop" "">>
Undershirt
<<textbox "$player.underTop" "">>
Pants
<<textbox "$player.outerbottom" "">>
Underwear
<<textbox "$player.underbottoms" "">>
Penis
<<textbox "$player.penis" "free">>
Socks
<<textbox "$player.socks" "">>
Hosiery
<<textbox "$player.hosiery" "">>
Shoes
<<textbox "$player.shoes" "">>
<img src="images/bathroom.jpg" width="50%">
Just your ordinary bathroom, there is a sink, a shower and various toiletries strewn about.
<<linkreplace "Shave your beard" "Bathroom">>
<<set $player.beard to 0>>
You have shaved your beard
<</linkreplace>>
<<if $player.feminization >=3>>
<<linkreplace "Shave your body" "Bathroom">>
<<set $player.bodyhair to 0>>
You carefully shave all the hair from your body. Leaving your skin feeling smoothe and girly.
<img src="images/bodyshave.gif">
<</linkreplace>>
<</if>>
[[Take a shower|Shower]]
<<button "Return to bedroom" `previous()`>><</button>>
<<if $player.feminization <= 3>> <img src="images/maleshowering.gif">
The water running over your body feels amazing... You're clean now!
<<elseif $player.feminization >= 3>> femboy placeholder
<</if>>
[[Return to bedroom|Bedroom]]
<<if $timeofday == 0 || $timeofday == 1>>
<img src="images/downtownnight.jpg" width="75%">
//All is quiet on the streets. Few people can be found wandering about a this time of day.//
<<else>>
<img src="images/downtown.webp" width="50%">
//Downtown is filled with its usual hustle and bustle. Students heading to school, adults heading to work. Every few blocks you pass a familiar face or an acquaintance going about their day.//
[[Go to your crush's house|Crushhouse]]
<</if>>
<<if GameDays[$gameDate.getDay()] is "Sat" || GameDays[$gameDate.getDay()] is "Sun">>
<<linkreplace "Go to the Oktober Academy">>
I don't have school on the weekends!
<</linkreplace>>
<<else>>
[[Go to the Oktober Academy|Oktober]]
<</if>>
<<if $timeofday == 0 || $timeofday == 1>>
<<linkreplace "Go to Kiersten's Gym">>
The gym is only open in the afternoon and evenings.
<</linkreplace>>
<<else>>
[[Go to Kiersten's Gym|Kier]]
<</if>>
[[Go to Ella's Emporium|Ella]]
<<if $player.feminization < 2>>
<<linkreplace "Go to Delphine's Lingerie">>
Why would I ever want to go in there? They just sell stuff like panties and lingerie for girls.
<</linkreplace>>
<<elseif $player.feminization >=2>>
[[Go to Delphine's Lingerie|Delphine]]
<</if>>
<img src="images/belle.jpg" width="50%">
<<if $timeofday == 1>>
@@.feminization;"//Delphine's is closed at this time of day!//"@@
<<else>>
@@.feminization;"Hey there! Welcome to Delphine's lingerie. Aren't you a guy? //Wait... Are you one of those femboys! Omg, follow me! We're going to make you so hot!//"@@
<<if $ownedclothes.includes("black stockings")>>
You already own the black stockings!
<<else>>
<<linkreplace "Black Thigh High Stockings ($12)" "Delphine">>
<<if $player.money >= 12>>
<<set $ownedclothes.push("black stockings")>>
<<set $player.money -=12>>
<<updatebar>>
You purchase the black thigh high stockings!
@@.feminization;"//Ooh... Sexy! I bet you're a naughty girl...//"@@
<<else>>
You don't have enough money!
<</if>>
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("white stockings")>>
You already own the white stockings!
<<else>>
<<linkreplace "White Thigh High Stockings ($12)" "Delphine">>
<<if $player.money >= 12>>
<<set $ownedclothes.push("white stockings")>>
<<set $player.money -=12>>
<<updatebar>>
You purchase the white thigh high stockings!
@@.feminization;"//Planning on becoming someones wife?//"@@
<<else>>
You don't have enough money!
<</if>>
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("black pantyhose")>>
You already own the black pantyhose!
<<else>>
<<linkreplace "Black Pantyhose ($15)" "Delphine">>
<<if $player.money >= 15>>
<<set $ownedclothes.push("black pantyhose")>>
<<set $player.money -=15>>
<<updatebar>>
You purchase the black pantyhose!
@@.feminization;"//Yay! These will help keep everything together...//"@@
<<else>>
You don't have enough money!
<</if>>
<</linkreplace>>
<</if>>
<</if>>
<<button "Go back outside" `previous()`>><</button>>
<img src="images/livingroom.jpg" width="50%">
<<if $timeofday == 0>>
<img src="images/momcooking.jpg" width="50%">
//$mom.name can be seen rushing about from the kitchen to the living room preparing for the day.// @@.mom;"Have a good day, $player.name!"@@
<</if>>
<<switch $timeofday>>
<<case 0>>
[[Do Chores|Chores]]
<<case 0.25>>
[[Do Chores|Chores]]
<<case 0.50>>
[[Do Chores|Chores]]
<<case 0.75>>
[[Do Chores|Chores]]
<<case 1.00>>
It's too late to do anything now, $mom.name is surely asleep as well!
<</switch>>
[[Enter Mom's Room|momroom]]
[[Go up to your bedroom|Bedroom]]
<<link "Go downtown" "Downtown">>
<</link>><img src="images/ella.jpg" width="50%">
<<if $timeofday == 1>>
@@.feminization;"//Ella's is closed at this time of day!"@@
<<else>>
@@.feminization;"Welcome to Ella's! We have a wide selection of both male and female clothing, we are also an Oktober Academy uniform supplier! Enjoy!"@@
<<if $ownedclothes.includes("schoolgirlshirt")>>
You already own the school girl shirt!
<<else>>
<<linkreplace "Girl's Oktober Academy Shirt ($10)" "Ella">>
<<if $player.money >= 10 && $player.feminization >= 2>>
<<set $ownedclothes.push("schoolgirlshirt")>>
<<set $player.money -=10>>
<<updatebar>>
You purchase the Oktober Academy school girl shirt!
@@.feminization;"//You know thats for girls, right?//"@@
<<else>>
You don't have enough money/why would I be buying this?
<</if>>
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("schoolskirt")>>
You already own the school skirt!
<<else>>
<<linkreplace "Oktober Academy Skirt ($10)" "Ella">>
<<if $player.money >= 10 && $player.feminization >= 3>>
<<set $ownedclothes.push("schoolskirt")>>
<<set $player.money -=10>>
<<updatebar>>
You purchase the Oktober Academy school skirt!
@@.feminization;"//Changing it up, are we?//"@@
<<else>>
You don't have enough money/why would I be buying this?
<</if>>
<</linkreplace>>
<</if>>
<<if $ownedclothes.includes("schoolpumps")>>
You already own the school pumps!
<<else>>
<<linkreplace "School Pumps ($15)" "Ella">>
<<if $player.money >= 15 && $player.feminization >= 3>>
<<set $ownedclothes.push("schoolpumps")>>
<<set $player.money -=15>>
<<updatebar>>
You purchase some girl's pumps!
@@.feminization;"//Oooh, the boys are sure to notice you now!//"@@
<<else>>
You don't have enough money/why would I be buying this?
<</if>>
<</linkreplace>>
<</if>>
<</if>>
<<button "Go back outside" `previous()`>><</button>>
<<if $timeofday == 1 || $timeofday == 0.75>>
<img src="images/academynight.jpg" width="50%">
//School is closed this time of night, a few straggler students can be seen studying on a bench or packing up for evening.//
<<else>>
<img src="images/academy.jpg" width="50%">
//A steady stream of students can be seen filing into the entrance. Groups of boys and girls huddle around the entrance, laughing and talking amongst themselves.//
<</if>>
<<if $player.feminization <=2>>
<<if $player.outerTop !== "schoolshirt" && $player.outerbottom !== "schoolpants" && $player.shoes !== "schoolshoes">>
''I'm not dressed for school!''
<<else>>
[[Go into the Oktober Academy Lobby|Oktober Lobby]]
<</if>>
<</if>>
<<if $player.feminization >= 3>>
<<if $player.beard >= 1>>
''I need to shave I have to follow $bully.name's instructions!''
<</if>>
<<if $player.outerTop == "schoolgirlshirt" && $player.underTop == "simplebra" || $player.underTop == "lacebra" && $player.outerbottom == "schoolskirt" && $player.underbottoms == "momspanties" && $player.hosiery == "black stockings" || $player.hosiery == "white stockings" || $player.hosiery == "black pantyhose" && $player.shoes == "schoolpumps">>
[[Go into the Oktober Academy Lobby|Oktober Lobby]]
<<else>>
I'm not wearing what $bully.name told me to! I don't want to get expelled.
<</if>>
<</if>>
<<if $checkedtoday == 0>>
<<switch $bullytask>>
<<case 1>>
[[Check in with your bully|bullyroom]]
<<case 2 3 4>>
[[Check in with your bully|bullyroom2]]
<<case 5>>
[[Check in with your bully|bullyordershosiery]]
<<case 6 7>>
[[Check in with your bully|bullyroom3]]
<<case 8>>
[[Check in with your bully|bullyroom4]]
<<case 9>>
[[Check in with your bully|bullyroom5]]
<<case 10>>
[[Check in with your bully|bullyroom6]]
<<case 11>>
[[Check in with your bully|bullyroom7]]
<</switch>>
<</if>>
<<button "Go back downtown" "Downtown">><</button>>
<img src="images/oktoberlobby.jpg" width="50%">
<<if $player.feminization <= 2>>
//The lobby of Oktober Academy, from here you can get to all of your classes. Various students and staff are moving to and fro without paying you much mind.//
<</if>>
<<if $player.feminization >=3>>
//The lobby of Oktober Academy, from here you can get to all of your classes. You can feel eyes on you as walk by dressed as a girl. Most of the guys are at a loss for words while a few of the girls giggle as you pass.//
<</if>>
[[Check your grades]]
<<switch $timeofday>>
<<case 0>>
[[Go to math class|maths]]
<<case 0.25>>
[[Go to English class|english]]
<<case 0.50>>
[[Go to history class|history]]
<<case 0.75 to 1>>
Classes are over for the day!
<</switch>>
<<button "Go back outside" "Oktober">><</button>><img src="images/computer.jpg" width="50%">
<<link "Kill some time playing games (Will advance time)" "Computergame">>
<<set $timeofday += 0.25>>
<</link>>
[[View some porn and jerk off|Masturbation]]
[[Log into Twitbook|Twitbook]]
[[Return to your bedroom|Bedroom]]<img src="images/gaming.gif">
$player.name kills some time playing games...
<<timed 2.5s>>
[[Return to desktop|Computer]]
<</timed>><<set $pornchoice to random(3)>>
<<if $pornchoice is 0>><video src="images/porn0.webm" width="640" height="480" autoplay></video>
//I would love to paint her too...//
<<elseif $pornchoice is 1>><video src="images/porn1.webm" width="640" height="480" autoplay></video>
//God I wish that were me...//
<<elseif $pornchoice is 2>><video src="images/porn2.webm" width="640" height="480" autoplay></video>
//There's a few girls at school I would love to do that to...//
<<elseif $pornchoice is 3>><img src="images/belle.webp">
//She looks an awful lot like the girl at Delphine's...//
<</if>>
<video src="images/masturbationcum.webm" width="640" height="480" autoplay></video>
<<timed 3s>>
[[Return to desktop|Computer]]
<</timed>><img src="images/kier.jpg" width="50%">
<<if $visitkier == 0>>
''Welcome! I'm Kiersten'' //Looking to get fit? Try a yoga course today and improve your flexability and tone that tummy! To take a course, you'll need to buy a yearly pass for $25.//
<<else>>
Welcome back!
<</if>>
<<if $kiermember == 1>>
<<link "Do yoga" "Yoga">>
<<set $fitness += 0.1>>
<<set $timeofday += 0.25>>
<<set $visitkier += 1>>
<</link>>
<<else>>
''I don't have a membership!''
<</if>>
<<if $player.money >= 25 && $kiermember == 0>>
<<link "Buy a membership" "Kier">>
<<set $kiermember += 1>>
<<set $player.money -= 25>>
<</link>>
<<elseif $kiermember == 1>>
I own a yearly pass to Kiersten's gym!
<<else>>
''I can't afford a membership! It costs $25!''
<</if>>
[[Go back outside|Downtown]]<<set $stretchchoice to random(1)>>
<<if $stretchchoice is 0>><img src="images/stretch.jpg" width = "75%">
Kiersten leads the class, demonstrating various yoga poses and aerobic exercises. //You feel slightly more fit!//
<<elseif $stretchchoice is 1>><img src="images/stretch2.jpg">
Kiersten moves the class outside and demonstrates some yoga exercises, she makes quite good use of a nearby pole. //You feel slightly more fit!//
<</if>>
[[Finish class|Downtown]]''Welcome to your Twitbook page!''
<img src="images/twitter_profile.png" width="50%">
@@.mc;Followers: $followers@@
[[Post 40k meme|40kpost]]
[[Exit to desktop|Computer]]On the wall hangs a board displaying the grades of all the students of Oktober Academy.
<<if $mathscore >= 90>>
<<set $mathgrade to 1>>
<<elseif $mathscore <= 89>>
<<set $mathgrade to 2>>
<<elseif $mathscore <= 79>>
<<set $mathgrade to 3>>
<</if>>
<<if $historyscore >= 90>>
<<set $historygrade to 1>>
<<elseif $historyscore <= 89>>
<<set $historygrade to 2>>
<<elseif $historyscore <= 79>>
<<set $historygrade to 3>>
<</if>>
<<if $englishscore >= 90>>
<<set $englishgrade to 1>>
<<elseif $englishscore <= 89>>
<<set $englishggrade to 2>>
<<elseif $englishscore <= 79>>
<<set $englishgrade to 3>>
<</if>>
<<switch $mathgrade>>
<<case 1>>
Math Grade: A
<<case 2>>
Math Grade: B
<<case 3>>
Math Grade: C
<</switch>>
<<switch $englishgrade>>
<<case 1>>
English Grade: A
<<case 2>>
English Grade: B
<<case 3>>
English Grade: C
<</switch>>
<<switch $historygrade>>
<<case 1>>
History Grade: A
<<case 2>>
History Grade: B
<<case 3>>
History Grade: C
<</switch>>
[[Return to the lobby|Oktober Lobby]]
<<updatebar>><img src="images/math.webp" width="50%">
//Mr. Chang's math class is dreary as always, but you need it if you want to go to Harvard. You hardly know anyone in this class, everyones face just looks the same.//
<<link "Focus on the board" "Focus on the board">>
<<set $mathscore += 5>>
<<set $timeofday += 0.25>>
<<updatebar>>
<</link>>
<<link "Goof off" "Goof off">>
<<set $timeofday += 0.25>>
<<updatebar>>
<</link>>
<img src="images/english.jpg" width="50%">
//Ms.Thaxton's English class... Same as usual... It's hard to focus on the lesson when you've got that sitting in front of you. Not to mention, this class is absolutely filled with girls, in fact, the only other guy in the class is $bully.name. Ms. Thaxton is so uptight, but I bet deep down she's kinky...//
<<link "Focus on the lesson" "Focus on the lesson">>
<<set $englishscore += 5>>
<<set $timeofday += 0.25>>
<<updatebar>>
<</link>>
<<link "Stare at Ms.Thaxton" "Stare at Ms.Thaxton">>
<<set $timeofday += 0.25>>
<<updatebar>>
<</link>><img src="images/history.jpg" width="50%">
//History... My favorite subject and my favorite teacher! Mr. Brock is awesome! $friend.name is in this class too, maybe one day I'll work up the courage to confess my feelings to her. Sadly, $bully.name is also here.//
<<link "Focus on the teacher" "Focus on the teacher">>
<<set $historyscore += 5>>
<<set $timeofday += 0.25>>
<<updatebar>>
<</link>>
<<link "Talk to your crush" "Mess around">>
<<set $timeofday += 0.25>>
<<updatebar>>
<</link>><<set $thaxtonchoice to random(2)>>
<<if $thaxtonchoice is 0>><img src="images/english2.jpg" width="50%">
<<elseif $thaxtonchoice is 1>><img src="images/english3.jpg" width="50%">
<<elseif $thaxtonchoice is 2>><img src="images/english4.jpg" width="50%">
<</if>>
Most of the lesson goes in one ear and out the other, your mind is fully occupied by Ms. Thaxton. You're known to sneak a pic or two of her when you can, you even like to edit fakes of her. //God, she's so hot...//
<<set $thaxtonstare++>>
<<if $thaxtonstare >= 2 && $thaxtonpic == 0>>
[[Try and sneak a new picture of Ms.Thaxton|PicThaxton]]
<</if>>
[[Go out into the lobby|Oktober Lobby]]<img src="images/notes.jpg" width="50%">
You put your nose down and focus on class, no distractions here!
@@.schoolstatup;English Grade ++@@
[[Return to the lobby|Oktober Lobby]]<img src="images/notes.jpg" width="50%">
You put your nose down and focus on class, no distractions here!
@@.schoolstatup;Math Grade ++@@
[[Return to the Lobby|Oktober Lobby]]<img src="images/goofing.webp" width="50%">
You spend more time socializing then doing your assignment, your grade slips but your popularity improves!
[[Return to the lobby|Oktober Lobby]]<<if $bullyagree == 1>>
<img src="images/momphoto.png" width="50%">
//$bully.name leans over towards you, shoving a picture on his phone in your face//
@@.bully2;"Hey, $player.name, saw your mom downtown the other day. Even snapped a pic. Man, check out those fat tits. You're lucky you get to see those every day. Since you agreed to me terms, lets give you your first assignment. Bring me a pair of $mom.name's panties. Should be simple enough."@@
@@.mc;"What the fuck? Are you serious? That's my mom you creep! No way!"@@
@@.bully2;"Exactly! She's a straight up MILF! Bring them or Ms.Thaxton and I are going to have a very interesting conversation."@@
@@.mc;"Fine you bastard. I'll try. "@@
//I can't believe this shit...//
<<set $bullytask to 1>>
<<set $bullyagree++>>
<<else>>
<img src="images/notes.jpg" width="50%">
You put your nose down and focus on class, no distractions here!
@@.schoolstatup;History Grade ++@@
<</if>>
[[Return to the lobby|Oktober Lobby]]<<if $player.underbottoms == "momspanties" && $friend.shaved < 2>>
You spend more time socializing with $friend.name than doing your assignment, it feels dirty talking to her while wearing $mom.name's panties. What would $friend.name think if she knew?
<<set $historygoof++>>
<img src="images/friend.jpg" width="50%">
[[Return to the lobby|Oktober Lobby]]
<<elseif $friend.shaved >= 2>>
You spend more time socializing with $friend.name than doing your
assignment. It doesn't seem real that your middle-school best friend and crush is shaving your body for you. //The thought of it makes your penis twitch in excitement.//
[[Return to the lobby|Oktober Lobby]]
<<else>>
<img src="images/friend.jpg" width="50%">
You spend more time socializing with $friend.name than doing your assignment, your grade slips but your popularity improves!
<<set $historygoof++>>
[[Return to the lobby|Oktober Lobby]]
<</if>>
<<if $pansted == 0>>
<<if $player.hosiery == "black stockings" || $player.hosiery == "white stockings" || $player.hosiery == "black pantyhose">>
[[Someone is coming up behind you...|Pantsed]]
<<elseif $pansted == 1>>
//I can't believe $friend.name saw me dressed like that. It's humiliating! That comment she made about tucking... I'm not that small, right?//
<</if>>
<</if>><<set $followers += 2>>
<<set $warhammerchoice to random(2)>>
<<if $warhammerchoice is 0>><img src="images/warhammer1.png" width="50%">
<<elseif $warhammerchoice is 1>><img src="images/warhammer2.png" width="50%">
<<elseif $warhammerchoice is 2>><img src="images/warhammer3.png" width="50%">
<</if>>
@@.mc;2 new followers! New total: $followers@@
[[Return to desktop|Computer]]//$mom.name has assigned me some chores to do, she'll give me cash for helping out around here. Be aware this will use up time!//
<<link "Mow the Lawn" "Mow the Lawn">>
<<set $timeofday += 0.25>>
<<set $player.money += 5>>
<<updatebar>>
<</link>>
<<link "Wash the Dishes" "Wash the Dishes">>
<<set $timeofday += 0.25>>
<<set $player.money += 5>>
<<updatebar>>
<</link>>
[[Return to the livingroom|Livingroom]]<img src="images/dishwash.webp" width="50%">
You wash the dishes!
@@.schoolstatup;Money +5@@
[[Return to the livingroom|Livingroom]]<img src="images/lawnmow.jpg" width="50%">
You mow the lawn!
@@.schoolstatup;Money +5@@
[[Return to the livingroom|Livingroom]]//*snap*//
<img src="images/thaxtonpic.jpg" width="50%">
@@.mc;//Nice,// got a good pic. Head on, this will make for a great fake later. Can't wait to play with it...@@
@@.bully2;"Yo, what the fuck!? Did you just take a pic of Ms.Thaxton?"//$bully.name quickly snatches your phone out of your hand and goes straight to your pictures.// "No way! You did! You're a freak dude, haha!" //$bully.name continues to scroll as you try and get your phone back without attracting too much attention// "Wait... What's this? You have nude pictures of her too!? //After a closer look he realizes that they are faked and you made them.// "Oh man... I can't wait to show these to Ms.Thaxton, I bet she would be //thrilled.//"@@
<img src="images/thaxtonpic2.jpg" width="50%">
<img src="images/friendphotoshop.jpg" width="50%">
@@.bully2;"What's this? Is this $friend.name? Holy shit, her too man? This is pathetic. You really think she would ever fuck a loser like you? Maybe I'll send you a similar pic after I'm done exposing what a perv her //"best friend"// is."@@
@@.mc;//Trying to stay hush// "You can't do that, $bully.name! I'll get expelled, and that is if $friend.name doesn't kill me first! Please dude just give it back!"@@
@@.bully2;"Oh this is good... I don't know, why shouldn't I tell them? I bet they would both reward me..."@@
@@.mc;"I'll do anything! Please just give it back and forget about it!"@@
@@.bully2;"Anything? Really? Anything I want?"@@
<<set $thaxtonpic to 1>>
[[Agree to his terms|submittobully]]
//Bully hands you your phone back, but not before he forwards all of your Ms. Thaxton pics to his own phone.//
@@.bully2;"Just in case you know... This is going to be so fun. By the time we're finished, you might've wished we just got this over with now."@@
//As he finishes his statement the bell rings. $bully.name gets up and exits the room quickly before turning back towards you with a smile.//
@@.mc;"//What the fuck...// What did he mean by that? I guess I'll be doing all of his homework for the year or is he just going to take my allowance... That would be pretty cliche."@@
<<set $bullyagree to 1>>
[[Return to lobby|Oktober Lobby]]<<switch $timeofday>>
<<case 0>>
//I can hear mom moving around in the kitchen just outside.//
<<case 0.25>>
//Mom is at work, it's safe to explore.//
<<case 0.50>>
//Mom is at work, it's safe to explore.//
<<case 0.75>>
//I can hear mom moving around in the kitchen just outside.//
<<case 1>>
//Mom is sleeping in her bed...//
<img src="images/sleepymom.jpg" height="50%" width="50%">
<<if $bullytask == 10 || $player.degradation >= 3>>
[[Try to sneak a picture|momsleepingboobs]]
<</if>>
<</switch>>
[[Open Mom's drawer|momdrawer]]
[[Go back to the livingroom|Livingroom]]<img src="images/pantydrawer.jpg" width="50%">
//The drawer is stuffed with $mom.name's bras/panties. You can smell them from here, the scent of flowery detergent and her perfume//
<<if $bullytask == 1 && $player.degradation == 0>>
<<linkreplace "Take a pair of Mom's panties" "momdrawer">>
//You pick out the most appealing pair. Taking a second to run your fingers through them. They feel soft and girly, a stark difference from your usually stern mother. The scent is even stronger up close, it's amazing...//
<<set $ownedclothes.push("momspanties")>>
<<set $player.degradation++>>
<<updatebar>>
<</linkreplace>>
<</if>>
[[Step back|momroom]]<<if $bullytask == 1 && $ownedclothes.includes("momspanties")>>
@@.bully2;"Well? Do you have them?"@@ @@.mc;"Yeah, I do. I have them right here."@@ //$player reaches into his bag and gingerly holds $mom.name's panties in his hand.//
<img src="images/laceyred.webp" width="50%">
@@.mc;"Happy now, you perv?"@@ @@.bully2;"Wow! Those are sexy, didn't expect a mom to be wearing something like that."@@ //$bully.name takes the pair of panties.// @@.mc;"We're done here, right? You'll delete the photos?"@@ @@.bully2;"Not quite... In fact, we're just getting started. I didn't want those panties for me, though, they probably would be good for jerking with. I want to see them on you."@@
//This causes $player.name to laugh//
@@.mc;"You're fucked up man, I almost thought you were serious. So we're good right?"@@ @@.bully2;"Oh I'm serious, deadly serious. I want to see your pervy ass in those panties. It's secluded here, let's give it a go."@@
[[Put on the panties|putonpanties]]
[[Refuse|Refusepanties]]
<<set $checkedtoday to 1>>
<<elseif $bullytask >=2 && $player.beard < 1 && $player.underbottoms == "momspanties" && $exposedtofriend == 0>>
@@.bully2;"So? Did you do what I said? I can see you shaved your beard, are you wearing mommie's panties?"@@ //$bully.name snickers to himself as you drop your pants to quickly reveal your panties.//
@@.bully2;//$bully.name looks you over, still not quite over how well the panties hide your penis.//
"Good work, you can go now. Same deal tomorrow."@@
<img src="images/tryon.jpg" width="50%">
<<set $bullyfail to 5>>
<<set $bullytask += 1>>
<<updatebar>>
<<set $checkedtoday to 1>>
<<else>>
@@.bully2;"Quit wasting my time and do what I told you! Shave your beard and be in $mom.name's panties! If you don't, Ms. Thaxton and I are going to talk!"@@
<</if>>
[[Go back to the entrance of the school|Oktober]]//$player.name looks around, we are pretty secluded and I absolutely cannot allow Ms.Thaxton to see those photos.// @@.mc;"Fine... I'll do it."@@ @@.bully2;"Thatta' girl!"@@
@@.mc;"You're sick you know that?"@@
@@.bully2;"Says the guy taking creepshots of his teacher, yeah, ok."@@
//$player.name takes off his pants, pausing at their boxers.// @@.mc;"You just gunna watch me?"@@
@@.bully2;"Sure am!"@@
//With a sigh $player.name drops his boxers to the ground.//
@@.bully2;"Holy shit! You've got a baby dick, what is it, two inches? //hahahahahah//"@@
//Embarrassed and wanting this over, $player.name hurriedly pulls the lacey panties on. With a quick shake, they're all the way on and surprisingly revealing. For the briefest moment you picture $mom wearing these.//
@@.bully2;//$bully.name bursts into laughter at the sight of you.// "Oh man, I can't believe you really did it."@@//Before you can even react, you're blinded by a bright flash, $bully.name has taken a picture of you, pants down wearing $mom.name's panties!//
@@.bully2;"Just a bit more insurance... I bet your Mom would be interested in this one... You know, your cocks so tiny you can barely see the bulge. If we just looked from the waist down you would never know you were a guy."@@
//By this point you are bright red, horribly embarassed by $bully.name's comments and ready to explode over the fact you let him dig you even deeper into his debt.//
@@.mc;"''You fucking asshole!''"@@
@@.bully2;"Whoa now, you better watch it. I can crucify you if I wish. Show your mom that you're a crossdressing, panty stealing perv and expose your crude edits to Ms. Thaxton. Well, you were a good girl today so I won't make you do a dance or anything like that. However, I will give you your next task. Keep that pair of panties around, I want to see you in them every day, and your beard, shave it. I want you clean shaven every morning. See you tomorrow."@@ //With that, $bully.name turns and leaves you standing there, pants around your ankles $mom.name's panties hugging tightly to your bottom. After a few moments you come to your senses and quickly pull up your pants.//
<img src="images/tryon.jpg" width="50%">
<<set $player.feminization to 1>>
<<set $player.underbottoms to "momspanties">>
<<set $bullytask to 2>>
<<updatebar>>
[[Return to the Oktober Academy|Oktober]]
@@.mc;"Fuck no. I'm not putting those on! Do whatever you have to do, but I'm not playing your gross games."@@
@@.bully2;"Suit yourself..."@@
//$bully.name takes his evidence straight to Ms. Thaxton. She is horrified and reports you to both the Principal and the police. Your dreams of Harvard and maybe even freedom, are over.//
''GAME OVER''
<<if $bullytask >=2 && $player.beard < 1 && $player.underbottoms == "momspanties" && $pansted == 0>>
@@.bully2;"So? Did you do what I said? I can see you shaved your beard, are you wearing mommy's panties?"@@ //$bully.name snickers to himself as you drop your pants to quickly reveal your panties.//
@@.bully2;//$bully.name looks you over, still not quite over how well the panties hide your penis.//
"Good work, you can go now. Same deal tomorrow."@@
<img src="images/tryon.jpg" width="50%">
<<set $bullyfail to 5>>
<<set $bullytask += 1>>
<<updatebar>>
<<set $checkedtoday to 1>>
[[Return to the Oktober Academy|Oktober]]
<<else>>
@@.bully2;"Quit wasting my time and do what I told you! Wear your mom's panties and shave your beard! If you don't, Ms. Thaxton and I are going to talk!"@@
[[Return to Oktober Academy|Oktober]]
<</if>><<if $player.beard < 1 && $player.underbottoms == "momspanties">>
<<if$player.hosiery == "black stockings" || $player.hosiery == "black pantyhose" ||$player.hosiery == "white stockings">>
<img src="images/exposed.jpg" width="50%">
@@.bully2;"Wow, looking good! The panties and hosiery look good together. I never noticed how nice your legs were."@@
@@.mc;//I can't believe I'm doing this for this asshole. I'm even starting to get used to wearing panties... Dressing like this just seems to suck the masculinity out of me.//@@
<<set $bullyfail to 5>>
<<set $bullytask += 1>>
<<updatebar>>
<<set $checkedtoday to 1>>
[[Return to Oktober Academy|Oktober]]
<<else>>@@.bully2;"Quit wasting my time and do what I told you! Wear your mom's panties, shave your beard and put on some kind of hosiery! If you don't, Ms. Thaxton and I are going to talk!"@@
<</if>>
<</if>>
<<if $player.beard < 1 && $player.underbottoms == "momspanties" && $pansted == 1>>
<<if $player.hosiery == "black stockings" || $player.hosiery == "black pantyhose" ||$player.hosiery == "white stockings">>
<img src="images/exposed.jpg" width="50%">
@@.mc;//Your new ritual of exposing yourself to $bully.name continues. He lets out a laugh and snaps yet another picture of you.//@@
@@.bully2;"Man, this is //fun.// Seeing you in that little get-up just never stops being funny. It would almost be hot, if you weren't so fucking hairy. You need to do something about that. Shave your whole body, I don't want to see even a single strand of hair on your body."@@
@@.mc;"What... I don't know how to do that. I still cut myself shaving my face!"@@
@@.bully2;"Well good thing you have $friend.name! She seemed plenty excited about your little secret. Have her help you, head over to her house after school."@@
@@.mc;"$friend.name? No way... She'll never ever see me as a man again if I do this."@@
@@.bully2;"Not my problem. Maybe I can show her those little edits you made of her instead?"@@
@@.mc;"...Fine, I'll talk to $friend.name"@@
<<set $friend.shaved to 1>>
<<else>> I need to shave, wear $mom.name's panties and some form of hosiery!
<</if>>
<</if>>
<<if $pansted == 0>>
@@.mc;//I should go talk to $friend.name during history class.//@@
<</if>>
<<if $player.beard >= 1>>
@@.mc;//Shit, I forgot to shave!//@@
<</if>>
[[Return to Oktober Academy|Oktober]]
<<set $sarahchoice to random(2)>>
<<if $sarahchoice is 0>><img src="images/crush1.jpg" width="50%">
//$friend.name welcomes you into her house, she's wearing a pair of jeans and a skimpy black top that is barely holding her tits in. You do your best not to stare.//
@@.friend;"Welcome $player.name, thanks for coming over!"@@
<<elseif $sarahchoice is 1>><img src="images/crush2.png" width="50%">
//$friend.name welcomes you into her house, she's wearing nothing but a pair of sweats and a bra. She seems totally unphased by this and hugs you.//
@@.friend;"Like the bra? You don't think its too slutty right? I'm going out with Brad later and don't want to give the wrong impression."@@
<<elseif $sarahchoice is 2>><img src="images/crush3.jpg" width="50%">
//$friend.name welcomes you into her house, she's dressed in a sports bra and sweating like she just got done working out.//
@@.friend;"Hey $player.name, great timing! I just got back from my run!"@@
<</if>>
<<if $friend.shaved == 1>>
[[Ask for her help shaving|Shaving]]
<<elseif $friend.shaved == 2>>
[[Ask for her help shaving|shaved3]]
<</if>>
[[Hang out|HangOut]]
[[Go back downtown|Downtown]]<<if $sarahchoice is 0>><img src="images/crush1.jpg" width="50%">
//You spend the afternoon chatting with $friend.name and watching a movie. You keep sneaking peeks at her chest, praying that flimsy top fails.//
<<elseif $sarahchoice is 1>><img src="images/crush2.png" width="50%">
//$friend.name never manages to put a shirt on for the duration of your stay. She's too preoccupied barraging you with questions about how she should act with Brad. She goes on and on about how he's rumored to have a big dick.// @@.friend;"Size matters you know!"@@
<<elseif $sarahchoice is 2>><img src="images/crush3.jpg" width="50%">
//The two of you spend your time joking and practicing exercises. She practices her downward dog and squats in front of you.//
<</if>>
<<set $timeofday += 0.25>>
<<updatebar>>
[[Go back home|Bedroom]]You spend more time socializing with $friend.name than doing your assignment. You spend a few moments after class talking when out of nowhere $bully.name runs up behind you and ''yanks'' your pants down to the ground. //For a few moments you stand still as stone, standing in front of your crush wearing $mom.name's panties and hosiery.//
@@.friend;"Oh... Oh wow $player.name... I um, didn't know you were into that..." //$friend.name seems at a loss before snapping back to her normal self.// "Cute panties and that hosiery! Very fancy! Are you tucking too? You can barely see the bulge!"@@
<img src="images/exposed.jpg" width="50%">
<img src="images/shown.jpg" width="50%">
<<set $pansted to 1>>
<<set $player.degradation++>>
@@.mc;//Being exposed like this to $friend.name is horrifying yet you feel a slight twitch in your cock that snaps you back to attention. ''You absolutely cannot allow her to see you get turned on by this.''//@@
[[Flee the room|Oktober Lobby]]<<set $player = {
name: "Chase",
feminization: 0,
degradation: 0,
money: 15,
beard: 1,
bodyhair: 1,
headSlot: "",
outerTop: "tshirt",
underTop: "",
outerbottom: "jeans",
underbottoms: "boxers",
penis: "free",
hosiery: "",
socks: "athleticsocks",
shoes: "sneakers",
}>>
<<set $friend = {
name: "Sarah",
shaved: 0,
}>>
<<set $mom = {
name: "Mom",
}>>
<<set $bully = {
name: "Chris",
}>>
<<set $outfitone = {
name: "Outfit 1 (Casual)",
headSlot: "",
outerTop: "tshirt",
underTop: "",
outerbottom: "jeans",
underbottoms: "boxers",
penis: "free",
hosiery: "",
socks: "athleticsocks",
shoes: "sneakers",
}>>
<<set $outfittwo = {
name: "Outfit 2 (School)",
headSlot: "",
outerTop: "schoolshirt",
underTop: "",
outerbottom: "schoolpants",
underbottoms: "boxers",
penis: "free",
hosiery: "",
socks: "athleticsocks",
shoes: "schoolshoes",
}>><<set $momboobpic to 0>><img src="images/crush1.jpg" width="50%">
@@.mc;//$friend.name is acting like nothing happened. $bully.name made me look like some kind of perverted freak in front of her. What is she going to say when I ask for help here?//@@
@@.friend;"What's up $player.name? You look like you have something to ask?"@@
@@.mc;"$friend.name you have to understand, about yesterday... I wasn't wearing it because I want to, but because $bully.name is making me. Now he's making me shave my whole body for him... but I... don't know how."@@
@@.mc;//My face is bright red as I recall standing before $friend.name, now I stand before her again, humiliating myself.//@@
@@.friend;"Wait? He's making you? Oh my God! You're even kinkier than I thought, I never pictured you two together! Is he your //dom//!?"@@
@@.mc;"No it's nothing like-"@@
@@.friend;"''Of course I'll help you!'' I've always wanted a gay best friend! Why didn't you tell me!? We've been besties for years! You know you can trust me! "@@
@@.mc;"$friend.name you don't understa-"@@
@@.friend;"Come with me! This is so exciting!" //$friend.name nearly rips your arm off as she pulls you inside. She drags you down the hall and into the bathroom before ordering you to strip.//@@
@@.mc;"Strip? I can't..."@@
@@.friend;"All of it off, Mister! If we're going to get you nice and smooth for $bully.name you're going to need to get naked and soak a bit." //$friend.name begins to run the bath.//@@
<<set $player.feminization++>>
<<set $bullytask++>>
<<updatebar>>
[[Strip for her|shaving2]]
<<if $player.bodyhair < 1 && $player.beard < 1 && $player.underbottoms == "momspanties">>
<<if$player.hosiery == "black stockings" || $player.hosiery == "black pantyhose" ||$player.hosiery == "white stockings">>
@@.mc;//Feeling smooth and strangely girly I go to the usual meet up spot.// @@
@@.bully2;"Well? How was $friend.name? Did she help you?"@@
@@.mc;"Yeah... She did." //I begrudgingly drop my pants and lift my shirt to show I am now totally smooth, still in this rediculous outfit.//@@
<img src="images/shaved.jpg" width="50%">
@@.bully2;"$friend.name did a good job! She really got everywhere. Must've been pretty humiliating to be shaved by your crush. Though a little perv like you probably enjoyed it."@@
@@.mc;//Going red at the comment, I remember back to that kiss $friend.name gave my cock. Even if she called it cute after, she still kissed it.// ''Suddenly, to my horror, I felt the usual pressure build in my cock and before I could will my body to stop, I was pitching a small tent in my panties before $bully.name.''@@
@@.bully2;"Wow! Someones starting to enjoy this." //$bully.name snaps another picture, this time of you shaved clean, erection pitching a tent in your panties.//
@@.bully2;"Before I start giving you credit for the shaving, I have one more request. Get a picture of $mom.name's tits."@@ //Without elaborating further, he walks off. Leaving your mind-racing about how you're going to pull this off.//
<<set $bullytask++>>
<<set $checkedtoday to 1>>
<<set $bullyfail to 5>>
<</if>>
<</if>>
<<if $player.bodyhair >= 1 && $player.beard >= 1>>
I need to shave!
<</if>>
<<if$player.hosiery == "">>
I need to put on some form of hosiery and $mom.name's panties.
<</if>>
[[Return to Oktober Academy|Oktober]]<img src="images/crush1.jpg" width="50%">
@@.mc;//Slowly you get nude, starting with your shirt, then the pants. $friend.name lets out a squeal of joy as she sees your panties/stockings.//@@
@@.friend;"You have great taste! The stockings must be from Delphine's, but where did you get those panties! I'm jealous." //Suddenly $friend.name rushes over and pulls your panties off, she then begins working on getting the stockings off of you. It's so embarassing that you can't move.//@@
@@.mc;//Having $friend.name this close to your cock and the added element of humiliation causes you to gain a small, but fierce erection. Just as $friend.name finishes getting your leg out of your stockings she's met at eye level by your erection.//@@
@@.friend;//With a giggle, $friend.name gives your cock a ''small kiss'' right on the head.// "It's so cute! I guess you don't have to tuck after all!" @@ <img src="images/dickkiss.webp">
@@.mc;//Did $friend.name just kiss my dick? Maybe this isn't so bad after all... Though I think she just called it small as well...// Before you can react, $friend.name is lowering you into the bath and adding soap/mositurizer.@@
[[Get shaved smooth|shaved3]]
<img src="images/crush1.jpg" width="50%">
@@.friend;//$friend.name returns to the room in her skimpy black leotard. Don't want to get my clothes too wet!//@@
After your lather and mositurization is complete, $friend.name helps you stand up in the bath.
@@.friend;//$friend.name wastes no time in shaving your entire body smooth. She twists and turns you, quickly removing every strand of hair from your body and face.//@@
@@.mc;$friend.name is so close to you, her hands run all over your body. At times she is so close you can feel her hot breath on your cock. She seems completely oblivious to your frequently occuring erections throughout the process. In the end, you are completely hairless and smooth below your eyebrows.@@
<img src="images/bodyshave.gif">
<<set $player.bodyhair to 0>>
<<set $player.beard to 0>>
<<set $friend.shaved to 2>>
<<set $timeofday += 0.25>>
''You can now shave your body at home or ask $friend.name for help''
[[Go home|Bedroom]]<<if $momboobpic == 1>>
@@.mc;I met $bully.name at the usual spot. He was waiting with a big smile on his face as I approached.@@
@@.bully2;"So, you got it?"@@
@@.mc;"Yeah..." //I pulled out my phone, scrolled to the picture and held it up in front of his face.//@@
<img src="images/sleepingmomboobs.jpg" width="50%" height="50%">
@@.bully2;//Just like before, $bully.name snatched the phone from my hand and forwarded himself the picture.// "Oh man, they're even better than my imagination. What kind of son does this to his own mother!? You're a real freak man"@@
@@.mc;"Ignoring the fact you made me do this? Give me back my phone!"@@
@@.bully2;"Whoa now, you had choices! You chose to exploit your own mother to save your ass. Lame... Either way, this pic belongs to me now. Just another stop I can make if you ever try to weasel out of our arrangement. I bet mommy would love to know what her son gets up to at night."@@
@@.mc;//My stomach sank as my ways of escaping this hell continued to shrink. Not only can he expose me to Ms. Thaxton and $friend.name, but now he can make $mom.name think I'm a pervert too.//@@
<<set $player.degradation++>>
<<set $bullytask++>>
<<updatebar>>
<<set $checkedtoday to 1>>
<<set $bullyfail to 5>>
<<else>>
@@.bully2;"Come back when you have that picture of $mom.name!"@@
<</if>>
[[Return to the Oktober Academy|Oktober]]<<if $momboobpic == 0>>
@@.mc;//You sneak into $mom.name's room in the dead of night. She is softly sleeping before you in what looks like an old purple t-shirt.// Can you really do this? Betray your own mother to save yourself? //She would understand, right?// You pull out your phone and creep over to the bed. You pause for a moment to make sure she's really asleep. If she caught you doing this, you would probably be killed on the spot.// Good, it seems she's truly asleep. //Slowly but steadily you lift $mom.name's shirt from the bottom revealing her large, soft breasts. You take a moment to oogle them before snapping a picture and hurriedly retreating from the room.//@@
<img src="images/sleepingmomboobs.jpg" width="50%" height="50%">
<<set $momboobpic to 1>>
<<else>>
@@.mc;I can't get the image of $mom.name's breasts out of my head. This whole situation is really fucking me up. //$player.name creeps back into $mom.name's room. Repeating his steps from before. He slowly lifts $mom.name's shirt up and takes a good long look at her breasts.// "Amazing..." //A small erection begins to form in your pants.// @@
<img src="images/sleepingmomboobs.jpg" width="50%" height="50%">
<</if>>
[[Return to your room|Bedroom]]''End of Current Content''<<if $bullytask < 8 && $player.beard < 1 && $player.underbottoms == "momspanties">>
@@.bully2;"So you continue to faithfully follow my commands. Let's crank it up a notch. You know Delphine's downtown? Go there and buy a set of hosiery. Stockings, pantyhose, whatever. Add it to your daily outfit."@@
//What choice do you have but to obey... To Delphine's I go.//
<<set $bullyfail to 5>>
<<set $bullytask += 1>>
<<set $player.feminization to 2>>
<<set $checkedtoday to 1>>
<<updatebar>>
[[Return to Oktober Academy|Oktober]]
<<else>>
@@.bully2;"Quit wasting my time and do what I told you! Wear your mom's panties, shave your beard and put on some kind of hosiery! If you don't, Ms. Thaxton and I are going to talk!"@@
[[Return to Oktober Academy|Oktober]]
<</if>>