Langue

zNxPiglinRush

zNxPiglinRush

Modrinth

Increases Zombified Piglin spawn rate on magma blocks for gold farms

18 téléchargements mis à jour 10d ago
dernière v2.1.0 Modrinth
Folia Paper Purpur Spigot 26.1.2 – 26.1.2 Game-mechanicsMobsUtility

🔥 zNxPiglinRush

Banner

A multi-block Nether spawner framework — boost mob spawns on any block type, with wave mode, live statistics, spawn heatmap, custom loot and full Folia support.

Vanilla already spawns Zombified Piglins above magma blocks in the Nether, but the rate is painfully slow. zNxPiglinRush hooks into every natural spawn, fires multiple extra spawns in the surrounding area, and gives you a complete toolset to monitor, tune and maximise your farms.


✨ Features

  • Multi-block spawner framework — configure any block type as a spawner with its own mob, rates and loot. Magma block for gold, soul sand for Wither Skeletons, netherrack for Magma Cubes — all at once
  • Two spawn strategiesStandard: immediate extra spawns per trigger. Wave mode: accumulate credits and fire scaled burst waves with progressive scaling
  • Custom loot injection — per-spawner drop rules with configurable chance and amounts, injected directly into vanilla death drops
  • Spawn statistics — session, total (SQLite-persisted across restarts), hourly ring buffer and per-mob breakdown via /pr stats
  • Spawn heatmap/pr heatmap [radius] toggles a live particle overlay above tracked blocks, coloured blue → yellow → red by spawn density
  • TPS diagnostics — async TPS monitor with configurable alert threshold, in-game op warnings and a /pr diagnostics performance report
  • Config updater — automatically migrates old config files to the current schema on startup, preserving all your values and creating a timestamped backup
  • PlaceholderAPI — 8 placeholders for scoreboards and tab lists
  • Folia-native — two scheduler implementations (FoliaSchedulerService / BukkitSchedulerService) selected at runtime, zero issues on region-threaded servers
  • Async update checker — Modrinth API v2, clickable in-game notification for ops on join
  • Zero NMS — pure Bukkit/Spigot/Paper API, no reflection in hot paths
  • Live reload/pr reload applies all config and registry changes with no restart

🚀 Quick Start

  1. Drop the .jar into your plugins/ folder
  2. Restart the server
  3. Edit plugins/zNxPiglinRush/config.yml
  4. Run /pr reload — done

⚙️ Configuration

enabled: true
active-worlds: []   # leave empty = all worlds
debug: false

spawners:

  # Each block gets its own section — add as many as you like
  magma_block:
    mob: ZOMBIFIED_PIGLIN
    spawn-count: 3          # total mobs per trigger (vanilla = 1)
    spawn-cooldown: 20      # ticks between spawns on the same block
    max-nearby-entities: 12 # entity cap within scan-radius
    scan-radius: 10
    extra-attempts: 1       # random bonus attempts per trigger

    wave-mode: false        # true = burst waves instead of immediate spawns
    wave-size: 5
    wave-cooldown: 100      # ticks between wave fires

    custom-drops:
      - material: GOLD_NUGGET
        min: 1
        max: 3
        chance: 0.3
      - material: GOLDEN_SWORD
        min: 1
        max: 1
        chance: 0.05

  # soul_sand:
  #   mob: WITHER_SKELETON
  #   spawn-count: 2
  #   ...

diagnostics:
  tps-alert-threshold: 18.0
  alert-cooldown-seconds: 300

update-checker: true

Tuning guide

| Server type | spawn-count | spawn-cooldown | max-nearby-entities |
|---|---|---|---|
| Low-TPS / small | 2 | 40 | 8 |
| Standard | 3 | 20 | 12 |
| Dedicated farm server | 5 | 10 | 20 |

📉 If TPS drops, lower spawn-count or raise spawn-cooldown first.


💬 Commands & Permissions

| Command | Alias | Description |
|---|---|---|
| /piglinrush reload | /pr reload | Reload config & spawner registry |
| /piglinrush info | /pr info | Runtime, registered blocks, update status |
| /piglinrush stats | /pr stats | Session / total / hourly spawn stats |
| /piglinrush heatmap [r] | /pr heatmap | Toggle particle heatmap (player only) |
| /piglinrush diagnostics | /pr diag | TPS report and performance suggestions |
| /piglinrush toggle | /pr toggle | Toggle hint |

Permission node: piglinrush.admin (default: op)


📊 PlaceholderAPI

| Placeholder | Returns |
|---|---|
| %piglinrush_total% | Total spawns since server start |
| %piglinrush_session% | Spawns since last /pr reload |
| %piglinrush_last_hour% | Spawns in the last hour |
| %piglinrush_last_24h% | Spawns in the last 24 hours |
| %piglinrush_status% | ENABLED / DISABLED |
| %piglinrush_tps% | Current average TPS |
| %piglinrush_spawners% | Number of registered spawner blocks |
| %piglinrush_version% | Plugin version |


❓ FAQ

Does this affect overworld magma blocks?
No. The plugin fires only when vanilla already triggers a spawn — in the Nether on magma blocks. Overworld magma blocks don't trigger natural piglin spawns, so the plugin has no effect there.

Does it break vanilla spawn rules?
The initial vanilla spawn check (light level, mob caps) still runs normally. Extra spawns respect the max-nearby-entities cap configured per block. Global server mob caps in paper.yml / spigot.yml / bukkit.yml still apply.

What is wave mode?
When enabled on a block, each vanilla trigger adds a credit to that block's counter. Every wave-cooldown ticks the engine fires a burst: credits × spawn-count mobs (capped at wave-size), with a progressive bonus for consecutive waves. Good for dramatic bursts rather than a constant stream.

Compatible with other spawn plugins?
Generally yes — zNxPiglinRush only reacts to events that already passed vanilla's own checks, with no NMS or spawner modifications.

What happens when I update from an old version?
The built-in Config Updater detects your old config, creates a timestamped backup, migrates your values to the new schema and fills any new keys with sensible defaults. You don't need to touch anything manually.


📋 Requirements

  • Spigot, Paper or Folia 26.1.x
  • Java 21+
  • PlaceholderAPI (optional)

📄 License

This project is licensed under the Apache License 2.0 — see the LICENSE file for details.

Versions

Release
2.1.0
folia, paper, purpur · 26.1.2 · 10d ago
## 💾 v2.1.0 — Multi-Backend Storage & Paper-Native Library Loading > Major storage overhaul: choose between YAML, JSON, H2, MySQL and MariaDB directly…
5
Release
2.0.1
folia, paper, purpur · 26.1.2 · 11d ago
## 💾 v2.0.1 — Storage Backend Migration > Internal database overhaul replacing SQLite with H2 to reduce dependency weight and improve build…
2
Release
2.0.0
folia, paper, purpur · 26.1.2 · 11d ago
## 🔥 v2.0.0 — Architecture Overhaul > Complete rewrite of the plugin internals. Same behaviour on the surface, professional-grade code underneath.…
2
Release
1.1.1
folia, paper, purpur · 26.1.2 · 13d ago
## 🚀 v1.1.1 — Manifest Fix > Small maintenance release to correctly declare Folia compatibility in plugin metadata. --- ### 🌿 Folia…
3
Release
1.1.0
folia, paper, purpur · 26.1.2 · 13d ago
## 🚀 v1.1.0 — Folia & Paper Command System > Full Folia compatibility + Paper's new command system. Drop-in upgrade — no config changes…
3
Release
1.0.0
paper, purpur · 26.1.2 · 13d ago
3

Commentaires 0

Aucun commentaire pour l'instant. Sois le premier à donner ton avis.

Télécharger zNxPiglinRush

Les fichiers proviennent directement de la source d'origine. Modgrid ne les héberge ni ne les modifie.