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

Adressing this to the community - How To Use HBrelog + PB + FishingBuddy?

saven

Member
Joined
Sep 24, 2010
Messages
275
Reaction score
2
From what I understand you can use HBrelog and have it select a botbase to use, great. But What if you want HBrelog to run PB and have it select whatever bot base was needed? This is my question to you all. I realize this may not be the appropriate place to post this but there seems to be lack of help in the HBrelog topic. If you have a outstanding answer for me here then please word it in a logical fashion. Something like "Ok you click that one thing and then it should work". Not trying to step on peoples toes but there are lurkers here on the forums that make me wonder why they even post stuff.
 
You write botbase-"Professionbuddy".
Then in your PB-profile you use the botbase you want.
 
What about if it is from the HB store? So this is my example on what I wanna achieve..

logon char1 - Garrison
wait 30min
logon char2 - Garrison
and so on..until all level 100s have done there garrison dutys.
Next run char3 with professionbuddy+fishingmaster+profile from hbstore.
^That last part I cannot figure out.
 
Last edited:
Open the load profile from buddystore. Mark the profil you want to run. On the bottom of the profile window you see a link to the profile. Copy that link into HBRelog in the profile path. Now HBRelog wil use the buddystore profile. [emoji1]
 
Thanks for the answer but I can't do the same with Brodieman's Comp. plugin. The profile from buddystore doesn't show all the options Brodieman has. For example, the daily rep for mop. Anyone with hbrelog and brodieman will understand what I am referring to.
 
I understand how to make HB relog use a certain botbase but I want profession buddy to run WITH fishingbuddy. Fishing buddy is a botbase not a profile I believe.
 
I understand how to make HB relog use a certain botbase but I want profession buddy to run WITH fishingbuddy. Fishing buddy is a botbase not a profile I believe.

ProfessionBuddy can script and control a secondary bot to perform a task, and then switch bots when that goal has been achieved. in this case, FishingBuddy, formerly AutoAngler2.

If you want Professionbuddy to swap characters (by sending the HBrelog commands), there's a few scripts that can do this for you, or you can edit a existing PB fishing script and add the commands yourself

it's as simple as
PHP:
<CustomAction Code="HBRelog.SkipCurrentTask(HBRelog.CurrentProfileName);" />

and here's a subroutine for showing that HBrelog has been detected, and how to push it.
PHP:
	<CustomAction Code="Log(&quot;HBRelog: {0}&quot;,HBRelog.IsConnected? &quot;Enabled&quot;:&quot;Disabled&quot;);" />

	<SubRoutine SubRoutineName="HBRelog">
		<If Condition="(bool)Settings[&quot;HBRelog&quot;] &amp;&amp; HBRelog.IsConnected" >
			<CustomAction Code="Log(&quot;Skipping current HBRelog task&quot;);" />
			<CustomAction Code="HBRelog.SkipCurrentTask(HBRelog.CurrentProfileName);" />
		</If>
	</SubRoutine>

this code comes from AHBuddy, which you can find on the forums here as well. it has a switch value, which you can set to enable or disable, but you can simply delete "(bool)Settings[&quot;HBRelog&quot;] &amp;&amp;" from the above if you don't need the switch.

there is also the fishing bot on the store from alisha, but you can chain together as many tasks as you want under a PB profile. just edit an existing fishing profile, and modify it with the ID's of the fish you want collected, and the locations of the fishing nodes as needed, and test it out. it should take about 2-3 hours to make your own profile, and edit as needed.

If you want a task to only take 45 minutes, use the plugin LogMeOut, as it will hearth or use the Garrison hearth to bring you back after the task has been finished. Or, you can also set a timer inside Professionbuddy, but it is a more complicated process of testing the profile, and if there's an overall delay in tasks, you might not have the clock as synchronised. but, if you have say, 3 tasks, and set a PB timer of ~12 minutes each, and give it 3-4 minutes travel time beore starting each subtask, you might make it under the 45 minute window.

if you want more assistance, try the community developer forum instead, they can answer this kind of question (usually)
 
Last edited:
Thanks for the answer but I can't do the same with Brodieman's Comp. plugin. The profile from buddystore doesn't show all the options Brodieman has. For example, the daily rep for mop. Anyone with hbrelog and brodieman will understand what I am referring to.
Have been trying to figure out this myself. I don't think it's possible...:confused:
 
Back
Top