Language

qwq-flytre-bingo-booster

qwq-flytre-bingo-booster

Modrinth

🎯👥🎨📊⚡ Flytre Bingo booster server side plugin: team name dyeing + scoreboard sidebar

13 downloads 1 followers updated 11d ago
latest vv0.3.3-beta.12 Modrinth
Paper Spigot 1.21.5 – 1.21.5 MinigameSocialUtility

qwq-flytre-bingo-booster

📖 English
📖 中文

🎯👥🎨📊⚡ qwq-flytre-bingo-booster

🧩 A Spigot helper plugin for Flytre Bingo: team dyeing + sidebar display

Modrinth
CurseForge

GitHub
Gitee

Paper
Spigot

Kotlin
Gradle

QQ Group

💬 Plugin usage / 🐛 Bug reports / 👨‍💻 Development discussion — Join our QQ Group: 259248174 🎉 (This group is gone)

💬 Plugin usage / 🐛 Bug reports / 👨‍💻 Development discussion — Join our QQ Group: 1085190201 🎉

💡 Mention me in the group for faster replies ~ ✨


🌟 Features

💾 All three commands support persistence to the config file.

| Feature | Command | Description |
|------|------|------|
| 🎨 Team Dyeing | /qwq_bingo_team_color_dye <true/false> | Reads the native Team or scoreboard objective based on team_detection config, applies team color and prefix (🔴Red/🟡Yellow/🟢Green/🔵Blue) to player names |
| 📊 Sidebar | /qwq_bingo_sidebar <true/false> | Displays team member list on the right side of the screen, auto-refreshes by configurable tick interval |
| 💊 Persistent Effects | /qwq_bingo_effect <true/false> <effect> <amplifier> <true/false> | Continuously reapplies potion effects to all online players |

💡 This plugin is designed specifically for Flytre Bingo. Download the Flytre Bingo map here.
It reads Minecraft native Teams or the main scoreboard objective to determine teams, integrating with the map's native datapack.

🖼️ Preview

Preview: sidebar and chat color in Minecraft client

🗺️ Version Support

As of June 3, 2026, this plugin supports:

| | |
|---|---|
| 🎯 Supported Map | Flytre Bingo |
| 🌎 Map Versions | 1.16.x · 1.17.x · 1.18.x · 1.19.x · 1.20.2-4 · 1.21.5 · 1.21.10 |
| 📦 Plugin Version | Paper Spigot |


🛠 Tech Stack

| | |
|---|---|
| 🧱 Server | Spigot API |
| 📝 Language | Kotlin |
| 🏗 Build | Gradle |


📦 Download & Installation

Download from GitHub Release

Place the .jar file in your server's plugins/ directory and restart.

Default configuration:

# 🎯 qwq-flytre-bingo-booster 配置

# 📢 日志级别 (Log Level): debug, info, warn, error, silent
# 🐛 debug  - 输出所有日志(调试用 🔧)
# ℹ️  info   - 输出 info 及以上(默认 ✅)
# ⚠️  warn   - 只输出警告和错误 🟡
# ❌ error  - 只输出错误 🔴
# 🔇 silent - 关闭所有日志 🤫
log_level: info

# 🧾 命令名配置
# `team_color_dye` - 开关队伍染色,为玩家名添加对应队伍颜色与前缀
# `bingo_sidebar`  - 开关右侧队伍成员侧边栏显示
# `bingo_effect`   - 设置或关闭常驻药水效果
commands:
  team_color_dye: qwq_bingo_team_color_dye
  bingo_sidebar: qwq_bingo_sidebar
  bingo_effect: qwq_bingo_effect

# 🚀 功能默认启用配置
features:
  team_color_dye:
    enabled_on_load: true
    refresh_interval_ticks: 10
  bingo_sidebar:
    enabled_on_load: true
    refresh_interval_ticks: 10
  bingo_effect:
    enabled_on_load: true
    refresh_interval_ticks: 10
    apply_duration_ticks: 114514

# 💊 Bingo 常驻药水效果列表
# 每个对象表示一条受插件管理的常驻药水效果配置
# `enabled`         - 是否启用该效果
# `type`            - 药水效果 ID,例如 minecraft:night_vision
# `amplifier`       - Bukkit 内部等级值,0=1级,1=2级,2=3级,以此类推
# `hide_particles`  - 是否隐藏粒子效果
bingo_effects:
  # 默认效果:急迫 4,隐藏粒子,默认启用
  - enabled: true
    type: minecraft:haste
    amplifier: 3
    hide_particles: true
  # 默认效果:迅捷 3,隐藏粒子,默认启用
  - enabled: true
    type: minecraft:speed
    amplifier: 2
    hide_particles: true
  # 默认效果:夜视 2,隐藏粒子,默认启用
  - enabled: true
    type: minecraft:night_vision
    amplifier: 1
    hide_particles: true

# 👥 队伍检测配置
team_detection:
  # 🔍 检测方式: team 或 scoreboard
  # team       - 优先读玩家当前 scoreboard 上的原生 team,读不到时回退主 scoreboard(推荐 ✅)
  # scoreboard - 读主计分板某个 objective 的分数值
  method: team
  # 📊 如果用 scoreboard 方式,指定主计分板 objective 名
  scoreboard_name: teamScore

commands — custom command names:

  • team_color_dye: command name for team dye toggle
  • bingo_sidebar: command name for bingo sidebar toggle
  • bingo_effect: command name for persistent potion effect toggle/update

features.*.enabled_on_load controls whether features auto-enable on load, and refresh_interval_ticks controls each scheduled task interval:

  • true: auto-enable on server start
  • false: keep disabled until command is run

team_detection.method supports two modes:

  • team: read the player's native Team from their current scoreboard first, fall back to the main scoreboard
  • scoreboard: read the score value from the specified objective on the main scoreboard, defaults to teamScore

🔧 Build

Local Build

./gradlew build

Output is in build/libs/ (*-all.jar is the fat jar).

GitHub Actions CI

CI Status

Pushing to main or for-* branches will trigger CI if the commit message contains specific keywords:

| Keyword | Action |
|--------|------|
| build action | 🏗 Build and upload artifact |
| build release | 🏗 Build + 🚀 Create GitHub Release |

Example:

git commit -m "aaa: some commit messages...; build action"
git commit -m "bbb: yet other commit messages...; build release"

PRs to main or for-* branches also trigger builds (but not releases).


Versions

Beta
v0.3.3-beta.12
paper, spigot · 1.21.5 · 11d ago
<div align=center> [![Downloads](https://img.shields.io/github/downloads/VincentZyuApps/qwq-flytre-bingo-booster/v0.3.3-beta.12/total?style=flat-square&logo=gi…
3
Beta
v0.3.3-beta.11
paper, spigot · 1.21.5 · 11d ago
<div align=center> [![Downloads](https://img.shields.io/github/downloads/VincentZyuApps/qwq-flytre-bingo-booster/v0.3.3-beta.11/total?style=flat-square&logo=gi…
2
Beta
v0.3.3-beta.10
paper, spigot · 1.21.5 · 11d ago
<div align=center> [![Downloads](https://img.shields.io/github/downloads/VincentZyuApps/qwq-flytre-bingo-booster/v0.3.3-beta.10/total?style=flat-square&logo=gi…
1
Beta
v0.3.3-beta.9
paper, spigot · 1.21.5 · 11d ago
<div align=center> [![Downloads](https://img.shields.io/github/downloads/VincentZyuApps/qwq-flytre-bingo-booster/v0.3.3-beta.9/total?style=flat-square&logo=git…
1
Beta
v0.3.3-beta.8
paper, spigot · 1.21.5 · 11d ago
<div align=center> [![Downloads](https://img.shields.io/github/downloads/VincentZyuApps/qwq-flytre-bingo-booster/v0.3.3-beta.8/total?style=flat-square&logo=git…
2
Beta
v0.3.3-beta.6
paper, spigot · 1.21.5 · 11d ago
1
Beta
v0.3.3-beta.5
paper, spigot · 1.21.5 · 11d ago
1
Beta
v0.3.3-beta.4
paper, spigot · 1.21.5 · 11d ago
1
Beta
0.3.3-beta.1
paper, spigot · 1.21.5 · 11d ago
## this is the first version upload mannualy. more info are here: https://github.com/VincentZyuApps/qwq-flytre-bingo-booster
1

Comments 0

No comments yet. Be the first to share your thoughts.