when the cyberfront's servers were still available, once you brought the voice DLC, the game would download and unpack everything from a file named VOICE.PCK to /sdcard/Android/obb/cyberfront.online.Ever17/17AHXLeMMIHAHX34/AHX/
the game writes a file called "DLCDATA" to the app's internal data directory (not to be confused with /sdcard/Android/data) with the "complete" flag and a comma when the DLC download is "complite"
- complete = 3
- failed = 2
- uninstalled? = 4
whenever the voice dlc is "done", CFKNative.SetVoiceDown(3) is called
this.installComplite.setNegativeButton("OK", new DialogInterface.OnClickListener() { // from class: com.cfk.adk.util.pack.download.HttpDownLoaderMain.7
@Override // android.content.DialogInterface.OnClickListener
public void onClick(DialogInterface dialog, int which) throws IOException {
Ever17Activity.FL_BlackSheet.setVisibility(8);
Ever17Activity.BlackSheet_Restore = 0;
CFKNative.SetVoiceDown(2);
CF_SRV_STRINGS.DLC_DATA_Flag = 3;
HttpDownLoaderMain.this.FileDelete();
HttpDownLoaderMain.this.FileWrite();
}
});
this.installComplite.create();https://antoinette.stay.rip/Infinity/Ever17/Android/
- create a file named DLCDATA to the app's internal data directory (that would be something like
/data/data/cyberfront.online.Ever17)
- tip! use
adb shelland once you're in the device's shell, runrun-as cyberfront.online.Ever17. you will "be" the app's UID so you can create the file without being rooted. (this only works because the patched app has the debuggable flag though)
- the DLCDATA contents must be this:
3, - extract
voice_dlc.zipand copy everything to/sdcard/Android/obb/cyberfront.online.Ever17/17AHXLeMMIHAHX34/AHX/. use something likeadb pushfor this - if everything is right, you should be hearing You's sweet voice lines (and also from the other irrelevant characters).