Create and Fuck your AI Cum Slut –70% OFF
x

fericious1

Member
Sep 14, 2020
112
291
163
CHANGELOG 0.3.9

- NEW SEASONAL EVENT: HALLOWEEN 2025

- NEW EVENT CHARACTER: VAMPIRELLA 2025

- NEW EVENT FIGHT

- NEW POMMODORO SHOP HUD

- NEW BLACKCAT S3X SCENE: SPECIAL 3SOME(ANIMATED)

- NEW DEADPOOL MULTIVERSE PHOTO(CHEL - ROAD TO ELDORADO)(ANIMATED)

- BUGFIX:

- INVENTORY ITEMS BROKEN IMAGES

- TYPO
Could you share the 0.3.9 version? ^^
 

Dwarin

Member
Jul 3, 2018
112
167
184
I like the diversity of romance options, but some of the routes feel too short compared to others.
Might also be because they are still being worked on. Usually when he adds a girl they only have the Hunting bit, Stripping and maybe one more at launch and he fills the rest of their actions in over the next couple updates.

It is nice to see Black Cat get a new scene though as some of the earliest girls feel a bit left behind due to the pacing and the length of development.
 

Orbukaf

Newbie
Jun 26, 2020
91
435
218
So, does anyone know how often the devs update the public version? I thought every three months they would update it to the second to last patreon build, but it doesn't seem that way.

Also, I hope the devs show some love to Mockingbird. It has been over one year since she got any content for herself.
 

Dwarin

Member
Jul 3, 2018
112
167
184
I still have this quest to get to new york, but there dosn't seem to be a way to get there.
In the main floor hallway, where the throne room is, the front right door should be the Teleportation chamber to teleport yourself to NY.

You should have had some dialogue just right around getting that quest about building / repairing the room.
 
Last edited:

circuitarity

Active Member
Jul 3, 2019
811
700
278
I still have this quest to get to new york, but there dosn't seem to be a way to get there.
Having replayed this from the start several times all I can suggest is open your quest log for every girl that is available as well as the main quest... I had the get to New York quest for like 30 minutes this play through and I'm a very slow reader. If that doesn't help try actually working on each girl daily (including talking to them before daily domination(should be like 3 chats each then maybe check once a week in case something new shows up but I don't think there is) and don't forget to do the memories thing as well.
 

Bob69

Uploading the World
Uploader
Donor
Compressor
Mar 2, 2019
23,938
328,934
998
Doomination [v0.3.9] [HardCorn] - Compressed

Win/Linux [397 MB]
- - - -

Mac [391 MB]
- - - -

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

Mk6gti

New Member
Feb 5, 2025
2
1
12
How does he choose the characters for the photos and animations? Own taste? Because I would love to see a photo with Ada Wong and a new animation with Lucia and Black Widow.
 
Aug 24, 2019
86
39
129
Cheat Codes are great and all but lets take it a step further (This works for all renpy games its not exclusive to Doomination).

Go to the game's folder -> renpy -> common.
Find "00library.rpy" open it with whatever editor you want. Find the line config.developer, there will be two next to each other.
Code:
    if config.script_version:
        config.developer = False
        config.default_developer = False
    else:
        config.developer = True
        config.default_developer = True
Change this section into this:
Code:
    config.developer = True
    config.default_developer = True
This is python code so make sure that the spacing is inline with the other 'config.' lines and not too far right or left.

In the same folder as the previous file find "00console.rpy". Open it and find config.console = False change False to True.

Save both files and start the game. You now have access to developer tools meaning you can change values of everything in the game. No need for cheats provided by the developer :)

To open the console press SHIFT + O, to open the developer tools SHIFT + D

Developer Tools allows you to view variables in the game (BEWARE: Changing variables can break your game!!).
"Variable Viewer" shows you all the variables that have been set and vaguely describe what they do. Once you find a variable that sounds interesting you can then use the console to change its values and interact with it.

Here's an example. Let's edit the money.

Open the console (SHIFT + O) -> type in inventory.money -> Press Enter.
It will tell you its an object. Which doesn't mean much to us, but we can dig deeper. Python has a function called dir which basically lists all the functions of an object. If we use dir(inventory) we find that there's some functions available for this object. We can call those functions/variables to alter the inventory object. One that interests us the most is probably earn_money.
So in your console type in inventory.earn_money(99999) -> Press Enter.
That's it, you now have 99999 money in your account.
(If you looked through the output of dir() you may have noticed that inventory.money can also be edited directly with inventory.money = 99999, either is valid.)

This is much more convoluted than just typing in cheat codes in the game but it does give you full power to go wild and break the game :)

Here's some fun finds.
Code:
void_corruption.health = 1000 // This changes the damage of the void corruption spell
void_corruption.cooldown = 1 // This changes the cooldown of the void corruption spell
void_corruption2.health = 1000 // Same as above but for the level 2 spell
fist_of_doom.health = 1000 // This changes the damage of the fist of doom spell
doomstats.addchm(100) // Adds 100 points to doom's charm
doomstats.addint(100) // Adds 100 points to doom's inteligence
doomstats.addstr(100) // Adds 100 points to doom's strength
inventory.items // shows the list of all items you have
inventory.items[x].name // shows the name of an item you have (where x is the position in the items list counting from 0)
inventory.items[x].itemcount = 100 // Changes the amount of an item you have (where x is a position in the items list counting from 0)
If you are struggling to figure out positions of items here's a little helper function that you can use that will output the position and name for each item.
Code:
for i, item in enumerate(inventory.items): print(f"{i} is {item.name}")
Paste this into console and you should see a list of items and their positions.
Then you can use the position like this inventory.items[3].itemcount = 50 for example.

There's probably more but these are the fun ones that might help :)
You can apply the same rules to any renpy game though the variable names will obviously be different.
Enjoy the newly acquired knowledge!


Shameless Plug. This post inspired me to write a fully fledged Guide on how to cheat in games :D Enjoy!
This guy is a Legend, holy shit. Also, how can I access the nude portrait versions from the console commands?
 
4.30 star(s) 32 Votes