-
Автор темы
- #1
Год назад спастил, вроде все работало, сейчас делать нечего было, зашел, проверил - не работает, что делать?
p.s. знаю что хуета, делаю так, для себя
C#:
static void DrawEntity(int ClowIndex, int red, int green, int blue)
{
int GlowObhect = m.Read<int>(client_dll + cs.dwGlowObjectManager);
m.Write(GlowObhect + (ClowIndex * 0x38) + 4, red / 100f);
m.Write(GlowObhect + (ClowIndex * 0x38) + 8, green / 100f);
m.Write(GlowObhect + (ClowIndex * 0x38) + 12, blue / 100f);
m.Write(GlowObhect + (ClowIndex * 0x38) + 0x10, 255 / 100f);
m.Write(GlowObhect + (ClowIndex * 0x38) + 0x24, true);
m.Write(GlowObhect + (ClowIndex * 0x38) + 0x25, false);
}
private static void glow(int r, int g, int b)
{
while (true)
{
int LocalPlayer = m.Read<int>(client_dll + cs.dwLocalPlayer);
int PlayerTeam = m.Read<int>(LocalPlayer + cs.m_iTeamNum);
for (int i = 0; i < 64; i++)
{
int EntityList = m.Read<int>(client_dll + cs.dwEntityList + i * 0x10);
int EntityTeam = m.Read<int>(EntityList + cs.m_iTeamNum);
if (EntityTeam != 0 && EntityTeam != PlayerTeam)
{
int GlowIndex = m.Read<int>(EntityList + cs.m_iGlowIndex);
DrawEntity(GlowIndex, r, g, b);
}
}
}
}
Последнее редактирование: