A spigot plugin that blocks exploits.
Thank you to the original developers; this is a combination of EventHandlers from three open source plugins, plus some of my own.
- Disable Chunk Loaders: unload unused chunks on an interval, and/or disable entity portal usage
- Prevent Item Renaming: block specific items and/or names
- Prevent Light Block Redstone Dupe: stop placing redstone on trapdoors with lights above it
- Prevent Breaking Trial Spawners
- Disable Spawner-Egg Conversion
- Disable Spawner Exp Orbs
- Author: tbm00 @ https://github.com/tbm00/
- Link: https://github.com/tbm00/Fix64/
- Prevents players from breaking trial spawners
- Prevents players from changing spawner mob types with spawn eggs
- Prevents players from placing redstone on trapdoors, thus minimizing light block dupes
- Unloads chunks without nearby players on interval, thus minimizing chunk loaders
- Author: SainttX @ https://github.com/sainttx/
- Link: https://www.spigotmc.org/threads/disable-xp-from-breaking-mob-spawners.19277/
- Prevents spawners from dropping exp when broken, thus disabling exp dupes
- Updated for 1.21's trial spawners by tbm00
- Author: MetallicGoat @ https://github.com/MetallicGoat/
- Link: https://github.com/MetallicGoat/PortalGaurd/
- Prevents entities from teleporting in portals, thus disabling some chunk loaders
- Author: Xemor_ @ https://github.com/Xemorr/
- Link: https://www.spigotmc.org/resources/stoprenaming.80430/
- Prevents players from renaming items in anvils based on item's name & material
- Updated for 1.21+ by tbm00 (fix deprecated functions)
- Java 17+: REQUIRED
- Spigot 1.20.4+: UNTESTED ON OLDER VERSIONS
/fix64 reload
Reload the plugin's config
fix64.reload
Ability to use reload the config (default: OP)fix64.eggconversion
Ability to convert spawners with spawn eggs (default: OP)
# Fix64 v1.7.1 by @tbm00
# https://github.com/tbm00/Fix64/
### Prevents spawners from dropping exp when broken, thus disabling exp dupes (includes 1.21 trial spawners)
enableBlockSpawnerEXP: true
### Prevents players from changing spawner mob types with spawn eggs
enableBlockSpawnerConversion: true
### Prevents players from breaking trial spawners
enableBlockTrialSpawnerBreak: true
### Prevents players from placing redstone on trapdoors, thus minimizing light block dupes
fixLightTrapdoorDupe: true
### Unloads chunks without nearby players on interval, thus minimizing chunk loaders
chunkUnloader:
enabled: true
timer: 480 # seconds
radius: 16 # chunks
### Prevents entities from teleporting in portals, thus disabling some chunk loaders
enablePortalGaurd: true
bannedPortalEntities:
- "BOAT"
- "CHEST_BOAT"
- "MINECART"
- "MINECART_CHEST"
- "MINECART_COMMAND"
- "MINECART_FURNACE"
- "MINECART_TNT"
- "MINECART_HOPPER"
- "MINECART_MOB_SPAWNER"
- "DROPPED_ITEM"
- "ITEM_DISPLAY"
- "BLOCK_DISPLAY"
# https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html
### Prevents players from renaming items in anvils based on item's name & material
enableStopRenaming: true
banAllNames: false
bannedMaterials:
- "TRIPWIRE_HOOK"
bannedNames:
- "&4BadWord"