config.yml file. You can customize how the timer looks, the refresh time, text format, and the messages sent by VCT.
Configuration Options
Below are the settings and descriptions in theconfig.yml file for Voiid Countdown Timer.
update_notification: false
Usually, every time VCT is launched, it will automatically check for available updates. This setting defines whether the plugin should send a message to the console and players with the voiidcountdowntimer.admin permission notifying them of a new version.
ticks_hide_after_ending: 60
This setting defines how many ticks to wait before hiding the timer completely when the timer ends.
text_format: LEGACY
This setting defines which text formatting system to use for name tags. The LEGACY format is the text that Minecraft Vanilla understands to use colors, bold, italics, and everything else. Other supported formats include:
MINIMESSAGE: A rich text format with allows you to use rich text formatting features, like colors, gradients, styles, hover events, and click events.UNIVERSAL: Attempts to support all formatting options but is the most resource-intensive.
- LEGACY
- MINIMESSAGE
- UNIVERSAL
The 
LEGACY format supports the color format with &.
refresh_ticks: 10
This setting determines how many ticks the timer text should refresh. This setting is designed for gradient animations, to make them appear smoother or slower, for example:

save_state_timers: true
This setting defines whether the plugin should save the timer status when the server is shut down and load it when the server is started up.
It is advisable to leave it set to true, because if your server crashes, the plugin will save the status so that you don’t lose the time that was set.
Configuration of Messages
Messages are configured inLEGACY format (regardless of the text format chosen), each section has a small identifier indicating where it comes from.
Configuration of Timers
The configuration of the timers is simple and flexible. Here is an example:All of these configurations can be changed in-game using the
/vct modify command and the following modifiers: text, sound, sound_volume, sound_pitch, bossbar_color, bossbar_style, sound_enabledTimers:
Defines the root section where timers are registered.
This key is required when you create timers in a file other than config.yml (inside the timers folder).
green_timer:
The name identifier of the timer.
Example: timer_for_pvp_on.
text: "&aI'm a green timer of (%HH%:%MM%:%SS%) :D"
The text displayed on the boss bar. Supports variables:
sound: UI_BUTTON_CLICK
The sound played every second while the timer counts down.
- List of available sounds: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Sound.html
- You can also use resource pack sounds:
The setting
sound_enabled must be set to true for the sound to play.sound_volume: 0.5
Volume of the sound. Range: 0.1 to 2.0.
sound_pitch: 2.0
Pitch of the sound. Range: 0.1 (very low) to 2.0 (very high).


