From e41fa5ec593fbb8ae20008af824bf54c19700449 Mon Sep 17 00:00:00 2001 From: Joaquin <67109235+Taiga74164@users.noreply.github.com> Date: Mon, 11 Jul 2022 01:05:25 -0600 Subject: [PATCH] Akebi 2.8 --- README.md | 2 +- cheat-library/cheat-library.vcxproj | 6 ++---- cheat-library/cheat-library.vcxproj.filters | 6 ------ cheat-library/src/user/cheat/cheat.cpp | 2 -- cheat-library/src/user/cheat/player/NoCD.cpp | 4 ++-- cheat-library/src/user/cheat/world/KillAura.cpp | 2 +- 6 files changed, 6 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 167ec55..8c55ce0 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,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) @@ -89,6 +88,7 @@ As well as setting up **`cheat-library`** as startup project. - In-game Embedded Browser - Enable Peaking - Profile Changer +- Free Camera - Texture Changer - Paimon Follow diff --git a/cheat-library/cheat-library.vcxproj b/cheat-library/cheat-library.vcxproj index fa7f177..606ac6d 100644 --- a/cheat-library/cheat-library.vcxproj +++ b/cheat-library/cheat-library.vcxproj @@ -96,7 +96,6 @@ - @@ -183,7 +182,6 @@ - @@ -880,8 +878,8 @@ - "$(OutDir)injector.exe" -powershell -nop -c "& {sleep 20}" + + $(OutDir)_noexist.nope;%(Outputs) $(TargetPath);%(Inputs) diff --git a/cheat-library/cheat-library.vcxproj.filters b/cheat-library/cheat-library.vcxproj.filters index 91bba0d..5e6915f 100644 --- a/cheat-library/cheat-library.vcxproj.filters +++ b/cheat-library/cheat-library.vcxproj.filters @@ -213,9 +213,6 @@ Header Files - - Header Files - Header Files @@ -417,9 +414,6 @@ Source Files - - Source Files - Source Files diff --git a/cheat-library/src/user/cheat/cheat.cpp b/cheat-library/src/user/cheat/cheat.cpp index 40d90bc..090c612 100644 --- a/cheat-library/src/user/cheat/cheat.cpp +++ b/cheat-library/src/user/cheat/cheat.cpp @@ -40,7 +40,6 @@ #include #include -#include #include #include @@ -106,7 +105,6 @@ namespace cheat FEAT_INST(AutoFish), FEAT_INST(AutoCook), - FEAT_INST(MusicEvent), FEAT_INST(NoFog), FEAT_INST(FPSUnlock), diff --git a/cheat-library/src/user/cheat/player/NoCD.cpp b/cheat-library/src/user/cheat/player/NoCD.cpp index 926be06..d18ffa0 100644 --- a/cheat-library/src/user/cheat/player/NoCD.cpp +++ b/cheat-library/src/user/cheat/player/NoCD.cpp @@ -9,7 +9,7 @@ namespace cheat::feature static bool HumanoidMoveFSM_CheckSprintCooldown_Hook(void* __this, MethodInfo* method); static bool LCAvatarCombat_IsEnergyMax_Hook(void* __this, MethodInfo* method); static bool LCAvatarCombat_OnSkillStart(app::LCAvatarCombat* __this, uint32_t skillID, float cdMultipler, MethodInfo* method); - static bool LCAvatarCombat_IsSkillInCD_1(app::LCAvatarCombat* __this, app::LCAvatarCombat_OMIIMOJOHIP* skillInfo, MethodInfo* method); + static bool LCAvatarCombat_IsSkillInCD_1(app::LCAvatarCombat* __this, app::LCAvatarCombat_LCAvatarCombat_SkillInfo* skillInfo, MethodInfo* method); static void ActorAbilityPlugin_AddDynamicFloatWithRange_Hook(void* __this, app::String* key, float value, float minValue, float maxValue, bool forceDoAtRemote, MethodInfo* method); @@ -124,7 +124,7 @@ namespace cheat::feature } // Timer Speed Up / CoolDown Reduce New | RyujinZX#6666 - static bool LCAvatarCombat_IsSkillInCD_1(app::LCAvatarCombat* __this, app::LCAvatarCombat_OMIIMOJOHIP* skillInfo, MethodInfo* method) { + static bool LCAvatarCombat_IsSkillInCD_1(app::LCAvatarCombat* __this, app::LCAvatarCombat_LCAvatarCombat_SkillInfo* skillInfo, MethodInfo* method) { NoCD& noCD = NoCD::GetInstance(); if (noCD.f_AbilityReduce) { diff --git a/cheat-library/src/user/cheat/world/KillAura.cpp b/cheat-library/src/user/cheat/world/KillAura.cpp index 451d235..b772e69 100644 --- a/cheat-library/src/user/cheat/world/KillAura.cpp +++ b/cheat-library/src/user/cheat/world/KillAura.cpp @@ -190,7 +190,7 @@ namespace cheat::feature if (manager.avatar()->distance(monster) > killAura.f_Range) return; - moveSync->fields.moveSyncTask.position.x = 1000000.0f; + moveSync->fields._syncTask.position.x = 1000000.0f; } static void BaseMoveSyncPlugin_ConvertSyncTaskToMotionInfo_Hook(app::BaseMoveSyncPlugin* __this, MethodInfo* method)