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

[Request] Stranglethorn Fishing Extravaganza

alaerwen

Member
Joined
Jun 27, 2011
Messages
294
Reaction score
9
Hey I have been searching on forum a while and all I can find is an outdated request for this kind of a profile, there is a working poolfish plugin, and I'm not really into the profilemaking, but making a profile catching 40 Speckled Tastyfishes, and then turning in the quest in booty bay, OR atleast just simply fish 40 of them and let user hearthstone manually, is that kind of profile something complicated to make? Without turning in quests there shouldnt be any difficulties in making the profile, simply hotspot the coast or something, I'm just assuming, since I'm pretty new to honorbuddy, but I have opened couple of profiles and I kinda understand how those works.. Anyway I would be very thankful if someone who is familiar with these kind of things could make one of those profiles, would be really appreciated :)
 
you could easily make a profile for poolfishingbuddy using Zaprecorder. its just a click and move and gather hotspots plugin. then you could add a line of code to hearth or flyto when you fish up a certain number of fish.

http://www.thebuddyforum.com/honorb...44-zaprecorder-easy-gb2-profile-creation.html

Thanks, justlaxn. I've been looking for an opportunity to learn how profiles are made.

You mentioned adding a line of code to hearth on catching a certain number of fish. Do you have any sense of what that line would look like?
 
Well to fly to a location in Booty Bay after catching 40 or more tastyfish the code would look something like this (I think - aha im in no way a pro profile maker):

<If Condition="(GetItemCount(19807) &gt;= 40)" >
<CustomBehavior File="FlyTo" X="0000" Y="0000" Z="0000" /> (I don't know the coordinates you'd want it to fly to but you can find that using the profile dev tab in HB)
<CustomBehavior File="ForcedDismount" />
</If>

If you'd want to hearth i think it'd be something like this (once again i'm not positive):

<If Condition="(GetItemCount(19807) &gt;= 40)" >
<CustomBehavior File="RunMacro" Macro="/Use Hearthstone" NumOfTimes="1" WaitTime="15000" />
</If>

I hope this helps

oh and if you wanted it to notify when its fished up 40 tastyfish i think the code would be:

<If Condition="(GetItemCount(19807) &gt;= 40)" >
<CustomBehavior File="UserDialog" Title="Done Fishing" AllowBotStop="False" SoundCue="Asterisk" SoundCueInterval="1" Text="Completed Fishing 40 Tastyfish - Flying/Hearthing To Booty Bay" />
</If>
 
Last edited:
Thank you for answer :) That was a plugin I have not heard about at all until now, and I will look into it, but am I completely wrong or isn't it "HasItem" instead of "GetItemCount"?

Answers appreciated :)
 
Just hearth to Booty Bay after you have the 40 fish, seen contests lost by seconds, flying would definately be slower to get to the NPC. Not sure if flying from the inkeeper to NPC is quicker than running and jumping though ?

G
 
flying from innkeeper would probably be faster as a druid because of the instant cast but other than that running is probably the same. and as for the getitemcount hasitemcoutn i have no idea ahaha...

in the wiki get item count is:
The GetItemCount shortcut counts the contributions from all stacks of the specified item in the toon's bags. Contributions from the bank or other sources will not be considered.

while has item is:
Quest-giving items drop off of certain mobs. This condition in conjunction with a <GrindTo> can arrange for a grind until the item drops and the quest chain can continue.

so in this case i am pretty sure it would be get item count because the tastyfish don't start a quest?

(Here's the wiki source: http://www.thebuddyforum.com/mediawiki/index.php?title=Honorbuddy_Profile_Tag_Attribute:_Condition)
 
Last edited:
Back
Top