Advertisement
keybode

csgo CGlobalVarsBase

Feb 6th, 2015
497
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.53 KB | None | 0 0
  1. class CGlobalVarsBase
  2. {
  3. public:
  4.     float   realtime;
  5.     int     framecount;
  6.     float   absoluteframetime;
  7.     float   absoluteframestarttimestddev;
  8.     float   curtime;
  9.     float   frametime;
  10.     int     maxClients;
  11.     int     tickcount;
  12.     float   interval_per_tick;
  13.     float   interpolation_amount;
  14.     int     simTicksThisFrame;
  15.     int     network_protocol;
  16.     void*   pSaveData;
  17.     bool    m_bClient;
  18.     int     nTimestampNetworkingBase;
  19.     int     nTimestampRandomizeWindow;
  20. };
  21.  
  22. m_pGlobals = **(Source::CGlobalVarsBase***)( PatternScan ( "client.dll", "A1 ?? ?? ?? ?? 8B 4D FC 8B 55 08" ) + 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement