diff --git a/config.json b/config.json index 05dc93f..17852a7 100644 --- a/config.json +++ b/config.json @@ -166,6 +166,30 @@ } ] }, + { + "name": "dwGameTypes", + "module": "matchmaking.dll", + "pattern": "48 8D 0D ? ? ? ? E9 ? ? ? ? CC CC CC CC 48 8D 0D ? ? ? ? E9 ? ? ? ? CC CC CC CC 48 83 EC ? F0 81 0D", + "operations": [ + { + "type": "rip" + } + ] + }, + { + "name": "dwGameTypes_mapName", + "module": "matchmaking.dll", + "pattern": "48 8D 0D ? ? ? ? E9 ? ? ? ? CC CC CC CC 48 8D 0D ? ? ? ? E9 ? ? ? ? CC CC CC CC 48 83 EC ? F0 81 0D", + "operations": [ + { + "type": "rip" + }, + { + "type": "add", + "value": 288 + } + ] + }, { "name": "dwGlobalVars", "module": "client.dll", diff --git a/generated/offsets.cs b/generated/offsets.cs index cbc0bec..a0a880a 100644 --- a/generated/offsets.cs +++ b/generated/offsets.cs @@ -1,6 +1,6 @@ /* * Created using https://github.com/a2x/cs2-dumper - * Sat, 17 Feb 2024 01:42:30 +0000 + * Sat, 17 Feb 2024 02:19:06 +0000 */ public static class client_dll { // client.dll @@ -46,4 +46,9 @@ public static class game_info { // Some additional information about the game at public static class inputsystem_dll { // inputsystem.dll public const nint dwInputSystem = 0x367A0; +} + +public static class matchmaking_dll { // matchmaking.dll + public const nint dwGameTypes = 0x1D21E0; + public const nint dwGameTypes_mapName = 0x1D2300; } \ No newline at end of file diff --git a/generated/offsets.hpp b/generated/offsets.hpp index 99aa528..a248234 100644 --- a/generated/offsets.hpp +++ b/generated/offsets.hpp @@ -1,6 +1,6 @@ /* * Created using https://github.com/a2x/cs2-dumper - * Sat, 17 Feb 2024 01:42:30 +0000 + * Sat, 17 Feb 2024 02:19:06 +0000 */ #pragma once @@ -50,4 +50,9 @@ namespace game_info { // Some additional information about the game at dump time namespace inputsystem_dll { // inputsystem.dll constexpr std::ptrdiff_t dwInputSystem = 0x367A0; +} + +namespace matchmaking_dll { // matchmaking.dll + constexpr std::ptrdiff_t dwGameTypes = 0x1D21E0; + constexpr std::ptrdiff_t dwGameTypes_mapName = 0x1D2300; } \ No newline at end of file diff --git a/generated/offsets.json b/generated/offsets.json index 0f29f6f..b1242b2 100644 --- a/generated/offsets.json +++ b/generated/offsets.json @@ -150,5 +150,18 @@ } }, "comment": "inputsystem.dll" + }, + "matchmaking_dll": { + "data": { + "dwGameTypes": { + "value": 1909216, + "comment": null + }, + "dwGameTypes_mapName": { + "value": 1909504, + "comment": null + } + }, + "comment": "matchmaking.dll" } } \ No newline at end of file diff --git a/generated/offsets.py b/generated/offsets.py index 1f9cf83..389838b 100644 --- a/generated/offsets.py +++ b/generated/offsets.py @@ -1,6 +1,6 @@ ''' Created using https://github.com/a2x/cs2-dumper -Sat, 17 Feb 2024 01:42:30 +0000 +Sat, 17 Feb 2024 02:19:06 +0000 ''' class client_dll: # client.dll @@ -43,3 +43,7 @@ class game_info: # Some additional information about the game at dump time class inputsystem_dll: # inputsystem.dll dwInputSystem = 0x367A0 + +class matchmaking_dll: # matchmaking.dll + dwGameTypes = 0x1D21E0 + dwGameTypes_mapName = 0x1D2300 diff --git a/generated/offsets.rs b/generated/offsets.rs index f3efdf8..92c8d1c 100644 --- a/generated/offsets.rs +++ b/generated/offsets.rs @@ -1,6 +1,6 @@ /* * Created using https://github.com/a2x/cs2-dumper - * Sat, 17 Feb 2024 01:42:30 +0000 + * Sat, 17 Feb 2024 02:19:06 +0000 */ #![allow(non_snake_case, non_upper_case_globals)] @@ -48,4 +48,9 @@ pub mod game_info { // Some additional information about the game at dump time pub mod inputsystem_dll { // inputsystem.dll pub const dwInputSystem: usize = 0x367A0; +} + +pub mod matchmaking_dll { // matchmaking.dll + pub const dwGameTypes: usize = 0x1D21E0; + pub const dwGameTypes_mapName: usize = 0x1D2300; } \ No newline at end of file diff --git a/generated/offsets.yaml b/generated/offsets.yaml index fcd613f..8d1ac49 100644 --- a/generated/offsets.yaml +++ b/generated/offsets.yaml @@ -36,3 +36,6 @@ game_info: # Some additional information about the game at dump time buildNumber: 13994 # Game build number inputsystem_dll: # inputsystem.dll dwInputSystem: 223136 +matchmaking_dll: # matchmaking.dll + dwGameTypes: 1909216 + dwGameTypes_mapName: 1909504