HomeJavaModsSchedulizer
Schedulizer
ModsJava

Schedulizer

by k4han · on Modrinth

Developed a flexible scheduling plugin for Minecraft servers that allows admins to automate command execution at fixed times or intervals (e.g., daily…

⬇ Download on Modrinth

Schedulizer

Schedulizer is a Minecraft Paper/Spigot plugin that allows you to schedule and automatically execute in-game commands with flexible scheduling options.

Features

Requirements

Installation

  1. Download the .jar file from Releases
  2. Place the file in your server's plugins folder
  3. Start the server to let the plugin create configuration files
  4. Edit plugins/Schedulizer/schedule.yml to add tasks
  5. Run /schedulizer reload to apply changes

Commands

Command Description Permission
/schedulizer help Show help information schedulizer.command.help
/schedulizer list List all tasks schedulizer.command.list
/schedulizer reload Reload configuration schedulizer.command.reload
/schedulizer add <name> <type> <time...> <command> Add a new task (overwrite if exists) schedulizer.command.add
/schedulizer remove <name> Remove a task schedulizer.command.remove
/schedulizer status <name> <true/false> Enable/disable task schedulizer.command.status
/schedulizer cmd <name> <command> Update task command schedulizer.command.cmd
/schedulizer info <name> View task details schedulizer.command.info
/schedulizer execute <name> Execute task immediately schedulizer.command.execute

Notes:

Aliases: /schedulizer, /sched

Configuration

config.yml

# Number of ticks between each check (20 ticks = 1 second)
# 300 ticks = 15 seconds (default)
tick: 300

# Timezone (see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
timezone: "Asia/Ho_Chi_Minh"

# Date time format
datetime-format: "dd/MM/yyyy HH:mm"

schedule.yml

schedules:
  # One-time task
  first_time_event:
    enabled: true
    type: "once"
    time: "08/02/2025 15:30" # dd/MM/yyyy HH:mm
    command:
    - "say One time event!"

  # Daily task
  daily_reset:
    enabled: true
    type: "daily"
    time: "12:00" # HH:mm
    command:
    - "say New daily!"

  # Repeating task
  repeating_event:
    enabled: true
    type: "repeat"
    interval: 5  # minute
    command:
    - "say Repeating!"

  # Cron task
  cron_event:
    enabled: true
    type: "cron"
    cron: "0 0 * * *"  # Every day at 00:00
    command:
    - "say Cron event!"

Time Formats

Type Format Example
once dd/MM/yyyy HH:mm 25/12/2025 20:00
daily HH:mm 14:30
repeat Minutes (integer) 5, 60, 1440
cron UNIX cron expression 0 0 * * *

Cron Expressions

Uses standard UNIX cron format: minute hour day month weekday

Examples:

Cron Description
0 0 * * * Every day at 00:00
*/15 * * * * Every 15 minutes
0 8 * * 1-5 8:00 AM Monday to Friday
0 0 1 * * 1st day of every month

👉 Cron generator tool: crontab.guru

Permissions

schedulizer.use              # Access to all commands
schedulizer.command.help     # Help command
schedulizer.command.list     # List tasks
schedulizer.command.reload   # Reload config
schedulizer.command.add      # Add tasks
schedulizer.command.remove   # Remove tasks
schedulizer.command.status   # Enable/disable
schedulizer.command.cmd      # Update command
schedulizer.command.info     # View info
schedulizer.command.execute  # Execute immediately

Build

git clone https://github.com/virusker/Schedulizer.git
cd Schedulizer
./gradlew build

The .jar file will be in build/libs/

License

This project is licensed under the MIT License

Contributing

Contributions are welcome! Feel free to open an issue or submit a pull request on GitHub.


☕ Support

If you find this plugin helpful and want to support its development, consider buying me a coffee!

Buy Me A Coffee

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more