Welcome on MasterOf13FPS! MasterOf13FPS

Register today or sign up if you are already a member and never miss any cool content again :)

Client Vulcan "Aim(Y)" Check

Neemo

Member
Joined
Jul 20, 2020
Messages
102
Reaction score
10
Points
18
Hey,
I am fairly new to bypassing quite "modern" Anticheats so I would like to ask this Community if somebody would know what specifical is meant by Vulcan "
Aim (Y) (vl:2/5): diff=25.158985 dist=0.7319268719399414 | Generic rotation analysis heuristic." and if somebody knows a good way of actually bypassing it because previously I have already tried Smooth Rotations (Constant and Accelerated) alongside a variety of Random Rotation Calculations and it always seems to reappear in some way.

I would be very glad if somebody could help me and give me a tip on how to bypass this Check.
 
Hey,
I am fairly new to bypassing quite "modern" Anticheats so I would like to ask this Community if somebody would know what specifical is meant by Vulcan "
Aim (Y) (vl:2/5): diff=25.158985 dist=0.7319268719399414 | Generic rotation analysis heuristic." and if somebody knows a good way of actually bypassing it because previously I have already tried Smooth Rotations (Constant and Accelerated) alongside a variety of Random Rotation Calculations and it always seems to reappear in some way.

I would be very glad if somebody could help me and give me a tip on how to bypass this Check.
Java:
  public void handle(Packet packet) {
    if (packet.isRotation() && hitTicks() < 3) {
      float lastFuckedYaw = this.data.getRotationProcessor().getLastFuckedPredictedYaw();
      float fuckedYaw = this.data.getRotationProcessor().getFuckedPredictedYaw();
      float difference = Math.abs(fuckedYaw - lastFuckedYaw);
      double distance = this.data.getCombatProcessor().getDistance();
      boolean exempt = (isExempt(new ExemptType[] { ExemptType.TELEPORT, ExemptType.DEATH, ExemptType.WORLD_CHANGE }) || this.data.getActionProcessor().getSinceTeleportTicks() < 20);
      if (exempt)
        return;
      if (distance > 0.6D && difference > 20.0F && distance < 10.0D)
        fail("diff=" + difference + " dist=" + distance);
    }
 
Java:
  public void handle(Packet packet) {
    if (packet.isRotation() && hitTicks() < 3) {
      float lastFuckedYaw = this.data.getRotationProcessor().getLastFuckedPredictedYaw();
      float fuckedYaw = this.data.getRotationProcessor().getFuckedPredictedYaw();
      float difference = Math.abs(fuckedYaw - lastFuckedYaw);
      double distance = this.data.getCombatProcessor().getDistance();
      boolean exempt = (isExempt(new ExemptType[] { ExemptType.TELEPORT, ExemptType.DEATH, ExemptType.WORLD_CHANGE }) || this.data.getActionProcessor().getSinceTeleportTicks() < 20);
      if (exempt)
        return;
      if (distance > 0.6D && difference > 20.0F && distance < 10.0D)
        fail("diff=" + difference + " dist=" + distance);
    }
Was the Vulcan Source leaked or where did you find this if I may ask?
Also thank you so much, I'll try to fix it asap
 
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top