SonsOfLiberty

Board Buff
Game Compressor
Sep 3, 2022
17,174
138,018
Carnal Contract [v0.4.1 Ep. 4] [Dotty Diaries]

COMPRESSED:

Win/Linux:

- -

Mac:

- -

Thanks
Anon_XXX :coffee:
 
Last edited:

CutieLvr

Engaged Member
Jun 3, 2020
2,838
3,234
Made a quick Mod where I re-added the normal game configuration (skip unread text etc + some more settings from me).

Aug. 18, 2023
New game version v0.4 / Episode 4 is out
I'll check it as soon as possible, probably later today after work
Will there be a Koga3 mod update soon? We're missing you, brother.
 

colombeen

Member
Modder
Jul 16, 2021
284
1,563
Gallery Unlock Script

Description: A simple gallery unlock script. Just place it in the game folder and everything should be unlocked.
Game version: v0.8 Ep. 8

Download:

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.
# https://f95zone.to/threads/.153997/post-11510867

# Start the deal with the devil
init 666 python:
    # Unlock Bonus
    persistent.bonus_active_e8 = True
    
    # Define all unlockable items
    gallery_standard_unlock_list = [
        [1, 9], [2, 9], [3, 9], [4, 9], [5, 9], [6, 9], [7, 9], [8, 18]
    ]

    # Loop through all persistent data
    for gallery_unlock_item in gallery_standard_unlock_list:
        for page in range(1, (gallery_unlock_item[0] + 1)):
            for item in range(1, (gallery_unlock_item[1] + 1)):
                varname = 'e' + str(page) + '_gal_p' + str(item)
                setattr(persistent, varname, True)

    # Define all unlockable scene items
    gallery_scene_unlock_list = [
        [8, 3]
    ]

    # Loop through all persistent data
    for gallery_unlock_item in gallery_scene_unlock_list:
        for page in range(1, (gallery_unlock_item[0] + 1)):
            for item in range(1, (gallery_unlock_item[1] + 1)):
                varname = 'e' + str(page) + '_scene_' + str(item)
                setattr(persistent, varname, True)

    # 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
 
Last edited:
3.60 star(s) 30 Votes