├── .gitignore ├── CPZV6Unpacker ├── CPZV6.sln ├── CPZV6.v12.suo └── CPZV6 │ ├── CPZV6.cpp │ ├── CPZV6.vcxproj │ ├── CPZV6.vcxproj.filters │ ├── cmvs_md5.cpp │ ├── cmvs_md5.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── LICENSE ├── PatchSample └── amatsu_trial_chs │ ├── amatsu_trial_chs.sln │ ├── amatsu_trial_chs.v12.suo │ ├── amatsu_trial_chs │ ├── amatsu_trial_chs.aps │ ├── amatsu_trial_chs.cpp │ ├── amatsu_trial_chs.h │ ├── amatsu_trial_chs.ico │ ├── amatsu_trial_chs.rc │ ├── amatsu_trial_chs.vcxproj │ ├── amatsu_trial_chs.vcxproj.filters │ ├── amatsu_trial_chs.vcxproj.user │ ├── detours.h │ ├── detours.lib │ ├── detver.h │ ├── resource.h │ └── targetver.h │ └── amatsu_trial_chs_DLL │ ├── FileLoader.cpp │ ├── FileLoader.h │ ├── amatsu_trial_chs_DLL.cpp │ ├── amatsu_trial_chs_DLL.vcxproj │ ├── amatsu_trial_chs_DLL.vcxproj.filters │ ├── amatsu_trial_chs_DLL.vcxproj.user │ └── targetver.h ├── Pb3Decoder ├── Pb3Decoder.sln ├── Pb3Decoder.v12.suo └── Pb3Decoder │ ├── BMPMaker.cpp │ ├── BMPMaker.h │ ├── CPB.cpp │ ├── CPB.h │ ├── JBP1.cpp │ ├── JBP1.h │ ├── PB3B.cpp │ ├── PB3B.h │ ├── Pb3Decoder.cpp │ ├── Pb3Decoder.vcxproj │ ├── Pb3Decoder.vcxproj.filters │ ├── Pb3Decoder.vcxproj.user │ ├── WinFile.h │ └── YCMemory.h ├── Ps2TextDumper ├── Ps2TextDumper.sln ├── Ps2TextDumper.v12.suo └── Ps2TextDumper │ ├── Ps2TextDumper.cpp │ ├── Ps2TextDumper.vcxproj │ ├── Ps2TextDumper.vcxproj.filters │ └── Ps2TextDumper.vcxproj.user ├── Ps3TextDumper ├── Ps3TextDumper.sln ├── Ps3TextDumper.v12.suo ├── Ps3TextDumper │ ├── Ps3TextDumper.cpp │ ├── Ps3TextDumper.vcxproj │ ├── Ps3TextDumper.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── Release │ ├── autodemo.ps3_ss │ └── autodemo.ps3_ss.txt ├── PurplePS3Packer ├── PurplePS3Packer.sln ├── PurplePS3Packer.v12.suo └── PurplePS3Packer │ ├── PurplePS3Packer.cpp │ ├── PurplePS3Packer.vcxproj │ ├── PurplePS3Packer.vcxproj.filters │ ├── PurplePS3Packer.vcxproj.user │ ├── lzss.c │ ├── lzss.h │ └── lzss_c.c ├── README.md └── binary ├── CPZV6.exe ├── Pb3Decoder(WithXor).exe ├── Pb3Decoder.exe ├── Ps2TextDumper.exe ├── Ps3TextDumper.exe └── PurplePS3Packer.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/.gitignore -------------------------------------------------------------------------------- /CPZV6Unpacker/CPZV6.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/CPZV6Unpacker/CPZV6.sln -------------------------------------------------------------------------------- /CPZV6Unpacker/CPZV6.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/CPZV6Unpacker/CPZV6.v12.suo -------------------------------------------------------------------------------- /CPZV6Unpacker/CPZV6/CPZV6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/CPZV6Unpacker/CPZV6/CPZV6.cpp -------------------------------------------------------------------------------- /CPZV6Unpacker/CPZV6/CPZV6.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/CPZV6Unpacker/CPZV6/CPZV6.vcxproj -------------------------------------------------------------------------------- /CPZV6Unpacker/CPZV6/CPZV6.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/CPZV6Unpacker/CPZV6/CPZV6.vcxproj.filters -------------------------------------------------------------------------------- /CPZV6Unpacker/CPZV6/cmvs_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/CPZV6Unpacker/CPZV6/cmvs_md5.cpp -------------------------------------------------------------------------------- /CPZV6Unpacker/CPZV6/cmvs_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/CPZV6Unpacker/CPZV6/cmvs_md5.h -------------------------------------------------------------------------------- /CPZV6Unpacker/CPZV6/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/CPZV6Unpacker/CPZV6/stdafx.cpp -------------------------------------------------------------------------------- /CPZV6Unpacker/CPZV6/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/CPZV6Unpacker/CPZV6/stdafx.h -------------------------------------------------------------------------------- /CPZV6Unpacker/CPZV6/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/CPZV6Unpacker/CPZV6/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/LICENSE -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs.sln -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs.v12.suo -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.aps -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.cpp -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.ico -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.rc -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.vcxproj -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.vcxproj.filters -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs/amatsu_trial_chs.vcxproj.user -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs/detours.h -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs/detours.lib -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs/detver.h -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs/resource.h -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs/targetver.h -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/FileLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/FileLoader.cpp -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/FileLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/FileLoader.h -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/amatsu_trial_chs_DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/amatsu_trial_chs_DLL.cpp -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/amatsu_trial_chs_DLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/amatsu_trial_chs_DLL.vcxproj -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/amatsu_trial_chs_DLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/amatsu_trial_chs_DLL.vcxproj.filters -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/amatsu_trial_chs_DLL.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/amatsu_trial_chs_DLL.vcxproj.user -------------------------------------------------------------------------------- /PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PatchSample/amatsu_trial_chs/amatsu_trial_chs_DLL/targetver.h -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder.sln -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder.v12.suo -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/BMPMaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/BMPMaker.cpp -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/BMPMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/BMPMaker.h -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/CPB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/CPB.cpp -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/CPB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/CPB.h -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/JBP1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/JBP1.cpp -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/JBP1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/JBP1.h -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/PB3B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/PB3B.cpp -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/PB3B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/PB3B.h -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/Pb3Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/Pb3Decoder.cpp -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/Pb3Decoder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/Pb3Decoder.vcxproj -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/Pb3Decoder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/Pb3Decoder.vcxproj.filters -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/Pb3Decoder.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/Pb3Decoder.vcxproj.user -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/WinFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/WinFile.h -------------------------------------------------------------------------------- /Pb3Decoder/Pb3Decoder/YCMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Pb3Decoder/Pb3Decoder/YCMemory.h -------------------------------------------------------------------------------- /Ps2TextDumper/Ps2TextDumper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps2TextDumper/Ps2TextDumper.sln -------------------------------------------------------------------------------- /Ps2TextDumper/Ps2TextDumper.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps2TextDumper/Ps2TextDumper.v12.suo -------------------------------------------------------------------------------- /Ps2TextDumper/Ps2TextDumper/Ps2TextDumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps2TextDumper/Ps2TextDumper/Ps2TextDumper.cpp -------------------------------------------------------------------------------- /Ps2TextDumper/Ps2TextDumper/Ps2TextDumper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps2TextDumper/Ps2TextDumper/Ps2TextDumper.vcxproj -------------------------------------------------------------------------------- /Ps2TextDumper/Ps2TextDumper/Ps2TextDumper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps2TextDumper/Ps2TextDumper/Ps2TextDumper.vcxproj.filters -------------------------------------------------------------------------------- /Ps2TextDumper/Ps2TextDumper/Ps2TextDumper.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps2TextDumper/Ps2TextDumper/Ps2TextDumper.vcxproj.user -------------------------------------------------------------------------------- /Ps3TextDumper/Ps3TextDumper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps3TextDumper/Ps3TextDumper.sln -------------------------------------------------------------------------------- /Ps3TextDumper/Ps3TextDumper.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps3TextDumper/Ps3TextDumper.v12.suo -------------------------------------------------------------------------------- /Ps3TextDumper/Ps3TextDumper/Ps3TextDumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps3TextDumper/Ps3TextDumper/Ps3TextDumper.cpp -------------------------------------------------------------------------------- /Ps3TextDumper/Ps3TextDumper/Ps3TextDumper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps3TextDumper/Ps3TextDumper/Ps3TextDumper.vcxproj -------------------------------------------------------------------------------- /Ps3TextDumper/Ps3TextDumper/Ps3TextDumper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps3TextDumper/Ps3TextDumper/Ps3TextDumper.vcxproj.filters -------------------------------------------------------------------------------- /Ps3TextDumper/Ps3TextDumper/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps3TextDumper/Ps3TextDumper/ReadMe.txt -------------------------------------------------------------------------------- /Ps3TextDumper/Ps3TextDumper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps3TextDumper/Ps3TextDumper/stdafx.cpp -------------------------------------------------------------------------------- /Ps3TextDumper/Ps3TextDumper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps3TextDumper/Ps3TextDumper/stdafx.h -------------------------------------------------------------------------------- /Ps3TextDumper/Ps3TextDumper/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps3TextDumper/Ps3TextDumper/targetver.h -------------------------------------------------------------------------------- /Ps3TextDumper/Release/autodemo.ps3_ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps3TextDumper/Release/autodemo.ps3_ss -------------------------------------------------------------------------------- /Ps3TextDumper/Release/autodemo.ps3_ss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/Ps3TextDumper/Release/autodemo.ps3_ss.txt -------------------------------------------------------------------------------- /PurplePS3Packer/PurplePS3Packer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PurplePS3Packer/PurplePS3Packer.sln -------------------------------------------------------------------------------- /PurplePS3Packer/PurplePS3Packer.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PurplePS3Packer/PurplePS3Packer.v12.suo -------------------------------------------------------------------------------- /PurplePS3Packer/PurplePS3Packer/PurplePS3Packer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PurplePS3Packer/PurplePS3Packer/PurplePS3Packer.cpp -------------------------------------------------------------------------------- /PurplePS3Packer/PurplePS3Packer/PurplePS3Packer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PurplePS3Packer/PurplePS3Packer/PurplePS3Packer.vcxproj -------------------------------------------------------------------------------- /PurplePS3Packer/PurplePS3Packer/PurplePS3Packer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PurplePS3Packer/PurplePS3Packer/PurplePS3Packer.vcxproj.filters -------------------------------------------------------------------------------- /PurplePS3Packer/PurplePS3Packer/PurplePS3Packer.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PurplePS3Packer/PurplePS3Packer/PurplePS3Packer.vcxproj.user -------------------------------------------------------------------------------- /PurplePS3Packer/PurplePS3Packer/lzss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PurplePS3Packer/PurplePS3Packer/lzss.c -------------------------------------------------------------------------------- /PurplePS3Packer/PurplePS3Packer/lzss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PurplePS3Packer/PurplePS3Packer/lzss.h -------------------------------------------------------------------------------- /PurplePS3Packer/PurplePS3Packer/lzss_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/PurplePS3Packer/PurplePS3Packer/lzss_c.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/README.md -------------------------------------------------------------------------------- /binary/CPZV6.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/binary/CPZV6.exe -------------------------------------------------------------------------------- /binary/Pb3Decoder(WithXor).exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/binary/Pb3Decoder(WithXor).exe -------------------------------------------------------------------------------- /binary/Pb3Decoder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/binary/Pb3Decoder.exe -------------------------------------------------------------------------------- /binary/Ps2TextDumper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/binary/Ps2TextDumper.exe -------------------------------------------------------------------------------- /binary/Ps3TextDumper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/binary/Ps3TextDumper.exe -------------------------------------------------------------------------------- /binary/PurplePS3Packer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/CMVS-Engine/HEAD/binary/PurplePS3Packer.exe --------------------------------------------------------------------------------