Its a picking variant, not really picking.
I did not mean to replace it with an actual picking event, such as pick by comparison.
I suggested to replace your object compare with a (system), Compare 2 values.
Its more of a filter perhaps then a picking variant, but the result is the same.
Its like, when you use an objects compare function, you end up with the objects having the same value.
ie
100 objects, 10 have var = 1
Event:
Objects.var = 1
For each
Placing it in this order, would only make the for each loop through all the objects with a var = 1, and not use the objects var <> 1
(Loop = 10 objects big)
unlike
Event
for each object
object.var = 1
Where it loops through all objects and only uses the object where var = 1
(loop = 100 objects big)