This commit is contained in:
Accelerator
2024-05-05 14:08:27 +03:00
parent 7f61a5b296
commit a5ebdd6e82
20 changed files with 907 additions and 776 deletions

20
game_offsets.h Normal file
View File

@ -0,0 +1,20 @@
#ifndef _INCLUDE_GAME_OFFSETS_
#define _INCLUDE_GAME_OFFSETS_
#ifdef WIN32
int maxplayers_offs = 138; // m_nMaxClientsLimit (in CGameServer::SetMaxClients)
#if SOURCE_ENGINE == SE_LEFT4DEAD
#include "l4d1_offsets_win32.h"
#else
#include "l4d2_offsets_win32.h"
#endif
#else
int maxplayers_offs = 136; // m_nMaxClientsLimit (in CGameServer::SetMaxClients)
#if SOURCE_ENGINE == SE_LEFT4DEAD
#include "l4d1_offsets_linux.h"
#else
#include "l4d2_offsets_linux.h"
#endif
#endif
#endif //_INCLUDE_GAME_OFFSETS_