Save Editing
adb backup
and adb restore
can normally be replaced by using Helium.
PLEASE BE CONFIDENT IN EVERYTHING YOU DO. I AM NOT LIABLE FOR ANY DAMAGES THAT MAY EASILY OCCUR DURING THESE PROCESSES.
Table of contents:
NEWS! v7.2 did something…
It was a long time coming, but v7.2 did something. First of all, it should be called v7.20 and that bothers me. But apart from ranting about its name (lol): It added an export/import button! If you are using the live version (NOT alpha), then you might not have this patch yet. However, for alpha users, this makes backups, restores and even cheating much easier:
Backup
- Export the save in-game using the button
Misc -> Export save file...
- The resulting file is your backup!
Restore
- Click the button
Misc -> Export save file...
- Select your save file which you had exported at some point using the procedure described above
Cheating
- Open a backup file which you obtained by following the instructions from the Backup section above and decode its contents using some Base64 decoder (e.g., base64decode.org)
- Take the resulting, decoded string and change all the values you want to change, but do not change or even break its JSON format!
- Encode the new string again using some Base64 encoder (e.g., base64encode.org)
- Write the Base64 encoded string to some file on your phone
- Import the save as described in the Restore section above
Old procedures
In case you are looking for alternatives or solutions for old versions of Cookie Clicker Mobile, here you are!
Backup [OLD INSTRUCTIONS]
- Install adb if not installed already
- Connect your phone to your computer via USB and with Debugging enabled
- You have to execute the following command in the terminal now:
adb backup org.dashnet.cookieclicker
and confirm on your phone, which creates a file “backup.ab”
Restore [OLD INSTRUCTIONS]
- Install adb if not installed already
- Connect your phone to your computer via USB and with Debugging enabled
- You have to execute the following command in the terminal now:
adb restore backup.ab
and confirm on your phone, which will load the save from the file “backup.ab”.
Converting Alpha Save to Live Save
Using Weird Z the Cppkiemeister’s Script
- Install adb if not installed already
- Connect your phone to your computer via USB and with Debugging enabled
- On Windows, install the Git Bash or MinGW Bash
- Download the Script in the Discord Message
- Do
chmod +x ./restoreAlphaSave.sh
to make it executable - Just do
./restoreAlphaSave.sh
and approve on your phone
Manual conversion
- Install adb if not installed already
- Connect your phone to your computer via USB and with Debugging enabled
- You have to execute the following command in the terminal now:
adb backup org.dashnet.cookieclicker
and confirm on your phone, which creates a file “backup.ab” - Use the Android Backup Extractor to convert the ab-File to a tar-File using
java -jar abe-all.jar unpack backup.ab backup.tar
- Extract the contents of the tar-file (using WinRAR, 7z or something like that) and copy the
apps\org.dashnet.cookieclicker\f\CookieClickerSaveTest.txt
asapps\org.dashnet.cookieclicker\f\CookieClickerSave.txt
(this will basically override your live save with your test save) - Pack it into a tar-File again and convert it to an ab-File using
java -jar abe-all.jar pack backup.tar backup.ab
- Do a
adb restore backup.ab
and confirm on your phone
Cheating [OLD INSTRUCTIONS]
- Install adb if not installed already
- Connect your phone to your computer via USB and with Debugging enabled
- You have to execute the following command in the terminal now:
adb backup org.dashnet.cookieclicker
and confirm on your phone, which creates a file “backup.ab” - Use the Android Backup Extractor to convert the ab-File to a tar-File using
java -jar abe-all.jar unpack backup.ab backup.tar
- Extract the contents of the tar-file (using WinRAR, 7z or something like that) and go into the folder
apps\org.dashnet.cookieclicker\f
. - If you want to cheat on your Live save, edit the file
CookieClickerSave.txt
.
If you want to cheat on your Alpha save, edit the fileCookieClickerSaveTest.txt
. - Pack it into a tar-File again and convert it to an ab-File using
java -jar abe-all.jar pack backup.tar backup.ab
- Do a
adb restore backup.ab
and confirm on your phone
Converting between Community Patches
- Install adb if not installed already
- Connect your phone to your computer via USB and with Debugging enabled
- Look up the package name of the patch, which you want to convert FROM. Let’s say, in our case it was “org.dashnet.cookieclicker” (the original patch, just as an example)
- You have to execute the following command in the terminal now:
adb backup org.dashnet.cookieclicker
and confirm on your phone, which creates a file “backup.ab” - Use the Android Backup Extractor to convert the ab-File to a tar-File using
java -jar abe-all.jar unpack backup.ab backup.tar
- Look up the package name of the patch, which you want to convert TO. Let’s say, in our case it was “org.dashnet.cookieclickerSuperDuperCommunityPatch” (some community patch, just as an example)
- Extract the contents of the tar-file (using WinRAR, 7z or something like that) and rename the folder
apps\org.dashnet.cookieclicker
toapps\org.dashnet.cookieclickerSuperDuperCommunityPatch
- Rename the previous “backup.ab” and “backup.tar” to “backupOld.ab” and “backupOld.tar” respectively
- You have to execute the following command in the terminal now:
adb backup org.dashnet.cookieclickerSuperDuperCommunityPatch
and confirm on your phone, which creates another file “backup.ab” - Use the Android Backup Extractor to convert the ab-File to a tar-File using
java -jar abe-all.jar unpack backup.ab backup.tar
- Extract just the file
backup.tar\apps\org.dashnet.cookieclickerSuperDuperCommunityPatch\_manifest
and replace theapps\org.dashnet.cookieclickerSuperDuperCommunityPatch\_manifest
from your previously extracted backup. - Pack the previously extracted folder into a tar-File again and convert it to an ab-File using
java -jar abe-all.jar pack backup.tar backup.ab
- Do a
adb restore backup.ab
and confirm on your phone
CCMobileToolbox (BROKEN FOR SOME DEVICES)
DOES NOT WORK ON SOME DEVICES. ON MINE IT WORKS, BUT IT MAY NOT WORK ON YOURS!
The Cookie Clicker Mobile Toolbox allows one to convert saves between patches and create backups and restore them.