- Sep 9, 2019
- 995
- 1,221
I let the father hang himself and he showed up for dinner?
It's not out yet.Can anyone upload the latest android version?
Don't get me wrong I'm not condemning this game. If I was going to write a review I'd want nothing more than to give it 5 stars. However currently I don't think I could.I agree that text/scenes need to change to reflect changes in relationship/love/corr status, which saddog seems to have started by removing some scenes that make no sense to repeat (meet the boyfriend). You need to remember it is a work in progress and unlike some games where updates add days/content to the end this one is more work on a part of the whole as it goes.
You're wrong, I checked this information yesterday. As I did everything, the first week, 5 days in a row I just take the drug tasks at 9 pm, from the second week I started just taking them in the morning, every Tuesday and Thursday, after passing 5 boxes, I found 2 changes. 1 change opens on Nicole's first date, there appears an option, go to another toilet stall and watch NTR. The second option is at 9 pm, when you are accepted into the gang, and brought to the basement for the first time, there is an option for nicile to punish David.He's lying.
Saddog himself changed the number of deliveries needed from 5, to only 2. Been that way for quite some time.
There is at least one story-centric plot point where your actions, love/corruption stats dictate outcome in such a way as to "close" or "lockout" certain things.
Making Nicole the MC's slut on Corruption path, allows Cass to be in the gang without Nicole freaking out like she does on her love path.
As above, he's lying.
Saddog changed how many boxes need to be delivered from the original 5, to only 2, long ago. Too many people were whining about it... Almost as many as didn't read what they told to do in order to actually make the deliveries in the first place.
There are actually only a few places in the code that check to see if the drugs have been to delivered to Ruby in the Subway in the original game. It uses the variable "jobdone" to increment the drug deliveries made to Ruby and then to check it later when going to the living room event at 9m with Davide. This is part of that scene down below.You're wrong, I checked this information yesterday. As I did everything, the first week, 5 days in a row I just take the drug tasks at 9 pm, from the second week I started just taking them in the morning, every Tuesday and Thursday, after passing 5 boxes, I found 2 changes. 1 change opens on Nicole's first date, there appears an option, go to another toilet stall and watch NTR. The second option is at 9 pm, when you are accepted into the gang, and brought to the basement for the first time, there is an option for nicile to punish David.
label lroom21talk:
hide screen locations
scene livingroom 9pm 002
davide "Hey bro!"
if inc == True:
dad "Son!"
else:
dad "[pov]!"
if jobdone >= 2:
$ jobgang = False
jump basementgo
if frontdoorddfirst == True and gangmember == False:
davide "I know we had a bad start, but I'll give you a second chance."
else:
davide "Good to see you!"
scene livingroom 9pm 004
davide "We could use your help!"
mom "<whisper> But where to hide now?"
if NTR == True and momrelationship <= 29:
mom "<whisper> Should we seperate?"
jump ndate421wc
else:
jump ndate421men
davide "And it's time that you get punished for being so rude!"
mom "But..."
davide "No! Talking to a higher gang member like that! You know the rules!"
mom "..."
pov "{i}Punishment, hm...{/i}"
if NTR == True and momrelationship <= 5:
jump base9ntr
else:
scene basement 9pm 042nn
davide "Go on! You can now choose how you'll punish her."
With NTR, yes it is.In the original game WITHOUT the mod is it possible to get the girls pregnant by another person with the NTR? I'm exploring the game paths and just curious if it's possible? If it's not in the original then is it possible with the mod?
when you go on trip?Is the futanari in Nicole love trip avoidable ? why does it call love when other dicks are involved ? It should be in ntr/sharing route right?
The game is perfect in the original version.There are actually only a few places in the code that check to see if the drugs have been to delivered to Ruby in the Subway in the original game. It uses the variable "jobdone" to increment the drug deliveries made to Ruby and then to check it later when going to the living room event at 9m with Davide. This is part of that scene down below.
The check up above is where it has the "if jobdone >=2" which means if the drugs have been delivered at least twice it will jump to the "basementgo" label, which is the scene in which the MC becomes an official gang member (and also turn off the option to get more drugs from them when you return to them later with the $ jobgang = False).Python:label lroom21talk: hide screen locations scene livingroom 9pm 002 davide "Hey bro!" if inc == True: dad "Son!" else: dad "[pov]!" if jobdone >= 2: $ jobgang = False jump basementgo if frontdoorddfirst == True and gangmember == False: davide "I know we had a bad start, but I'll give you a second chance." else: davide "Good to see you!" scene livingroom 9pm 004 davide "We could use your help!"
So you can technically deliver the drugs to Ruby more than twice if you want, but twice is all that is needed, even in the original game.
However, none of the other scenes check for the "jobdone" variable later to unlock more options.
The other two scenes you mentions actually check for different things to be available.
The first one is the option to watch the NTR scene during Nicole's first date:
This is that check. Is it simply checking if NTR is enabled and if the relationship is less than 29 points. If you fit those requirements, then it will give you that option you mentioned. Otherwise it will just automatically have you go to the men's bathroom with Nicole.Python:mom "<whisper> But where to hide now?" if NTR == True and momrelationship <= 29: mom "<whisper> Should we seperate?" jump ndate421wc else: jump ndate421men
The second scene was the option for Davide to punish Nicole during the scene when you are accepted into the gang:
This one is checking for NTR to be enabled and the relationship with Nicole to be 5 or less. If that is the case then it will jump to the option for you to have Davide punish her instead. Otherwise, it will allow the MC to choose between the Love and Corruption options to punish her.Python:davide "And it's time that you get punished for being so rude!" mom "But..." davide "No! Talking to a higher gang member like that! You know the rules!" mom "..." pov "{i}Punishment, hm...{/i}" if NTR == True and momrelationship <= 5: jump base9ntr else: scene basement 9pm 042nn davide "Go on! You can now choose how you'll punish her."
I just thought I would clear this up so you don't have to do extra drug deliveries if you don't want to. But it is still a good way to make some extra cash at the beginning of the game. So it's definitely not a bad idea!
That's on you though.You're wrong, I checked this information yesterday. As I did everything, the first week, 5 days in a row I just take the drug tasks at 9 pm,
That you didn't need to do, but did it anywayfrom the second week I started just taking them in the morning, every Tuesday and Thursday, after passing 5 boxes
That NTR is absolutely unrelated to box deliveries.I found 2 changes. 1 change opens on Nicole's first date, there appears an option, go to another toilet stall and watch NTR.