Fetch localPlayerPawn

This commit is contained in:
a2x
2023-09-29 15:45:27 +10:00
parent 3e04750334
commit 2bc3e32c2d
14 changed files with 359 additions and 306 deletions

View File

@@ -1,9 +1,10 @@
#![allow(non_snake_case, non_upper_case_globals)]
pub mod client_dll {
pub const entityList: usize = 0x178C888;
pub const globalVars: usize = 0x168FCD8;
pub const localPlayerController: usize = 0x17DB108;
pub const viewAngles: usize = 0x18D95A0;
pub const viewMatrix: usize = 0x187A6E0;
pub const entityList: usize = 0x178C878;
pub const globalVars: usize = 0x168FCC8;
pub const localPlayerController: usize = 0x17DB0F8;
pub const localPlayerPawn: usize = 0x1879BE8;
pub const viewAngles: usize = 0x18D9590;
pub const viewMatrix: usize = 0x187A6D0;
}