12.03.2019, 08:30
There's no built-in way to stop a scheduled script, but you can use this script (change script name to your scheduled script name):
You should also add sending 0 to all outputs.
Code:
name = 'my script name'
item = script.get(name)
script.disable(name)
os.execute('pkill -f "scripting-scheduled.lua ' .. item.id .. '"')
You should also add sending 0 to all outputs.