[SOLVED] Backing up and recovering Angry Birds with ADB the easy way - Android Software/Hacking General [Developers Only]

This is written for Linux so if you aren't running Linux you will have to tweak the locations to work with your OS of choice.
The backup files go to these corresponding locations:
Angry Birds --> ~/Desktop/AB
Angry Birds Rio --> ~/Desktop/ABR
Angry Birds Seasons --> ~/Desktop/ABS
First you must install and run each game you want to restore saves to. This can be anything from install via the market, sideloading, or via Titanium Backup (without restoring data of course!). Contrary to what other people have reported, I didn't have to play a level, just loading the game and exiting was enough for me. Anyways...
For backing up...
Code:
# Angry Birds
adb pull /data/data/com.rovio.angrybirds/files/highscores.lua ~/Desktop/AB/highscores.lua
adb pull /data/data/com.rovio.angrybirds/files/settings.lua ~/Desktop/AB/settings.lua
# Angry Birds Rio
adb pull /data/data/com.rovio.angrybirdsrio/files/highscores.lua ~/Desktop/ABR/highscores.lua
adb pull /data/data/com.rovio.angrybirdsrio/files/settings.lua ~/Desktop/ABR/settings.lua
# Angry Birds Seasons
adb pull /data/data/com.rovio.angrybirdsseasons/files/highscores.lua ~/Desktop/ABS/highscores.lua
adb pull /data/data/com.rovio.angrybirdsseasons/files/settings.lua ~/Desktop/ABS/settings.lua
And for recovering...
Code:
# Angry Birds
adb push ~/Desktop/AB/highscores.lua /data/data/com.rovio.angrybirds/files/highscores.lua
adb push ~/Desktop/AB/settings.lua /data/data/com.rovio.angrybirds/files/settings.lua
# Angry Birds Rio
adb push ~/Desktop/ABR/highscores.lua /data/data/com.rovio.angrybirdsrio/files/highscores.lua
adb push ~/Desktop/ABR/settings.lua /data/data/com.rovio.angrybirdsrio/files/settings.lua
# Angry Birds Seasons
adb push ~/Desktop/ABS/highscores.lua /data/data/com.rovio.angrybirdsseasons/files/highscores.lua
adb push ~/Desktop/ABS/settings.lua /data/data/com.rovio.angrybirdsseasons/files/settings.lua
Why?
I currently own a Nexus One and it doesn't run Gingerbread well at all IMHO. The "wonk" as it is known is quite irritating. I hate answering the phone and having to say "Hello" multiple times because the person on the other end can't hear me; in issue introduced by updating to Gingerbread. I have decided to roll back to Froyo until the problem is fixed. I'm pretty disappointed in Google about this but that's an entirely different subject... anyways, Titanium Backup wouldn't work going from Gingerbread to Froyo for a Angry Birds and a few other apps but this method worked perfectly for Angry Birds
I hope this proves useful to someone else. All the similar methods of AB recovery I found didn't give the full paths of all the backup files so hopefully this will save someone some time.

does this require the device to be rooted?

Any idea if this might work for the Battle.net Mobile Authenticator? I created a backup for it with Titanium back when I was using a Samsung Vibrant (I believe still on the stock 2.1 Eclair), but now that I'm using the Optimus T and rooted "stock" 2.2, Titanium's not detecting said backup, even though I copied the backup files into the "/sdcard/TitaniumBackup/" folder, only the ones created on the Optimus T/2.2...

Root?
@ jackleone84, I'm note sure about root but I have my phone rooted. It's pretty simple to try out though, as long as you have adb working.

Maybe?
@ Chortles, if you're really unsure of what's important I'd just adb pull the entire folder in /data/data/ Not sure what the important file(s) might be called but that's what I would try. Also, some apps just don't run on different version of android, unfortunately.

I have tried to take a look inside the LUA files - not picked up like you did using ADB but by installing Angry Birds Backup, store to Dropbox and then read the file on the PC.
Stored away a copy of the gamle, played a level an made an extra star, stored away that level as well, compared using the file compare of Total Commander. It's the same until position 00E0 (hex) but after that it's *totally* different. Tried another time and this time it was the same u ntil position 0300 (hex) and then totally different.
Did anyone find a way to parse the file format into a humanly readable format that allows me to access the content?

Or you can use this...
Google Play Store - Angry Birds Backup
She has an app for all versions of angry birds. They work great. And they are free.

Old thread and old solution ..
Here is another solution.. one app for all also, free and online backup.
Google Play Store - AngryBirdsBackup
Actually having issues for Jelly Bean, I am working on this
Pierrick

Related

[TUTORIAL] 3 Stars on Angry Birds (Hack)

After a long time of trying to get three stars on all levels of Angry Birds, I had given up. I tried to find an easy way to get three stars on the levels, but when I googled it, the only results were videos showing how to get three stars. Even after watching the videos I could not get a few. So, I decided to open root explorer and find where Angry Birds keeps track of the high scores. After about ten minutes, I was able to edit the highscores.lua (the Angry Birds high scores file) and get three stars on all of the levels and unlock the golden eggs!
This is a tutorial of how I did it. You should not continue unless you have beaten all levels. You should not do this if you have not tried to get three stars. Also, this tutorial requires a minimal knowledge of adb and the terminal. YOU MUST HAVE ADB SET UP.
1. first connect your phone to your computer and open terminal/cmd (command prompt)
2. cd to your desktop
Code:
cd Desktop
3. Now you are going to pull the highscores.lua file.
Code:
adb pull /data/data/com.rovio.angrybirds/files/highscores.lua
4. You should now have a file called highscores.lua on your desktop.
5. Rename this file to highscores_backup.lua
6. Pull the highscores.lua file again.
Code:
adb pull /data/data/com.rovio.angrybirds/files/highscores.lua
7. Open the highscores.lua file using notepad/TextEdit/gedit only.
8. Open Angry Birds and go to a level that you do not have three stars on.
9. Remember the high score you got on that level.
10. In notepad/TextEdit/gedit use control+f (command+f on mac) to find the high score for the level that you cannot get three stars on.
For example, on level 2-8, I have 2 stars. It should look something like this:
Code:
Level21 = {
completed = true,
birds = 3,
score = 48840,
lowScore = 45490,
}
This block of code represents one level. "Level21" corresponds to 2-8. "completed" can be true or false. Edit this to say if a level has been completed. "birds" is the number of birds you used to complete the level. "score" is your high score for that level. "lowScore" is your low score for that level. In order to change the number of stars, you need to change birds and score. Birds should always be greater than 0 and lowScore should always be less than or equal to score. In this case, I would make birds 2 and score 58840. Make sure that the number of birds corresponds to that level.
11. After editing the file, push it back to your phone.
Code:
adb push highscores.lua /data/data/com.rovio.angrybirds/files/
Remember that when you push/pull a file it is overwritten.
Also, use the up arrow to cycle through recently used commands in the terminal.
12. Close and kill Angry Birds using a task killer or the built in CM task killer. This will make the game recheck the file.
Repeat steps 6 - 12 until you have 3 stars in all levels.
This also works with Angry Birds Seasons. Just replace com.rovio.angrybirds in your commands with com.rovio.angrybirdsseasons.
Be sure to share this tutorial with others who cannot get three stars on a level and remember to thank if this helped you!
I'm gonna bookmark this yet not implement it as I haven't beaten all the levels yet.
I'm sure there are people out there who will want this, but this isn't for me. I'd rather be proud knowing it completed them myself.
Sent from my GT-P1000
Wouldn't it be easier to post the highscore file already edited and instruct people to push the file?
Sent from my Nexus One using XDA App
B Dizzle said:
Wouldn't it be easier to post the highscore file already edited and instruct people to push the file?
Sent from my Nexus One using XDA App
Click to expand...
Click to collapse
+1
Nice tips
http://rapidshare.com/files/439845210/highscores.lua
3 Stars in Angry Birds Season Advent Calendar, no Halloween :/
If you're rooted, look up Angry Cheaters in the Market.
samir5421 said:
7. Open the highscores.lua file using notepad/TextEdit/gedit only.
Click to expand...
Click to collapse
that only gives me garbage and not a readable format. Any ideas please? Thanks
droid_malta said:
that only gives me garbage and not a readable format. Any ideas please? Thanks
Click to expand...
Click to collapse
its in the unix format, use notepad++ instead of notepad. (wordpad works, but it saves the file with DOS line terminators...bad)
samir5421 said:
After a long time of trying to get three stars on all levels of Angry Birds, I had given up. I tried to find an easy way to get three stars on the levels, but when I googled it, the only results were videos showing how to get three stars. Even after watching the videos I could not get a few. So, I decided to open root explorer and find where Angry Birds keeps track of the high scores. After about ten minutes, I was able to edit the highscores.lua (the Angry Birds high scores file) and get three stars on all of the levels and unlock the golden eggs!
This is a tutorial of how I did it. You should not continue unless you have beaten all levels. You should not do this if you have not tried to get three stars. Also, this tutorial requires a minimal knowledge of adb and the terminal. YOU MUST HAVE ADB SET UP.
1. first connect your phone to your computer and open terminal/cmd (command prompt)
2. cd to your desktop
Code:
cd Desktop
3. Now you are going to pull the highscores.lua file.
Code:
adb pull /data/data/com.rovio.angrybirds/files/highscores.lua
4. You should now have a file called highscores.lua on your desktop.
5. Rename this file to highscores_backup.lua
6. Pull the highscores.lua file again.
Code:
adb pull /data/data/com.rovio.angrybirds/files/highscores.lua
7. Open the highscores.lua file using notepad/TextEdit/gedit only.
8. Open Angry Birds and go to a level that you do not have three stars on.
9. Remember the high score you got on that level.
10. In notepad/TextEdit/gedit use control+f (command+f on mac) to find the high score for the level that you cannot get three stars on.
For example, on level 2-8, I have 2 stars. It should look something like this:
Code:
Level21 = {
completed = true,
birds = 3,
score = 48840,
lowScore = 45490,
}
This block of code represents one level. "Level21" corresponds to 2-8. "completed" can be true or false. Edit this to say if a level has been completed. "birds" is the number of birds you used to complete the level. "score" is your high score for that level. "lowScore" is your low score for that level. In order to change the number of stars, you need to change birds and score. Birds should always be greater than 0 and lowScore should always be less than or equal to score. In this case, I would make birds 2 and score 58840. Make sure that the number of birds corresponds to that level.
11. After editing the file, push it back to your phone.
Code:
adb push highscores.lua /data/data/com.rovio.angrybirds/files/
Remember that when you push/pull a file it is overwritten.
Also, use the up arrow to cycle through recently used commands in the terminal.
12. Close and kill Angry Birds using a task killer or the built in CM task killer. This will make the game recheck the file.
Repeat steps 6 - 12 until you have 3 stars in all levels.
This also works with Angry Birds Seasons. Just replace com.rovio.angrybirds in your commands with com.rovio.angrybirdsseasons.
Be sure to share this tutorial with others who cannot get three stars on a level and remember to thank if this helped you!
Click to expand...
Click to collapse
Ok, I've got a challenge for you guys... I did a search on my computer for the ".lua" files and i was reading through some of them and noticed something that said "Redbird_3" so I'm thinking if you can change the scores in the game, you can probably basically change anything if you can find the right file to modify. Lets say you want to change all the birds in a certain level. Like for example level 1-1 it starts out as all red birds, well if you knew what the "Bomb Bird" is called in the .lua files, then you could delete the text of the redbird and type in whatever the bombbird is and then you would have all bombbirds in any level you want, or whatever birds in whatever level you want! And I've also noticed things like items called bricks and blocks, and smallpiglette, you could probably put a big pig where a small pig would be and vice versa or put a pig where a block should be? ....lol And then go into the level and see if it works and all kinds of weird stuff might happen, like the structures might start falling right when you go into the level.... Sounds like lots of possibilities here!!
with last update for angry birds "mine and dine",
highscores.lua cannot be edited !
Any luck with 1.6.3?
Hi,
I take the highscores.lua hack does not work any more.. If anyone has any info on how to get 3 stars on 1.6.3, (other than playing for it of course), it would be MUCH, MUCH appreciated. I personally don't have any interest in getting all 3 stars to see a few more golden egg levels, but my son unfortunately seems to, and I'd very much like to stop him from playing just to get all 3 stars.
it seems all the known hacks on either android or chrome got blocked. Is there anything working with apps on macbooks?? I don't have ipad or iphones..
Does anyone have a complete list of all of the level names, including the Golden Eggs? I would appreciate it. Enclosed is a file with the level numbers on them. TIA
Damn. I'm switching to Android as soon as my device arrives and have been looking all over for a way to "copy" my save data from iOS to Android. This seemed like my best option until I got to page 2.

Angry Birds

I have just gotten my girlfriend's G2X today... rooted it immediately, installed Titanium Backup, and tried to restore my Angry Birds backups (from G2) to her new G2X. This failed -- apps wouldn't open.
After some trouble, I was finally able to get the apps to install from the Market, but attempts to restore my data backups crash the apps.
She really likes Angry Birds, and has been playing it a lot on my phone, so I'd really like to restore it to her phone...
Has anyone else run into a similar problem? If so, did you find a fix? Does Angry Birds write to a partition that isn't available on the G2X? I'm a bit lost as to what the issue may be.
No other problems have been noted thus far. The N64 emulator runs great on the G2X... I was having some fun with GoldenEye 007!
No idea. I was able to successfully backup my Angry Birds levels via Titanium from my Nexus One and restore them to my Nook Color.
Maybe you could try drilling down to the individual files. Using Root Explorer I see that we have /data/data/com.rovio.angrybirds/files. All the info about the levels you completed is in highscores.lua. There is additional information in settings.lua which appears to include Golden Eggs and other stuff.
It's conceivably possible that your crashes are coming from the file stored in /data/data/com.rovio.angrybirds/lib which may be device-specific. E.g. if you install Angry Birds on a dual-core device versus single-core, it loads up different hardware-related libraries.
So yeah, try copying the .lua files from your saved games to a safe place, and then reinstall AB from scratch. Play a level, make sure it works, then replace the .lua files with your backups.
Buy an app from the market that backs up the file or do it the free way and use adb to pull the file from data data angry birds somewhere.look around.google it tells you which file is the back up
Sent from my Smoku's HTC Vision using XDA Premium App
Check the permissions using root explorer.
Remanifest said:
I have just gotten my girlfriend's G2X today... rooted it immediately, installed Titanium Backup, and tried to restore my Angry Birds backups (from G2) to her new G2X. This failed -- apps wouldn't open.
After some trouble, I was finally able to get the apps to install from the Market, but attempts to restore my data backups crash the apps.
She really likes Angry Birds, and has been playing it a lot on my phone, so I'd really like to restore it to her phone...
Has anyone else run into a similar problem? If so, did you find a fix? Does Angry Birds write to a partition that isn't available on the G2X? I'm a bit lost as to what the issue may be.
No other problems have been noted thus far. The N64 emulator runs great on the G2X... I was having some fun with GoldenEye 007!
Click to expand...
Click to collapse
dont tell her you did this, but this will make her happy.
download angry cheaters, you can set the the high scores and level completion for Angry Birds and Angry Birds Seasons. Go through and match all her scores from the G2.
Problem solved.
elpeterson said:
dont tell her you did this, but this will make her happy.
download angry cheaters, you can set the the high scores and level completion for Angry Birds and Angry Birds Seasons. Go through and match all her scores from the G2.
Problem solved.
Click to expand...
Click to collapse
I like the way you think.
I tried restoring my homering battle 3d data and same thing, crashed the app. /cry
Sent from my G2X using Xda Premium
WorldWide60 said:
I like the way you think.
Click to expand...
Click to collapse
my girlfriend loves it too and was devastated when i wiped my phone and she lost all of it. so now i do this when i forget to back up. everytime a new season comes out i use it to unlock all the levels so if she gets stuck on one, she can play the rest.
Bronk93 said:
I tried restoring my homering battle 3d data and same thing, crashed the app. /cry
Sent from my G2X using Xda Premium
Click to expand...
Click to collapse
this is possible. but it requires the data the game is possible. ive accidentally wiped my phone SO many times that make-shift app backups have become a specialty.
find the folder (can't rememver which it is) stored on internal/external memory on the original device. Remember when you had to go through that download at the beginning of the app? copy that to the same place of your new device, and load the game. its not perfect and it hasnt always worked for me, but there are other times where ive gotten ALL my golden balls, but no items, or vice versa.
its worth a shot.
Is anyone else unable to install any version of angry birds without their phone rebooting?
EDIT: I found out that my problem was when installing them from titanium backups from my N1
Sent from my LG-P999 using XDA App
Not sure where these problems are coming from; I used TB to backup my apps from the Eris, and all of them including angry birds ported over just fine, including the save data.
cbowens said:
Not sure where these problems are coming from; I used TB to backup my apps from the Eris, and all of them including angry birds ported over just fine, including the save data.
Click to expand...
Click to collapse
I had my apps installed on my sdcard from my nexus one so when I restored them they went to the external card that the g2x isn't able to store Apps on. I was able to delete the files and only then install them.
Sent from my LG-P999 using XDA App
For some reason my apps and data from my G2 would not restore on my G2X. I used titanium and mybackup on the G2 to create backups. But my G2X would not read the backup files. Probably incompatibility issue?
Sent from my LG-P999 using XDA Premium App
tr82691 said:
For some reason my apps and data from my G2 would not restore on my G2X. I used titanium and mybackup on the G2 to create backups. But my G2X would not read the backup files. Probably incompatibility issue?
Sent from my LG-P999 using XDA Premium App
Click to expand...
Click to collapse
Use a file explorer or mount over USB to copy your backup folder/files from external SD to internal SD and try restoring again.. that's what I had to do to get mine working.
Sent from my rooted G2X using xda premium app!!
Bronk93 said:
I tried restoring my homering battle 3d data and same thing, crashed the app. /cry
Sent from my G2X using Xda Premium
Click to expand...
Click to collapse
This is what pissed me off. I haven't been able to get it to restore properly. I've tried taking the individual files, and haven't had any success. I could flash three times a day with my mt4g, and never lose anything. I was ranked around 900 something the last I checked.
I spent about a day and a half trying to restore the Angry Birds and Angry Birds Seasons data from the Titanium BackUps off my Nexus One. I gave up.
I went back to my Nexus One and used MyBackup Pro to back everything up and, after getting the same results as when I used Titanium for a couple hours, it finally worked. The problem is, I have no clue what I did different or why it finally worked.
There seems to be some magic number or some magic combination of downloading the app, opening the app, restoring the data and restarting the phone. I do know that I could not use any of the backed up APKs from MyBackup Pro or the phone crash/rebooted. I had to download the app from the market and then only restore the data from MyBackup pro...and again, it didn't work the first time. Lots of uninstalling the data and app and starting from scratch. Download. Restore. Reboot. Rinse. Repeat.
So it is possible...but I'm sorry I don't know exactly how.
I previously had a vibrant and I got mine back no problem. I installed each version fresh from the market/amazon app store then used titanium to restore 'data only'. Worked like a champ on all 3 versions.
restore of Angry Birds
I had the same issue - so I did the following
1) Install Angry birds from market
2) Install Angry Birds Rio from Market
3) Install Angry birds Seasons from Market
4) Launch each game and complete the first level
5) For Seasons, complete the first level in each season
6) launch Titanium and do a restore of just user data not the application
This prserved all my golden egss and settings - good luck
Solution
Here is a solution to restore high scores to a fresh install of Angry Birds. Unzip your Angry Birds backup from TitaniumBackup/com.rovio.angrybirds-xxxxxxxx-xxxxxx.tar
You need two files in this archive, settings.lua and highscores.lua. They are located in /data/data/com.rovio.angrybirds/files/
Put those file on your phone in the same directory, /data/data/com.rovio.angrybirds/files/
You can do this using root explorer to copy/paste the files there, or simply by using adb to push the files using the commands:
adb push settings.lua /data/data/com.rovio.angrybirds/files/
adb push highscores.lua /data/data/com.rovio.angrybirds/files/
The above commands assume that you have adb in your path and are in the current directory containing your .lua backup files.
If you have not yet played Angry Birds on your new phone this method will result in a permission denied error. Simply play one level of angry birds and repeat the above solution.

[Q] Application sync across devices

So I believe this is the right place to post this.
I'm looking for an app that can save/sync games across devices. I lost my one phone and I had purchased some credits to support the game and when I lost is I lost all of the credits and I am playing a long RPG but there are times when I wish I could play it on my tablet instead of on my phone, but i dont want to play through it twice at the same time.
Does anyone know if there is an app that will allow me to back up and sync my application information across devices using something like drop box?
Titanium Backup does exactly that.
how does one do that, I'm trying to get a copy of spectral souls from my transformer over to my nexus S 4g, so i can be slightly more mobile and play?
I'm sure there is a more elegant way, but what I did to transfer my Battleheart save game to the phone was copy the TB properties and tar files for Battleheart from my Tab to my phone, then rename them so the filenames matched the phone app data filenames and replaced the phone's ones with them. I did this because both devices are currently in use, obviously between new devices you can just use TB like normal to restore the apps+data. Wouldn't be something I'd like to do a lot, I'm sure there must be a more elegant solution (probably TB does it natively and I just didn't see it...).

[GUIDE] Game Save Data Backup ressource

Seems like noone compiled a guide to manually backup game save.
------------------------------------
Altough apps are coming:
Game On Backup and share 60 game saves
GameSaver Backup 3 games
AngryBirdsBackup Backup 3 angry birds in the cloud
SaveShare - game save sync Amazing easy backup trough personnal DropBox on multiple personnal devices
------------------------------------
Abduction 2 : {Root}data/data/au.com.phil.abduction2/databases/abduction2 + abduction2-journal
Angry birds : {Root}data/data/com.rovio.angrybirds/files/highscores.lua and /settings.lua (must be RW without Execute right)
Angry Birds Seasons : {Root}data/data/com.rovio.angrybirdsseasons/files/highscores.lua and /settings.lua
Zeptolab Cut The Rope (All) : sdcard/ZeptoLab/Cut the Rope/ctr.zsf (internal support! )
Zeptolab Cut The Rope Experiments (All) : sdcard/ZeptoLab/Cut the Rope/ctre.zsf (internal support! )
Zeptolab Cut The Rope Time Travel (All) : sdcard/ZeptoLab/Cut the Rope - Time Travel/ctr-timetravel.zsf (internal support! )
Dead Space : {Root}data/data/com.eamobile.deadspace/files/var/ (full directory)
Drag racing : {Root}data/data/com.creativemobile.DragRacing/files/ save152.dat and save15.dat, and not just save.dat
Modern Combat 3 : Fallen Nation (Market) : sdcard/Android/data/com.gameloft.android.ANMP.GloftM3HM/files/SaveGame.bin and CheckPoint.bin
Modern Combat 3 : Fallen Nation (Samsung SG3) : sdcard/Android/data/com.gameloft.android.GAND.GloftM3SS/files/SaveGame.bin and CheckPoint.bin
Plants vs zombis (Amazon) : {Root}data/data/com.popcap.pvz/files/userdata/ (full directory can include multiple players)
Plants vs zombis (Market) : sdcard/data/com.popcap.pvz_row/files/userdata/ (full directory can include multiple players)
Zeptolab Pudding Monsters : sdcard/ZeptoLab/Pudding Monsters/pm.zsf (internal support! )
Where's my perry : {Root}data/data/com.disney.WMP/files/data/perry.db
Where's my water : {Root}data/data/com.disney.WMW/files/data/water.db
World of Goo : {Root}data/data/com.twodboy.worldofgoofull/files/pers2.dat
------------------------------------
Android system include now a Settings / Privacy / Backup + Auto restore that can save in cloud for compatible apps (I suspect Cut the rope to work), check both options
Dead Space Private savefile
I've been looking for a thread like this for days. This is the only way to backup games if the phone isn't rooted. Is it possible to actually list every file instead of just saying the entire directory? Or are there too many files. Because to copy the file without root, you must know the exact file name.
Here's the ones I've gotten so far
Tested
Abduction 2
/data/data/au.com.phil.abduction2/databases/abduction2
/data/data/au.com.phil.abduction2/databases/abduction2-journal
Angry Birds Seasons
/data/data/com.rovio.angrybirdsseasons/files/highscores.lua
/data/data/com.rovio.angrybirdsseasons/files/settings.lua
World of Goo Demo
/data/data/com.twodboy.worldofgoodemo/files/pers2.dat
World of Goo Full
/data/data/com.twodboy.worldofgoofull/files/pers2.dat
Not Tested
Abduction
/data/data/au.com.phil.abduction/databases/data
Clouds & Sheep
/data/data/com.hg.cloudsandsheepfree/files/pasture0.save
Destinia
/data/data/game.destiniaeng/files/msave.dat
/data/data/game.destiniaeng/files/save1.dat
Drag Racing
/data/data/com.creativemobile.DragRacing/save.dat
Link It Pro
/data/data/com.boolbalabs.linkit.pro/shared_prefs/LinkItTag.xml
Sentinel
/data/data/com.Origin8.Sentinel3/app.OEAppSaveData/0_PERSISTENT_DATA.dat
/data/data/com.Origin8.Sentinel3/app.OEAppSaveData/0_PERSISTENT_DATA_CS.dat
Slice It
/data/data/com.com2us.sliceit/game_info.dat
/data/data/com.com2us.sliceit/game_info_2.dat
/data/data/com.com2us.sliceit/game_info_3.dat
Requests
I've been trying to track these down all over the place, but it's really hard without a rooted phone. If someone could take a look, I would be very grateful.
Free Games
Cartoon Wars: Gunner
HeavenHell
BIA2 Free+ HD
Paid Games
9mmHD
Asphalt 6*
Backstab HD*
Block Breaker 3
Captain America: Sentinal of Liberty
GT Racing*
Jenga
Let's Golf 3*
Modern Combat 3*
Modern Combat 2
N.O.V.A. 2 HD
Tintin HD
Uno
* = I found some files on the SD card, so maybe that's it. But I would still appreciate if someone checked /data/data files for me
Another app that deserves recognition for this stuff is SaveShare.
Finally updated this guide with your infos + the where's my water/perry serie heavily tested by me
Strangeley i can't find where are MC3 files ??? but that excellent saveshare tool can backup it
do you know where the save file is located for mass effect infiltrator?
thfreedumb said:
do you know where the save file is located for mass effect infiltrator?
Click to expand...
Click to collapse
Not exactly, i know for sure it's somewhere near the dead space one, because you can backup it with Titanium. Based of this knowledge and dates on my phone i would say :
data/data/com.ea.games.meinfiltrator_row/files/var/settings.db
ninjaw said:
Not exactly, i know for sure it's somewhere near the dead space one, because you can backup it with Titanium. Based of this knowledge and dates on my phone i would say :
data/data/com.ea.games.meinfiltrator_row/files/var/settings.db
Click to expand...
Click to collapse
In order to do it I would need to root my phone and the tablet I would like the game to transfer to? Or can I do it without root? I tried to find that director but there is nothing under the 'files' folder on my phone. except for something called game skeleton.
Finally updated with MC3 infos, but that do not work between samsung version and market version ...
I can confirm that destinia doesn't work. ****.
Any knows where are saves for Drag Racing? I want to copy those files. Root is not a problem.
Files are saved into "/data/data/com.creativemobile.DragRacing/files"
Note that on latest version of DragRacing we have save152.dat and save15.dat, and not just save.dat
Hacked latest app for RP and cash. Here, this might help:
http://forum.xda-developers.com/showthread.php?t=2020815&highlight=dragrace
Added guide for Pudding Monsters, this excellent free game got a direct internal backup support via sdcard !
Pretty handy post has helped, I hate keep running out of space on my n7
I dont have Root and am on ICS.
Soon getting official JB and most apps mentioned dont work on JB.
Now i just want to Save one game: Asphalt 7.
Can you guys help me how can i do the same ? Maybe manually copying from save location somewhere on my phone... ?
olivespin said:
I dont have Root and am on ICS.
Soon getting official JB and most apps mentioned dont work on JB.
Now i just want to Save one game: Asphalt 7.
Can you guys help me how can i do the same ? Maybe manually copying from save location somewhere on my phone... ?
Click to expand...
Click to collapse
What ??? JB is a minor update and ALL these games are (of course) working on it.
Asphalt 7 require root. But why would you backup manually when the game can backup itself on a facebook account or a gameloft account ?
ninjaw said:
What ??? JB is a minor update and ALL these games are (of course) working on it.
Asphalt 7 require root. But why would you backup manually when the game can backup itself on a facebook account or a gameloft account ?
Click to expand...
Click to collapse
Well i have created gameloft account and its showing trophies that i have unlocked in the game...
Now, is the game automatically saved on gameloft servers OR i have to upload save OR do some procedure ? -- How to confirm
olivespin said:
Well i have created gameloft account and its showing trophies that i have unlocked in the game...
Now, is the game automatically saved on gameloft servers OR i have to upload save OR do some procedure ? -- How to confirm
Click to expand...
Click to collapse
I know it works, i did it myself on my tab, process can be tricky, but i was abble to check on both device on the same time, i can't even remember what account i used as i tried both accounts to be sure
cidel alecredl
Can you do it for "Undead Slayer"?
Many thanks.
Hi to everyone. I have a suspect. Maybe, for both the "cut the rope" games, there's a new simple way to backup the save data game. Just like "pudding monsters", there's two files located in
sdcard/ZeptoLab/Cut the Rope
Maybe we could simply copy and restore them .
If someone try, it could be a great news for game lover like us
Victory!!! I've just tried between my paid version of "Cut The Rope" and a free versione of the game. It perfectly works. Simply, before copying the file to the new device, clear data of "Cut The Rope". When you start the game, it will ask you if you want to restore the game save data
finito02 said:
Hi to everyone. I have a suspect. Maybe, for both the "cut the rope" games, there's a new simple way to backup the save data game. Just like "pudding monsters", there's two files located in
sdcard/ZeptoLab/Cut the Rope
Maybe we could simply copy and restore them .
If someone try, it could be a great news for game lover like us
Victory!!! I've just tried between my paid version of "Cut The Rope" and a free versione of the game. It perfectly works. Simply, before copying the file to the new device, clear data of "Cut The Rope". When you start the game, it will ask you if you want to restore the game save data
Click to expand...
Click to collapse
Yeah I knew that, and i fogot to add it, strangely, only CutTheRope2 isn't doing it
Does anyone know where the CastleTD save file is located?

[Q] Titanium Backup to Different Device

Like the title says.
Is it possible?
Say I'm playing Angry birds or some other game. I back it up with TB, and then I move the backed up files to another android phone or tablet perhaps, can I restore it / will it work?
Most likely, and i'd place it on a case-by-case (or app-by-app) basis. One way to find out, and obviously you'd have to be rooted (and thus have proper backup procedures in place if something were to go wrong).
cabstrak said:
Like the title says.
Is it possible?
Say I'm playing Angry birds or some other game. I back it up with TB, and then I move the backed up files to another android phone or tablet perhaps, can I restore it / will it work?
Click to expand...
Click to collapse
Its worked for me...
I went from Hero to Nexus S 4G and it all followed through well....games and its levels, etc.
But like the other dude said.. its no a case to case basis.

Categories

Resources