├── .gitattributes ├── .gitignore ├── AAMod ├── AAMod.csproj ├── Forms │ ├── ModMainForm.Designer.cs │ ├── ModMainForm.cs │ └── ModMainForm.resx ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── aamod_icon.ico │ └── launchSettings.json ├── Resources │ └── aamod_icon.ico ├── Settings.cs ├── aamod_icon.ico └── res │ ├── aamod.png │ ├── aamod.txt │ ├── example.aamod │ └── loading.dds ├── AAPakCLI ├── AAPakCLI.csproj ├── App.config ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── launchSettings.json ├── Resources │ └── cmdhelp.txt └── aapakcli_icon.ico ├── AAPakEditor.sln ├── AAPakEditor.sln.DotSettings ├── AAPakEditor ├── AAPakEditor.csproj ├── App.config ├── Forms │ ├── AddFileDlg.Designer.cs │ ├── AddFileDlg.cs │ ├── AddFileDlg.resx │ ├── EditWarningDialog.Designer.cs │ ├── EditWarningDialog.cs │ ├── EditWarningDialog.resx │ ├── ExportAllDlg.Designer.cs │ ├── ExportAllDlg.cs │ ├── ExportAllDlg.resx │ ├── FilePropForm.Designer.cs │ ├── FilePropForm.cs │ ├── FilePropForm.resx │ ├── ImportFolderDlg.Designer.cs │ ├── ImportFolderDlg.cs │ ├── ImportFolderDlg.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── MakeModForm.Designer.cs │ ├── MakeModForm.cs │ ├── MakeModForm.resx │ ├── PreviewForm.Designer.cs │ ├── PreviewForm.cs │ ├── PreviewForm.resx │ ├── ReMD5Dlg.Designer.cs │ ├── ReMD5Dlg.cs │ └── ReMD5Dlg.resx ├── Helpers │ ├── ImageHelpers.cs │ └── JsonHelpers.cs ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── app.manifest │ └── launchSettings.json ├── Resources │ ├── AAMod.exe │ ├── cmdhelp.txt │ ├── warning.png │ └── warning64.png ├── aa.bms ├── aapakeditor_icon.ico ├── charge_package.ico └── res │ ├── aamod_icon.ico │ ├── aamod_icon.xcf │ ├── aapakcli.xcf │ ├── aapakcli_icon.ico │ ├── aapakeditor_icon.ico │ ├── aapakeditor_icon.xcf │ ├── divine_aamod_icon.xcf │ ├── game_pak.key │ ├── icon_achieve_0047.dds │ ├── icon_item_0060.dds │ ├── item_grade_10legendary.dds │ ├── item_grade_7artifact.dds │ ├── item_grade_8wonder.dds │ ├── item_grade_9epic.dds │ └── mod_example.png ├── Common └── empty_pak ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/.gitignore -------------------------------------------------------------------------------- /AAMod/AAMod.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/AAMod.csproj -------------------------------------------------------------------------------- /AAMod/Forms/ModMainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/Forms/ModMainForm.Designer.cs -------------------------------------------------------------------------------- /AAMod/Forms/ModMainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/Forms/ModMainForm.cs -------------------------------------------------------------------------------- /AAMod/Forms/ModMainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/Forms/ModMainForm.resx -------------------------------------------------------------------------------- /AAMod/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/Program.cs -------------------------------------------------------------------------------- /AAMod/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AAMod/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/Properties/Resources.resx -------------------------------------------------------------------------------- /AAMod/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AAMod/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/Properties/Settings.settings -------------------------------------------------------------------------------- /AAMod/Properties/aamod_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/Properties/aamod_icon.ico -------------------------------------------------------------------------------- /AAMod/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/Properties/launchSettings.json -------------------------------------------------------------------------------- /AAMod/Resources/aamod_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/Resources/aamod_icon.ico -------------------------------------------------------------------------------- /AAMod/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/Settings.cs -------------------------------------------------------------------------------- /AAMod/aamod_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/aamod_icon.ico -------------------------------------------------------------------------------- /AAMod/res/aamod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/res/aamod.png -------------------------------------------------------------------------------- /AAMod/res/aamod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/res/aamod.txt -------------------------------------------------------------------------------- /AAMod/res/example.aamod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/res/example.aamod -------------------------------------------------------------------------------- /AAMod/res/loading.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAMod/res/loading.dds -------------------------------------------------------------------------------- /AAPakCLI/AAPakCLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakCLI/AAPakCLI.csproj -------------------------------------------------------------------------------- /AAPakCLI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakCLI/App.config -------------------------------------------------------------------------------- /AAPakCLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakCLI/Program.cs -------------------------------------------------------------------------------- /AAPakCLI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakCLI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AAPakCLI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakCLI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AAPakCLI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakCLI/Properties/Resources.resx -------------------------------------------------------------------------------- /AAPakCLI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakCLI/Properties/launchSettings.json -------------------------------------------------------------------------------- /AAPakCLI/Resources/cmdhelp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakCLI/Resources/cmdhelp.txt -------------------------------------------------------------------------------- /AAPakCLI/aapakcli_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakCLI/aapakcli_icon.ico -------------------------------------------------------------------------------- /AAPakEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor.sln -------------------------------------------------------------------------------- /AAPakEditor.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor.sln.DotSettings -------------------------------------------------------------------------------- /AAPakEditor/AAPakEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/AAPakEditor.csproj -------------------------------------------------------------------------------- /AAPakEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/App.config -------------------------------------------------------------------------------- /AAPakEditor/Forms/AddFileDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/AddFileDlg.Designer.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/AddFileDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/AddFileDlg.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/AddFileDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/AddFileDlg.resx -------------------------------------------------------------------------------- /AAPakEditor/Forms/EditWarningDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/EditWarningDialog.Designer.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/EditWarningDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/EditWarningDialog.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/EditWarningDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/EditWarningDialog.resx -------------------------------------------------------------------------------- /AAPakEditor/Forms/ExportAllDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/ExportAllDlg.Designer.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/ExportAllDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/ExportAllDlg.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/ExportAllDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/ExportAllDlg.resx -------------------------------------------------------------------------------- /AAPakEditor/Forms/FilePropForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/FilePropForm.Designer.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/FilePropForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/FilePropForm.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/FilePropForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/FilePropForm.resx -------------------------------------------------------------------------------- /AAPakEditor/Forms/ImportFolderDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/ImportFolderDlg.Designer.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/ImportFolderDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/ImportFolderDlg.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/ImportFolderDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/ImportFolderDlg.resx -------------------------------------------------------------------------------- /AAPakEditor/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/MainForm.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/MainForm.resx -------------------------------------------------------------------------------- /AAPakEditor/Forms/MakeModForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/MakeModForm.Designer.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/MakeModForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/MakeModForm.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/MakeModForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/MakeModForm.resx -------------------------------------------------------------------------------- /AAPakEditor/Forms/PreviewForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/PreviewForm.Designer.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/PreviewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/PreviewForm.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/PreviewForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/PreviewForm.resx -------------------------------------------------------------------------------- /AAPakEditor/Forms/ReMD5Dlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/ReMD5Dlg.Designer.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/ReMD5Dlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/ReMD5Dlg.cs -------------------------------------------------------------------------------- /AAPakEditor/Forms/ReMD5Dlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Forms/ReMD5Dlg.resx -------------------------------------------------------------------------------- /AAPakEditor/Helpers/ImageHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Helpers/ImageHelpers.cs -------------------------------------------------------------------------------- /AAPakEditor/Helpers/JsonHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Helpers/JsonHelpers.cs -------------------------------------------------------------------------------- /AAPakEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Program.cs -------------------------------------------------------------------------------- /AAPakEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AAPakEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /AAPakEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AAPakEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /AAPakEditor/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Properties/app.manifest -------------------------------------------------------------------------------- /AAPakEditor/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Properties/launchSettings.json -------------------------------------------------------------------------------- /AAPakEditor/Resources/AAMod.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Resources/AAMod.exe -------------------------------------------------------------------------------- /AAPakEditor/Resources/cmdhelp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Resources/cmdhelp.txt -------------------------------------------------------------------------------- /AAPakEditor/Resources/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Resources/warning.png -------------------------------------------------------------------------------- /AAPakEditor/Resources/warning64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/Resources/warning64.png -------------------------------------------------------------------------------- /AAPakEditor/aa.bms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/aa.bms -------------------------------------------------------------------------------- /AAPakEditor/aapakeditor_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/aapakeditor_icon.ico -------------------------------------------------------------------------------- /AAPakEditor/charge_package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/charge_package.ico -------------------------------------------------------------------------------- /AAPakEditor/res/aamod_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/aamod_icon.ico -------------------------------------------------------------------------------- /AAPakEditor/res/aamod_icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/aamod_icon.xcf -------------------------------------------------------------------------------- /AAPakEditor/res/aapakcli.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/aapakcli.xcf -------------------------------------------------------------------------------- /AAPakEditor/res/aapakcli_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/aapakcli_icon.ico -------------------------------------------------------------------------------- /AAPakEditor/res/aapakeditor_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/aapakeditor_icon.ico -------------------------------------------------------------------------------- /AAPakEditor/res/aapakeditor_icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/aapakeditor_icon.xcf -------------------------------------------------------------------------------- /AAPakEditor/res/divine_aamod_icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/divine_aamod_icon.xcf -------------------------------------------------------------------------------- /AAPakEditor/res/game_pak.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/game_pak.key -------------------------------------------------------------------------------- /AAPakEditor/res/icon_achieve_0047.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/icon_achieve_0047.dds -------------------------------------------------------------------------------- /AAPakEditor/res/icon_item_0060.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/icon_item_0060.dds -------------------------------------------------------------------------------- /AAPakEditor/res/item_grade_10legendary.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/item_grade_10legendary.dds -------------------------------------------------------------------------------- /AAPakEditor/res/item_grade_7artifact.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/item_grade_7artifact.dds -------------------------------------------------------------------------------- /AAPakEditor/res/item_grade_8wonder.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/item_grade_8wonder.dds -------------------------------------------------------------------------------- /AAPakEditor/res/item_grade_9epic.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/item_grade_9epic.dds -------------------------------------------------------------------------------- /AAPakEditor/res/mod_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/AAPakEditor/res/mod_example.png -------------------------------------------------------------------------------- /Common/empty_pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/Common/empty_pak -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeromusXYZ/AAEmu-Packer/HEAD/README.md --------------------------------------------------------------------------------