mirror of
https://github.com/a2x/cs2-dumper.git
synced 2026-04-17 19:49:58 +08:00
47 lines
2.0 KiB
C++
47 lines
2.0 KiB
C++
/*
|
|
* Created using https://github.com/a2x/cs2-dumper
|
|
* Fri, 10 Nov 2023 07:08:46 +0000
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
|
|
namespace client_dll { // client.dll
|
|
constexpr std::ptrdiff_t dwEntityList = 0x17ADAE0;
|
|
constexpr std::ptrdiff_t dwForceAttack = 0x16B2310;
|
|
constexpr std::ptrdiff_t dwForceAttack2 = 0x16B23A0;
|
|
constexpr std::ptrdiff_t dwForceBackward = 0x16B25E0;
|
|
constexpr std::ptrdiff_t dwForceCrouch = 0x16B28B0;
|
|
constexpr std::ptrdiff_t dwForceForward = 0x16B2550;
|
|
constexpr std::ptrdiff_t dwForceJump = 0x16B2820;
|
|
constexpr std::ptrdiff_t dwForceLeft = 0x16B2670;
|
|
constexpr std::ptrdiff_t dwForceRight = 0x16B2700;
|
|
constexpr std::ptrdiff_t dwGameEntitySystem = 0x18D72D0;
|
|
constexpr std::ptrdiff_t dwGameEntitySystem_getHighestEntityIndex = 0x1510;
|
|
constexpr std::ptrdiff_t dwGameRules = 0x1809720;
|
|
constexpr std::ptrdiff_t dwGlobalVars = 0x16AE498;
|
|
constexpr std::ptrdiff_t dwGlowManager = 0x1809748;
|
|
constexpr std::ptrdiff_t dwInterfaceLinkList = 0x1904F68;
|
|
constexpr std::ptrdiff_t dwLocalPlayerController = 0x17FCDB8;
|
|
constexpr std::ptrdiff_t dwLocalPlayerPawn = 0x16B9388;
|
|
constexpr std::ptrdiff_t dwPlantedC4 = 0x1810CC8;
|
|
constexpr std::ptrdiff_t dwPrediction = 0x16B9250;
|
|
constexpr std::ptrdiff_t dwViewAngles = 0x186B0F8;
|
|
constexpr std::ptrdiff_t dwViewMatrix = 0x180C0E0;
|
|
constexpr std::ptrdiff_t dwViewRender = 0x180C938;
|
|
}
|
|
|
|
namespace engine2_dll { // engine2.dll
|
|
constexpr std::ptrdiff_t dwBuildNumber = 0x48B524;
|
|
constexpr std::ptrdiff_t dwNetworkGameClient = 0x48AAC0;
|
|
constexpr std::ptrdiff_t dwNetworkGameClient_getLocalPlayer = 0xF0;
|
|
constexpr std::ptrdiff_t dwNetworkGameClient_maxClients = 0x250;
|
|
constexpr std::ptrdiff_t dwNetworkGameClient_signOnState = 0x240;
|
|
constexpr std::ptrdiff_t dwWindowHeight = 0x541E1C;
|
|
constexpr std::ptrdiff_t dwWindowWidth = 0x541E18;
|
|
}
|
|
|
|
namespace inputsystem_dll { // inputsystem.dll
|
|
constexpr std::ptrdiff_t dwInputSystem = 0x35770;
|
|
} |