Name: Tap Titans 2
Version: 3.3.0
Root: No
Mod features:
1. Coins Increase
2. Mana Increase
3. No delay skills
Install Steps:
Download
Install
Credits: vera
Playstore Link: Google Playstore
Download Link: MOD APK
Mirror
Mirror
Last edited:
Agree with ginoza,the increase gold mod gives you teapot (banned) almost instant so the mod is useless.Please provide 2 version,
1.No decrease gold (unlimited) & MANA increase.
2.Increase gold (unlimited) & MANA increase.
/sdcard/Android/data/com.gamehivecorp.taptitans2/files/gamedata/1eb...d64.fadat//010 Encryption script
//--------------------------------------
//--- 010 Editor v3.2 Script File
//
// File: encrypt
// Author: cynosure
// Revision: 1.0.7
// Purpose: tap titans sha-1 checksum savefile encryption
//--------------------------------------
byte key[9];
key[0]=7; key[1]=3; key[2]=2; key[3]=5; key[4]=4; key[5]=2; key[6]=5; key[7]=5; key[8]=3;
int actfile = GetFileNum();
int newfile = FileNew();
FileSelect(actfile);
int siz = FileSize();
int place = 0; int addr = 0; int out = 0; uint data = 0;
while(addr < siz){
FileSelect(actfile);
data = ReadByte(addr++);
FileSelect(newfile);
WriteByte(out, (data + key[out %9]) );
out++;
}