If you suck at this game as much as I do (assuming that's even possible) and want to practice playing at the higher floors without constantly having to start from the first one, the idea of using the revive functionality probably came to your head. However, I'm certain the idea of paying real money for it most probably didn't (hopefully...).
Here's the brilliant, free solution: Icy Tower Classic Mobile Patcher. It will give you 2147483647 coins so that you can revive yourself 31 times in one game (but don't ask me why)...
Normally the solution would be to patch the APK to allow an infinite number of revives... But that would be easy, universal, reliable and extensible. You gotta admit that doesn't sound so "zb3"...
Therefore this solution is:
- not easy - you need to execute the patcher on your PC while the device is connected each time you want to increase your coins amount
- not universal - not only does it require a rooted device, it even requires "adb root" to be working (well, at least those commands below)... oh, and of course, your PC needs to run Linux.
- not reliable - encryption keys are tied to a single game version, it might not work on other versions
- not extensible - don't even think about trying to patch game logic this way - it's just not possible, we can only patch shared pref values.
Now, this indeed sounds like something made by zb3! Let's go!
- Ensure your device is rooted and
adb root
works, you have a linux PC with Python 3 installed. - Ensure you have the game installed (package name
com.freelunchdesign.icytowerclassic
) - Ensure the game is not running.
- Save the
icytower.py
file somewhere andcd
into that directory. - Run this on your PC:
adb shell cat /data/data/com.freelunchdesign.icytowerclassic/shared_prefs/com.freelunchdesign.icytowerclassic.xml | python icytower.py >/tmp/patched.xml
adb push /tmp/patched.xml /data/data/com.freelunchdesign.icytowerclassic/shared_prefs/com.freelunchdesign.icytowerclassic.xml
- Enjoy! (for a moment lol, then you need to run step 4 again)
If the MD5 hash of your Icy Tower Classic apk file is 53c2619abffc325eb0fa17de8c9b9ba2
, then yes, it actually does work. Not that it helps me play the game much coz I still crash almost immediately after the revive, but still - it actually works.
Yes.
My primary goal was to waste time so I could avoid doing things that I actually needed to do. While I don't usually accomplish any goals, this time I succeeded. In fact, the amount of time wasted even exceeded my wildest expectations!
Ensure the game is not running (Force Stop might be needed) and run this with root privileges:
sed -i -E 's/<string name="uFuga2.PStore.HCLocal">[^<]+<\/string>/<string name="uFuga2.PStore.HCLocal">ePuuLEFq3TrostMIvyvKjvN1BRCKoCB8RNjNm3Qs0qOUGREGY7bFrg==<\/string>/' /data/data/com.freelunchdesign.icytowerclassic/shared_prefs/com.freelunchdesign.icytowerclassic.xml