-CookieMonster666-

Devoted Member
Nov 20, 2018
11,306
16,512
Did anyone experience this problem in the elevator? I'm trying to determine if the problem is with Renpy's Set Object or something more specific to that scene.
I can confirm that I saw it with Lita in the elevator. If it differs, I can run through it with Lola as well to see. (In restarting this time, I forgot to turn the transgender setting on until Lita approached the MC at the bar.)
 
  • Like
Reactions: RomanHume

myuhinny

Devoted Member
Sep 7, 2017
8,364
6,361
RomanHume

Not sure if the responses were purple or not but I remember the Lola and Lita responses the ones that give you friend zone points disappear when clicked and don't come back when you roll back like all the other responses do.
 
  • Like
Reactions: RomanHume

SrRK

Well-Known Member
Donor
Game Developer
Jun 18, 2018
1,119
6,633
I wasn't able to replicate this exception. If you can offer any additional information I'll be happy to track the bug down.
Very sorry it wasn't as satisfying as previous installments. Hopefully in due time the introduced plot elements will make more sense and feel more integrated. We're still just scratching the surface and things will get a lot deeper from here.

For what it's worth, a lot of the enhancements were a good opportunity for me to spend much needed time with the game's code that I inherited from my predecessor. All the time I spent under the hood of this thing will go a long way in helping me keep things clean going forward.

All the same, I appreciate you taking a moment to detail your thoughts. Salute mate.
All's good! It's still one of my favorite games and I can't wait for the next update.

I believe the exception occurred in the following order:

Have sex with her against the window > Anal > Move to bed > Doggy > Cum

I ended up clicking Rollback at the exception window, letting her get on top, then cumming > this didn't cause an exception.
 
  • Like
Reactions: RomanHume

Ilhares

Engaged Member
Aug 19, 2019
2,906
11,061
"it's my fault she got drug into this" should turn into dragged
Oh, don't start that, or I'll have to actually go through the whole damn thing and send Roman a corrected dialogue file. There were a lot of grammar issues. I doubt I'd get them all, but the spelling really leapt out at me.
 
  • Haha
Reactions: RomanHume

ArmoredCascade

Well-Known Member
Sep 27, 2018
1,041
370
so I'm guessing were still building up to fuck Cassie and Amanda? because we can fuck Dragon Lady Jane Wife and Litia cuz i just finished all the girls stories
 
  • Like
Reactions: RomanHume

anne O'nymous

I'm not grumpy, I'm just coded that way.
Modder
Donor
Respected User
Jun 10, 2017
10,369
15,286
If you for example click on the red text and rollback to the choise scene then is the red option not there.
RomanHume same for me, but with lola in the elevator, which is normal since you use set for this one.
But you did it wrong, therefore the choice didn't showed up in my second play.

define is an init statement, it don't have its place on a label, and will be created before the game start whatever place you put it. Plus, unlike default, its a statement played only once and not saved unless its value change.
Therefore, when loading the save game, it kept the value of the previous play and there were nothing to show in this menu.
Either you replace the define by default, or reset the value of ns0204_loba_choices before the menu.


Also, your mechanism for the sex-scene is totally incompatible with the skip feature. It choose for you if the player is skipping when the scene start. And like there's no choice defined, while the "cum" button still appear, boom, the game will crash because the label you try to reach do not exist.
You should stop the skipping before starting the scene, with renpy.config.skipping = None. And you should do the same before showing the menu asking if the player want to continue or move on. This because if the skip feature is on, then choosing to move on will automatically present the choice to cum inside or outside, a choice that will not be take in count, and the last scene will repeat itself.

Edit: Forgot to say it, but obviously the problem probably also concern the auto-advance feature.
 
Last edited:
  • Like
Reactions: RomanHume

AdamJohn36

Well-Known Member
Feb 12, 2019
1,049
2,017
Welp just finished my playthrough of the new beta version. Mainly just waited for the incest patch to be available. I definitely love the book that lets you put nicknames for everyone. There were several dialogs that didn't quite fit with the incest patch and the nicknames fixed the dialog problems for me. I enjoyed impregnating all the women that the main character can have sex with. The last update i played the impregnation feature was borked. I look forward to more content with the main character's dau... i mean Cassie. She just steals the show for me even compared to the corporate espionage and intrigue that spices up the relationship with Nanami. I can't wait to see how the romance, seduction, and eventual impregnation with Cassie happens. My curiosity is peaked though about the main story with the main character's job. I wonder what the tipping point will be to make the main character seek out Dr. Amana for help. Will it be because of Cassie? He did promise her he would get help in a certain dialog. I hope deep down that in the end she will pull him back from the brink with the help of Dr. Amana of course. I am excited to see where the story continues in the next update.
 

crugh2112

Well-Known Member
Oct 9, 2017
1,067
1,315
OK, he touched on the skipping while sex problem. The only other problem I encountered that I don't think I see reported here is the SFX for the treadmill has followed me for the entire game since I went to work out. Yes, I turned down the volume to keep myself sane. Dig all the work you have done to this. Long journey from the chicks by the pool beginning...
 
  • Like
Reactions: RomanHume

RomanHume

Sommelier of Pussy & Purveyor of Porn
Game Developer
Jan 5, 2018
2,390
13,342
RomanHume same for me, but with lola in the elevator, which is normal since you use set for this one.
But you did it wrong, therefore the choice didn't showed up in my second play.

define is an init statement, it don't have its place on a label, and will be created before the game start whatever place you put it. Plus, unlike default, its a statement played only once and not saved unless its value change.
Therefore, when loading the save game, it kept the value of the previous play and there were nothing to show in this menu.
Either you replace the define by default, or reset the value of ns0204_loba_choices before the menu.


Also, your mechanism for the sex-scene is totally incompatible with the skip feature. It choose for you if the player is skipping when the scene start. And like there's no choice defined, while the "cum" button still appear, boom, the game will crash because the label you try to reach do not exist.
You should stop the skipping before starting the scene, with renpy.config.skipping = None. And you should do the same before showing the menu asking if the player want to continue or move on. This because if the skip feature is on, then choosing to move on will automatically present the choice to cum inside or outside, a choice that will not be take in count, and the last scene will repeat itself.

Edit: Forgot to say it, but obviously the problem probably also concern the auto-advance feature.
Appreciate the info.

I used Define because in the examples RpT gives, it's how he laid it out. It's nuances like those between default and define that have me just putting all my variables in python in a statement at the beginning of the game to avoid having to deal with it. For now I'm tossing the set() object out and just sticking to what I know. I made the conversion earlier today and will just stick with that for the time being. I may revisit sets at a later time, but for now I gotta patch and move forward.

Currently, the code was set up trigger renpy.choice_for_skipping() when the menu method of the smc was called. This was to stop the skipping when the menu appeared (never really occurred to me that once the menu was up someone would punch the skipping button immediately :sneaky:.)

I don't know if renpy.config.skipping = None will do the trick though since I need to turn it on and off outside of an init statement. But it looks like dropping in the store variable _skipping = True/False where I need it is going to do the trick.

Thanks again for point out this bug. Cheers mate!
 

weaselman

Active Member
Apr 6, 2018
656
615
Oh, don't start that, or I'll have to actually go through the whole damn thing and send Roman a corrected dialogue file. There were a lot of grammar issues. I doubt I'd get them all, but the spelling really leapt out at me.
"if everyone picks up a stone and puts it down in a row then eventually there will be a road"-me, right now (or some smarter guy some millennia earlier, it's not exactly a unique concept)

it's not like I went looking for mistakes, it's just I noticed one (or I thought I did, thanks for the corrections everyone) and reported it
 
  • Like
Reactions: RomanHume

BadWolf71

Member
Jan 1, 2019
192
155
Okay, I'm late to the party with this update, I forgot to bookmark this thread and check for updates. So, past saves are no longer valid/working with this new update, am I correct in my skimming pages and possibly seeing this? Would that explain the following exception occurrence:

You don't have permission to view the spoiler content. Log in or register now.
 
  • Like
Reactions: RomanHume

I'm Not Thea Lundgren!

AKA: TotesNotThea
Donor
Jun 21, 2017
6,582
18,944
Okay, I'm late to the party with this update, I forgot to bookmark this thread and check for updates. So, past saves are no longer valid/working with this new update, am I correct in my skimming pages and possibly seeing this? Would that explain the following exception occurrence:

You don't have permission to view the spoiler content. Log in or register now.
Yes, old saves won't work. It's also mentioned in the changelog. :)
 

BadWolf71

Member
Jan 1, 2019
192
155
Yes, old saves won't work. It's also mentioned in the changelog. :)
Thank you for the answer. I also noticed that my saves were a smaller screenshot size than the one I just did when starting the game from the beginning. IDK if that means it wasn't going to work, but it looked like an indication that the saves wouldn't work. I normally don't look at the change logs unless I am needing to know if something that I had experienced (bug) had been fixed. And since I never had one from this game, until now, I didn't bother to read it.

And if there is an update for a game, I start reading the posts from the last page and work my way back to see if there is something I need to know. And since I mentioned that I just skimmed through, I thought that I had seen that old saves wouldn't work with this new update.

Though if it means better coding and smaller file size, then it shouldn't bother anybody that old saves won't work. Quality games are few, and when one is good, like this one, I'll take one for the team and just start over again without the complaining.
 

BadWolf71

Member
Jan 1, 2019
192
155
There is a small issue, even though I changed the name of the MC, Nanami still calls me Roger. But before the meeting she called me by the name I chose. It does show the name I chose when the MC speaks, but she still calls me Roger.
 
  • Like
Reactions: RomanHume
4.40 star(s) 78 Votes