From fc1a7738368863e470a586a20463d9594e5f83b9 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Wed, 15 Feb 2023 20:47:58 +0100 Subject: [PATCH] Add 'g_NetTime' to SDK Official name = 'net_time'. --- r5dev/engine/net.cpp | 2 ++ r5dev/engine/net.h | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/r5dev/engine/net.cpp b/r5dev/engine/net.cpp index fb4dc890..839b1d4a 100644 --- a/r5dev/engine/net.cpp +++ b/r5dev/engine/net.cpp @@ -303,4 +303,6 @@ void VNet::Detach() const /////////////////////////////////////////////////////////////////////////////// netadr_t* g_pNetAdr = nullptr; netkey_t* g_pNetKey = nullptr; + +double* g_pNetTime = nullptr; #endif // !NETCONSOLE diff --git a/r5dev/engine/net.h b/r5dev/engine/net.h index bd89a5c6..03f736e7 100644 --- a/r5dev/engine/net.h +++ b/r5dev/engine/net.h @@ -49,6 +49,8 @@ void NET_RemoveChannel(CClient* pClient, int nIndex, const char* szReason, uint8 extern netadr_t* g_pNetAdr; extern netkey_t* g_pNetKey; +extern double* g_pNetTime; + /////////////////////////////////////////////////////////////////////////////// class VNet : public IDetour { @@ -62,6 +64,7 @@ class VNet : public IDetour LogFunAdr("NET_PrintFunc", p_NET_PrintFunc.GetPtr()); LogVarAdr("g_NetAdr", reinterpret_cast(g_pNetAdr)); LogVarAdr("g_NetKey", reinterpret_cast(g_pNetKey)); + LogVarAdr("g_NetTime", reinterpret_cast(g_pNetTime)); } virtual void GetFun(void) const { @@ -88,6 +91,7 @@ class VNet : public IDetour { g_pNetAdr = g_GameDll.FindPatternSIMD("C7 05 ?? ?? ?? ?? ?? ?? ?? ?? 48 89 05 ?? ?? ?? ?? 48 89 05 ?? ?? ?? ?? 66 89 05 ?? ?? ?? ?? 88 05 ?? ?? ?? ?? C3 CC CC CC CC CC CC CC CC 33 C0").ResolveRelativeAddressSelf(0x2, 0xA).RCast(); g_pNetKey = g_GameDll.FindString("client:NetEncryption_NewKey").FindPatternSelf("48 8D ?? ?? ?? ?? ?? 48 3B", CMemory::Direction::UP, 300).ResolveRelativeAddressSelf(0x3, 0x7).RCast(); + g_pNetTime = p_NET_Init.Offset(0xA).FindPatternSelf("F2 0F").ResolveRelativeAddressSelf(0x4, 0x8).RCast(); } virtual void GetCon(void) const { } virtual void Attach(void) const;