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

4.60 star(s) 44 Votes

DudeBro79

Member
Jun 8, 2020
250
180
How are you supposed to increase customer capacity? alot of girls with decent constitution can only serve 1 customer at a time or something to that effect
You need to increase the related stats for that job as well. i.e. Charm for Waitress job. There is also a perk that increases customer capacity. Also, note that a girl working a half-shift can only handle half her usual amount of customers.
 

morty2301

Member
Oct 9, 2018
287
131
Also I'm not a a fan of the random event of just -100 cleanliness because fuck you, pay about 1000 gold to clean and not be able to even earn much anymore because its so filthy and also an extra fuck you because your girls will easily just get sick
 
Last edited:

Jman9

Engaged Member
Jul 17, 2019
2,294
957
Also I'm not a a fan of the random event of just -100 cleanliness because fuck you...
It's probably one of the bigger early challenges. Read a bit back, there were several courses of action suggested. The easiest is to just shut the brothel down for a while to avoid ill girls, send them questing if you can while cleaners work for non-emergency pay. Employ more goons and put the MC on patrol to make -100 into -50.

The whole thing could do with a better warning, though.

I can also just picture your rage if I'd ever released the 'Guild extorts a lump sum out of you every week' feature and you got tricked into playing it. :devilish:
 
Last edited:

Hermenegild

Member
Sep 18, 2017
403
226
Strangely enough, it doesn't like to do the whore part if I set 'em to full shifts. It just goes full work day instead.
Check if your full job capacity is big enough. Note that if you're working-and-whoring on a half shift, you're basically working a quarter-shift each. I'm not sure which way the game rounds, but it's possible to be unable to serve any clients if your raw capacity is less than four.
 

morty2301

Member
Oct 9, 2018
287
131
It's probably one of the bigger early challenges. Read a bit back, there were several courses of action suggested. The easiest is to just shut the brothel down for a while to avoid ill girls, send them questing if you can while cleaners work for non-emergency pay. Employ more goons and put the MC on patrol to make -100 into -50.

The whole thing could do with a better warning, though.

I can also just picture your rage if I'd ever released the 'Guild extorts a lump sum out of you every week' feature and you got tricked into playing it. :devilish:
how do you make MC go on patrol? also thankfully after that and just bleeding for a bit, I got REALLY fucking lucky and was able so sell a girl for 9900 something gold after a gild quest which solved my money problems for now. Also there's a tip about a H preferences menu but I can't seem to find it
 

DougTheC

Member
Oct 15, 2018
386
218
From HHS+ Discord, site replacement:

DougTheCYesterday at 9:03 AM
I'd like to promote cooperation between HHS+ & Brothel King, especially in terms of new shared website/forum/wiki.


UmgahYesterday at 7:12 PM
As for the wiki, we plan to use the built-in wiki of GitGud service (it's based on GitLab).

[7:15 PM]
Example of GitLab-based public wiki:
DougTheC Will this wiki be sufficient for you?
[7:20 PM]
DougTheC Regarding the forum. Do you have any preferences?

My default plan is SMF (same forum as before):

April 30, 2022
Umgah
DougTheCToday at 3:35 AM
Zythen had said he was not too satisfied with current state of SMF, including its relative lack of support, but at the time was not eager to put in the amount of time to replace it.
Would like to see some forum alternatives.
 

__neronero

Member
Jan 23, 2021
275
379
phpBB would be an alternative to SMF, but I have no issues with SMF.

My main concern is that the new host needs to know what he's getting into and be comfortable with that. Hosting something that may contain links to copyrighted material, loli packs, etc.
 

DougTheC

Member
Oct 15, 2018
386
218
I cant seem to find the kanna kanui slave pack could someone lend me a working link to it ?
Line 487 in Drawn Girls tab of ; not posting a link here on F95.
From that source, is in folder Anime/Kobayashi's Dragon Maid .

Main BK Girlpacks & Mods thread is here.
 
Last edited:

ripleysonic

Newbie
Jan 5, 2019
22
1
This console sequence could create a slavemarket girl based on packname filename. Untested; advise not trying to change "force_original" in case original exists somewhere (including hidden characters/areas).
Code:
newgirl1 = create_girl("full pack filename", free=False, force_original=False, level=1)
slavemarket.girls += newgirl1
I don't know if I'm putting it in correctly. Do I leave the quotation marks and just replace the "full pack filename" from in between them? Also just to confirm it's the name of the folder that is found inside Brothel_King-pc 0.2\game\girls here the one that I'm replacing (full pack filename) with, right?
 

Teron

Member
Donor
Game Developer
Aug 13, 2017
243
788
In the current version the girl pack gallery will crash if you land on a page with .webm files, these aren't supported in the CG gallery (I believe it's because they aren't classed as an image format). Not sure what the best approach would be to get them showing correctly in the gallery but girl packs could have a still image as webp along with the webm file and then exclude all webm files from the gallery.

For anyone who has this issue with any girl packs and would like to be able to view the gallery, just do the following:
(If there is already a solution to this please let me know :unsure:)

In the file BKdeclarations.rpy find this bit of code, around line 1270:

Code:
        if pic:
            if is_imgfile(pic):
                if pic in persistent.seen_list:
                    return True
        
            elif renpy.seen_image(pic) or pic in persistent.seen_list:
                return True
Comment it out and add this to replace it:

Code:
        if pic:
            if is_imgfile(pic):
                if pic.endswith(".webm") is False:
                    if pic in persistent.seen_list:
                        return True

            elif renpy.seen_image(pic) or pic in persistent.seen_list:
                if pic.endswith(".webm") is False:
                    if pic in persistent.seen_list:
                        return True
This will just remove any .webm files from the gallery, showing only images. Doesn't seem to have broken anything.
 
  • Like
Reactions: trogdorhentai

somebody28

Member
Mar 10, 2018
142
150
BTW, some quick tips on using the console for money and resources without disabling achievements:

Code:
MC.gold=10000
MC.resources["wood"]=100
MC.resources["dye"]=100
MC.resources["leather"]=100
MC.skill_points=40
If there are any more useful ones I come across I'll add 'em to this post.
 

Jman9

Engaged Member
Jul 17, 2019
2,294
957
girl pack gallery ... .webm
Yeah, the gallery isn't written with videos in mind. It's not hard to make it display videos, but it's not a one-line change and now there's another issue that all videos on that page start playing, including any sound effects. Can be quite chaotic.

I imagine there might be a way to extract a still image from the video, but I didn't feel the urge to go looking. So Teron's fix is pretty good as a band-aid.

If there are any more useful ones I come across I'll add 'em to this post.
Some that I've found useful myself:
Code:
MC.reset_interactions()
MC.prestige += 100

update_shops()
update_slaves()
update_quests()

slavemarket.girls = get_girls(100)

update_free_girls()
cycle_free_girls()

for girl in MC.girls+game.free_girls:
    girl.reset_interactions()
    girl.rest(1000)

brothel.rep += 10000
brothel.dirt = 0
You can kinda chain these into one command for repeat use, too:
Code:
if True:
    MC.reset_interactions()
    for girl in MC.girls:
        girl.reset_interactions()

I didn't try entering it there. But now that I did all I get is (SyntaxError: invalid syntax) the moment I enter it.
Then there's something wrong with the syntax. What exactly did you enter? Spaces and quotation marks included. Use one of the code tags if needed.

Note that Doug's code is a little wrong and should be
Code:
newgirl1 = create_girl("pack foldername", free=False, force_original=False, level=1)
slavemarket.girls += [newgirl1]
 

ripleysonic

Newbie
Jan 5, 2019
22
1
Then there's something wrong with the syntax. What exactly did you enter? Spaces and quotation marks included. Use one of the code tags if needed.

Note that Doug's code is a little wrong and should be
Code:
newgirl1 = create_girl("pack foldername", free=False, force_original=False, level=1)
slavemarket.girls += [newgirl1]
newgirl1 = create_girl("Itsuki Nakano", free=False, force_original=False, level=1)
slavemarket.girls += [newgirl1]

I just tried the new code and entered it in exactly as you see it, And I still get that message. I'm interested in on the main menu (Which is actually the only place I get that specific message), I've entered it while I was in the home area I guess (the area where you pick your character or the girls or any of the other tabs on the right side), I've also did it in the slave market as well.
As for the other two, I get this message.

File "<string>", line 1: expected statement.
newgirl1 = create_girl("Itsuki Nakano", free=False, force_original=False, level=1)
slavemarket.girls += [newgirl1]
^

And that's exactly how it looks even the little ( ^ ) underneath the code is there.
Edit: I added the comment as soon as I posted it because it moved ( ^ ) it was underneath [newgirl1] pointing right in between the L and the 1.
 
4.60 star(s) 44 Votes