Skip to content

Instantly share code, notes, and snippets.

@Nightdavisao
Created January 6, 2026 18:02
Show Gist options
  • Select an option

  • Save Nightdavisao/add4b4fcdc079f5add55890f4f6cc97b to your computer and use it in GitHub Desktop.

Select an option

Save Nightdavisao/add4b4fcdc079f5add55890f4f6cc97b to your computer and use it in GitHub Desktop.
Ever17 Android's Voice DLC

voice DLC for the Ever17 Android version

unorganized findings

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"

DLC voice flags:

  • 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();

downdlaod

https://antoinette.stay.rip/Infinity/Ever17/Android/

voices????

  1. 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 shell and once you're in the device's shell, run run-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)
  1. the DLCDATA contents must be this: 3,
  2. extract voice_dlc.zip and copy everything to /sdcard/Android/obb/cyberfront.online.Ever17/17AHXLeMMIHAHX34/AHX/. use something like adb push for this
  3. if everything is right, you should be hearing You's sweet voice lines (and also from the other irrelevant characters).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment