{"id":136105,"date":"2026-06-08T03:56:19","date_gmt":"2026-06-08T00:56:19","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/"},"modified":"2026-06-08T03:56:19","modified_gmt":"2026-06-08T00:56:19","slug":"schedulizer","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/","title":{"rendered":"Schedulizer"},"content":{"rendered":"<p># Schedulizer<\/p>\n<p>**Schedulizer** is a Minecraft Paper\/Spigot plugin that allows you to schedule and automatically execute in-game commands with flexible scheduling options.<\/p>\n<p>## Features<\/p>\n<p>&#8211; \u2705 **Once**: Execute once at a specified time<br \/>\n&#8211; \u2705 **Daily**: Execute daily at a specified time<br \/>\n&#8211; \u2705 **Repeat**: Execute repeatedly at intervals (minutes)<br \/>\n&#8211; \u2705 **Cron**: Support for flexible UNIX cron expressions<br \/>\n&#8211; \u2705 Easy configuration via YAML files<br \/>\n&#8211; \u2705 Custom timezone support<br \/>\n&#8211; \u2705 Complete command management<\/p>\n<p>## Requirements<\/p>\n<p>&#8211; **Server**: Paper\/Spigot 1.21+<br \/>\n&#8211; **Java**: 21+<\/p>\n<p>## Installation<\/p>\n<p>1. Download the `.jar` file from Releases<br \/>\n2. Place the file in your server&#8217;s `plugins` folder<br \/>\n3. Start the server to let the plugin create configuration files<br \/>\n4. Edit `plugins\/Schedulizer\/schedule.yml` to add tasks<br \/>\n5. Run `\/schedulizer reload` to apply changes<\/p>\n<p>## Commands<\/p>\n<p>| Command | Description | Permission |<br \/>\n|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;|<br \/>\n| `\/schedulizer help` | Show help information | `schedulizer.command.help` |<br \/>\n| `\/schedulizer list` | List all tasks | `schedulizer.command.list` |<br \/>\n| `\/schedulizer reload` | Reload configuration | `schedulizer.command.reload` |<br \/>\n| `\/schedulizer add <name> <type> <time...> <command>` | Add a new task (overwrite if exists) | `schedulizer.command.add` |<br \/>\n| `\/schedulizer remove <name>` | Remove a task | `schedulizer.command.remove` |<br \/>\n| `\/schedulizer status <name> <true\/false>` | Enable\/disable task | `schedulizer.command.status` |<br \/>\n| `\/schedulizer cmd <name> <command>` | Update task command | `schedulizer.command.cmd` |<br \/>\n| `\/schedulizer info <name>` | View task details | `schedulizer.command.info` |<br \/>\n| `\/schedulizer execute <name>` | Execute task immediately | `schedulizer.command.execute` |<\/p>\n<p>Notes:<\/p>\n<p>&#8211; `once`: time can include a space (e.g. `18\/03\/2026 20:00`), so it is provided as multiple arguments.<br \/>\n&#8211; `cron`: provide 5 arguments: `minute hour day month weekday` (e.g. `0 0 * * *`).<\/p>\n<p>**Aliases**: `\/schedulizer`, `\/sched`<\/p>\n<p>## Configuration<\/p>\n<p>### config.yml<\/p>\n<p>&#8220;`yaml<br \/>\n# Number of ticks between each check (20 ticks = 1 second)<br \/>\n# 300 ticks = 15 seconds (default)<br \/>\ntick: 300<\/p>\n<p># Timezone (see https:\/\/en.wikipedia.org\/wiki\/List_of_tz_database_time_zones)<br \/>\ntimezone: &#8220;Asia\/Ho_Chi_Minh&#8221;<\/p>\n<p># Date time format<br \/>\ndatetime-format: &#8220;dd\/MM\/yyyy HH:mm&#8221;<br \/>\n&#8220;`<\/p>\n<p>### schedule.yml<\/p>\n<p>&#8220;`yaml<br \/>\nschedules:<br \/>\n  # One-time task<br \/>\n  first_time_event:<br \/>\n    enabled: true<br \/>\n    type: &#8220;once&#8221;<br \/>\n    time: &#8220;08\/02\/2025 15:30&#8221; # dd\/MM\/yyyy HH:mm<br \/>\n    command:<br \/>\n    &#8211; &#8220;say One time event!&#8221;<\/p>\n<p>  # Daily task<br \/>\n  daily_reset:<br \/>\n    enabled: true<br \/>\n    type: &#8220;daily&#8221;<br \/>\n    time: &#8220;12:00&#8221; # HH:mm<br \/>\n    command:<br \/>\n    &#8211; &#8220;say New daily!&#8221;<\/p>\n<p>  # Repeating task<br \/>\n  repeating_event:<br \/>\n    enabled: true<br \/>\n    type: &#8220;repeat&#8221;<br \/>\n    interval: 5  # minute<br \/>\n    command:<br \/>\n    &#8211; &#8220;say Repeating!&#8221;<\/p>\n<p>  # Cron task<br \/>\n  cron_event:<br \/>\n    enabled: true<br \/>\n    type: &#8220;cron&#8221;<br \/>\n    cron: &#8220;0 0 * * *&#8221;  # Every day at 00:00<br \/>\n    command:<br \/>\n    &#8211; &#8220;say Cron event!&#8221;<br \/>\n&#8220;`<\/p>\n<p>## Time Formats<\/p>\n<p>| Type | Format | Example |<br \/>\n|&#8212;&#8212;|&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;|<br \/>\n| `once` | `dd\/MM\/yyyy HH:mm` | `25\/12\/2025 20:00` |<br \/>\n| `daily` | `HH:mm` | `14:30` |<br \/>\n| `repeat` | Minutes (integer) | `5`, `60`, `1440` |<br \/>\n| `cron` | UNIX cron expression | `0 0 * * *` |<\/p>\n<p>## Cron Expressions<\/p>\n<p>Uses standard UNIX cron format: `minute hour day month weekday`<\/p>\n<p>Examples:<\/p>\n<p>| Cron | Description |<br \/>\n|&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `0 0 * * *` | Every day at 00:00 |<br \/>\n| `*\/15 * * * *` | Every 15 minutes |<br \/>\n| `0 8 * * 1-5` | 8:00 AM Monday to Friday |<br \/>\n| `0 0 1 * *` | 1st day of every month |<\/p>\n<p>\ud83d\udc49 Cron generator tool: crontab.guru<\/p>\n<p>## Permissions<\/p>\n<p>&#8220;`yaml<br \/>\nschedulizer.use              # Access to all commands<br \/>\nschedulizer.command.help     # Help command<br \/>\nschedulizer.command.list     # List tasks<br \/>\nschedulizer.command.reload   # Reload config<br \/>\nschedulizer.command.add      # Add tasks<br \/>\nschedulizer.command.remove   # Remove tasks<br \/>\nschedulizer.command.status   # Enable\/disable<br \/>\nschedulizer.command.cmd      # Update command<br \/>\nschedulizer.command.info     # View info<br \/>\nschedulizer.command.execute  # Execute immediately<br \/>\n&#8220;`<\/p>\n<p>## Build<\/p>\n<p>&#8220;`bash<br \/>\ngit clone https:\/\/github.com\/virusker\/Schedulizer.git<br \/>\ncd Schedulizer<br \/>\n.\/gradlew build<br \/>\n&#8220;`<\/p>\n<p>The `.jar` file will be in `build\/libs\/`<\/p>\n<p>## License<\/p>\n<p>This project is licensed under the [MIT License](LICENSE)<\/p>\n<p>## Contributing<\/p>\n<p>Contributions are welcome! Feel free to open an issue or submit a pull request on GitHub.<\/p>\n<p>&#8212;<\/p>\n<p>## \u2615 Support<\/p>\n<p>If you find this plugin helpful and want to support its development, consider buying me a coffee!<\/p>\n<p>![Buy Me A Coffee](https:\/\/buymeacoffee.com\/kh4n)<\/p>\n","protected":false},"excerpt":{"rendered":"<p>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.<\/p>\n","protected":false},"featured_media":136106,"template":"","meta":{"_minecraft_slug":"schedulizer","_minecraft_project_id":"OKypxXAm","_minecraft_author":"k4han","_minecraft_license":"MIT","_minecraft_downloads":4,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"schedulizer.zip","_minecraft_size_bytes":548285,"_minecraft_version_count":2,"_minecraft_updated_at":"2026-05-16T12:14:08.113401Z","_minecraft_date_created":"2026-05-12T00:17:50.354288Z","_minecraft_date_modified":"2026-05-14T07:20:37.826843Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/schedulizer","_minecraft_icon_attachment_id":136106,"_minecraft_imported_at":"2026-06-08T00:56:20+00:00","_minecraft_import_hash":"9a0f805709c1712ac31619c5bb91067b","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,125,126,127,128,129,92],"mod_loader":[130,131,132,133,134],"minecraft_version":[62,37,40,41,73,74,38,78,79,80,81,82],"class_list":["post-136105","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-folia","mod_category-management","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_category-utility","mod_loader-bukkit","mod_loader-folia","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Schedulizer - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Schedulizer - Minecraft\" \/>\n<meta property=\"og:description\" content=\"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.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/schedulizer\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/schedulizer\\\/\",\"name\":\"Schedulizer - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/schedulizer\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/schedulizer\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/schedulizer-icon-6e52e97daf4b056ee156310522ea3083a75c3cfe_96.webp\",\"datePublished\":\"2026-06-08T00:56:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/schedulizer\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/schedulizer\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/schedulizer\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/schedulizer-icon-6e52e97daf4b056ee156310522ea3083a75c3cfe_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/schedulizer-icon-6e52e97daf4b056ee156310522ea3083a75c3cfe_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/schedulizer\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Schedulizer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Schedulizer - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/","og_locale":"en_US","og_type":"article","og_title":"Schedulizer - Minecraft","og_description":"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.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/","name":"Schedulizer - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/schedulizer-icon-6e52e97daf4b056ee156310522ea3083a75c3cfe_96.webp","datePublished":"2026-06-08T00:56:19+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/schedulizer-icon-6e52e97daf4b056ee156310522ea3083a75c3cfe_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/schedulizer-icon-6e52e97daf4b056ee156310522ea3083a75c3cfe_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/schedulizer\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Schedulizer"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/136105","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/136106"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=136105"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=136105"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=136105"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=136105"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}