Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ auto RenderContextCallback(void* a1, MinecraftUIRenderContext* ctx) -> void {
auto Hook_ClientInstance::init(void) -> StatusData {

rndrMgr = this->mgr;
auto sig = Utils::findSig("48 8B C4 48 89 58 ? 55 56 57 41 54 41 55 41 56 41 57 48 8D A8 ? ? ? ? 48 81 EC ? ? ? ? 0F 29 70 ? 0F 29 78 ? 48 8B 05 ? ? ? ? 48 33 C4 48 89 85 ? ? ? ? 4C 8B ? 48 89 54 24 ? 4C");
auto sig = Utils::findSig("48 8B C4 48 89 58 18 55 56 57 41 54 41 55 41 56 41 57 48 8D A8 ? ? ? ? 48 81 EC ? ? ? ? 0F 29 70 B8 0F 29 78 A8 48 8B 05 ? ? ? ? 48 33 C4 48 89 85 ? ? ? ? 4C 8B FA");

if (!sig)
return StatusData(MethodStatus::Error, "[ClientInstance Hook] Failed to find Signature!");
Expand Down
2 changes: 1 addition & 1 deletion Thrift/Client/Manager/Hooks/Key/HookKey.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ auto KeyHookCallback(uint64_t key, bool isDown) -> void {
auto Hook_Key::init(void) -> StatusData {

kMgr = this->mgr;
auto sig = Utils::findSig("48 ? ? 48 ? ? ? 4C 8D 05 ? ? ? ? 89");
auto sig = Utils::findSig("48 83 EC ? ? ? C1 4C 8D 05");

if (!sig)
return StatusData(MethodStatus::Error, "[Key Hook] Failed to find Signature!");
Expand Down
6 changes: 3 additions & 3 deletions Thrift/Client/Manager/Modules/Movement/AirJump.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class AirJump : public Module {
auto instance = Minecraft::getClientInstance();
auto player = (instance != nullptr ? instance->LocalPlayer : nullptr);

if (player != nullptr)
player->getMovementProxy()->setOnGround(true);
};
if (player != nullptr);
// player->getMovementProxy()->setOnGround(true); we dont have movement proxy rn, and i dont wanna give entt out yet, so nrg will have to add a sig
}
};
4 changes: 2 additions & 2 deletions Thrift/Client/Manager/Modules/Movement/AutoJump.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class AutoJump : public Module {
auto instance = Minecraft::getClientInstance();
auto player = (instance != nullptr ? instance->LocalPlayer : nullptr);

if (player != nullptr)
player->getMovementProxy()->setJumping(true);
if (player != nullptr);
//player->getMovementProxy()->setJumping(true); we dont have movement proxy rn, and i dont wanna give entt out yet, so nrg will have to add a sig
};
};
8 changes: 4 additions & 4 deletions Thrift/Client/Manager/Modules/Movement/AutoSprint.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ class AutoSprint : public Module {
auto instance = Minecraft::getClientInstance();
auto player = (instance != nullptr ? instance->LocalPlayer : nullptr);
if (player == nullptr) return;
auto input = instance->getMoveInputHandler;
if (instance->getMoveInputHandler->isSneakDown) return;
// auto input = instance->getMoveInputHandler; moveinputhandler has been broken since forever.
// if (instance->getMoveInputHandler->isSneakDown) return; moveinputhandler has been broken since forever.

if ((input->forwardMovement > 0 || ((input->forwardMovement || input->sideMovement))))
player->getMovementProxy()->setSprinting(true);
// if ((input->forwardMovement > 0 || ((input->forwardMovement || input->sideMovement))))
// player->getMovementProxy()->setSprinting(true); // we dont have movement proxy rn, and i dont wanna give entt out yet, so nrg will have to add a sig
};
};
Loading