So I write all my own PB profiles, from shuffling to auctioning. The knowledge I have has come from looking through other profiles and for the most part I've been able to accomplish everything I need.
I have seen however a recurring item in profiles and that is the IgnoreCanRun condition, seems to be used at the end of If and While statements. Now I've been putting it in all my conditions like the examples I've seen, and my code works as I expect it to, but I'm looking to get a better understanding of how and what the IgnoreCanRun condition actually does.
Here's a quick code exert to show what I mean.
<If Condition="Jewelcrafting.Level >= 500 && Me.FreeBagSlots >= 0" IgnoreCanRun="True">
<If Condition="InbagCount(72092) > 5" IgnoreCanRun="True">
<DisenchantAction ActionType="Prospect" ItemTarget="Specific" ItemQuality="Uncommon" ItemId="72092" />
</If>
</If>
Thanks in advance for the input!
I have seen however a recurring item in profiles and that is the IgnoreCanRun condition, seems to be used at the end of If and While statements. Now I've been putting it in all my conditions like the examples I've seen, and my code works as I expect it to, but I'm looking to get a better understanding of how and what the IgnoreCanRun condition actually does.
Here's a quick code exert to show what I mean.
<If Condition="Jewelcrafting.Level >= 500 && Me.FreeBagSlots >= 0" IgnoreCanRun="True">
<If Condition="InbagCount(72092) > 5" IgnoreCanRun="True">
<DisenchantAction ActionType="Prospect" ItemTarget="Specific" ItemQuality="Uncommon" ItemId="72092" />
</If>
</If>
Thanks in advance for the input!