ROM Hack Discussion How to editing Daemon X Machina‘ savedata?

subzeroarran

New Member
Newbie
Joined
Feb 18, 2022
Messages
2
Trophies
0
Age
23
Location
yeet
XP
23
Country
Bahamas, The
Arondight is 77 70 5F 30 33 5F 30 30 5F 64 (wp_03_00_d). Danslef is 77 70 5F 30 33 5F 30 30 5F 43 (wp_03_00_C). Mind the capitalization if you are editing the text.


Yeah search for:
43 61 73 68 00 0C 00 00 00 49 6E 74 50 72 6F 70 65 72 74 79 00

You should see something like Cash.....IntProperty on the text side. Change the xx for money. It's little endian btw.

43 61 73 68 00 0C 00 00 00 49 6E 74 50 72 6F 70 65 72 74 79 00 04 00 00 00 00 00 00 00 00 xx xx xx xx.
I would advise keeping a backup and start small with the value you put in. Seems like a toss-up if it will cause corruption
every time i edit the file it corrupts the whole save and i can't play the game

how do i edit the save so that i can change my cash to any value?
 

ClockworkAPEX

New Member
Newbie
Joined
Jun 19, 2022
Messages
2
Trophies
0
Age
41
Location
Mississauga
XP
22
Country
Canada
Open save file(Slot1 and Slot2 file) by hex editor. (HxD is free hex editor)
Then change below value
49 73 44 65 76 65 6C 6F 70 65 64 00 0D 00 00 00 42 6F 6F 6C 50 72 6F 70 65 72 74 79 00 00 00 00 00 00 00 00 00 00
to
49 73 44 65 76 65 6C 6F 70 65 64 00 0D 00 00 00 42 6F 6F 6C 50 72 6F 70 65 72 74 79 00 00 00 00 00 00 00 00 00 01


These values mean 'IsDeveloped / BoolProperty / True or False'
After change the value from 0 to 1, you can by all parts in shop.

On the latest Steam version (1.06), this unfortunately makes the game not recognize the save file and only gives the option to select "New Game".
 

DM91

New Member
Newbie
Joined
Apr 1, 2023
Messages
2
Trophies
0
Age
32
XP
65
Country
Kuwait
Found Blueprints:
Code:
49 73 4F 77 6E 65 64 00 0D 00 00 00 42 6F 6F 6C 50 72 6F 70 65 72 74 79 00 00 00 00 00 00 00 00 00 00 00 05 00 00 00

Change all matching values to

49 73 4F 77 6E 65 64 00 0D 00 00 00 42 6F 6F 6C 50 72 6F 70 65 72 74 79 00 00 00 00 00 00 00 00 00 01 00 05 00 00 00
This was showing a couple of blank blueprints on my save so make sure you backup your save. I suspect this might be due to co-op missions that I haven't completed yet.



Edit: This is indeed the Boss Battle Data Percentage. Click to see below.
Search for the following value (there will be 19 instances of this which you will have to process manually)
Code:
44 61 74 61 50 72 6F 67 72 65 73 73 00 0E 00 00 00 46 6C 6F 61 74 50 72 6F 70 65 72 74 79 00 04 00 00 00 00 00 00 00 00 00 00

This will be followed by 6 Octets and then the value for "None"
Code:
4E 6F 6E 65 00 07 00 00 00

The value you need to replace/write over will be between the first and 2nd values above. Replace this with:
Code:
D6 42 05 00 00 00

For example - change xx xx xx xx xx xx (6 octets) to D6 42 05 00 00 00
Code:
44 61 74 61 50 72 6F 67 72 65 73 73 00 0E 00 00 00 46 6C 6F 61 74 50 72 6F 70 65 72 74 79 00 04 00 00 00 00 00 00 00 00 00 00 xx xx xx xx xx xx 4E 6F 6E 65 00 07 00 00 00

So it now looks like this:
Code:
44 61 74 61 50 72 6F 67 72 65 73 73 00 0E 00 00 00 46 6C 6F 61 74 50 72 6F 70 65 72 74 79 00 04 00 00 00 00 00 00 00 00 00 00 D6 42 05 00 00 00 4E 6F 6E 65 00 07 00 00 00

Hi u
Found Blueprints:
Code:
49 73 4F 77 6E 65 64 00 0D 00 00 00 42 6F 6F 6C 50 72 6F 70 65 72 74 79 00 00 00 00 00 00 00 00 00 00 00 05 00 00 00

Change all matching values to

49 73 4F 77 6E 65 64 00 0D 00 00 00 42 6F 6F 6C 50 72 6F 70 65 72 74 79 00 00 00 00 00 00 00 00 00 01 00 05 00 00 00
This was showing a couple of blank blueprints on my save so make sure you backup your save. I suspect this might be due to co-op missions that I haven't completed yet.



Edit: This is indeed the Boss Battle Data Percentage. Click to see below.
Search for the following value (there will be 19 instances of this which you will have to process manually)
Code:
44 61 74 61 50 72 6F 67 72 65 73 73 00 0E 00 00 00 46 6C 6F 61 74 50 72 6F 70 65 72 74 79 00 04 00 00 00 00 00 00 00 00 00 00

This will be followed by 6 Octets and then the value for "None"
Code:
4E 6F 6E 65 00 07 00 00 00

The value you need to replace/write over will be between the first and 2nd values above. Replace this with:
Code:
D6 42 05 00 00 00

For example - change xx xx xx xx xx xx (6 octets) to D6 42 05 00 00 00
Code:
44 61 74 61 50 72 6F 67 72 65 73 73 00 0E 00 00 00 46 6C 6F 61 74 50 72 6F 70 65 72 74 79 00 04 00 00 00 00 00 00 00 00 00 00 xx xx xx xx xx xx 4E 6F 6E 65 00 07 00 00 00

So it now looks like this:
Code:
44 61 74 61 50 72 6F 67 72 65 73 73 00 0E 00 00 00 46 6C 6F 61 74 50 72 6F 70 65 72 74 79 00 04 00 00 00 00 00 00 00 00 00 00 D6 42 05 00 00 00 4E 6F 6E 65 00 07 00 00 00
Found Blueprints:
Code:
49 73 4F 77 6E 65 64 00 0D 00 00 00 42 6F 6F 6C 50 72 6F 70 65 72 74 79 00 00 00 00 00 00 00 00 00 00 00 05 00 00 00

Change all matching values to

49 73 4F 77 6E 65 64 00 0D 00 00 00 42 6F 6F 6C 50 72 6F 70 65 72 74 79 00 00 00 00 00 00 00 00 00 01 00 05 00 00 00
This was showing a couple of blank blueprints on my save so make sure you backup your save. I suspect this might be due to co-op missions that I haven't completed yet.



Edit: This is indeed the Boss Battle Data Percentage. Click to see below.
Search for the following value (there will be 19 instances of this which you will have to process manually)
Code:
44 61 74 61 50 72 6F 67 72 65 73 73 00 0E 00 00 00 46 6C 6F 61 74 50 72 6F 70 65 72 74 79 00 04 00 00 00 00 00 00 00 00 00 00

This will be followed by 6 Octets and then the value for "None"
Code:
4E 6F 6E 65 00 07 00 00 00

The value you need to replace/write over will be between the first and 2nd values above. Replace this with:
Code:
D6 42 05 00 00 00

For example - change xx xx xx xx xx xx (6 octets) to D6 42 05 00 00 00
Code:
44 61 74 61 50 72 6F 67 72 65 73 73 00 0E 00 00 00 46 6C 6F 61 74 50 72 6F 70 65 72 74 79 00 04 00 00 00 00 00 00 00 00 00 00 xx xx xx xx xx xx 4E 6F 6E 65 00 07 00 00 00

So it now looks like this:
Code:
44 61 74 61 50 72 6F 67 72 65 73 73 00 0E 00 00 00 46 6C 6F 61 74 50 72 6F 70 65 72 74 79 00 04 00 00 00 00 00 00 00 00 00 00 D6 42 05 00 00 00 4E 6F 6E 65 00 07 00 00 00

Hi, thanks for sharing the hex codes. But I've copied the same numbers for the blueprints in my save file "Slot1" and nothing changed & I don't have any blueprints am I doing something please let me know.

I've tried the same for save file "Slot2" and it just erase my data & start over so I avoid touching the save file "Slot2".
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    AncientBoi @ AncientBoi: :unsure::unsure::unsure: Come to think of it, I might make 🌭 for lunch today. A change of pace :)