New Features
You can now define commands in voteparty.yml that run once from console when a vote party triggers — perfect for global broadcasts, server-wide effects, or anything that shouldn't repeat per-player.
Vote Party — One-Time Console Commands
YAML:rewards: commands: - "give %player% diamond 3" console-commands: - "say The vote party has been triggered!" - "broadcast &aEnjoy your rewards!"commands still runs per-player. console-commands runs once globally.
Every configurable message across all configs can now be silenced by setting it to "" or []. This works for:
Disable Any Message
Example — disable the streak-continued message:
- All messages in messages.yml
- Reward messages in rewards.yml
- Streak reward messages in streaks.yml
- Vote party reward messages & bossbar in voteparty.yml
Example — disable the vote party bossbar:YAML:streak-continued: ""
YAML:celebration: bossbar-title: ""
A new option in config.yml lets you disable the inventory GUI when players use /vote. When disabled, players get the text-based clickable link list instead.
GUI Toggle
YAML:gui: enabled: true # Set to false for text-only /vote
A new option in streaks.yml lets you completely disable the streak system. Streak tracking, rewards, and all related messages will be skipped.
Streaks Toggle
YAML:enabled: true # Set to false to disable streaks entirely
All messages now support traditional & color codes alongside MiniMessage formatting. Mix and match however you like:
Legacy Color Code Support
Supported codes: &0-&f (colors), &k-&o (formatting), &r (reset), and &x&R&R&G&G&B&B (hex colors).YAML:# MiniMessage vote-broadcast: "<gradient:#c084fc:#22d3ee>%player% voted!</gradient>" # Legacy codes vote-broadcast: "&a%player% voted!" # Both together vote-broadcast: "&l<gradient:#c084fc:#22d3ee>%player%</gradient> &7voted!"
The bossbar shown during vote party celebrations is now fully configurable in voteparty.yml:
Configurable Vote Party Bossbar
Set bossbar-title to "" to disable the bossbar while keeping other celebration effects.YAML:celebration: enabled: true bossbar-title: "<bold><gradient:#f472b6:#c084fc:#22d3ee>★ VOTE PARTY — %goal% Votes! ★</gradient></bold>"
Config Changes
If updating from a previous version, add these new entries to your existing configs. They won't be auto-added to existing files.
File New Entry Default config.yml gui.enabled true streaks.yml enabled true voteparty.yml rewards.console-commands [] voteparty.yml celebration.bossbar-title (see default config)
