20.11.2019, 19:31
christian.troen@haaland.no
Hi.
In the heading you write that you want all object with tag "Modus", to recive the value of "3" if (32/0/3) is True. If this is still what you want, then you can use this as Event-based script.
This sends the value "3" to all "Modus" taged objects, but only when 32/0/3 gets True.
BR
Kai-Roger
Hi.
In the heading you write that you want all object with tag "Modus", to recive the value of "3" if (32/0/3) is True. If this is still what you want, then you can use this as Event-based script.
This sends the value "3" to all "Modus" taged objects, but only when 32/0/3 gets True.
Code:
value = event.getvalue()
objs = grp.tag('Modus')
if value == true then objs:write(3)
end
BR
Kai-Roger