mistahmikey
New Member
- Joined
- Jun 29, 2015
- Messages
- 161
Can this be used to set the current desynthesis target for a stack of items?
If so, would the following pseudo code snippet be a reasonable way to approach desynthesizing a stack of items?
Thanks.
If so, would the following pseudo code snippet be a reasonable way to approach desynthesizing a stack of items?
Code:
<assumes bagSlot.Item.DesynthesisIndex is set to first stack item by default>
while (bagSlot.Item.StackSize > 0)
{
var result = await CommonTasks.Desynthesize(bagSlot,<some delay>);
<synchronization and error handling code>
<assumes bagSlot.Item.DesynthesisIndex does not need to be explicitly called and is internally set to the new first stack item>
}
Thanks.
Last edited: