Skip to content

tbm00/Fix64

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fix64 Item64 Icon

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.

Configurable Features

  • 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

Included Plugins

Fix64 - Base Plugin

  • 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

BlockSpawnerEXP

PortalGaurd

StopRenaming

Dependencies

  • Java 17+: REQUIRED
  • Spigot 1.20.4+: UNTESTED ON OLDER VERSIONS

Commands & Permissions

Commands

  • /fix64 reload Reload the plugin's config

Permissions

  • fix64.reload Ability to use reload the config (default: OP)
  • fix64.eggconversion Ability to convert spawners with spawn eggs (default: OP)

Config

# 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"