But having instead a much shorter pathname, to avoid other problems....
Another thing you might want to do is to install the game somewhere that's not even remotely claimable as a system directory. So no 'Program files', or 'Documents', 'Desktop', 'Download'. Something like 'C:/Music/Ambient/Soothing/Indian/Not_Tantric/temp_data/01_01_1984/_anjdsnfgo175/_audio/BK/Brothel_King-pc' is the old-school conspiratorial choice.
renpy.sound.stop()
. If that doesn't work, try renpy.sound.stop(channel = 'sound2')
or renpy.sound.stop(channel = 'audio')
.renpy.music.stop()
. /EditThanks for the help! I couldn't figure out how to recreate it since I wasn't paying full attention when the sound file started it was only after a bit when I realised... it just ain't stopping. XDOpen the console (shift+O) and typerenpy.sound.stop()
. If that doesn't work, tryrenpy.sound.stop(channel = 'sound2')
orrenpy.sound.stop(channel = 'audio')
.
Edit: Or, since it's the waterfall music, userenpy.music.stop()
. /Edit
Preferably, also tell us how you got that problem. Better yet, recreate it and tell us the exact steps. Then Goldo can fix it.No need, I found the problem.
Edit:I presume you went through the diamond intro with an 'old man'?It was the old man.
Thank youThey have a better chance to become friends if you interact with them a few times, talking about getting along with other girls and telling them to keep making friends.
I don't think anything about this has changed since the last playthrough where I had some girls having friends, announced in night activity.
Base chance for improving friendship each night is a roll of 12 on two 6-sided dice.
Works best with "very extravert" personalities.
There are currently 22 variations in the game for this response ("free_flirt_sex_experience average") or 133 if you count all the variations of how experienced the girl could be. I can't seem to replicate your issue. When you say every girl in town, how many girls did you check?why every girl in town says "That's a bit personal... But of course, I have not been waiting for you my whole life, you know?"
is there some edit that could give this more variety, or if someone knows the file containing chances to generate girl traits I hope you point it out
Best try we can think of to make this work:Sorry, I am not good with this stuff.
Full traceback:
File "game/BKstart.rpy", line 127, in script
$ enemy_general = get_girls(1, free=True, p_traits=["Caster"])[0]
File "renpy/ast.py", line 928, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "renpy/python.py", line 2245, in py_exec_bytecode
exec(bytecode, globals, locals)
File "game/BKstart.rpy", line 127, in <module>
$ enemy_general = get_girls(1, free=True, p_traits=["Caster"])[0]
File "game/BKfunctions.rpy", line 328, in get_girls
girl.randomize(free=free, p_traits=p_traits, n_trait=n_trait, perks=perks, level=lvl)
File "game/BKgirlclass.rpy", line 263, in randomize
self.refresh_pictures()
File "game/BKgirlclass.rpy", line 493, in refresh_pictures
self.portrait = self.get_pic("portrait", "profile", naked_filter = True, and_priority=False, soft=True)
File "game/BKgirlclass.rpy", line 1016, in get_pic
return get_pic(self, tags=tags, alt_tags1=alt_tags1, alt_tags2=alt_tags2, alt_tags3=alt_tags3, and_tags=and_tags, not_tags=not_tags, strict=strict, and_priority=and_priority, attempts=attempts, always_stock=always_stock)
File "game/BKfunctions.rpy", line 2736, in get_pic
piclist = get_pic_list(target, search_tags, and_tags, not_tags)
File "game/BKfunctions.rpy", line 2687, in get_pic_list
show_unrecognized = preferences.packstate_unrecognized != "Hide"
AttributeError: 'Preferences' object has no attribute 'packstate_unrecognized'
preferences.packstate_unrecognized = "Rename"
its back to normal now after a suspicious amount of timesThere are currently 22 variations in the game for this response ("free_flirt_sex_experience average") or 133 if you count all the variations of how experienced the girl could be. I can't seem to replicate your issue. When you say every girl in town, how many girls did you check?
The responses are listed in BKdialogue.rpy. The simplest way to homebrew in more variety is to make more lines of dialogue in BKdialogue.rpy "generic" instead of personality-specific.
Traits are a completely different topic.
def learn(self, spl):
if spl.type == "passive":
self.active_spells.append(spl)
self.add_effects(spl.effects)
renpy.call_screen("OK_screen", title = spl.name, message = self.name + " has learnt a new talent.\n\n" + spl.description, pic = spl.pic, pic_size = "small")
else:
self.known_spells.append(spl)
renpy.call_screen("OK_screen", title = spl.name, message = self.name + " has learnt a new spell.\n\n" + spl.description, pic = spl.pic, pic_size = "small")
def learn(self, spl):
if spl.type == "passive":
pass
# self.active_spells.append(spl)
# self.add_effects(spl.effects)
# renpy.call_screen("OK_screen", title = spl.name, message = self.name + " has learnt a new talent.\n\n" + spl.description, pic = spl.pic, pic_size = "small")
else:
pass
# self.known_spells.append(spl)
# renpy.call_screen("OK_screen", title = spl.name, message = self.name + " has learnt a new spell.\n\n" + spl.description, pic = spl.pic, pic_size = "small")