Added new patterns

This commit is contained in:
a2x
2023-10-09 15:46:03 +10:00
parent 86b6462e56
commit 96a378be0b
8 changed files with 92 additions and 37 deletions

View File

@@ -1,5 +1,5 @@
// Created using https://github.com/a2x/cs2-dumper
// 2023-10-07 01:42:59.790798200 UTC
// 2023-10-09 05:41:44.460863500 UTC
public static class client_dll {
public const nint dwEntityList = 0x17888D8;
@@ -10,6 +10,7 @@ public static class client_dll {
public const nint dwForceLeft = 0x168FF50;
public const nint dwForceRight = 0x168FFE0;
public const nint dwGlobalVars = 0x168BCE8;
public const nint dwGlowManager = 0x17E3C00;
public const nint dwInterfaceLinkList = 0x196EC98;
public const nint dwLocalPlayerController = 0x17D7158;
public const nint dwLocalPlayerPawn = 0x1875C48;
@@ -22,6 +23,7 @@ public static class client_dll {
public static class engine2_dll {
public const nint dwBuildNumber = 0x486514;
public const nint dwNetworkGameClient = 0x485AB0;
public const nint dwNetworkGameClient_getLocalPlayer = 0xF0;
public const nint dwNetworkGameClient_maxClients = 0x250;
public const nint dwNetworkGameClient_signOnState = 0x240;
public const nint dwWindowHeight = 0x5376AC;

View File

@@ -3,7 +3,7 @@
#include <cstddef>
// Created using https://github.com/a2x/cs2-dumper
// 2023-10-07 01:42:59.789624800 UTC
// 2023-10-09 05:41:44.460417200 UTC
namespace client_dll {
constexpr std::ptrdiff_t dwEntityList = 0x17888D8;
@@ -14,6 +14,7 @@ namespace client_dll {
constexpr std::ptrdiff_t dwForceLeft = 0x168FF50;
constexpr std::ptrdiff_t dwForceRight = 0x168FFE0;
constexpr std::ptrdiff_t dwGlobalVars = 0x168BCE8;
constexpr std::ptrdiff_t dwGlowManager = 0x17E3C00;
constexpr std::ptrdiff_t dwInterfaceLinkList = 0x196EC98;
constexpr std::ptrdiff_t dwLocalPlayerController = 0x17D7158;
constexpr std::ptrdiff_t dwLocalPlayerPawn = 0x1875C48;
@@ -26,6 +27,7 @@ namespace client_dll {
namespace engine2_dll {
constexpr std::ptrdiff_t dwBuildNumber = 0x486514;
constexpr std::ptrdiff_t dwNetworkGameClient = 0x485AB0;
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 = 0x5376AC;

View File

@@ -8,6 +8,7 @@
"dwForceLeft": 23658320,
"dwForceRight": 23658464,
"dwGlobalVars": 23641320,
"dwGlowManager": 25050112,
"dwInterfaceLinkList": 26668184,
"dwLocalPlayerController": 24998232,
"dwLocalPlayerPawn": 25648200,
@@ -19,6 +20,7 @@
"engine2_dll": {
"dwBuildNumber": 4744468,
"dwNetworkGameClient": 4741808,
"dwNetworkGameClient_getLocalPlayer": 240,
"dwNetworkGameClient_maxClients": 592,
"dwNetworkGameClient_signOnState": 576,
"dwWindowHeight": 5469868,

View File

@@ -1,7 +1,7 @@
#![allow(non_snake_case, non_upper_case_globals)]
// Created using https://github.com/a2x/cs2-dumper
// 2023-10-07 01:42:59.792129600 UTC
// 2023-10-09 05:41:44.461556800 UTC
pub mod client_dll {
pub const dwEntityList: usize = 0x17888D8;
@@ -12,6 +12,7 @@ pub mod client_dll {
pub const dwForceLeft: usize = 0x168FF50;
pub const dwForceRight: usize = 0x168FFE0;
pub const dwGlobalVars: usize = 0x168BCE8;
pub const dwGlowManager: usize = 0x17E3C00;
pub const dwInterfaceLinkList: usize = 0x196EC98;
pub const dwLocalPlayerController: usize = 0x17D7158;
pub const dwLocalPlayerPawn: usize = 0x1875C48;
@@ -24,6 +25,7 @@ pub mod client_dll {
pub mod engine2_dll {
pub const dwBuildNumber: usize = 0x486514;
pub const dwNetworkGameClient: usize = 0x485AB0;
pub const dwNetworkGameClient_getLocalPlayer: usize = 0xF0;
pub const dwNetworkGameClient_maxClients: usize = 0x250;
pub const dwNetworkGameClient_signOnState: usize = 0x240;
pub const dwWindowHeight: usize = 0x5376AC;