Plugin FAQ
Here are the features of the plugin, along with answers to frequently asked questions
How does the required_players setting work?
The required_players setting defines the minimum number of players needed on the server for an event to execute. If the number of online players is smaller than the required amount, the event will not run, and instead, the commands specified under no_enough_player_commands will execute. The required_players setting is optional. If it is not defined in the event configuration, the plugin will not check the number of players, and the event will execute regardless of how many players are online.
What are the supported types of commands in events?
The plugin supports multiple types of commands:
[COMMAND]:
Executes a command through the console..Example: [COMMAND] say Hello
[MESSAGE]:
Sends a message to all players.Example: [MESSAGE] 8C9CDExemple message
[TITLE]:
Displays a title on players' screens.Example: [TITLE] 8C9CDTitle
[SUBTITLE]:
Displays a subtitle on players' screens().This command requires a [TITLE] to be configured; otherwise, the subtitle will not appear.
Example: [SUBTITLE] 8C9CDSubtitle
[ACTIONBAR]: Shows a message in the action bar for all players.
Example: [ACTIONBAR] 8C9CDEvent executed
What is the required format for specifying event times?
The event times must be specified in the following format: day:hour:minute:second Day: The day of the week in English (e.g., monday, tuesday). Hour: The hour in 24-hour format (0-23). Minute: The minute (0-59). Second: The second (0-59).
This configuration will trigger the event every Monday at 12:00:00 and Tuesday at 15:30:00.
How can I set the timezone?
The plugin allows you to set a custom timezone for event scheduling. The timezone can be configured in the Settings section of the plugin configuration file. The format for the timezone is based on the IANA TimeZone format, such as
Europe/London, America/New_York, Asia/Tokyo
, etc.
This setting will ensure that all event times are interpreted in the Europe/London
timezone. If you don't set a timezone, the plugin will default to Europe/London
. Note: Ensure that the timezone you set is correct for your region, as this will affect when events are triggered.
Last updated