├── .appveyor.yml ├── .gitignore ├── .gitmodules ├── Just Cause 4.sln ├── Just Cause 4.sln.DotSettings ├── LICENSE.txt ├── README.md ├── bin └── projects │ ├── Just Cause 4.xml │ ├── Just Cause 4 │ └── files │ │ ├── archives_win64 │ │ ├── boot │ │ │ ├── game0.filelist │ │ │ └── hires │ │ │ │ └── game0.filelist │ │ ├── boot_patch │ │ │ └── game0.filelist │ │ ├── cp_deathstalker │ │ │ └── game0.filelist │ │ ├── main │ │ │ ├── ara │ │ │ │ └── game0.filelist │ │ │ ├── bra │ │ │ │ └── game0.filelist │ │ │ ├── eng │ │ │ │ └── game0.filelist │ │ │ ├── fre │ │ │ │ └── game0.filelist │ │ │ ├── game0.filelist │ │ │ ├── game1.filelist │ │ │ ├── game10.filelist │ │ │ ├── game11.filelist │ │ │ ├── game12.filelist │ │ │ ├── game13.filelist │ │ │ ├── game14.filelist │ │ │ ├── game15.filelist │ │ │ ├── game16.filelist │ │ │ ├── game17.filelist │ │ │ ├── game18.filelist │ │ │ ├── game19.filelist │ │ │ ├── game2.filelist │ │ │ ├── game20.filelist │ │ │ ├── game21.filelist │ │ │ ├── game22.filelist │ │ │ ├── game23.filelist │ │ │ ├── game24.filelist │ │ │ ├── game25.filelist │ │ │ ├── game26.filelist │ │ │ ├── game27.filelist │ │ │ ├── game28.filelist │ │ │ ├── game29.filelist │ │ │ ├── game3.filelist │ │ │ ├── game30.filelist │ │ │ ├── game31.filelist │ │ │ ├── game32.filelist │ │ │ ├── game33.filelist │ │ │ ├── game34.filelist │ │ │ ├── game35.filelist │ │ │ ├── game36.filelist │ │ │ ├── game37.filelist │ │ │ ├── game38.filelist │ │ │ ├── game39.filelist │ │ │ ├── game4.filelist │ │ │ ├── game40.filelist │ │ │ ├── game41.filelist │ │ │ ├── game5.filelist │ │ │ ├── game6.filelist │ │ │ ├── game7.filelist │ │ │ ├── game8.filelist │ │ │ ├── game9.filelist │ │ │ ├── ger │ │ │ │ └── game0.filelist │ │ │ ├── hires │ │ │ │ ├── game0.filelist │ │ │ │ ├── game1.filelist │ │ │ │ ├── game2.filelist │ │ │ │ ├── game3.filelist │ │ │ │ └── game4.filelist │ │ │ ├── ita │ │ │ │ └── game0.filelist │ │ │ ├── mex │ │ │ │ └── game0.filelist │ │ │ ├── rus │ │ │ │ └── game0.filelist │ │ │ └── spa │ │ │ │ └── game0.filelist │ │ └── main_patch │ │ │ ├── ara │ │ │ └── game0.filelist │ │ │ ├── bra │ │ │ └── game0.filelist │ │ │ ├── eng │ │ │ └── game0.filelist │ │ │ ├── game0.filelist │ │ │ ├── game1.filelist │ │ │ ├── game10.filelist │ │ │ ├── game2.filelist │ │ │ ├── game3.filelist │ │ │ ├── game4.filelist │ │ │ ├── game5.filelist │ │ │ ├── game6.filelist │ │ │ ├── game7.filelist │ │ │ ├── game8.filelist │ │ │ ├── game9.filelist │ │ │ ├── ger │ │ │ └── game0.filelist │ │ │ ├── hires │ │ │ └── game0.filelist │ │ │ ├── ita │ │ │ └── game0.filelist │ │ │ └── rus │ │ │ └── game0.filelist │ │ └── status.txt │ ├── Shared.xml │ └── current.txt └── projects ├── Gibbed.JustCause4.FileFormats ├── ArchiveTableFile.cs ├── CompressionFlags.cs ├── CompressionType.cs ├── FileDetection.cs ├── Gibbed.JustCause4.FileFormats.csproj ├── LICENSE.txt ├── ProjectHelpers.cs ├── Properties │ └── AssemblyInfo.cs └── StringHelpers.cs ├── Gibbed.JustCause4.Unpack ├── Gibbed.JustCause4.Unpack.csproj ├── LICENSE.txt ├── Oodle.cs ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── LaunchWithDropzone ├── Helpers.cs ├── LICENSE.txt ├── LaunchWithDropzone.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs └── RebuildFileLists ├── LICENSE.txt ├── Program.cs ├── Properties └── AssemblyInfo.cs └── RebuildFileLists.csproj /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/.gitmodules -------------------------------------------------------------------------------- /Just Cause 4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/Just Cause 4.sln -------------------------------------------------------------------------------- /Just Cause 4.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/Just Cause 4.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/README.md -------------------------------------------------------------------------------- /bin/projects/Just Cause 4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4.xml -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/boot/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/boot/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/boot/hires/game0.filelist: -------------------------------------------------------------------------------- 1 | ; 0/25 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/boot_patch/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/boot_patch/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/cp_deathstalker/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/cp_deathstalker/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/ara/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/ara/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/bra/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/bra/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/eng/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/eng/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/fre/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/fre/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game1.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game1.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game10.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game10.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game11.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game11.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game12.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game12.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game13.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game13.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game14.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game14.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game15.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game15.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game16.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game16.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game17.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game17.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game18.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game18.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game19.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game19.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game2.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game2.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game20.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game20.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game21.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game21.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game22.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game22.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game23.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game23.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game24.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game24.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game25.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game25.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game26.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game26.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game27.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game27.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game28.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game28.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game29.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game29.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game3.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game3.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game30.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game30.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game31.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game31.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game32.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game32.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game33.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game33.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game34.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game34.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game35.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game35.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game36.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game36.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game37.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game37.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game38.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game38.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game39.filelist: -------------------------------------------------------------------------------- 1 | ; 0/2 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game4.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game4.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game40.filelist: -------------------------------------------------------------------------------- 1 | ; 0/4 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game41.filelist: -------------------------------------------------------------------------------- 1 | ; 0/4 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game5.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game5.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game6.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game6.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game7.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game7.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game8.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game8.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/game9.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/game9.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/ger/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/ger/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/hires/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/hires/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/hires/game1.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/hires/game1.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/hires/game2.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/hires/game2.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/hires/game3.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/hires/game3.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/hires/game4.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/hires/game4.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/ita/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/ita/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/mex/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/mex/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/rus/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/rus/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main/spa/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main/spa/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/ara/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main_patch/ara/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/bra/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main_patch/bra/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/eng/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main_patch/eng/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main_patch/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/game1.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main_patch/game1.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/game10.filelist: -------------------------------------------------------------------------------- 1 | ; 0/2 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/game2.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main_patch/game2.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/game3.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main_patch/game3.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/game4.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main_patch/game4.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/game5.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main_patch/game5.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/game6.filelist: -------------------------------------------------------------------------------- 1 | ; 1/2 (50%) 2 | videos/scene_intro_gear.bikc 3 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/game7.filelist: -------------------------------------------------------------------------------- 1 | ; 0/2 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/game8.filelist: -------------------------------------------------------------------------------- 1 | ; 0/4 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/game9.filelist: -------------------------------------------------------------------------------- 1 | ; 0/2 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/ger/game0.filelist: -------------------------------------------------------------------------------- 1 | ; 1/1 (100%) 2 | sound/dialogue/eng/intro_homefront_dial_start_020_mira.wavc 3 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/hires/game0.filelist: -------------------------------------------------------------------------------- 1 | ; 0/1 (0%) 2 | -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/ita/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main_patch/ita/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/archives_win64/main_patch/rus/game0.filelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Just Cause 4/files/archives_win64/main_patch/rus/game0.filelist -------------------------------------------------------------------------------- /bin/projects/Just Cause 4/files/status.txt: -------------------------------------------------------------------------------- 1 | 103540/206678 (50%) 2 | -------------------------------------------------------------------------------- /bin/projects/Shared.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/bin/projects/Shared.xml -------------------------------------------------------------------------------- /bin/projects/current.txt: -------------------------------------------------------------------------------- 1 | Just Cause 4 -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.FileFormats/ArchiveTableFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.FileFormats/ArchiveTableFile.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.FileFormats/CompressionFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.FileFormats/CompressionFlags.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.FileFormats/CompressionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.FileFormats/CompressionType.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.FileFormats/FileDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.FileFormats/FileDetection.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.FileFormats/Gibbed.JustCause4.FileFormats.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.FileFormats/Gibbed.JustCause4.FileFormats.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.FileFormats/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.FileFormats/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.FileFormats/ProjectHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.FileFormats/ProjectHelpers.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.FileFormats/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.FileFormats/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.FileFormats/StringHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.FileFormats/StringHelpers.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.Unpack/Gibbed.JustCause4.Unpack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.Unpack/Gibbed.JustCause4.Unpack.csproj -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.Unpack/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.Unpack/LICENSE.txt -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.Unpack/Oodle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.Unpack/Oodle.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.Unpack/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.Unpack/Program.cs -------------------------------------------------------------------------------- /projects/Gibbed.JustCause4.Unpack/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/Gibbed.JustCause4.Unpack/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/LaunchWithDropzone/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/LaunchWithDropzone/Helpers.cs -------------------------------------------------------------------------------- /projects/LaunchWithDropzone/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/LaunchWithDropzone/LICENSE.txt -------------------------------------------------------------------------------- /projects/LaunchWithDropzone/LaunchWithDropzone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/LaunchWithDropzone/LaunchWithDropzone.csproj -------------------------------------------------------------------------------- /projects/LaunchWithDropzone/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/LaunchWithDropzone/Program.cs -------------------------------------------------------------------------------- /projects/LaunchWithDropzone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/LaunchWithDropzone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/RebuildFileLists/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/RebuildFileLists/LICENSE.txt -------------------------------------------------------------------------------- /projects/RebuildFileLists/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/RebuildFileLists/Program.cs -------------------------------------------------------------------------------- /projects/RebuildFileLists/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/RebuildFileLists/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/RebuildFileLists/RebuildFileLists.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gibbed/Gibbed.JustCause4/HEAD/projects/RebuildFileLists/RebuildFileLists.csproj --------------------------------------------------------------------------------