int Hits = 0;
public static void RunDamageIndicatorPanorama()
{
if (CheatStatus.DamageIndicatorActive)
{
if (CLocalPlayer.TotalHits > Hits)
{
Hits = CLocalPlayer.TotalHits;
CLocalPlayer.HealthShotBoostTime = 0.5f;
}
if (CLocalPlayer.isDead)
Hits = 0;
}
else
Hits = 0;
}
public static int TotalHits
{
get
{
if (BaseAdress != 0)
return CylMem.ReadInt(LocalPlayerBase + m_totalHitsOnServer);
else
{
ConfigureLocalPlayer();
return CylMem.ReadInt(LocalPlayerBase + m_totalHitsOnServer);
}
}
}
public static float HealthShotBoostTime
{
get
{
if (BaseAdress != 0)
return CylMem.ReadFloat(LocalPlayerBase + m_flHealthShotBoostExpirationTime);
else
{
ConfigureLocalPlayer();
return CylMem.ReadFloat(LocalPlayerBase + m_flHealthShotBoostExpirationTime);
}
}
set
{
if (BaseAdress != 0)
CylMem.WriteFloat(LocalPlayerBase + m_flHealthShotBoostExpirationTime, EngineClient.GameTick + (float)value);
}
}
cs go hit marker code.What is this
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?