diff --git a/README.md b/README.md index 71d6777..83d1aea 100644 --- a/README.md +++ b/README.md @@ -4,20 +4,31 @@ modifying player data in the Player tab Network cracking in the Exploit tab # Note: The master branch does not include visual -# For player: -SpeedHack -AttackHack -DefenseHack -InfStamina -ToggleInfAmmo +# Player Features +- Modify Player Speed +- Modify Player Attack Power +- Modify Player Defense Power +- Infinite Stamina +- Infinite Ammo -# For exploit: -SafeTeleport(You can choose the implementation for TP) -HomeTP -AnywhereTP(It requires you to manually give a position) -ToggleFly -DeleteSelf(Warning: After testing, it will delete your data on the server) -GodHealth -Give EXP(Creadit:WoodgamerHD) -Give item(Creadit:Kaotic13) -# Spawn Pal +# Exploits +- SafeTeleport(You can choose the implementation for TP) +- HomeTP +- AnywhereTP(It requires you to manually give a position) +- ToggleFly +- DeleteSelf(Warning: After testing, it will delete your data on the server) +- GodHealth +- Give EXP (Credit: WoodgamerHD) +- Give Pal (Credit: Kaotic13) +- Spawn Pal + +# AOBS +> GObjects: `48 8B 05 ? ? ? ? 48 8B 0C C8 4C 8D 04 D1 EB 03` +> FNames: `48 8D 05 ? ? ? ? EB 13 48 8D 0D ? ? ? ? E8 ? ? ? ? C6 05 ? ? ? ? ? 0F 10` +> GWorld: `48 8B 1D ?? ?? ?? ?? 48 85 DB 74 33 41 B0` + +## External Library Credits +[Dear ImGui](https://github.com/ocornut/imgui) +[MinHook](https://github.com/TsudaKageyu/minhook) +[Dumper7](https://github.com/Encryqed/Dumper-7) +[DX11-Internal-Base](https://github.com/NightFyre/DX11-ImGui-Internal-Hook) \ No newline at end of file diff --git a/SDK.hpp b/SDK.hpp index bc25ed9..ecce257 100644 --- a/SDK.hpp +++ b/SDK.hpp @@ -24,10 +24,10 @@ typedef unsigned __int64 uint64; namespace Offsets { - constexpr int32 GObjects = 0x087B7100; - constexpr int32 AppendString = 0x02CDEF30; + constexpr int32 GObjects = 0x0879E000; + constexpr int32 AppendString = 0x02CC8CA0; constexpr int32 GNames = 0x00000000; - constexpr int32 ProcessEvent = 0x02E610C0; + constexpr int32 ProcessEvent = 0x02E4AE30; constexpr int32 ProcessEventIdx = 0x0000004C; }