3.00 star(s) 94 Votes

Baka Tanvir

New Member
Jul 18, 2020
8
0
it should be, at least most of the time in my experiences. You won't know until you try it.
When i tried to install the game it showed some foreign language, so i didn't installed it. Is this foreign language showing normal?

And sorry for disturbing too much.
 

Love Sven

New Member
Aug 6, 2017
5
1
I cant open the game. Its load about 80% then nothinh happens. Pls help med!


Wed May 19 22:14:05 2021
Windows-10-10.0.19041
Ren'Py 7.4.4.1439


Bootstrap to the start of init.init took 0.09s
Early init took 0.00s
Loader init took 0.04s
Loading error handling took 0.12s
Loading script took 6.94s
 
  • Like
Reactions: Elemento

.Black Panther.

Well-Known Member
Jun 3, 2020
1,471
4,953
Thank you. I will try.
How do I open this (spoiler)? I have no ideas
You don't have permission to view the spoiler content. Log in or register now.
I explained everything in the game guide. Wait a while.
So far, I have finished the game twice in two path from the beginning to the end, and I got stuck in the third path. And I do not know why I should not get stuck. I will update the guide after finish this path .But ,sorry, I'm really tired to explaining all this here now.
 
Last edited:

ANGEL_KATE

Member
Nov 18, 2018
425
460
I explained everything in the game guide. Wait a while.
So far, I have finished the game twice in two path from the beginning to the end, and I got stuck in the third path. And I do not know why I should not get stuck. I will update the guide after finish this path .But ,sorry, I'm really tired of explaining all this here now.
understand
As I understand you are stuck on the third path
In your guide, there is no way to select and copy text. Can you make such an opportunity?
 
Last edited:

Pichard

Newbie
May 26, 2017
26
11
I cant open the game. Its load about 80% then nothinh happens. Pls help med!


Wed May 19 22:14:05 2021
Windows-10-10.0.19041
Ren'Py 7.4.4.1439


Bootstrap to the start of init.init took 0.09s
Early init took 0.00s
Loader init took 0.04s
Loading error handling took 0.12s
Loading script took 6.94s
Pretty much the same here:
it seems to load properly, then disappears and nothing happens.
I think there was a procedure for the previous update, but I can't find it in the thread.

Found it! I deleted all saves from Appdata/Roaming/Renpy/BB_ASand the game loaded
 
Last edited:

Kairnan

Newbie
Jul 22, 2017
29
26
Pretty much the same here:
it seems to load properly, then disappears and nothing happens.
I think there was a procedure for the previous update, but I can't find it in the thread.

Found it! I deleted all saves from Appdata/Roaming/Renpy/BB_ASand the game loaded
Was having the same issue. Thanks for the fix!
 

Love Sven

New Member
Aug 6, 2017
5
1
Pretty much the same here:
it seems to load properly, then disappears and nothing happens.
I think there was a procedure for the previous update, but I can't find it in the thread.

Found it! I deleted all saves from Appdata/Roaming/Renpy/BB_ASand the game loaded
Thanks! It helped!
 

skrilexx

Newbie
May 23, 2018
54
16
hi, im stuck at kira event , when she say she will talk to eric about it. I keep joining her in the lounge at 3 am, but the kissing event does not trigger, it stop after the MC cumming, always and always. Am i missing something ?
 

KrispyCream

New Member
Jun 25, 2017
2
1
I'm getting this error when I click new game:

Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/core/03variables.rpy", line 119, in <module>
  File "game/core/07_clothes.rpy", line 50, in checking_clothes
  File "game/core/07_clothes.rpy", line 171, in setting_clothes_by_conditions
NameError: global name 'poss' is not defined

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "script.rpyc", line 23, in script call
  File "core/03variables.rpyc", line 110, in script
  File "renpy/ast.py", line 922, in execute
    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
  File "renpy/python.py", line 2218, in py_exec_bytecode
    exec(bytecode, globals, locals)
  File "game/core/03variables.rpy", line 119, in <module>
  File "game/core/07_clothes.rpy", line 50, in checking_clothes
  File "game/core/07_clothes.rpy", line 171, in setting_clothes_by_conditions
NameError: global name 'poss' is not defined

Windows-10-10.0.19041
Ren'Py 7.4.4.1439
Большой брат: Другая история 0.06.5.00
Tue May 18 01:32:20 2021
I've tried all the fixes mentioned in this thread, but they don't work.

I did this:

I went to this folder C:\Users\[comp name]\AppData\Roaming\RenPy\BB_AS
I renamed the persistent file to something else
I dragged another persistent file some other guy zipped, but it was the same exact file
There are no saves in the games save folder, just another persistent file

The game keeps giving that error when I click new game. I'm on windows 10, fully updated.
The game is initializing variables in a specific order when you start a new game.
If you decompile script.rpyc, you will see these lines at the top
Code:
show screen watermark
show screen notify_check
call InitHouse from _call_InitHouse
call InitVariable from _call_InitVariable
call InitCharacters from _call_InitCharacters
call InitActions from _call_InitActions
call InitPoss from _call_InitPoss
call InitTalksEvents from _call_InitTalksEvents
call InitPunish from _call_InitPunish
call InitCources from _call_InitCources
All you have to do is put call InitPoss from _call_InitPunish before all others calls like this:
Code:
show screen watermark
show screen notify_check
call InitPoss from _call_InitPoss
call InitHouse from _call_InitHouse
call InitVariable from _call_InitVariable
call InitCharacters from _call_InitCharacters
call InitActions from _call_InitActions
call InitTalksEvents from _call_InitTalksEvents
call InitPunish from _call_InitPunish
call InitCources from _call_InitCources
Since I do not meet the requirements, I unfortunately cannot give any links to the patched file.
 
  • Like
Reactions: hakarlman
3.00 star(s) 94 Votes