Ren'Py Brothel King [v0.3t.2] [Goldo]

4.60 star(s) 51 Votes

ZioBen

Newbie
Sep 27, 2016
85
52
Thank you, I tried this game a long time ago and I usually download the latest patch from that forum.
Now there is a forum or a web site with the link to the latest patch or are posted only here on F95 forum?
 

Jman9

Engaged Member
Jul 17, 2019
2,295
965
Right now, we're sort of in exile here and the two threads are the only home BK has ATM. Goldo said he'll come back from vacation in May (well, maybe later in May :)) and see about finding a new home. I suppose it all depends a bit on the HHS+ folks, too, since they are facing the same problem and then some.
 
Last edited:

vadi9203

Member
Aug 2, 2019
461
273
Thank you, I tried this game a long time ago and I usually download the latest patch from that forum.
Now there is a forum or a web site with the link to the latest patch or are posted only here on F95 forum?
The game has been updated in the OP. But if you want to have the lastest patch you can find it in Goldo's sig. If you dont want to always search for it you can bookmark the too it will stay the same no matter when it was updated.
 

Draonir

Member
Nov 24, 2017
106
47
First I offer you my humble welcome here for the refugees after there forum went down.

But I got a question. I know there was some sort of mod for this game that was quite large. Is there right now any possibility to access it?
 
  • Heart
Reactions: __neronero

Jman9

Engaged Member
Jul 17, 2019
2,295
965
I know there was some sort of mod for this game that was quite large. Is there right now any possibility to access it?
If you mean Trait King, that's available in the packs and mods thread.

If you mean Bonanza, the links are still up. But I'm not putting my mods on F95 any longer (HH gets a temporary pass since it's so tiny). Given that this makes any kind of support impossible for the moment, I don't really know how I feel about sharing these...
 
  • Like
Reactions: __neronero

TCZ44

New Member
Jun 29, 2017
8
1
Rollback blocks are manually inserted by the dev into places they deem appropriate, usually just before a major decision, random check or similar. If you cannot roll back anything, it's not them.

Edit: Is the 'back' button actually disabled, or can you still click it but nothing happens? /edit

I am a major user of quicksave (guess who lobbied for the F5/F9 shortcuts :sneaky:), so I haven't really tried it, recently or not. Does anyone else have this problem? If not, maybe you have accidentally disabled rollback somehow?

What does consoling renpy.can_rollback(), config.rollback_enabled, config.rollback_length, config.hard_rollback_limit tell you?

renpy.can_rollback() is False
config.rollback_enabled is True
config.rollback_length is 128
and config.hard_rollback_limit is 100.
 

Jman9

Engaged Member
Jul 17, 2019
2,295
965
renpy.can_rollback() is False
config.rollback_enabled is True
config.rollback_length is 128
and config.hard_rollback_limit is 100.
Something has disabled your rollback mid-game, then.

Does this persist in a new save? Where are you performing this consoling, is it mid-interaction or not?

Try renpy.config.rollback_enabled and renpy.game.log.can_rollback(), too.

Edit: I think the best idea would be to watch the 'back' button and see if it regains functionality at times (during events, dialogue, some of the nightly reports). If so, it's all probably working as intended (i.e. rollback blocks), since BK and rollback don't mix very well. If not, something seems screwed up with your whole rollback checkpoint system.
 
Last edited:

TCZ44

New Member
Jun 29, 2017
8
1
Something has disabled your rollback mid-game, then.

Does this persist in a new save? Where are you performing this consoling, is it mid-interaction or not?

Try renpy.config.rollback_enabled and renpy.game.log.can_rollback(), too.

Edit: I think the best idea would be to watch the 'back' button and see if it regains functionality at times (during events, dialogue, some of the nightly reports). If so, it's all probably working as intended (i.e. rollback blocks), since BK and rollback don't mix very well. If not, something seems screwed up with your whole rollback checkpoint system.
So I just tried loading an old save (pre 0.2 save, same client), and the rollback works just fine. Also tried the renpy.can_rollback() and it came out as true this time.

Edit: created a new save and got the same result as loading older saves (rollback works and renpy.can_rollback() is true).
 

Jman9

Engaged Member
Jul 17, 2019
2,295
965
Also tried the renpy.can_rollback() and it came out as true this time.
Note that renpy.can_rollback() being False is not necessarily an indication of something being wrong. There are lots of places in this game where rollback either doesn't make sense or is counterproductive. The most iconic example being in the middle of the main screen. There's usually nothing to rollback to there.

Still, did you try a new save, got into a dialogue (Gio, training, ended the day) and did rollback return at certain points?
 

TCZ44

New Member
Jun 29, 2017
8
1
Note that renpy.can_rollback() being False is not necessarily an indication of something being wrong. There are lots of places in this game where rollback either doesn't make sense or is counterproductive. The most iconic example being in the middle of the main screen. There's usually nothing to rollback to there.

Still, did you try a new save, got into a dialogue (Gio, training, ended the day) and did rollback return at certain points?
Yes, everything seems to be working fine in a new save, renpy.can_rollback() came up as true too. I'm thinking that something has messed up my main save; and I wish I know what caused it or at least how to fix it. o_O
 

Jman9

Engaged Member
Jul 17, 2019
2,295
965
Given that the rollback system is pretty complex, I'm not sure how one would go about unfixing it once the easy remedies are gone. I for one am definitely not going to try and mess with the internals of the engine so deeply.

I imagine you can try looking for help on the or in the Programming part of the forums here.

I've personally given up on rollback altogether. Not hard, since I was taught in the old school of "fuck up and don't have a recent save, enjoy your misery", so my left hand is always hovering over Ctrl+S/Alt+S/F5, etc. :p It's surprisingly applicable to work environments too, because not all software is bug-free or well-supported.
 
  • Like
Reactions: TCZ44

TCZ44

New Member
Jun 29, 2017
8
1
Given that the rollback system is pretty complex, I'm not sure how one would go about unfixing it once the easy remedies are gone. I for one am definitely not going to try and mess with the internals of the engine so deeply.

I imagine you can try looking for help on the or in the Programming part of the forums here.

I've personally given up on rollback altogether. Not hard, since I was taught in the old school of "fuck up and don't have a recent save, enjoy your misery", so my left hand is always hovering over Ctrl+S/Alt+S/F5, etc. :p It's surprisingly applicable to work environments too, because not all software is bug-free or well-supported.
Your help so far is much appreciated regardless. Also, thank you for bringing the F5/F9 to my attention; that is very useful and I didn't know the game has the function. (y)
 
  • Like
Reactions: Jman9

DougTheC

Member
Oct 15, 2018
388
223
renpy.can_rollback() is False
Not that I have much experience with coding Ren'Py rollback, but " renpy.can_rollback() is False" could just mean the save was made soon afer a "block_rollback()" call, and therefore rollback history is not available to rollback function.

You may be able to use rollback with PageUp key in multi-screen dialogs without decisions, even from that save with "False".

Also, OP has updated list of shortcut keys.
 
  • Like
Reactions: TCZ44

Jman9

Engaged Member
Jul 17, 2019
2,295
965
You may be able to use rollback with PageUp key in multi-screen dialogs without decisions, even from that save with "False".
If renpy.can_rollback() is False, there's a damn good chance the checkpoints are missing altogether or something else is deeply wrong. You can try, but make a save beforehand and don't expect much.

Also, I doubt PAGEUP will work if the mouswheel does not, given that given that BK still has
Code:
config.keymap['rollback']=['K_PAGEUP', 'repeat_K_PAGEUP', 'K_AC_BACK', 'mousedown_4']
 

Emerald_Lord

Member
Jun 19, 2018
131
29
Hello everyone. I enjoyed this game up until I got to the kunoichi minigame. Is there ANYWAY I can skip this minigame? because doing it over and over is starting to honestly get on my nerve and I'm just generally already tired of it. If not I'll happily take any other suggestions.
 

murfdogg

Newbie
Jun 20, 2020
37
28
Hello everyone. I enjoyed this game up until I got to the kunoichi minigame. Is there ANYWAY I can skip this minigame? because doing it over and over is starting to honestly get on my nerve and I'm just generally already tired of it. If not I'll happily take any other suggestions.
here you go...

I hate this minigame as well :p thankfully Goldo has thought of us - you can buy an item called "Makibishi" in the shop which lets you auto-win.
 
  • Like
Reactions: Jman9

vadi9203

Member
Aug 2, 2019
461
273
Hello everyone. I enjoyed this game up until I got to the kunoichi minigame. Is there ANYWAY I can skip this minigame? because doing it over and over is starting to honestly get on my nerve and I'm just generally already tired of it. If not I'll happily take any other suggestions.
For the first 2 for each ninja you can use the "Makabishi" what nero mentioned it's cost 500 gold each. For the 3rd time with the ninja's you dont need to do anything just let the timer go down to 0. Even if you "manage" to catch them it will be a fail anyway.
 
  • Like
Reactions: Jman9 and DougTheC

SanderJK

New Member
May 30, 2017
1
1
I have a girl stuck in "away" for a long time now, it doesn't bother me too much but is there a console command to force her back maybe?
 
  • Like
Reactions: __neronero

Jman9

Engaged Member
Jul 17, 2019
2,295
965
Code:
MC.girls[number].name   (to find/check the right number)
MC.girls[number].away = False
If she was away on a quest, class, etc, she won't complete it and that might lead to extra bugs (although I hope it doesn't).
 
  • Like
Reactions: krakr

krakr

Resident Drunk
Donor
Jun 25, 2017
127
131
One of my girls glitched out. I sent her on a quest & she never returned. It says she'll be away for -127 days. I cant sell her or anything, so she's just costing me money and taking up a slot.

Is there a console command I can use to correct this or delete her? I'd prefer to keep her as her education is pretty advanced.

LOL sorry, I didn't notice the reply above. I must have been typing when that conversation started

Console worked, many thanks
 
Last edited:
  • Like
Reactions: __neronero
4.60 star(s) 51 Votes