a2x / cs2-dumper

Counter-Strike: 2 Offset Dumper
MIT License
817 stars 94 forks source link

use of *offsetname*? #173

Closed eboyfriends closed 2 months ago

eboyfriends commented 2 months ago

quick question for use on offsets i havent been able to find anything on.

constexpr std::ptrdiff_t dwPrediction = 0x181A850;
constexpr std::ptrdiff_t dwEngineViewData = 0x5ECBFC;
constexpr std::ptrdiff_t dwNetworkGameClient_isBackgroundMap = 0x281477;
constexpr std::ptrdiff_t dwSoundService = 0x5ECB60;
a2x commented 2 months ago
  1. dwPrediction is a pointer to the CPrediction class.
  2. dwEngineViewData was added by this pull request.
  3. dwNetworkGameClient_isBackgroundMap is used internally within the CEngineClient::IsInGame function.
  4. dwSoundService is a pointer to the CSoundService class (see above pull request).