mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-10-07 16:30:01 +08:00
Added new patterns
This commit is contained in:
@@ -1,8 +1,14 @@
|
||||
public static class client_dll {
|
||||
public const nint entityList = 0x178C878;
|
||||
public const nint globalVars = 0x168FCC8;
|
||||
public const nint interfaceLinkList = 0x1972A38;
|
||||
public const nint localPlayerController = 0x17DB0F8;
|
||||
public const nint localPlayerPawn = 0x1879BE8;
|
||||
public const nint viewAngles = 0x18D9590;
|
||||
public const nint viewMatrix = 0x187A6D0;
|
||||
}
|
||||
|
||||
public static class engine2_dll {
|
||||
public const nint networkGameClient = 0x489AB0;
|
||||
public const nint networkGameClient_signOnState = 0x240;
|
||||
}
|
@@ -5,8 +5,14 @@
|
||||
namespace client_dll {
|
||||
constexpr std::ptrdiff_t entityList = 0x178C878;
|
||||
constexpr std::ptrdiff_t globalVars = 0x168FCC8;
|
||||
constexpr std::ptrdiff_t interfaceLinkList = 0x1972A38;
|
||||
constexpr std::ptrdiff_t localPlayerController = 0x17DB0F8;
|
||||
constexpr std::ptrdiff_t localPlayerPawn = 0x1879BE8;
|
||||
constexpr std::ptrdiff_t viewAngles = 0x18D9590;
|
||||
constexpr std::ptrdiff_t viewMatrix = 0x187A6D0;
|
||||
}
|
||||
|
||||
namespace engine2_dll {
|
||||
constexpr std::ptrdiff_t networkGameClient = 0x489AB0;
|
||||
constexpr std::ptrdiff_t networkGameClient_signOnState = 0x240;
|
||||
}
|
@@ -2,9 +2,14 @@
|
||||
"client_dll": {
|
||||
"entityList": 24692856,
|
||||
"globalVars": 23657672,
|
||||
"interfaceLinkList": 26683960,
|
||||
"localPlayerController": 25014520,
|
||||
"localPlayerPawn": 25664488,
|
||||
"viewAngles": 26056080,
|
||||
"viewMatrix": 25667280
|
||||
},
|
||||
"engine2_dll": {
|
||||
"networkGameClient": 4758192,
|
||||
"networkGameClient_signOnState": 576
|
||||
}
|
||||
}
|
@@ -3,8 +3,14 @@
|
||||
pub mod client_dll {
|
||||
pub const entityList: usize = 0x178C878;
|
||||
pub const globalVars: usize = 0x168FCC8;
|
||||
pub const interfaceLinkList: usize = 0x1972A38;
|
||||
pub const localPlayerController: usize = 0x17DB0F8;
|
||||
pub const localPlayerPawn: usize = 0x1879BE8;
|
||||
pub const viewAngles: usize = 0x18D9590;
|
||||
pub const viewMatrix: usize = 0x187A6D0;
|
||||
}
|
||||
|
||||
pub mod engine2_dll {
|
||||
pub const networkGameClient: usize = 0x489AB0;
|
||||
pub const networkGameClient_signOnState: usize = 0x240;
|
||||
}
|
Reference in New Issue
Block a user