Tweety
New Member
- Joined
- Sep 6, 2013
- Messages
- 317
- Reaction score
- 0
The title states that question because as many times as I asked helped for PB profiles I haven't seen anyone being actually helpful.
Either there are no replies either they don't have any value.
Regardless, let's try again.
What I want to do is to specify in some profiles that this is a herb only profile - do not mine, or the other way arround.
So in a profile that I've downloaded from here, big rep for the guy, which is 1-600 Mine + Herb leveling profile there's this code:
I tried to do something like:
sadly, it didn't work.
What I want to do is to load up my GB2 profiles from PB so I can specify that I want them to be only mining or only herb gathering profiles.
Does anyone have the magic line of code that disables/enables the GB settings for gathering just the way you can do it from the menu, however I want it to be done inside the profile like the dude who wrote that profession leveling profile there did?
A second thingy that I would love to do is to disable picking up of certain herbs or ores. Is there a way to do that?
Let's say that I am farming Herb X that in this area is also herb Y - however, I don't want my bot to pick up herb Y because it's price on the AH is 10 times lower than herb X.
Is there a plugin or a magical line of code that can do that setting for GB or GB actually does not support that?
I am really surprised that there are not that many people who can actually write profiles and are willing to help. I've been visiting many web developer's forums and it's full of helpful and knowledgeable people, who do know what ya mean, do know how to do it and save you hours of digging.
Either there are no replies either they don't have any value.
Regardless, let's try again.
What I want to do is to specify in some profiles that this is a herb only profile - do not mine, or the other way arround.
So in a profile that I've downloaded from here, big rep for the guy, which is 1-600 Mine + Herb leveling profile there's this code:
Code:
<!--disable gathering of mines-->
<CustomAction Code="if (((bool)Settings["Mining"] &&
(MiningLevel == MiningMaxLevel || ((bool)Settings["Herb"] && MiningMaxLevel > HerbMaxLevel ))) ||
!(bool)Settings["Mining"])
{
mining = Bots.Gatherbuddy.GatherbuddySettings.Instance.GatherMinerals = false;
}" />
Code:
<CustomAction Code="Bots.Gatherbuddy.GatherbuddySettings.Instance.GatherMinerals = false;"
What I want to do is to load up my GB2 profiles from PB so I can specify that I want them to be only mining or only herb gathering profiles.
Does anyone have the magic line of code that disables/enables the GB settings for gathering just the way you can do it from the menu, however I want it to be done inside the profile like the dude who wrote that profession leveling profile there did?
A second thingy that I would love to do is to disable picking up of certain herbs or ores. Is there a way to do that?
Let's say that I am farming Herb X that in this area is also herb Y - however, I don't want my bot to pick up herb Y because it's price on the AH is 10 times lower than herb X.
Is there a plugin or a magical line of code that can do that setting for GB or GB actually does not support that?
I am really surprised that there are not that many people who can actually write profiles and are willing to help. I've been visiting many web developer's forums and it's full of helpful and knowledgeable people, who do know what ya mean, do know how to do it and save you hours of digging.