3.00 star(s) 96 Votes

Vinicius_Ribeiro

New Member
May 15, 2023
4
4
Is version 0.08.02 of Big Brother: Outra Reconstrução da História already reaching the point where version 0.09.2.03 of Big Brother: Outra História left off or is there still a lot of content missing to reach the old version?
Does the save allow you to continue where you left off or do you have to play from the beginning in a new version?
 

Nemo56

Forum Fanatic
Jan 7, 2018
5,575
4,573
This new version of the game sucks. The Aunt never shows up in the game and Eric comes to dinner and is never seen again. How god damn long does it take for the Aunt to be in the game? Where the hell is Eric at? Eric is Big Brother if there is no Eric in the game then this version sucks. This game used to be awesome till someone else took over and added the stupid diary or journal . Bring back the the first version of this game.
"Big Brother" is about the cameras. Eric will be here soon, in CH2. But don't be disappointed, this game is not about him.
If you don't like BB Another Story, play a different game instead. Why not the original if you liked it so much? Or play the Ren'Py Story Remake, it has plenty of Eric content.

View attachment SPOILER_pp-chapter-01-650p.webp
 

Nemo56

Forum Fanatic
Jan 7, 2018
5,575
4,573
Is version 0.08.02 of Big Brother: Outra Reconstrução da História already reaching the point where version 0.09.2.03 of Big Brother: Outra História left off or is there still a lot of content missing to reach the old version?
Does the save allow you to continue where you left off or do you have to play from the beginning in a new version?
Old and new version are different. The rebuild does not just recreate the old game. You could say so far he reached the point where Eric arrived at the house with some extras, that have not been in the original game.
Saves are incompatible.
 

MotH_like25

Member
Aug 18, 2018
233
179
Big Brother: Ren'Py - Remake Story [v1.07] [PornGodNoob]
but no cams in the house that defeats whole primase of the game.
Hello shakey5864. I think I guess that you played versions up to the current one, i.e. 0.07.03 or the latest one and you haven't reached the cameras yet. I played the android version and there everything is fine with the cameras, they are already installed in the game despite this part 2 and even access to the new camera at Alice. A bit of tinkering with these signs was a problem but (although it can always be different) by solving the real ones and the system, somehow I managed to enter and wait only for the continuation of the game version. I guess that's all I could describe and share the gameplay for now at this stage, great use of dialogues in the game about this version 0.08.02. Regards.
 
  • Like
Reactions: Nemo56

chaoyu868

New Member
Feb 20, 2025
7
6
I found a BUG that can cause the game to crash in severe cases. This time I'm talking about 《BigBrother_AnotherStory-0.09.2.03-pc》. The specific manifestation is as follows: After purchasing items, when the courier delivers the goods, a large number of duplicate item names will appear on the item list. If you purchase a relatively large number of items at one time, the length of the list will exceed the limit and the game will crash directly.

The location of the problematic code is on line 406 of the game file game\core\04function.rpy (The game error will appear on line 591 of game\events\max.rpy. Because in the 04function.rpy file, an inappropriate temporary global definition "TmpName" is made on line 406 to temporarily store the item names. This approach leads to the situation where sometimes you will find a large number of duplicate item names, and sometimes not. This pollutes the global environment and also increases the difficulty of maintenance. However, I have already fixed it for the author. The specific details are as follows:
The original code from line 391 to line 408 should be replaced with the following code:

def GetDeliveryString(courier):
StrDev = __("Так... В накладной написано следующее:")
added_names = set()
for i in delivery_list[courier]:
item_name = items.name
if item_name not in added_names:
items.bought = False
items.have = True
StrDev += "\n \"{}\"".format(__ (item_name))
added_names.add(item_name)
return StrDev

def DeletingDeliveryTempVar(courier):
delivery_list[courier].clear()

Replying here may disrupt the indentation of the code. Therefore, if you want to replace the original code, please pay attention to this issue.
 
Last edited:
  • Like
Reactions: LFARA
3.00 star(s) 96 Votes