- Jun 11, 2020
- 8,448
- 28,342
as long as updates don’t take as long and wife actually does something sexual without hubbyLooks like AWAM at its very beginning
as long as updates don’t take as long and wife actually does something sexual without hubbyLooks like AWAM at its very beginning
I created a .rpy file that I add to every game since I got tired of the ones without option screens, and got tired of setting the options myself every time I try out a new game. Gave it extra bits like, enabling the console and rollback, and making shift+pagedown be a toggleable hotkey for the auto mode.No settings or prefs menu, no volume controls...
Hard pass.
init 420 python:
config.console = True
preferences.fullscreen = True
preferences.skip_after_choices = True
preferences.transitions = 0
preferences.volumes['music'] = 0.15
preferences.volumes['sfx'] = 0.3
preferences.volumes['voice'] = 0.4
preferences.afm_time = 8
preferences.text_cps = 0
renpy.config.rollback_enabled = True
renpy.config.hard_rollback_limit = 256
renpy.config.rollback_length = 256
def unren_noblock( *args, **kwargs ):
return
renpy.block_rollback = unren_noblock
try:
config.keymap['toggle_afm'] = [ 'shift_K_PAGEDOWN' ]
except:
pass
For now, just the wife.The tags list female protagonist, male protagonist, and multiple protagonist, but the description only mentions the wife. Are the tags accurate, or do you play as just the wife?
lol remote oil in alaska, cucked u will beTo clarify, you don't get to name any of the characters so you're not really "playing" them. You get the pov of the husband Phil and the wife Susan, but so far you only make a few decisions for Susan, accept the burger place employee's complement, his phone number on the bill, picking which kid to ride up front in the car, saying hi to her sons friend on the phone while in a towel. Seems to me Susan might get most of the content since she has to deal with people hitting on her, new neighbors, the two kids, while Phil is going to a remote oil platform in alaska.
Anyways not a fan of split "protagonist" games like this, one side usually gets more content (I liked Glamour for a while, but seeing one side getting updates was a bummer), and going just by the description I'm sure it'll be Susan's side.
Good luck to the devs.
Thanks for this. Your bit of code plus Penfold Mole's textbox mod made this playable.I created a .rpy file that I add to every game since I got tired of the ones without option screens, and got tired of setting the options myself every time I try out a new game. Gave it extra bits like, enabling the console and rollback, and making shift+pagedown be a toggleable hotkey for the auto mode.
Edit the volumes to be whatever you like. If you go to a game where you've got your volumes set how you want them, then for example, the music volume, just shift+O to open console and type in preferences.volumes['music'] and it'll tell you what your current setting is. You can do the same with afm_time or text_cps as well.Python:init 420 python: config.console = True preferences.fullscreen = True preferences.skip_after_choices = True preferences.transitions = 0 preferences.volumes['music'] = 0.15 preferences.volumes['sfx'] = 0.3 preferences.volumes['voice'] = 0.4 preferences.afm_time = 8 preferences.text_cps = 0 renpy.config.rollback_enabled = True renpy.config.hard_rollback_limit = 256 renpy.config.rollback_length = 256 def unren_noblock( *args, **kwargs ): return renpy.block_rollback = unren_noblock try: config.keymap['toggle_afm'] = [ 'shift_K_PAGEDOWN' ] except: pass
Yeah, those are my top priorities when deciding to play a game.No settings or prefs menu, no volume controls...
Hard pass.
Dude, are you the tag police? Bad tags, bad tags, whatcha gonna do, whatcha gonna do when Chimba comes for you?Soo, why Multiple Protagonists and Male protagonists if practically the overview only talks about Female Protagonists?
Be smug all you want, when a game incorporates sound, and there's no way to lower volume or silence it without turning off your PC sound entirely, that's a pretty egregious design flaw.Yeah, those are my top priorities when deciding to play a game.
Well, people do keep complaining that the dad is always dead, and saying they want something different...Phil is going to a remote oil platform in alaska.
Your script does not contain skipping:I created a .rpy file that I add to every game since I got tired of the ones without option screens
init 420 python:
config.console = True
preferences.fullscreen = False
preferences.skip_after_choices = False
preferences.skip_unseen = True
preferences.transitions = 0
preferences.volumes['music'] = 0
preferences.volumes['sfx'] = 0
preferences.volumes['voice'] = 0
preferences.afm_time = 8
preferences.text_cps = 0
renpy.config.rollback_enabled = True
renpy.config.hard_rollback_limit = 1024
renpy.config.rollback_length = 1024
def unren_noblock( *args, **kwargs ):
return
renpy.block_rollback = unren_noblock
try:
config.keymap['toggle_afm'] = [ 'shift_K_PAGEDOWN' ]
except:
pass
It's been in and out of the thread.You removed the settings menu... Why?
Any dev that thinks that is a good idea isn't a dev worth following.