Comments

Log in with itch.io to leave a comment.

Viewing most recent comments 3 to 42 of 1,347 · Next page · Previous page · First page · Last page

Just a little thing, but I can't find tights that work for the elk challenge. Where would I be able to find some? I have tights, but it for some reason tells me that it's underwear and when I go out without the skirt I usually wear it says "You need to be wearing tights, not... nothing."

Never mind, I found that Yoga pants work.

(+4)

Holy crap! the Religious girl was at the Quad party gave me a beer and asked to becomes Fuckbuddies. Is this intentional? Either way it works for me on this playthrough.

(+2)

I know we have the river rat, but i think it would be dope to get a nightclub as well

I think the Expeditioner's Longcoat description has a typo.

A short sleeved longcoat with %metal trim. Tomorrow Comes. We Continue.

I'm Starting a new game in the hopes of rerolling a teacher unfortunately. He's super hot but completely straight. I could just make him ugly. But I prefer seeing attractive people in my life. So I'm going to adjust my settings to spawn more Bi people to spawn.

(1 edit)

In the future could some form of bulk purchasing be added?

(2 edits) (+1)

is there a way to change your relationship status if you want to be more than friends with bennies or are you stuck in it?

edit: nvm my dumbass was in an exclusive relationship with someone else; when she confronted me for cheating, we broke up and I was able to ask my guy out

Gimme the animal ears and tail back ;-;

(+2)

they're in the Wild Fantasies online store

(1 edit) (+3)

Is it possible to invite more than 1 quests in sexual steaming (like MFM/ FMF/ couple swap scenes when steaming)?

(+2)

Right now there is no way to invite more than one person to your stream, but there is a scene with a guy and girl if you're on the esports team and a streamer on both niche.tv and college cams!

(2 edits) (+4)

You have an issue with your random number generation, specifically in the rir_bm() function in the code, which essentially takes an upper and lower bound and generates a normal distribution from there, with optional mean and stddev parameters. (For those who aren't following any of this, you can open up the html file you get when you download the game into a text editor like VS Code and ctrl+f search for "rir_bm" and there are only two instances where the function appears in the code.)

The main issue is that for the only instance you use this function, in character stat generation, you supply a pre-calculated mean and stddev based on the range of expected values for a given stat, which in the end yields a random normal distribution that does not correspond to either the calculated mean or the mode. If the lower bound were 200, and the upper bound were 400, for example, then the actual mean that your function spits out is 260, not 300. Because you calculate the mean as (200+400)/2=300, then divide by 1000 => 0.3, and then rir_bm() calculates the normal dist and multiplies by the size of the range (400-200=200), and multiplying the normaldist by 200 multiplies the mean by 200, so now we're at 60. Then it adds the start value to get 260. This isn't as much of an issue at larger ranges which are more often used, but the problem gets worse for standard deviation. 

The pre-calculated value for stddev, in the example above, is done by the calculation (400-200)/2, along with a comment in the code saying "6 is a natural distribution, so we're allowing for more frequent extremes". You mean that dividing by 6 is a natural standard deviation, and you're allowing for more frequent extremes by only dividing by 2, essentially multiplying all standard deviations by 3. Why then does it feel like all the npcs are always way too similar, if we're allowing for a massive standard deviation? Well, this value of (400-200)/2=100 gets sent to the rir_bm() after getting divided by 1000 which yields 0.1, and then gets multiplied by the range size of 200, so we ultimately get a standard deviation of 20, not 100. So we're actually decreasing the number of frequent extremes, not allowing for more of them. This is why the game lacks variety; it's a big problem that's been present for a long time now. I don't know how you would go about fixing it, but I would just use the already existing random_bm() function with the means and stddev's that are already calculated in character stat generation. And then I would adjust the stddev that is trying and failing to compensate for being severely reduced in the rir_bm() function. Maybe divide by 4 instead of 2.

Sorry for the unreadability of this comment and I'm not sure where would be a better place to put this, but I'm sure this will get to anthaum somehow. This desperately needs fixing.

Tldr; the random number generator that generates stats like height, plumpness, penis size, etc. is broken and severely limits the variation in these stats, making characters way more similar than they should be, and makes it so you almost never see characters with extreme stats. And it's honestly a pretty easy fix, so I hope this gets to the devs so they can fix a pretty bad problem this game has had for at least a year if not longer.

(+3)

Anyways, great game, there is nothing else like this anywhere. It's really something special, not just as a porn game, but as a social simulation in general. Its ability to provide a dynamic context for things to actively take place, rather than just a collection of  hardcoded events or pre-written stories, is unparalleled by anything out there. I would love to see updates that deepen the social, psychological, and physical dynamics of the game, rather than purely adding content. Anyways you're doing a great job, whoever you all are who are working on this game!

(+1)

Just had some fun digging through the code (learning new thing along the way) and I think I see where the problem is. The variable names are a bit confusing. The only originally normal distributed value here is the random number from the  bm rng algorithm (standard normal distribution to be exact). "stddev", as it is in the code, is really just the the distance from the middle/mean of the range to its edge. 

The idea seems to be to create a normal distribution of stat values by multiplying "stddev" with the bm rng value. Since the mean of this distribution is at 0 you then just have to offset it by the mean value.

 This kinda happens in the random_bm function already, but "mean" and "stddev" were dived by 1000 beforehand (creating a random factor for the the rangesize i presume). This makes the calculations in rir_bm redundant. The problem is that this distribution does not fit within the specified range. A solution to this is to just divide the bm rng value by 2 (or up to 2.7) to squish the distribution and then either only accept values between -1 and 1 or just clamp the rest like before. Create a kinda normalized factor so to speak.

To summarize my solution would be: Don't divide "mean" and "stddev"  by 1000, divide the original "num" value in random_bm by 2 (up to 2.7) and create a (kinda) normalized factor to multiply "stddev" with and offset it by adding "mean". 

What do you mean by “bm rng”? Do you mean the random_bm() function or something else? When I checked how the random_bm() algorithm works by recalculating it myself, it seemed to produce results accurate to the stddev input, but I could be wrong. I could check again but I don’t see the reason for altering the algorithm in random_bm(), it’s only the use of rir_bm() that’s the problem. What’s your reasoning for how random_bm’s stddev is only the distance from the middle to the edge of the range? I didn’t get that impression. Unless I’m just confused about the term “bm rng”.

By "bm rng" I mean the Method used to calculate the random number. It's called "Box–Muller transform", I just forgot the name and shortened it.

I called stddev that is because it is the same calculation. It is halve the rangesize and thus the distance between mean and min/max of the range.

The way the final stat value is calculated is weird or I might be misunderstanding something. Both stddev and mean are divided by 1000 and thus normalized to the max range (0=0 ... 1000=1). rir_bm() calls random_bm() with stddev and mean and returns a factor which is then multiplied by the rangesize and adds that to the start value. The problem is the multiplication with the rangesize. 

If you look at the distribution of the values random_bm() returns, you get a normal distribution. The thing is that all these values are normalized to the max range of 1000. If you simply multiply them by 1000 you get a normal distribution of stat values centered correctly around mean, which I thought was what we are trying to calculate here.

The important part is that the the values random_bm() returns are absolute values(with a root of 0), but rangesize is relative. It's a bit difficult for me to explain, but basically this rangesize can be anywhere on the range. Similar to your example, if you take values on the higher end 800 to 900 for example. The mean is 850, but if you calculate it with the code you get num=0(mean of the box-muller transform)*stddev+mean=0.85;  diff=rangesize*num=100*0.85=85; value=start+diff=800+85=885. And well 850=/=885.

And since both rir_bm and random_bm are basically trying to calculate the same thing in two different ways, I thought just make it simple and use the method I described.

(+6)(-1)

do we have a option to pick em up in sex? like carry or full-nelson? if not ill that and pregnancy in the new update😇

(+2)

You know what... I agree we need more standing sex options.

(+3)

Like the idea of holding up and full nelson sex, maybe upside down position too... (if MC or partners is strong enough?)

hy

(+1)

im back for da Update 

question - Reneval Festival if in Geek House?

or only in "basic" dorm?

(+2)(-2)

I am looking forward to the pregnancy update but awesome game!

Frrr

thats what im most looking forward to!

(+1)(-4)

Nah we need more piss content, freaks unite praise the lord jesus christ amen he would have a piss kink if he were around today

(4 edits) (+1)(-1)

I don't know about that last part. But I agree... We need more fleshed out piss scenes/content. We can piss on them and in their mouth. Which is cool... But I want to see them rub it in, Swallow, Recoil, blanch, Eyes widen in surprise. 

You could even put in a thing where the lower your bladder the longer you piss. So if your bladder meter is in the green. You only get one piss action. If it's in the yellow you get two piss actions. And if it's in the red you get 3. 

Also! When we piss inside I would prefer if it said something like. You slam in hilting yourself, and release your bladder. Or something like that. Maybe even adding in a you grab their hips/waist holding them in place as you do... 

Because what we currently got is. You take your cock into your hand. You pee, urine arcing out in a golden stream. Which doesn't sound like I'm pissing inside of them at all. 

Finally peeing on someone should also instantly raise there humiliation. Period. Rather they like it or not being pissed on is degrading. So it should raise their humiliation stat. Pissing inside of them should double it. If they like it half it, but they should feel degraded.

(+2)(-1)

I no longer want more piss content

(2 edits)

😮‍💨Im disappointed😴

(+9)

v0.7.1d has HEADPATS! Such a wonderful add :D 

(+3)

Heck yea!

(+2)

This actually came from a suggestion in the Discord! When something is simple to add but would make so many people happy, why wouldn't we put it in? xD

How u do it?

It might have to be someone who's submissive. One of my poly partners has that option but my other poly partner does not. 

(+1)(-18)

I'm ngl, I'm kind of done playing this one until the pregnancy update comes. :P It's just not fun without it.

Same but im still playing Cuz i got to grind the challenges..... Again!

(+2)

Why is it not possible to have a relationship with teachers, coaches, and other staff members within the university?

(+4)

Like full relationship? Bc ik you can flirt and hook up with your professors

i joined one of the greek houses but dont have a room their for some reason i can still do the other things but is their something i need to do to actually have a room or is my game glitched?

You have to ask your hous-president about living in the house

thanks

(+1)

Does anyone know how to join the greek house? Sorry for the inconvenience,  i stopped playing for a bit and i returned just yesterday

A few weeks into the game there will be a 'rush week' (this is marked on the calendar), where you can go and pledge to a Greek house of your choice.  At the end of the rush week you'll have to go and do tasks, etc.  

Ohh okay thank you for taking the time to reply!

Where do I get the phone cases? Is it only in the thrift shop?

(+5)

I believe Phone Cases have been removed in favour of Phone Armbands, which share the same purpose.

(+4)

I found a blue phone case in the thrift store, so I guess they’re only in the thrift store. ╮⁠(⁠^⁠▽⁠^⁠)⁠╭

(+1)

Yeah, there's a bunch of items that only appear in the thrift store.  I never remember to consider looking there.

(+13)

Man this game sure has come a long way since I started playing it in August 2023! Can't believe it's already been over two years!

(+3)

Fr, I started playing just after the December 2023 0.4 update.

(1 edit) (+11)(-12)

Gonna be updated soon, hopefully with an expansion to exhibitionism and public nudity, being able to be naked everywhere.

Edit) Well at least there was something of an expansion to exhibitionism, you can walk around naked in the Greek houses if you have high exhibitionism. Nice.

(+7)

It'll probably be an expansion on the greek houses.

(+7)(-3)

You really need to chill out, dude, you've been making the exact same comment on this game for like a year now.

(+2)(-10)

Because I really want it to happen and because that's what I'm mainly here for. If I don't keep posting my desire, it's like not voting, not having your voice heard. So I'm gonna keep posting asking for expanded exhibitionism.

(+3)(-1)

Its the same as not being a patreon subscriber. They dont listen to our wants here in the comment section. Ive given up asking for what i want, and just checking if its in yet. If its not, its another month of waiting

(1 edit) (+3)

I am translating from Russian to English, sorry if there are any mistakes


For those who didn't know how to edit NPC fetishes. For this you will need the cheat menu enabled, obviously. The names of fetishes are not difficult to find

(+10)

I'm glad to see there's a lot of people in love with this game

(+9)

3 more days...

(+6)(-1)

do we know whats coming next?

expansion on greek house events, panty raid, and a card game.

(+10)

Dom and top route is still a mystery land awaiting reclaim

(+8)

Waiting for the next update... Every update its amazingly surpresive. I waiting that like a christmas present...

(+5)

about sport clubs - please add option to reqest to NPC with same relations ( friends, best friends, sub/dom and lovers ) join to specified sportclub with you character ( and events with them ).

(+2)

No bc it'd be so cool to convince your friends to join sports with you and wreaking havoc with them

(+1)(-38)

Hi, I'm one of the player of this game, may I ask. 

how about you make easter egg, when we put 007n7 as our name, we will play as 007n7 college version, 007n7 is a character from forsaken

(+25)

are you even old enough to play this game?

(+14)(-2)

Focus on your studies.

You’ll accomplish great things if you study more literature, science, theology, and spend less time on this side of the web.

This is a sign to take my college life seriously ......

This is a sign.

(+8)(-1)

LMAO YOU BASICALLY OUTTED YOURSELF WITH THIS ONE CONGRATULATIONS

(+1)(-4)

May I ask what's wrong with my comment?

(+1)(-3)

Cause if I did something wrong, I can delete this account and not online in this web, if any of you all want, and I'm sorry if I make you all hate me

(+19)

There's nothing wrong with your comment, and nobody here hates you. It's just that people assumed you're a minor based on your comment and are suggesting you shouldn't play 18+ games like this one.

(+1)(-1)

I don't think there is anything wrong with your comment just people for some reason think you're under 18. Though I'm not really sure how they came to that conclusion.

(+2)

People are assuming that they're under 18 because they're asking for a ROBLOX easter egg.

(+28)

I wish we can take our partners to go buy  clothes I wanna dress them up alot

(+20)

I second this, and would like to add the ability to gift clothing to a partner. There are embossed collars you can buy at the porn shop, it'd be nice to be able to give one of those to a sub and make a rule that they have to wear it. 

(+4)

Yes! I 100% agree, i wish we could gift them clothes and have them comment like "i'm wearing the skirt you gave me, i really like it". That would be cool.

(1 edit) (+16)

After going through the comments  I think it would be wise to add a soft reset for the Story Events. Since some people are accidentally locking themselves out of the content. Maybe set it to where it just resets the current mission objective. You could add the soft reset button into the hints tab. Or make it a cheat option turn on cheats go to hints. Reset a story that you want to do again.

(1 edit)

Anyone knows why this happens? Pops up everytime I press restore game. Also can't access my saves, this popup shows up then the save menu doesn't fully show.

(Realized image didn't show but It says 'An embedded page at html-classic.itch.zone says error opening idb {}' inside of a popup with the option to say 'ok')

Checked back later and it 'fixed itself', though by fixed itself, I mean my save deleted, and I don't get the pop up. Not sure why, usually my Itch saves last a few weeks without me having to export, a little disappointed but I didn't really finish the second week so Its not that big of a loss.

Does the prompt to change the relationship with a character only ever come up once (e.g. acquaintance to friend) or can it reoccur after "keeping it casual"? Is there a way to manually change it afterwards?

Yes it will pop up again the next day, or at least it did for me.

(1 edit) (+10)

I recently discovered the cheat menu. Which is pretty cool you can add traits, increase or decrease values. I admittedly gave myself 200,000. But I got one question Why cant I change/edit NPC likes and dislikes or Sexual preference. Bro I was so excited to find out there was a cheat menu. Because I just new I could edit they're likes and dislikes... But no! I can't do it why. Like we already have the list because we have to pick our own likes and dislikes. Just allow us to pull up that list for them. So that we can edit them. 

So where's the cheat menu, brother ?

(+1)

You go to "options" and then "difficulty options" and then go all the way down  right next to "reset to default" and enable cheats should be above it

(+1)

It lets you edit your skills as well and make progress faster

(+10)

There needs to be some events regarding "rival" special characters if you manage to woo them, my character somehow managed to crush on The Admirer's Admirer and after managing to gift them enough times for them to no longer hate him, she ended up even asking my character on several dates until we got together. I expected some special events out of it, like even changing how some of the DnD sessions go but nothing, even the abrasive comments felt out of place considering at some point we were together. I kind of thought she'd be more showy during the sessions from now on, like she did a few times for The Admirer.

That, and the special characters which you're supposed to woo, there needs to be some negative events as well if you manage to flunk their interactions into dislike enough. For example, and talking about earlier, Admirer getting more desperate if she sees you with someone else, more possessive and so on. I think jealousy, with or without becoming an item, would be really good to make the world feel more alive.

That being said, these two were just the easiest examples that came to mind, other  characters could be interesting to have such interactions(Quickieburger advisor/awkward love triangle etc...). Bring out the good in the bad and the bad in the good, if that makes any sense, it would make things really interesting...

(+18)

Agreed. I feel like adding some personality/autonomy to the NPCs would immensely add to the game. More so than pregnancy imo. A lot of people are asking for pregnancy but I feel like NPC personalities would keep me far more entertained until pregnancy comes rather than vice versa.

Maybe jealousy and story changes depending on relationship for Special Characters will be implemented for Background NPC simulation on the Roadmap. This is what I'm really hoping Anthaum develops next after Greek life!

(+3)

I’ve been having sex with the best friend for the whole year and it still doesn’t let me to date him

(+2)

You can't progress with The Best Friend if you're already dating someone. Even D/S relationships count. This could be it.

Also, in every save I've played, The Best Friend is usually Open. Maybe you must have the Open Relationship inclination as well?

Have you solved the mystery at the quad party/been helped by The Best Friend in the dorm? I'm guessing yes since it's virtually impossible to have sex with them until you do one of these events... My main guess is you're already dating someone or you don't have the Open inclination.

if you has't "complete" relationship - you can date with many people.

for date with best friend you need increase relationship to max.

(1 edit) (+2)

I don't know what you're talking about. Because I always get into a relationship before dating my BF. You just have to complete their story quest. Which means you've gotta A) be attractive to them so you can get the shower scene. Or B) Solve the Mystery of the Party Milkshakes. And then spend time in the afternoon with them talking about sex. Which eventually gets you the spend the night watching porn scene. That's unlocks the relationship, and allows you to choose where yall want it to go. Which is Friends with benefits, or Dating. You can then choose between Monog, Open, and Poly dating (If you're poly).  If you're not poly find someone that is and start dating them. Agree to a poly relationship, and you'll unlock the polyamorous Inclination.

i think it about "random NPC" - status "best friend" maybe a lot of characters ...

(1 edit)

Well Im talking about the Story NPC. Your Best Friend who went to college with you. But it is true that some NPC's want a monogamous Relationship. So they won't except a polly relationship at first. All you can really do is raising you charisma level up. And hope you become convincing enough.

(1 edit) (-1)

If you can just straight up fuck him. You probably have him as a fuck buddy. Which means you've already messed up one of the prompts. If you choose the be friends with benefits option. After the watching porn and falling asleep together story node. That's all yall can be. You have to choose the start dating option . Which give you like 3 choices. Together, Together Open, and Together Poly. At least those are the options I had because my character is Poly, My BF is Open, so I would never choose monogamy.

i also can sex my best friend, but we are not fuckbuddies. theyre still single too. also our romance chart is capped at 60%. so no, being fwb has nothing to do with it

(2 edits)

But it's not possible to sleep with them till you complete their quest. Which means you've already watched porn with them right? Or do you mean you can talk about sex with them? No wait you said their romance is capped at 60. which means you've been on a date with them right? Kiss, Had Sex, Made Them Cum. That would give you 3 hearts putting you around 40to50. First Date is 4 hearts which is 60to70.  Somewhere around there. So you've gone on a date. Which means you've done their quest. Because again unless you've done the stay night event. You can't sleep or go out on a date with your Best Friend. Which means you either woke up early and left thus not seeing the event to the end. Or! You clicked through the lets talk part of the event, and accidentally picked the be Friends With Benefits option.

(2 edits)

Wait I just went through my option to turn on percentage values. And a 3 hearts you max out at 60% which is the 4th heart. 4 hearts your max out is like 80% which is the 5th heart.  and at 5th heart you can max out at 100 romance. Why are you stuck at 60%. Because you can't take them on a date to get the first heart. Why cant you take them on a date. I don't know. Even the one time I did accidentally click The Friends with benefits option. I could still take them out on dates. So it seems like yall have bugged your games. How? I don't know it seems like yall somehow bugged his story event. The only story events I know you can fuck up. Are the shower event. By choosing to handle it on your own. Which is why the party milkshake event is clutch. Because that just allows you to skip it, and the favor quest. Or Yall left to early after spending the night watching porn. And unfortunately for some reason that story node doesn't repeat after the event. It just ends up becoming a sex option. It wouldn't be anything to add after clicking the talk about sex option a stay and watch or lend a hand option. Which could lead to a soft fix. Of that bug. But the main problem is that you two aren't telling me where yall are at in the QUEST LINE! Yall are just saying you can fuck. Without explaining how yall got to that point. Making me do all of this guess work. 

(+3)

once again, we are not fuckbuddies. apparently if you choose to just get up in the middle of the night without sexing them in the morning and then talking about it, it breaks the entire storyline and locks you into that limbo state where you can sex them freely but cant date them. as you said in your other comment, there definitely should be a soft reset for events, because its been two and a half school years in my save (not irl time) and best friend is still just a best friend

also yeah the problem is that i left too early so the quest just. ended but didnt end? so theres a sex option but no sleep and talk option. which is kinda weird?

(1 edit)

Bro I just scrolled through the comments, and saw where you stated.  

"Is there a way to still romance my best friend if i skipped the "sleep together and fuck in the morning" event by getting up early and not making advances?" 

You gave me a down vote already knowing in your heart. That you bugged and Broke the BF quest. By not finishing the sleep over event. Are you serious? Bro load an old save or start a new game those are your only options.

i didnt dislike your comment ww!! there are other people in the comments too. im just bummed that apparently the only way to fix a "broken" event is to start a new save. there should definitely be a way to fix things

(3 edits) (-3)

😬You dont have multiple saves? 🤔There's no Old Save that you can just Load? 😑I always go to pg 2 To make a world save. Just incase I fucked something up. And to many days/events have passed. 😏I have a save for the Dorm, a Save for the Class Room, I have a Save for Streaming, I Have a Save for Dates, I Have a Save for Parties, 🥵I Have a Slave for Smashing, I Have a Let's See What Happens Save, and that's all just Pg 1. 🙂‍↕️Then on Pg 2 I have my world state saves. Everything is going perfect so let's save the current world state. I have 4 of those just incase. 🤨Why? 😮‍💨Because I'm cautious!

For some reason with this version of the game, when I charge my save, it completely freezes and I can't move from place to place

Try Options > Repair a Save

(+11)(-1)

Is there any chance you would expand on the body type mechanic at all? like have it have a more profound affect on the game?

(1 edit) (+7)(-10)

Is there by any chance you'll be adding chastity cages for both men and women into the game?

Viewing most recent comments 3 to 42 of 1,347 · Next page · Previous page · First page · Last page