What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[ProfessionBuddy] Mining/Herb 1-525 only fills one bag then deposits.

ValkStorm

New Member
Joined
Oct 14, 2012
Messages
39
Reaction score
0
Hello Everyone!

I was wondering why the Mining/Herb 1-525 profile is only filling one bag and then depositing it. I couldn't find anything to do with it in settings so I'm not sure as to why it would do it.
Any help would be appreciated and receive a like+rep thanks!

Regards,
Valk
 
Nope, just Embersilk. I've noticed it is only ProfessionBuddy, any normal GB2 profile like the Ghost Iron Ore one uses all of my bag's. (thanks for the response!)
 
Last edited:
It looks like it's a known issue judging by the thread. Hopefully it will get sorted out soon, I haven't seen a response to the thread from the OP for ages though (not sure if you guys can get in touch with voltz and let him know :D).
Also, I'm not sure if it's an easy fix. I have no knowledge of how to make a profile but maybe it could be fixed by editing
Code:
<If Condition="Me.FreeNormalBagSlots &lt;=4" IgnoreCanRun="True">
        <If Condition="Me.IsAlliance" IgnoreCanRun="True">
          <CallSubRoutine SubRoutineName="EmptyBagsInStormwind" />
        </If>
        <If Condition="Me.IsHorde" IgnoreCanRun="True">
          <CallSubRoutine SubRoutineName="EmptyBagsInOrg" />
or
Code:
 <If Condition="!Me.IsFlying &amp;&amp; InbagCount(22573) &gt;= 10" IgnoreCanRun="True">
          <CustomAction Code="Lua.DoString(&quot;for bag = 0,4 do for slot=1,GetContainerNumSlots(bag) do local id = GetContainerItemID(bag,slot) or 0 if id == 22573 then UseContainerItem(bag,slot) end end end&quot;);" />
        </If>
        <If Condition="!Me.IsFlying &amp;&amp; InbagCount(22574) &gt;= 10" IgnoreCanRun="True">
          <CustomAction Code="Lua.DoString(&quot;for bag = 0,4 do for slot=1,GetContainerNumSlots(bag) do local id = GetContainerItemID(bag,slot) or 0 if id == 22574 then UseContainerItem(bag,slot) end end end&quot;);" />
?

I think he has a different routine for every leveling area, like Dalaran/Org e.t.c so it might be a bit of a pain.
 
Last edited:
Back
Top