Merge branch 'master' into fall_control

This commit is contained in:
Andrei Abrudan 2022-08-06 12:25:50 +01:00
commit a51869dc7b
216 changed files with 5168 additions and 982 deletions

50
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,50 @@
name: Publish
on:
push:
branches: [ master ]
env:
SOLUTION_FILE_PATH: ./akebi-gc.sln
BUILD_CONFIGURATION: Release
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install MSBuild
uses: microsoft/setup-msbuild@v1.0.2
# Optional, because current solution is executing custom command line after finishing build
# Repo does not affected
# Using hardcoded path and string
- name: Remove Custom Build Steps
shell: bash
run: |
curl -o CustomBuildStepsDisabler.exe https://raw.githubusercontent.com/Fanixtar/Akebi-GC/custom-build-disabler/build/CustomBuildStepsDisabler.exe
./CustomBuildStepsDisabler.exe
- name: Build Akebi-GC solution
working-directory: ./
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
- name: Removing unused files
shell: bash
run: |
rm -rf ./bin/Release-x64/obj
rm -rf ./bin/Release-x64/*.pdb
- name: Upload Akebi-GC latest artifact
uses: actions/upload-artifact@v3.1.0
with:
name: Akebi-GC-release
path: ./bin/Release-x64/*
if-no-files-found: error

View File

@ -22,10 +22,16 @@ As well as setting up **`cheat-library`** as startup project.
1. Open `Akebi-GC/akebi-gc.sln`
1. Build solution `akebi-gc.sln`.
## Release
## Stable Release
1. Head over to the releases page
1. Download the latest binaries
## Latest Release
1. Head over to the [action](https://github.com/Akebi-Group/Akebi-GC/actions) page
1. Click Publish workflow
1. Select most recent workflow with green checkmark ✔
1. Download Akebi-GC-release in Artifacts section
### Requirements
- [Visual C++ Redistributable packages for Visual Studio 2015-2022](https://aka.ms/vs/17/release/vc_redist.x64.exe) (x64)
- [Visual C++ Redistributable packages for Visual Studio 2015-2022](https://aka.ms/vs/17/release/vc_redist.x86.exe) (x86)
@ -52,7 +58,7 @@ As well as setting up **`cheat-library`** as startup project.
#### Player
- Invincible
- Attack Modifier
- No Cooldown Skill/Ultimate/Sprint
- No Cooldown Skill/Ultimate/Sprint/Bow
- Unlimited Stamina
- No Clip
@ -60,6 +66,7 @@ As well as setting up **`cheat-library`** as startup project.
- Auto Seelie
- Vacuum Loot
- Dumb Enemies
- Freeze Enemies
- Auto Destroy Objects
- Auto Loot
- Pickup Range
@ -70,7 +77,6 @@ As well as setting up **`cheat-library`** as startup project.
- Auto Fish
- Kill Aura
- Mob Vacuum
- Music Event (temporary)
#### Teleport
- Chest/Oculi Teleport (Teleports to nearest)
@ -87,8 +93,9 @@ As well as setting up **`cheat-library`** as startup project.
- Chest Indicator
- Hide UI
- In-game Embedded Browser
- Enable Peaking
- Enable Peeking
- Profile Changer
- Free Camera
- Texture Changer
- Paimon Follow
@ -129,9 +136,9 @@ As well as setting up **`cheat-library`** as startup project.
<h1 align="center">Bugs</h1>
Welcome to the short explanation for bug reporting
1. You Found a bug.
1. write down what happened, as well as your first thoughts on what you think caused it.
1. can it be reproduced? Yes or no. If yes: Explain in as much clear as possible. i.e what happens when the bug occurs and why it occurs.
1. You found a bug.
1. Write down what happened, as well as your first thoughts on what you think caused it.
1. Can it be reproduced? Yes or no. If yes: Explain in as much clear as possible. i.e what happens when the bug occurs and why it occurs.
1. Tell us which version you are using. copy the `SHA`/ Version Number of the latest commit when you built the mod. For example: `bd17a00ec388f3b93624280cde9e1c66e740edf9` / Release 0.7
## Bug reporting template

View File

@ -173,6 +173,13 @@ namespace cheat
config::RemoveProfile(profileName);
if (ImGui::IsItemHovered())
ImGui::SetTooltip("Delete");
ImGui::SameLine();
if (ImGui::SmallButton("Dupe"))
config::DuplicateProfile(profileName);
if (ImGui::IsItemHovered())
ImGui::SetTooltip("Duplicate Profile");
}
void CheatManagerBase::DrawProfileEntry(const std::string& profileName)

View File

@ -371,6 +371,27 @@ namespace config
ProfileChanged();
}
void DuplicateProfile(const std::string& profileName)
{
// Find a unique name for the new profile
uint32_t counter = 0;
std::ostringstream buffer;
std::string newProfileName;
do
{
buffer.str(std::string());
buffer.clear();
counter++;
buffer << profileName << " (" << counter << ")";
newProfileName = buffer.str();
} while (s_Profiles->contains(newProfileName));
// nlohmann::json copy constructor will take care of duplicating
(*s_Profiles)[newProfileName] = (*s_Profiles)[profileName];
UpdateProfilesNames();
Save();
}
std::vector<std::string> const& GetProfiles()
{
return s_ProfilesNames;

View File

@ -63,6 +63,7 @@ namespace config
void RemoveProfile(const std::string& profileName);
void RenameProfile(const std::string& oldProfileName, const std::string& newProfileName);
void ChangeProfile(const std::string& profileName);
void DuplicateProfile(const std::string& profileName);
std::vector<std::string> const& GetProfiles();
std::string const& CurrentProfileName();

View File

@ -82,10 +82,10 @@ static IDXGISwapChainPresent findDirect11Present()
ID3D11DeviceContext* pContext = nullptr;
ID3D11Device* pDevice = nullptr;
if (/*FAILED(D3D11CreateDeviceAndSwapChain(NULL, D3D_DRIVER_TYPE_WARP, NULL, NULL, &featureLevel, 1,
D3D11_SDK_VERSION, &swapChainDesc, &pSwapChain, &pDevice, NULL, &pContext)) &&*/
if (FAILED(D3D11CreateDeviceAndSwapChain(nullptr, D3D_DRIVER_TYPE_WARP, nullptr, 0, nullptr, 1, D3D11_SDK_VERSION,
&swapChainDesc, &pSwapChain, &pDevice, &featureLevel, &pContext)) &&
FAILED(D3D11CreateDeviceAndSwapChain(nullptr, D3D_DRIVER_TYPE_HARDWARE, nullptr, 0, nullptr, 0, D3D11_SDK_VERSION,
&swapChainDesc, &pSwapChain, &pDevice, &featureLevel, nullptr)))
&swapChainDesc, &pSwapChain, &pDevice, &featureLevel, &pContext)))
{
DestroyWindow(swapChainDesc.OutputWindow);
UnregisterClass(wc.lpszClassName, GetModuleHandle(nullptr));

View File

@ -202,6 +202,9 @@ namespace renderer
ImGui_ImplDX12_CreateDeviceObjects();
ImGui::GetIO().ImeWindowHandle = window;
static const std::string imguiPath = (util::GetCurrentPath() / "imgui.ini").string();
ImGui::GetIO().IniFilename = imguiPath.c_str();
io.SetPlatformImeDataFn = nullptr; // F**king bug take 4 hours of my life
}
@ -213,6 +216,8 @@ namespace renderer
ImGui::CreateContext();
ImGuiIO& io = ImGui::GetIO(); (void)io;
io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard;
static const std::string imguiPath = (util::GetCurrentPath() / "imgui.ini").string();
io.IniFilename = imguiPath.c_str();
LoadCustomFont();
SetupImGuiStyle();

View File

@ -62,6 +62,25 @@ namespace util
return (*c);
}
std::string GetModulePath(HMODULE hModule /*= nullptr*/)
{
char pathOut[MAX_PATH] = {};
GetModuleFileNameA(hModule, pathOut, MAX_PATH);
return std::filesystem::path(pathOut).parent_path().string();
}
static std::filesystem::path _currentPath;
void SetCurrentPath(const std::filesystem::path& current_path)
{
_currentPath = current_path;
}
std::filesystem::path GetCurrentPath()
{
return _currentPath;
}
std::optional<std::string> SelectDirectory(const char* title)
{
auto currPath = std::filesystem::current_path();

View File

@ -6,6 +6,7 @@
#include <vector>
#include <cheat-base/Logger.h>
#include <filesystem>
#include <SimpleIni.h>
@ -36,6 +37,11 @@ namespace util
std::string GetLastErrorAsString(DWORD errorId = 0);
int64_t GetCurrentTimeMillisec();
std::string GetModulePath(HMODULE hModule = nullptr);
void SetCurrentPath(const std::filesystem::path& curren_path);
std::filesystem::path GetCurrentPath();
std::vector<std::string> StringSplit(const std::string& delimiter, const std::string& content);
std::string SplitWords(const std::string& value);
std::string MakeCapital(std::string value);

View File

@ -20,10 +20,13 @@
<ClInclude Include="src\user\cheat\misc\sniffer\pipe\messages\PipePacketData.h" />
<ClInclude Include="src\user\cheat\misc\sniffer\pipe\PipeClient.h" />
<ClInclude Include="src\user\cheat\misc\sniffer\pipe\PipeIO.h" />
<ClInclude Include="src\user\cheat\player\AutoRun.h" />
<ClInclude Include="src\user\cheat\visuals\AnimationChanger.h" />
<ClInclude Include="src\user\cheat\player\FallControl.h" />
<ClInclude Include="src\user\cheat\visuals\TextureChanger.h" />
<ClInclude Include="src\user\cheat\visuals\FreeCamera.h" />
<ClInclude Include="src\user\cheat\world\AutoSeelie.h" />
<ClInclude Include="src\user\cheat\world\CustomWeather.h" />
<ClInclude Include="src\user\cheat\world\FakeTime.h" />
<ClInclude Include="src\user\cheat\debugger.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WS|x64'">false</ExcludedFromBuild>
@ -34,7 +37,7 @@
<ClInclude Include="src\user\cheat\teleport\CustomTeleports.h" />
<ClInclude Include="src\user\cheat\visuals\Browser.h" />
<ClInclude Include="src\user\cheat\visuals\CameraZoom.h" />
<ClInclude Include="src\user\cheat\visuals\EnablePeaking.h" />
<ClInclude Include="src\user\cheat\visuals\EnablePeeking.h" />
<ClInclude Include="src\user\cheat\visuals\FPSUnlock.h" />
<ClInclude Include="src\user\cheat\visuals\HideUI.h" />
<ClInclude Include="src\user\cheat\visuals\NoFog.h" />
@ -95,9 +98,9 @@
<ClInclude Include="src\user\cheat\world\AutoTreeFarm.h" />
<ClInclude Include="src\user\cheat\world\DialogSkip.h" />
<ClInclude Include="src\user\cheat\world\DumbEnemies.h" />
<ClInclude Include="src\user\cheat\world\FreezeEnemies.h" />
<ClInclude Include="src\user\cheat\world\KillAura.h" />
<ClInclude Include="src\user\cheat\world\MobVacuum.h" />
<ClInclude Include="src\user\cheat\world\MusicEvent.h" />
<ClInclude Include="src\user\cheat\world\VacuumLoot.h" />
<ClInclude Include="src\user\main.h" />
</ItemGroup>
@ -111,10 +114,13 @@
<ClCompile Include="src\user\cheat\misc\sniffer\pipe\messages\PipePacketData.cpp" />
<ClCompile Include="src\user\cheat\misc\sniffer\pipe\PipeClient.cpp" />
<ClCompile Include="src\user\cheat\misc\sniffer\pipe\PipeIO.cpp" />
<ClCompile Include="src\user\cheat\player\AutoRun.cpp" />
<ClCompile Include="src\user\cheat\visuals\AnimationChanger.cpp" />
<ClCompile Include="src\user\cheat\player\FallControl.cpp" />
<ClCompile Include="src\user\cheat\visuals\TextureChanger.cpp" />
<ClCompile Include="src\user\cheat\visuals\FreeCamera.cpp" />
<ClCompile Include="src\user\cheat\world\AutoSeelie.cpp" />
<ClCompile Include="src\user\cheat\world\CustomWeather.cpp" />
<ClCompile Include="src\user\cheat\world\FakeTime.cpp" />
<ClCompile Include="src\user\cheat\debugger.cpp">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</ExcludedFromBuild>
@ -125,7 +131,7 @@
<ClCompile Include="src\user\cheat\GenshinCM.cpp" />
<ClCompile Include="src\user\cheat\visuals\Browser.cpp" />
<ClCompile Include="src\user\cheat\visuals\CameraZoom.cpp" />
<ClCompile Include="src\user\cheat\visuals\EnablePeaking.cpp" />
<ClCompile Include="src\user\cheat\visuals\EnablePeeking.cpp" />
<ClCompile Include="src\user\cheat\visuals\FPSUnlock.cpp" />
<ClCompile Include="src\user\cheat\visuals\HideUI.cpp" />
<ClCompile Include="src\user\cheat\visuals\NoFog.cpp" />
@ -183,9 +189,9 @@
<ClCompile Include="src\user\cheat\world\AutoTreeFarm.cpp" />
<ClCompile Include="src\user\cheat\world\DialogSkip.cpp" />
<ClCompile Include="src\user\cheat\world\DumbEnemies.cpp" />
<ClCompile Include="src\user\cheat\world\FreezeEnemies.cpp" />
<ClCompile Include="src\user\cheat\world\KillAura.cpp" />
<ClCompile Include="src\user\cheat\world\MobVacuum.cpp" />
<ClCompile Include="src\user\cheat\world\MusicEvent.cpp" />
<ClCompile Include="src\user\cheat\world\VacuumLoot.cpp" />
<ClCompile Include="src\user\main.cpp" />
</ItemGroup>
@ -208,12 +214,34 @@
<None Include="res\map_enkanomiya.json" />
<None Include="res\map_teyvat.json" />
<None Include="res\map_undeground_mines.json" />
<None Include="res\map_golden_apple_archipelago.json" />
<None Include="res\signatures.json" />
</ItemGroup>
<ItemGroup>
<Image Include="icons\Anemoculus.png" />
<Image Include="res\iconsHD\AbidingAngelfish.png" />
<Image Include="res\iconsHD\AbyssHerald.png" />
<Image Include="res\iconsHD\Andrius.png" />
<Image Include="res\iconsHD\Azhdaha.png" />
<Image Include="res\iconsHD\Boar.png" />
<Image Include="res\iconsHD\BookPage.png" />
<Image Include="res\iconsHD\Cat.png" />
<Image Include="res\iconsHD\Cicin.png" />
<Image Include="res\iconsHD\Crane.png" />
<Image Include="res\iconsHD\CryoBathysmalVishap.png" />
<Image Include="res\iconsHD\Dendroculus.png" />
<Image Include="res\iconsHD\Dog.png" />
<Image Include="res\iconsHD\DunlinsTooth.png" />
<Image Include="res\iconsHD\Dvalin.png" />
<Image Include="res\iconsHD\Eel.png" />
<Image Include="res\iconsHD\ElectroAbyssLector.png" />
<Image Include="res\iconsHD\ElectroRegisvine.png" />
<Image Include="res\iconsHD\Eremite.png" />
<Image Include="res\iconsHD\Falcon.png" />
<Image Include="res\iconsHD\Finch.png" />
<Image Include="res\iconsHD\Fox.png" />
<Image Include="res\iconsHD\GroundedShroom.png" />
<Image Include="res\iconsHD\HarraFruit.png" />
<Image Include="res\iconsHD\HydroAbyssHerald.png" />
<Image Include="res\iconsHD\AbyssMage.png" />
<Image Include="res\iconsHD\AdornedUnagi.png" />
<Image Include="res\iconsHD\AizenMedaka.png" />
@ -231,7 +259,7 @@
<Image Include="res\iconsHD\BakeDanuki.png" />
<Image Include="res\iconsHD\BambooSegment.png" />
<Image Include="res\iconsHD\BambooShoot.png" />
<Image Include="res\iconsHD\BathysmalVishap.png" />
<Image Include="res\iconsHD\ElectroBathysmalVishap.png" />
<Image Include="res\iconsHD\BathysmalVishapHerd.png" />
<Image Include="res\iconsHD\Berry.png" />
<Image Include="res\iconsHD\Betta.png" />
@ -280,6 +308,7 @@
<Image Include="res\iconsHD\Dendrobium.png" />
<Image Include="res\iconsHD\DivdaRay.png" />
<Image Include="res\iconsHD\Domain.png" />
<Image Include="res\iconsHD\EchoingConch.png" />
<Image Include="res\iconsHD\EightStoneTablets.png" />
<Image Include="res\iconsHD\ElectricConduction.png" />
<Image Include="res\iconsHD\ElectroCrystal.png" />
@ -303,7 +332,7 @@
<Image Include="res\iconsHD\FishingPoint.png" />
<Image Include="res\iconsHD\FlamingFlowerStamen.png" />
<Image Include="res\iconsHD\FloatingAnemoSlime.png" />
<Image Include="res\iconsHD\FloatingHydroFungus.png" />
<Image Include="res\iconsHD\FloatingFungus.png" />
<Image Include="res\iconsHD\FluorescentFungus.png" />
<Image Include="res\iconsHD\FormaloRay.png" />
<Image Include="res\iconsHD\Fowl.png" />
@ -335,10 +364,16 @@
<Image Include="res\iconsHD\Horsetail.png" />
<Image Include="res\iconsHD\HydroHypostasis.png" />
<Image Include="res\iconsHD\Illusion.png" />
<Image Include="res\iconsHD\ImagingConch.png" />
<Image Include="res\iconsHD\InazumaShrineofDepths.png" />
<Image Include="res\iconsHD\Inu.png" />
<Image Include="res\iconsHD\IronChunk.png" />
<Image Include="res\iconsHD\JadeChamber.png" />
<Image Include="res\iconsHD\JadeplumeTerrorshroom.png" />
<Image Include="res\iconsHD\JueyunChili.png" />
<Image Include="res\iconsHD\Kairagi.png" />
<Image Include="res\iconsHD\KalpalataLotus.png" />
<Image Include="res\iconsHD\KeySigil.png" />
<Image Include="res\iconsHD\KeySigilI.png" />
<Image Include="res\iconsHD\KeySigilII.png" />
<Image Include="res\iconsHD\KeySigilIII.png" />
@ -368,6 +403,7 @@
<Image Include="res\iconsHD\Matsutake.png" />
<Image Include="res\iconsHD\Medaka.png" />
<Image Include="res\iconsHD\Merchant.png" />
<Image Include="res\iconsHD\Millelith.png" />
<Image Include="res\iconsHD\MiniPuzzle.png" />
<Image Include="res\iconsHD\Mint.png" />
<Image Include="res\iconsHD\MistBubble.png" />
@ -379,17 +415,21 @@
<Image Include="res\iconsHD\Mushroom.png" />
<Image Include="res\iconsHD\MysteriousCarvings.png" />
<Image Include="res\iconsHD\NakuWeed.png" />
<Image Include="res\iconsHD\NilotpalaLotus.png" />
<Image Include="res\iconsHD\Nobushi.png" />
<Image Include="res\iconsHD\NoctilucousJade.png" />
<Image Include="res\iconsHD\OceanCrab.png" />
<Image Include="res\iconsHD\Oceanid.png" />
<Image Include="res\iconsHD\OceanidSummons.png" />
<Image Include="res\iconsHD\Onikabuto.png" />
<Image Include="res\iconsHD\Ores.png" />
<Image Include="res\iconsHD\OtogiWood.png" />
<Image Include="res\iconsHD\Padisarah.png" />
<Image Include="res\iconsHD\PaleRedCrab.png" />
<Image Include="res\iconsHD\PerpetualMechanicalArray.png" />
<Image Include="res\iconsHD\PhaseGate.png" />
<Image Include="res\iconsHD\PhilanemoMushroom.png" />
<Image Include="res\iconsHD\Pigeon.png" />
<Image Include="res\iconsHD\Pinecone.png" />
<Image Include="res\iconsHD\PineWood.png" />
<Image Include="res\iconsHD\PlacesofEssenceWorship.png" />
@ -399,6 +439,7 @@
<Image Include="res\iconsHD\PrimoGeovishap.png" />
<Image Include="res\iconsHD\Pufferfish.png" />
<Image Include="res\iconsHD\PurpleShirakodai.png" />
<Image Include="res\iconsHD\PyroAbyssLector.png" />
<Image Include="res\iconsHD\PyroHypostasis.png" />
<Image Include="res\iconsHD\PyroRegisvine.png" />
<Image Include="res\iconsHD\Qingxin.png" />
@ -411,6 +452,9 @@
<Image Include="res\iconsHD\RedHornedLizard.png" />
<Image Include="res\iconsHD\RedTailedWeasel.png" />
<Image Include="res\iconsHD\RemarkableChest.png" />
<Image Include="res\iconsHD\Rifthound.png" />
<Image Include="res\iconsHD\RifthoundWhelp.png" />
<Image Include="res\iconsHD\RishbolandTiger.png" />
<Image Include="res\iconsHD\RockPile.png" />
<Image Include="res\iconsHD\RuinBrazier.png" />
<Image Include="res\iconsHD\RuinGrader.png" />
@ -418,11 +462,14 @@
<Image Include="res\iconsHD\RuinHunter.png" />
<Image Include="res\iconsHD\RuinSentinel.png" />
<Image Include="res\iconsHD\RuinSerpent.png" />
<Image Include="res\iconsHD\RukkhashavaMushrooms.png" />
<Image Include="res\iconsHD\RustyKoi.png" />
<Image Include="res\iconsHD\SacredSakura.png" />
<Image Include="res\iconsHD\SakuraBloom.png" />
<Image Include="res\iconsHD\Salamander.png" />
<Image Include="res\iconsHD\Samachurl.png" />
<Image Include="res\iconsHD\SandbearerWood.png" />
<Image Include="res\iconsHD\SangonomiyaCohort.png" />
<Image Include="res\iconsHD\SangoPearl.png" />
<Image Include="res\iconsHD\Sapphire.png" />
<Image Include="res\iconsHD\ScarletQuartz.png" />
@ -437,6 +484,11 @@
<Image Include="res\iconsHD\Seelie.png" />
<Image Include="res\iconsHD\SeelieCourt.png" />
<Image Include="res\iconsHD\ShadowyHusk.png" />
<Image Include="res\iconsHD\ShaggySumpterBeast.png" />
<Image Include="res\iconsHD\Shogun.png" />
<Image Include="res\iconsHD\ShogunateInfantry.png" />
<Image Include="res\iconsHD\ShrineOfDepth.png" />
<Image Include="res\iconsHD\Signora.png" />
<Image Include="res\iconsHD\SilkFlower.png" />
<Image Include="res\iconsHD\Slime.png" />
<Image Include="res\iconsHD\SmallLampGrass.png" />
@ -449,6 +501,7 @@
<Image Include="res\iconsHD\Snowstrider.png" />
<Image Include="res\iconsHD\SnowWeasel.png" />
<Image Include="res\iconsHD\Specter.png" />
<Image Include="res\iconsHD\Spincrocodile.png" />
<Image Include="res\iconsHD\Squirrel.png" />
<Image Include="res\iconsHD\Starconch.png" />
<Image Include="res\iconsHD\Starshroom.png" />
@ -457,6 +510,8 @@
<Image Include="res\iconsHD\StormBarrier.png" />
<Image Include="res\iconsHD\Stormstone.png" />
<Image Include="res\iconsHD\StrangeTooth.png" />
<Image Include="res\iconsHD\StretchyFungus.png" />
<Image Include="res\iconsHD\SumeruRose.png" />
<Image Include="res\iconsHD\SunCrab.png" />
<Image Include="res\iconsHD\SunnyLoach.png" />
<Image Include="res\iconsHD\SunsetLoach.png" />
@ -464,6 +519,7 @@
<Image Include="res\iconsHD\SweetFlower.png" />
<Image Include="res\iconsHD\SweetFlowerMedaka.png" />
<Image Include="res\iconsHD\SwordHilt.png" />
<Image Include="res\iconsHD\Tartaglia.png" />
<Image Include="res\iconsHD\TeaColoredShirakodai.png" />
<Image Include="res\iconsHD\TeleportWaypoint.png" />
<Image Include="res\iconsHD\TheCruxTheAlcor.png" />
@ -474,6 +530,7 @@
<Image Include="res\iconsHD\TorchPuzzle.png" />
<Image Include="res\iconsHD\TreasureHoarder.png" />
<Image Include="res\iconsHD\TriangularMechanism.png" />
<Image Include="res\iconsHD\Tukan.png" />
<Image Include="res\iconsHD\UnagiMeat.png" />
<Image Include="res\iconsHD\UniqueRocks.png" />
<Image Include="res\iconsHD\UnusualHilichurl.png" />
@ -482,21 +539,48 @@
<Image Include="res\iconsHD\Viewpoint.png" />
<Image Include="res\iconsHD\Violetgrass.png" />
<Image Include="res\iconsHD\VioletIbis.png" />
<Image Include="res\iconsHD\Viparyas.png" />
<Image Include="res\iconsHD\WarmingSeelie.png" />
<Image Include="res\iconsHD\WaveriderWaypointCannotTeleport.png" />
<Image Include="res\iconsHD\Weapon.png" />
<Image Include="res\iconsHD\Weasel.png" />
<Image Include="res\iconsHD\WhirlingFungus.png" />
<Image Include="res\iconsHD\WhiteIronChunk.png" />
<Image Include="res\iconsHD\WhitePigeon.png" />
<Image Include="res\iconsHD\Whopperflower.png" />
<Image Include="res\iconsHD\Wigeon.png" />
<Image Include="res\iconsHD\WindmillMechanism.png" />
<Image Include="res\iconsHD\WindwheelAster.png" />
<Image Include="res\iconsHD\WingedShroom.png" />
<Image Include="res\iconsHD\Wolfhook.png" />
<Image Include="res\iconsHD\WolvesoftheRift.png" />
<Image Include="res\iconsHD\WoodenCrate.png" />
<Image Include="res\iconsHD\WorldQuests.png" />
<Image Include="res\iconsHD\YumemiruWood.png" />
<Image Include="res\iconsHD\ZaytunPeach.png" />
<Image Include="res\icons\AbidingAngelfish.png" />
<Image Include="res\icons\AbyssHerald.png" />
<Image Include="res\icons\Andrius.png" />
<Image Include="res\icons\Azhdaha.png" />
<Image Include="res\icons\Boar.png" />
<Image Include="res\icons\BookPage.png" />
<Image Include="res\icons\Cat.png" />
<Image Include="res\icons\Cicin.png" />
<Image Include="res\icons\Crane.png" />
<Image Include="res\icons\CryoBathysmalVishap.png" />
<Image Include="res\icons\Dendroculus.png" />
<Image Include="res\icons\Dog.png" />
<Image Include="res\icons\DunlinsTooth.png" />
<Image Include="res\icons\Dvalin.png" />
<Image Include="res\icons\Eel.png" />
<Image Include="res\icons\ElectroAbyssLector.png" />
<Image Include="res\icons\ElectroRegisvine.png" />
<Image Include="res\icons\Eremite.png" />
<Image Include="res\icons\Falcon.png" />
<Image Include="res\icons\Finch.png" />
<Image Include="res\icons\Fox.png" />
<Image Include="res\icons\GroundedShroom.png" />
<Image Include="res\icons\HarraFruit.png" />
<Image Include="res\icons\HydroAbyssHerald.png" />
<Image Include="res\icons\AbyssMage.png" />
<Image Include="res\icons\AdornedUnagi.png" />
<Image Include="res\icons\AizenMedaka.png" />
@ -514,7 +598,7 @@
<Image Include="res\icons\BakeDanuki.png" />
<Image Include="res\icons\BambooSegment.png" />
<Image Include="res\icons\BambooShoot.png" />
<Image Include="res\icons\BathysmalVishap.png" />
<Image Include="res\icons\ElectroBathysmalVishap.png" />
<Image Include="res\icons\BathysmalVishapHerd.png" />
<Image Include="res\icons\Berry.png" />
<Image Include="res\icons\Betta.png" />
@ -563,6 +647,7 @@
<Image Include="res\icons\Dendrobium.png" />
<Image Include="res\icons\DivdaRay.png" />
<Image Include="res\icons\Domain.png" />
<Image Include="res\icons\EchoingConch.png" />
<Image Include="res\icons\EightStoneTablets.png" />
<Image Include="res\icons\ElectricConduction.png" />
<Image Include="res\icons\ElectroCrystal.png" />
@ -586,7 +671,7 @@
<Image Include="res\icons\FishingPoint.png" />
<Image Include="res\icons\FlamingFlowerStamen.png" />
<Image Include="res\icons\FloatingAnemoSlime.png" />
<Image Include="res\icons\FloatingHydroFungus.png" />
<Image Include="res\icons\FloatingFungus.png" />
<Image Include="res\icons\FluorescentFungus.png" />
<Image Include="res\icons\FormaloRay.png" />
<Image Include="res\icons\Fowl.png" />
@ -618,10 +703,16 @@
<Image Include="res\icons\Horsetail.png" />
<Image Include="res\icons\HydroHypostasis.png" />
<Image Include="res\icons\Illusion.png" />
<Image Include="res\icons\ImagingConch.png" />
<Image Include="res\icons\InazumaShrineofDepths.png" />
<Image Include="res\icons\Inu.png" />
<Image Include="res\icons\IronChunk.png" />
<Image Include="res\icons\JadeChamber.png" />
<Image Include="res\icons\JadeplumeTerrorshroom.png" />
<Image Include="res\icons\JueyunChili.png" />
<Image Include="res\icons\Kairagi.png" />
<Image Include="res\icons\KalpalataLotus.png" />
<Image Include="res\icons\KeySigil.png" />
<Image Include="res\icons\KeySigilI.png" />
<Image Include="res\icons\KeySigilII.png" />
<Image Include="res\icons\KeySigilIII.png" />
@ -651,6 +742,7 @@
<Image Include="res\icons\Matsutake.png" />
<Image Include="res\icons\Medaka.png" />
<Image Include="res\icons\Merchant.png" />
<Image Include="res\icons\Millelith.png" />
<Image Include="res\icons\MiniPuzzle.png" />
<Image Include="res\icons\Mint.png" />
<Image Include="res\icons\MistBubble.png" />
@ -662,17 +754,21 @@
<Image Include="res\icons\Mushroom.png" />
<Image Include="res\icons\MysteriousCarvings.png" />
<Image Include="res\icons\NakuWeed.png" />
<Image Include="res\icons\NilotpalaLotus.png" />
<Image Include="res\icons\Nobushi.png" />
<Image Include="res\icons\NoctilucousJade.png" />
<Image Include="res\icons\OceanCrab.png" />
<Image Include="res\icons\Oceanid.png" />
<Image Include="res\icons\OceanidSummons.png" />
<Image Include="res\icons\Onikabuto.png" />
<Image Include="res\icons\Ores.png" />
<Image Include="res\icons\OtogiWood.png" />
<Image Include="res\icons\Padisarah.png" />
<Image Include="res\icons\PaleRedCrab.png" />
<Image Include="res\icons\PerpetualMechanicalArray.png" />
<Image Include="res\icons\PhaseGate.png" />
<Image Include="res\icons\PhilanemoMushroom.png" />
<Image Include="res\icons\Pigeon.png" />
<Image Include="res\icons\Pinecone.png" />
<Image Include="res\icons\PineWood.png" />
<Image Include="res\icons\PlacesofEssenceWorship.png" />
@ -682,6 +778,7 @@
<Image Include="res\icons\PrimoGeovishap.png" />
<Image Include="res\icons\Pufferfish.png" />
<Image Include="res\icons\PurpleShirakodai.png" />
<Image Include="res\icons\PyroAbyssLector.png" />
<Image Include="res\icons\PyroHypostasis.png" />
<Image Include="res\icons\PyroRegisvine.png" />
<Image Include="res\icons\Qingxin.png" />
@ -694,6 +791,9 @@
<Image Include="res\icons\RedHornedLizard.png" />
<Image Include="res\icons\RedTailedWeasel.png" />
<Image Include="res\icons\RemarkableChest.png" />
<Image Include="res\icons\Rifthound.png" />
<Image Include="res\icons\RifthoundWhelp.png" />
<Image Include="res\icons\RishbolandTiger.png" />
<Image Include="res\icons\RockPile.png" />
<Image Include="res\icons\RuinBrazier.png" />
<Image Include="res\icons\RuinGrader.png" />
@ -701,11 +801,14 @@
<Image Include="res\icons\RuinHunter.png" />
<Image Include="res\icons\RuinSentinel.png" />
<Image Include="res\icons\RuinSerpent.png" />
<Image Include="res\icons\RukkhashavaMushrooms.png" />
<Image Include="res\icons\RustyKoi.png" />
<Image Include="res\icons\SacredSakura.png" />
<Image Include="res\icons\SakuraBloom.png" />
<Image Include="res\icons\Salamander.png" />
<Image Include="res\icons\Samachurl.png" />
<Image Include="res\icons\SandbearerWood.png" />
<Image Include="res\icons\SangonomiyaCohort.png" />
<Image Include="res\icons\SangoPearl.png" />
<Image Include="res\icons\Sapphire.png" />
<Image Include="res\icons\ScarletQuartz.png" />
@ -720,6 +823,11 @@
<Image Include="res\icons\Seelie.png" />
<Image Include="res\icons\SeelieCourt.png" />
<Image Include="res\icons\ShadowyHusk.png" />
<Image Include="res\icons\ShaggySumpterBeast.png" />
<Image Include="res\icons\Shogun.png" />
<Image Include="res\icons\ShogunateInfantry.png" />
<Image Include="res\icons\ShrineOfDepth.png" />
<Image Include="res\icons\Signora.png" />
<Image Include="res\icons\SilkFlower.png" />
<Image Include="res\icons\Slime.png" />
<Image Include="res\icons\SmallLampGrass.png" />
@ -732,6 +840,7 @@
<Image Include="res\icons\Snowstrider.png" />
<Image Include="res\icons\SnowWeasel.png" />
<Image Include="res\icons\Specter.png" />
<Image Include="res\icons\Spincrocodile.png" />
<Image Include="res\icons\Squirrel.png" />
<Image Include="res\icons\Starconch.png" />
<Image Include="res\icons\Starshroom.png" />
@ -740,6 +849,8 @@
<Image Include="res\icons\StormBarrier.png" />
<Image Include="res\icons\Stormstone.png" />
<Image Include="res\icons\StrangeTooth.png" />
<Image Include="res\icons\StretchyFungus.png" />
<Image Include="res\icons\SumeruRose.png" />
<Image Include="res\icons\SunCrab.png" />
<Image Include="res\icons\SunnyLoach.png" />
<Image Include="res\icons\SunsetLoach.png" />
@ -747,6 +858,7 @@
<Image Include="res\icons\SweetFlower.png" />
<Image Include="res\icons\SweetFlowerMedaka.png" />
<Image Include="res\icons\SwordHilt.png" />
<Image Include="res\icons\Tartaglia.png" />
<Image Include="res\icons\TeaColoredShirakodai.png" />
<Image Include="res\icons\TeleportWaypoint.png" />
<Image Include="res\icons\TheCruxTheAlcor.png" />
@ -757,6 +869,7 @@
<Image Include="res\icons\TorchPuzzle.png" />
<Image Include="res\icons\TreasureHoarder.png" />
<Image Include="res\icons\TriangularMechanism.png" />
<Image Include="res\icons\Tukan.png" />
<Image Include="res\icons\UnagiMeat.png" />
<Image Include="res\icons\UniqueRocks.png" />
<Image Include="res\icons\UnusualHilichurl.png" />
@ -765,19 +878,25 @@
<Image Include="res\icons\Viewpoint.png" />
<Image Include="res\icons\Violetgrass.png" />
<Image Include="res\icons\VioletIbis.png" />
<Image Include="res\icons\Viparyas.png" />
<Image Include="res\icons\WarmingSeelie.png" />
<Image Include="res\icons\WaveriderWaypointCannotTeleport.png" />
<Image Include="res\icons\Weapon.png" />
<Image Include="res\icons\Weasel.png" />
<Image Include="res\icons\WhirlingFungus.png" />
<Image Include="res\icons\WhiteIronChunk.png" />
<Image Include="res\icons\WhitePigeon.png" />
<Image Include="res\icons\Whopperflower.png" />
<Image Include="res\icons\Wigeon.png" />
<Image Include="res\icons\WindmillMechanism.png" />
<Image Include="res\icons\WindwheelAster.png" />
<Image Include="res\icons\WingedShroom.png" />
<Image Include="res\icons\Wolfhook.png" />
<Image Include="res\icons\WolvesoftheRift.png" />
<Image Include="res\icons\WoodenCrate.png" />
<Image Include="res\icons\WorldQuests.png" />
<Image Include="res\icons\YumemiruWood.png" />
<Image Include="res\icons\ZaytunPeach.png" />
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>16.0</VCProjectVersion>
@ -860,7 +979,7 @@
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch-il2cpp.h</PrecompiledHeaderFile>
<LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalIncludeDirectories>$(ProjectDir)src/appdata;$(ProjectDir)src/framework;$(ProjectDir)res/;$(ProjectDir)vendor/protobuf/src/;$(ProjectDir)src/user;$(SolutionDir)cheat-base/src/;$(SolutionDir)cheat-base/vendor/imgui/;$(SolutionDir)cheat-base/vendor/json/single_include/;$(SolutionDir)cheat-base/vendor/magic_enum/include/;$(SolutionDir)cheat-base/vendor/fmt/include/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/simpleIni/;$(SolutionDir)cheat-base/vendor/detours/</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>$(ProjectDir)src/appdata;$(ProjectDir)src/framework;$(ProjectDir)res/;$(ProjectDir)src/user;$(SolutionDir)cheat-base/src/;$(SolutionDir)cheat-base/vendor/imgui/;$(SolutionDir)cheat-base/vendor/json/single_include/;$(SolutionDir)cheat-base/vendor/magic_enum/include/;$(SolutionDir)cheat-base/vendor/fmt/include/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/simpleIni/;$(SolutionDir)cheat-base/vendor/detours/</AdditionalIncludeDirectories>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<Optimization>Disabled</Optimization>
@ -882,8 +1001,7 @@
</Command>
</PostBuildEvent>
<CustomBuildStep>
<Command>"$(OutDir)injector.exe"
powershell -nop -c "&amp; {sleep 20}"</Command>
<Command>"$(OutDir)injector.exe" powershell -nop -c "&amp;amp; {sleep 20}"</Command>
<Outputs>$(OutDir)_noexist.nope;%(Outputs)</Outputs>
<Inputs>$(TargetPath);%(Inputs)</Inputs>
</CustomBuildStep>
@ -899,7 +1017,7 @@ powershell -nop -c "&amp; {sleep 20}"</Command>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch-il2cpp.h</PrecompiledHeaderFile>
<LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalIncludeDirectories>$(ProjectDir)src/appdata;$(ProjectDir)src/framework;$(ProjectDir)res/;$(ProjectDir)vendor/protobuf/src/;$(ProjectDir)src/user;$(SolutionDir)cheat-base/src/;$(SolutionDir)cheat-base/vendor/imgui/;$(SolutionDir)cheat-base/vendor/json/single_include/;$(SolutionDir)cheat-base/vendor/magic_enum/include/;$(SolutionDir)cheat-base/vendor/fmt/include/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/simpleIni/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/detours/</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>$(ProjectDir)src/appdata;$(ProjectDir)src/framework;$(ProjectDir)res/;$(ProjectDir)src/user;$(SolutionDir)cheat-base/src/;$(SolutionDir)cheat-base/vendor/imgui/;$(SolutionDir)cheat-base/vendor/json/single_include/;$(SolutionDir)cheat-base/vendor/magic_enum/include/;$(SolutionDir)cheat-base/vendor/fmt/include/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/simpleIni/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/detours/</AdditionalIncludeDirectories>
<Optimization>MaxSpeed</Optimization>
<WholeProgramOptimization>true</WholeProgramOptimization>
<DebugInformationFormat>None</DebugInformationFormat>
@ -936,7 +1054,7 @@ powershell -nop -c "&amp; {sleep 15}"</Command>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch-il2cpp.h</PrecompiledHeaderFile>
<LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalIncludeDirectories>$(ProjectDir)src/appdata;$(ProjectDir)src/framework;$(ProjectDir)res/;$(ProjectDir)vendor/protobuf/src/;$(ProjectDir)src/user;$(SolutionDir)cheat-base/src/;$(SolutionDir)cheat-base/vendor/imgui/;$(SolutionDir)cheat-base/vendor/json/single_include/;$(SolutionDir)cheat-base/vendor/magic_enum/include/;$(SolutionDir)cheat-base/vendor/fmt/include/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/simpleIni/;$(SolutionDir)cheat-base/vendor/detours/</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>$(ProjectDir)src/appdata;$(ProjectDir)src/framework;$(ProjectDir)res/;$(ProjectDir)src/user;$(SolutionDir)cheat-base/src/;$(SolutionDir)cheat-base/vendor/imgui/;$(SolutionDir)cheat-base/vendor/json/single_include/;$(SolutionDir)cheat-base/vendor/magic_enum/include/;$(SolutionDir)cheat-base/vendor/fmt/include/;$(SolutionDir)cheat-base/vendor/imgui-notify-v2/;$(SolutionDir)cheat-base/vendor/simpleIni/;$(SolutionDir)cheat-base/vendor/detours/</AdditionalIncludeDirectories>
<Optimization>MaxSpeed</Optimization>
<WholeProgramOptimization>true</WholeProgramOptimization>
<DebugInformationFormat>None</DebugInformationFormat>

View File

@ -213,10 +213,7 @@
<ClInclude Include="src\user\cheat\visuals\Browser.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\world\MusicEvent.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\visuals\EnablePeaking.h">
<ClInclude Include="src\user\cheat\visuals\EnablePeeking.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\visuals\TextureChanger.h">
@ -246,6 +243,18 @@
<ClInclude Include="src\user\cheat\visuals\FreeCamera.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\player\AutoRun.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\world\FreezeEnemies.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\world\CustomWeather.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\visuals\AnimationChanger.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="src\user\cheat\player\FallControl.h">
<Filter>Header Files</Filter>
</ClInclude>
@ -420,10 +429,7 @@
<ClCompile Include="src\user\cheat\visuals\Browser.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\world\MusicEvent.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\visuals\EnablePeaking.cpp">
<ClCompile Include="src\user\cheat\visuals\EnablePeeking.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\visuals\TextureChanger.cpp">
@ -453,6 +459,18 @@
<ClCompile Include="src\user\cheat\visuals\FreeCamera.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\player\AutoRun.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\world\FreezeEnemies.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\world\CustomWeather.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\visuals\AnimationChanger.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\user\cheat\player\FallControl.cpp">
<Filter>Source Files</Filter>
</ClCompile>
@ -468,6 +486,7 @@
<None Include="res\map_teyvat.json" />
<None Include="res\map_undeground_mines.json" />
<None Include="res\assembly_checksum.json" />
<None Include="res\map_golden_apple_archipelago.json" />
</ItemGroup>
<ItemGroup>
<Image Include="icons\Anemoculus.png">
@ -479,7 +498,7 @@
<Image Include="res\iconsHD\AbidingAngelfish.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\AbyssHerald.png">
<Image Include="res\iconsHD\HydroAbyssHerald.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\AbyssMage.png">
@ -533,7 +552,7 @@
<Image Include="res\iconsHD\BambooShoot.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\BathysmalVishap.png">
<Image Include="res\iconsHD\ElectroBathysmalVishap.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\BathysmalVishapHerd.png">
@ -749,7 +768,7 @@
<Image Include="res\iconsHD\FloatingAnemoSlime.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\FloatingHydroFungus.png">
<Image Include="res\iconsHD\FloatingFungus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\FluorescentFungus.png">
@ -1328,7 +1347,7 @@
<Image Include="res\icons\AbidingAngelfish.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\AbyssHerald.png">
<Image Include="res\icons\HydroAbyssHerald.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\AbyssMage.png">
@ -1379,7 +1398,7 @@
<Image Include="res\icons\BambooShoot.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\BathysmalVishap.png">
<Image Include="res\icons\ElectroBathysmalVishap.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\BathysmalVishapHerd.png">
@ -1595,7 +1614,7 @@
<Image Include="res\icons\FloatingAnemoSlime.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\FloatingHydroFungus.png">
<Image Include="res\icons\FloatingFungus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\FluorescentFungus.png">
@ -2171,5 +2190,341 @@
<Image Include="res\icons\YumemiruWood.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\EchoingConch.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ImagingConch.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\EchoingConch.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ImagingConch.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Wigeon.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Andrius.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Azhdaha.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Boar.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Cat.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Cicin.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Crane.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\CryoBathysmalVishap.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Dendroculus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Dog.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\DunlinsTooth.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Dvalin.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Eel.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ElectroAbyssLector.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ElectroRegisvine.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Falcon.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Finch.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Fox.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Inu.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\KeySigil.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Millelith.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Pigeon.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\PyroAbyssLector.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Rifthound.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\RifthoundWhelp.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Salamander.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Shogun.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ShogunateInfantry.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ShrineOfDepth.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Signora.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Tartaglia.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Weasel.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Cat.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Cicin.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Crane.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\CryoBathysmalVishap.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Dendroculus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Dog.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\DunlinsTooth.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Dvalin.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Eel.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ElectroAbyssLector.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ElectroRegisvine.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Falcon.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Finch.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Fox.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Inu.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\KeySigil.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Millelith.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Pigeon.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\PyroAbyssLector.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Rifthound.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\RifthoundWhelp.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Salamander.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Shogun.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ShogunateInfantry.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ShrineOfDepth.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Signora.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Tartaglia.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Weasel.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Wigeon.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Andrius.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Azhdaha.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Boar.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Kairagi.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Kairagi.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\SangonomiyaCohort.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\SangonomiyaCohort.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\SumeruRose.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Tukan.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Viparyas.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ZaytunPeach.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Eremite.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\HarraFruit.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\JadeplumeTerrorshroom.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\KalpalataLotus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\NilotpalaLotus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Padisarah.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\RukkhashavaMushrooms.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Tukan.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Viparyas.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ZaytunPeach.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Eremite.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\HarraFruit.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\JadeplumeTerrorshroom.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\KalpalataLotus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\NilotpalaLotus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Padisarah.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\RukkhashavaMushrooms.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\SumeruRose.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\WhirlingFungus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\WingedShroom.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\GroundedShroom.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\StretchyFungus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\WhirlingFungus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\WingedShroom.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\GroundedShroom.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\StretchyFungus.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\OceanidSummons.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\RishbolandTiger.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\ShaggySumpterBeast.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\Spincrocodile.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\OceanidSummons.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\RishbolandTiger.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\ShaggySumpterBeast.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\Spincrocodile.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\iconsHD\BookPage.png">
<Filter>Resource Files</Filter>
</Image>
<Image Include="res\icons\BookPage.png">
<Filter>Resource Files</Filter>
</Image>
</ItemGroup>
</Project>

View File

@ -1,13 +1,13 @@
{
"game_version": "2.7",
"game_version": "2.8",
"modules": {
"UnityPlayer.dll": {
"checksum": 17900298344514688789,
"timestamp": 132967628640000000
"checksum": 4999961552328781053,
"timestamp": 0
},
"UserAssembly.dll": {
"checksum": 7306786341503590701,
"timestamp": 132967628640000000
"checksum": 807890720029543258,
"timestamp": 0
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 868 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 109 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Some files were not shown because too many files have changed in this diff Show More