Game update (14078)

This commit is contained in:
a2x 2025-05-14 11:38:15 +10:00 committed by GitHub
commit a4329c2ab4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
65 changed files with 267 additions and 267 deletions

View File

@ -1,5 +1,5 @@
03:39:59 [INFO] found 16 buttons
03:39:59 [INFO] found 131 interfaces across 33 modules
03:40:00 [INFO] found 33 offsets across 5 modules
03:40:00 [INFO] found 2442 classes and 368 enums across 17 modules
03:40:00 [INFO] analysis completed in 772.17ms
23:54:53 [INFO] found 16 buttons
23:54:53 [INFO] found 131 interfaces across 33 modules
23:54:54 [INFO] found 33 offsets across 5 modules
23:54:54 [INFO] found 2442 classes and 368 enums across 17 modules
23:54:54 [INFO] analysis completed in 1.44s

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: animationsystem.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,24 +1,24 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper {
// Module: client.dll
public static class Buttons {
public const nint attack = 0x18438F0;
public const nint attack2 = 0x1843980;
public const nint back = 0x1843BC0;
public const nint duck = 0x1843E90;
public const nint forward = 0x1843B30;
public const nint jump = 0x1843E00;
public const nint left = 0x1843C50;
public const nint lookatweapon = 0x1A69E10;
public const nint reload = 0x1843860;
public const nint right = 0x1843CE0;
public const nint showscores = 0x1A69CF0;
public const nint sprint = 0x18437D0;
public const nint turnleft = 0x1843A10;
public const nint turnright = 0x1843AA0;
public const nint use = 0x1843D70;
public const nint zoom = 0x1A69D80;
public const nint attack = 0x18448F0;
public const nint attack2 = 0x1844980;
public const nint back = 0x1844BC0;
public const nint duck = 0x1844E90;
public const nint forward = 0x1844B30;
public const nint jump = 0x1844E00;
public const nint left = 0x1844C50;
public const nint lookatweapon = 0x1A6AE30;
public const nint reload = 0x1844860;
public const nint right = 0x1844CE0;
public const nint showscores = 0x1A6AD10;
public const nint sprint = 0x18447D0;
public const nint turnleft = 0x1844A10;
public const nint turnright = 0x1844AA0;
public const nint use = 0x1844D70;
public const nint zoom = 0x1A6ADA0;
}
}

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once
@ -8,21 +8,21 @@
namespace cs2_dumper {
// Module: client.dll
namespace buttons {
constexpr std::ptrdiff_t attack = 0x18438F0;
constexpr std::ptrdiff_t attack2 = 0x1843980;
constexpr std::ptrdiff_t back = 0x1843BC0;
constexpr std::ptrdiff_t duck = 0x1843E90;
constexpr std::ptrdiff_t forward = 0x1843B30;
constexpr std::ptrdiff_t jump = 0x1843E00;
constexpr std::ptrdiff_t left = 0x1843C50;
constexpr std::ptrdiff_t lookatweapon = 0x1A69E10;
constexpr std::ptrdiff_t reload = 0x1843860;
constexpr std::ptrdiff_t right = 0x1843CE0;
constexpr std::ptrdiff_t showscores = 0x1A69CF0;
constexpr std::ptrdiff_t sprint = 0x18437D0;
constexpr std::ptrdiff_t turnleft = 0x1843A10;
constexpr std::ptrdiff_t turnright = 0x1843AA0;
constexpr std::ptrdiff_t use = 0x1843D70;
constexpr std::ptrdiff_t zoom = 0x1A69D80;
constexpr std::ptrdiff_t attack = 0x18448F0;
constexpr std::ptrdiff_t attack2 = 0x1844980;
constexpr std::ptrdiff_t back = 0x1844BC0;
constexpr std::ptrdiff_t duck = 0x1844E90;
constexpr std::ptrdiff_t forward = 0x1844B30;
constexpr std::ptrdiff_t jump = 0x1844E00;
constexpr std::ptrdiff_t left = 0x1844C50;
constexpr std::ptrdiff_t lookatweapon = 0x1A6AE30;
constexpr std::ptrdiff_t reload = 0x1844860;
constexpr std::ptrdiff_t right = 0x1844CE0;
constexpr std::ptrdiff_t showscores = 0x1A6AD10;
constexpr std::ptrdiff_t sprint = 0x18447D0;
constexpr std::ptrdiff_t turnleft = 0x1844A10;
constexpr std::ptrdiff_t turnright = 0x1844AA0;
constexpr std::ptrdiff_t use = 0x1844D70;
constexpr std::ptrdiff_t zoom = 0x1A6ADA0;
}
}

View File

@ -1,20 +1,20 @@
{
"client.dll": {
"attack": 25442544,
"attack2": 25442688,
"back": 25443264,
"duck": 25443984,
"forward": 25443120,
"jump": 25443840,
"left": 25443408,
"lookatweapon": 27696656,
"reload": 25442400,
"right": 25443552,
"showscores": 27696368,
"sprint": 25442256,
"turnleft": 25442832,
"turnright": 25442976,
"use": 25443696,
"zoom": 27696512
"attack": 25446640,
"attack2": 25446784,
"back": 25447360,
"duck": 25448080,
"forward": 25447216,
"jump": 25447936,
"left": 25447504,
"lookatweapon": 27700784,
"reload": 25446496,
"right": 25447648,
"showscores": 27700496,
"sprint": 25446352,
"turnleft": 25446928,
"turnright": 25447072,
"use": 25447792,
"zoom": 27700640
}
}

View File

@ -1,26 +1,26 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, unused)]
pub mod cs2_dumper {
// Module: client.dll
pub mod buttons {
pub const attack: usize = 0x18438F0;
pub const attack2: usize = 0x1843980;
pub const back: usize = 0x1843BC0;
pub const duck: usize = 0x1843E90;
pub const forward: usize = 0x1843B30;
pub const jump: usize = 0x1843E00;
pub const left: usize = 0x1843C50;
pub const lookatweapon: usize = 0x1A69E10;
pub const reload: usize = 0x1843860;
pub const right: usize = 0x1843CE0;
pub const showscores: usize = 0x1A69CF0;
pub const sprint: usize = 0x18437D0;
pub const turnleft: usize = 0x1843A10;
pub const turnright: usize = 0x1843AA0;
pub const r#use: usize = 0x1843D70;
pub const zoom: usize = 0x1A69D80;
pub const attack: usize = 0x18448F0;
pub const attack2: usize = 0x1844980;
pub const back: usize = 0x1844BC0;
pub const duck: usize = 0x1844E90;
pub const forward: usize = 0x1844B30;
pub const jump: usize = 0x1844E00;
pub const left: usize = 0x1844C50;
pub const lookatweapon: usize = 0x1A6AE30;
pub const reload: usize = 0x1844860;
pub const right: usize = 0x1844CE0;
pub const showscores: usize = 0x1A6AD10;
pub const sprint: usize = 0x18447D0;
pub const turnleft: usize = 0x1844A10;
pub const turnright: usize = 0x1844AA0;
pub const r#use: usize = 0x1844D70;
pub const zoom: usize = 0x1A6ADA0;
}
}

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: client.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: engine2.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: host.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,4 +1,4 @@
{
"build_number": 14076,
"timestamp": "2025-05-09T03:40:00.267016600+00:00"
"build_number": 14078,
"timestamp": "2025-05-13T23:54:54.425036700+00:00"
}

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Interfaces {
// Module: animationsystem.dll
@ -9,14 +9,14 @@ namespace CS2Dumper.Interfaces {
}
// Module: client.dll
public static class ClientDll {
public const nint ClientToolsInfo_001 = 0x1842EE0;
public const nint EmptyWorldService001_Client = 0x17FF070;
public const nint GameClientExports001 = 0x183FB98;
public const nint LegacyGameUI001 = 0x18601D0;
public const nint Source2Client002 = 0x1A59560;
public const nint Source2ClientConfig001 = 0x19F1F90;
public const nint Source2ClientPrediction001 = 0x184AF50;
public const nint Source2ClientUI001 = 0x185E700;
public const nint ClientToolsInfo_001 = 0x1843EE0;
public const nint EmptyWorldService001_Client = 0x1800070;
public const nint GameClientExports001 = 0x1840B98;
public const nint LegacyGameUI001 = 0x18611D0;
public const nint Source2Client002 = 0x1A5A580;
public const nint Source2ClientConfig001 = 0x19F2FC0;
public const nint Source2ClientPrediction001 = 0x184BF50;
public const nint Source2ClientUI001 = 0x185F700;
}
// Module: engine2.dll
public static class Engine2Dll {
@ -157,15 +157,15 @@ namespace CS2Dumper.Interfaces {
}
// Module: server.dll
public static class ServerDll {
public const nint EmptyWorldService001_Server = 0x1369D80;
public const nint EmptyWorldService001_Server = 0x1369D70;
public const nint EntitySubclassUtilsV001 = 0x131A3D0;
public const nint NavGameTest001 = 0x1408E58;
public const nint ServerToolsInfo_001 = 0x13BE7C8;
public const nint Source2GameClients001 = 0x13B8690;
public const nint NavGameTest001 = 0x1408E48;
public const nint ServerToolsInfo_001 = 0x13BE7B8;
public const nint Source2GameClients001 = 0x13B8680;
public const nint Source2GameDirector001 = 0x14EC6A0;
public const nint Source2GameEntities001 = 0x13BE6F0;
public const nint Source2Server001 = 0x13BE560;
public const nint Source2ServerConfig001 = 0x15B7188;
public const nint Source2GameEntities001 = 0x13BE6E0;
public const nint Source2Server001 = 0x13BE550;
public const nint Source2ServerConfig001 = 0x15B7178;
public const nint customnavsystem001 = 0x12FEB48;
}
// Module: soundsystem.dll
@ -205,9 +205,9 @@ namespace CS2Dumper.Interfaces {
}
// Module: tier0.dll
public static class Tier0Dll {
public const nint TestScriptMgr001 = 0x37EA70;
public const nint VEngineCvar007 = 0x38D4B0;
public const nint VProcessUtils002 = 0x37E980;
public const nint TestScriptMgr001 = 0x37EA80;
public const nint VEngineCvar007 = 0x38D4E0;
public const nint VProcessUtils002 = 0x37E990;
public const nint VStringTokenSystem001 = 0x3A5F00;
}
// Module: v8system.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once
@ -14,14 +14,14 @@ namespace cs2_dumper {
}
// Module: client.dll
namespace client_dll {
constexpr std::ptrdiff_t ClientToolsInfo_001 = 0x1842EE0;
constexpr std::ptrdiff_t EmptyWorldService001_Client = 0x17FF070;
constexpr std::ptrdiff_t GameClientExports001 = 0x183FB98;
constexpr std::ptrdiff_t LegacyGameUI001 = 0x18601D0;
constexpr std::ptrdiff_t Source2Client002 = 0x1A59560;
constexpr std::ptrdiff_t Source2ClientConfig001 = 0x19F1F90;
constexpr std::ptrdiff_t Source2ClientPrediction001 = 0x184AF50;
constexpr std::ptrdiff_t Source2ClientUI001 = 0x185E700;
constexpr std::ptrdiff_t ClientToolsInfo_001 = 0x1843EE0;
constexpr std::ptrdiff_t EmptyWorldService001_Client = 0x1800070;
constexpr std::ptrdiff_t GameClientExports001 = 0x1840B98;
constexpr std::ptrdiff_t LegacyGameUI001 = 0x18611D0;
constexpr std::ptrdiff_t Source2Client002 = 0x1A5A580;
constexpr std::ptrdiff_t Source2ClientConfig001 = 0x19F2FC0;
constexpr std::ptrdiff_t Source2ClientPrediction001 = 0x184BF50;
constexpr std::ptrdiff_t Source2ClientUI001 = 0x185F700;
}
// Module: engine2.dll
namespace engine2_dll {
@ -162,15 +162,15 @@ namespace cs2_dumper {
}
// Module: server.dll
namespace server_dll {
constexpr std::ptrdiff_t EmptyWorldService001_Server = 0x1369D80;
constexpr std::ptrdiff_t EmptyWorldService001_Server = 0x1369D70;
constexpr std::ptrdiff_t EntitySubclassUtilsV001 = 0x131A3D0;
constexpr std::ptrdiff_t NavGameTest001 = 0x1408E58;
constexpr std::ptrdiff_t ServerToolsInfo_001 = 0x13BE7C8;
constexpr std::ptrdiff_t Source2GameClients001 = 0x13B8690;
constexpr std::ptrdiff_t NavGameTest001 = 0x1408E48;
constexpr std::ptrdiff_t ServerToolsInfo_001 = 0x13BE7B8;
constexpr std::ptrdiff_t Source2GameClients001 = 0x13B8680;
constexpr std::ptrdiff_t Source2GameDirector001 = 0x14EC6A0;
constexpr std::ptrdiff_t Source2GameEntities001 = 0x13BE6F0;
constexpr std::ptrdiff_t Source2Server001 = 0x13BE560;
constexpr std::ptrdiff_t Source2ServerConfig001 = 0x15B7188;
constexpr std::ptrdiff_t Source2GameEntities001 = 0x13BE6E0;
constexpr std::ptrdiff_t Source2Server001 = 0x13BE550;
constexpr std::ptrdiff_t Source2ServerConfig001 = 0x15B7178;
constexpr std::ptrdiff_t customnavsystem001 = 0x12FEB48;
}
// Module: soundsystem.dll
@ -210,9 +210,9 @@ namespace cs2_dumper {
}
// Module: tier0.dll
namespace tier0_dll {
constexpr std::ptrdiff_t TestScriptMgr001 = 0x37EA70;
constexpr std::ptrdiff_t VEngineCvar007 = 0x38D4B0;
constexpr std::ptrdiff_t VProcessUtils002 = 0x37E980;
constexpr std::ptrdiff_t TestScriptMgr001 = 0x37EA80;
constexpr std::ptrdiff_t VEngineCvar007 = 0x38D4E0;
constexpr std::ptrdiff_t VProcessUtils002 = 0x37E990;
constexpr std::ptrdiff_t VStringTokenSystem001 = 0x3A5F00;
}
// Module: v8system.dll

View File

@ -4,14 +4,14 @@
"AnimationSystem_001": 6323504
},
"client.dll": {
"ClientToolsInfo_001": 25439968,
"EmptyWorldService001_Client": 25161840,
"GameClientExports001": 25426840,
"LegacyGameUI001": 25559504,
"Source2Client002": 27628896,
"Source2ClientConfig001": 27205520,
"Source2ClientPrediction001": 25472848,
"Source2ClientUI001": 25552640
"ClientToolsInfo_001": 25444064,
"EmptyWorldService001_Client": 25165936,
"GameClientExports001": 25430936,
"LegacyGameUI001": 25563600,
"Source2Client002": 27633024,
"Source2ClientConfig001": 27209664,
"Source2ClientPrediction001": 25476944,
"Source2ClientUI001": 25556736
},
"engine2.dll": {
"BenchmarkService001": 5537072,
@ -130,15 +130,15 @@
"SchemaSystem_001": 399072
},
"server.dll": {
"EmptyWorldService001_Server": 20356480,
"EmptyWorldService001_Server": 20356464,
"EntitySubclassUtilsV001": 20030416,
"NavGameTest001": 21007960,
"ServerToolsInfo_001": 20703176,
"Source2GameClients001": 20678288,
"NavGameTest001": 21007944,
"ServerToolsInfo_001": 20703160,
"Source2GameClients001": 20678272,
"Source2GameDirector001": 21939872,
"Source2GameEntities001": 20702960,
"Source2Server001": 20702560,
"Source2ServerConfig001": 22770056,
"Source2GameEntities001": 20702944,
"Source2Server001": 20702544,
"Source2ServerConfig001": 22770040,
"customnavsystem001": 19917640
},
"soundsystem.dll": {
@ -174,9 +174,9 @@
"p2pvoicesingleton002": 21987552
},
"tier0.dll": {
"TestScriptMgr001": 3664496,
"VEngineCvar007": 3724464,
"VProcessUtils002": 3664256,
"TestScriptMgr001": 3664512,
"VEngineCvar007": 3724512,
"VProcessUtils002": 3664272,
"VStringTokenSystem001": 3825408
},
"v8system.dll": {

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, unused)]
@ -12,14 +12,14 @@ pub mod cs2_dumper {
}
// Module: client.dll
pub mod client_dll {
pub const ClientToolsInfo_001: usize = 0x1842EE0;
pub const EmptyWorldService001_Client: usize = 0x17FF070;
pub const GameClientExports001: usize = 0x183FB98;
pub const LegacyGameUI001: usize = 0x18601D0;
pub const Source2Client002: usize = 0x1A59560;
pub const Source2ClientConfig001: usize = 0x19F1F90;
pub const Source2ClientPrediction001: usize = 0x184AF50;
pub const Source2ClientUI001: usize = 0x185E700;
pub const ClientToolsInfo_001: usize = 0x1843EE0;
pub const EmptyWorldService001_Client: usize = 0x1800070;
pub const GameClientExports001: usize = 0x1840B98;
pub const LegacyGameUI001: usize = 0x18611D0;
pub const Source2Client002: usize = 0x1A5A580;
pub const Source2ClientConfig001: usize = 0x19F2FC0;
pub const Source2ClientPrediction001: usize = 0x184BF50;
pub const Source2ClientUI001: usize = 0x185F700;
}
// Module: engine2.dll
pub mod engine2_dll {
@ -160,15 +160,15 @@ pub mod cs2_dumper {
}
// Module: server.dll
pub mod server_dll {
pub const EmptyWorldService001_Server: usize = 0x1369D80;
pub const EmptyWorldService001_Server: usize = 0x1369D70;
pub const EntitySubclassUtilsV001: usize = 0x131A3D0;
pub const NavGameTest001: usize = 0x1408E58;
pub const ServerToolsInfo_001: usize = 0x13BE7C8;
pub const Source2GameClients001: usize = 0x13B8690;
pub const NavGameTest001: usize = 0x1408E48;
pub const ServerToolsInfo_001: usize = 0x13BE7B8;
pub const Source2GameClients001: usize = 0x13B8680;
pub const Source2GameDirector001: usize = 0x14EC6A0;
pub const Source2GameEntities001: usize = 0x13BE6F0;
pub const Source2Server001: usize = 0x13BE560;
pub const Source2ServerConfig001: usize = 0x15B7188;
pub const Source2GameEntities001: usize = 0x13BE6E0;
pub const Source2Server001: usize = 0x13BE550;
pub const Source2ServerConfig001: usize = 0x15B7178;
pub const customnavsystem001: usize = 0x12FEB48;
}
// Module: soundsystem.dll
@ -208,9 +208,9 @@ pub mod cs2_dumper {
}
// Module: tier0.dll
pub mod tier0_dll {
pub const TestScriptMgr001: usize = 0x37EA70;
pub const VEngineCvar007: usize = 0x38D4B0;
pub const VProcessUtils002: usize = 0x37E980;
pub const TestScriptMgr001: usize = 0x37EA80;
pub const VEngineCvar007: usize = 0x38D4E0;
pub const VProcessUtils002: usize = 0x37E990;
pub const VStringTokenSystem001: usize = 0x3A5F00;
}
// Module: v8system.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: materialsystem2.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: networksystem.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,33 +1,33 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Offsets {
// Module: client.dll
public static class ClientDll {
public const nint dwCSGOInput = 0x1A69EF0;
public const nint dwEntityList = 0x19F6F00;
public const nint dwGameEntitySystem = 0x1B1A718;
public const nint dwCSGOInput = 0x1A6AF10;
public const nint dwEntityList = 0x19F7F20;
public const nint dwGameEntitySystem = 0x1B1B748;
public const nint dwGameEntitySystem_highestEntityIndex = 0x20F0;
public const nint dwGameRules = 0x1A5B7D8;
public const nint dwGlobalVars = 0x183F148;
public const nint dwGlowManager = 0x1A5AF20;
public const nint dwLocalPlayerController = 0x1A459E0;
public const nint dwLocalPlayerPawn = 0x184B0D0;
public const nint dwPlantedC4 = 0x1A660B8;
public const nint dwPrediction = 0x184AF50;
public const nint dwSensitivity = 0x1A5C4F8;
public const nint dwGameRules = 0x1A5C7F8;
public const nint dwGlobalVars = 0x1840148;
public const nint dwGlowManager = 0x1A5BF40;
public const nint dwLocalPlayerController = 0x1A46A00;
public const nint dwLocalPlayerPawn = 0x184C0D0;
public const nint dwPlantedC4 = 0x1A670D8;
public const nint dwPrediction = 0x184BF50;
public const nint dwSensitivity = 0x1A5D518;
public const nint dwSensitivity_sensitivity = 0x40;
public const nint dwViewAngles = 0x1A6A2C0;
public const nint dwViewMatrix = 0x1A5FED0;
public const nint dwViewRender = 0x1A60988;
public const nint dwWeaponC4 = 0x19F9260;
public const nint dwViewAngles = 0x1A6B2E0;
public const nint dwViewMatrix = 0x1A60EF0;
public const nint dwViewRender = 0x1A619A8;
public const nint dwWeaponC4 = 0x19FA280;
}
// Module: engine2.dll
public static class Engine2Dll {
public const nint dwBuildNumber = 0x541BE4;
public const nint dwNetworkGameClient = 0x540CE0;
public const nint dwNetworkGameClient_clientTickCount = 0x368;
public const nint dwNetworkGameClient_deltaTick = 0x244;
public const nint dwNetworkGameClient_deltaTick = 0x27C;
public const nint dwNetworkGameClient_isBackgroundMap = 0x281447;
public const nint dwNetworkGameClient_localPlayer = 0xF0;
public const nint dwNetworkGameClient_maxClients = 0x238;

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once
@ -9,30 +9,30 @@ namespace cs2_dumper {
namespace offsets {
// Module: client.dll
namespace client_dll {
constexpr std::ptrdiff_t dwCSGOInput = 0x1A69EF0;
constexpr std::ptrdiff_t dwEntityList = 0x19F6F00;
constexpr std::ptrdiff_t dwGameEntitySystem = 0x1B1A718;
constexpr std::ptrdiff_t dwCSGOInput = 0x1A6AF10;
constexpr std::ptrdiff_t dwEntityList = 0x19F7F20;
constexpr std::ptrdiff_t dwGameEntitySystem = 0x1B1B748;
constexpr std::ptrdiff_t dwGameEntitySystem_highestEntityIndex = 0x20F0;
constexpr std::ptrdiff_t dwGameRules = 0x1A5B7D8;
constexpr std::ptrdiff_t dwGlobalVars = 0x183F148;
constexpr std::ptrdiff_t dwGlowManager = 0x1A5AF20;
constexpr std::ptrdiff_t dwLocalPlayerController = 0x1A459E0;
constexpr std::ptrdiff_t dwLocalPlayerPawn = 0x184B0D0;
constexpr std::ptrdiff_t dwPlantedC4 = 0x1A660B8;
constexpr std::ptrdiff_t dwPrediction = 0x184AF50;
constexpr std::ptrdiff_t dwSensitivity = 0x1A5C4F8;
constexpr std::ptrdiff_t dwGameRules = 0x1A5C7F8;
constexpr std::ptrdiff_t dwGlobalVars = 0x1840148;
constexpr std::ptrdiff_t dwGlowManager = 0x1A5BF40;
constexpr std::ptrdiff_t dwLocalPlayerController = 0x1A46A00;
constexpr std::ptrdiff_t dwLocalPlayerPawn = 0x184C0D0;
constexpr std::ptrdiff_t dwPlantedC4 = 0x1A670D8;
constexpr std::ptrdiff_t dwPrediction = 0x184BF50;
constexpr std::ptrdiff_t dwSensitivity = 0x1A5D518;
constexpr std::ptrdiff_t dwSensitivity_sensitivity = 0x40;
constexpr std::ptrdiff_t dwViewAngles = 0x1A6A2C0;
constexpr std::ptrdiff_t dwViewMatrix = 0x1A5FED0;
constexpr std::ptrdiff_t dwViewRender = 0x1A60988;
constexpr std::ptrdiff_t dwWeaponC4 = 0x19F9260;
constexpr std::ptrdiff_t dwViewAngles = 0x1A6B2E0;
constexpr std::ptrdiff_t dwViewMatrix = 0x1A60EF0;
constexpr std::ptrdiff_t dwViewRender = 0x1A619A8;
constexpr std::ptrdiff_t dwWeaponC4 = 0x19FA280;
}
// Module: engine2.dll
namespace engine2_dll {
constexpr std::ptrdiff_t dwBuildNumber = 0x541BE4;
constexpr std::ptrdiff_t dwNetworkGameClient = 0x540CE0;
constexpr std::ptrdiff_t dwNetworkGameClient_clientTickCount = 0x368;
constexpr std::ptrdiff_t dwNetworkGameClient_deltaTick = 0x244;
constexpr std::ptrdiff_t dwNetworkGameClient_deltaTick = 0x27C;
constexpr std::ptrdiff_t dwNetworkGameClient_isBackgroundMap = 0x281447;
constexpr std::ptrdiff_t dwNetworkGameClient_localPlayer = 0xF0;
constexpr std::ptrdiff_t dwNetworkGameClient_maxClients = 0x238;

View File

@ -1,28 +1,28 @@
{
"client.dll": {
"dwCSGOInput": 27696880,
"dwEntityList": 27225856,
"dwGameEntitySystem": 28419864,
"dwCSGOInput": 27701008,
"dwEntityList": 27229984,
"dwGameEntitySystem": 28424008,
"dwGameEntitySystem_highestEntityIndex": 8432,
"dwGameRules": 27637720,
"dwGlobalVars": 25424200,
"dwGlowManager": 27635488,
"dwLocalPlayerController": 27548128,
"dwLocalPlayerPawn": 25473232,
"dwPlantedC4": 27680952,
"dwPrediction": 25472848,
"dwSensitivity": 27641080,
"dwGameRules": 27641848,
"dwGlobalVars": 25428296,
"dwGlowManager": 27639616,
"dwLocalPlayerController": 27552256,
"dwLocalPlayerPawn": 25477328,
"dwPlantedC4": 27685080,
"dwPrediction": 25476944,
"dwSensitivity": 27645208,
"dwSensitivity_sensitivity": 64,
"dwViewAngles": 27697856,
"dwViewMatrix": 27655888,
"dwViewRender": 27658632,
"dwWeaponC4": 27234912
"dwViewAngles": 27701984,
"dwViewMatrix": 27660016,
"dwViewRender": 27662760,
"dwWeaponC4": 27239040
},
"engine2.dll": {
"dwBuildNumber": 5512164,
"dwNetworkGameClient": 5508320,
"dwNetworkGameClient_clientTickCount": 872,
"dwNetworkGameClient_deltaTick": 580,
"dwNetworkGameClient_deltaTick": 636,
"dwNetworkGameClient_isBackgroundMap": 2626631,
"dwNetworkGameClient_localPlayer": 240,
"dwNetworkGameClient_maxClients": 568,

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, unused)]
@ -7,30 +7,30 @@ pub mod cs2_dumper {
pub mod offsets {
// Module: client.dll
pub mod client_dll {
pub const dwCSGOInput: usize = 0x1A69EF0;
pub const dwEntityList: usize = 0x19F6F00;
pub const dwGameEntitySystem: usize = 0x1B1A718;
pub const dwCSGOInput: usize = 0x1A6AF10;
pub const dwEntityList: usize = 0x19F7F20;
pub const dwGameEntitySystem: usize = 0x1B1B748;
pub const dwGameEntitySystem_highestEntityIndex: usize = 0x20F0;
pub const dwGameRules: usize = 0x1A5B7D8;
pub const dwGlobalVars: usize = 0x183F148;
pub const dwGlowManager: usize = 0x1A5AF20;
pub const dwLocalPlayerController: usize = 0x1A459E0;
pub const dwLocalPlayerPawn: usize = 0x184B0D0;
pub const dwPlantedC4: usize = 0x1A660B8;
pub const dwPrediction: usize = 0x184AF50;
pub const dwSensitivity: usize = 0x1A5C4F8;
pub const dwGameRules: usize = 0x1A5C7F8;
pub const dwGlobalVars: usize = 0x1840148;
pub const dwGlowManager: usize = 0x1A5BF40;
pub const dwLocalPlayerController: usize = 0x1A46A00;
pub const dwLocalPlayerPawn: usize = 0x184C0D0;
pub const dwPlantedC4: usize = 0x1A670D8;
pub const dwPrediction: usize = 0x184BF50;
pub const dwSensitivity: usize = 0x1A5D518;
pub const dwSensitivity_sensitivity: usize = 0x40;
pub const dwViewAngles: usize = 0x1A6A2C0;
pub const dwViewMatrix: usize = 0x1A5FED0;
pub const dwViewRender: usize = 0x1A60988;
pub const dwWeaponC4: usize = 0x19F9260;
pub const dwViewAngles: usize = 0x1A6B2E0;
pub const dwViewMatrix: usize = 0x1A60EF0;
pub const dwViewRender: usize = 0x1A619A8;
pub const dwWeaponC4: usize = 0x19FA280;
}
// Module: engine2.dll
pub mod engine2_dll {
pub const dwBuildNumber: usize = 0x541BE4;
pub const dwNetworkGameClient: usize = 0x540CE0;
pub const dwNetworkGameClient_clientTickCount: usize = 0x368;
pub const dwNetworkGameClient_deltaTick: usize = 0x244;
pub const dwNetworkGameClient_deltaTick: usize = 0x27C;
pub const dwNetworkGameClient_isBackgroundMap: usize = 0x281447;
pub const dwNetworkGameClient_localPlayer: usize = 0xF0;
pub const dwNetworkGameClient_maxClients: usize = 0x238;

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: panorama.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: particles.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: pulse_system.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: rendersystemdx11.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: resourcesystem.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: scenesystem.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: schemasystem.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: server.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: soundsystem.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: vphysics2.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
namespace CS2Dumper.Schemas {
// Module: worldrenderer.dll

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#pragma once

View File

@ -1,5 +1,5 @@
// Generated using https://github.com/a2x/cs2-dumper
// 2025-05-09 03:40:00.267016600 UTC
// 2025-05-13 23:54:54.425036700 UTC
#![allow(non_upper_case_globals, non_camel_case_types, non_snake_case, unused)]