Подписывайтесь на наш Telegram и не пропускайте важные новости! Перейти

Вопрос Кидайте сюда что вам нужно найти после апдейта

  • Автор темы Автор темы TheXSVV
  • Дата начала Дата начала
g_interfaces->m_csgo_input, 23 там теперь MouseInputEnabled, твой хук по вероятно в 26

без понятия, не знакома с этим исходником
спасибо но
[21:06:40] entry.cpp:24: [*] Creating directories...
[21:06:40] entry.cpp:28: [*] Initializing modules...
[21:06:40] modules.cpp:18: [+] Modules initialization completed!
[21:06:40] entry.cpp:31: [*] Initializing interfaces...
[21:06:40] interfaces.cpp:32: [*] Scanning for global_vars...
[21:06:40] interfaces.cpp:36: [*] Scanning for trace...
[21:06:40] interfaces.cpp:40: [*] Scanning for entity_system...
[21:06:40] interfaces.cpp:44: [*] Scanning for csgo_input...
[21:06:40] interfaces.cpp:58: [+] Interfaces initialization completed!
[21:06:40] entry.cpp:34: [*] Initializing DirectX...
[21:06:41] directx.cpp:54: [+] Present address: 0x7FFFCD2BEC00
[21:06:41] entry.cpp:37: [*] Setting up schema...
[21:06:41] schema.cpp:180: [+] Schema: Loaded 118 classes, 32 fields
[21:06:41] entry.cpp:44: [*] Setting up config system...
[21:06:41] entry.cpp:48: [*] Initializing hooks...
[21:06:41] hooks.cpp:69: [*] Starting hooks initialization...
[21:06:41] hooks.cpp:124: [+] create_move: hooked at 00007FFE95F7E7F0.
[21:06:41] hooks.cpp:124: [+] mouse_input_enabled: hooked at 00007FFF33145F50.
[21:06:41] hooks.cpp:124: [+] enable_cursor: hooked at 00007FFF3314B060.
[21:06:41] hooks.cpp:111: [-] validate_view_angles: invalid target address 058D4830C18348DA.
[21:06:42] hooks.cpp:124: [+] present: hooked at 00007FFFCD2BEC00.
[21:06:42] hooks.cpp:124: [+] update_global_vars: hooked at 00007FFE95E04730.
 
спасибо но
[21:06:40] entry.cpp:24: [*] Creating directories...
[21:06:40] entry.cpp:28: [*] Initializing modules...
[21:06:40] modules.cpp:18: [+] Modules initialization completed!
[21:06:40] entry.cpp:31: [*] Initializing interfaces...
[21:06:40] interfaces.cpp:32: [*] Scanning for global_vars...
[21:06:40] interfaces.cpp:36: [*] Scanning for trace...
[21:06:40] interfaces.cpp:40: [*] Scanning for entity_system...
[21:06:40] interfaces.cpp:44: [*] Scanning for csgo_input...
[21:06:40] interfaces.cpp:58: [+] Interfaces initialization completed!
[21:06:40] entry.cpp:34: [*] Initializing DirectX...
[21:06:41] directx.cpp:54: [+] Present address: 0x7FFFCD2BEC00
[21:06:41] entry.cpp:37: [*] Setting up schema...
[21:06:41] schema.cpp:180: [+] Schema: Loaded 118 classes, 32 fields
[21:06:41] entry.cpp:44: [*] Setting up config system...
[21:06:41] entry.cpp:48: [*] Initializing hooks...
[21:06:41] hooks.cpp:69: [*] Starting hooks initialization...
[21:06:41] hooks.cpp:124: [+] create_move: hooked at 00007FFE95F7E7F0.
[21:06:41] hooks.cpp:124: [+] mouse_input_enabled: hooked at 00007FFF33145F50.
[21:06:41] hooks.cpp:124: [+] enable_cursor: hooked at 00007FFF3314B060.
[21:06:41] hooks.cpp:111: [-] validate_view_angles: invalid target address 058D4830C18348DA.
[21:06:42] hooks.cpp:124: [+] present: hooked at 00007FFFCD2BEC00.
[21:06:42] hooks.cpp:124: [+] update_global_vars: hooked at 00007FFE95E04730.
ну попробуй по сигнатуре хукнуть, а вообще покажи что это за хук?
"48 89 5C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 8B CA"
 
теперь на draw_scope_owerlay, можно я просто в тг хуки скину и ты глянешь

 
теперь на draw_scope_owerlay, можно я просто в тг хуки скину и ты глянешь
бро..возьми дарксайд и пасти оттуда
теперь на draw_scope_owerlay, можно я просто в тг хуки скину и ты глянешь
48 8B C4 53 57 48 83 EC ? 48 8B FA паттерн на скоп заходишь в дарксайд некий и пасти оттуда я хз
 
[12:24:24] [ERROR] DumpClassInfo failed: not modified


C++:
Expand Collapse Copy
for (int i = 1; i <= interfaces::entity->GetHighestEntityIndex(); i++) {
    C_BaseEntity *pEntity = interfaces::entity->Get(i);
    if (!pEntity) {
      continue;
    }

    CEntityIdentity *pIdentity = pEntity->m_pEntity();
    if (!pIdentity) {
      continue;
    }

    auto MaxPtrSize = reinterpret_cast<SchemaClassInfoData_t *>(
        std::numeric_limits<uintptr_t>::max());

    SchemaClassInfoData_t *data = MaxPtrSize;

    pEntity->DumpClassInfo(&data);

    if (data == MaxPtrSize) {
      LOG_ERROR("DumpClassInfo failed: not modified");
    } else if (data == nullptr) {
      LOG_ERROR("DumpClassInfo set");
    } else {
      LOG_INFO("DumpClassInfo: %p", data);

      if (data->szName) {
        LOG_INFO("Class: %s", data->szName);
      }
    }[/CODE  ]
[CODE=cpp]
class CEntityInstance {
public:
  struct SchemaClassBinding_t {
    void *m_parent;
    const char *m_bindingName;
    const char *m_dllName;
    int m_sizeOf;
  };

  const char *GetSchemaClassName();

  SchemaClassBinding_t *GetSchemaClassBinding() {
    SchemaClassBinding_t *binding = nullptr;
    M::GetThiscall<void>(this, 64U, &binding);
    return binding;
  }

  void DumpClassInfo(SchemaClassInfoData_t **pReturn) {
    M::vfunc<void, 62U>(this, pReturn);
  }
C++:
Expand Collapse Copy
struct SchemaClassInfoData_t {
  SchemaClassInfoData_t *pBaseClass;
  const char *szName;
  const char *szBinaryName;
  const char *szModuleName;
  int32_t nSize;
  int16_t nFieldCount;
  int16_t nStaticMetadataCount;
  std::byte pad_0[0x2];
  uint8_t nAlignment;
  uint8_t bHasBaseClass;
  int16_t nTotalClassSize;
  int16_t nDerivedClassSize;
  SchemaClassFieldData_t *pFields;
};



My Schema system works perfectly
.
SCHEMA(m_hInfernoPointsSnapshot, void*, "C_Inferno->m_hInfernoPointsSnapshot");

Please let me know if anyone needs any more information, I have been working on this for 3 days.
Пожалуйста, дайте знать, если кому-то потребуется дополнительная информация — я работаю над этим уже три дня.
 
Назад
Сверху Снизу