15.05.2020, 09:28
(14.05.2020, 11:58)admin Wrote: If I understand you correctly you need something like this. It will write the received event value to all objects with mytag. The write part will not run if the value was sent by an event script to prevent loops.
Code:if event.sender ~= 'se' then
value = event.getvalue()
grp.tag('mytag'):write(value)
end
Great thank you very much.
Could you explai me the meaning of event.sender ~= 'se'. What does it mean 'se'?
Thanks.