ObjectX.InUse is a boolean variable.
Event======>+Pick objectX where objectX.InUse = 1 (This, in my case, will return 2 instances)
Sub-Event==> -pick objectx instance 0 (pick first instance) > do something
-pick objectx instance 1 (pick second instance)> do something
I'm trying to get the first and the second instance of the list that I previously got in the first condition where objectx have two instances with their InUse variable = 1, so it will retrieve 2 instances. However, it's not working because i'm getting the first and the second instances of all instances. How can I separately pick these two instances regarding to the first condition?