AutoPostSmartTimerTrigger
What is it?
It is plugin for AutoPostTelegramBot
which provide custom triggering
times settings
How to use it?
In repository
you can find the example config
with settings. If you want to enable this trigger - just add into plugins list
of your bot:
{
"plugins": [
{
"classname": "com.github.insanusmokrassar.AutoPostSmartTimerTrigger.SmartTimerTriggerPlugin",
"params": {
"items": [
{
"from": "00:30",
"to": "01:30",
"period": "00:30"
},
{
"from": "01:45",
"to": "06:30",
"period": "01:30"
}
]
}
}
]
}
Here:
from
- included start time of triggeringto
- excluded end time of triggeringperiod
- delay between triggering, must be more than 00:00
All times presented in format HH:mm
(HH
- hours, mm
- minutes).