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 1/4] 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)
From 81bcad6c6810f033e768f923cac6a3ebd5c8e558 Mon Sep 17 00:00:00 2001
From: Joaquin <67109235+Taiga74164@users.noreply.github.com>
Date: Mon, 11 Jul 2022 01:08:04 -0600
Subject: [PATCH 2/4] Custom Build Setup
oops forgot to restore lol
---
cheat-library/cheat-library.vcxproj | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/cheat-library/cheat-library.vcxproj b/cheat-library/cheat-library.vcxproj
index 606ac6d..a605bca 100644
--- a/cheat-library/cheat-library.vcxproj
+++ b/cheat-library/cheat-library.vcxproj
@@ -878,8 +878,7 @@
-
-
+ "$(OutDir)injector.exe" powershell -nop -c "& {sleep 20}"
$(OutDir)_noexist.nope;%(Outputs)
$(TargetPath);%(Inputs)
From 86bb8a9b8d8010fb7c8a3311460ed01063ae3a2b Mon Sep 17 00:00:00 2001
From: Joaquin <67109235+Taiga74164@users.noreply.github.com>
Date: Tue, 12 Jul 2022 02:45:00 -0600
Subject: [PATCH 4/4] fix Alt God Mode crash
---
cheat-library/res/assembly_checksum.json | 10 +++++-----
cheat-library/src/user/cheat/cheat.cpp | 1 -
2 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/cheat-library/res/assembly_checksum.json b/cheat-library/res/assembly_checksum.json
index f6d10ba..beadfe5 100644
--- a/cheat-library/res/assembly_checksum.json
+++ b/cheat-library/res/assembly_checksum.json
@@ -1,13 +1,13 @@
{
- "game_version": "2.7",
+ "game_version": "2.8",
"modules": {
"UnityPlayer.dll": {
- "checksum": 17900298344514688789,
- "timestamp": 132967628640000000
+ "checksum": 0,
+ "timestamp": 0
},
"UserAssembly.dll": {
- "checksum": 7306786341503590701,
- "timestamp": 132967628640000000
+ "checksum": 0,
+ "timestamp": 0
}
}
}
\ No newline at end of file
diff --git a/cheat-library/src/user/cheat/cheat.cpp b/cheat-library/src/user/cheat/cheat.cpp
index 090c612..2fc8172 100644
--- a/cheat-library/src/user/cheat/cheat.cpp
+++ b/cheat-library/src/user/cheat/cheat.cpp
@@ -93,7 +93,6 @@ namespace cheat
FEAT_INST(KillAura),
FEAT_INST(MobVacuum),
FEAT_INST(FakeTime),
-
FEAT_INST(ChestTeleport),
FEAT_INST(OculiTeleport),