Hacking Gaming Disney Dreamlight Valley: Adding Currencies and Items

dreamlightcollecter

Active Member
Newcomer
Joined
Nov 23, 2024
Messages
41
Reaction score
34
Trophies
0
Age
24
XP
233
Country
United States
This method is done by editing the save profile. Anyone can do this, but it will be easier if you have knowledge in coding. Always create back ups you can go back to in case you make a mistake.

Decrypting Profile File
Depending on your platform, finding your profile file might be different. You can use Google for this since there are many forums talking about obtaining this file.

Your save file should be a folder with multiple files inside. The file we need for this process is "profile.json". You will need this tool to decrypt (the link should give you the site with the recipe ready to just drag your profile file). It will generate a new file and you have to click the save button. The tool will give you a new file named "profile", you will need to add the extension JSON again (just rename and add .json at the end). Now you will be able to modify your save data.

You don't need to encrypt the file again. Just place the new modified profile file back to the folder and restore after editing.

It is really important that you guys are careful with commas and symbols, any mistake will trigger the Error #1 to pop up. Also, ALWAYS make backups in case something goes wrong.

-

Adding Currencies

In the profile file, use Ctr+F and search "CurrencyAmounts". Then, you will see a list of IDs followed by different numbers. Each ID represents a different currency used in the game. The number fallowing it represents the amount you have in the game. For example, mine looks like this:

Code:
        "CurrencyAmounts": {
            "80000000": 10316823,
            "80300000": 91060,
            "80200002": 3799,
            "80000003": 157881,
            "80100000": 24860,
            "80800003": 0,
            "80000009": 13300,
            "80000010": 38865,
            "80800000": 0

I put together this table of IDs and what they mean. If you are looking for a different one that is not listed, you can use this site to find it.

ID
Currency
80000000​
Star Coins​
80300000​
Dreamlight​
80000003​
Mist (From RiT)​
80000010​
Storybook Magic (From SV)​
80000009​
Daisy Coins​

Important: There's no use in editing Moonstones. Once you go back online, they will be removed.
-

Adding Items to Inventory

First, it is important to know that all items are organized in different groups. You need to place the new items in the correct inventory. Also, you cannot repeat items in the list. If you want more of the same item, edit the amount section.

Search for the inventory depending on the item you want to add.

Inventory
Items
"CompatibleItemType": "ItemType_Furniture"Furniture
"CompatibleItemType": "ItemType_Clothing"Clothing
"CompatibleItemType": "ItemType_Building"House, Stalls and Store Skins
"CompatibleItemType": "ItemType_Trimming"Walls and Floors

You can also search "CompatibleItemType" and see the list of all the different groups.

Once you search for the inventory you want to modify, you should see something like this.

Code:
                    "160000201": {
                        "Amount": 1,
                        "Marker": "ItemMarker_None"
                    },
                    "160100135": {
                        "Amount": 1,
                        "Marker": "ItemMarker_None"
                    }
                },
                "CompatibleItemType": "ItemType_Trimming"

If you go up, you will see all the items you have collected. Each ID represents one item.

I use this Wiki to search for the name of the item I want to add. Once I know the name, I go to this spreadsheet to search for the ID. As you cans see, the spreadsheet keeps notes in each item. I recommend paying attention to them since some items are broken and can make your game crash. Also, do not add items from friendship levels or quests, this will make your quests crash.

Now, you can just add the new item you want using this format.

Code:
                    "YOURITEMID": {
                        "Amount": 1,
                        "Marker": "ItemMarker_None"
                    }

For furniture, you can change the amount in order to have more of the same furniture.

Notice that all the items on the lists have a comma at the end. All the items need this comma BUT the last one. So add the comma to the one that used to be the last one and then add your new items. And again, leaving without one the new last one.

This will add the item to your inventory, but you still need to add it to you collection. See steps in the next section.
-

Adding Items to Collection

In the game, items show up in two different places. One, in decorating mode or while changing outfit; two, in the collection tab.

It is really easy to unlock them in the collection tab. Just search the item ID in your profile file and you should find something that looks like this:

Code:
                        "GroupsCollectionItems": {
                            "40002031": false,
                            "40002032": false,
                            "40002060": true,
                            "40002095": true,
                            "40002021": false,
                            "40002094": false,
                            "40004148": false,
                            "40004149": false,
                            "40004151": false,
                            "40004152": false,
                            "40004153": false,
                            "40004154": false,
                            "160000199": false,
                            "160100135": true
                        },
                        "State": "SetState_NotComplete",
                        "GroupName": "CollectionSet.SetItemFurniturePirates_CollectionName 0"
                    }

Just replace false for true and it will show in the collection tab. This also works with other collection items, such as companions, crafting recipes, etc.


Common Issues

  • If you get Error #1, it means you made a mistake either adding commas, spaces or any other symbol.
  • All the inventories work as lists. The last item of the lists doesn't need a comma at the end.
  • When restoring the save, it is important that the folder contains all the other files. The profile file keeps most of the data, but all the other files are important as well. If you don't include them, the game will start as it is your first time playing.

PLEASE, DON'T MESSAGE ME. IF YOU HAVE ANY QUESTION, ASK IN THIS FORUM AND I WILL REPLY WHEN POSSIBLE.
 
Last edited by dreamlightcollecter,
This was SO helpful! One question, I found a mist orb that I hadn't collected and was able to change the amount of it. Is there a way to duplicate that orb so I have multiple?
 
Hey! I added some items and now for some reason the dreamsnap filter does not work any more and in furniture, if I select "All" I also don't see anything. any idea why?
Post automatically merged:

Hey! I added some items and now for some reason the dreamsnap filter does not work any more and in furniture, if I select "All" I also don't see anything. any idea why?
 
This was SO helpful! One question, I found a mist orb that I hadn't collected and was able to change the amount of it. Is there a way to duplicate that orb so I have multiple?
I have not tried anything like that, so I can't help. What I have done is add mist (you can see how in the original post under currencies) and added the items I needed to my inventory.
Post automatically merged:

Hey! I added some items and now for some reason the dreamsnap filter does not work any more and in furniture, if I select "All" I also don't see anything. any idea why?
Post automatically merged:

Hey! I added some items and now for some reason the dreamsnap filter does not work any more and in furniture, if I select "All" I also don't see anything. any idea why?
But you still have the furniture under the other sections? That's strange, there's no way to add the furniture just to one section since the game sorts them automatically
 
Yes. I still have the furnitures in the other sections. It only dissappeared from the "all" section and the Dreamsnap filter section. Everything else works 10/10. I know it shouldn't have an impact but it happened right after I did the adding. Also I did this changes in my sisters game and in her computer, everything works perfectly fine.
 
Yes. I still have the furnitures in the other sections. It only dissappeared from the "all" section and the Dreamsnap filter section. Everything else works 10/10. I know it shouldn't have an impact but it happened right after I did the adding. Also I did this changes in my sisters game and in her computer, everything works perfectly fine.
Did you also added the items to the collection? You can look the item ID with Ctrl+F and you should be able to see if it says true or false. If it says false, you have to change it to true so it appears in the collection tab as well.

This is better explained in the "Adding to the Collection" section in the post.

If you added a bunch of furniture and you forgot to change all of them to true in the collection, you can also go to furniture mode, place the furniture down, close the furniture mode, reopen, and remove the the furniture and they will be added to the collection.
 
Yes, I added tehm into the collections as well... but just in case I forgot one, I'll do those steps in the game. O also found that if I open all the categories and at last, I open the Dreamsnap filter, somehow it works. But if I close the furniture mode and open it again, I have to again open all the sections before the filter works. Kind of annoying but at least it makes it work
 

Site & Scene News

Popular threads in this forum