SonsOfLiberty

Board Buff
Compressor
Sep 3, 2022
19,138
157,527
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
3,231
3,760
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
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: v0.9

Download: View attachment CarnalContract-GalleryUnlocker.zip

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.
When the unlocker changes anything in the persistent data, it will be logged in the log.txt file
REMARKS
The old Gallery Unlocker is still available View attachment CarnalContract-GalleryUnlocker_0.8.zip
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:
    import re
    
    print('')
    print('=== START:GalleryUnlocker ===')
    
    for unlock_item in dir(persistent):
        # Unlock Bonus
        if unlock_item.startswith('bonus_code_part_'):
            if getattr(persistent, unlock_item) == 0:
                print('Set ' + unlock_item + ' = True')
                setattr(persistent, unlock_item, True)
        
        # Unlock Gallery
        if re.search('^ep[0-9]+_(im|sm)[0-9]+', unlock_item):
            if getattr(persistent, unlock_item) == 0:
                print('Set ' + unlock_item + ' = 1')
                setattr(persistent, unlock_item, 1)
    
    # 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
        
    print('=== END:GalleryUnlocker ===')
    print('')
 
Last edited:
3.40 star(s) 36 Votes