Not sure if this works to get them added to the spreadsheet, let me know if I really need to give more details.
I guess Goldo got seduced by "I can do this!", a common programmer pitfall. Towards the end of March, there was some discussion of putting in some kind of scaling difficulty, but I don't know if that led to anything.Why does this management sim have an awful minigame that seems designed for teenaged fps nerds with ADHD?
...
Please tell me there's a way to skip this cancerous shit.
def __init__(self, ninja, guest=None, timer=0.8, countdown = 20, special=None):
Girl packs and mods have their own thread.I started to upload my girl packs (all Real Life porn girls) to Mega.
How old is 'old'? 0.14? 0.15? 0.15b? Generally speaking, I'd still say Bonanza is probably going to be the more 'novel' experience. Whether it's one you'd like is another matter.So as someone who played the old version quite a bit, what would be more fresh and interesting to me? Bonaza mod or 0.2?
Thanks yeah 14 I think. I'll give bonanza a play thanksHow old is 'old'? 0.14? 0.15? 0.15b? Generally speaking, I'd still say Bonanza is probably going to be the more 'novel' experience. Whether it's one you'd like is another matter.
In that case 0.2 actually has quite a bit of new stuff for you. More story than Bonanza, definitely. Less gameplay changes, also very definitely.Thanks yeah 14 I think.
The console is handier if you know the code somewhat.I mainly play for a long time without using the mod until I get to a point where I wanna mess about for a bit.
I think the biggest vanilla thing you can try is the harder difficulty levels.Eventually restart or something and try different things.
Because it's a debug tool and not a game feature?I do still wonder though why the "give all girls a random job" option only ever forces "whore" jobs?
If you want something that does it for you and adds some more training options,I just like the variety a random job button might bring...
Haha I daren't mess with too much in the console, in case I break stuff. I think the most I did was add more rooms for a while but it does get pretty laggy as you'd expect!The console is handier if you know the code somewhat.
I don't really know the difference between what makes it a debug tool or not honestly haha, it was simply an option in the cheat menu that sounded fun but only seemed to do one thing I guess. ^^ But I'll take a look at that link. Not sure on the extended training either but the job thing does sound interesting, thanks!Because it's a debug tool and not a game feature?
If you want something that does it for you and adds some more training options,You must be registered to see the links. Not a fan of the 'extended' training, but I think the job distribution is exactly what you want.
In some ways it is the developer's opinion that makes the difference. Goldo has expressed that the cheats are only there because he wanted them available for helping debug the game. At one point he was going to totally remove them from 0.2, but a number of us persuaded him to leave them accessible because they are so useful for debugging. With 0.2 he's made it a little harder to even get at the cheats (you have to manually edit the game's config file to enable them), and using them has consequences of disabling the new achievement system.I don't really know the difference between what makes it a debug tool or not honestly haha, it was simply an option in the cheat menu that sounded fun but only seemed to do one thing I guess. ^^ But I'll take a look at that link. Not sure on the extended training either but the job thing does sound interesting, thanks!
The bolded part seems to refer to BKhelp.rpy (line 1741 in ver 0.2; similar in ver 0.15b)....I do still wonder though why the "give all girls a random job" option only ever forces "whore" jobs? It doesn't seem to do that if they can't whore yet though. I just like the variety a random job button might bring to seeing more of each individual packs content. Granted you could do it manually, it's just nice to maybe have.
"Give all girls a random job":
python:
for girl in MC.girls:
if girl.will_do("whore"):
girl.set_job("whore")
else:
girl.set_job(rand_choice(all_jobs))
"Give all girls a random job":
python:
for girl in MC.girls:
if girl.will_do("whore") and random.randint(1,5) <= 1: # 4/5 of whore-capable get assigned regular jobs
girl.set_job("whore")
else:
girl.set_job(rand_choice(all_jobs))