HomeJavaModsProximity Chat Bubble
Proximity Chat Bubble
ModsJava

Proximity Chat Bubble

Proximity text chat as speech bubbles above the player

⬇ Download on Modrinth
Proximity Chat Bubble — screenshot 1

Proximity Chat Bubble

Proximity text chat plugin for Folia and (probably) Paper servers chat messages appear as floating speech bubbles above the player's head, readable only by players nearby.

hello

Description

While the plugin is ON, regular chat no longer visible to server chat. Instead each message becomes a text bubble mounted above the speaker, visible to anyone within a configurable radius (default 24 blocks, same world only).

Features

Install

  1. Drop the jar into your server's plugins/ folder.
  2. Restart. The plugin starts OFF on first boot — enable it with /proxchat on. The mode persists across restarts.

Requires Folia or Paper 26.1.2 or newer (Java 25 runtime).

Commands

/proxchat <status|on|off|suppress|clear|reload> — permission proxchat.admin (default: op).

Subcommand Effect
status Current mode, live bubble counts, and a config summary
on / off / suppress Switch mode (leaving ON clears every live bubble)
clear Remove all live bubbles without changing the mode
reload Re-read config.yml in place; lists any clamped values

Configuration

Radius, bubble lifetime, stack depth, height, sneak-hide, max message length, rate-limit interval and more — every key is documented in the generated config.yml, applies live on /proxchat reload, and missing keys fall back to defaults so upgrades never require regenerating the file.

API for other plugins

ProxChat registers a ProxChatService with Bukkit's ServicesManager. Declare softdepend: [ProxChat] and look it up lazily:

ProxChatService prox = getServer().getServicesManager().load(ProxChatService.class);
if (prox != null) {
    prox.setMode(Mode.SUPPRESSED); // or enable() / suppress() / disable()
    prox.clearAll();               // remove every live bubble, mode untouched
}

Every method is callable from any thread; mode flips are atomic.

Known quirks (0.3.0)

Verified by MCModsHub

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

Explore more