diff options
Diffstat (limited to 'src/game/server/player.h')
| -rw-r--r-- | src/game/server/player.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game/server/player.h b/src/game/server/player.h index 51deaa5e..b3bf8c91 100644 --- a/src/game/server/player.h +++ b/src/game/server/player.h @@ -132,6 +132,13 @@ public: bool HasZCatchVictims() { return (m_ZCatchVictims != NULL); } int LastZCatchVictim() { return HasZCatchVictims() ? m_ZCatchVictims->ClientID : -1; } + // bot detection + int m_IsBot; + int m_AimBotIndex; + int m_AimBotLastDetection; + CCharacter::LastPosition m_AimBotLastDetectionPos; + CCharacter::LastPosition m_AimBotLastDetectionPosVictim; + private: CCharacter *m_pCharacter; CGameContext *m_pGameServer; |