📦 Game Update 13985

This commit is contained in:
a2x
2024-01-20 17:14:53 +10:00
parent 273ff41717
commit b1ea8d33d4
76 changed files with 378 additions and 404 deletions

View File

@@ -1,35 +1,35 @@
/*
* Created using https://github.com/a2x/cs2-dumper
* Fri, 5 Jan 2024 01:00:02 +0000
* Sat, 20 Jan 2024 07:10:58 +0000
*/
#![allow(non_snake_case, non_upper_case_globals)]
pub mod client_dll { // client.dll
pub const dwEntityList: usize = 0x17C1950;
pub const dwForceAttack: usize = 0x16C1E90;
pub const dwForceAttack2: usize = 0x16C1F20;
pub const dwForceBackward: usize = 0x16C2160;
pub const dwForceCrouch: usize = 0x16C2430;
pub const dwForceForward: usize = 0x16C20D0;
pub const dwForceJump: usize = 0x16C23A0;
pub const dwForceLeft: usize = 0x16C21F0;
pub const dwForceRight: usize = 0x16C2280;
pub const dwGameEntitySystem: usize = 0x18ED240;
pub const dwEntityList: usize = 0x17C26A0;
pub const dwForceAttack: usize = 0x16C1E80;
pub const dwForceAttack2: usize = 0x16C1F10;
pub const dwForceBackward: usize = 0x16C2150;
pub const dwForceCrouch: usize = 0x16C2420;
pub const dwForceForward: usize = 0x16C20C0;
pub const dwForceJump: usize = 0x16C2390;
pub const dwForceLeft: usize = 0x16C21E0;
pub const dwForceRight: usize = 0x16C2270;
pub const dwGameEntitySystem: usize = 0x18F2DB0;
pub const dwGameEntitySystem_getHighestEntityIndex: usize = 0x1510;
pub const dwGameRules: usize = 0x181E048;
pub const dwGlobalVars: usize = 0x16BDCB8;
pub const dwGlowManager: usize = 0x181D7B0;
pub const dwInterfaceLinkList: usize = 0x191AED8;
pub const dwLocalPlayerController: usize = 0x1810F48;
pub const dwLocalPlayerPawn: usize = 0x16C8F58;
pub const dwPlantedC4: usize = 0x1824A88;
pub const dwPrediction: usize = 0x16C8E20;
pub const dwSensitivity: usize = 0x181ED48;
pub const dwGameRules: usize = 0x181ED98;
pub const dwGlobalVars: usize = 0x16BDCA8;
pub const dwGlowManager: usize = 0x181E500;
pub const dwInterfaceLinkList: usize = 0x1920A48;
pub const dwLocalPlayerController: usize = 0x1811C98;
pub const dwLocalPlayerPawn: usize = 0x16C8F48;
pub const dwPlantedC4: usize = 0x18257D8;
pub const dwPrediction: usize = 0x16C8E10;
pub const dwSensitivity: usize = 0x181FA98;
pub const dwSensitivity_sensitivity: usize = 0x40;
pub const dwViewAngles: usize = 0x1880DC0;
pub const dwViewMatrix: usize = 0x1820150;
pub const dwViewRender: usize = 0x1820998;
pub const dwViewAngles: usize = 0x1882140;
pub const dwViewMatrix: usize = 0x1820EA0;
pub const dwViewRender: usize = 0x18216E8;
}
pub mod engine2_dll { // engine2.dll
@@ -42,10 +42,6 @@ pub mod engine2_dll { // engine2.dll
pub const dwWindowWidth: usize = 0x597E08;
}
pub mod game_info { // Some additional information about the game at dump time
pub const buildNumber: usize = 0x36A0; // Game build number
}
pub mod inputsystem_dll { // inputsystem.dll
pub const dwInputSystem: usize = 0x35760;
}