├── .gitattributes ├── .gitignore ├── 001.NVL ├── BKEngine │ ├── BKEFileNameDumper │ │ ├── BKEFileNameDumper.sln │ │ ├── BKEFileNameDumper │ │ │ ├── BKEFileNameDumper.vcxproj │ │ │ ├── BKEFileNameDumper.vcxproj.filters │ │ │ └── dllmain.cpp │ │ ├── Common │ │ │ ├── encoding.cpp │ │ │ ├── encoding.h │ │ │ ├── file.cpp │ │ │ ├── file.h │ │ │ ├── log.cpp │ │ │ ├── log.h │ │ │ ├── path.cpp │ │ │ ├── path.h │ │ │ ├── pe.cpp │ │ │ ├── pe.h │ │ │ ├── stringhelper.cpp │ │ │ ├── stringhelper.h │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── Detours │ │ │ ├── creatwth.cpp │ │ │ ├── detours.cpp │ │ │ ├── detours.h │ │ │ ├── disasm.cpp │ │ │ ├── image.cpp │ │ │ ├── modules.cpp │ │ │ └── uimports.cpp │ │ └── Loader │ │ │ ├── Loader.cpp │ │ │ ├── Loader.vcxproj │ │ │ └── Loader.vcxproj.filters │ ├── BKEngine │ │ ├── BKEngine.sln │ │ ├── BKEngineStatic │ │ │ ├── BKEngine │ │ │ │ ├── BKARCFileBase.cs │ │ │ │ ├── BKARCFileV20.cs │ │ │ │ ├── BKARCFileV21.cs │ │ │ │ ├── BKARCFileV40.cs │ │ │ │ ├── BZip2Helper.cs │ │ │ │ └── ZstdHelper.cs │ │ │ └── BKEngineStatic.csproj │ │ └── ExtractGUI │ │ │ ├── ExtractGUI.csproj │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ └── PublishProfiles │ │ │ └── FolderProfile64.pubxml │ └── Manual.md ├── NVLKrkr2 │ ├── DataBase │ │ └── FileNameList │ │ │ ├── Conspiracy Field Fog Shadow.lst │ │ │ ├── Conspiracy Field Snow Trap.lst │ │ │ └── the Melody of Iris.lst │ ├── Manual.md │ ├── NVLKR2Extract │ │ ├── ExtractGUI │ │ │ ├── ExtractGUI.csproj │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── PublishProfiles │ │ │ │ └── FolderProfile64.pubxml │ │ ├── HashDecoder │ │ │ ├── BinaryDataConvert.cs │ │ │ ├── HashDecoder.csproj │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── PathUtil.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── PublishProfiles │ │ │ │ │ └── FolderProfile64.pubxml │ │ │ ├── TextCreator.Designer.cs │ │ │ ├── TextCreator.cs │ │ │ └── TextCreator.resx │ │ ├── NVLKR2.sln │ │ └── NVLKR2Static │ │ │ ├── NVLKR2Static.csproj │ │ │ └── NvlKr2 │ │ │ ├── GameKey.cs │ │ │ ├── XP3Archive.cs │ │ │ ├── XP3Filter.cs │ │ │ └── Zlib.cs │ └── NVLKrkrDump │ │ ├── Common │ │ ├── encoding.cpp │ │ ├── encoding.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── path.cpp │ │ ├── path.h │ │ ├── pe.cpp │ │ ├── pe.h │ │ ├── stringhelper.cpp │ │ ├── stringhelper.h │ │ ├── util.cpp │ │ └── util.h │ │ ├── Detours │ │ ├── creatwth.cpp │ │ ├── detours.cpp │ │ ├── detours.h │ │ ├── disasm.cpp │ │ ├── image.cpp │ │ ├── modules.cpp │ │ └── uimports.cpp │ │ ├── KrkrPlugin │ │ ├── tp_stub.cpp │ │ └── tp_stub.h │ │ ├── NVLKrkrDump.sln │ │ ├── NVLKrkrDump │ │ ├── NVLKrkrDump.vcxproj │ │ ├── NVLKrkrDump.vcxproj.filters │ │ └── dllmain.cpp │ │ └── NVLKrkrDumpLoader │ │ ├── KrkrDumpLoader.cpp │ │ ├── KrkrDumpLoader.vcxproj │ │ └── KrkrDumpLoader.vcxproj.filters ├── NVLUnity │ ├── Manual.md │ ├── NVLUnityDecryptor │ │ ├── DecryptorGui │ │ │ ├── DecryptorGui.csproj │ │ │ ├── MainForm.Designer.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── PublishProfiles │ │ │ │ └── FolderProfile64.pubxml │ │ ├── NvlUnity.sln │ │ └── NvlUnityDecrypt │ │ │ ├── NvlUnity.V1 │ │ │ ├── GameDBV1.cs │ │ │ └── NVLFilterV1.cs │ │ │ ├── NvlUnity │ │ │ └── ArchiveCrypto.cs │ │ │ └── NvlUnityDecryptor.csproj │ └── NVLUnityScriptDumper │ │ ├── Common │ │ ├── encoding.cpp │ │ ├── encoding.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── path.cpp │ │ ├── path.h │ │ ├── pe.cpp │ │ ├── pe.h │ │ ├── stringhelper.cpp │ │ ├── stringhelper.h │ │ ├── util.cpp │ │ └── util.h │ │ ├── Detours │ │ ├── creatwth.cpp │ │ ├── detours.cpp │ │ ├── detours.h │ │ ├── disasm.cpp │ │ ├── image.cpp │ │ ├── modules.cpp │ │ └── uimports.cpp │ │ ├── DumperGUI │ │ ├── DumperGUI.rc │ │ ├── DumperGUI.vcxproj │ │ ├── DumperGUI.vcxproj.filters │ │ ├── dllmain.cpp │ │ └── resource.h │ │ ├── Il2Cpp │ │ ├── Il2CppAPI.cpp │ │ ├── Il2CppAPI.h │ │ └── Il2CppClass.h │ │ ├── Loader │ │ ├── Loader.cpp │ │ ├── Loader.vcxproj │ │ └── Loader.vcxproj.filters │ │ ├── NVLUnityScriptDumper.sln │ │ └── ScriptDumper │ │ ├── Export.def │ │ ├── ScriptDumper.vcxproj │ │ ├── ScriptDumper.vcxproj.filters │ │ └── dllmain.cpp └── NVLWeb │ ├── ConsoleTest │ ├── ConsoleTest.csproj │ └── Program.cs │ ├── EndOfTheWorldExtractor │ ├── EndOfTheWorldExtractor.csproj │ └── Program.cs │ ├── Manual.md │ ├── NVLWeb.sln │ └── NVLWebStatic │ ├── ASARPackage.cs │ ├── Crypto.cs │ ├── EndOfTheWorld.cs │ ├── EntryProcess.cs │ └── NVLWebStatic.csproj ├── 002.Strrationalism └── Snowing │ ├── Manual.md │ └── SnowingExtract │ ├── ConsoleExecute │ ├── ConsoleExecute.csproj │ └── Program.cs │ ├── SnowingExtract.sln │ ├── SnowingStatic │ ├── Snowing.Games │ │ └── GameKeys.cs │ ├── Snowing │ │ ├── AesHelper.cs │ │ ├── Archive.cs │ │ ├── ArchiveFile.cs │ │ ├── MemorySearch.cs │ │ ├── ScenarioArchive.cs │ │ ├── StructureConvert.cs │ │ └── TextureArchive.cs │ └── SnowingStatic.csproj │ └── VainRiserExtractor │ ├── Program.cs │ └── VainRiserExtractor.csproj ├── 003.BlueAngel ├── BlueAngelExtract │ ├── BlueAngelExtract.sln │ ├── BlueAngelStaticExtract │ │ ├── BlueAngel.StarlightofAeons │ │ │ ├── Archive.cs │ │ │ └── Key.cs │ │ ├── BlueAngel.V1 │ │ │ └── ArchiveCrypto.cs │ │ ├── BlueAngel │ │ │ ├── AssemblyEmulator.cs │ │ │ ├── LZ4.cs │ │ │ └── XP3Archive.cs │ │ └── BlueAngelStaticExtract.csproj │ ├── ConsoleExecute │ │ ├── ConsoleExecute.csproj │ │ └── Program.cs │ └── StarlightofAeonsExtractor │ │ ├── Program.cs │ │ └── StarlightofAeonsExtractor.csproj ├── Manual.md └── TheCardinalMemoryNotch │ ├── ConsoleExecute │ ├── ConsoleExecute.csproj │ └── Program.cs │ ├── EngineCoreStatic │ ├── EngineCoreStatic.csproj │ ├── SPKArchive.cs │ ├── XP3Struct.cs │ └── Zlib.cs │ ├── ExtractorV1 │ ├── ExtractorV1.csproj │ └── Program.cs │ ├── ProtectorFileDumper │ ├── Common │ │ ├── directory.cpp │ │ ├── directory.h │ │ ├── encoding.cpp │ │ ├── encoding.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── path.cpp │ │ ├── path.h │ │ ├── pe.cpp │ │ ├── pe.h │ │ ├── stringhelper.cpp │ │ ├── stringhelper.h │ │ ├── util.cpp │ │ └── util.h │ ├── ProtectorFileDumper.vcxproj │ ├── ProtectorFileDumper.vcxproj.filters │ └── dllmain.cpp │ └── TheCardinalMemoryNotch.sln ├── 004.Fontainebleau ├── Manual.md └── MeetInParisDumper │ ├── Fontainebleau.sln │ ├── MeetInParisDumper │ ├── BaseType.h │ ├── MeetInParisDumper.vcxproj │ ├── MeetInParisDumper.vcxproj.filters │ ├── Path.cpp │ ├── Path.h │ ├── StringHelper.cpp │ ├── StringHelper.h │ └── dllmain.cpp │ └── Rename │ ├── Program.cs │ └── Rename.csproj ├── 005.ZixSolution ├── ConsoleExecute │ ├── ConsoleExecute.csproj │ └── Program.cs ├── Extractor │ ├── Extractor.csproj │ ├── Untils │ │ ├── Pickle.cs │ │ └── Zlib.cs │ ├── ZixRenpy7V1 │ │ ├── Archive.cs │ │ └── Crypto.cs │ └── ZixRenpy8V1 │ │ ├── Archive.cs │ │ └── Crypto.cs ├── Manual.md ├── ZixExtractorR7 │ ├── Program.cs │ └── ZixExtractorR7.csproj ├── ZixExtractorR8 │ ├── Program.cs │ └── ZixExtractorR8.csproj └── zedraxloRenpy.sln ├── 006.iFAction └── iFActionTool │ ├── ConsoleExecute │ ├── ConsoleExecute.csproj │ └── Program.cs │ ├── Manual.md │ ├── UnitTest │ ├── Program.cs │ └── UnitTest.csproj │ ├── iFActionExtractor │ ├── IFAction.V1 │ │ └── Archive.cs │ └── iFActionExtractor.csproj │ └── iFActionTool.sln ├── 007.AsicxArt ├── AsicxArtTool │ ├── AsicxArt.sln │ ├── AsicxArtStatic │ │ ├── AsicxArt.V1 │ │ │ ├── Archive.cs │ │ │ └── Games.cs │ │ ├── AsicxArt │ │ │ ├── MemoryExtension.cs │ │ │ ├── SQLite3.cs │ │ │ └── SQLite3Command.cs │ │ ├── AsicxArtStatic.csproj │ │ └── sqlite3.dll │ └── ExtractorGui │ │ ├── ExtractorGui.csproj │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ └── Properties │ │ └── PublishProfiles │ │ └── FolderProfile86.pubxml └── Manual.md ├── 008.XinYvanGames ├── Manual.md ├── SapphireMoonForeverMemories │ └── ExtractorCode.cs ├── ShadowOfTwelveKeyGen │ ├── Program.cs │ └── ShadowOfTwelveKeyGen.csproj └── XinYvanGames.sln ├── 009.SoraPlayer ├── Manual.md └── SOAExtract │ ├── ConsoleExecute │ ├── ConsoleExecute.csproj │ └── Program.cs │ ├── SoraPlayer.sln │ ├── SoraPlayerExtractorV1 │ ├── Program.cs │ └── SoraPlayerExtractorV1.csproj │ └── SoraPlayerStatic │ ├── Archive.cs │ ├── SoraPlayerStatic.csproj │ ├── XP3Archive.cs │ └── Zlib.cs ├── 010.UniversalXP3DecFilter ├── MainFrom │ ├── MainFrom.Designer.cs │ ├── MainFrom.cs │ ├── MainFrom.csproj │ ├── MainFrom.resx │ ├── Program.cs │ └── Properties │ │ └── PublishProfiles │ │ └── FolderProfile64.pubxml ├── Manual.md ├── XP3Archive │ ├── Archive.cs │ ├── XP3Archive.cs │ ├── XP3Archive.csproj │ ├── XP3Filter.cs │ └── Zlib.cs └── XP3DecTPM.sln ├── 011.Irregulars ├── ConsoleTest │ ├── ConsoleTest.csproj │ └── Program.cs ├── Irregulars.sln ├── IrregularsExtractorV1 │ ├── IrregularsExtractorV1.csproj │ └── Program.cs ├── IrregularsStatic │ ├── Crypto.cs │ ├── IrregularsStatic.csproj │ └── PathUtil.cs └── Manual.md ├── 012.VisualNovelMaker ├── ConsoleTest │ ├── ConsoleTest.csproj │ └── Program.cs ├── Manual.md ├── VNMakerCore │ ├── Crypto.V1 │ │ └── Games │ │ │ └── GameInfo.cs │ ├── General │ │ ├── CryptoFilter.cs │ │ ├── NWPath.cs │ │ └── NWResource.cs │ └── VNMakerCore.csproj ├── VNMakerGUI │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties │ │ └── PublishProfiles │ │ │ └── FolderProfile64.pubxml │ └── VNMakerGUI.csproj └── VisualNovelMaker.sln ├── 013.GameCreatorTool ├── GCExtractorGUI │ ├── GCExtractorGUI.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ └── Properties │ │ └── PublishProfiles │ │ └── FolderProfile64.pubxml ├── GameCreatorStatic │ ├── Commom.cs │ ├── Extractor.V1 │ │ ├── GCCryptoV1.cs │ │ ├── GCGameV1.cs │ │ └── GCStructureV1.cs │ ├── GameCreatorStatic.csproj │ └── Utils.cs ├── GameCreatorTool.sln ├── Manual.md └── UnitTest │ ├── Program.cs │ └── UnitTest.csproj ├── 014.OrangeStudio ├── Lover │ ├── ConsoleExecute │ │ ├── ConsoleExecute.csproj │ │ ├── ImageDecoder.cs │ │ ├── Program.cs │ │ └── StreamExtend.cs │ └── Lover.sln └── Manual.md ├── 015.SeparateHearts └── SeparateHeartsEngineExtractor │ ├── ConsoleExecute │ ├── ConsoleExecute.csproj │ └── Program.cs │ ├── EngineCoreStatic │ ├── EngineCoreStatic.csproj │ ├── HACDecompressor.cs │ ├── HACDirectFile.cs │ ├── HACImageDecoder.cs │ ├── HACPackage.cs │ ├── HACStreamExtend.cs │ ├── HTPImageDecoder.cs │ └── ImageProcessUtils.cs │ ├── Manual.md │ ├── SeparateHeartsEngineExtractor.sln │ └── SeparateHeartsExtractorV1 │ ├── Program.cs │ └── SeparateHeartsExtractorV1.csproj ├── 016.NekoNovel └── NekoNovel │ ├── ConsoleExecute │ ├── ConsoleExecute.csproj │ └── Program.cs │ ├── Manual.md │ ├── NekoNovel.sln │ ├── NekoNovelExtractorV1 │ ├── NekoNovelExtractorV1.csproj │ └── Program.cs │ └── NekoNovelStatic │ ├── NekoNovelStatic.csproj │ ├── NekoPackage.cs │ ├── StreamExtend.cs │ └── Zlib.cs ├── 017.OurshowGames ├── ConsoleTest │ ├── ConsoleTest.csproj │ └── Program.cs ├── Manual.md ├── OurshowExtractorV1 │ ├── OurshowExtractorV1.csproj │ └── Program.cs ├── OurshowGames.sln └── OurshowStatic │ ├── AGPArchiveV1.cs │ ├── BitReader.cs │ ├── CompressLZ77.cs │ └── OurshowStatic.csproj ├── 018.CaramelMochaStudio └── TheStreetOfAdriftToolkit │ ├── Manual.md │ ├── TSOACheat │ ├── BulletHellCheat.cpp │ ├── BulletHellCheat.h │ ├── Common │ │ ├── directory.cpp │ │ ├── directory.h │ │ ├── encoding.cpp │ │ ├── encoding.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── path.cpp │ │ ├── path.h │ │ ├── pe.cpp │ │ ├── pe.h │ │ ├── stringhelper.cpp │ │ ├── stringhelper.h │ │ ├── util.cpp │ │ └── util.h │ ├── Detours │ │ ├── creatwth.cpp │ │ ├── detours.cpp │ │ ├── detours.h │ │ ├── disasm.cpp │ │ ├── image.cpp │ │ ├── modules.cpp │ │ └── uimports.cpp │ ├── ExtendUtils.h │ ├── GameDotCheat.cpp │ ├── GameDotCheat.h │ ├── Il2Cpp │ │ ├── Il2Cpp.cpp │ │ ├── Il2Cpp.h │ │ ├── Il2CppAPI.cpp │ │ ├── Il2CppAPI.h │ │ └── Il2CppHeader.h │ ├── Ntdll │ │ ├── ntdll.h │ │ ├── ntdll_x64.lib │ │ ├── ntdll_x86.lib │ │ ├── ntdllp_x64.lib │ │ └── ntdllp_x86.lib │ ├── NtdllExtend.cpp │ ├── NtdllExtend.h │ ├── System.cpp │ ├── System.h │ ├── TSOACheat.vcxproj │ ├── TSOACheat.vcxproj.filters │ ├── UnityEngine.cpp │ ├── UnityEngine.h │ └── dllmain.cpp │ ├── TSOALoader │ ├── Common │ │ ├── directory.cpp │ │ ├── directory.h │ │ ├── encoding.cpp │ │ ├── encoding.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── path.cpp │ │ ├── path.h │ │ ├── pe.cpp │ │ ├── pe.h │ │ ├── stringhelper.cpp │ │ ├── stringhelper.h │ │ ├── util.cpp │ │ └── util.h │ ├── Detours │ │ ├── creatwth.cpp │ │ ├── detours.cpp │ │ ├── detours.h │ │ ├── disasm.cpp │ │ ├── image.cpp │ │ ├── modules.cpp │ │ └── uimports.cpp │ ├── TSOALoader.vcxproj │ ├── TSOALoader.vcxproj.filters │ └── winmain.cpp │ └── TheStreetOfAdriftToolkit.sln ├── 019.PygmaGame ├── ExtractorV1 │ ├── ExtractorV1.csproj │ └── Program.cs ├── Manual.md ├── PygmaGame.sln ├── PygmaGameStatic │ ├── Misc │ │ └── DeobfuscatorV1.cs │ ├── Pickle.cs │ ├── PygmaGameStatic.csproj │ ├── WJZRenpyPackageV1.cs │ └── Zlib.cs └── UnitTest │ ├── Program.cs │ └── UnitTest.csproj ├── 020.Xso ├── ExtractorV1 │ ├── ExtractorV1.csproj │ └── Program.cs ├── Manual.md ├── UnitTest │ ├── Program.cs │ └── UnitTest.csproj ├── Xso.sln └── XsoStatic │ ├── Pickle.cs │ ├── XsoRenpyV1.cs │ ├── XsoStatic.csproj │ └── Zlib.cs ├── 021.UniversalRPAExtractor ├── Manual.md ├── RPAArchive │ ├── RPAArchive.csproj │ ├── RenpyRPA.cs │ ├── RenpyRPAv3.cs │ └── Utils │ │ ├── Pickle.cs │ │ └── Zlib.cs ├── RPAExtractorGUI │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties │ │ └── PublishProfiles │ │ │ └── FolderProfile64.pubxml │ └── RPAExtractorGUI.csproj └── UniversalRPAExtractor.sln ├── 022.XiangShe ├── AGreatScientistDecryptor │ ├── AGreatScientistDecryptor.csproj │ └── Program.cs ├── Manual.md ├── UnitTest │ ├── Program.cs │ └── UnitTest.csproj ├── XiangShe.sln └── XiangSheStatic │ ├── Crypto.V1 │ ├── Crypto.cs │ ├── GameDB.cs │ └── ResourceExtractor.cs │ ├── Utils │ └── GZip.cs │ └── XiangSheStatic.csproj ├── 994.AleCubicSoft └── UndercoverAgent │ ├── Manual.md │ ├── UALoader │ ├── Common │ │ ├── directory.cpp │ │ ├── directory.h │ │ ├── encoding.cpp │ │ ├── encoding.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── path.cpp │ │ ├── path.h │ │ ├── pe.cpp │ │ ├── pe.h │ │ ├── stringhelper.cpp │ │ ├── stringhelper.h │ │ ├── util.cpp │ │ └── util.h │ ├── Detours │ │ ├── creatwth.cpp │ │ ├── detours.cpp │ │ ├── detours.h │ │ ├── disasm.cpp │ │ ├── image.cpp │ │ ├── modules.cpp │ │ └── uimports.cpp │ ├── UALoader.vcxproj │ ├── UALoader.vcxproj.filters │ └── winmain.cpp │ ├── UAPatch │ ├── Common │ │ ├── directory.cpp │ │ ├── directory.h │ │ ├── encoding.cpp │ │ ├── encoding.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── path.cpp │ │ ├── path.h │ │ ├── pe.cpp │ │ ├── pe.h │ │ ├── stringhelper.cpp │ │ ├── stringhelper.h │ │ ├── util.cpp │ │ └── util.h │ ├── Detours │ │ ├── creatwth.cpp │ │ ├── detours.cpp │ │ ├── detours.h │ │ ├── disasm.cpp │ │ ├── image.cpp │ │ ├── modules.cpp │ │ └── uimports.cpp │ ├── ExtendUtils.h │ ├── Il2Cpp │ │ ├── Il2Cpp.cpp │ │ ├── Il2Cpp.h │ │ ├── Il2CppApi.cpp │ │ ├── Il2CppApi.h │ │ └── Il2CppHeader.h │ ├── Ntdll │ │ ├── ntdll.h │ │ ├── ntdll_x64.lib │ │ ├── ntdll_x86.lib │ │ ├── ntdllp_x64.lib │ │ └── ntdllp_x86.lib │ ├── NtdllExtend.cpp │ ├── NtdllExtend.h │ ├── SaveDataPatch.cpp │ ├── SaveDataPatch.h │ ├── TSKTContainer.h │ ├── UAPatch.vcxproj │ ├── UAPatch.vcxproj.filters │ └── dllmain.cpp │ └── UndercoverAgent.sln ├── 995.Chatte Noire ├── 01.Nie no Hakoniwa │ ├── FileExtractor │ │ ├── ExfsPackage.cs │ │ ├── FileExtractor.csproj │ │ └── Program.cs │ └── Nie no Hakoniwa.sln └── Manual.md ├── 996.LightVN └── LightVN │ ├── ConsoleExecute │ ├── ConsoleExecute.csproj │ └── Program.cs │ ├── LightVN.sln │ ├── LightVNExtractorV1 │ ├── LightVNExtractorV1.csproj │ └── Program.cs │ ├── LightVNExtractorV2 │ ├── LightVNExtractorV2.csproj │ └── Program.cs │ ├── LightVNStatic │ ├── CryptoFilterV1.cs │ ├── CryptoFilterV2.cs │ ├── GameV1.cs │ ├── GameV2.cs │ ├── LightVNStatic.csproj │ ├── PackageV1.cs │ └── PackageV2.cs │ └── Manual.md ├── 997.SyawaseWorks ├── HamidashiCreative │ ├── Common │ │ ├── encoding.cpp │ │ ├── encoding.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── path.cpp │ │ ├── path.h │ │ ├── pe.cpp │ │ ├── pe.h │ │ ├── stringhelper.cpp │ │ ├── stringhelper.h │ │ ├── util.cpp │ │ └── util.h │ ├── ConsoleExecute │ │ ├── ConsoleExecute.csproj │ │ └── Program.cs │ ├── Detours │ │ ├── creatwth.cpp │ │ ├── detours.cpp │ │ ├── detours.h │ │ ├── disasm.cpp │ │ ├── image.cpp │ │ ├── modules.cpp │ │ └── uimports.cpp │ ├── HamidashiCreative.sln │ ├── HamidashiCreativeStatic │ │ ├── HamidashiCreativeStatic.csproj │ │ ├── SWArchive.cs │ │ ├── SWFilter.cs │ │ └── SWHash.cs │ ├── HamidashiPatch │ │ ├── HamidashiPatch.vcxproj │ │ ├── HamidashiPatch.vcxproj.filters │ │ └── dllmain.cpp │ ├── Ntdll │ │ ├── ntdll.h │ │ ├── ntdll_x64.lib │ │ ├── ntdll_x86.lib │ │ ├── ntdllp_x64.lib │ │ └── ntdllp_x86.lib │ └── SteamPatch │ │ ├── ds.ini │ │ ├── steam_32.dll │ │ └── steamclient.dll ├── HappyLiveShowUp │ ├── Common │ │ ├── encoding.cpp │ │ ├── encoding.h │ │ ├── file.cpp │ │ ├── file.h │ │ ├── log.cpp │ │ ├── log.h │ │ ├── path.cpp │ │ ├── path.h │ │ ├── pe.cpp │ │ ├── pe.h │ │ ├── stringhelper.cpp │ │ ├── stringhelper.h │ │ ├── util.cpp │ │ └── util.h │ ├── ConsoleExecute │ │ ├── ConsoleExecute.csproj │ │ └── Program.cs │ ├── Detours │ │ ├── creatwth.cpp │ │ ├── detours.cpp │ │ ├── detours.h │ │ ├── disasm.cpp │ │ ├── image.cpp │ │ ├── modules.cpp │ │ └── uimports.cpp │ ├── HappyLiveShowUp.sln │ ├── HappyLiveShowUpStatic │ │ ├── Enc_Key_V102 │ │ ├── HappyLiveShowUpStatic.csproj │ │ ├── Patch_Key_V102 │ │ ├── SWCrypto.cs │ │ ├── SWDataPack.cs │ │ └── SWGameData.cs │ ├── Ntdll │ │ ├── ntdll.h │ │ ├── ntdll_x64.lib │ │ ├── ntdll_x86.lib │ │ ├── ntdllp_x64.lib │ │ └── ntdllp_x86.lib │ ├── Patch │ │ ├── Patch.vcxproj │ │ ├── Patch.vcxproj.filters │ │ └── dllmain.cpp │ ├── SteamPatch │ │ ├── ds.ini │ │ ├── steam_32.dll │ │ └── steamclient.dll │ └── TestExecute │ │ ├── Program.cs │ │ └── TestExecute.csproj └── Manual.md ├── 998.HikariField ├── FutureRadio │ ├── ConsoleExecute │ │ ├── ConsoleExecute.csproj │ │ └── Program.cs │ ├── FutureRadio.sln │ ├── FutureRadioStatic │ │ ├── BinArchive.cs │ │ ├── FutureRadioStatic.csproj │ │ └── PidaArchive.cs │ └── Manual.md ├── HFUnityV1 │ ├── AonatsuLine │ │ ├── AonatsuLine.csproj │ │ └── Program.cs │ ├── EngineCore │ │ ├── EngineCore.csproj │ │ ├── PacArchive.cs │ │ ├── QuickLZ.cs │ │ └── Until.cs │ ├── HFUnityV1.sln │ ├── MakingLoverFHD │ │ ├── MakingLoverFHD.csproj │ │ └── Program.cs │ └── Manual.md └── NekoNyan │ ├── ConsoleExecute │ ├── ConsoleExecute.csproj │ └── Program.cs │ ├── ExtractorGUI │ ├── ExtractorGUI.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ └── Properties │ │ └── PublishProfiles │ │ └── FolderProfile64.pubxml │ ├── Manual.md │ ├── NekoNyan.sln │ └── NekoNyanStatic │ ├── Crypto.V1 │ ├── ArchiveCryptoV10.cs │ ├── ArchiveCryptoV11.cs │ ├── ArchiveCryptoV12.cs │ └── ArchiveCryptoV13.cs │ ├── Crypto │ ├── ArchiveCryptoBase.cs │ └── DataManager.cs │ └── NekoNyanStatic.csproj ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/.gitignore -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/BKEFileNameDumper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/BKEFileNameDumper.sln -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/BKEFileNameDumper/BKEFileNameDumper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/BKEFileNameDumper/BKEFileNameDumper.vcxproj -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/BKEFileNameDumper/BKEFileNameDumper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/BKEFileNameDumper/BKEFileNameDumper.vcxproj.filters -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/BKEFileNameDumper/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/BKEFileNameDumper/dllmain.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/encoding.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/encoding.h -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/file.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/file.h -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/log.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/log.h -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/path.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/path.h -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/pe.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/pe.h -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/stringhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/stringhelper.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/stringhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/stringhelper.h -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/util.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Common/util.h -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Detours/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Detours/creatwth.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Detours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Detours/detours.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Detours/detours.h -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Detours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Detours/disasm.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Detours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Detours/image.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Detours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Detours/modules.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Detours/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Detours/uimports.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Loader/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Loader/Loader.cpp -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Loader/Loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Loader/Loader.vcxproj -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEFileNameDumper/Loader/Loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEFileNameDumper/Loader/Loader.vcxproj.filters -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/BKEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/BKEngine.sln -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngine/BKARCFileBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngine/BKARCFileBase.cs -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngine/BKARCFileV20.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngine/BKARCFileV20.cs -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngine/BKARCFileV21.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngine/BKARCFileV21.cs -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngine/BKARCFileV40.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngine/BKARCFileV40.cs -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngine/BZip2Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngine/BZip2Helper.cs -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngine/ZstdHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngine/ZstdHelper.cs -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngineStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/BKEngineStatic/BKEngineStatic.csproj -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/ExtractGUI/ExtractGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/ExtractGUI/ExtractGUI.csproj -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/ExtractGUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/ExtractGUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/ExtractGUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/ExtractGUI/MainForm.cs -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/ExtractGUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/ExtractGUI/MainForm.resx -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/ExtractGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/ExtractGUI/Program.cs -------------------------------------------------------------------------------- /001.NVL/BKEngine/BKEngine/ExtractGUI/Properties/PublishProfiles/FolderProfile64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/BKEngine/ExtractGUI/Properties/PublishProfiles/FolderProfile64.pubxml -------------------------------------------------------------------------------- /001.NVL/BKEngine/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/BKEngine/Manual.md -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/DataBase/FileNameList/Conspiracy Field Fog Shadow.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/DataBase/FileNameList/Conspiracy Field Fog Shadow.lst -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/DataBase/FileNameList/Conspiracy Field Snow Trap.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/DataBase/FileNameList/Conspiracy Field Snow Trap.lst -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/DataBase/FileNameList/the Melody of Iris.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/DataBase/FileNameList/the Melody of Iris.lst -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/Manual.md -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/ExtractGUI/ExtractGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/ExtractGUI/ExtractGUI.csproj -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/ExtractGUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/ExtractGUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/ExtractGUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/ExtractGUI/MainForm.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/ExtractGUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/ExtractGUI/MainForm.resx -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/ExtractGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/ExtractGUI/Program.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/ExtractGUI/Properties/PublishProfiles/FolderProfile64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/ExtractGUI/Properties/PublishProfiles/FolderProfile64.pubxml -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/BinaryDataConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/BinaryDataConvert.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/HashDecoder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/HashDecoder.csproj -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/MainForm.Designer.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/MainForm.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/MainForm.resx -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/PathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/PathUtil.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/Program.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/Properties/PublishProfiles/FolderProfile64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/Properties/PublishProfiles/FolderProfile64.pubxml -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/TextCreator.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/TextCreator.Designer.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/TextCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/TextCreator.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/TextCreator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/HashDecoder/TextCreator.resx -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/NVLKR2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/NVLKR2.sln -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/NVLKR2Static/NVLKR2Static.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/NVLKR2Static/NVLKR2Static.csproj -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/NVLKR2Static/NvlKr2/GameKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/NVLKR2Static/NvlKr2/GameKey.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/NVLKR2Static/NvlKr2/XP3Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/NVLKR2Static/NvlKr2/XP3Archive.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/NVLKR2Static/NvlKr2/XP3Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/NVLKR2Static/NvlKr2/XP3Filter.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKR2Extract/NVLKR2Static/NvlKr2/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKR2Extract/NVLKR2Static/NvlKr2/Zlib.cs -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/encoding.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/encoding.h -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/file.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/file.h -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/log.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/log.h -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/path.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/path.h -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/pe.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/pe.h -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/stringhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/stringhelper.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/stringhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/stringhelper.h -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/util.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Common/util.h -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Detours/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Detours/creatwth.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Detours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Detours/detours.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Detours/detours.h -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Detours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Detours/disasm.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Detours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Detours/image.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Detours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Detours/modules.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/Detours/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/Detours/uimports.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/KrkrPlugin/tp_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/KrkrPlugin/tp_stub.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/KrkrPlugin/tp_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/KrkrPlugin/tp_stub.h -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDump.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDump.sln -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDump/NVLKrkrDump.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDump/NVLKrkrDump.vcxproj -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDump/NVLKrkrDump.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDump/NVLKrkrDump.vcxproj.filters -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDump/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDump/dllmain.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDumpLoader/KrkrDumpLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDumpLoader/KrkrDumpLoader.cpp -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDumpLoader/KrkrDumpLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDumpLoader/KrkrDumpLoader.vcxproj -------------------------------------------------------------------------------- /001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDumpLoader/KrkrDumpLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLKrkr2/NVLKrkrDump/NVLKrkrDumpLoader/KrkrDumpLoader.vcxproj.filters -------------------------------------------------------------------------------- /001.NVL/NVLUnity/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/Manual.md -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityDecryptor/DecryptorGui/DecryptorGui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityDecryptor/DecryptorGui/DecryptorGui.csproj -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityDecryptor/DecryptorGui/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityDecryptor/DecryptorGui/MainForm.Designer.cs -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityDecryptor/DecryptorGui/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityDecryptor/DecryptorGui/MainForm.cs -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityDecryptor/DecryptorGui/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityDecryptor/DecryptorGui/MainForm.resx -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityDecryptor/DecryptorGui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityDecryptor/DecryptorGui/Program.cs -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityDecryptor/DecryptorGui/Properties/PublishProfiles/FolderProfile64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityDecryptor/DecryptorGui/Properties/PublishProfiles/FolderProfile64.pubxml -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityDecryptor/NvlUnity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityDecryptor/NvlUnity.sln -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityDecryptor/NvlUnityDecrypt/NvlUnity.V1/GameDBV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityDecryptor/NvlUnityDecrypt/NvlUnity.V1/GameDBV1.cs -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityDecryptor/NvlUnityDecrypt/NvlUnity.V1/NVLFilterV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityDecryptor/NvlUnityDecrypt/NvlUnity.V1/NVLFilterV1.cs -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityDecryptor/NvlUnityDecrypt/NvlUnity/ArchiveCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityDecryptor/NvlUnityDecrypt/NvlUnity/ArchiveCrypto.cs -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityDecryptor/NvlUnityDecrypt/NvlUnityDecryptor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityDecryptor/NvlUnityDecrypt/NvlUnityDecryptor.csproj -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/encoding.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/encoding.h -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/file.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/file.h -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/log.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/log.h -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/path.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/path.h -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/pe.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/pe.h -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/stringhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/stringhelper.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/stringhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/stringhelper.h -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/util.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Common/util.h -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/creatwth.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/detours.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/detours.h -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/disasm.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/image.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/modules.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Detours/uimports.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/DumperGUI/DumperGUI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/DumperGUI/DumperGUI.rc -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/DumperGUI/DumperGUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/DumperGUI/DumperGUI.vcxproj -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/DumperGUI/DumperGUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/DumperGUI/DumperGUI.vcxproj.filters -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/DumperGUI/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/DumperGUI/dllmain.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/DumperGUI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/DumperGUI/resource.h -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Il2Cpp/Il2CppAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Il2Cpp/Il2CppAPI.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Il2Cpp/Il2CppAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Il2Cpp/Il2CppAPI.h -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Il2Cpp/Il2CppClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Il2Cpp/Il2CppClass.h -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Loader/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Loader/Loader.cpp -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Loader/Loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Loader/Loader.vcxproj -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/Loader/Loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/Loader/Loader.vcxproj.filters -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/NVLUnityScriptDumper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/NVLUnityScriptDumper.sln -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/ScriptDumper/Export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/ScriptDumper/Export.def -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/ScriptDumper/ScriptDumper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/ScriptDumper/ScriptDumper.vcxproj -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/ScriptDumper/ScriptDumper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/ScriptDumper/ScriptDumper.vcxproj.filters -------------------------------------------------------------------------------- /001.NVL/NVLUnity/NVLUnityScriptDumper/ScriptDumper/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLUnity/NVLUnityScriptDumper/ScriptDumper/dllmain.cpp -------------------------------------------------------------------------------- /001.NVL/NVLWeb/ConsoleTest/ConsoleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLWeb/ConsoleTest/ConsoleTest.csproj -------------------------------------------------------------------------------- /001.NVL/NVLWeb/ConsoleTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLWeb/ConsoleTest/Program.cs -------------------------------------------------------------------------------- /001.NVL/NVLWeb/EndOfTheWorldExtractor/EndOfTheWorldExtractor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLWeb/EndOfTheWorldExtractor/EndOfTheWorldExtractor.csproj -------------------------------------------------------------------------------- /001.NVL/NVLWeb/EndOfTheWorldExtractor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLWeb/EndOfTheWorldExtractor/Program.cs -------------------------------------------------------------------------------- /001.NVL/NVLWeb/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLWeb/Manual.md -------------------------------------------------------------------------------- /001.NVL/NVLWeb/NVLWeb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLWeb/NVLWeb.sln -------------------------------------------------------------------------------- /001.NVL/NVLWeb/NVLWebStatic/ASARPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLWeb/NVLWebStatic/ASARPackage.cs -------------------------------------------------------------------------------- /001.NVL/NVLWeb/NVLWebStatic/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLWeb/NVLWebStatic/Crypto.cs -------------------------------------------------------------------------------- /001.NVL/NVLWeb/NVLWebStatic/EndOfTheWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLWeb/NVLWebStatic/EndOfTheWorld.cs -------------------------------------------------------------------------------- /001.NVL/NVLWeb/NVLWebStatic/EntryProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLWeb/NVLWebStatic/EntryProcess.cs -------------------------------------------------------------------------------- /001.NVL/NVLWeb/NVLWebStatic/NVLWebStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/001.NVL/NVLWeb/NVLWebStatic/NVLWebStatic.csproj -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/Manual.md -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/SnowingExtract.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/SnowingExtract.sln -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing.Games/GameKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing.Games/GameKeys.cs -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/AesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/AesHelper.cs -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/Archive.cs -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/ArchiveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/ArchiveFile.cs -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/MemorySearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/MemorySearch.cs -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/ScenarioArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/ScenarioArchive.cs -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/StructureConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/StructureConvert.cs -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/TextureArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/Snowing/TextureArchive.cs -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/SnowingStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/SnowingStatic/SnowingStatic.csproj -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/VainRiserExtractor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/VainRiserExtractor/Program.cs -------------------------------------------------------------------------------- /002.Strrationalism/Snowing/SnowingExtract/VainRiserExtractor/VainRiserExtractor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/002.Strrationalism/Snowing/SnowingExtract/VainRiserExtractor/VainRiserExtractor.csproj -------------------------------------------------------------------------------- /003.BlueAngel/BlueAngelExtract/BlueAngelExtract.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/BlueAngelExtract/BlueAngelExtract.sln -------------------------------------------------------------------------------- /003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngel.StarlightofAeons/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngel.StarlightofAeons/Archive.cs -------------------------------------------------------------------------------- /003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngel.StarlightofAeons/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngel.StarlightofAeons/Key.cs -------------------------------------------------------------------------------- /003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngel.V1/ArchiveCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngel.V1/ArchiveCrypto.cs -------------------------------------------------------------------------------- /003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngel/AssemblyEmulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngel/AssemblyEmulator.cs -------------------------------------------------------------------------------- /003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngel/LZ4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngel/LZ4.cs -------------------------------------------------------------------------------- /003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngel/XP3Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngel/XP3Archive.cs -------------------------------------------------------------------------------- /003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngelStaticExtract.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/BlueAngelExtract/BlueAngelStaticExtract/BlueAngelStaticExtract.csproj -------------------------------------------------------------------------------- /003.BlueAngel/BlueAngelExtract/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/BlueAngelExtract/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /003.BlueAngel/BlueAngelExtract/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/BlueAngelExtract/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /003.BlueAngel/BlueAngelExtract/StarlightofAeonsExtractor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/BlueAngelExtract/StarlightofAeonsExtractor/Program.cs -------------------------------------------------------------------------------- /003.BlueAngel/BlueAngelExtract/StarlightofAeonsExtractor/StarlightofAeonsExtractor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/BlueAngelExtract/StarlightofAeonsExtractor/StarlightofAeonsExtractor.csproj -------------------------------------------------------------------------------- /003.BlueAngel/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/Manual.md -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/EngineCoreStatic/EngineCoreStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/EngineCoreStatic/EngineCoreStatic.csproj -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/EngineCoreStatic/SPKArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/EngineCoreStatic/SPKArchive.cs -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/EngineCoreStatic/XP3Struct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/EngineCoreStatic/XP3Struct.cs -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/EngineCoreStatic/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/EngineCoreStatic/Zlib.cs -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ExtractorV1/ExtractorV1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ExtractorV1/ExtractorV1.csproj -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ExtractorV1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ExtractorV1/Program.cs -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/directory.cpp -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/directory.h -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/encoding.cpp -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/encoding.h -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/file.cpp -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/file.h -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/log.cpp -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/log.h -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/path.cpp -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/path.h -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/pe.cpp -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/pe.h -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/stringhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/stringhelper.cpp -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/stringhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/stringhelper.h -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/util.cpp -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/Common/util.h -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/ProtectorFileDumper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/ProtectorFileDumper.vcxproj -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/ProtectorFileDumper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/ProtectorFileDumper.vcxproj.filters -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/ProtectorFileDumper/dllmain.cpp -------------------------------------------------------------------------------- /003.BlueAngel/TheCardinalMemoryNotch/TheCardinalMemoryNotch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/003.BlueAngel/TheCardinalMemoryNotch/TheCardinalMemoryNotch.sln -------------------------------------------------------------------------------- /004.Fontainebleau/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/004.Fontainebleau/Manual.md -------------------------------------------------------------------------------- /004.Fontainebleau/MeetInParisDumper/Fontainebleau.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/004.Fontainebleau/MeetInParisDumper/Fontainebleau.sln -------------------------------------------------------------------------------- /004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/BaseType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/BaseType.h -------------------------------------------------------------------------------- /004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/MeetInParisDumper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/MeetInParisDumper.vcxproj -------------------------------------------------------------------------------- /004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/MeetInParisDumper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/MeetInParisDumper.vcxproj.filters -------------------------------------------------------------------------------- /004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/Path.cpp -------------------------------------------------------------------------------- /004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/Path.h -------------------------------------------------------------------------------- /004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/StringHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/StringHelper.cpp -------------------------------------------------------------------------------- /004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/StringHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/StringHelper.h -------------------------------------------------------------------------------- /004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/004.Fontainebleau/MeetInParisDumper/MeetInParisDumper/dllmain.cpp -------------------------------------------------------------------------------- /004.Fontainebleau/MeetInParisDumper/Rename/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/004.Fontainebleau/MeetInParisDumper/Rename/Program.cs -------------------------------------------------------------------------------- /004.Fontainebleau/MeetInParisDumper/Rename/Rename.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/004.Fontainebleau/MeetInParisDumper/Rename/Rename.csproj -------------------------------------------------------------------------------- /005.ZixSolution/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /005.ZixSolution/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /005.ZixSolution/Extractor/Extractor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/Extractor/Extractor.csproj -------------------------------------------------------------------------------- /005.ZixSolution/Extractor/Untils/Pickle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/Extractor/Untils/Pickle.cs -------------------------------------------------------------------------------- /005.ZixSolution/Extractor/Untils/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/Extractor/Untils/Zlib.cs -------------------------------------------------------------------------------- /005.ZixSolution/Extractor/ZixRenpy7V1/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/Extractor/ZixRenpy7V1/Archive.cs -------------------------------------------------------------------------------- /005.ZixSolution/Extractor/ZixRenpy7V1/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/Extractor/ZixRenpy7V1/Crypto.cs -------------------------------------------------------------------------------- /005.ZixSolution/Extractor/ZixRenpy8V1/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/Extractor/ZixRenpy8V1/Archive.cs -------------------------------------------------------------------------------- /005.ZixSolution/Extractor/ZixRenpy8V1/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/Extractor/ZixRenpy8V1/Crypto.cs -------------------------------------------------------------------------------- /005.ZixSolution/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/Manual.md -------------------------------------------------------------------------------- /005.ZixSolution/ZixExtractorR7/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/ZixExtractorR7/Program.cs -------------------------------------------------------------------------------- /005.ZixSolution/ZixExtractorR7/ZixExtractorR7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/ZixExtractorR7/ZixExtractorR7.csproj -------------------------------------------------------------------------------- /005.ZixSolution/ZixExtractorR8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/ZixExtractorR8/Program.cs -------------------------------------------------------------------------------- /005.ZixSolution/ZixExtractorR8/ZixExtractorR8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/ZixExtractorR8/ZixExtractorR8.csproj -------------------------------------------------------------------------------- /005.ZixSolution/zedraxloRenpy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/005.ZixSolution/zedraxloRenpy.sln -------------------------------------------------------------------------------- /006.iFAction/iFActionTool/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/006.iFAction/iFActionTool/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /006.iFAction/iFActionTool/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/006.iFAction/iFActionTool/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /006.iFAction/iFActionTool/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/006.iFAction/iFActionTool/Manual.md -------------------------------------------------------------------------------- /006.iFAction/iFActionTool/UnitTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/006.iFAction/iFActionTool/UnitTest/Program.cs -------------------------------------------------------------------------------- /006.iFAction/iFActionTool/UnitTest/UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/006.iFAction/iFActionTool/UnitTest/UnitTest.csproj -------------------------------------------------------------------------------- /006.iFAction/iFActionTool/iFActionExtractor/IFAction.V1/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/006.iFAction/iFActionTool/iFActionExtractor/IFAction.V1/Archive.cs -------------------------------------------------------------------------------- /006.iFAction/iFActionTool/iFActionExtractor/iFActionExtractor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/006.iFAction/iFActionTool/iFActionExtractor/iFActionExtractor.csproj -------------------------------------------------------------------------------- /006.iFAction/iFActionTool/iFActionTool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/006.iFAction/iFActionTool/iFActionTool.sln -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/AsicxArt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/AsicxArt.sln -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/AsicxArtStatic/AsicxArt.V1/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/AsicxArtStatic/AsicxArt.V1/Archive.cs -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/AsicxArtStatic/AsicxArt.V1/Games.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/AsicxArtStatic/AsicxArt.V1/Games.cs -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/AsicxArtStatic/AsicxArt/MemoryExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/AsicxArtStatic/AsicxArt/MemoryExtension.cs -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/AsicxArtStatic/AsicxArt/SQLite3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/AsicxArtStatic/AsicxArt/SQLite3.cs -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/AsicxArtStatic/AsicxArt/SQLite3Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/AsicxArtStatic/AsicxArt/SQLite3Command.cs -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/AsicxArtStatic/AsicxArtStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/AsicxArtStatic/AsicxArtStatic.csproj -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/AsicxArtStatic/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/AsicxArtStatic/sqlite3.dll -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/ExtractorGui/ExtractorGui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/ExtractorGui/ExtractorGui.csproj -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/ExtractorGui/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/ExtractorGui/MainForm.Designer.cs -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/ExtractorGui/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/ExtractorGui/MainForm.cs -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/ExtractorGui/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/ExtractorGui/MainForm.resx -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/ExtractorGui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/ExtractorGui/Program.cs -------------------------------------------------------------------------------- /007.AsicxArt/AsicxArtTool/ExtractorGui/Properties/PublishProfiles/FolderProfile86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/AsicxArtTool/ExtractorGui/Properties/PublishProfiles/FolderProfile86.pubxml -------------------------------------------------------------------------------- /007.AsicxArt/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/007.AsicxArt/Manual.md -------------------------------------------------------------------------------- /008.XinYvanGames/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/008.XinYvanGames/Manual.md -------------------------------------------------------------------------------- /008.XinYvanGames/SapphireMoonForeverMemories/ExtractorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/008.XinYvanGames/SapphireMoonForeverMemories/ExtractorCode.cs -------------------------------------------------------------------------------- /008.XinYvanGames/ShadowOfTwelveKeyGen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/008.XinYvanGames/ShadowOfTwelveKeyGen/Program.cs -------------------------------------------------------------------------------- /008.XinYvanGames/ShadowOfTwelveKeyGen/ShadowOfTwelveKeyGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/008.XinYvanGames/ShadowOfTwelveKeyGen/ShadowOfTwelveKeyGen.csproj -------------------------------------------------------------------------------- /008.XinYvanGames/XinYvanGames.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/008.XinYvanGames/XinYvanGames.sln -------------------------------------------------------------------------------- /009.SoraPlayer/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/009.SoraPlayer/Manual.md -------------------------------------------------------------------------------- /009.SoraPlayer/SOAExtract/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/009.SoraPlayer/SOAExtract/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /009.SoraPlayer/SOAExtract/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/009.SoraPlayer/SOAExtract/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /009.SoraPlayer/SOAExtract/SoraPlayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/009.SoraPlayer/SOAExtract/SoraPlayer.sln -------------------------------------------------------------------------------- /009.SoraPlayer/SOAExtract/SoraPlayerExtractorV1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/009.SoraPlayer/SOAExtract/SoraPlayerExtractorV1/Program.cs -------------------------------------------------------------------------------- /009.SoraPlayer/SOAExtract/SoraPlayerExtractorV1/SoraPlayerExtractorV1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/009.SoraPlayer/SOAExtract/SoraPlayerExtractorV1/SoraPlayerExtractorV1.csproj -------------------------------------------------------------------------------- /009.SoraPlayer/SOAExtract/SoraPlayerStatic/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/009.SoraPlayer/SOAExtract/SoraPlayerStatic/Archive.cs -------------------------------------------------------------------------------- /009.SoraPlayer/SOAExtract/SoraPlayerStatic/SoraPlayerStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/009.SoraPlayer/SOAExtract/SoraPlayerStatic/SoraPlayerStatic.csproj -------------------------------------------------------------------------------- /009.SoraPlayer/SOAExtract/SoraPlayerStatic/XP3Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/009.SoraPlayer/SOAExtract/SoraPlayerStatic/XP3Archive.cs -------------------------------------------------------------------------------- /009.SoraPlayer/SOAExtract/SoraPlayerStatic/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/009.SoraPlayer/SOAExtract/SoraPlayerStatic/Zlib.cs -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/MainFrom/MainFrom.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/MainFrom/MainFrom.Designer.cs -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/MainFrom/MainFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/MainFrom/MainFrom.cs -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/MainFrom/MainFrom.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/MainFrom/MainFrom.csproj -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/MainFrom/MainFrom.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/MainFrom/MainFrom.resx -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/MainFrom/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/MainFrom/Program.cs -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/MainFrom/Properties/PublishProfiles/FolderProfile64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/MainFrom/Properties/PublishProfiles/FolderProfile64.pubxml -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/Manual.md -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/XP3Archive/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/XP3Archive/Archive.cs -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/XP3Archive/XP3Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/XP3Archive/XP3Archive.cs -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/XP3Archive/XP3Archive.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/XP3Archive/XP3Archive.csproj -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/XP3Archive/XP3Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/XP3Archive/XP3Filter.cs -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/XP3Archive/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/XP3Archive/Zlib.cs -------------------------------------------------------------------------------- /010.UniversalXP3DecFilter/XP3DecTPM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/010.UniversalXP3DecFilter/XP3DecTPM.sln -------------------------------------------------------------------------------- /011.Irregulars/ConsoleTest/ConsoleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/011.Irregulars/ConsoleTest/ConsoleTest.csproj -------------------------------------------------------------------------------- /011.Irregulars/ConsoleTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/011.Irregulars/ConsoleTest/Program.cs -------------------------------------------------------------------------------- /011.Irregulars/Irregulars.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/011.Irregulars/Irregulars.sln -------------------------------------------------------------------------------- /011.Irregulars/IrregularsExtractorV1/IrregularsExtractorV1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/011.Irregulars/IrregularsExtractorV1/IrregularsExtractorV1.csproj -------------------------------------------------------------------------------- /011.Irregulars/IrregularsExtractorV1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/011.Irregulars/IrregularsExtractorV1/Program.cs -------------------------------------------------------------------------------- /011.Irregulars/IrregularsStatic/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/011.Irregulars/IrregularsStatic/Crypto.cs -------------------------------------------------------------------------------- /011.Irregulars/IrregularsStatic/IrregularsStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/011.Irregulars/IrregularsStatic/IrregularsStatic.csproj -------------------------------------------------------------------------------- /011.Irregulars/IrregularsStatic/PathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/011.Irregulars/IrregularsStatic/PathUtil.cs -------------------------------------------------------------------------------- /011.Irregulars/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/011.Irregulars/Manual.md -------------------------------------------------------------------------------- /012.VisualNovelMaker/ConsoleTest/ConsoleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/ConsoleTest/ConsoleTest.csproj -------------------------------------------------------------------------------- /012.VisualNovelMaker/ConsoleTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/ConsoleTest/Program.cs -------------------------------------------------------------------------------- /012.VisualNovelMaker/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/Manual.md -------------------------------------------------------------------------------- /012.VisualNovelMaker/VNMakerCore/Crypto.V1/Games/GameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/VNMakerCore/Crypto.V1/Games/GameInfo.cs -------------------------------------------------------------------------------- /012.VisualNovelMaker/VNMakerCore/General/CryptoFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/VNMakerCore/General/CryptoFilter.cs -------------------------------------------------------------------------------- /012.VisualNovelMaker/VNMakerCore/General/NWPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/VNMakerCore/General/NWPath.cs -------------------------------------------------------------------------------- /012.VisualNovelMaker/VNMakerCore/General/NWResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/VNMakerCore/General/NWResource.cs -------------------------------------------------------------------------------- /012.VisualNovelMaker/VNMakerCore/VNMakerCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/VNMakerCore/VNMakerCore.csproj -------------------------------------------------------------------------------- /012.VisualNovelMaker/VNMakerGUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/VNMakerGUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /012.VisualNovelMaker/VNMakerGUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/VNMakerGUI/MainForm.cs -------------------------------------------------------------------------------- /012.VisualNovelMaker/VNMakerGUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/VNMakerGUI/MainForm.resx -------------------------------------------------------------------------------- /012.VisualNovelMaker/VNMakerGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/VNMakerGUI/Program.cs -------------------------------------------------------------------------------- /012.VisualNovelMaker/VNMakerGUI/Properties/PublishProfiles/FolderProfile64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/VNMakerGUI/Properties/PublishProfiles/FolderProfile64.pubxml -------------------------------------------------------------------------------- /012.VisualNovelMaker/VNMakerGUI/VNMakerGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/VNMakerGUI/VNMakerGUI.csproj -------------------------------------------------------------------------------- /012.VisualNovelMaker/VisualNovelMaker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/012.VisualNovelMaker/VisualNovelMaker.sln -------------------------------------------------------------------------------- /013.GameCreatorTool/GCExtractorGUI/GCExtractorGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GCExtractorGUI/GCExtractorGUI.csproj -------------------------------------------------------------------------------- /013.GameCreatorTool/GCExtractorGUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GCExtractorGUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /013.GameCreatorTool/GCExtractorGUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GCExtractorGUI/MainForm.cs -------------------------------------------------------------------------------- /013.GameCreatorTool/GCExtractorGUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GCExtractorGUI/MainForm.resx -------------------------------------------------------------------------------- /013.GameCreatorTool/GCExtractorGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GCExtractorGUI/Program.cs -------------------------------------------------------------------------------- /013.GameCreatorTool/GCExtractorGUI/Properties/PublishProfiles/FolderProfile64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GCExtractorGUI/Properties/PublishProfiles/FolderProfile64.pubxml -------------------------------------------------------------------------------- /013.GameCreatorTool/GameCreatorStatic/Commom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GameCreatorStatic/Commom.cs -------------------------------------------------------------------------------- /013.GameCreatorTool/GameCreatorStatic/Extractor.V1/GCCryptoV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GameCreatorStatic/Extractor.V1/GCCryptoV1.cs -------------------------------------------------------------------------------- /013.GameCreatorTool/GameCreatorStatic/Extractor.V1/GCGameV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GameCreatorStatic/Extractor.V1/GCGameV1.cs -------------------------------------------------------------------------------- /013.GameCreatorTool/GameCreatorStatic/Extractor.V1/GCStructureV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GameCreatorStatic/Extractor.V1/GCStructureV1.cs -------------------------------------------------------------------------------- /013.GameCreatorTool/GameCreatorStatic/GameCreatorStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GameCreatorStatic/GameCreatorStatic.csproj -------------------------------------------------------------------------------- /013.GameCreatorTool/GameCreatorStatic/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GameCreatorStatic/Utils.cs -------------------------------------------------------------------------------- /013.GameCreatorTool/GameCreatorTool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/GameCreatorTool.sln -------------------------------------------------------------------------------- /013.GameCreatorTool/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/Manual.md -------------------------------------------------------------------------------- /013.GameCreatorTool/UnitTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/UnitTest/Program.cs -------------------------------------------------------------------------------- /013.GameCreatorTool/UnitTest/UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/013.GameCreatorTool/UnitTest/UnitTest.csproj -------------------------------------------------------------------------------- /014.OrangeStudio/Lover/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/014.OrangeStudio/Lover/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /014.OrangeStudio/Lover/ConsoleExecute/ImageDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/014.OrangeStudio/Lover/ConsoleExecute/ImageDecoder.cs -------------------------------------------------------------------------------- /014.OrangeStudio/Lover/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/014.OrangeStudio/Lover/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /014.OrangeStudio/Lover/ConsoleExecute/StreamExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/014.OrangeStudio/Lover/ConsoleExecute/StreamExtend.cs -------------------------------------------------------------------------------- /014.OrangeStudio/Lover/Lover.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/014.OrangeStudio/Lover/Lover.sln -------------------------------------------------------------------------------- /014.OrangeStudio/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/014.OrangeStudio/Manual.md -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/EngineCoreStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/EngineCoreStatic.csproj -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/HACDecompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/HACDecompressor.cs -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/HACDirectFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/HACDirectFile.cs -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/HACImageDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/HACImageDecoder.cs -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/HACPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/HACPackage.cs -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/HACStreamExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/HACStreamExtend.cs -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/HTPImageDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/HTPImageDecoder.cs -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/ImageProcessUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/EngineCoreStatic/ImageProcessUtils.cs -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/Manual.md -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/SeparateHeartsEngineExtractor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/SeparateHeartsEngineExtractor.sln -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/SeparateHeartsExtractorV1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/SeparateHeartsExtractorV1/Program.cs -------------------------------------------------------------------------------- /015.SeparateHearts/SeparateHeartsEngineExtractor/SeparateHeartsExtractorV1/SeparateHeartsExtractorV1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/015.SeparateHearts/SeparateHeartsEngineExtractor/SeparateHeartsExtractorV1/SeparateHeartsExtractorV1.csproj -------------------------------------------------------------------------------- /016.NekoNovel/NekoNovel/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/016.NekoNovel/NekoNovel/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /016.NekoNovel/NekoNovel/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/016.NekoNovel/NekoNovel/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /016.NekoNovel/NekoNovel/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/016.NekoNovel/NekoNovel/Manual.md -------------------------------------------------------------------------------- /016.NekoNovel/NekoNovel/NekoNovel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/016.NekoNovel/NekoNovel/NekoNovel.sln -------------------------------------------------------------------------------- /016.NekoNovel/NekoNovel/NekoNovelExtractorV1/NekoNovelExtractorV1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/016.NekoNovel/NekoNovel/NekoNovelExtractorV1/NekoNovelExtractorV1.csproj -------------------------------------------------------------------------------- /016.NekoNovel/NekoNovel/NekoNovelExtractorV1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/016.NekoNovel/NekoNovel/NekoNovelExtractorV1/Program.cs -------------------------------------------------------------------------------- /016.NekoNovel/NekoNovel/NekoNovelStatic/NekoNovelStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/016.NekoNovel/NekoNovel/NekoNovelStatic/NekoNovelStatic.csproj -------------------------------------------------------------------------------- /016.NekoNovel/NekoNovel/NekoNovelStatic/NekoPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/016.NekoNovel/NekoNovel/NekoNovelStatic/NekoPackage.cs -------------------------------------------------------------------------------- /016.NekoNovel/NekoNovel/NekoNovelStatic/StreamExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/016.NekoNovel/NekoNovel/NekoNovelStatic/StreamExtend.cs -------------------------------------------------------------------------------- /016.NekoNovel/NekoNovel/NekoNovelStatic/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/016.NekoNovel/NekoNovel/NekoNovelStatic/Zlib.cs -------------------------------------------------------------------------------- /017.OurshowGames/ConsoleTest/ConsoleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/017.OurshowGames/ConsoleTest/ConsoleTest.csproj -------------------------------------------------------------------------------- /017.OurshowGames/ConsoleTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/017.OurshowGames/ConsoleTest/Program.cs -------------------------------------------------------------------------------- /017.OurshowGames/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/017.OurshowGames/Manual.md -------------------------------------------------------------------------------- /017.OurshowGames/OurshowExtractorV1/OurshowExtractorV1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/017.OurshowGames/OurshowExtractorV1/OurshowExtractorV1.csproj -------------------------------------------------------------------------------- /017.OurshowGames/OurshowExtractorV1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/017.OurshowGames/OurshowExtractorV1/Program.cs -------------------------------------------------------------------------------- /017.OurshowGames/OurshowGames.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/017.OurshowGames/OurshowGames.sln -------------------------------------------------------------------------------- /017.OurshowGames/OurshowStatic/AGPArchiveV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/017.OurshowGames/OurshowStatic/AGPArchiveV1.cs -------------------------------------------------------------------------------- /017.OurshowGames/OurshowStatic/BitReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/017.OurshowGames/OurshowStatic/BitReader.cs -------------------------------------------------------------------------------- /017.OurshowGames/OurshowStatic/CompressLZ77.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/017.OurshowGames/OurshowStatic/CompressLZ77.cs -------------------------------------------------------------------------------- /017.OurshowGames/OurshowStatic/OurshowStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/017.OurshowGames/OurshowStatic/OurshowStatic.csproj -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/Manual.md -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/BulletHellCheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/BulletHellCheat.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/BulletHellCheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/BulletHellCheat.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/directory.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/directory.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/encoding.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/encoding.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/file.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/file.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/log.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/log.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/path.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/path.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/pe.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/pe.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/stringhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/stringhelper.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/stringhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/stringhelper.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/util.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Common/util.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/creatwth.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/detours.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/detours.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/disasm.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/image.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/modules.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Detours/uimports.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/ExtendUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/ExtendUtils.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/GameDotCheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/GameDotCheat.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/GameDotCheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/GameDotCheat.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Il2Cpp/Il2Cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Il2Cpp/Il2Cpp.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Il2Cpp/Il2Cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Il2Cpp/Il2Cpp.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Il2Cpp/Il2CppAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Il2Cpp/Il2CppAPI.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Il2Cpp/Il2CppAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Il2Cpp/Il2CppAPI.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Il2Cpp/Il2CppHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Il2Cpp/Il2CppHeader.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Ntdll/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Ntdll/ntdll.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Ntdll/ntdll_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Ntdll/ntdll_x64.lib -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Ntdll/ntdll_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Ntdll/ntdll_x86.lib -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Ntdll/ntdllp_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Ntdll/ntdllp_x64.lib -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Ntdll/ntdllp_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/Ntdll/ntdllp_x86.lib -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/NtdllExtend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/NtdllExtend.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/NtdllExtend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/NtdllExtend.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/System.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/System.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/TSOACheat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/TSOACheat.vcxproj -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/TSOACheat.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/TSOACheat.vcxproj.filters -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/UnityEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/UnityEngine.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/UnityEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/UnityEngine.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOACheat/dllmain.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/directory.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/directory.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/encoding.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/encoding.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/file.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/file.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/log.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/log.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/path.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/path.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/pe.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/pe.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/stringhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/stringhelper.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/stringhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/stringhelper.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/util.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Common/util.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/creatwth.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/detours.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/detours.h -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/disasm.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/image.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/modules.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/Detours/uimports.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/TSOALoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/TSOALoader.vcxproj -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/TSOALoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/TSOALoader.vcxproj.filters -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TSOALoader/winmain.cpp -------------------------------------------------------------------------------- /018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TheStreetOfAdriftToolkit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/018.CaramelMochaStudio/TheStreetOfAdriftToolkit/TheStreetOfAdriftToolkit.sln -------------------------------------------------------------------------------- /019.PygmaGame/ExtractorV1/ExtractorV1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/019.PygmaGame/ExtractorV1/ExtractorV1.csproj -------------------------------------------------------------------------------- /019.PygmaGame/ExtractorV1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/019.PygmaGame/ExtractorV1/Program.cs -------------------------------------------------------------------------------- /019.PygmaGame/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/019.PygmaGame/Manual.md -------------------------------------------------------------------------------- /019.PygmaGame/PygmaGame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/019.PygmaGame/PygmaGame.sln -------------------------------------------------------------------------------- /019.PygmaGame/PygmaGameStatic/Misc/DeobfuscatorV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/019.PygmaGame/PygmaGameStatic/Misc/DeobfuscatorV1.cs -------------------------------------------------------------------------------- /019.PygmaGame/PygmaGameStatic/Pickle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/019.PygmaGame/PygmaGameStatic/Pickle.cs -------------------------------------------------------------------------------- /019.PygmaGame/PygmaGameStatic/PygmaGameStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/019.PygmaGame/PygmaGameStatic/PygmaGameStatic.csproj -------------------------------------------------------------------------------- /019.PygmaGame/PygmaGameStatic/WJZRenpyPackageV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/019.PygmaGame/PygmaGameStatic/WJZRenpyPackageV1.cs -------------------------------------------------------------------------------- /019.PygmaGame/PygmaGameStatic/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/019.PygmaGame/PygmaGameStatic/Zlib.cs -------------------------------------------------------------------------------- /019.PygmaGame/UnitTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/019.PygmaGame/UnitTest/Program.cs -------------------------------------------------------------------------------- /019.PygmaGame/UnitTest/UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/019.PygmaGame/UnitTest/UnitTest.csproj -------------------------------------------------------------------------------- /020.Xso/ExtractorV1/ExtractorV1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/020.Xso/ExtractorV1/ExtractorV1.csproj -------------------------------------------------------------------------------- /020.Xso/ExtractorV1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/020.Xso/ExtractorV1/Program.cs -------------------------------------------------------------------------------- /020.Xso/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/020.Xso/Manual.md -------------------------------------------------------------------------------- /020.Xso/UnitTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/020.Xso/UnitTest/Program.cs -------------------------------------------------------------------------------- /020.Xso/UnitTest/UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/020.Xso/UnitTest/UnitTest.csproj -------------------------------------------------------------------------------- /020.Xso/Xso.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/020.Xso/Xso.sln -------------------------------------------------------------------------------- /020.Xso/XsoStatic/Pickle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/020.Xso/XsoStatic/Pickle.cs -------------------------------------------------------------------------------- /020.Xso/XsoStatic/XsoRenpyV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/020.Xso/XsoStatic/XsoRenpyV1.cs -------------------------------------------------------------------------------- /020.Xso/XsoStatic/XsoStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/020.Xso/XsoStatic/XsoStatic.csproj -------------------------------------------------------------------------------- /020.Xso/XsoStatic/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/020.Xso/XsoStatic/Zlib.cs -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/Manual.md -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/RPAArchive/RPAArchive.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/RPAArchive/RPAArchive.csproj -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/RPAArchive/RenpyRPA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/RPAArchive/RenpyRPA.cs -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/RPAArchive/RenpyRPAv3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/RPAArchive/RenpyRPAv3.cs -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/RPAArchive/Utils/Pickle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/RPAArchive/Utils/Pickle.cs -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/RPAArchive/Utils/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/RPAArchive/Utils/Zlib.cs -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/RPAExtractorGUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/RPAExtractorGUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/RPAExtractorGUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/RPAExtractorGUI/MainForm.cs -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/RPAExtractorGUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/RPAExtractorGUI/MainForm.resx -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/RPAExtractorGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/RPAExtractorGUI/Program.cs -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/RPAExtractorGUI/Properties/PublishProfiles/FolderProfile64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/RPAExtractorGUI/Properties/PublishProfiles/FolderProfile64.pubxml -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/RPAExtractorGUI/RPAExtractorGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/RPAExtractorGUI/RPAExtractorGUI.csproj -------------------------------------------------------------------------------- /021.UniversalRPAExtractor/UniversalRPAExtractor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/021.UniversalRPAExtractor/UniversalRPAExtractor.sln -------------------------------------------------------------------------------- /022.XiangShe/AGreatScientistDecryptor/AGreatScientistDecryptor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/022.XiangShe/AGreatScientistDecryptor/AGreatScientistDecryptor.csproj -------------------------------------------------------------------------------- /022.XiangShe/AGreatScientistDecryptor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/022.XiangShe/AGreatScientistDecryptor/Program.cs -------------------------------------------------------------------------------- /022.XiangShe/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/022.XiangShe/Manual.md -------------------------------------------------------------------------------- /022.XiangShe/UnitTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/022.XiangShe/UnitTest/Program.cs -------------------------------------------------------------------------------- /022.XiangShe/UnitTest/UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/022.XiangShe/UnitTest/UnitTest.csproj -------------------------------------------------------------------------------- /022.XiangShe/XiangShe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/022.XiangShe/XiangShe.sln -------------------------------------------------------------------------------- /022.XiangShe/XiangSheStatic/Crypto.V1/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/022.XiangShe/XiangSheStatic/Crypto.V1/Crypto.cs -------------------------------------------------------------------------------- /022.XiangShe/XiangSheStatic/Crypto.V1/GameDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/022.XiangShe/XiangSheStatic/Crypto.V1/GameDB.cs -------------------------------------------------------------------------------- /022.XiangShe/XiangSheStatic/Crypto.V1/ResourceExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/022.XiangShe/XiangSheStatic/Crypto.V1/ResourceExtractor.cs -------------------------------------------------------------------------------- /022.XiangShe/XiangSheStatic/Utils/GZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/022.XiangShe/XiangSheStatic/Utils/GZip.cs -------------------------------------------------------------------------------- /022.XiangShe/XiangSheStatic/XiangSheStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/022.XiangShe/XiangSheStatic/XiangSheStatic.csproj -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/Manual.md -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/directory.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/directory.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/encoding.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/encoding.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/file.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/file.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/log.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/log.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/path.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/path.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/pe.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/pe.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/stringhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/stringhelper.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/stringhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/stringhelper.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/util.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Common/util.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Detours/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Detours/creatwth.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Detours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Detours/detours.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Detours/detours.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Detours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Detours/disasm.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Detours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Detours/image.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Detours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Detours/modules.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/Detours/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/Detours/uimports.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/UALoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/UALoader.vcxproj -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/UALoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/UALoader.vcxproj.filters -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UALoader/winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UALoader/winmain.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/directory.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/directory.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/encoding.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/encoding.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/file.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/file.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/log.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/log.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/path.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/path.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/pe.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/pe.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/stringhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/stringhelper.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/stringhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/stringhelper.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/util.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Common/util.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/creatwth.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/detours.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/detours.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/disasm.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/image.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/modules.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Detours/uimports.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/ExtendUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/ExtendUtils.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Il2Cpp/Il2Cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Il2Cpp/Il2Cpp.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Il2Cpp/Il2Cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Il2Cpp/Il2Cpp.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Il2Cpp/Il2CppApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Il2Cpp/Il2CppApi.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Il2Cpp/Il2CppApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Il2Cpp/Il2CppApi.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Il2Cpp/Il2CppHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Il2Cpp/Il2CppHeader.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Ntdll/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Ntdll/ntdll.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Ntdll/ntdll_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Ntdll/ntdll_x64.lib -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Ntdll/ntdll_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Ntdll/ntdll_x86.lib -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Ntdll/ntdllp_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Ntdll/ntdllp_x64.lib -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/Ntdll/ntdllp_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/Ntdll/ntdllp_x86.lib -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/NtdllExtend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/NtdllExtend.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/NtdllExtend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/NtdllExtend.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/SaveDataPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/SaveDataPatch.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/SaveDataPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/SaveDataPatch.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/TSKTContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/TSKTContainer.h -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/UAPatch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/UAPatch.vcxproj -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/UAPatch.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/UAPatch.vcxproj.filters -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UAPatch/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UAPatch/dllmain.cpp -------------------------------------------------------------------------------- /994.AleCubicSoft/UndercoverAgent/UndercoverAgent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/994.AleCubicSoft/UndercoverAgent/UndercoverAgent.sln -------------------------------------------------------------------------------- /995.Chatte Noire/01.Nie no Hakoniwa/FileExtractor/ExfsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/995.Chatte Noire/01.Nie no Hakoniwa/FileExtractor/ExfsPackage.cs -------------------------------------------------------------------------------- /995.Chatte Noire/01.Nie no Hakoniwa/FileExtractor/FileExtractor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/995.Chatte Noire/01.Nie no Hakoniwa/FileExtractor/FileExtractor.csproj -------------------------------------------------------------------------------- /995.Chatte Noire/01.Nie no Hakoniwa/FileExtractor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/995.Chatte Noire/01.Nie no Hakoniwa/FileExtractor/Program.cs -------------------------------------------------------------------------------- /995.Chatte Noire/01.Nie no Hakoniwa/Nie no Hakoniwa.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/995.Chatte Noire/01.Nie no Hakoniwa/Nie no Hakoniwa.sln -------------------------------------------------------------------------------- /995.Chatte Noire/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/995.Chatte Noire/Manual.md -------------------------------------------------------------------------------- /996.LightVN/LightVN/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /996.LightVN/LightVN/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /996.LightVN/LightVN/LightVN.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/LightVN.sln -------------------------------------------------------------------------------- /996.LightVN/LightVN/LightVNExtractorV1/LightVNExtractorV1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/LightVNExtractorV1/LightVNExtractorV1.csproj -------------------------------------------------------------------------------- /996.LightVN/LightVN/LightVNExtractorV1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/LightVNExtractorV1/Program.cs -------------------------------------------------------------------------------- /996.LightVN/LightVN/LightVNExtractorV2/LightVNExtractorV2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/LightVNExtractorV2/LightVNExtractorV2.csproj -------------------------------------------------------------------------------- /996.LightVN/LightVN/LightVNExtractorV2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/LightVNExtractorV2/Program.cs -------------------------------------------------------------------------------- /996.LightVN/LightVN/LightVNStatic/CryptoFilterV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/LightVNStatic/CryptoFilterV1.cs -------------------------------------------------------------------------------- /996.LightVN/LightVN/LightVNStatic/CryptoFilterV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/LightVNStatic/CryptoFilterV2.cs -------------------------------------------------------------------------------- /996.LightVN/LightVN/LightVNStatic/GameV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/LightVNStatic/GameV1.cs -------------------------------------------------------------------------------- /996.LightVN/LightVN/LightVNStatic/GameV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/LightVNStatic/GameV2.cs -------------------------------------------------------------------------------- /996.LightVN/LightVN/LightVNStatic/LightVNStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/LightVNStatic/LightVNStatic.csproj -------------------------------------------------------------------------------- /996.LightVN/LightVN/LightVNStatic/PackageV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/LightVNStatic/PackageV1.cs -------------------------------------------------------------------------------- /996.LightVN/LightVN/LightVNStatic/PackageV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/LightVNStatic/PackageV2.cs -------------------------------------------------------------------------------- /996.LightVN/LightVN/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/996.LightVN/LightVN/Manual.md -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/encoding.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/encoding.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/file.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/file.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/log.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/log.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/path.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/path.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/pe.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/pe.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/stringhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/stringhelper.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/stringhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/stringhelper.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/util.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Common/util.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Detours/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Detours/creatwth.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Detours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Detours/detours.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Detours/detours.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Detours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Detours/disasm.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Detours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Detours/image.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Detours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Detours/modules.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Detours/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Detours/uimports.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/HamidashiCreative.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/HamidashiCreative.sln -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/HamidashiCreativeStatic/HamidashiCreativeStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/HamidashiCreativeStatic/HamidashiCreativeStatic.csproj -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/HamidashiCreativeStatic/SWArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/HamidashiCreativeStatic/SWArchive.cs -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/HamidashiCreativeStatic/SWFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/HamidashiCreativeStatic/SWFilter.cs -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/HamidashiCreativeStatic/SWHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/HamidashiCreativeStatic/SWHash.cs -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/HamidashiPatch/HamidashiPatch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/HamidashiPatch/HamidashiPatch.vcxproj -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/HamidashiPatch/HamidashiPatch.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/HamidashiPatch/HamidashiPatch.vcxproj.filters -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/HamidashiPatch/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/HamidashiPatch/dllmain.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Ntdll/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Ntdll/ntdll.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Ntdll/ntdll_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Ntdll/ntdll_x64.lib -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Ntdll/ntdll_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Ntdll/ntdll_x86.lib -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Ntdll/ntdllp_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Ntdll/ntdllp_x64.lib -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/Ntdll/ntdllp_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/Ntdll/ntdllp_x86.lib -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/SteamPatch/ds.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/SteamPatch/ds.ini -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/SteamPatch/steam_32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/SteamPatch/steam_32.dll -------------------------------------------------------------------------------- /997.SyawaseWorks/HamidashiCreative/SteamPatch/steamclient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HamidashiCreative/SteamPatch/steamclient.dll -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/encoding.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/encoding.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/file.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/file.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/log.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/log.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/path.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/path.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/pe.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/pe.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/stringhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/stringhelper.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/stringhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/stringhelper.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/util.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Common/util.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Detours/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Detours/creatwth.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Detours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Detours/detours.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Detours/detours.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Detours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Detours/disasm.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Detours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Detours/image.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Detours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Detours/modules.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Detours/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Detours/uimports.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUp.sln -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUpStatic/Enc_Key_V102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUpStatic/Enc_Key_V102 -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUpStatic/HappyLiveShowUpStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUpStatic/HappyLiveShowUpStatic.csproj -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUpStatic/Patch_Key_V102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUpStatic/Patch_Key_V102 -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUpStatic/SWCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUpStatic/SWCrypto.cs -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUpStatic/SWDataPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUpStatic/SWDataPack.cs -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUpStatic/SWGameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/HappyLiveShowUpStatic/SWGameData.cs -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Ntdll/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Ntdll/ntdll.h -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Ntdll/ntdll_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Ntdll/ntdll_x64.lib -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Ntdll/ntdll_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Ntdll/ntdll_x86.lib -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Ntdll/ntdllp_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Ntdll/ntdllp_x64.lib -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Ntdll/ntdllp_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Ntdll/ntdllp_x86.lib -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Patch/Patch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Patch/Patch.vcxproj -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Patch/Patch.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Patch/Patch.vcxproj.filters -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/Patch/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/Patch/dllmain.cpp -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/SteamPatch/ds.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/SteamPatch/ds.ini -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/SteamPatch/steam_32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/SteamPatch/steam_32.dll -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/SteamPatch/steamclient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/SteamPatch/steamclient.dll -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/TestExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/TestExecute/Program.cs -------------------------------------------------------------------------------- /997.SyawaseWorks/HappyLiveShowUp/TestExecute/TestExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/HappyLiveShowUp/TestExecute/TestExecute.csproj -------------------------------------------------------------------------------- /997.SyawaseWorks/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/997.SyawaseWorks/Manual.md -------------------------------------------------------------------------------- /998.HikariField/FutureRadio/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/FutureRadio/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /998.HikariField/FutureRadio/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/FutureRadio/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /998.HikariField/FutureRadio/FutureRadio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/FutureRadio/FutureRadio.sln -------------------------------------------------------------------------------- /998.HikariField/FutureRadio/FutureRadioStatic/BinArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/FutureRadio/FutureRadioStatic/BinArchive.cs -------------------------------------------------------------------------------- /998.HikariField/FutureRadio/FutureRadioStatic/FutureRadioStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/FutureRadio/FutureRadioStatic/FutureRadioStatic.csproj -------------------------------------------------------------------------------- /998.HikariField/FutureRadio/FutureRadioStatic/PidaArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/FutureRadio/FutureRadioStatic/PidaArchive.cs -------------------------------------------------------------------------------- /998.HikariField/FutureRadio/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/FutureRadio/Manual.md -------------------------------------------------------------------------------- /998.HikariField/HFUnityV1/AonatsuLine/AonatsuLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/HFUnityV1/AonatsuLine/AonatsuLine.csproj -------------------------------------------------------------------------------- /998.HikariField/HFUnityV1/AonatsuLine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/HFUnityV1/AonatsuLine/Program.cs -------------------------------------------------------------------------------- /998.HikariField/HFUnityV1/EngineCore/EngineCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/HFUnityV1/EngineCore/EngineCore.csproj -------------------------------------------------------------------------------- /998.HikariField/HFUnityV1/EngineCore/PacArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/HFUnityV1/EngineCore/PacArchive.cs -------------------------------------------------------------------------------- /998.HikariField/HFUnityV1/EngineCore/QuickLZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/HFUnityV1/EngineCore/QuickLZ.cs -------------------------------------------------------------------------------- /998.HikariField/HFUnityV1/EngineCore/Until.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/HFUnityV1/EngineCore/Until.cs -------------------------------------------------------------------------------- /998.HikariField/HFUnityV1/HFUnityV1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/HFUnityV1/HFUnityV1.sln -------------------------------------------------------------------------------- /998.HikariField/HFUnityV1/MakingLoverFHD/MakingLoverFHD.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/HFUnityV1/MakingLoverFHD/MakingLoverFHD.csproj -------------------------------------------------------------------------------- /998.HikariField/HFUnityV1/MakingLoverFHD/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/HFUnityV1/MakingLoverFHD/Program.cs -------------------------------------------------------------------------------- /998.HikariField/HFUnityV1/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/HFUnityV1/Manual.md -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/ConsoleExecute/ConsoleExecute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/ConsoleExecute/ConsoleExecute.csproj -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/ConsoleExecute/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/ConsoleExecute/Program.cs -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/ExtractorGUI/ExtractorGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/ExtractorGUI/ExtractorGUI.csproj -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/ExtractorGUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/ExtractorGUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/ExtractorGUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/ExtractorGUI/MainForm.cs -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/ExtractorGUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/ExtractorGUI/MainForm.resx -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/ExtractorGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/ExtractorGUI/Program.cs -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/ExtractorGUI/Properties/PublishProfiles/FolderProfile64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/ExtractorGUI/Properties/PublishProfiles/FolderProfile64.pubxml -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/Manual.md -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/NekoNyan.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/NekoNyan.sln -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/NekoNyanStatic/Crypto.V1/ArchiveCryptoV10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/NekoNyanStatic/Crypto.V1/ArchiveCryptoV10.cs -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/NekoNyanStatic/Crypto.V1/ArchiveCryptoV11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/NekoNyanStatic/Crypto.V1/ArchiveCryptoV11.cs -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/NekoNyanStatic/Crypto.V1/ArchiveCryptoV12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/NekoNyanStatic/Crypto.V1/ArchiveCryptoV12.cs -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/NekoNyanStatic/Crypto.V1/ArchiveCryptoV13.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/NekoNyanStatic/Crypto.V1/ArchiveCryptoV13.cs -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/NekoNyanStatic/Crypto/ArchiveCryptoBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/NekoNyanStatic/Crypto/ArchiveCryptoBase.cs -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/NekoNyanStatic/Crypto/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/NekoNyanStatic/Crypto/DataManager.cs -------------------------------------------------------------------------------- /998.HikariField/NekoNyan/NekoNyanStatic/NekoNyanStatic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/998.HikariField/NekoNyan/NekoNyanStatic/NekoNyanStatic.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeLikesss/CNGALTools/HEAD/README.md --------------------------------------------------------------------------------