{"id":51388,"date":"2026-06-02T22:25:13","date_gmt":"2026-06-02T19:25:13","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/cron-scheduler\/"},"modified":"2026-06-02T22:25:13","modified_gmt":"2026-06-02T19:25:13","slug":"cron-scheduler","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/cron-scheduler\/","title":{"rendered":"Cron Scheduler"},"content":{"rendered":"<p># Scheduler<\/p>\n<p>A **minecraft plugin** that runs console commands on cron schedules.<\/p>\n<p>## Configuration<\/p>\n<p>&#8220;`yaml<br \/>\nschedules:<\/p>\n<p>  my-schedule:<br \/>\n    cron: &#8220;*\/10 * * * *&#8221;   # every 10 minutes<br \/>\n    parallel: false         # run commands one after another<br \/>\n    commands:<br \/>\n      &#8211; &#8220;save-all flush&#8221;<br \/>\n      &#8211; &#8220;broadcast Server saved!&#8221;<\/p>\n<p>  another-schedule:<br \/>\n    enabled: false          # set to true to activate<br \/>\n    cron: &#8220;0 2 * * *&#8221;      # every day at 02:00<br \/>\n    parallel: true          # run all commands at the same time<br \/>\n    commands:<br \/>\n      &#8211; &#8220;broadcast Nightly task running&#8221;<br \/>\n      &#8211; &#8220;say Hello from cron&#8221;<br \/>\n&#8220;`<\/p>\n<p>### Schedule fields<\/p>\n<p>| Field      | Required | Description                                                                |<br \/>\n|&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `cron`     | \u2705        | Standard 5-field cron expression                                           |<br \/>\n| `commands` | \u2705        | List of console commands to run (no leading `\/`)                           |<br \/>\n| `parallel` | \u274c        | `true` = all commands fire at once, `false` (default) = sequential         |<br \/>\n| `enabled`  | \u274c        | Set to `false` to disable a schedule without deleting it (default: `true`) |<\/p>\n<p>### Cron syntax<\/p>\n<p>Five space-separated fields: `minute  hour  day-of-month  month  day-of-week`<\/p>\n<p>| Field        | Range            | Special characters |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br \/>\n| Minute       | 0\u201359             | `*` `,` `-` `\/`    |<br \/>\n| Hour         | 0\u201323             | `*` `,` `-` `\/`    |<br \/>\n| Day of month | 1\u201331             | `*` `,` `-` `\/`    |<br \/>\n| Month        | 1\u201312             | `*` `,` `-` `\/`    |<br \/>\n| Day of week  | 0\u20136 (0 = Sunday) | `*` `,` `-` `\/`    |<\/p>\n<p>**Examples**<\/p>\n<p>| Expression       | Meaning                                |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `* * * * *`      | Every minute                           |<br \/>\n| `*\/5 * * * *`    | Every 5 minutes                        |<br \/>\n| `0 * * * *`      | Every hour (at :00)                    |<br \/>\n| `0 2 * * *`      | Every day at 02:00                     |<br \/>\n| `0 0 * * 0`      | Every Sunday at midnight               |<br \/>\n| `0 9-17 * * 1-5` | Every hour 09:00\u201317:00, Monday\u2013Friday  |<br \/>\n| `0 12 1,15 * *`  | Noon on the 1st and 15th of each month |<\/p>\n<p>### Parallel vs sequential<\/p>\n<p>&#8211; **`parallel: true`** \u2014 all commands are dispatched in the same server tick.<br \/>\n&#8211; **`parallel: false`** \u2014 commands are dispatched one per tick in order, so each command&#8217;s synchronous side-effects<br \/>\n  complete before the next one starts.<\/p>\n<p>## Commands<\/p>\n<p>All commands require the `cronscheduler.admin` permission (default: op).<\/p>\n<p>| Command                     | Alias            | Description                            |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `\/cronscheduler reload`     | `\/cs reload`     | Reload `config.yml` without restarting |<br \/>\n| `\/cronscheduler list`       | `\/cs list`       | Show all active schedules              |<br \/>\n| `\/cronscheduler run <name>` | `\/cs run <name>` | Immediately trigger a schedule by name |<\/p>\n<p>## Permissions<\/p>\n<p>| Permission            | Default | Description                   |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `cronscheduler.admin` | op      | Access to all plugin commands |<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A minecraft plugin that runs console commands on cron schedules<\/p>\n","protected":false},"featured_media":0,"template":"","meta":{"_minecraft_slug":"cron-scheduler","_minecraft_project_id":"7kzs1AhX","_minecraft_author":"ashleydev","_minecraft_license":"MIT","_minecraft_downloads":1,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"cron-scheduler.zip","_minecraft_size_bytes":11671,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-16T12:21:45.656412Z","_minecraft_date_created":"2026-05-03T06:04:49.886791Z","_minecraft_date_modified":"2026-04-25T21:12:06.541420Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/cron-scheduler","_minecraft_icon_attachment_id":0,"_minecraft_imported_at":"2026-06-02T19:25:15+00:00","_minecraft_import_hash":"226f7ee7f42d5ebd5b0e417b78fff687","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,126,127,128,129,92],"mod_loader":[130,132,133,134],"minecraft_version":[41],"class_list":["post-51388","mod","type-mod","status-publish","hentry","mod_category-bukkit","mod_category-management","mod_category-paper","mod_category-purpur","mod_category-spigot","mod_category-utility","mod_loader-bukkit","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","minecraft_version-1-21-11"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Cron Scheduler - 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\/cron-scheduler\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cron Scheduler - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A minecraft plugin that runs console commands on cron schedules\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/cron-scheduler\/\" \/>\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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cron-scheduler\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cron-scheduler\\\/\",\"name\":\"Cron Scheduler - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"datePublished\":\"2026-06-02T19:25:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cron-scheduler\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cron-scheduler\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/cron-scheduler\\\/#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\":\"Cron Scheduler\"}]},{\"@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":"Cron Scheduler - 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\/cron-scheduler\/","og_locale":"en_US","og_type":"article","og_title":"Cron Scheduler - Minecraft","og_description":"A minecraft plugin that runs console commands on cron schedules","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/cron-scheduler\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/cron-scheduler\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/cron-scheduler\/","name":"Cron Scheduler - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"datePublished":"2026-06-02T19:25:13+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/cron-scheduler\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/cron-scheduler\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/cron-scheduler\/#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":"Cron Scheduler"}]},{"@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\/51388","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:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=51388"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=51388"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=51388"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=51388"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}