Latest release
This commit is contained in:
parent
25695ea11e
commit
155fce3dca
|
|
@ -454,7 +454,7 @@ public class KillAura extends Module {
|
||||||
if (packet instanceof C00PacketLoginStart || packet instanceof C00Handshake) {
|
if (packet instanceof C00PacketLoginStart || packet instanceof C00Handshake) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (autoBlockMode.getInput() >= 5 && (packet instanceof C03PacketPlayer || packet instanceof C0BPacketEntityAction)) {
|
if (autoBlockMode.getInput() >= 5 && (packet instanceof C03PacketPlayer || packet instanceof C0BPacketEntityAction || packet instanceof C0FPacketConfirmTransaction)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
blinkedPackets.add(packet);
|
blinkedPackets.add(packet);
|
||||||
|
|
@ -1088,7 +1088,7 @@ public class KillAura extends Module {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 7: // swap
|
case 7: // delay
|
||||||
if (interactTicks >= 2) {
|
if (interactTicks >= 2) {
|
||||||
interactTicks = 0;
|
interactTicks = 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -153,9 +153,9 @@ public class AntiVoid extends Module {
|
||||||
public boolean dist() {
|
public boolean dist() {
|
||||||
double minMotion = 0.06;
|
double minMotion = 0.06;
|
||||||
int dist1 = 2;
|
int dist1 = 2;
|
||||||
int dist2 = 4;
|
int dist2 = 5;
|
||||||
int dist3 = 6;
|
int dist3 = 7;
|
||||||
int dist4 = 8;
|
int dist4 = 9;
|
||||||
// 1x1
|
// 1x1
|
||||||
|
|
||||||
if (Utils.distanceToGround(mc.thePlayer, (int) mc.thePlayer.posX, (int) mc.thePlayer.posZ) > dist1) {
|
if (Utils.distanceToGround(mc.thePlayer, (int) mc.thePlayer.posX, (int) mc.thePlayer.posZ) > dist1) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue