Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Schedulizer
PluginMIT

Schedulizer

Developed a flexible scheduling plugin for Minecraft servers that allows admins to automate command execution at fixed times or intervals (e.g., daily resets, periodic messages). Includes live editing and in-game configuration.

43
Downloads
0
Followers
2 months ago
Updated
📦
2
Versions
managementutilitybukkitfoliapaperpurpurspigot
Download Latestv1.3View on Modrinth

📖About Schedulizer

Schedulizer

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

Features

  • ✅ Once: Execute once at a specified time
  • ✅ Daily: Execute daily at a specified time
  • ✅ Repeat: Execute repeatedly at intervals (minutes)
  • ✅ Cron: Support for flexible UNIX cron expressions
  • ✅ Easy configuration via YAML files
  • ✅ Custom timezone support
  • ✅ Complete command management

Requirements

  • Server: Paper/Spigot 1.21+
  • Java: 21+

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:

  • once: time can include a space (e.g. 18/03/2026 20:00), so it is provided as multiple arguments.
  • cron: provide 5 arguments: minute hour day month weekday (e.g. 0 0 * * *).

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

👥 Team & Contributors

k4han
k4hanOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
bukkitfoliapaperpurpurspigot
Minecraft Versions
1.21.1

🔗 Links

Modrinth Page