[TUTORIAL] 3 Stars on Angry Birds (Hack) - Nexus One Themes and Apps

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.

Related

Drag Racing Game Save

Could anyone please share there save.dat file for this game please? After changing rom I forgot to back it up and now having to start again.
Anything around class 6 will do, or just anything at all really.
Thanks.
Sent from my HTC Desire using XDA Premium App
Here is the link to the save.dat http://www.box.net/shared/2dzncp4xcb
I should contain the Koenigsegg Agera R maxed out on level 8 (Dont upgrade it because it will become level 9 and useless in online racing) a nice little money and RP maker.
And the Bugatti Veyron 16.4 Super Sport almost maxed out on level 10, it needs 2 tire upgrades until max upgrade.
Both cars are not tuned jet. So if you have lost your save.dat you wont have to start all over again.
If you like this post, you can thank me by clicking the thanks button
...
Please, send it to : [email protected] too. Thanks in advance.
so where is the same game data file for this game on the sd/ internal?
You need to root you phone first to acces the file. Its located in you phone memory under data/data/ look for the dragracing folder. Its in one of the map.
Sent from my E15i using XDA App
can you send it to me too please ?
[email protected] thanks.
SamsoniteNL said:
You need to root you phone first to acces the file. Its located in you phone memory under data/data/ look for the dragracing folder. Its in one of the map.
Sent from my E15i using XDA App
Click to expand...
Click to collapse
once you find it... what do you do with it!? I would hate to loose my game!!!
Save your own save.dat to your pc before replacing it. I use Super Manager to copy my save.dat to my sd and from my sd I copy it to my pc when I hook my x8 up to my pc. Then your original file is saved and in case the new file doesnt work you can restore the old save.dat. Maybe there is an easier way to do this? If so pls post it here.
Sent from my E15i using XDA App
Level 7 Bugatti
Anyone interested in a class 10 save.dat . The koenigsegg agera and de bugatti super sport both max in their class (8 and 10)
Sent from my E15i using XDA App
Can you guys post whatever you have up?
I will post a link to my latest save.dat later this sunday.
Sent from my E15i using XDA App
SamsoniteNL said:
I will post a link to my latest save.dat later this sunday.
Sent from my E15i using XDA App
Click to expand...
Click to collapse
i'm waiting...
Here is the link to the save.dat http://www.box.net/shared/2dzncp4xcb
I should contain the Koenigsegg Agera R maxed out on level 8 (Dont upgrade it because it will become level 9 and useless in online racing) a nice little money and RP maker.
And the Bugatti Veyron 16.4 Super Sport almost maxed out on level 10, it needs 2 tire upgrades until max upgrade.
Both cars are not tuned jet. So if you have lost your save.dat you wont have to start all over again.
If you like this post, you can thank me by clicking the thanks button
SamsoniteNL said:
Here is the link to the save.dat http://www.box.net/shared/2dzncp4xcb
I should contain the Koenigsegg Agera R maxed out on level 8 (Dont upgrade it because it will become level 9 and useless in online racing) a nice little money and RP maker.
And the Bugatti Veyron 16.4 Super Sport almost maxed out on level 10, it needs 2 tire upgrades until max upgrade.
Both cars are not tuned jet. So if you have lost your save.dat you wont have to start all over again.
If you like this post, you can thank me by clicking the thanks button
Click to expand...
Click to collapse
any intresting update`s you have made since then ?
Hey i have a n00b question. I have downloaded your save.dat and over wrote my original save file and set the permissions to the same as my original and also have tried leaving permissions same as i dowloaded them.
It does not change my cars, or amount of money, everything stays the same as i had left it.
germz1986 said:
Hey i have a n00b question. I have downloaded your save.dat and over wrote my original save file and set the permissions to the same as my original and also have tried leaving permissions same as i dowloaded them.
It does not change my cars, or amount of money, everything stays the same as i had left it.
Click to expand...
Click to collapse
Have you either killed the application or rebooted?
I have killed the app before i replaced the file, i will try to reboot, replace file, and reboot again.
Edit, Rebooting worked, TY crawler9
For those who want to, you can use the app 'GameCIH2' from the market (free) and set your money/respect. It's just like cheat engine except for your rooted phone, but the creator says it may not work on every phone, but I got it to work on my Optimus S.
From a site on how to use the app:
]Money hack:
1.) Start GameCIH2, select your hotkey (I recommend Focus or search), then hit home
2.) Start Drag Racing app, go to your garage
3.) Hit your hotkey, select input number, enter your exact cash ammount, hit search
4.) You should get 2 results, both being the same as your cash amount
5.) Edit to what ever you want (recommend 100,000,000 for most) for both results, also hit the locks next to the amount to freeze it
6.) If the game freezes and quits, its fine, it should save your cash.amount
7.) Done!
Respect amount hack
1.) Do the same as money hack, only search the number equal to your respect point amount
2.) The amount being so low..hit your back button, and run a race to get some respect
3.) Hit input number again, add your new amount, then freeze it
Done
I'm new so I can't post a screen shot of mine.
cfallsfbody said:
For those who want to, you can use the app 'GameCIH2' from the market (free) and set your money/respect. It's just like cheat engine except for your rooted phone, but the creator says it may not work on every phone, but I got it to work on my Optimus S.
Click to expand...
Click to collapse
If the app does not work, it can be done with any half-decent hex editor:
write down your money/respect amounts, convert the numbers to hex-base, open save.dat in hex editor, find respective hex string and enter new higher values, then save, restart game and done

[SOLVED] Backing up and recovering Angry Birds with ADB the easy way

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

[GAME] Cheat "Crime Story" (Cooper Media Corp)

Hi there,
here's a little trick how to speed up your game of "crime story" by easily increasing/restoring your energy and reducing the "cop-level".
***Be advised: If you lose your stats or damage your game, I will not take resposibility. Tampering the files happens at your own risk!***
1. Make sure your phone is rooted.
2. Use Root-Explorer (or the likes) to find the folder
[data/]data/com.gameinsight.crimestory/files
3. open the file "boost.prefs" with the editor and enter 40000. (This number tells the game, how long you left the game "untouched"). [If you use Root-Explorer delet the automatically generated file "boost.prefs.bak" before you restart the game]
4. Restart the game and your energy-level will be filled up again. Also, the cop-level should be 0 again (if you want to avoid the cop showing up, edit "boost.prefs" before you reach level 50!)
Whenever your Energy-Level is low or the Cop-Level too high, just leave the game, edit "boost.prefs" to 40000 and continue!!! Have fun;-)
Kolle aka DEFYDepp
BTW: in the same folder there's the file "playerStates.amf" with your status, cash and coins (called "FBmoney"), experience etc., however, whenever I edited the numbers, the game would start all over again from the beginning (course I backed this file up, so I could continue from where i was, no damage was done). Just said that in case anyone smarter than me is interested trying to get that working;-)
PS: Sorry, guess i ended up in the wrong thread. @Mods: it'd be great if you moved me to "Android Apps and Games" THANX!
Trick is not working anymore.
lol it says Go away cheaters!!!!

[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?

[APP][WINDOWS] Final Fantasy Dimensions Save Editor

EDIT:
I have discontinued work on this project, partially due to free time/Square Enix and their insistence on blocking the use of xposed framework. I can't be bothered to deal with having to turn off xposed and reboot every time I want play/test out the changes made with the editor. Other things in RL have also taken most of my time, so I am releasing Source Code in this post for anyone who wants to take a crack at it.
This editor was made using Visual Basic 2010
This is my first time coding my own program. It is written with Visual Basic 2010, I might switch over to C# once I learn more about it.
This requires a rooted device to work. I have an idea on how to make it work on non-rooted devices, but I do not have any that are non-rooted to test on. If you do not have root and want to test, send me a pm so I can see if we can work it out.
Let me know if you would be interested to test newer versions. I have 3 testers now, and am looking for up to 3 more.
I was inspired by the Final Fantasy III Save Editor:
http://forum.xda-developers.com/showthread.php?t=1763729
And also by the port Kameo did of Thundaga - Final Fantasy III Save Editor:
http://forum.xda-developers.com/showthread.php?t=2176595
This save editor is for Final Fantasy Dimensions for the Android OS. It may also work on the iOS version as well. I have not tested it, so I am not totally sure.
This program is in beta, and may contain some bugs. Please make sure to backup your save file before using. I am planning on implementing an auto backup when you save the file, however I have not gotten to that yet. Hopefully it will be ready for the next release.
I revamped the whole thing. Added a bunch of stuff. Still have not done the save backup, but it is still planned for in a future update.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Note: This version has a lot of improvements, but the code is very sloppy. It should work, but on my computer there is a noticeable load time. After it is loaded though, it runs fine, even switching between save slots. I am looking into learning C#, and I have a friend who is willing to help me find ways to speed it up. Hopefully the next release will run much smoother.
Current Version:
2.00 (editor says 1.0.7, forgot to change it) (beta) - 09/14/2013
Things that can currently be edited
Names of main characters(up to 6 characters(English or regular characters only. Chinese/Japanese do not write correctly, and if you use the editor there is a chance it will mess it up))
EXP
Job
Job Level
Max Job Level
AP
JP
Gil
Max Spells (This gives you all White Magic, Black Magic, and Summon spells. Must have ability to use higher level spells)
All Abilities/All F-Abilities button (Includes debug abilities)
Equipment
Edit any save slot
Still need to implement:
Backup of original save
Inventory
Changing party members (mixing Light and Darkness, or adding temporary characters back in)
Old Versions:
1.00 (beta) - Initial Release
Things that can currently be edited
Names of main characters(up to 6 characters)
EXP
Job
Job Level
Max Job Level
AP
JP
Gil
Max Spells (This gives you all White Magic, Black Magic, and Summon spells. Must have ability to use higher level spells)
Still need to implement:
Backup of original save
Equipment
Inventory
Abilities (Including debug abilities)
Ninja Spells, Holy Blade Skills and Dark Blade Skills (I think, have not looked for the offsets yet, but should be possible)
Changing party members (mixing Light and Darkness, or adding temporary characters back in)
Editing other save slots (currently only slot 1)
Anything else that I can find/forgot, or things people suggest.
Instructions to follow in the second post.
If anyone wants to Donate at all, paypal email is [email protected]
Here is the source, I had to upload it to Dev-Host as xda kept timing out.
http://d-h.st/Wg0
######################################
TRANSFERRING SAVE FILE FROM DEVICE
######################################
You will need a Rooted Device for this (I am looking into being able to edit saves made from Carbon, but I need a non-rooted
device for testing.) I recommend using either Root Explorer (paid app) or Root Browser Lite (free app) from the Google Play
store for finding the save file, and replacing it. Either transfer the file to your SD card to transfer via USB cable,
or transfer to SD and upload to Dropbox/Box/Other Cloud Service.
The save file should be located at:
/data/data/ com.square_enix.android_googleplay.ffl_gp/files/save.bin
It has also been reported to be at:
data/user/0/ com.square_enix.android_googleplay.ffl_gp/files/save.bin
#################
USING THE EDITOR
#################
1. Backup current save beforehand, I have not coded in the backup script yet.
2. Choose the Open button.
3. Make whatever changes you want.
4. If you go above an allowed number (i.e. 20 for Max Job Level) it will change it to Max allowed by game.
5. Hit save.
########################################
TRANSFERRING SAVE FILE BACK TO DEVICE
########################################
Copy the file back to your SD card, and move it back to the folder you found it. Make sure permissions of the file
are set to either rw rw r or rw rw rw (the one I always use).
Changelog:
9/13/13 - 2 (editor says 1.0.7)
Fixed bugs I had here and there. I stopped working on this for awhile, as I kept having issues with Diana and Alba. Finally figured it out.
Added ability to modify any of the save slots, instead of just 1.
Added Equipment editing (this really slows down the original save file load, but once loaded it works fine)
Added F-Abilities/Abilities/Spells checkbox to max them out.
New design with current party and separated parties.
4/14/13 - 1.01
Fixed bug with Nacht's last 3 jobs.
Took out bad code for detecting if Job Level is higher than Max Job Level. Just make sure to keep it under the Max one for now until I can fix it.
Testing out Equipment editing and Maxing out Abilities/Skills. Should be ready for next release.
4/10/13 - 1.00 Initial Release
After editing and pasting the files back to /data/data/com.square_enix.android_googleplay.FFIII_GP/files/save.bin
I start the game and get an white screen. Did i do something wrong?
That would be my fault. I copied and posted the directions from the final fantasy iii editor. It should go to
com.square_enix.android_googleplay.ffl_gp folder, not ffIII
Also make sure that you have fully exited out of the game before moving the save file over. Either use a task manager to close it, or go to the app manager and choose force stop. If the game is still running it can cause problems.
Sent from my Verizon Galaxy Note 2 using Xparent Skyblue Tapatalk 2
I probably gonna try it out again and starting a new game then save it. Then drag the save file out then use your program to edit the gil and test it out.
---------- Post added at 06:31 AM ---------- Previous post was at 05:53 AM ----------
Woot! I finally got it to work. I'm happy because put my time in the game and lost everything when my phone froze at boot up screen. I had to use Odin to go back to stock and re-root and took some time.
For people who are new to this. This is how I did it.
1. I'd started a new game because I had to start over. Then, saved my game.
2. Task manager and scrolled down to FFD and force stop the game.
3. Installed "root browser" so i get get access to FFD save file. Open root browser clicked on /data/data/com.square_enix.android_googleplay.ffl_gp/files
4. Copy "save.bin" from that folder and place in your extSD or sdcard.
5. Open "Final Fantasy Dimensions Save Editor" and Open the copy of save.bin. Example change Gil from 300 to 999999 then save afterward.
6. Get access to root browser clicked on /data/data/com.square_enix.android_googleplay.ffl_gp/files. Delete the save.bin in folder.
7. Move the edit save.bin file to /data/data/com.square_enix.android_googleplay.ffl_gp/files.
Start game and you should be ready to go. All thanks to KeylanHalfdan for letting us use his program. Rep ++
mrleonx said:
I probably gonna try it out again and starting a new game then save it. Then drag the save file out then use your program to edit the gil and test it out.
---------- Post added at 06:31 AM ---------- Previous post was at 05:53 AM ----------
Woot! I finally got it to work. I'm happy because put my time in the game and lost everything when my phone froze at boot up screen. I had to use Odin to go back to stock and re-root and took some time.
For people who are new to this. This is how I did it.
1. I'd started a new game because I had to start over. Then, saved my game.
2. Task manager and scrolled down to FFD and force stop the game.
3. Installed "root browser" so i get get access to FFD save file. Open root browser clicked on /data/data/com.square_enix.android_googleplay.ffl_gp/files
4. Copy "save.bin" from that folder and place in your extSD or sdcard.
5. Open "Final Fantasy Dimensions Save Editor" and Open the copy of save.bin. Example change Gil from 300 to 999999 then save afterward.
6. Get access to root browser clicked on /data/data/com.square_enix.android_googleplay.ffl_gp/files. Delete the save.bin in folder.
7. Move the edit save.bin file to /data/data/com.square_enix.android_googleplay.ffl_gp/files.
Start game and you should be ready to go. All thanks to KeylanHalfdan for letting us use his program. Rep ++
Click to expand...
Click to collapse
Good to hear that you got it working.
By the way, found a bug in the editor for Nacht when editing his AP for his last 3 jobs I had the offsets wrong. It it fixed in my latest test, so it will be fixed in the next release.
I'm having a problem with a certain save file. If I open it and immediately resave it without changing anything, my characters' job levels are raised to the max JVL.
The strange thing is that I did not have this problem with some previous save files I tried. Two different conditions come to mind: This save file is of the light side characters, while the previous one was of the dark side, and now I have a 5th character, while I think I didn't have one before.
I'm adding the problematic save file in case someone wants to test it.
By the way, could you share how the checksum algorithm works?
Hanrfuuq said:
I'm having a problem with a certain save file. If I open it and immediately resave it without changing anything, my characters' job levels are raised to the max JVL.
The strange thing is that I did not have this problem with some previous save files I tried. Two different conditions come to mind: This save file is of the light side characters, while the previous one was of the dark side, and now I have a 5th character, while I think I didn't have one before.
I'm adding the problematic save file in case someone wants to test it.
By the way, could you share how the checksum algorithm works?
Click to expand...
Click to collapse
Hmm, that is interesting. It is doing it on my end too. Not sure why. It also seems to writing to the first byte. I will have to recheck my code. I tested and it doesn't happen when Elgo was in the party, but it does with Eduardo add a frog.
Give me some time to check it out and I will get back to you.
EDIT:
Not sure why the code was not working. It should only change the Job Level to the same as Max when it is higher than it. It was allowing me to put 1, 2, 10-19, but 3-9 would change it to the max. I removed the check for now, so be careful not to put in a number higher than the Max. It should be working other than that. Also added the fix for Nacht's jobs in this release.
Equipment and Max Abilities/Skills should be soon. Equipment is in testing, and I am in the process of coding the Max Abilities/Skills checkboxes.
Sent from my Verizon Galaxy Note 2 using Xparent Skyblue Tapatalk 2
I grinded some AP, changed jobs, and tried editing the save file again. The bug did not reappear.
Then I played some more, and the bug started happening again, but only with the first character.
I noticed the first byte getting changed too. I thought it was intentional, but since you mentioned it, I guess it wasn't. It seems to be harmless anyway. The game overwrites it as soon as you save again.
Hanrfuuq said:
I grinded some AP, changed jobs, and tried editing the save file again. The bug did not reappear.
Then I played some more, and the bug started happening again, but only with the first character.
I noticed the first byte getting changed too. I thought it was intentional, but since you mentioned it, I guess it wasn't. It seems to be harmless anyway. The game overwrites it as soon as you save again.
Click to expand...
Click to collapse
Was it messing up for the first character with the old editor, or the new one?
Sent from my Verizon Galaxy Note 2 using Xparent Skyblue Tapatalk 2
The old one, sorry. I posted before I read you have an update.
Works perfectly, used to give me a boot to beat a boss cheers !
hutzdani said:
Works perfectly, used to give me a boot to beat a boss cheers !
Click to expand...
Click to collapse
That's good to hear.
Currently working on new version. This will allow for editing all characters at once (including temporary characters), as well as equipment. Also it has a button to have all skills (Holy blade, bardsong, dragon arts), f-abilities, and abilities (including debug abilities).
The main code for all these parts is done, I am just working on getting them to all work together. Hopefully within a week version 2 will be ready for testing by my testers.
Still looking for more testers if anyone is interested.
Sent from my Verizon Galaxy Note 2 using Xparent Skyblue Tapatalk 2
KeylanHalfdan said:
That's good to hear.
Currently working on new version. This will allow for editing all characters at once (including temporary characters), as well as equipment. Also it has a button to have all skills (Holy blade, bardsong, dragon arts), f-abilities, and abilities (including debug abilities).
The main code for all these parts is done, I am just working on getting them to all work together. Hopefully within a week version 2 will be ready for testing by my testers.
Still looking for more testers if anyone is interested.
Sent from my Verizon Galaxy Note 2 using Xparent Skyblue Tapatalk 2
Click to expand...
Click to collapse
Nice, I see the Item editing is not yet working will that be in Ver 2 ?
So far so good i have been using the editor several times now to level up for a boss and then drop back down levels again.
works everytime with out fail, using the first download on the first post with my nexus 4
hutzdani said:
Nice, I see the Item editing is not yet working will that be in Ver 2 ?
So far so good i have been using the editor several times now to level up for a boss and then drop back down levels again.
works everytime with out fail, using the first download on the first post with my nexus 4
Click to expand...
Click to collapse
Item editing will be a lot of coding. There are 510 different item possibilities, and I haven't yet tried to determine Max number of slots, but I know it is a lot. I plan on doing it, but it will be one of the last things I do.
The equipment editing will be available soon though.
Sent from my Verizon Galaxy Note 2 using Xparent Skyblue Tapatalk 2
KeylanHalfdan said:
Item editing will be a lot of coding. There are 510 different item possibilities, and I haven't yet tried to determine Max number of slots, but I know it is a lot. I plan on doing it, but it will be one of the last things I do.
The equipment editing will be available soon though.
Sent from my Verizon Galaxy Note 2 using Xparent Skyblue Tapatalk 2
Click to expand...
Click to collapse
Woah sounds like a headache ! No rush a flawless program on the advertised functions is better than one that's sketchy and has a lot of features !
Confused with error
Hi. I was wondering if anyone could help me using this application. I do the entire process (move save.bin to windows, change values, move back to save folder, etc) but when I run the FFD app, the screen just stays blank (white) and no music or graphics are shown. I've tried using different types of these save editors on FFD and it always does the same thing. The only way to get the game working again is to restore it using Titanium Backup, I was hoping someone here would have some insight on the problem.
Thank you for any help you can give me!
aeziir said:
Hi. I was wondering if anyone could help me using this application. I do the entire process (move save.bin to windows, change values, move back to save folder, etc) but when I run the FFD app, the screen just stays blank (white) and no music or graphics are shown. I've tried using different types of these save editors on FFD and it always does the same thing. The only way to get the game working again is to restore it using Titanium Backup, I was hoping someone here would have some insight on the problem.
Thank you for any help you can give me!
Click to expand...
Click to collapse
I am not sure, I have never had that happen before.
Are you force stopping the game (either through a task manager of the app manager) after saving, or just hitting the home button?
Are you overwriting the save game in the save folder, or deleting the old one and then putting the new one in?
Sent from my Verizon Galaxy Note 2 using Xparent Skyblue Tapatalk 2
KeylanHalfdan said:
I am not sure, I have never had that happen before.
Are you force stopping the game (either through a task manager of the app manager) after saving, or just hitting the home button?
Are you overwriting the save game in the save folder, or deleting the old one and then putting the new one in?
Sent from my Verizon Galaxy Note 2 using Xparent Skyblue Tapatalk 2
Click to expand...
Click to collapse
Well:
I force close the app in the task manage and I am overwriting the save game. I tried deleting the old one then putting the new one in, but same error persists.
Any ideas?
aeziir said:
Well:
I force close the app in the task manage and I am overwriting the save game. I tried deleting the old one then putting the new one in, but same error persists.
Any ideas?
Click to expand...
Click to collapse
Since you didn't mention it in the op... I will assume that you're probably forgetting to re-change the file permissions AND ownership when you place the file back to the original directory.
It seems no big deal but I have seen too many ppl mistakenly change the ownership to another app than the right one and things get messed up!
Use the other file to guide you on which permissions are required and which app owns the file!
Btw: I've finished the game already but messing around with the gil and AP sure saved me a lot of time! Thank you op!
~Sent from Xperia Play~

Categories

Resources