This commit is contained in:
Oscar
2025-07-25 22:49:56 +03:00
parent 03af6d458c
commit 860be9ac4c
470 changed files with 308020 additions and 436 deletions

View File

@@ -38,12 +38,13 @@ void* __fastcall H::hkLevelInit(void* pClientModeShared, const char* szNewMap) {
return LevelInit.GetOriginal()(pClientModeShared, szNewMap);
}
bool __fastcall H::hkCreateMove(void* pInput, int nSlot, void* pCmd) {
//Aimbot();
//SilentAimbot(reinterpret_cast<CUserCmd*>(pCmd));
Ver2Aimbot(reinterpret_cast<CUserCmd*>(pCmd));
bool __fastcall H::hkCreateMove(void* pInput, int nSlot, CUserCmd* pCmd) {
SilentAimbot(pCmd);
//Ver2Aimbot(pCmd);
Triggerbot();
return CreateMove.GetOriginal()(pInput, nSlot, pCmd);
return CreateMove.GetOriginal()(pInput, nSlot, pCmd);
// return CreateMove.GetOriginal()(pInput, edx, nSlot, pCmd);
}
void H::Hooks::init() {

View File

@@ -1,4 +1,5 @@
#pragma once
#include "../features/aim/CUserCmd.h"
#include "includeHooks.h"
#include "../../cs2/entity/C_AggregateSceneObject/C_AggregateSceneObject.h"
#include "../../cs2/entity/C_CSPlayerPawn/C_CSPlayerPawn.h"
@@ -16,7 +17,8 @@ namespace H {
void* __fastcall hkLevelInit(void* pClientModeShared, const char* szNewMap);
void __fastcall hkChamsObject(void* pAnimatableSceneObjectDesc, void* pDx11, CMeshData* arrMeshDraw, int nDataCount, void* pSceneView, void* pSceneLayer, void* pUnk, void* pUnk2);
void __fastcall hkRenderFlashbangOverlay(void* a1, void* a2, void* a3, void* a4, void* a5);
bool __fastcall hkCreateMove(void* pInput, int nSlot, void* pCmd);
// bool __fastcall hkCreateMove(void* pInput, void* edx, int nSlot, CUserCmd* pCmd);
bool __fastcall hkCreateMove(void* pInput, int nSlot, CUserCmd* pCmd);
inline float g_flActiveFov;
float hkGetRenderFov(void* rcx);