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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

HB ARCHIVES: ProfessionBuddy--DO NOT DELETE

Xel'[Naga];1360557 said:
When the string <CustomAction Code="SwitchCharacter((string)Settings[&quot;AuctioneerName&quot;],(string)Settings[&quot;Realm&quot;],&quot;Combat Bot&quot;" /> Bot freezes and does not respond to any action.

HB version 716

In the 712 HB version, all worked perfectly.

This is now been fixed in current SVN version.
 
Hello, have a serious errors in professionbudy. "Settings" function make errors and not working properly, so my profiles not working like earlydays. Here is the log attached.
 

Attachments

great bot, thanks for all the good work. Kudos!
But I have a suggestion. You may update some of the profiles. Profiles are a little bit out of date, specially Mining and Herbalism 1-600 skilling up. As you know after Pandaria hit, skills required for mining or herbalism have changed and I think your profiles haven't been updated for MoP. for example the toon keeps farming Mithril Ore while the skill is gray and never stops farming gray nods actually. I stucked at around 240 and had to change the profile to skill up. I can provide a log if necessary.
cheers :o
 
Hello, have a serious errors in professionbudy. "Settings" function make errors and not working properly, so my profiles not working like earlydays. Here is the log attached.

Would you try new version on SVN?
I pushed some changes that hopefully will fix your issues. Let me know if it does.
 
mining 1-600 keeps trying to empty empty bags

even with laods space in bags keeps trying to empty them right now have 68 free spaces only hearthstone and pick in bag and keeps going to undercity to empty bags sits and mailbox

same yesturday up to 350 even with over 40 items in bag was trying to mail the empty slots in bag didnt want them mailed and dont want them sold at ah it sits at mailbox tons space in bags anyway i can turn off mail as i dont want use it just want it to level the mining and i will vender everthing myself as it learns and just keep ore and gems

new install 2 mins ago log attached cheers.


tony told me to post this hear.
 

Attachments

I know this command works in Questing. But which command works in Professionbuddy?

<CustomBehavior File="EnablePlugin" Names="AutoEquip2,Talented2,Mr.ItemRemover2,Tidy Bags 3.6 Reloaded,AutoBag,AlwaysHere,DrinkPotions" />

Say for example I only want to enable Mr.Itemremover whilst running professionbuddy? And after professionbuddy has disenchanted all materials I want to disable Mr.Itemremover. How is this done in Professionbuddy?

Thanks for any and all help /Max
 
Hi, thx for the awesome botbase ! I got a question - is there a guide for writing PB prfiles ? I found cool ones for GB2 grinding etc, but none for PB profiles, thx in advance.
 
My PB-profile collects Saronit in Sholozar:
Code:
<?xml version="1.0" encoding="utf-8"?>
<Professionbuddy>
    <CustomAction Code="Log("Start PB Farming Saronit ");" />
  <!--*** Select GB2 ***-->
  <If Condition="TreeRoot.Current.Name != "Gatherbuddy2"" IgnoreCanRun="True">
    <CustomAction Code="SwitchToBot ("Gatherbuddy2");" />
  </If>


  <If Condition="Me.FreeNormalBagSlots > 3" IgnoreCanRun="True">
  
    <!--*** Farming Saronite While I have it <= 200 *** -->

    <While Condition="InbagCount (36912) <= 200 || Me.FreeNormalBagSlots > 3" IgnoreCanRun="True">
        <LoadProfileAction ProfileType="Honorbuddy" Path="saronit_sholo.xml" /> 
    </While>
    
    <While Condition="InbagCount (36912) >= 201 || Me.FreeNormalBagSlots < 4" IgnoreCanRun="True">
      <CustomAction Code="Log("Loading General profile");" />
            <CustomAction Code="Mount.Dismount();" />
            <CustomAction Code="Lua.DoString("UseItemByName(6948)");" />
            <WaitAction Condition="Me.IsCasting" Timeout="11000" />
            <WaitAction Condition="Me.ZoneId == 4395" Timeout="20000" />
      <LoadProfileAction ProfileType="Professionbuddy" Path="GeneralPBProfile.xml" />
    </While>
   
  </If>
</Professionbuddy>

Why GB2 collects full bags saronite ore (more 100 stacks!!!) if I write: While Condition="InbagCount (36912) <= 200
Why???????????????
This worked very long! Now it do'nt work.
Why ???

After the patch WoW 5.4 you broke your ProfessionBuddy!!

You're logic here is wrong. You put:

Code:
 <While Condition="InbagCount (36912) <= 200 || Me.FreeNormalBagSlots > 3" IgnoreCanRun="True">

This means, gather whilst you have less than 200 units of the item OR (||) if you have more than 3 bag slots.

This means you may already have 200 units, but if you still have more than 3 bag slots, it'll keep filling. I'd advise changing it to:

Code:
 <While Condition="InbagCount (36912) <= 200 && Me.FreeNormalBagSlots > 3" IgnoreCanRun="True">

Now your profile will run if both your bags have space, and you have under your total set amount.

&& = both operators are true
|| = either operators are true
 
I am working on a cooking skilling profile and it seems to me that professionbuddy doesn't recognize new learned recipes, if i click the reload button it works but i would prefer a afkable profile. Has somebody experienced the same problem ? and is there a workaround, perhaps a coding way to trigger the reload button after learning a new recipe. thanks :)
 
Why does it keep flying back to Darkshire and mining copper when it well above that level and have ignore grey nodes set to true? Thanks
 
When I'm running 1-600 Mining & Herb flying, whenever it goes to pick up a node and gets attacked by something, it stands there and doesn't attack. I don't see any errors .. any fix? Thanks for any help!

EDIT: Fixed by getting a custom class.
 
Back
Top