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!

[Azyul Project] Dungeon Farming, Gold Farming, Mount Farming, Transmog Farming, and more!

Been using the Halls of Lightning suicide profile for a couple days now, seems to get stuck looting Ionar every now and then. Not sure if it's a profile issue or an HB issue. I'd post a log, but sadly the file is too big :(
Stuck looting?
Like the loot window is stuck?
 
Hey mr.Echo. How do i get into the profile settings to prevent items from getting sold etc? I don't have the button as viewed in the picture.
I'm using the '' the all mounts.xml''
"Get All Mounts" doesn't use the menu.
So, it follows the normal Honorbuddy sell logic.
 
Not looting at all. Kills Ionar and then proceeds to afk. It only happens every now and then. Left 3 accounts running HOL Suicide and none of them afked out while I slept.
Looting isn't handled by the profile at all, so it's reliant on a core logic of the bot.
There's ways to force the profile to loot a specific mob, which I may end up implementing into the profiles.

Can you get a log of this? Looting issues shouldn't be making it AFK.
 
Hi!
Great work!
But I have problem with botanica. Sometimes before selling routine bot stops at this "Toon doesn't have flying capability in this area, and there is no ground path to the destination. Please learn the flying skill appropriate for this area." I don´t know if it is profile or hb problem. See log.
 

Attachments

I'm getting this while starting after copying the quest behaviors in the right folder :/

any ideas ?


" \QUEST BEHAVIORS\RemoteCode.cs(69,38) : error CS0111: Type 'RemoteCode' already defines a member called 'CreateBehavior' with the same parameter types "
 
There is two Get All Mounts file. One in Casual Farming and one in Mounts. Which one is the correct one to run? One is 173kb and the other is 176kb.
 
Hello,
i used the Transmog-Farming Profiles and is not good Working. Going to the Instance - maybe 2-3 Runs Work. Instance End and my Character will OUT -> Then my character against the wall running.

Ps: And my character is in the instance - "no viable mobs in area" - Character Stuck in the instance now!

What can I do with the function profile?
 

Attachments

Last edited:
Hey Echo, is there something wrong with this?


<If Condition="Me.ZoneId == 139" > <!-- Checks if we're a dk in ebon hold and spell is castable NORTH -->

<CustomBehavior File="WaitTimer" WaitTime="1000" />
<CustomBehavior File="RunCode" Code="SpellManager.Cast(50977);" />
<CustomBehavior File="WaitTimer" WaitTime="2000" />
<CustomBehavior File="RunCode"><![CDATA[

await Coroutine.Wait(15000, () => !StyxWoW.Me.IsCasting);
var deathgatePoi = Object(190942, u => u.ToGameObject().CanUse());
while (StyxWoW.IsInWorld && deathgatePoi != null)
{
deathgatePoi.Interact();
await Coroutine.Yield();
}
]]>
</CustomBehavior>



<CustomBehavior File="WaitTimer" WaitTime="1000" />

<If Condition="Me.ZoneId == 139" >
<CustomBehavior File="WaitTimer" WaitTime="1000" />
<CustomBehavior File="Misc\RunLua" Lua="UseItemByName(6948); UseItemByName(64488); CastSpellByID(556);" WaitTime="500" />
<CustomBehavior File="WaitTimer" WaitTime="1000" />

</If>

</If>

Sometimes death gate doesnt take me back to the instance for some reason, so I put in the hs,

The problem with it is this, after interacting with deathgate it doesnt continue to the next line, it just gets stuck at deathgatePoi.Interact(); and just uses it over and over blinks in place, or tries to use another players but cant..

I kind of think that this worked before the patch, but im not 100% sure..

Thanks
 
Hi!
Great work!
But I have problem with botanica. Sometimes before selling routine bot stops at this "Toon doesn't have flying capability in this area, and there is no ground path to the destination. Please learn the flying skill appropriate for this area." I don´t know if it is profile or hb problem. See log.
That's mostly an issue in the "FlyTo" quest behavior as sometimes it seems to have issues detecting whether or not the player can fly.
Most of the profiles here have been converted to not use FlyTo, but Botanica hasn't because it needs the extra functionalities of FlyTo.

Unfortunately there's not much I can do to fix this on a profile aside from make attempts to replace FlyTo.
You may want to report it to the Honorbuddy bug thread - from there the other developers should be able to investigate it and make any fixes.
 
I'm getting this while starting after copying the quest behaviors in the right folder :/

any ideas ?


" \QUEST BEHAVIORS\RemoteCode.cs(69,38) : error CS0111: Type 'RemoteCode' already defines a member called 'CreateBehavior' with the same parameter types "
Try a fresh install of the bot.
This error is mostly caused by a corruption in your quest behavior files.
 
There is two Get All Mounts file. One in Casual Farming and one in Mounts. Which one is the correct one to run? One is 173kb and the other is 176kb.
Not sure how that happened.
The one inside of the "Mounts" folder is the correct one.

I've removed the second one.
 
Hello,
i used the Transmog-Farming Profiles and is not good Working. Going to the Instance - maybe 2-3 Runs Work. Instance End and my Character will OUT -> Then my character against the wall running.

Ps: And my character is in the instance - "no viable mobs in area" - Character Stuck in the instance now!

What can I do with the function profile?
Are you using any in-game addons?
It shouldn't "no viable mobs in area" unless the bosses are not spawned - which that only happens if it re-enters without resetting.

I'll have to look into the stuck issue. That's not something that has been noted before on these profiles.
 
Hey Echo, is there something wrong with this?

--snip--

Sometimes death gate doesnt take me back to the instance for some reason, so I put in the hs,

The problem with it is this, after interacting with deathgate it doesnt continue to the next line, it just gets stuck at deathgatePoi.Interact(); and just uses it over and over blinks in place, or tries to use another players but cant..

I kind of think that this worked before the patch, but im not 100% sure..

Thanks
The deathgatePoi could probably be changed to check CreatedByGuid.
http://docs.honorbuddy.com/html/79f41e30-2805-9e2b-1b7b-8efba9a5ad7e.htm

This way we can determine if that specific Death Gate was created by your character's Guid.
eg:

PHP:
var deathgatePoi = Object(190942, u => u.ToGameObject().CreatedByGuid == Me.Guid) != null

This will set it up so that only the death gate created by your character is detected and it should fix the issue since the while() won't loop off of other people's gates.
Also, you could probably set the while() up so that it checks your player's current ZoneId. That way there's no way it will loop after porting.
 
Last edited:
Are you using any in-game addons?
It shouldn't "no viable mobs in area" unless the bosses are not spawned - which that only happens if it re-enters without resetting.

I'll have to look into the stuck issue. That's not something that has been noted before on these profiles.

Ye,

i have no Addons ON!

When my Character will going OUT of the Instance Stuck!

[MyCTM-v$Revision$(debug)] Stuck. Trying to jump
[MyCTM-v$Revision$(debug)] Stuck. Movement Directions: StrafeLeft
[MyCTM-v$Revision$(debug)] Stuck. Movement Directions: Backwards, StrafeLeft, JumpAscend
[MyCTM-v$Revision$(debug)] Stuck. Movement Directions: StrafeRight, JumpAscend
[MyCTM-v$Revision$(fatal)] MyCTM is not able to reach <-6.173574, 0.07185109, -0.205496> from <51.75286, 0.03838529, -10.17307>
Bot stopping! Reason: Fatal error in quest behavior, or profile.

Ps:_
But I test it straight on, and I think the problem only occurs when an instance.
 

Attachments

Last edited:
Hi
I've been running the Stratholme farm for a while now, but 4 of 5 times it won't loot Baron Rivendare.
I've tried reinstalling HB to see if it solved it, but unfortunately not.
I do have 'Loot mobs' activated, and I do know that it's only supposed to loot Baron.
Anyone else had this issue?
 
Back
Top