Feb 6, 2021
59
98
this design is stupid. no logic to the math behind the grind, just grind. better to just rip the images out of the folder than waste your time clicking through this mess.
 

grahegri

drunk off sake
Donor
Feb 23, 2023
9,959
5,470
BadInfluences-2.01
You don't have permission to view the spoiler content. Log in or register now.
rpdl torrents are unaffiliated with F95Zone and the game developer.
Please note that we do not provide support for games.
For torrent-related issues use here, or join us on !
, . Downloading issues? Look here.​
 
  • Red Heart
Reactions: zenhawk

MarceloYuri

Newbie
Mar 7, 2018
35
84
While I praise your selection, you need to work on the time some events take and how often they can trigger. Got stuck trying to leave the dorm for 3 days.
 
  • Like
Reactions: zenhawk

LTD

Member
Jul 30, 2017
135
124
Definitely my sort of thing with how much the MC gets raped, so please keep doing that!

It would be nice to have some more random events pretty much all over, sexy and not, but what I'd really like to see would be some more meat on the bones. More ways to earn money (is the diner ever hiring? Does anything at all ever happen there?), more of some minor story beats (Frank's pawn shop and the gang, for example, could really be turned into something) and things like seeing the college roomie outside of the dorm room.

Also, sometimes the game feels like it's thinking about being something of a reverse trainer (and I'm not talking about the therapist). Please consider leaning into that, especially as it would spice things up if we want to try a non-slutty route, which we already can, pretty well, but it could be enhanced.

One bug, I think, that I noticed is that after the prompt to try and do some sexier streams I could never find the option to. Even after buying all the stuff there is to buy. So I figure something is broken (it did eventually give me the option to film porn with Chet, use the fucking machine, cosplay streams...all that was fine.

Anyways, I'm enjoying what you've got so far. I will keep my eye out for updates.
 

Traevelliath

Newbie
Jun 11, 2020
18
38
Paying for protection seems to bake the info into some outer game state as the choice carries over to all saves even prior to that. Rolling back also does not nullify the effect ( 10 days of protection )
 

LupusSavira

New Member
Mar 14, 2018
11
7
Found a bug and a fix for Class Socialize events not occuring

open up the HTML in Notepad++file and look for the code:
Code:
</tw-passagedata><tw-passagedata pid="151" name="Class Socialize" tags="nobr updated time" position="4600,700" size="100,100">&lt;&lt;set $gifSelector2 = random(0,7)&gt;&gt;
&lt;&lt;if $gifSelector2 == 1 &amp;&amp; $corruptionPlayer &gt; 34 &amp;&amp; $studentRep &gt; 29&gt;&gt;
&lt;&lt;include &quot;ClassSocializeEvent 1&quot;&gt;&gt;
&lt;&lt;elseif $gifSelector2 == 2 &amp;&amp; $studentRep &gt; 5&gt;&gt;
&lt;&lt;include &quot;ClassSocializeEvent 2&quot;&gt;&gt;
&lt;&lt;elseif $gifSelector2 == 2 &amp;&amp; $studentRep &gt; 9&gt;&gt;
&lt;&lt;include &quot;ClassSocializeEvent 3&quot;&gt;&gt;
&lt;&lt;elseif $gifSelector2 == 2 &amp;&amp; $corruptionPlayer &gt; 29 &amp;&amp; $studentRep &gt; 19&gt;&gt;
&lt;&lt;include &quot;ClassSocializeEvent 4&quot;&gt;&gt;
&lt;&lt;else&gt;&gt;
&lt;&lt;include &quot;ClassSocializeEvent 0&quot;&gt;&gt;
As you can see, it's listing most of the events as "2"

change it to:
Code:
</tw-passagedata><tw-passagedata pid="151" name="Class Socialize" tags="nobr updated time" position="4600,700" size="100,100">&lt;&lt;set $gifSelector2 = random(0,7)&gt;&gt;
&lt;&lt;if $gifSelector2 == 1 &amp;&amp; $corruptionPlayer &gt; 34 &amp;&amp; $studentRep &gt; 29&gt;&gt;
&lt;&lt;include &quot;ClassSocializeEvent 1&quot;&gt;&gt;
&lt;&lt;elseif $gifSelector2 == 2 &amp;&amp; $studentRep &gt; 5&gt;&gt;
&lt;&lt;include &quot;ClassSocializeEvent 2&quot;&gt;&gt;
&lt;&lt;elseif $gifSelector2 == 3 &amp;&amp; $studentRep &gt; 9&gt;&gt;
&lt;&lt;include &quot;ClassSocializeEvent 3&quot;&gt;&gt;
&lt;&lt;elseif $gifSelector2 == 4 &amp;&amp; $corruptionPlayer &gt; 29 &amp;&amp; $studentRep &gt; 19&gt;&gt;
&lt;&lt;include &quot;ClassSocializeEvent 4&quot;&gt;&gt;
&lt;&lt;else&gt;&gt;
&lt;&lt;include &quot;ClassSocializeEvent 0&quot;&gt;&gt;
 
3.00 star(s) 4 Votes