I always put the girls on alternating full and half days with no days off, and stagger their half days to spread them out between them all. That way staffing at the brothel is pretty consistent. Sunday is the half day everyone shares, just out of my own cultural bias and habits. So long as they get four half-days off (equaling two full days off, but broken up), they seem to be content. If they're refusing to work, it's more likely an obedience issue than a fatigue issue.whats a good setup of rests in the calendar
Curious what the resistance stat is you're referring to? I had assumed that what mattered was the energy requirement that you can reduce with brothell upgrades. I use a similar rotation to your first one since any less rest than that and the girls are constantly demanding days off/refusing to work anyway.My standard configuration is full/half/half/rest/full/full/rest, until girls resistance is high enough to need no more rest at all, at that point it becomes full/half/half/half/full/full/half.
Try to distribute girls rests so that only a few of them is not working on each day though
There really are none. It's not that type of game at all.How're the animations in the game?
def gStatPct(girl, stat, pct=0.90):
cur = girl.get_stat(stat)
gmin, gmax = girl.get_stat_minmax(stat)
gtop = int(pct*gmax)
gadd = gtop - cur
girl.upgrade_points += gadd
girl.upgrade_stat(stat, gadd)
del gmax, gmin, cur, gadd, gtop
def gStatThreeNinety(girl):
gstats = [u'Libido',u'Constitution',u'Obedience']
for stat in gstats:
gStatPct(girl, stat, 0.90)
del gstats
and on the girl menu (single) I add:
"Max Three Stats to 90 percent":
$ gStatThreeNinety(girl)
def gAddItem(name='Ale'):
for it in all_items + extractor_items.values():
if name in it.name:
MC.items.append(copy.deepcopy(it))
def gAddNItem(name='Ale', n = 3):
for it in all_items + extractor_items.values():
if name in it.name:
for j in range(0,n):
MC.items.append(copy.deepcopy(it))
and then later in the code, in MC cheats, I've been trying these combos out..
Probably the most useful in my normal use case is the '5 Daggers' command.
"MC magical item set":
$ gAddItem('Angel staff')
$ gAddItem('Holy handgrenade')
$ gAddItem('Rare medicine bag')
$ gAddItem('Wyvern egg')
$ gAddNItem('Fine wine', 2)
$ gAddNItem('Fine tonic', 2)
"MC support set":
$ gAddNItem('Rare medicine bag',2)
$ gAddNItem('Fine wine', 2)
$ gAddNItem('Fine tonic', 2)
$ gAddNItem('Magical gold bag', 2)
"Add girl basic item set":
$ gAddItem('Dagger')
$ gAddItem('Tanning oil')
$ gAddItem('Massage oil')
$ gAddItem('Ale')
$ gAddItem('Tasty roastbeef')
"Add girl endgame item set - blue":
$ gAddItem('Dagger')
$ gAddItem('Legendary blue slave')
$ gAddItem('Gold amu')
$ gAddItem('Legendary sexy')
$ gAddItem('Legendary bronze')
"Add girl endgame item set - black":
$ gAddItem('Dagger')
$ gAddItem('Legendary black slave')
$ gAddItem('Gold amu')
$ gAddItem('Legendary thong')
$ gAddItem('Legendary wooden')
"5 Daggers":
$ gAddNItem('Dagger', 5)
"5 Wines":
$ gAddNItem('Fine Wine', 5)
trainer 5.1
Version 0.2 is in alpha stage and its not recomended for use unless you are going to be bug hunting to help the dev (and posting the crash info on the HHS forum). As far as version 0.15b goes i have yet to find a pack that doesnt work for me, but then again never used a real girl pack with the game at all so obviously haven't tried them allIs there a trick to getting the girl packs to work with newer versions of the game? I tried some of the "real girl" girl packs and the game does load but there are zero girls available to recruit, including the ones that were working before. Do they all need ini files or something? It looked like some of the girl packs I tried only have pics. The basic girl pack seems to work fine with both v0.15b and v0.2 but some of the others don't. The basic one fails as well if I add some of the other girl packs in addition to it.
post your error message that will help to debugIs there a trick to getting the girl packs to work with newer versions of the game? I tried some of the "real girl" girl packs and the game does load but there are zero girls available to recruit, including the ones that were working before. Do they all need ini files or something? It looked like some of the girl packs I tried only have pics. The basic girl pack seems to work fine with both v0.15b and v0.2 but some of the others don't. The basic one fails as well if I add some of the other girl packs in addition to it.