Difference between revisions of "Schedule has started or stopped"
Jump to navigation
Jump to search
(Created page with "{{DISPLAYTITLE:Script trigger Schedule has started or stopped}} Triggered when selected schedule starts. Arguments are stored in table <code>event.args</code> === Arguments =...") |
(No difference)
|
Latest revision as of 16:12, 11 July 2019
Triggered when selected schedule starts. Arguments are stored in table event.args
Arguments
scheduleActivetrue when schedule is active, false otherwisescheduleIdschedule ID
Print arguments
-- print all arguments
for i, v in pairs(event.args) do
logf("%s: %s",tostring(i),tostring(v))
end