
Homeless
Game Description:
The main character is a former soccer player who was forced to retire early and started using his knowledge to stay in the business, as a businessman and a talent scout. In a wedding on the verge of ruin with a famous and disagreeable actress, he is forced to shelter a homeless person in his house for a few days. And to make matters worse, she still brings a younger brother. How he will handle this whole situation is up to you.
- Extract and run.
- Dual Core Pentium or equivalent Processor.
- Intel HD 2000 or equivalent Graphics.
- 34.02 GB of free disk space (Recommended to have twice as much free disk space than this).
Homeless - Finished - v.Ch. 5 v1.0 Links And Mirrors
Homeless's latest build v.Ch. 5 v1.0 is available in Windows platforms and currently Finished. We last updated this game in October 3, 2024.
Walkthrough and Guide
Day21 Fix: FILEKNOT - ANONZIP
Save Fix:
Code:
While running game code:
File "game/day09.rpy", line 1025, in script
hom "Nice! I'm fast learner!"
AttributeError: 'TransformState' object has no attribute 'size'
This appears to be a side effect of the latest Renpy SDK when attempting to load a saved game from the older release. Your choices are to start a new game or to go in and hack a Renpy runtime python file. Edit the game's renpy/display/transform.py source to add the following global variable "size" for the class after maxsize at line 113:
Code:
class TransformState(renpy.object.Object):
.
.
last_angle = None
maxsize = None
size = None
Don't be confused by the self.size variable which is already defined along with self.maxsize in the class init method at line 150.