In Idle Dice, save codes are essentially "hacked" or shared save files. These are long strings of text (often Base64 encoded JSON data) that represent a specific game state, including your current money, luck multipliers, and unlocked achievements.
If you imported a code but nothing changed, or you got an error, here is why:
The exact menu names might vary slightly depending on where you’re playing (browser vs. mobile), but the general process remains the same.
Once you confirm that reliably for you, you can use them for more than just disaster recovery. idle dice import save codes work
function exportSave() { try const saveString = JSON.stringify(window.game); const encoded = btoa(saveString); // Base64 encode // If using compression: const compressed = pako.deflate(saveString); const encoded = btoa(String.fromCharCode(...compressed)); // Copy to clipboard navigator.clipboard.writeText(encoded).then(() => showStatus("Save code copied to clipboard!", "green"); ); catch (e)
You can export a save code from Kongregate or CrazyGames on your desktop browser and paste it directly into the Idle Dice app on Android or iOS.
// Step 4: Apply Data to Game State applySave(parsedData); In Idle Dice, save codes are essentially "hacked"
Click . Save this code in a text file (like Notepad) on your device for safekeeping. How to Import a Save Code Copy the save code string you wish to load. Open Idle Dice and go to the Settings menu. Click on the Import button. Paste the save code string into the empty text field.
As of February 2026, various types of save codes are available within the community. These codes can range from starting over with a slight advantage to having unlimited resources.
Treat any public "god save code" older than six months as dead. They do not work. mobile), but the general process remains the same
When you enter one of these codes, the game your current local progress with the state contained in the code. This allows you to immediately access "God Mode" files with infinite resources or jump to a "Clean Slate" boost that starts you with a specific set of upgrades. How to Import and Export Save Codes
When you click "Export" in the Idle Dice settings menu, the game generates a long, seemingly random string of text. This string is not gibberish; it is a highly compressed version of your entire game history. 1. JSON Data Structure