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); //Reflection.setItemInUse(blockingClient = true);
sendBlockPacket(); //sendBlockPacket();
// cancel // cancel
} }
else { else {

View File

@ -43,7 +43,7 @@ public class NoRotate extends Module {
@SubscribeEvent @SubscribeEvent
public void onSendPacket(SendPacketEvent e) { public void onSendPacket(SendPacketEvent e) {
if (s08PacketData != null && mc.thePlayer != null && e.getPacket() instanceof C03PacketPlayer.C06PacketPlayerPosLook) { 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; s08PacketData = null;
return; return;
} }

View File

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