 
                    
                     
                Clumps
The Clumps modification is specifically designed to enhance the experience collection process in Minecraft. The plugin merges nearby XP orbs and allows players to instantly absorb them when in proximity, significantly reducing server load and providing smoother gameplay.
Main Features
Automatic XP Orb Merging
The system automatically combines XP orbs within a specified radius. This reduces the number of individual entities on the server, positively impacting performance.
Instant Absorption
As soon as a player approaches XP orbs, they are immediately added to their experience. The need to wait for orbs to reach the character disappears, making the collection process much more comfortable.
Extensive Customization
The plugin offers broad configuration capabilities through a configuration file. You can adjust:
- Merge area size for XP orbs
- Minimum XP amount for merging
- Check and merge frequency
- Instant collection radius
Experience Bonus
Players near merged XP orbs receive additional benefits through an increased experience amount using a special multiplier.
Visual Effects
Enabled particle animations during XP orb merging make the process more visible and visually appealing.
World-Specific Settings
Each dimension can have individual parameters for XP orb behavior. The Overworld, Nether, and other server dimensions can be configured separately.
Duplication Protection
The system prevents XP orb multiplication in high-density areas, which is a common cause of server lag.
Plugin Configuration
Plugin parameters are configured through the config.yml file:
# Clumps Plugin Settings
# XP orb merging radius (in blocks)
merge-radius: 2.0
# Minimum XP amount for merging
min-xp-to-merge: 5
# Check and merge interval (in seconds)
merge-interval-seconds: 10
# Instant collection radius
instant-collect-radius: 1.5
# Enable instant XP orb collection
enable-instant-collect: true
# Enable XP orb merging
enable-merging: true
# Experience bonus multiplier (1.1 = 10% bonus)
xp-boost-multiplier: 1.1
# Enable experience bonus
enable-xp-boost: true
# Enable merge animations
enable-merge-animations: true
# Prevent orb duplication
prevent-orb-duplication: true
# Individual world settings
world-settings:
  # Example settings for Overworld
  overworld:
    merge-radius: 2.0
    min-xp-to-merge: 5
    merge-interval-seconds: 10
    enable-instant-collect: true
    enable-merging: true
    xp-boost-multiplier: 1.1
    enable-xp-boost: true
    enable-merge-animations: true
  # Example settings for Nether
  nether:
    merge-radius: 3.0  # Larger radius in Nether
    min-xp-to-merge: 10
    merge-interval-seconds: 15  # Longer interval
    enable-instant-collect: false  # Disabled in Nether
    enable-merging: true
    xp-boost-multiplier: 1.2  # Higher bonus in Nether
    enable-xp-boost: true
    enable-merge-animations: false  # Animations disabled 
                                