14 hours ago14 hr I couldn't find a working solution for this specific problem on the forum, so I decided to investigate it myself.After experimenting with the file structure and using AI assistance during the development process, I managed to put together a small Python-based extraction workflow that allows Metin2 .EPK / .EIX files to be extracted.I'm sharing it here in case it is useful to anyone else working with Metin2 assets or encountering the same problem.RequirementsWindowsPython installedMetin2 .EPK and .EIX filesUsageFirst, extract the provided ZIP archive.After extracting it, copy the Metin2 .EPK and .EIX files you want to work with into the same directory as:epk_extractor.py1. Generate the extraction commandsRun:EPK List Tool.batThe batch file will scan the directory for .EIX / .EPK pairs and generate a file called:list.txtThis file contains the Python commands required to extract each archive.2. Run the generated commandsOpen the folder containing epk_extractor.py.Hold Shift and right-click an empty area inside the folder, then select:Open PowerShell window hereOn newer versions of Windows, this may appear as:Open in TerminalOpen list.txt, copy its contents, paste them into PowerShell and press Enter.The commands will be executed sequentially and the corresponding EPK files will be extracted.3. Extracted filesDepending on the contents of the archive, the extraction may produce files such as:.GR2 — Granny 3D model files.DDS — Texture filesOther files contained within the archiveThe files are organized into their corresponding output directories.WorkflowMetin2 .EIX + .EPK │ ▼ EPK List Tool.bat │ ▼ list.txt │ ▼ Copy generated commands │ ▼ PowerShell │ ▼ epk_extractor.py │ ▼ Extracted GR2 / DDS / other files NotesThis is simply the workflow I ended up using successfully after not finding a suitable existing solution for my particular case.I am not claiming that this is the only or best way to handle the Metin2 archive format. I am posting it mainly as a practical solution and as a starting point for anyone interested in investigating the format further.If anyone has additional information about the Metin2 EPK/EIX format, encryption/compression, or a more complete way of handling these files, feel free to share it.Hopefully this is useful to someone. epk_extractor.zip
Create an account or sign in to comment