4.20 star(s) 39 Votes

MetaMira

Active Member
Game Developer
Sep 14, 2021
567
1,366
As usual the most up-to-date links with bug fixes will be maintained over on the official release post in Patreon, but here's the update blurb and current download links for your downloading pleasure!




Main Update Features

  • Chore Automation! Tired of doing all those repetitive chores every week? Well now you can automate (most of) them! You can now assign your closest NPCs to chores permanently, without you needing to micro manage them every time the chore is available. Watch out though, because they'll expect something in return for all of their hard work, and they probably aren't interested in money!
  • New Events! Some new events have been scattered throughout the game! Text with the Bully after work, or assign Ethan to clean up and leave him alone to do his work. Some of the existing chore events have also had minor tweaks so they flow smoothly when automated.
  • New Art! It wasn't a focus for this update, but a couple new pieces of art have snuck their way into the game! Wear your skimpiest work outfit and you might end up with a new phone background, or walk in on Ethan while he's "cleaning" and get a glimpse of what he's using for motivation. There's also been some UI additions for chore automation, and the texting system has been made more flexible so I can write events that send or receive pictures.
Screenshots

You don't have permission to view the spoiler content. Log in or register now.

Changelog
You don't have permission to view the spoiler content. Log in or register now.
 
  • Like
Reactions: Zeuslrg

elmicho

Active Member
Feb 13, 2020
529
435
how do I get the mini outfit?
I managed crop it but can't get it smaller like i see in the photos
 

MetaMira

Active Member
Game Developer
Sep 14, 2021
567
1,366
do old saves not work?
They should, and if they're not it's a bug! Maintaining save compatibility is finicky, so I wouldn't be surprised if a bug had snuck in somewhere. Can you send me the stack trace (ie. the crash screen) you get when you try to load an old save?
 

FullMoon30

New Member
Jan 10, 2019
12
11
```
I'm sorry, but an uncaught exception occurred.

While running game code:
File "renpy/common/00gamemenu.rpy", line 170, in script
$ ui.interact()
File "renpy/common/00gamemenu.rpy", line 170, in <module>
$ ui.interact()
File "renpy/common/00action_file.rpy", line 479, in __call__
renpy.load(fn)
AttributeError: Can't get attribute 'coxBody' on <renpy.python.StoreModule object at 0x00000000035496d0>
 

MetaMira

Active Member
Game Developer
Sep 14, 2021
567
1,366
```
I'm sorry, but an uncaught exception occurred.

While running game code:
File "renpy/common/00gamemenu.rpy", line 170, in script
$ ui.interact()
File "renpy/common/00gamemenu.rpy", line 170, in <module>
$ ui.interact()
File "renpy/common/00action_file.rpy", line 479, in __call__
renpy.load(fn)
AttributeError: Can't get attribute 'coxBody' on <renpy.python.StoreModule object at 0x00000000035496d0>
Oh, it looks like you're trying to load a save that had a mod (the coxSluttery mod, specifically) installed. It should work if you either:
A) Wait for the mod to be updated for v0.18 and then install it.
or
B) Load your game with a copy of v0.17, disable the mod in the mod manager, and then save your game. (This may be unreliable - mods are responsible for their own cleanup functions, and if not properly implemented can result in bugs).
 

Bawunga

Active Member
Dec 19, 2019
553
1,433
Very glad to see the underwear-handjob expanded, thought that was too hot to be left as just one scene (that we can get some more underwear variants later on).

Still waiting for cum visualization though, and combining said cum with the pantyjob (hopefully folllowed by putting the underwear back on) would be :PogChamp::PogChamp::PogChamp:
 

Pachydermus

New Member
Oct 1, 2018
3
8
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 283, in script call
    call screen hold_screen() #NOTE: We never proceed past the hold screen! No code after this point will run.
  File "game/script.rpy", line 445, in script call
    call expression interact_label pass (*args, **kwargs)
  File "game/Locations/Home/Mom_Bedroom/mom_bed_events.rpy", line 50, in script call
    call advance_time()
  File "game/script.rpy", line 910, in script
    python:
  File "game/script.rpy", line 921, in <module>
    event_system.run_on_time_events()
  File "game/Classes/Logic_Classes/EventSystem.rpy", line 16, in run_on_time_events
    a_function(time_of_day)
  File "game/Classes/Logic_Classes/Chore.rpy", line 83, in update_chore_turnly
    self.automation.move_automation_npc()
  File "game/Classes/Logic_Classes/Chore.rpy", line 329, in move_automation_npc
    self.automation_function()
  File "game/Characters/Nerd/nerd_chore_automation.rpy", line 131, in firebrand_nerd_tidy_automation_action
    if firebrand.is_at_location(firebrand_in_bedroom): #If they're in the room together put them at special clickables
  File "game/Classes/Logic_Classes/Person.rpy", line 326, in is_at_location
    return self.schedule.is_at_location(the_location, the_day, the_time)
  File "game/Classes/Logic_Classes/Schedule.rpy", line 86, in is_at_location
    elif planned_location in locations:
  File "game/Classes/Display_Classes/ClickableBase.rpy", line 38, in __eq__
    return self.name + self.unique_tag + self.location.name + self.target_label == other.name + other.unique_tag + other.location.name + other.target_label
AttributeError: 'Location' object has no attribute 'unique_tag'

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

Full traceback:
  File "game/script.rpy", line 283, in script call
    call screen hold_screen() #NOTE: We never proceed past the hold screen! No code after this point will run.
  File "game/script.rpy", line 445, in script call
    call expression interact_label pass (*args, **kwargs)
  File "game/Locations/Home/Mom_Bedroom/mom_bed_events.rpy", line 50, in script call
    call advance_time()
  File "game/script.rpy", line 910, in script
    python:
  File "C:\Play\AVeryFullHouse-0.18.1-pc\renpy\ast.py", line 1138, in execute
    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
  File "C:\Play\AVeryFullHouse-0.18.1-pc\renpy\python.py", line 1122, in py_exec_bytecode
    exec(bytecode, globals, locals)
  File "game/script.rpy", line 921, in <module>
    event_system.run_on_time_events()
  File "game/Classes/Logic_Classes/EventSystem.rpy", line 16, in run_on_time_events
    a_function(time_of_day)
  File "game/Classes/Logic_Classes/Chore.rpy", line 83, in update_chore_turnly
    self.automation.move_automation_npc()
  File "game/Classes/Logic_Classes/Chore.rpy", line 329, in move_automation_npc
    self.automation_function()
  File "game/Characters/Nerd/nerd_chore_automation.rpy", line 131, in firebrand_nerd_tidy_automation_action
    if firebrand.is_at_location(firebrand_in_bedroom): #If they're in the room together put them at special clickables
  File "game/Classes/Logic_Classes/Person.rpy", line 326, in is_at_location
    return self.schedule.is_at_location(the_location, the_day, the_time)
  File "game/Classes/Logic_Classes/Schedule.rpy", line 86, in is_at_location
    elif planned_location in locations:
  File "game/Classes/Display_Classes/ClickableBase.rpy", line 38, in __eq__
    return self.name + self.unique_tag + self.location.name + self.target_label == other.name + other.unique_tag + other.location.name + other.target_label
AttributeError: 'Location' object has no attribute 'unique_tag'

Windows-10-10.0.19045 AMD64
Ren'Py 8.1.1.23060707
A Very Full House 0.18.1
Thu Sep 14 11:42:43 2023
 
4.20 star(s) 39 Votes