This commit is contained in:
jackh 2025-01-10 20:00:50 -07:00
parent 0cd2d9a5ce
commit 1e1ed8f735
3 changed files with 11 additions and 11 deletions

View File

@ -414,8 +414,8 @@ public class KillAura extends Module {
}
}
}
Reflection.setItemInUse(blockingClient = true);
sendBlockPacket();
//Reflection.setItemInUse(blockingClient = true);
//sendBlockPacket();
// cancel
}
else {

View File

@ -43,7 +43,7 @@ public class NoRotate extends Module {
@SubscribeEvent
public void onSendPacket(SendPacketEvent e) {
if (s08PacketData != null && mc.thePlayer != null && e.getPacket() instanceof C03PacketPlayer.C06PacketPlayerPosLook) {
if (Utils.timeBetween(mc.thePlayer.ticksExisted, receivedTick) >= 2) {
if (Utils.timeBetween(mc.thePlayer.ticksExisted, receivedTick) >= 1) {
s08PacketData = null;
return;
}

View File

@ -10,15 +10,15 @@ public class Help extends Command {
@Override
public void onExecute(String[] args) {
chat("&7[&fhelp&7] Chat commands - &dGeneral");
chat(" &b/(ign/name) &7Copy your username.");
chat(" &b/ping &7Estimate your ping.");
chat(" &b/q [gamemode] &7Queue a mode");
chat(" &b/qlist &7List queueable modes");
chat(" &b.(ign/name) &7Copy your username.");
chat(" &b.ping &7Estimate your ping.");
chat(" &b.q [gamemode] &7Queue a mode");
chat(" &b.qlist &7List queueable modes");
chat("&7---------------------------");
chat("&7[&fhelp&7] Chat commands - &dModules");
chat(" &b/cname [name] &7Set name hider name.");
chat(" &b/binds (key) &7List module binds.");
chat(" &b/friend [name] &7Add/Remove somebody as a friend");
chat(" &b/enemy [name] &7Add/Remove somebody as a enemy");
chat(" &b.cname [name] &7Set name hider name.");
chat(" &b.binds (key) &7List module binds.");
chat(" &b.friend [name] &7Add/Remove somebody as a friend");
chat(" &b.enemy [name] &7Add/Remove somebody as a enemy");
}
}