Skip to content

Commit

Permalink
Update UnrealDemoScanner.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
UnrealKaraulov committed Jun 7, 2024
1 parent 64e8ee6 commit d13dcc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions UnrealDemoScanner/UnrealDemoScanner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8438,7 +8438,7 @@ public static void ProcessPluginMessage(string cmd)
"[AIM TYPE 1.6 " + CurrentWeapon + "] at (" + CurrentTime + "):" +
CurrentTimeString,
!IsCmdChangeWeapon() && !IsAngleEditByEngine() && !IsPlayerLossConnection() &&
!IsForceCenterView());
!IsForceCenterView(),true,false,true);
TotalAimBotDetected++;
}

Expand Down Expand Up @@ -8568,7 +8568,7 @@ public static void ProcessPluginMessage(string cmd)
{
DemoScanner_AddWarn(
"[BETA] [AIM TYPE 12.1 " + CurrentWeapon + "] at (" + CurrentTime +
"):" + CurrentTimeString/*, !IsAngleEditByEngine()*/);
"):" + CurrentTimeString,true,true,false,true);
}
else if (abs(LastSCMD_Angles1[0] - tmp_ACMD_Angles3[0]) < EPSILON_2 &&
abs(LastSCMD_Angles1[1] - tmp_ACMD_Angles3[1]) < EPSILON_2 &&
Expand All @@ -8579,7 +8579,7 @@ public static void ProcessPluginMessage(string cmd)
{
DemoScanner_AddWarn(
"[BETA] [AIM TYPE 12.2 " + CurrentWeapon + "] at (" + CurrentTime +
"):" + CurrentTimeString/*, !IsAngleEditByEngine()*/);
"):" + CurrentTimeString, true, true, false, true);
}
}
}
Expand Down Expand Up @@ -8614,7 +8614,7 @@ public static void ProcessPluginMessage(string cmd)
{
DemoScanner_AddWarn(
"[BETA] [AIM TYPE 12.3 " + CurrentWeapon + "] at (" + CurrentTime +
"):" + CurrentTimeString/*, !IsAngleEditByEngine()*/);
"):" + CurrentTimeString, true, true, false, true);
}
}
}
Expand Down

0 comments on commit d13dcc1

Please sign in to comment.