HomeJavaModsNimbusNetwork
NimbusNetwork
ModsJava

NimbusNetwork

by NimbusStudio · on Modrinth

Velocity-powered network status and PlaceholderAPI bridge for Minecraft networks using Velocity and Paper. Free Minecraft Java mod for 1.21, 1.21.1…

Which build do you need?

This mod ships a separate file for every mod loader and every version of the game. Pick both, then download — the wrong build installs fine and then does nothing in the game.

Mod loader

Minecraft version

⬇ Download for 1.21.3–26.2 · Paper⬇ Download for 1.21.3–26.2 · Purpur⬇ Download for 1.21.2–26.2 · Velocity
I don't know my version or loader
Open the Minecraft launcher and look at the profile you play on — it names both, like fabric-loader-1.21.4. The version also shows in the bottom-right corner of the game's main menu.
No loader in the profile name? Then it's plain Minecraft, and these mods won't run — you need Fabric or NeoForge installed first.
NimbusNetwork — screenshot 1NimbusNetwork — screenshot 2NimbusNetwork — screenshot 3

NimbusNetwork

NimbusNetwork shows live network status, player counts, max players, fallback targets, and cache health for Velocity + Paper networks.

Requirements

Installation

Velocity

  1. Put NimbusNetworkCore-1.7.3.jar in the plugins folder of every Velocity proxy.
  2. Restart Velocity once.
  3. Edit plugins/nimbusnetworkcore/config.yml.
  4. Add every backend server you want tracked under servers.

Example:

proxy-id: "proxy-1"

sync:
  mode: "LOCAL"

servers:
  lobby:
    display-name: "Lobby"
    whitelisted: false
    use-paper-whitelist-report: true
    max-players-override: -1

  earth:
    display-name: "smp"
    whitelisted: false
    use-paper-whitelist-report: true
    max-players-override: -1

Use a unique proxy-id on each Velocity proxy.

Paper

  1. Put NimbusNetwork-1.7.3.jar in the plugins folder of each Paper server that needs placeholders.
  2. Make sure PlaceholderAPI is installed.
  3. Restart Paper once.
  4. Edit plugins/NimbusNetwork/config.yml.
  5. Set backend-server-name to the exact server name used in Velocity.

Example:

backend-server-name: "lobby"

backend-reporting:
  enabled: true
  report-whitelist: true
  report-max-players: true

Backend reporting lets Velocity know when the Paper server is whitelisted and what max player count Bukkit is using. This is useful because a normal Velocity ping does not reliably expose Paper whitelist state.

Paper backends must only accept connections through trusted Velocity proxies. Velocity consumes the NimbusNetwork channel before client messages can be forwarded, but direct client access to a backend bypasses that protection.

Sync Modes

Local

LOCAL is the default mode and needs no database.

sync:
  mode: "LOCAL"

Use this for a single-proxy network, or when each proxy can ping the same backend servers directly.

MySQL

MYSQL shares snapshots between multiple Velocity proxies.

sync:
  mode: "MYSQL"

mysql:
  host: "127.0.0.1"
  port: 3306
  database: "nimbus"
  username: "user"
  password: "password"
  table-prefix: "nimbus_"
  ssl-mode: "VERIFY_IDENTITY"
  allow-public-key-retrieval: false
  connect-timeout-millis: 5000
  socket-timeout-millis: 5000
  maximum-pool-size: 2

The plugin creates and updates its snapshot table automatically. Database work runs on a dedicated worker and uses a bounded HikariCP connection pool. MySQL sync retries automatically after connection failures. VERIFY_IDENTITY is the secure default and requires a certificate valid for the configured database hostname. Use DISABLED explicitly only for a trusted local connection without TLS.

Placeholders

Network placeholders:

%nimbus_total%
%nimbus_max%
%nimbus_network_max%
%nimbus_server_count%
%nimbus_proxy_count%
%nimbus_cache_age%
%nimbus_cache_stale%

Server placeholders:

%nimbus_players_lobby%
%nimbus_status_lobby%
%nimbus_max_lobby%

Fallback placeholders:

%nimbus_fallback_main%
%nimbus_fallback_status_main%

Replace lobby and main with your configured server or fallback group names.

Example scoreboard or hologram lines:

Status: %nimbus_status_lobby%
Players: %nimbus_players_lobby%/%nimbus_max_lobby%
Network: %nimbus_total%/%nimbus_max%

Commands

Permission:

nimbusnetwork.admin

Velocity commands:

/nimbusnetwork debug
/nimbusnetwork debug sync
/nimbusnetwork debug proxies
/nimbusnetwork debug server <server>
/nimbusnetwork debug fallback <group>
/nimbusnetwork refresh

Velocity alias:

/nnc

Paper commands:

/nimbusnetwork
/nimbusnetwork <server>
/nimbusnetwork debug <server>
/nimbusnetwork refresh

Paper alias:

/nph

Examples:

/nph lobby
/nph debug earth

Both commands show status, player count, max players, reachability, whitelist state, and last update age for the selected server.

Statuses

Statuses are resolved in this order:

OFFLINE      server did not respond to Velocity ping
WHITELISTED  Paper backend report or Velocity config says whitelist is on
FULL         players are at or above max players
ONLINE       server is reachable and available

If a Paper server has no players online, plugin messages from that backend cannot be sent until a player joins. The Velocity config value whitelisted is used as the fallback when no fresh Paper whitelist report is available.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more