@@ -53,20 +53,20 @@ namespace NetMessage
53
53
#if defined SYSTEM_WINDOWS
54
54
55
55
static const char CBaseClient_ConnectionStart_sig[] =
56
- " \x55\x8B\xEC\x53\x56\x57\x6A\x1C\ x8B\xF1 " ;
56
+ " \x55\x8B\xEC\x51\ x53\x56\x57\x8B\xD9\x6A " ;
57
57
static const size_t CBaseClient_ConnectionStart_siglen =
58
58
sizeof ( CBaseClient_ConnectionStart_sig ) - 1 ;
59
59
60
60
static const char CBaseClientState_ConnectionStart_sig[] =
61
- " \x55\x8B\xEC\x53\x56\x57\x6A\x1C\x8B\xF9 " ;
61
+ " \x55\x8B\xEC\x83\xEC\x08\ x53\x56\x57\x6A " ;
62
62
static const size_t CBaseClientState_ConnectionStart_siglen =
63
63
sizeof ( CBaseClientState_ConnectionStart_sig ) - 1 ;
64
64
65
- static const uintptr_t CLC_CmdKeyValues_offset = 784 ;
65
+ static const uintptr_t CLC_CmdKeyValues_offset = 916 ;
66
66
67
- static const uintptr_t SVC_CreateStringTable_offset = 608 ;
67
+ static const uintptr_t SVC_CreateStringTable_offset = 691 ;
68
68
69
- static const uintptr_t SVC_CmdKeyValues_offset = 1688 ;
69
+ static const uintptr_t SVC_CmdKeyValues_offset = 1935 ;
70
70
71
71
#elif defined SYSTEM_LINUX
72
72
@@ -83,7 +83,7 @@ namespace NetMessage
83
83
#elif defined SOURCENET_CLIENT
84
84
85
85
static const char CBaseClient_ConnectionStart_sig[] =
86
- " \x55\x89\xE5\x57\x56\x53\x83\xEC\x2C \x8B " ;
86
+ " \x55\x89\xE5\x57\x56\x53\x83\xEC\x1C \x8B " ;
87
87
static const size_t CBaseClient_ConnectionStart_siglen =
88
88
sizeof ( CBaseClient_ConnectionStart_sig ) - 1 ;
89
89
@@ -465,25 +465,25 @@ namespace NetMessage
465
465
466
466
uintptr_t SVC_CreateStringTable = reinterpret_cast <uintptr_t >(
467
467
CBaseClientState_ConnectionStart
468
- ) + SVC_CreateStringTable_offset;
468
+ ) + SVC_CreateStringTable_offset;
469
469
ResolveMessagesFromFunctionCode ( LUA, reinterpret_cast <const uint8_t *>(
470
470
SVC_CreateStringTable + sizeof ( uintptr_t ) +
471
471
*reinterpret_cast <intptr_t *>( SVC_CreateStringTable )
472
- ) );
472
+ ) );
473
473
474
474
uintptr_t SVC_CmdKeyValues = reinterpret_cast <uintptr_t >(
475
475
CBaseClientState_ConnectionStart
476
- ) + SVC_CmdKeyValues_offset;
476
+ ) + SVC_CmdKeyValues_offset;
477
477
ResolveMessagesFromFunctionCode ( LUA, reinterpret_cast <const uint8_t *>(
478
478
SVC_CmdKeyValues + sizeof ( uintptr_t ) + *reinterpret_cast <intptr_t *>( SVC_CmdKeyValues )
479
- ) );
479
+ ) );
480
480
481
481
uintptr_t CLC_CmdKeyValues = reinterpret_cast <uintptr_t >(
482
482
CBaseClient_ConnectionStart
483
- ) + CLC_CmdKeyValues_offset;
483
+ ) + CLC_CmdKeyValues_offset;
484
484
ResolveMessagesFromFunctionCode ( LUA, reinterpret_cast <const uint8_t *>(
485
485
CLC_CmdKeyValues + sizeof ( uintptr_t ) + *reinterpret_cast <intptr_t *>( CLC_CmdKeyValues )
486
- ) );
486
+ ) );
487
487
}
488
488
489
489
template <class NetMessage > int Constructor ( lua_State *L )
0 commit comments