12.06.2021, 06:03
(16.06.2018, 17:57)benthoma Wrote:(11.06.2018, 21:59)Erwin van der Zwart Wrote: Hi,The first code. Can we do different things with a true value and a false value?
Try this:
For enable/disable script above from 1 bit use this: (sample is assuming event script script above is called 'timebasedevent')Code:now = os.date('*t')
if now.hour >= 8 and now.hour < 13 then
grp.write('1/1/1', true)
elseif now.hour >= 13 and now.hour < 14 then
grp.write('1/1/1', false)
end
BR,Code:if event.getvalue() == true then
script.enable('timebasedevent')
else
script.disable('timebasedevent')
end
Erwin
Hi ! i tried the first script, saved and enabled but it seem the object value given not changing. Tried to change value as hours follow the current timing, object value also no changed. Do i have to set the script run and check everytime (this wat i read throught out the search regard scripting)
this what in my script
now = os.date('*t')
if now.hour >= 8 and now.hour < 13 then
grp.write('0/0/100', true)
elseif now.hour >= 13 and now.hour < 14 then
grp.write('0/0/100', false)
end