Back to Plugins
EzSeasons icon

EzSeasons

Active tab
Overview
Latest version
Not specified
Minecraft support
0 versions
Topics synced
0
Claim this plugin

This plugin was imported from Spiget and is currently unclaimed.

Live badges: Downloads badge for EzSeasons Spigot Downloads badge for EzSeasons Modrinth Downloads badge for EzSeasons GitHub Stars badge for EzSeasons How to embed →

Plugin Information

Type: Minecraft plugin
Spigot Resource: Open on SpigotMC
Created by: Spiget Importer

Description

EzSeasons

EzSeasons is a standalone season reset scheduler for Minecraft servers. It runs timed season resets, sends reminder broadcasts, and provides /season so players can check the time until the next reset.

This README is written for server owners first. API details are included near the end for plugin developers.

EzSeasons >= 2.0.0 is build for Minecraft 26.1 & Java 25 EzSeasons < 2.0.0 is build for Minecraft 1.8-26.1 & Java 17

Download

Quick setup (server owners)

  1. Stop your server.
  2. Put EzSeasons-<version>.jar in your plugins/ folder.
  3. (Optional) Install EzLifesteal if you want Lifesteal-specific behavior.
  4. Start the server once to generate config files.
  5. Edit plugins/EzSeasons/config.yml.
  6. Restart the server.

What EzSeasons does

  • Schedules automatic season resets
  • Supports either explicit start/end windows or duration-based scheduling (length-days)
  • Supports one-time or recurring explicit windows (recurring)
  • Broadcasts a reset message when a reset occurs
  • Sends reminder messages before reset (reminder-minutes)
  • Provides /season (and /season admin ...) for status and runtime admin controls

Commands & permissions

  • /season
    • Permissions accepted: lifesteal.season, lifesteal.season.admin, or lifesteal.admin
  • /season admin <reload|reset [reason]|setnext <unixMillis>|clear-next|status>
    • Permission required: lifesteal.season.admin or lifesteal.admin

Main config options

File: plugins/EzSeasons/config.yml

messages:
  language: "en"
  prefix: "&c[EzSeasons]&r "

season:
  enabled: false
  start: 0
  end: 0
  recurring: false
  length-days: 30
  check-interval-minutes: 60
  broadcast-message: "&7A new season has begun! Hearts have been reset."
  reminder-minutes: []
  reminder-message: "&7The season will reset in &c%time%&7."
  last-reset: 0
  next-reset: 0

Notes

  • Set season.enabled: true to activate scheduling.
  • season.start and season.end are Unix epoch milliseconds.
  • season.recurring applies to valid explicit start/end windows.
  • reminder-minutes defines countdown offsets in minutes.
  • Language files are in plugins/EzSeasons/messages/.
  • messages.language supports: en, es, fr, zh, ru, nl.

Documentation

Troubleshooting

  • Plugin loads but nothing happens: ensure season.enabled is true.
  • No reminders: ensure season.reminder-minutes is not empty.
  • Command says no permission: grant lifesteal.season for status, and lifesteal.season.admin (or legacy lifesteal.admin) for admin subcommands.
  • Integration not active: verify the companion plugin registers against the SeasonsApi Bukkit service.

For developers (optional)

EzSeasons exposes a Bukkit service API (SeasonsApi) for integrations. The API artifact is pure Java — it has no Bukkit/Paper dependency, so it stays compatible regardless of server version.

Integrated plugins receive lifecycle callbacks (onRegister, onUnregister, onSeasonReset) via the SeasonsIntegration interface, and can also listen to Bukkit events (SeasonResetEvent, etc.) which are included in the plugin JAR.

Dependency options

You can consume the API artifact in two ways:

  1. GitHub Packages (official)
  2. JitPack (fallback)

GitHub Packages

<repositories>
  <repository>
    <id>github-ezseasons</id>
    <url>https://maven.pkg.github.com/ez-plugins/EzSeasons</url>
  </repository>
</repositories>

<dependencies>
  <dependency>
    <groupId>com.skyblockexp.lifesteal</groupId>
    <artifactId>ezseasons-api</artifactId>
    <version>2.1.2</version>
    <scope>provided</scope>
  </dependency>
</dependencies>

JitPack

<repositories>
  <repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </repository>
</repositories>

<dependencies>
  <dependency>
    <groupId>com.github.ez-plugins.EzSeasons</groupId>
    <artifactId>ezseasons-api</artifactId>
    <version>v2.1.2</version>
    <scope>provided</scope>
  </dependency>
</dependencies>

Obtain API via Bukkit Services

RegisteredServiceProvider<SeasonsApi> registration =
    Bukkit.getServicesManager().getRegistration(SeasonsApi.class);

if (registration != null) {
    SeasonsApi api = registration.getProvider();
    api.registerIntegration(new MyIntegration());
}

Minecraft Plugin Badges

Use these badge images in docs, README files, or forum posts.

Badge Guide
Downloads
Downloads badge for EzSeasons
![Downloads](https://ezbanners.org/shields/plugins/2b813f4f-a723-4d42-8412-83603321ce9a/downloads.png)
Spigot Downloads
Spigot Downloads badge for EzSeasons
![Spigot Downloads](https://ezbanners.org/shields/plugins/2b813f4f-a723-4d42-8412-83603321ce9a/spigot-downloads.png)
Modrinth Downloads
Modrinth Downloads badge for EzSeasons
![Modrinth Downloads](https://ezbanners.org/shields/plugins/2b813f4f-a723-4d42-8412-83603321ce9a/modrinth-downloads.png)
GitHub Stars
GitHub Stars badge for EzSeasons
![GitHub Stars](https://ezbanners.org/shields/plugins/2b813f4f-a723-4d42-8412-83603321ce9a/github-stars.png)
License
License badge for EzSeasons
![License](https://ezbanners.org/shields/plugins/2b813f4f-a723-4d42-8412-83603321ce9a/license.png)