Is this happen even when you start a new game?Experiencing a bug every time I click on the "girls" button, save file is attached:
You don't have permission to view the spoiler content. Log in or register now.
As mentioned before, there's a bad _BK.ini somewhere.
Other errors I've seen at least point you to the girl(s) to look at. Either way seems there is a new patch and that fixed it.
Girls sometimes have more than one hobby. When they do, this can happen where the game is wanting the other answer.Is it normal? I know the right answer but I can not choose it.
A new game patch won't fix a broken _BK.ini. I think what you're seeing is that the game didn't try to use that .ini for a while. Fix the .ini, or the problem will come back to bite you.Either way seems there is a new patch and that fixed it.
Girls always have exactly two hobbies. They're coy about mentioning the missing one, though. In theory, the RNG gods can troll you forever and let her only tell you about the first one.Girls sometimes have more than one hobby.
That doesn't help finding the bad ones.If you need a clean _Bk.ini i have posted a clean one what you edit and you as you like. https://f95zone.to/threads/brothel-king-v0-2-goldo.3282/page-136
I know it's dosnt help in finding the bad ones. I posted it if he want to remake them.That doesn't help finding the bad ones.
You can do some debugging with the renpy.write_log("" + str()) and self.pack_name somewhere along the traceback in the BKgirlclass. It will write it to the log.txt. So rollback and save where the error is.
While running game code:
File "game/BKendday.rpy", line 62, in script call
call play_events(type = "night") from _call_play_events
File "game/BKevents.rpy", line 663, in script call
call display_events(ev_list) from _call_display_events
File "game/BKevents.rpy", line 675, in script call
$ ev.play()
File "game/BKchapter2.rpy", line 6468, in script
$ unlock_achievement("h narika")
File "game/BKchapter2.rpy", line 6468, in <module>
$ unlock_achievement("h narika")
File "game/BKachievements.rpy", line 230, in unlock_achievement
if achievement_dict[target].unlock(level_cap):
KeyError: u'h narika'
scene black with fade
narika angry "UWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH!!!!!!!!!!!" with vpunch
$ NPC_narika.love += 1
$ unlock_achievement("h narika")
Achievement("Chapter 2: The Naughty Schoolgirl", "You have peeped on Narika's secret intimate session.", pic="portrait.webp", pic_path="NPC/kunoichi/narika/", target="c2 narika"),
You aren't using the lastest patch provided. It was already changed in it.Got this when encountering the ninja in the slums for the second time and then have the scene later on in the day in the brothel where we cast an eavesdrop on her.
Jumping into the console and throwing things into emacs I have the keyerror diagnosed as this call in BKchapter2.rpy:Code:While running game code: File "game/BKendday.rpy", line 62, in script call call play_events(type = "night") from _call_play_events File "game/BKevents.rpy", line 663, in script call call display_events(ev_list) from _call_display_events File "game/BKevents.rpy", line 675, in script call $ ev.play() File "game/BKchapter2.rpy", line 6468, in script $ unlock_achievement("h narika") File "game/BKchapter2.rpy", line 6468, in <module> $ unlock_achievement("h narika") File "game/BKachievements.rpy", line 230, in unlock_achievement if achievement_dict[target].unlock(level_cap): KeyError: u'h narika'
but the achievement initialization list in BKachievements.rpy has this:Code:scene black with fade narika angry "UWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH!!!!!!!!!!!" with vpunch $ NPC_narika.love += 1 $ unlock_achievement("h narika")
So that call should have been unlock_achievement("c2 narika").Code:Achievement("Chapter 2: The Naughty Schoolgirl", "You have peeped on Narika's secret intimate session.", pic="portrait.webp", pic_path="NPC/kunoichi/narika/", target="c2 narika"),
This is the point where my comment about doing stupid things with RMB prevents me from doing a rollback after getting out of the console on the traceback, doing RMB to save, editing the BKchapter2.rpy file to fix the key error and then doing a load to pick up from the point of the error. I ended up doing an ignore and then jumping back into the console to do a manual unlock_achievement("c2 narika") call.
What's preventing you from 'doing ESC to save'? Do you have some sort of hardcoded Ren'Py keymap in your head that you can't edit?This is the point where my comment about doing stupid things with RMB prevents me from doing a rollback after getting out of the console on the traceback, doing RMB to save...
What's preventing you from 'doing ESC to save'? Do you have some sort of hardcoded Ren'Py keymap in your head that you can't edit?
If you want to play and debug at the same time, it's probably better to enable and use Shift+R, and do your rollbacks (if any are still needed) after that.
View attachment 1445791
someone knows how to finish that goal. ive still met all 3. Not sure whats the right dialogue there (im playing in hard mode is a bit more challenging than it was before)
You aren't using the lastest patch provided. It was already changed in it.You must be registered to see the links
Someone will always provide the new patch when it's comming out. Either me, Leortha or Kite.Ug.... You'd think they'd put patch rev numbers on the game patch files at least. I'd hate to have to use SHA or MD5 to figure out which is which.