Note
Paused - Currently working on other things.
SpawnsMerger is a Paper plugin that turns mob spawners into limited-use items with a simple merging system. Players can generate spawners that carry a fixed number of remaining spawns, place them, and combine compatible spawners through a GUI to extend their lifespan.
SpawnsMerger aims to convert regular spawners into a controlled progression system:
- Spawners are consumable items with a limited number of charges ("spawns") and can only be recovered with Silk Touch.
- Players can merge spawners of the same type via the merge GUI to create stronger variants without enabling endless farms.
- Holograms show the mob type and remaining charges so players can design farms with clear, predictable output.
This concept allows fair farm building, reduces server lag, and keeps progression measurable.
- Limited spawner items:
/givespawnercreates a spawner item tagged with a mob type and a remaining spawn count using the NBT-API library. - Placement support: When a tagged spawner is placed, the block is configured to the stored mob type and the remaining count is saved in the spawner's persistent data container.
- Spawn consumption: Each spawn reduces the remaining counter; when it reaches zero the spawner block is removed.
- Hologram feedback: Right-clicking a spawner shows an armor-stand hologram with the mob type and remaining spawns, updated after each spawn and automatically cleared after a short delay.
- Silk Touch drops: Breaking a limited spawner with Silk Touch drops an item preserving the mob type and remaining spawns.
- Merge GUI:
/mergespawneropens a 27-slot GUI with two input slots. Inserting two limited spawners of the same type combines their remaining counts into a single item.
- Paper (or compatible) server targeting Minecraft 1.21.x
- Java 21 runtime
- NBT-API plugin present on the server (declared as a dependency in
plugin.yml)
- Build the plugin:
./gradlew build - Copy the generated JAR from
build/libs/into your server'spluginsfolder. - Ensure NBT-API is installed, then start or reload the server.
| Command | Description | Usage |
|---|---|---|
/givespawner <MobType> <Spawns> |
Gives the executing player a spawner item for the specified mob type with the given remaining spawn count. Only valid, spawnable mobs are accepted. | /givespawner ZOMBIE 20 |
/mergespawner |
Opens the merge GUI. Place two compatible limited spawners into the left/right slots and click the anvil to combine them. Items are returned automatically if the GUI is closed. | /mergespawner |
- The hologram is anchored above the spawner block and fades automatically; breaking the spawner also clears the hologram.
- Spawners without the plugin's NBT tags behave like normal spawners and cannot be merged.
- Using Silk Touch is required to retrieve a placed limited spawner as an item; otherwise it breaks without drops.
- Balancing levers: Add extra costs (e.g., XP levels or rare items) for merging spawners or recharging empty ones.
- Configurable limits: Allow server owners to define permitted mobs, maximum remaining charges, and merge caps per mob type.
- Visuals & UX: Provide particle effects during merging, configurable hologram text, and multilingual messages.
- Integration: Offer PlaceholderAPI hooks for statistics (remaining spawns per spawner) and logging/analytics for farm usage.
- Quality of life: Add command tab completion for mob names and standardized error messages for invalid items.
- Entry point:
SpawnsMergerregisters commands and listeners on enable/disable. - Command executors:
SpawnerCommandcreates tagged spawner items;SpawnerMergeCommandopens the GUI for players. - Listeners:
SpawnerListenerhandles placement, interaction, spawning, and breaking logic, including hologram management.SpawnerMergeGUImanages the merge inventory interactions.
Contributions and bug reports are welcome! Feel free to open issues or pull requests for enhancements.