From 33038938844cd99337c761b51f079a7b29b3ec26 Mon Sep 17 00:00:00 2001 From: Joaquin <67109235+Taiga74164@users.noreply.github.com> Date: Wed, 31 Aug 2022 08:31:54 -0600 Subject: [PATCH] God Mode for Decay within Withering Zone, Dialog Skip filter for Ahangar --- .../src/user/cheat/player/GodMode.cpp | 28 +++---------------- .../src/user/cheat/world/DialogSkip.cpp | 3 +- 2 files changed, 6 insertions(+), 25 deletions(-) diff --git a/cheat-library/src/user/cheat/player/GodMode.cpp b/cheat-library/src/user/cheat/player/GodMode.cpp index d3752f0..b772aff 100644 --- a/cheat-library/src/user/cheat/player/GodMode.cpp +++ b/cheat-library/src/user/cheat/player/GodMode.cpp @@ -106,37 +106,17 @@ namespace cheat::feature "ElectricWater", "SeiraiThunder", "UNIQUE_Monster_", - "Monster_Shougun" + "Monster_Shougun", + "UNIQUE_Life_Point_Search", + "UNIQUE_DynamicAbility_DeathZone_LoseHp" }; std::string modifierName = il2cppi_to_string(actorModifier->fields._config->fields._modifierName); + //LOG_DEBUG("modifierName = %s", modifierName.c_str()); for (auto& forbiddenModifierName : modifierBlacklist) if (modifierName.find(forbiddenModifierName) != std::string::npos) return true; return false; } - - // ____________________________________________________________________________________________________________ - // | Name | Description | - // |------------------------------------------------------------------------|-----------------------------------| - // | SERVER_ClimateAbility_Cold_Area | Sheer cold | - // | SERVER_ClimateAbility_Cold_Lv1 | Sheer cold | - // | SERVER_ClimateAbility_Cold_Lv2 | Sheer cold | - // | SERVER_ClimateAbility_TsurumiMist_Area | Electric debuff | - // | SERVER_ClimateAbility_TatariRegion_Area | Electric debuff | - // | SERVER_ClimateAbility_TatariRegion_Lv1 | Electric debuff | - // | SERVER_ClimateAbility_TatariRegion_Lv2 | Electric debuff | - // | SERVER_ClimateAbility_SeiraiStorm_Area | Serai Island | - // | SERVER_ClimateAbility_SeiraiStorm_Lv1 | Serai Island | - // | SERVER_ClimateAbility_SeiraiStorm_Lv2 | Serai Island | - // | SERVER_ClimateAbility_TsurumiMist_Area | Tsurumi Island | - // | ElectricWaterAreaModifier | All electric water in inazuma | - // | BlackMudAreaBuff_Avatar | | - // | BlackMudAreaBuff_Avatar02 | | - // | WaterAreaModifier | | - // | SeiraiThunder_Manager | | - // | UNIQUE_Monster_Shougun_Mitakenarukami_BurstAtk02_NotInShieldPredicated | | - // | Monster_Shougun_Mitakenarukami_BurstAtk02_NotInShieldAtk | | - // |------------------------------------------------------------------------|-----------------------------------| } \ No newline at end of file diff --git a/cheat-library/src/user/cheat/world/DialogSkip.cpp b/cheat-library/src/user/cheat/world/DialogSkip.cpp index 4e937a3..7bdc552 100644 --- a/cheat-library/src/user/cheat/world/DialogSkip.cpp +++ b/cheat-library/src/user/cheat/world/DialogSkip.cpp @@ -97,7 +97,8 @@ namespace cheat::feature std::vector impEntitiesNames = { "Djinn", "Katheryne", - "Wagner" + "Wagner", + "Ahangar" }; auto dialogPartnerID = context->fields._inteeID; auto& manager = game::EntityManager::instance();