Maxbrown05255

Newbie
Sep 8, 2021
40
11
hey I have played this game before and I took the crusade or something and well when I played it once I was level 21 I got an attack called death or glory and it would damage the boss and heal me but now I started to play it again a new save file and it does 0 damage I was invincible when I had it how can I increase its damage
 

SevySub

Member
Aug 17, 2019
190
319
hey I have played this game before and I took the crusade or something and well when I played it once I was level 21 I got an attack called death or glory and it would damage the boss and heal me but now I started to play it again a new save file and it does 0 damage I was invincible when I had it how can I increase its damage
Damage formula for several skills are glitched due to a variable. So, the only way to fix that is to change game files.

Dekarous made our manual bug fixing life harder by putting everything in a single .exe file. But don't worry, I'll show you how we can circunvent that.

STEP 0) Make a backup copy for Domina if you feel unsafe.


STEP 1) Download the lastest version of Enigma VirtualBox unpacker. You can find it on the dev's official website:

Step 1.1) Extract Enigma VB wherever you like.


STEP 2) Open Enigma VirtualBox Unpacker. At the right of the top bar, you will find a [...] button. Click on it. It will prompt a file select window. Find the Domina .exe file and open it on Enigma VirtualBox Unpacker. After that, just hit the "Unpack" button.

Step 2.1) It may take a while until the unpacker does its job (go read a book or watch a good femdom video). When it ends, you will find a new folder on the same place where the executable was (probably named "%Default Folder%"). I suggest you to change that name (eg. "DominaFiles", "DominaGame", "Domina" and so on).


STEP 3) Open that folder. Now, you can easily manipulate all Domina's original files. Your saves won't be there, because the unpacker only unpacks whatever was inside that big .exe file, and Dekarous kept the save folder outside it. That's easy to fix, you just have to copy your "save" folder (under the original "www" folder) and paste it inside the new "www" folder that you will find inside the unpacked content folder.


STEP 4) Now, to fix the damage bug, we'll be manipulating a .json file. More specifically, our target is the file www/data/skills.json

Step 4.1) You can edit .json files by several ways. The most direct is by using Notepad itself, but I personally do not recommend it, since it is quite messy. Instead, I recommend using Notepad++. Other tools like Visual Studio Code can be used as well. You can even use your internet browser, but it may require some knowledge in using the dev tools (F12). Nevertheless, your browser is a great tool to visualize a json file, which may help in the step 4.2

Step 4.2) Now, you have to find the ID of the skill that you need to change. In my browser, typing Death or Glory in the search bar would bring me an entry after the number 74 (74: name: "Death or Glory") - that means the ID of Glory or Death skill is 74.

Step 4.3) Now, you need to go to your editor (eg: Notepad++) and find the block with the "id": 74 value. A block in JSON is limited by { and }. You're looking for something like this:

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

This block has all the informations about the skill Death or Glory: Mana cost (mpCost = 50), TP cost (tpCost = 50), how much TP you gain after using it (tpGain = 0) and so on.

Step 4.4) Now, let's take our attention to our object of interest: the damage is always 0. So, we probably have a problem with the damage calculation. Let's take a look to the Damage Formula itself. Here it is:

"formula":"a.atk * 6 - b.def * 2 * ($gameTemp.tas_power)"

I tried, empirically, to change this formula in order to make another skill (Trick Shot, which is also glitched) to work. It seems that something is wrong with this variable $gameTemp.tas_power (my guess is that it is not returning a number, but something else instead). Nevertheless, the skill will restore its glory if you erase it. So basically...

Step 4.5) Just change this formula to this:

"formula":"a.atk * 6 - b.def * 2"

Doing this will fix your skill.

Step 4.6) Save your file.


STEP 5) The skill should be working now.

Notice that you can basically change everything on any skill, so if you want to make the game easier or more difficult, you can change other values as you wish.

-----------------------------------

That's all. If you have any difficulty, feel free to quote my post (or mention me) and ask.
 
Last edited:

Succubus Hunter

Devoted Member
May 19, 2020
8,173
15,812
Damage formula for several skills are glitched due to a variable. So, the only way to fix that is to change game files.

Dekarous made our manual bug fixing life harder by putting everything in a single .exe file. But don't worry, I'll show you how we can circunvent that.

STEP 0) Make a backup copy for Domina if you feel unsafe.


STEP 1) Download the lastest version of Enigma VirtualBox unpacker. You can find it on the dev's official website:

Step 1.1) Extract Enigma VB wherever you like.


STEP 2) Open Enigma VirtualBox Unpacker. At the right of the top bar, you will find a [...] button. Click on it. It will prompt a file select window. Find the Domina .exe file and open it on Enigma VirtualBox Unpacker. After that, just hit the "Unpack" button.

Step 2.1) It may take a while until the unpacker does its job (go read a book or watch a good femdom video). When it ends, you will find a new folder on the same place where the executable was (probably named "%Default Folder%"). I suggest you to change that name (eg. "DominaFiles", "DominaGame", "Domina" and so on).


STEP 3) Open that folder. Now, you can easily manipulate all Domina's original files. Your saves won't be there, because the unpacker only unpacks whatever was inside that big .exe file, and Dekarous kept the save folder outside it. That's easy to fix, you just have to copy your "save" folder (under the original "www" folder) and paste it inside the new "www" folder that you will find inside the unpacked content folder.


STEP 4) Now, to fix the damage bug, we'll be manipulating a .json file. More specifically, our target is the file www/data/skills.json

Step 4.1) You can edit .json files by several ways. The most direct is by using Notepad itself, but I personally do not recommend it, since it is quite messy. Instead, I recommend using Notepad++. Other tools like Visual Studio Code can be used as well. You can even use your internet browser, but it may require some knowledge in using the dev tools (F12). Nevertheless, your browser is a great tool to visualize a json file, which may help in the step 4.2

Step 4.2) Now, you have to find the ID of the skill that you need to change. In my browser, typing Death or Glory in the search bar would bring me an entry after the number 74 (74: name: "Death or Glory") - that means the ID of Glory or Death skill is 74.

Step 4.3) Now, you need to go to your editor (eg: Notepad++) and find the block with the "id": 74 value. A block in JSON is limited by { and }. You're looking for something like this:

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

This block has all the informations about the skill Death or Glory: Mana cost (mpCost = 50), TP cost (tpCost = 50), how much TP you gain after using it (tpGain = 0) and so on.

Step 4.4) Now, let's take our attention to our object of interest: the damage is always 0. So, we probably have a problem with the damage calculation. Let's take a look to the Damage Formula itself. Here it is:

"formula":"a.atk * 6 - b.def * 2 * ($gameTemp.tas_power)"

I tried, empirically, to change this formula in order to make another skill (Trick Shot, which is also glitched) to work. It seems that something is wrong with this variable $gameTemp.tas_power (my guess is that it is not returning a number, but something else instead). Nevertheless, the skill will restore its glory if you erase it. So basically...

Step 4.5) Just change this formula to this:

"formula":"a.atk * 6 - b.def * 2"

Doing this will fix your skill.

Step 4.6) Save your file.


STEP 5) The skill should be working now.

Notice that you can basically change everything on any skill, so if you want to make the game easier or more difficult, you can change other values as you wish.

-----------------------------------

That's all. If you have any difficulty, feel free to quote my post (or mention me) and ask.
It DEEPLY frustrates me how Deka changed the game from a standard RPGM game to a .exe file. Thank you so much for creating this guide.
 
Jan 27, 2021
90
220
does anyone know what should i do in broken time area ? i have even beaten rosita still teleport to this domain and nothing happens
If I remember correctly, you need to walk somewhere on the right side of the map, which will trigger a cutscene that allows you to progress. Make sure to select 'break the loop' when given the choice, but if you are curious to see what the other option does, the game brings up the save screen beforehand anyway.
 

ToiletLord

Newbie
Jul 30, 2021
79
267
It DEEPLY frustrates me how Deka changed the game from a standard RPGM game to a .exe file. Thank you so much for creating this guide.
It's so that anyone with 2 braincells can't just look into the files and see that all the "coding" he does is just downloading assets and not even crediting the original creators.
 
  • Angry
Reactions: Succubus Hunter

SevySub

Member
Aug 17, 2019
190
319
No, that wasn't it.
He does have a point though. I've never seen any credits during Domina gameplay (if I missed it, lemme know), and clearly there are assets that are free to use as long as credit is given.

For example, PandaMaru's trees that appear in Rosita realm, you can find it in RPG Maker forums:



Maru is clear about usage:
Resources are free to use (commercial too), but you must credit PandaMaru.

Sure, Domina isn't complete, so Deka may implement game credits after the ending. But I think he could do something like that even during development - eg: he could put a "Credits" option on Reaper. It's quite simple to do and it helps a bit against criticism.
 
Mar 31, 2024
64
75
Hey guys. New to the game and I love it. However, pardon my ignorance. I lost my sanity and became Mistress katrinas total slave. Is there any way of picking up from where I left off or is the game over and I need to start all over again?
 
  • Like
Reactions: Succubus Hunter

TheNumber7

Newbie
Feb 15, 2021
74
127
Hey guys. New to the game and I love it. However, pardon my ignorance. I lost my sanity and became Mistress katrinas total slave. Is there any way of picking up from where I left off or is the game over and I need to start all over again?
If you have other saves from before you became her slave, load those. If you overwrote your save after becoming her slave, you have to restart.
 

Succubus Hunter

Devoted Member
May 19, 2020
8,173
15,812
Hey guys. New to the game and I love it. However, pardon my ignorance. I lost my sanity and became Mistress katrinas total slave. Is there any way of picking up from where I left off or is the game over and I need to start all over again?
Welcome to your suicide mission quest fellow Champion!

Katrina has thoroughly made you her bitch puppy in this timeline so you're going to have to do as TheNumber7 said and restart from an earlier save. To prevent becoming enslaved to a Domina, make sure you keep your stress meter from filling up. You can lower it by offering her a soul shard. Doing that will also play an h scene. Don't worry about dying as the Reaper will bring you back to get beaten up by fight the Dominas again.
 
Jan 27, 2021
90
220
Ruby's design has been revealed on Dekarous' Patreon. I personally think she could do without those 'cheekbones' under her eyes. I understand that she's meant to be the 'oldest' Domina, but they just make her look ridiculous in my opinion. Other than that, she actually has a fairly nice design (low A tier if you ask me). Here's hoping she has good scenes in any case.

 

Elona Spiral

Member
Aug 31, 2020
185
167
Damage formula for several skills are glitched due to a variable. So, the only way to fix that is to change game files.

Dekarous made our manual bug fixing life harder by putting everything in a single .exe file. But don't worry, I'll show you how we can circunvent that.

STEP 0) Make a backup copy for Domina if you feel unsafe.


STEP 1) Download the lastest version of Enigma VirtualBox unpacker. You can find it on the dev's official website:

Step 1.1) Extract Enigma VB wherever you like.


STEP 2) Open Enigma VirtualBox Unpacker. At the right of the top bar, you will find a [...] button. Click on it. It will prompt a file select window. Find the Domina .exe file and open it on Enigma VirtualBox Unpacker. After that, just hit the "Unpack" button.

Step 2.1) It may take a while until the unpacker does its job (go read a book or watch a good femdom video). When it ends, you will find a new folder on the same place where the executable was (probably named "%Default Folder%"). I suggest you to change that name (eg. "DominaFiles", "DominaGame", "Domina" and so on).


STEP 3) Open that folder. Now, you can easily manipulate all Domina's original files. Your saves won't be there, because the unpacker only unpacks whatever was inside that big .exe file, and Dekarous kept the save folder outside it. That's easy to fix, you just have to copy your "save" folder (under the original "www" folder) and paste it inside the new "www" folder that you will find inside the unpacked content folder.


STEP 4) Now, to fix the damage bug, we'll be manipulating a .json file. More specifically, our target is the file www/data/skills.json

Step 4.1) You can edit .json files by several ways. The most direct is by using Notepad itself, but I personally do not recommend it, since it is quite messy. Instead, I recommend using Notepad++. Other tools like Visual Studio Code can be used as well. You can even use your internet browser, but it may require some knowledge in using the dev tools (F12). Nevertheless, your browser is a great tool to visualize a json file, which may help in the step 4.2

Step 4.2) Now, you have to find the ID of the skill that you need to change. In my browser, typing Death or Glory in the search bar would bring me an entry after the number 74 (74: name: "Death or Glory") - that means the ID of Glory or Death skill is 74.

Step 4.3) Now, you need to go to your editor (eg: Notepad++) and find the block with the "id": 74 value. A block in JSON is limited by { and }. You're looking for something like this:

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

This block has all the informations about the skill Death or Glory: Mana cost (mpCost = 50), TP cost (tpCost = 50), how much TP you gain after using it (tpGain = 0) and so on.

Step 4.4) Now, let's take our attention to our object of interest: the damage is always 0. So, we probably have a problem with the damage calculation. Let's take a look to the Damage Formula itself. Here it is:

"formula":"a.atk * 6 - b.def * 2 * ($gameTemp.tas_power)"

I tried, empirically, to change this formula in order to make another skill (Trick Shot, which is also glitched) to work. It seems that something is wrong with this variable $gameTemp.tas_power (my guess is that it is not returning a number, but something else instead). Nevertheless, the skill will restore its glory if you erase it. So basically...

Step 4.5) Just change this formula to this:

"formula":"a.atk * 6 - b.def * 2"

Doing this will fix your skill.

Step 4.6) Save your file.


STEP 5) The skill should be working now.

Notice that you can basically change everything on any skill, so if you want to make the game easier or more difficult, you can change other values as you wish.

-----------------------------------

That's all. If you have any difficulty, feel free to quote my post (or mention me) and ask.
I got back to this game after a long while and 2 Dominas have been added since then.
I came across your post and it's very helpful indeed to fix the damage bug.

I'm replying to your post because I want to add something to it.
Under every attack or skill, there's data and notes for it.
For example, there's an enemy in Katrina's realm called Dusk something and it has the attack called Dusk Blade.
When that enemy attacks, there will be a short cut in or event that plays showing that enemy attacking.
The following is the information for that attack, which is at line 154 in the skills.json file by the way.
You don't have permission to view the spoiler content. Log in or register now.

You can remove that cut in or event that plays when an enemy uses that attack.
You do that by replacing
"note":"<whole action>\ncommon event: 75\n</whole action>"
with
"note":""
Basically remove everything in between the " " and the attack will stop triggering that cut in or event, saving you seconds every time.

I would recommend that you only limit it to the trash enemies to save yourself time and still keep the flavor text of the Domina attacks.
 

SparklingWaters

New Member
Apr 2, 2024
3
1
So if you submit to any of them after defeating them, you will be stuck in their realm ?
and you can't continue the quest anymore ?
is this how it works ? or is there a way to continue the quest again ?
How will the game end if you can't ? or wont there be a clear ending ?
 
  • Sad
Reactions: Succubus Hunter

sakai20

New Member
Mar 9, 2023
1
1
I have a trojan horse when i try to run the game, my avast detect a win32:malware-gen. I've already played the game before and this is the first time i get this
 
  • Sad
Reactions: smellyz44

Rennie245

Member
Jan 15, 2023
273
530
So if you submit to any of them after defeating them, you will be stuck in their realm ?
and you can't continue the quest anymore ?
is this how it works ? or is there a way to continue the quest again ?
How will the game end if you can't ? or wont there be a clear ending ?
In general you can keep going after breaking their seal. To be honest to whole giving in to a domina you defeated is probably the most conceptually bad mechanic of this game. It would have been much better if the domina you yield too marked or changed the MC in some way and then you continue your quest whit everybody knowing who's bitch you are.
 
3.40 star(s) 53 Votes