By continuing to use this site, you agree to the Terms of Service of this website, including usage of cookies.
OK, Don't show this again
CmdScheduler is a plugin for PocketMine-MP 5, It performs processing of CRON expressions when due will execute 1 scheduled instruction.
A CRON expression is a string representing the schedule for a particular command to execute. The parts of a CRON schedule are as follows:
* * * * *
- - - - -
| | | | |
| | | | |
| | | | +----- day of week (0 - 7) (Sunday=0 or 7)
| | | +---------- month (1 - 12)
| | +--------------- day of month (1 - 31)
| +-------------------- hour (0 - 23)
+------------------------- min (0 - 59)
This library also supports a few macros:
@yearly
, @annually
- Run once a year, midnight, Jan. 1 - 0 0 1 1 *
@monthly
- Run once a month, midnight, first of month - 0 0 1 * *
@weekly
- Run once a week, midnight on Sun - 0 0 * * 0
@daily
, @midnight
- Run once a day, midnight - 0 0 * * *
@hourly
- Run once an hour, first minute - 0 * * * *
If you have any questions you can contact me on Discord (Taylor#1837) or on my Discord server.
You can leave one review per plugin release, and delete or update your review at any time