MyPure | Server Purifier & Optimizer v1.0.0

A modular utility to optimize performance and silence server noise (1.16.x - 1.21.x+).
  • mpp.png
  • javaw_QZmHUyImxx.png
  • javaw_OhM1ntnVSz.png
  • javaw_GzrX7QDbKz.png
  • javaw_K05rnHRUkE.png
  • mpp.png
  • javaw_QZmHUyImxx.png
  • javaw_OhM1ntnVSz.png
  • javaw_GzrX7QDbKz.png
  • javaw_K05rnHRUkE.png

a001.jpeg


OVERVIEW
MyPure is a comprehensive, modular utility designed to "purify" your Minecraft environment by removing unwanted game noise and optimizing server resources. Developed using Java 21 and the Paper API, it replaces multiple small plugins with a single, highly efficient core.





a002.jpeg


FEATURES
MyPure is divided into focused modules, allowing you to enable only the features your server needs.

Quiet Core: Customize unknown command messages with full HEX support.
World Physics: Explosion protection, fire spread control, and crop trample prevention.
Void Save: Instantly teleports players to safety when falling into the void.
Social Silence: Disable join/quit logs, advancements, and specific death causes.
Entity Cleaner: Automated performance optimizer with material-specific blacklists.





a003.png


MANAGEMENT
Powerful administrative tools to keep your server running smoothly at all times.

COMMANDS: /mypure [reload|clean] | /mpure | /pure
PERMISSION: mypure.admin (Reload) | mypure.clean (Manual Cleanup)
DESCRIPTION: Administrative control for reloads and triggering manual entity sweeps.





Modular Flexibility
The enabled-worlds system ensures MyPure only works where you want it. Whether it's the entire server or specific world-groups, the choice is yours.

Intelligent Optimization
The Auto-Cleaner module is smart enough to ignore valuable items like Diamonds or protected entities like Villagers while cleaning up the lag-inducing "noise" of dropped items.

a004.png


Code:
# =============================================================
# MyPure — Purify your server. One plugin to silence the noise.
# Author: fvl1s
# =============================================================

# Global plugin settings
general:
  # The global prefix used in all system messages. Supports MiniMessage (HEX/Gradients).
  prefix: "<aqua>MyPure <white>| "
  # List of worlds where the plugin's modules will be active.
  # Use ["all"] to enable functionality across every world on the server.
  enabled-worlds:
    - "all"

# -------------------------------------------------------------
# MODULE 1: QUIET CORE
# -------------------------------------------------------------
quiet-core:
  # Customizes the message shown when a player enters a non-existent command.
  unknown-command:
    # If true, the default "Unknown command" message will be replaced.
    enabled: true
    # The message sent to the player. Supports MiniMessage.
    message: "<prefix><red>Unknown command. Use /help for assistance."

  # [PAID FEATURE]
  # Advanced Tab-Complete Filter to hide specific commands from players and groups in the TAB menu.
  # Available in paid version (@RForever2).
  tab-complete-filter: false

# -------------------------------------------------------------
# MODULE 2: PHYSICS & PROTECTION
# -------------------------------------------------------------
physics:
  # Prevents blocks from being destroyed by TNT or Creeper explosions.
  explosion-protection: true
  # Stops fire from spreading to neighboring blocks and prevents blocks from burning away.
  fire-spread-stop: true
  # Prevents players, mobs, and animals from trampling farmland (crops).
  crop-trample-protection: true

  # Automatically teleports players to a safe location when falling into the void.
  void-save:
    # If true, falling below Y=0 will trigger a teleport.
    enabled: true
    # The destination for the teleport. Format: "world_name:x:y:z"
    spawn-location: "world:0:100:0"

  # [PAID FEATURE]
  # Extended physics control including per-flag protection for regions and specialized event blocking.
  # Available in paid version (@RForever2).
  extended-physics: false

# -------------------------------------------------------------
# MODULE 3: SOCIAL SILENCE
# -------------------------------------------------------------
social:
  connection-messages:
    # Completely removes vanilla "Player joined the game" and "Player left the game" messages.
    # This logic is non-intrusive and will not conflict with custom join/quit plugins.
    disable-default-join-quit: true

  advancements:
    # Hides the global chat notification when a player earns an achievement/advancement.
    hide-messages: true
    # [PAID FEATURE]
    # Hide advancement "Toasts" (the sliding icons in the top-right corner of the player's screen).
    # Available in paid version (@RForever2).
    hide-toasts: false

  death-messages:
    # Select the filtering mode for player death messages.
    # options: global (hide all), filtered (hide specific types), none (standard behavior).
    mode: "filtered"

    # List of damage causes to be hidden if 'filtered' mode is enabled.
    # Available types: CONTACT, ENTITY_ATTACK, PROJECTILE, SUFFOCATION, FALL, FIRE,
    # FIRE_TICK, MELTING, LAVA, DROWNING, BLOCK_EXPLOSION, ENTITY_EXPLOSION,
    # VOID, LIGHTNING, SUICIDE, STARVATION, POISON, MAGIC, WITHER,
    # FALLING_BLOCK, THORNS, DRAGON_BREATH, CUSTOM, FLY_INTO_WALL,
    # HOT_FLOOR, CRAMMING, DRYOUT, FREEZE, SONIC_BOOM.
    hidden-types:
      - "FALL"
      - "VOID"
      - "FIRE"
      - "DROWNING"
      - "LAVA"

# -------------------------------------------------------------
# MODULE 4: PERFORMANCE & CLEANER
# -------------------------------------------------------------
performance:
  # [PAID FEATURE]
  # Anti-Mob-Lag: Advanced optimization for entity AI and automatic removal of stuck mobs.
  # Available in paid version (@RForever2).
  anti-mob-lag: false

  # AUTOMATIC ENTITY CLEANER
  # Regularly clears specific entities from the world to maintain server performance.
  auto-cleaner:
    # If true, the automated cleanup task will run on the specified interval.
    enabled: true
    # Time in seconds between cleanup cycles (e.g., 600 = 10 minutes).
    interval: 600

    # List of entity types to target during cleanup.
    # Common types: ITEM (dropped items), ARROW, TRIDENT, EXPERIENCE_ORB.
    entities-to-clear:
      - "ITEM"
      - "ARROW"

    # List of materials or entity types that are immune to cleanup.
    # If an item material is listed here (e.g., DIAMOND), it will not be deleted even if it's on the ground.
    blacklist:
      - "DIAMOND"
      - "NETHERITE_INGOT"
      - "VILLAGER"
      - "ARMOR_STAND"

    notifications:
      # Enable countdown alerts and final reports in the global chat.
      enabled: true
      # Seconds remaining before cleanup to send a warning message.
      times: [30, 10, 5]
      # Message sent during countdown. Placeholders: <prefix>, <time>.
      warning-message: "<prefix><white>Ground items will be cleared in <aqua><time><white> seconds."
      # Message sent after a successful cleanup. Placeholders: <prefix>, <count>.
      final-message: "<prefix><green>Cleanup complete! Removed <white><count><green> entities."
      # Message broadcasted when a cleanup is manually triggered by a user or console.
      # Placeholders: <prefix>, <author>.
      manual-trigger: "<prefix><white>Manual cleanup initiated by <aqua><author><white>..."

# -------------------------------------------------------------
# MESSAGES & LOCALIZATION
# -------------------------------------------------------------
messages:
  # Standard response when a user lacks the required permission node.
  no-permission: "<prefix><red>You do not have permission to perform this action."
  # Response sent after the /mypure reload command completes successfully.
  reload-success: "<prefix><green>Configuration reloaded successfully."
  # Default help message explaining command usage.
  usage: "<prefix><white>Usage: <aqua>/mypure <reload|clean>"

NEED SUPPORT?

I am dedicated to providing the best experience.
For technical questions, custom requests, or licensing inquiries, feel free to contact me:


Telegram: @RForever2



EULA: Free EULA
196 Views
6 Downloads
Apr 7, 2026 Published
N/A Updated
Not yet rated
18.3 KB File size
Open source
  1. Yes
DRM-free
  1. Yes
Unobfuscated
  1. Yes
Type
  1. Gameplay
  1. Protection
  1. Optimization
Game mode
  1. Survival
  1. Hub & lobby
  1. Minigame
Supported software
  1. Bukkit
  1. Spigot
  1. Paper
  1. Purpur
Supported versions
  1. 1.21.11
  1. 1.21.8
  1. 1.21.5
  1. 1.21.4
  1. 1.21.2
  1. 1.21
  1. 1.20
  1. 1.19
  1. 1.18
  1. 1.17
  1. 1.16
Supported languages
  1. English
Creator
Owner
Struggling to cover the costs of your server? Set up your own webstore with Tebex in under 30 seconds.
Lag-free, customizable servers ready in minutes.
Host your adventure today!
Recommended for you
Spawn management and proxy routing with effects (1.16.x - 1.21.x+).
Not yet rated
1 purchase
Jump pads with 3 modes, visual effects, fall protection (1.16.x - 1.21.x+).
Not yet rated
0 purchases
#1 BuiltByBit Plugin ~ Protects your server from crash packet exploits ~ Folia Support
5.00 star(s) 141 ratings
4,174 purchases
Create items, blocks, mobs, emojis, and more with automatic resourcepack generation!
5.00 star(s) 52 ratings
3,101 purchases
Protect your server from crash/dupe/packet exploits with the ultimate security fix plugin.
5.00 star(s) 45 ratings
3,037 purchases
196 Views
6 Downloads
Apr 7, 2026 Published
N/A Updated
Not yet rated
18.3 KB File size
Open source
  1. Yes
DRM-free
  1. Yes
Unobfuscated
  1. Yes
Type
  1. Gameplay
  1. Protection
  1. Optimization
Game mode
  1. Survival
  1. Hub & lobby
  1. Minigame
Supported software
  1. Bukkit
  1. Spigot
  1. Paper
  1. Purpur
Supported versions
  1. 1.21.11
  1. 1.21.8
  1. 1.21.5
  1. 1.21.4
  1. 1.21.2
  1. 1.21
  1. 1.20
  1. 1.19
  1. 1.18
  1. 1.17
  1. 1.16
Supported languages
  1. English
Creator
Owner
Struggling to cover the costs of your server? Set up your own webstore with Tebex in under 30 seconds.
Lag-free, customizable servers ready in minutes.
Host your adventure today!
Recommended for you
Spawn management and proxy routing with effects (1.16.x - 1.21.x+).
Not yet rated
1 purchase
Jump pads with 3 modes, visual effects, fall protection (1.16.x - 1.21.x+).
Not yet rated
0 purchases
#1 BuiltByBit Plugin ~ Protects your server from crash packet exploits ~ Folia Support
5.00 star(s) 141 ratings
4,174 purchases
Create items, blocks, mobs, emojis, and more with automatic resourcepack generation!
5.00 star(s) 52 ratings
3,101 purchases
Protect your server from crash/dupe/packet exploits with the ultimate security fix plugin.
5.00 star(s) 45 ratings
3,037 purchases
Top