Skip to content

Commit 39d7557

Browse files
committed
Bump to 3.7.8
1 parent 2430f16 commit 39d7557

5 files changed

Lines changed: 16 additions & 16 deletions

File tree

libs/LPX.jar

240 KB
Binary file not shown.

resources/config.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ options:
5151
# NONE (vanilla behavior)
5252
disable-item-decoding: SMART
5353

54+
# Used only if "disable-item-decoding" is set to CREATIVE.
55+
# The components listed below will still be decoded in creative mode.
56+
# https://github.com/retrooper/packetevents/blob/2.0/api/src/main/java/com/github/retrooper/packetevents/protocol/component/ComponentTypes.java
57+
creative-exempts:
58+
- "custom_name"
59+
- "lore"
60+
- "enchantments"
61+
5462
# Maximum depth an ItemStack can have per packet
5563
max-item-depth: 4
5664

@@ -501,15 +509,17 @@ checks:
501509
max: 8
502510
g:
503511
enabled: true
504-
punish: false
505-
max-vl: 3
506-
min-vl: 2
512+
punish: true
513+
max-vl: 2
514+
min-vl: 1
507515
punish-commands:
508516
- 'lpx kick %player% &cYou are sending too many packets. :&'
509517
options:
510518
max: 70
511519
interval: 500
512520
cancel: true
521+
burst-max-flags: 2
522+
burst-interval: 1200
513523
position:
514524
a:
515525
enabled: true

resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ main: space.commandf1.cracker.lpx.LPXCrackerPlugin
33
authors:
44
- Ytnoos
55
- commandf1
6-
version: 3.7.6
6+
version: 3.7.8
77
api-version: 1.13
88
description: Blazingly stable anti exploit 1.8-1.21 but cracked
99
softdepend:

screenshots/show.png

-974 Bytes
Loading

src/space/commandf1/cracker/lpx/LPXCrackerPlugin.java

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package space.commandf1.cracker.lpx;
22

3-
import it.ytnoos.lpx.O;
3+
import it.ytnoos.lpx.FC;
44
import org.bukkit.command.CommandExecutor;
55
import org.bukkit.command.PluginCommand;
66
import space.commandf1.cracker.lpx.util.ClassUtil;
@@ -9,7 +9,7 @@
99
/**
1010
* @author commandf1
1111
*/
12-
public class LPXCrackerPlugin extends O {
12+
public class LPXCrackerPlugin extends FC {
1313
private static LPXCrackerPlugin instance;
1414

1515
public LPXCrackerPlugin() {
@@ -52,16 +52,6 @@ public void onEnable() {
5252
});
5353
}
5454

55-
@Override
56-
public void onDisable() {
57-
super.onDisable();
58-
}
59-
60-
@Override
61-
public void onLoad() {
62-
super.onLoad();
63-
}
64-
6555
private static void modify(ClassLoader classLoader) throws Exception {
6656
if (ClassUtil.isClassLoaded("it.ytnoos.lpx.z", classLoader)) {
6757
ClassUtil.unloadClass("it.ytnoos.lpx.z", classLoader);

0 commit comments

Comments
 (0)