3.40 star(s) 42 Votes

Hyperserver

often the biggest step forward is to "step back"
Donor
Game Developer
Jun 30, 2018
3,379
9,116
728
Oh my god so much this. The game is at is best in the slice of life/ date parts. But the heist stuff drags it down with how stupid it is.
Also it wouldn't be as bad if we where exclusively robbing super rich douchebags but I couldn't help but feel we where just assholes robbing that jewelry store.
oh - and what i forgot to mention:
NO - we are usually NOT that kind of asholes who rob innocents - that's why MC did what he did at the end of this update - and yes, he did it without thinking......
 

Hyperserver

often the biggest step forward is to "step back"
Donor
Game Developer
Jun 30, 2018
3,379
9,116
728
That's a HUGE teaser. Since this update already was absolute fire I can't imagine how the next one will be even better. (if Vivian has a "certain" part in it again it'll be great anyways. :D )
:ROFLMAO: - sorry that i laugh (insider) ..... yes, Vivian will have a "certain" part in it - not sure it's the part you meant though :cool:
(and now i have about 4 months until you will hate me - i guess ;) :unsure:)
 
  • Wow
Reactions: Sony676

Pif paf

Engaged Member
Feb 5, 2018
3,392
2,493
451
Edit: Updated for P2 ep4 v0.0.4b

I've made a Mod for this game

Features:
  • Scene edits (able to see both art school scenes and all picture poses in art gallery)
  • Unlocks all the Vault stuff (walkthrough,secret scenes etc...)
  • Added buttons that Unlocks all the replay/fantasy scenes
  • Added button that Unlocks all the achievements
  • Added screen notification to unlock secret scenes

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

Part 1: MEGA PIXELDRAIN

Part 2: MEGA PIXELDRAIN
Awesome! TYVM for your mod! Any time frame for your update?
 

honalu

Newbie
Aug 24, 2021
40
29
118
Gallery Unlock Script

Description: A simple gallery unlock script. Extract the zip inside the game folder.
Game version: v0.0.4 (should work with future versions as well)

Download: View attachment 3788126



Python:
# Use this unlock script at your own risk.

# Start the deal with the devil
init 666 python:
    # Vault
    setattr(persistent, "v_walkthrough_locked", False)
    setattr(persistent, "v_secrets_locked", False)
    setattr(persistent, "v_lewd_images_extra_locked", False)
    setattr(persistent, "v_sex_anim_enabled_locked", False)

    # Reward Gallery
    if not v_rewards_min_digits is None:
        for who, digits in v_rewards_min_digits.items():
            i = 0
            while renpy.loadable("images/rewards/lewd gallery/" + who + "/lewd_" + who + "_" + str(i + 1) + ".jpg"):
                i += 1
                varname = 'v_rewards_' + who + '_' + str(i).zfill(digits)
                if getattr(persistent, varname) != True:
                    setattr(persistent, varname, True)

    # Replay Gallery
    for unlock_item in dir(persistent):
        if unlock_item.startswith('replay_'):
            if getattr(persistent, unlock_item) == True:
                setattr(persistent, unlock_item, False)

    # Make sure the replay scenes are clickable
    for label in renpy.get_all_labels():
        renpy.game.persistent._seen_ever[label] = True
        renpy.game.seen_session[label] = True
my mistake for using this mod for the latest version 0.0.5, but even though i deleted the game and extract new game, when accessing Replay it still gives an error, i don't understand
 

colombeen

Member
Modder
Jul 16, 2021
369
2,510
397
my mistake for using this mod for the latest version 0.0.5, but even though i deleted the game and extract new game, when accessing Replay it still gives an error, i don't understand
I'll check it out, downloading now

EDIT:
Ran into the same error I'm guessing
1756034245907.png
That is not something that my unlocker broke, but something that was already missing
 
Last edited:
  • Thinking Face
  • Like
Reactions: kms89 and honalu
3.40 star(s) 42 Votes