| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Cross-server chat, private messages, AFK tracking and Discord account linking for the Left4Craft network. Runs on every backend Paper server and talks to the rest of the network over Redis, so a message typed on survival appears on hub and in Discord.
The console relay replaces the old standalone Left4Craft plugin — remove that plugin when installing Left4Chat, or every relayed command runs twice.
| Server | Paper 26.2 |
| Java | 25 |
| Required | LuckPerms, Redis, PostgreSQL |
| Optional | Nicky (nicknames) |
| Replaces | Left4Craft (remove it) |
config.yml is generated on first start. It covers the Redis and PostgreSQL connections, the Redis channel/key names, announcement formats, the Discord invite, the /game menu contents and the permission node names.
The Redis keys under redis.keys are shared with the Velocity proxy plugin and the Discord bot. All three have to agree, so do not change one in isolation.
Left4Chat owns one table, discord_users, and creates it if missing:
CREATE TABLE discord_users (
uuid UUID PRIMARY KEY,
nick VARCHAR(64),
discordID BIGINT UNIQUE
)Needs JDK 25 — Paper 26.2's API class files are major version 69, so an older compiler cannot read them.
gradle build
# -> build/libs/left4chat-2.0.0.jarlibs/Nicky-2.0.0.jar is the sibling left4craft/Nicky build, used at compile time only. Refresh it after changing Nicky:
gradle -p ../Nicky build && cp ../Nicky/build/libs/Nicky-*.jar libs/| Back | FazBrowse Home | New Git URL |