Disney Dreamlight Valley [0100D39012C1A000]

  • Thread starter Thread starter morarin
  • Start date Start date
  • Views Views 40,159
  • Replies Replies 238
  • Likes Likes 37
Hi, I entered the codes you sent, but it deactivated the DLCs I had. Could you please send me the exact code you used? Thanks

The DLC-related data I posted is just the excerpt from my own save. I don’t have any other code to send. Another user already confirmed that it worked after copying the relevant entries into the correct place, so the data itself should be valid. If you share only the DLC-related parts of your decrypted `profile.json`, I can check what may be missing or placed incorrectly:

Code:
LastKnownBoughtExpansions
LastKnownBoughtExpansionsAnyPlatform
ExpansionPackOwnershipByPlatform

Please hide anything personal before posting. Also, I play online and bought all DLCs officially, so it is difficult for me to give exact step-by-step instructions for other setups.
Post automatically merged:

Also, this change was observed after updating from v1.23.0 to v1.24.1. If you edit the DLC-related section on v1.23.0 or older, it may not work and may cause problems. Please check that your game version is v1.24.1 first.
 
Last edited by morarin,
The DLC-related data I posted is just the excerpt from my own save. I don’t have any other code to send. Another user already confirmed that it worked after copying the relevant entries into the correct place, so the data itself should be valid. If you share only the DLC-related parts of your decrypted `profile.json`, I can check what may be missing or placed incorrectly:

Code:
LastKnownBoughtExpansions
LastKnownBoughtExpansionsAnyPlatform
ExpansionPackOwnershipByPlatform

Please hide anything personal before posting. Also, I play online and bought all DLCs officially, so it is difficult for me to give exact step-by-step instructions for other setups.
Post automatically merged:

Also, this change was observed after updating from v1.23.0 to v1.24.1. If you edit the DLC-related section on v1.23.0 or older, it may not work and may cause problems. Please check that your game version is v1.24.1 first.
Hi, thanks for replying, this is the code I added, I have version 1.24.1

"LastKnownBoughtExpansions": [
"Expansion1PackExpansionPass_Nintendo_OnlineKey",
"Expansion2PackExpansionPass_Nintendo_OnlineKey",
"Expansion3PackExpansionPass_Nintendo_OnlineKey"
],
"LastKnownBoughtExpansionsAnyPlatform": [
"BaseGame",
"Expansion01",
"Expansion02",
"Expansion03",
"WinnieDLC"
],
"ExpansionPackOwnershipByPlatform": {
"Nintendo": {
"Entries": [
{
"PackName": "Expansion1PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion1PackGoldEdition_Nintendo_OnlineKey",
"PackType": "GamePack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion2PackEnchantedEdition_Nintendo_OnlineKey",
"PackType": "GamePack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion2PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion3PackDeluxeEdition_Nintendo_OnlineKey",
"PackType": "ConsumableEditionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion3PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "MiniExpansion1PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
}
]
}
}
},
"LastKnownBoughtSeasonalPacksAnyPlatform": : { }, "ProblemsTracker": { "ProblemsFriendshipAmountTooHigh": [ ] }, "LastResponse": null, "LastRequestTimestamp": null, "IsSane": true }
]
 
  • Like
Reactions: morarin
Hi, thanks for replying, this is the code I added, I have version 1.24.1

"LastKnownBoughtExpansions": [
"Expansion1PackExpansionPass_Nintendo_OnlineKey",
"Expansion2PackExpansionPass_Nintendo_OnlineKey",
"Expansion3PackExpansionPass_Nintendo_OnlineKey"
],
"LastKnownBoughtExpansionsAnyPlatform": [
"BaseGame",
"Expansion01",
"Expansion02",
"Expansion03",
"WinnieDLC"
],
"ExpansionPackOwnershipByPlatform": {
"Nintendo": {
"Entries": [
{
"PackName": "Expansion1PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion1PackGoldEdition_Nintendo_OnlineKey",
"PackType": "GamePack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion2PackEnchantedEdition_Nintendo_OnlineKey",
"PackType": "GamePack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion2PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion3PackDeluxeEdition_Nintendo_OnlineKey",
"PackType": "ConsumableEditionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion3PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "MiniExpansion1PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
}
]
}
}
},
"LastKnownBoughtSeasonalPacksAnyPlatform": : { }, "ProblemsTracker": { "ProblemsFriendshipAmountTooHigh": [ ] }, "LastResponse": null, "LastRequestTimestamp": null, "IsSane": true }
]

Your DLC-related entries look correct and match the data from my save.

However, the JSON you posted has a structure/syntax problem here:

Code:
"LastKnownBoughtSeasonalPacksAnyPlatform": : { },

There is an extra colon. It should be:

Code:
"LastKnownBoughtSeasonalPacksAnyPlatform": {},

So the problem may not be the DLC entries themselves, but broken JSON structure around that section.
Post automatically merged:

Also, please check the closing braces before that line. Around `ExpansionPackOwnershipByPlatform`, it should end like this:

Code:
]
}
},
"LastKnownBoughtSeasonalPacksAnyPlatform": {},
 
Your DLC-related entries look correct and match the data from my save.

However, the JSON you posted has a structure/syntax problem here:

Code:
"LastKnownBoughtSeasonalPacksAnyPlatform": : { },

There is an extra colon. It should be:

Code:
"LastKnownBoughtSeasonalPacksAnyPlatform": {},

So the problem may not be the DLC entries themselves, but broken JSON structure around that section.
Post automatically merged:

Also, please check the closing braces before that line. Around `ExpansionPackOwnershipByPlatform`, it should end like this:

Code:
]
}
},
"LastKnownBoughtSeasonalPacksAnyPlatform": {},
I did what you told me and corrected the code, but it still doesn't recognize the DLCs
 

Attachments

  • 1000149990.jpg
    1000149990.jpg
    1.1 MB · Views: 4
  • Like
Reactions: morarin
I did what you told me and corrected the code, but it still doesn't recognize the DLCs

Please share the DLC-related excerpt from your corrected decrypted `profile.json` again.

Code:
LastKnownBoughtExpansions
LastKnownBoughtExpansionsAnyPlatform
ExpansionPackOwnershipByPlatform
LastKnownBoughtSeasonalPacksAnyPlatform

Also, if you are playing while connected online, the game may be rejecting it through an online ownership/entitlement check.
 
  • Like
Reactions: pilladoll
Please share the DLC-related excerpt from your corrected decrypted `profile.json` again.

Code:
LastKnownBoughtExpansions
LastKnownBoughtExpansionsAnyPlatform
ExpansionPackOwnershipByPlatform
LastKnownBoughtSeasonalPacksAnyPlatform

Also, if you are playing while connected online, the game may be rejecting it through an online ownership/entitlement check.

I'm not connected to the internet, but I'm sharing the code you asked for.
Code:
"LastKnownBoughtExpansions": [
"Expansion1PackExpansionPass_Nintendo_OnlineKey",
"Expansion2PackExpansionPass_Nintendo_OnlineKey",
"Expansion3PackExpansionPass_Nintendo_OnlineKey"
],
"LastKnownBoughtExpansionsAnyPlatform": [
"BaseGame",
"Expansion01",
"Expansion02",
"Expansion03",
"WinnieDLC"
],
"ExpansionPackOwnershipByPlatform": {
"Nintendo": {
"Entries": [
{
"PackName": "Expansion1PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion1PackGoldEdition_Nintendo_OnlineKey",
"PackType": "GamePack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion2PackEnchantedEdition_Nintendo_OnlineKey",
"PackType": "GamePack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion2PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion3PackDeluxeEdition_Nintendo_OnlineKey",
"PackType": "ConsumableEditionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion3PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "MiniExpansion1PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
}
]
}
},
"LastKnownBoughtSeasonalPacksAnyPlatform": {},
[CODE]
 
  • Like
Reactions: morarin
Hola, estoy en el movil así que no me permite checar el código como tal, pero te recomiendo revisar los espacios en blanco. Si hay un espacio en blanco de más, no te lo reconoce.

hi, i'm using my cellphone, so i cant check your code, but i suggest you check the blank spaces, if you put an extra space the code don't work.
 
  • Like
Reactions: morarin
I'm not connected to the internet, but I'm sharing the code you asked for.
Code:
"LastKnownBoughtExpansions": [
"Expansion1PackExpansionPass_Nintendo_OnlineKey",
"Expansion2PackExpansionPass_Nintendo_OnlineKey",
"Expansion3PackExpansionPass_Nintendo_OnlineKey"
],
"LastKnownBoughtExpansionsAnyPlatform": [
"BaseGame",
"Expansion01",
"Expansion02",
"Expansion03",
"WinnieDLC"
],
"ExpansionPackOwnershipByPlatform": {
"Nintendo": {
"Entries": [
{
"PackName": "Expansion1PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion1PackGoldEdition_Nintendo_OnlineKey",
"PackType": "GamePack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion2PackEnchantedEdition_Nintendo_OnlineKey",
"PackType": "GamePack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion2PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion3PackDeluxeEdition_Nintendo_OnlineKey",
"PackType": "ConsumableEditionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion3PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "MiniExpansion1PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
}
]
}
},
"LastKnownBoughtSeasonalPacksAnyPlatform": {},
[CODE]

I checked the excerpt carefully, and this DLC-related part matches my save data exactly. To check further, I would need to see the full `profile.json`, but posting the whole file publicly in the thread may be risky. If possible, please send it to me by DM instead. Also, if you still have it, please send the save data from before you edited it too — the state where your previous DLCs worked, but only the new Adventure Pack was not unlocked.
Post automatically merged:

One thing I still don’t understand is how the game was able to load if the save data was structurally broken. When I accidentally broke my `profile.json` while editing my save for decoration purposes, the game showed an error message at startup and could not finish loading. So if the JSON structure was actually broken in the restored save, I would expect the game to fail loading entirely, not only fail to recognize the DLCs.

Please also check that the edited save file was actually restored to the real game save using JKSV or another save manager. If the edited file was not restored correctly, the game may still be loading the old save data. Also, before editing any save data, always make a backup of a working save first.
 
Last edited by morarin,
  • Like
Reactions: pamelacaceres
I checked the excerpt carefully, and this DLC-related part matches my save data exactly. To check further, I would need to see the full `profile.json`, but posting the whole file publicly in the thread may be risky. If possible, please send it to me by DM instead. Also, if you still have it, please send the save data from before you edited it too — the state where your previous DLCs worked, but only the new Adventure Pack was not unlocked.
I'm sending you the complete file. The DLCs worked up to update 1.24.1. Thanks for your time; I converted it to .text because it wouldn't let me upload it as .json.
 

Attachments

I checked the excerpt carefully, and this DLC-related part matches my save data exactly. To check further, I would need to see the full `profile.json`, but posting the whole file publicly in the thread may be risky. If possible, please send it to me by DM instead. Also, if you still have it, please send the save data from before you edited it too — the state where your previous DLCs worked, but only the new Adventure Pack was not unlocked.
Post automatically merged:

One thing I still don’t understand is how the game was able to load if the save data was structurally broken. When I accidentally broke my `profile.json` while editing my save for decoration purposes, the game showed an error message at startup and could not finish loading. So if the JSON structure was actually broken in the restored save, I would expect the game to fail loading entirely, not only fail to recognize the DLCs.

Please also check that the edited save file was actually restored to the real game save using JKSV or another save manager. If the edited file was not restored correctly, the game may still be loading the old save data. Also, before editing any save data, always make a backup of a working save first.
This happened to me one time, it shows error 1 but the game loaded, the dlc's didn't worked, and also had problems with making missions. Maybe the game lodas, but somehow "blocked" the broken part?


Also, I see something in the last code @pamelacaceres posted, in this part:

"LastKnownBoughtSeasonalPacksAnyPlatform": {}

it's missing a blank space. the code must be
"LastKnownBoughtSeasonalPacksAnyPlatform": { }
 
  • Like
Reactions: morarin
DDV DLC Patcher

A small v1.24.1 profile.json patcher for DLC-related save data.

This script was made by analyzing DDV v1.24.1 save data.

It patches the DLC-related fields in profile.json to match my reference save data.

This does not guarantee that DLCs will be unlocked or recognized.

Versions older than v1.24.1 are not supported.


Requirements

  • Python
  • pycryptodome

If pycryptodome is not installed, run:

Code:
python -m pip install pycryptodome


How to use

  1. Extract your DDV save with JKSV or another save manager.
  2. Put ddv_dlc_patcher.py and ddv_dlc_patcher.bat in the same folder.
  3. Drag and drop profile.json onto ddv_dlc_patcher.bat.
  4. A backup will be created in the backups folder.
  5. The patched file will be encrypted automatically.
  6. Restore the patched save with JKSV or another save manager.


Always keep a full backup before restoring edited save data.
Post automatically merged:

DDV Profile Converter

An improved version of my previous dlv_profile_tool.

This tool decrypts and encrypts DDV profile.json files for manual save editing.

The main change is that the tool now automatically detects the input file type.

  • Encrypted profile.json -> decrypted and formatted JSON
  • Decrypted JSON -> minified, zipped, and encrypted profile.json

It also creates an automatic backup when decrypting an encrypted profile.


Requirements

  • Python
  • pycryptodome

If pycryptodome is not installed, run:

Code:
python -m pip install pycryptodome


How to use

  1. Extract your DDV save with JKSV or another save manager.
  2. Put ddv_profile_converter.py and ddv_profile_converter.bat in the same folder.
  3. Drag and drop profile.json onto ddv_profile_converter.bat.
  4. The tool will automatically decrypt or encrypt the file depending on its current state.
  5. If you decrypted the file, edit the JSON manually.
  6. After editing, drag and drop the same profile.json onto the .bat again to encrypt it.
  7. Restore the encrypted save with JKSV or another save manager.


Always keep your own full save backup before restoring edited save data.
 

Attachments

Last edited by morarin,
I'm not connected to the internet, but I'm sharing the code you asked for.
Code:
"LastKnownBoughtExpansions": [
"Expansion1PackExpansionPass_Nintendo_OnlineKey",
"Expansion2PackExpansionPass_Nintendo_OnlineKey",
"Expansion3PackExpansionPass_Nintendo_OnlineKey"
],
"LastKnownBoughtExpansionsAnyPlatform": [
"BaseGame",
"Expansion01",
"Expansion02",
"Expansion03",
"WinnieDLC"
],
"ExpansionPackOwnershipByPlatform": {
"Nintendo": {
"Entries": [
{
"PackName": "Expansion1PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion1PackGoldEdition_Nintendo_OnlineKey",
"PackType": "GamePack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion2PackEnchantedEdition_Nintendo_OnlineKey",
"PackType": "GamePack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion2PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion3PackDeluxeEdition_Nintendo_OnlineKey",
"PackType": "ConsumableEditionPack",
"Type": "Type_Purchased"
},
{
"PackName": "Expansion3PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
},
{
"PackName": "MiniExpansion1PackExpansionPass_Nintendo_OnlineKey",
"PackType": "ExpansionPack",
"Type": "Type_Purchased"
}
]
}
},
"LastKnownBoughtSeasonalPacksAnyPlatform": {},
[CODE]
Did you check your mailbox for the dlc?
 
  • Like
Reactions: morarin
I'm sending you the complete file. The DLCs worked up to update 1.24.1. Thanks for your time; I converted it to .text because it wouldn't let me upload it as .json.

I checked the complete save file you uploaded.The save structure itself does not look broken, and the DLC ownership fields were edited correctly.

They match my reference save data, including:

  • WinnieDLC
  • MiniExpansion1PackExpansionPass_Nintendo_OnlineKey
  • The three main paid expansion entries

So I do not think the problem is the edited JSON content itself. Based on your save data, the most likely issue is that the edited save is not actually being restored/written back correctly, or the game is still loading a different save. If the game were really loading the edited save you sent me, I would expect the DLC ownership state to be different from what your screenshot shows. This also matches what happened after update 1.24.1. Some users who previously unlocked the three paid DLCs by save editing lost access again after updating. Another user already confirmed that after editing the fields and restoring the save correctly, the DLCs worked again:

Okay! I just did everything that @morarin writed, decrypted the file, search in the code the part that needs to be edited, and copy/paste the code like he said. Saved the file, put in the ZIP file of the original savegame AND restored with jksm. This worked for my game! I can play again without problems, my DLC are working again and the new update works fine.

So please focus on the restore/write-back step now. Please follow that procedure carefully.

In particular:

  1. Fully close Disney Dreamlight Valley.
  2. Put the edited profile.json back into the correct backup folder/archive.
  3. Restore that edited backup with JKSV/JKSM.
  4. Make sure you restore it to the correct Switch user profile.
  5. Launch the game.
  6. Save in-game.
  7. Extract the save again.

The last step is important. After restoring and launching the game, extract the save again and check the newly extracted profile.json. If the newly extracted file still contains the edited DLC fields, then the game really loaded the edited save. If it does not, then the restore did not apply correctly.

Also, please do not upload complete save data publicly in the thread. A full save file can contain profile/device-identifying information. As I mentioned before, I recommend continuing this by DM. For the save file you already uploaded publicly, I recommend editing your post and removing the attachment/file from the thread.
 
I checked the complete save file you uploaded.The save structure itself does not look broken, and the DLC ownership fields were edited correctly.

They match my reference save data, including:

  • WinnieDLC
  • MiniExpansion1PackExpansionPass_Nintendo_OnlineKey
  • The three main paid expansion entries

So I do not think the problem is the edited JSON content itself. Based on your save data, the most likely issue is that the edited save is not actually being restored/written back correctly, or the game is still loading a different save. If the game were really loading the edited save you sent me, I would expect the DLC ownership state to be different from what your screenshot shows. This also matches what happened after update 1.24.1. Some users who previously unlocked the three paid DLCs by save editing lost access again after updating. Another user already confirmed that after editing the fields and restoring the save correctly, the DLCs worked again:



So please focus on the restore/write-back step now. Please follow that procedure carefully.

In particular:

  1. Fully close Disney Dreamlight Valley.
  2. Put the edited profile.json back into the correct backup folder/archive.
  3. Restore that edited backup with JKSV/JKSM.
  4. Make sure you restore it to the correct Switch user profile.
  5. Launch the game.
  6. Save in-game.
  7. Extract the save again.

The last step is important. After restoring and launching the game, extract the save again and check the newly extracted profile.json. If the newly extracted file still contains the edited DLC fields, then the game really loaded the edited save. If it does not, then the restore did not apply correctly.

Also, please do not upload complete save data publicly in the thread. A full save file can contain profile/device-identifying information. As I mentioned before, I recommend continuing this by DM. For the save file you already uploaded publicly, I recommend editing your post and removing the attachment/file from the thread.
I repeated the entire process. Now it works; the profile file was being overwritten. Thank you so much for your time!
 
@morarin I'm very sorry to disturb you with this as you just helped this person with this
I am having the same problem I loaded up the dreamlight and all dlcs are locked now I backed up my profile.json on jksv so it's all saved but I was trying to send a version to android to read and change over but it didn't work even when .txt it didn't work. So please could I have your assistance please if you don't mind thank you ever so much :)
 
  • Like
Reactions: morarin
@morarin I'm very sorry to disturb you with this as you just helped this person with this
I am having the same problem I loaded up the dreamlight and all dlcs are locked now I backed up my profile.json on jksv so it's all saved but I was trying to send a version to android to read and change over but it didn't work even when .txt it didn't work. So please could I have your assistance please if you don't mind thank you ever so much :)

First, do you have access to any PC at all? Windows, Mac, or Linux is fine.

As far as I know, there is no Android version of DDV itself, so I assume you mean you are trying to edit the Switch profile.json on an Android device. Renaming it to .txt will not work, because the Switch profile.json is encrypted/compressed. You need to decrypt/extract it first before it becomes readable JSON.

I don’t own an Android device, so I can’t give reliable step-by-step Android instructions. If you have any PC, I strongly recommend doing it there instead. The ddv_dlc_patcher I posted in this thread should automatically patch only the DLC ownership fields if your file is supported.

If you only have Android, it may be possible with Termux + Python, or manually with CyberChef, but that is much easier to mess up than using the patcher.
 
So what'll I'll do tomorrow I'll use my laptop then okay 👍 thanks I'll see how that goes
Post automatically merged:

Right on laptop got the files
Post automatically merged:

Right not sure what to do next but got the files lol 😆 😆 installed python on I can open profile up not sure what I'm looking for though lol
 
Last edited by D4M28,
  • Like
Reactions: morarin
So what'll I'll do tomorrow I'll use my laptop then okay 👍 thanks I'll see how that goes
Post automatically merged:

Right on laptop got the files
Post automatically merged:

Right not sure what to do next but got the files lol 😆 😆 installed python on I can open profile up not sure what I'm looking for though lol

You do not need to open or edit profile.json manually. The patcher handles everything automatically.

  1. Keep your original JKSV backup untouched.
  2. Put ddv_dlc_patcher.py and ddv_dlc_patcher.bat in the same folder. Remove any extra number in parentheses from their filenames.
  3. Open Command Prompt and run python -m pip install pycryptodome.
  4. Drag profile.json onto ddv_dlc_patcher.bat.
  5. Wait until the patcher reports that it has completed successfully.
  6. Copy the modified profile.json back into the JKSV backup and restore it with JKSV.

The separate converter is not required. If you get an error, send a screenshot of the command window, but do not upload your profile.json publicly.
 
  • Like
Reactions: pilladoll
DDV_Update 24 Key Art.png

{MasterCode}
04000000 056E96FC 6B1302A8
04000000 07410D10 A9BA7BFD
04000000 07410D14 F9000BFB
04000000 056DB000 3607F500
04000000 0502E04C 97FFFE41
04000000 05031E48 941A781E
04000000 04FF8E90 D10283FF
04000000 04FF9100 D101C3FF
04000000 055B4884 39412268
04000000 055B57C4 39412288
04000000 055A91AC 394092C8
04000000 0559F5D8 B9401F48
04000000 03370AB4 F9406800
04000000 03370AB8 B40002A0
04000000 03370ABC B9402041
04000000 03370AC0 AA1F03E2
04000000 03370AC4 9400229B
04000000 03370AC8 F9406E60
04000000 03370ACC B4000200
04000000 03370AD0 AA1F03E1
04000000 04EEDB40 2A0003F5
04000000 04EEDBE4 39411108
04000000 04EEDC14 7100051F
04000000 04EEDC18 1A9F17E8
04000000 04EEDC30 54000141
04000000 04EEDC34 52800068
04000000 04ECE650 944F1FC8
04000000 04ED7E80 94000140
04000000 04ED8018 940001B2
04000000 055ABE60 97E4B428
04000000 05007458 F8018D00
04000000 0504E200 97CF140C
04000000 0504E83C 5400068B
04000000 0559B90C 0B180101
04000000 0572637C B9402A78
04000000 05726380 0B140316
04000000 05528738 B94026E8
04000000 05528740 0B15011A
04000000 056D2024 0B180108
04000000 056D2028 F81F03BF
04000000 056D5BBC 1A89B2B8
04000000 056D5BC4 1A89B115
04000000 04D0A588 2A0303F5
04000000 0811E550 1A9F17E0
04000000 0813A914 71000D1F
04000000 0813A918 1A9F17E0
04000000 05B3D708 540001E1
04000000 06014D64 5400032D
04000000 0601821C 6B08013F
04000000 06018220 540000AA
04000000 06018224 2A1F03E0
04000000 0524262C 37000140
04000000 05242668 54000081
04000000 05242A28 B9403108
04000000 05242B4C B940016B
04000000 05104590 1A9F07E0
04000000 051045BC 52800020
04000000 05106420 3707F380
04000000 05108488 36003080
04000000 05109094 9417321F
04000000 0579241C 360014C0

[R MoveSpeed x2]
04000000 03539AEC 1E204140
04000000 03539AF0 1E204161
04000000 03539AF8 1E204182
80000080
04000000 03539AEC 1E2A2940
04000000 03539AF0 1E2B2961
04000000 03539AF8 1E2C2982
20000000

[EnergyNoDecrease]
04000000 056E96FC 6B1F02A8

[CurrencyNoDecrease]
04000000 07410D10 52800000
04000000 07410D14 D65F03C0

[R PickupToMax]
04000000 04CBBA5C B94017FA
04000000 04CBBC84 4B19035A
80000080
04000000 04CBBA5C 2A1B03FA
04000000 04CBBC84 2A1F03FA
20000000

[ZL NoConsumeItems]
04000000 04CBC410 D10283FF
04000000 04CBC414 A9047BFD
04000000 04CBCDB0 D10243FF
04000000 04CBCDB4 A9037BFD
80000100
04000000 04CBC410 52800020
04000000 04CBC414 D65F03C0
04000000 04CBCDB0 52800020
04000000 04CBCDB4 D65F03C0
20000000

[ShowAllCraftingRecipe]
04000000 056DB000 D503201F

[FreeCraft]
04000000 0502E04C 52800000
04000000 05031E48 52800020

[CookKeepItems]
04000000 04FF8E90 D65F03C0
04000000 04FF9100 D65F03C0

[AlwaysCriticalSuccess]
04000000 055B4884 52800028
04000000 055B57C4 52800028

[AlwaysBurning]
04000000 055A91AC 52800028

[AlwaysActivityBonusRewards]
04000000 0559F5D8 52807D08

[EasyFishing]
04000000 03370AB4 F9406660
04000000 03370AB8 AA1F03E1
04000000 03370ABC 94001B91
04000000 03370AC0 F9406660
04000000 03370AC4 52800001
04000000 03370AC8 AA1F03E2
04000000 03370ACC 94001B39
04000000 03370AD0 1400000C

[--SectionStart:ForceFishRarity--]
00000000 00000000 00000000
[ForceNormalFish]
04000000 04EEDB40 52800035
04000000 04EEDBE4 52800008
04000000 04EEDC14 7100051F
04000000 04EEDC18 1A9F07E8
04000000 04EEDC30 54000140
04000000 04EEDC34 52800028

[ForceUncommonFish]
04000000 04EEDB40 52800035
04000000 04EEDBE4 52800008
04000000 04EEDC14 7100091F
04000000 04EEDC18 1A9F07E8
04000000 04EEDC30 54000140
04000000 04EEDC34 52800048

[ForceRareFish]
04000000 04EEDB40 52800035
04000000 04EEDBE4 52800008
04000000 04EEDC14 71000D1F
04000000 04EEDC18 1A9F07E8
04000000 04EEDC30 54000140
[--SectionEnd:ForceFishRarity--]
00000000 00000000 00000000

[EasyGardening]
04000000 04ECE650 D503201F

[InfHarvesting]
04000000 04ED7E80 D503201F
04000000 04ED8018 D503201F
04000000 055ABE60 D503201F

[InfMiningRock]
04000000 05007458 F8018D1F

[EasyUnlockCritter]
04000000 0504E200 52800020
04000000 0504E83C D503201F

[PetFriendshipMax(add)]
04000000 0559B90C 2A1503E1

[MountBondMax(add)]
04000000 0572637C 52A00036
04000000 05726380 729C6CD6

[FriendshipMax(add)]
04000000 05528738 52A0003A
04000000 05528740 729C6CDA

[XPMax(add)]
04000000 056D2024 529FD008
04000000 056D2028 72A001E8

[CurrencyMax(add)]
04000000 056D5BBC 1A89B138
04000000 056D5BC4 1A89B135

[EasyClaimDuties]
04000000 04D0A588 52800035
04000000 0811E550 52800020
04000000 0813A914 7100111F
04000000 0813A918 1A9F07E0
04000000 05B3D708 D503201F

[ClaimAllAchievements]
04000000 06014D64 D503201F
04000000 0601821C B9007668
04000000 06018220 B9009268
04000000 06018224 14000004

[--SectionStart:EasyScramblecoin--]
00000000 00000000 00000000
[6Points]
04000000 0524262C 1400000A
04000000 05242668 14000004
04000000 05242A28 52800008
04000000 05242B4C 528000CB

[12Points]
04000000 0524262C 1400000A
04000000 05242668 14000004
04000000 05242A28 52800008
04000000 05242B4C 5280018B

[15Points]
04000000 0524262C 1400000A
04000000 05242668 14000004
04000000 05242A28 52800008
04000000 05242B4C 528001EB

[18Points]
04000000 0524262C 1400000A
04000000 05242668 14000004
04000000 05242A28 52800008
04000000 05242B4C 5280024B

[21Points]
04000000 0524262C 1400000A
04000000 05242668 14000004
04000000 05242A28 52800008
04000000 05242B4C 528002AB

[50Points]
04000000 0524262C 1400000A
04000000 05242668 14000004
04000000 05242A28 52800008
04000000 05242B4C 5280064B
[--SectionEnd:EasyScramblecoin--]
00000000 00000000 00000000

[--SectionStart:FixCodes--]
00000000 00000000 00000000
[SellToTrash]
04000000 05104590 2A1F03E0
04000000 051045BC 2A1F03E0
04000000 05106420 17FFFF9C
04000000 05108488 D503201F
04000000 05109094 52800000

[FixMissionRewards]
04000000 0579241C D503201F
[--SectionEnd:FixCodes--]
00000000 00000000 00000000

The GetAll codes and WelcomeVanellope are not included in this post yet. I plan to update and add them soon.
 

Site & Scene News

Popular threads in this forum