Add 'g_NetTime' to SDK

Official name = 'net_time'.
This commit is contained in:
Kawe Mazidjatari 2023-02-15 20:47:58 +01:00
parent 559f15a459
commit fc1a773836
2 changed files with 6 additions and 0 deletions

View File

@ -303,4 +303,6 @@ void VNet::Detach() const
///////////////////////////////////////////////////////////////////////////////
netadr_t* g_pNetAdr = nullptr;
netkey_t* g_pNetKey = nullptr;
double* g_pNetTime = nullptr;
#endif // !NETCONSOLE

View File

@ -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<uintptr_t>(g_pNetAdr));
LogVarAdr("g_NetKey", reinterpret_cast<uintptr_t>(g_pNetKey));
LogVarAdr("g_NetTime", reinterpret_cast<uintptr_t>(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<netadr_t*>();
g_pNetKey = g_GameDll.FindString("client:NetEncryption_NewKey").FindPatternSelf("48 8D ?? ?? ?? ?? ?? 48 3B", CMemory::Direction::UP, 300).ResolveRelativeAddressSelf(0x3, 0x7).RCast<netkey_t*>();
g_pNetTime = p_NET_Init.Offset(0xA).FindPatternSelf("F2 0F").ResolveRelativeAddressSelf(0x4, 0x8).RCast<double*>();
}
virtual void GetCon(void) const { }
virtual void Attach(void) const;