What do you prefer larger or smaller updates?

  • Bigger

    Votes: 288 94.4%
  • Smaller

    Votes: 23 7.5%

  • Total voters
    305
  • Poll closed .

RPDL

do torrent. go fast.
Donor
Dec 17, 2020
4,929
14,208
OnMyWayHome-CH1
You don't have permission to view the spoiler content. Log in or register now.
rpdl torrents are unaffiliated with F95Zone and the game developer.
Please note that we do not provide support for games.
For torrent-related issues use here, or join us on !
, . Downloading issues? Look here.​
 

Call of Booty

Well-Known Member
Mar 21, 2020
1,160
1,468
Another re-work? What's lately with devs doing re-works with story that just started? Do they get more patreons if some details are different? It's lack of story progress that makes ppl get agitated,not some early choices we made,or if some babe wasn't by our standards. After this long we are back to square one,sigh.
 
Last edited:

Spyderwraith

Well-Known Member
Jul 21, 2017
1,170
914
The game still suffers from the issue that made me stop playing- there's no way to exit from the phone when it's on screen
 

Punto

Well-Known Member
Jun 18, 2020
1,729
1,884
Edit: Updated for Reworked

I've made a walkthrough/gallery unlocker mod for this game

Features:
  • Green highlight for dialogue options
  • Added a "Unlock all" button to rewards and scenes
  • Added 2 extra scenes to gallery
Download: MEGA PIXELDRAIN
Does this also work with chap. 1 part 1? :unsure: :unsure: :love: :love:
 

colombeen

Member
Modder
Jul 16, 2021
314
1,752
Gallery Unlock Script

Description: A simple gallery unlock script. Just place it in the game folder and everything should be unlocked.
Game version: Ch.1 - Part 1

DISCLAIMER
This script makes permanent changes to your persistent data.
Removing this script will not revert the changes that have been made.
Make a backup if you ever want to be able to revert back without completely removing your persistent data.
SIDENOTE
This mod shouldn't interfere with other mods.
Python:
# Use this unlock script at your own risk.

# Start the deal with the devil
init 666 python:
    # Replay Gallery
    scenes_unlock_list = [
        'beth_01', 'beth_02',
        'vania_01', 'vania_unlock_energy_04', 'vania_02',
        'zoe_01', 'zoe_scene_100', 'zoe_02', 'zoe_03', 'zoe_03_100',
        'ashley_01', 'ashley_scene_deep', 'ashley_02', 'ashley_03', 'ashley_03_100',
        'melissa_01', 'mel_scene_rough',
        'secon_01', 'secon_02', 'secon_03'
    ]
   
    for gallery_unlock_item in scenes_unlock_list:
        varname = 'pro_' + gallery_unlock_item
        if getattr(persistent, varname) != True:
            setattr(persistent, varname, True)
   
    # Rewards Gallery
    for gallery_unlock_item in range(1, 17):
        varname = 'pro_' + f'{gallery_unlock_item:03}'
        if getattr(persistent, varname) != True:
            setattr(persistent, varname, True)

    # Make sure the replay scenes are clickable
    # The script below was found in a scrappy mod
    for label in renpy.get_all_labels():
        renpy.game.persistent._seen_ever[label] = True
        renpy.game.seen_session[label] = True
 
Last edited:
4.00 star(s) 41 Votes