Skip to content

Commit 0d463d0

Browse files
committed
PacketTools
1 parent 186b3e8 commit 0d463d0

8 files changed

Lines changed: 1554 additions & 5 deletions

File tree

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -772,6 +772,20 @@ This hack is still undergoing development and has only been tested in the end. A
772772

773773
![FPS](https://i.imgur.com/MhmAno5.png)
774774

775+
### AdvancedPacketTool
776+
- Lets you manage packet behavior per packet type (S2C & C2S)
777+
- Supports 3 independent modes: Log, Deny and Delay
778+
- Modes can overlap (Log & Deny Packet A but also Log & Delay Packet B)
779+
- Toggles for enabling modes as well as cycling through packet edit list
780+
- Delay is tick based
781+
- Searchable dual-list UI with select all/none controls
782+
- Setting toggles are key bindable
783+
- Optional ```Show Unknown Packets``` feature to allow ```class_####``` packets
784+
785+
- Inspired by [HelixCraft's Packet Logger](https://github.com/HelixCraft/Fabric-Packet-Logger)
786+
787+
![PacketTool](https://i.imgur.com/kBEhpuO.png)
788+
775789
## What's changed or improved in this fork?
776790

777791
### ChestESP

src/main/java/net/wurstclient/hacks/AutoLibrarianHack.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -619,11 +619,11 @@ private void chatNoLibrarianReason()
619619
+ blockingJobSite.toShortString()
620620
+ " (yellow ESP/tracer). Break it.";
621621

622-
}else
623-
{
624-
reason =
625-
"Reason: likely pathing issue. Make sure villager can walk to the lectern.";
626-
}
622+
}else
623+
{
624+
reason =
625+
"Reason: likely pathing issue. Make sure villager can walk to the lectern.";
626+
}
627627

628628
if(!reason.equals(lastReasonMessage))
629629
{

src/main/java/net/wurstclient/other_feature/OtfList.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public final class OtfList
3030
public final NoChatReportsOtf noChatReportsOtf = new NoChatReportsOtf();
3131
public final NoTelemetryOtf noTelemetryOtf = new NoTelemetryOtf();
3232
public final PacketFirewallOtf packetFirewallOtf = new PacketFirewallOtf();
33+
public final PacketToolsOtf packetToolsOtf = new PacketToolsOtf();
3334
public final ReconnectOtf reconnectOtf = new ReconnectOtf();
3435
public final ServerFinderOtf serverFinderOtf = new ServerFinderOtf();
3536
public final TabGuiOtf tabGuiOtf = new TabGuiOtf();

0 commit comments

Comments
 (0)