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.
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
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
-
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
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,







