Ready to play dirty? Command your Lust Goddess now. Play Now!
x

balitz Method

Well-Known Member
Jan 30, 2018
1,258
2,153
419
Whoever wrote the sports material doesn't know how any of them work and it's -so- apparent. I only know as much football as I've gleaned from watching when my dad has it on during the holidays and even I know that the quarterback is the only one who can throw it forward. I just saw a random player pass it to the quarterback who passed it to the PC who passed it to someone else.

The frats and sororities are pretty janky, too. It seems like the nerdy ones should have their own set of pledge tasks (one of them even advertises itself as being for people who aren't obsessed with football and school pride) and even once you've done them all you don't actually get to move into the house. Why would you ever pay dues to the house when you can't even live there?

The biggest surprise is that it managed to find new ways to move backwards from Degrees of Lewdity since I last tried it. Somehow that game, where it's not some advertised feature in the least, manages to be more inclusive and reactive to your personal expression than this one that's trying to declare itself so upfront. There's like no freedom of expression that's actually acknowledged.

somanly.jpg

NPCs will call your cute femboy in full makeup and a dress a manly hunk or treat your tall princely football-playing tomboy like a girly-girl because the game somehow manages to go so far in avoiding commentary on clothing choices that it wraps all the way back around to being essentialist.

So many aspects of the world seem like they're held together with tape. I can't imagine that I'm the first person to notice these things.
 

phlore101

Member
Jun 28, 2017
388
181
275
Whoever wrote the sports material doesn't know how any of them work and it's -so- apparent. I only know as much football as I've gleaned from watching when my dad has it on during the holidays and even I know that the quarterback is the only one who can throw it forward. I just saw a random player pass it to the quarterback who passed it to the PC who passed it to someone else.

The frats and sororities are pretty janky, too. It seems like the nerdy ones should have their own set of pledge tasks (one of them even advertises itself as being for people who aren't obsessed with football and school pride) and even once you've done them all you don't actually get to move into the house. Why would you ever pay dues to the house when you can't even live there?

The biggest surprise is that it managed to find new ways to move backwards from Degrees of Lewdity since I last tried it. Somehow that game, where it's not some advertised feature in the least, manages to be more inclusive and reactive to your personal expression than this one that's trying to declare itself so upfront. There's like no freedom of expression that's actually acknowledged.

View attachment 5412907

NPCs will call your cute femboy in full makeup and a dress a manly hunk or treat your tall princely football-playing tomboy like a girly-girl because the game somehow manages to go so far in avoiding commentary on clothing choices that it wraps all the way back around to being essentialist.

So many aspects of the world seem like they're held together with tape. I can't imagine that I'm the first person to notice these things.
You obviously don't know NFL as well as you think you do.
 

VietnamVet

Newbie
Apr 17, 2023
44
82
134
Following up on my previous comment about the roommate's gender, I dug into the game code and found a way to fix the rng gender selection by uncommenting code that already exists to let us choose our roommate's possible genders at the start of a new game with a fully customised PC gender. For those that wish to try it out, you'll need to Ctrl-F search through the game code for 'if setup.gender_db().custom' and either delete this block of code;
<<if setup.gender_db().custom>>
/* overriding roommate selection (the imperfectly progressive college decides this) */
<<set _pcgender to setup.pcgender()>>
<<set setup.gender_db().custom["roommate genders"] to setup.get_gender_node(_pcgender, "roommate genders")>>
<</if>>

Or comment it out so you can undo things later by simply changing it to this;
/*<<if setup.gender_db().custom>>
overriding roommate selection (the imperfectly progressive college decides this)
<<set _pcgender to setup.pcgender()>>
<<set setup.gender_db().custom["roommate genders"] to setup.get_gender_node(_pcgender, "roommate genders")>>
<</if>>*/

Then search for 'Which of these genders might be assigned as a roommate of this character?' and replace that whole section of code so that it looks like this (I had to add extra linebreaks after uncommenting it to make the text look neat ingame);
<br><br>
Which of these genders might be assigned as a roommate of this character?
<br>
<label><<checkbox "_custom_gender_roommate_cisgender_woman" false true autocheck>> Cisgender Woman</label>
<br>
<label><<checkbox "_custom_gender_roommate_cisgender_man" false true autocheck>> Cisgender Man</label>
<br>
<label><<checkbox "_custom_gender_roommate_transgender_woman" false true autocheck>> Transgender Woman</label>
<br>
<label><<checkbox "_custom_gender_roommate_transgender_man" false true autocheck>> Transgender Man</label>
<br>
<label><<checkbox "_custom_gender_roommate_nonbinary_afab" false true autocheck>> Nonbinary (assigned female at birth)</label>
<br>
<label><<checkbox "_custom_gender_roommate_nonbinary_amab" false true autocheck>> Nonbinary (assigned male at birth)</label>
<br><br>

Again, you can comment it out like before if you change your mind later. But if you did it correctly, you should now be able to pick your roommate's gender (it only appears if you click the option to customize your gender rather than use one of the gender presets). It works even if you are a cis female and they are a cis male etc. No more gender restrictions! I dunno if it will cause issues with the rmpartner questline though, so test it at your own risk.
 

boon4791

Member
Oct 4, 2020
258
226
111
Following up on my previous comment about the roommate's gender, I dug into the game code and found a way to fix the rng gender selection by uncommenting code that already exists to let us choose our roommate's possible genders at the start of a new game with a fully customised PC gender. For those that wish to try it out, you'll need to Ctrl-F search through the game code for 'if setup.gender_db().custom' and either delete this block of code;
<<if setup.gender_db().custom>>
/* overriding roommate selection (the imperfectly progressive college decides this) */
<<set _pcgender to setup.pcgender()>>
<<set setup.gender_db().custom["roommate genders"] to setup.get_gender_node(_pcgender, "roommate genders")>>
<</if>>

Or comment it out so you can undo things later by simply changing it to this;
/*<<if setup.gender_db().custom>>
overriding roommate selection (the imperfectly progressive college decides this)
<<set _pcgender to setup.pcgender()>>
<<set setup.gender_db().custom["roommate genders"] to setup.get_gender_node(_pcgender, "roommate genders")>>
<</if>>*/

Then search for 'Which of these genders might be assigned as a roommate of this character?' and replace that whole section of code so that it looks like this (I had to add extra linebreaks after uncommenting it to make the text look neat ingame);
<br><br>
Which of these genders might be assigned as a roommate of this character?
<br>
<label><<checkbox "_custom_gender_roommate_cisgender_woman" false true autocheck>> Cisgender Woman</label>
<br>
<label><<checkbox "_custom_gender_roommate_cisgender_man" false true autocheck>> Cisgender Man</label>
<br>
<label><<checkbox "_custom_gender_roommate_transgender_woman" false true autocheck>> Transgender Woman</label>
<br>
<label><<checkbox "_custom_gender_roommate_transgender_man" false true autocheck>> Transgender Man</label>
<br>
<label><<checkbox "_custom_gender_roommate_nonbinary_afab" false true autocheck>> Nonbinary (assigned female at birth)</label>
<br>
<label><<checkbox "_custom_gender_roommate_nonbinary_amab" false true autocheck>> Nonbinary (assigned male at birth)</label>
<br><br>

Again, you can comment it out like before if you change your mind later. But if you did it correctly, you should now be able to pick your roommate's gender (it only appears if you click the option to customize your gender rather than use one of the gender presets). It works even if you are a cis female and they are a cis male etc. No more gender restrictions! I dunno if it will cause issues with the rmpartner questline though, so test it at your own risk.
I too have hoped that the game would allow us to choose the roommate's gender.
There is actually a mod by funkabunk, for selecting roommate's gender in the discord.


The link to the discord for COT mod is:

Do take note that mods can get outdated when COT gets updated.
So when there is a version update says from 0.7~0.8 please check if the mod still works.
This mod is still working as of version 0.73.
I select roommate to be a male during world creation, made a female PC and found a male roommate upon arrival.
You also have to learn by to install the mods... which isnt that tough.

The description of the mod is as below:
experimental: [RM_RMP_CustomGender] - Unfortunately this doesn't 100% work as desired, as the game will be pretty stubborn about the RM and RMP's genders depending on your seed, sexual preferences, and gender distribution. So, while it does technically work, there's still some rng involved with whether you get the options you picked...
The link to the mod is as below
 
Mar 17, 2025
20
7
3
This one update literally skyrocketed the game from being a good dol alternative to being better than dol itself for me instantly.
Best dang update and feature ever implemented in a game, edging needs to be in more H games fr
 
  • Thinking Face
Reactions: AccidentalGadgeteer

balitz Method

Well-Known Member
Jan 30, 2018
1,258
2,153
419
You obviously don't know NFL as well as you think you do.
I just said that I barely know the rules. Looking it up it's apparently not that only QBs can throw so much as only one forward pass per play is allowed and usually (so every time I would have seen a play) that's the quarterback. The point still stands that clearly the writer didn't even bother to look up the rules with this multiple passes during games nonsense.

It's no better in the other sports, either. Cheerleaders have positions based on things like weight, so they don't just randomly decide who's going to be a flyer on the spot.
 
Aug 31, 2020
83
81
60
No, and as far as I can tell the whole addition of selling videos hasn't changed since it was added!
It's very simple: everything that is not quality is translated into quality by orgasms / cumshots. You fill the excitement bar with other stuff, then translate it into quality with the orgasm segments, and then this is supposed to influence how well received the video is --though I've not noticed a serious difference.
The frats and sororities are pretty janky, too. It seems like the nerdy ones should have their own set of pledge tasks (one of them even advertises itself as being for people who aren't obsessed with football and school pride) and even once you've done them all you don't actually get to move into the house. Why would you ever pay dues to the house when you can't even live there?
I mostly agree with you about how badly it tries to avoid any sort of judgment on peoples' beauty, racial descriptions (that I think would be simpler) etc, but this isn't true. If you get 30 points and get initiated you actually can move into the sorority/fraternity house (you live upstairs, in your own room)
 

phlore101

Member
Jun 28, 2017
388
181
275
I just said that I barely know the rules. Looking it up it's apparently not that only QBs can throw so much as only one forward pass per play is allowed and usually (so every time I would have seen a play) that's the quarterback. The point still stands that clearly the writer didn't even bother to look up the rules with this multiple passes during games nonsense.

It's no better in the other sports, either. Cheerleaders have positions based on things like weight, so they don't just randomly decide who's going to be a flyer on the spot.
Keeping digging that hole. I really hope you dad isn't an Eagles supporter.
 

miawang

Newbie
Sep 10, 2024
46
118
111
I just said that I barely know the rules. Looking it up it's apparently not that only QBs can throw so much as only one forward pass per play is allowed and usually (so every time I would have seen a play) that's the quarterback. The point still stands that clearly the writer didn't even bother to look up the rules with this multiple passes during games nonsense.

It's no better in the other sports, either. Cheerleaders have positions based on things like weight, so they don't just randomly decide who's going to be a flyer on the spot.
There are trick plays with multiple passes. I don't remember the scene, but did it actually say forward pass? Because you can pass as much as you want, it's just only one forward pass allowed. If you pass back, it's totally fine. Here some examples. Especially look at the last one. Something like this is totally legal.
 
  • Like
Reactions: DeMarcus16

UncleEd001sex

Member
Jul 17, 2022
204
344
187
The public update dropped early today. Enjoy

Time for the November update! This one adds a new seasonal event we're calling No Goon Gourdtober. Transcend by avoiding temptation for a month... or just be a temptation for everybody else. Also adds a couple new shops, a bunch of new items and character customization options, and an experimental import/export feature for your player character.

Complete release notes: < >

Download: < >

itch.io: < >
 

saarlewder

Member
Apr 17, 2024
150
33
114
Would be nice if we could change the character's birthday even after the event in which we set it. I misclicked the date because I was trying to get something else done, and when I realized what I chose, I couldn't undo to that choice and I didn't have any recent save, and didn't want to redo a few hours of playing.
 

AccidentalGadgeteer

Active Member
Oct 8, 2020
826
1,178
267
Would be nice if we could change the character's birthday even after the event in which we set it. I misclicked the date because I was trying to get something else done, and when I realized what I chose, I couldn't undo to that choice and I didn't have any recent save, and didn't want to redo a few hours of playing.
If I could change my character's birthday, I could make it so every day is my birthday: Celebrate my birthday during the day like normal, then just before midnight, change it so it's tomorrow. Not only would I get presents every day, but my character would be over a hundred in a matter of months.
 

balitz Method

Well-Known Member
Jan 30, 2018
1,258
2,153
419
I mostly agree with you about how badly it tries to avoid any sort of judgment on peoples' beauty, racial descriptions (that I think would be simpler) etc, but this isn't true. If you get 30 points and get initiated you actually can move into the sorority/fraternity house (you live upstairs, in your own room)
Is that a later event? I did the initiation and expected to move in to the house, but when I looked around I didn't have a room. My immediate reaction was "what was the point of all that, then?".
 
Aug 31, 2020
83
81
60
Is that a later event? I did the initiation and expected to move in to the house, but when I looked around I didn't have a room. My immediate reaction was "what was the point of all that, then?".
You need to find the head of your sorority / fraternity and talk to them about moving in with them, after the initiation, iirc. They warn you that it adds to your dues. Still a bit anticlimactic imo. The pledge tasks are more interesting than being a pledge. Sorority / fraternity life is another thing that needs more content. Perhaps special parties or activities.
 

boon4791

Member
Oct 4, 2020
258
226
111
Man


I cant be a femboy in this game since clothing have no gender
In truth I have no idea what classifiy as a femboy, a male crossdresser?
There is a custom gender option in the game when creating character that I had tried out of curiosity.
I create a PC with male body parts but choose pronouns to be she/her - the game and all other NPC treats me as a female and i start the game with panties instead of boxer, does that count as a femboy?
You can do the opposite and make a PC with all of female parts or just some of female parts and choose the pronouns to be he/man/boy and the game and all NPC will treat you as a male.
 
  • Like
Reactions: Saburo. M
4.10 star(s) 132 Votes