项目作者: frk1

项目描述 :
up to date csgo offsets and hazedumper config
高级语言: Visual Basic .NET
项目地址: git://github.com/frk1/hazedumper.git
创建时间: 2016-02-21T11:21:52Z
项目社区:https://github.com/frk1/hazedumper

开源协议:

下载


hazedumper

🚀 Up to date offset and dumper-config for Counter-Strike: Global Offensive. For more informations visit the release page on UnKnoWnCheaTs.

Local Player

Since in the past the signature for the LocalPlayer was broken a few times and/or pointed to something wrong, I want to offer you an alternative.
All required offsets are already in the repo, why 99% of people don’t use them is questionable - or they are just too incompetent and complain
that nothing works, but they can’t find a single signature themselves. However, pretty much every hack uses the entity list (dwEntityList)
and also ClientState (dwClientState). All you need is a third offset which is located in ClientState, called dwClientState_GetLocalPlayer.

  1. const auto client_state = read_memory<std::uint32_t>( engine_image->base + hazedumper::signatures::dwClientState );
  2. if( client_state ) {
  3. const auto local_player = get_client_entity(
  4. read_memory<std::int32_t>( client_state + hazedumper::signatures::dwClientState_GetLocalPlayer )
  5. );
  6. if( local_player ) {
  7. printf(
  8. "[+] Found local player: 0x%X, health: %d\n",
  9. local_player,
  10. read_memory<std::int32_t>( local_player + hazedumper::netvars::m_iHealth )
  11. );
  12. }
  13. }

Informations

  • ⚠️ Since we are both working and living in germany, we can’t see 24/7 if there was an update and then push it. We make every effort to ensure that this happens as soon as possible.
  • 🔫 The repository always refers to the latest version of the steam store.
  • ⚠️ We are not liable for VAC bans in case of incorrect use.

Credits: