m_flGoalFeetYaw = RandomFloat(-720.0f, 720.0f);
-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Код:
static bool addToNotify = false;
// Logging function.
void log(const char* str, Color color)
{
static auto AddToNotifyFn = reinterpret_cast<void(__stdcall*)(const Color&, const char*)>(findpattern("engine.dll", "55 8B EC 81 EC ?? ?? ?? ?? 80 3D ?? ?? ?? ?? ?? 53 8B 1D"));
addToNotify = true;
AddToNotifyFn(color, str);
}
// Developer hook(index 13)
int __fastcall hkDeveloper(void* ecx, void* edx)
{
const auto ret = oDeveloper(ecx);
static auto AddToNotify = findpattern("engine.dll", "85 C0 0F 84 ?? ?? ?? ?? E8 ?? ?? ?? ?? 84 C0 0F 84 ?? ?? ?? ?? 8B 45 0C"); // CConPanel::AddToNotify Ret
static auto DrawNotify = findpattern("engine.dll", "85 C0 0F 84 ?? ?? ?? ?? 80 3D ?? ?? ?? ?? ?? 0F 85 ?? ?? ?? ??"); // CConPanel::DrawNotify Ret
if (((DWORD)_ReturnAddress() == AddToNotify && addToNotify) || ((DWORD)_ReturnAddress() == DrawNotify) && ret == 0)
{
addToNotify = false;
return 1;
}
return ret;
}
Последнее редактирование: