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!

[N] Firelands Raw Gold Endless Farm

Using v7 and also having issues with my DK using Death Gate and getting stuck in Archerus.
Tried removing part of the profile so he would just run out instead, but I think I broke it.

Any ideas?
 
Last edited:
Here is the last log where DK gets stuck in Archerus. I have his hearthstone set in darnassus as well.View attachment 213808
Thanks for any info, this was working awesome previously. Good stuff.
Using v7 and also having issues with my DK using Death Gate and getting stuck in Archerus.
Tried removing part of the profile so he would just run out instead, but I think I broke it.

Any ideas?

both post full unedited logs pls
 
Last edited:
Awesome man, thank you! Love this profile, I use it more than anything.

Agreed, it's very nice. Is there anything we can do in the meantime to prevent the DK from using Death Gate? It's the only char I have on my bot account with high enough ilvl to farm Firelands, otherwise I'd switch to a different class.

Thanks!
 
Hello how to make that when you exit the raid, bot not attack other players who hit you?
 
Last edited:
Agreed, it's very nice. Is there anything we can do in the meantime to prevent the DK from using Death Gate? It's the only char I have on my bot account with high enough ilvl to farm Firelands, otherwise I'd switch to a different class.

Thanks!

Hey man, this is a very quick fix to just not port. It's not the coding correct way to fix it, but it's a perfect temporary fix.

Open the profile with Wordpad and search for 50977 ( thats the spell code for Death Gate ) and replace all with 50842 ( Blood Boil spell code ). You won't use Death Gate which will stop you from porting. Since I can't code, it was the second best way I got it to not port lol.
 
Agreed, it's very nice. Is there anything we can do in the meantime to prevent the DK from using Death Gate? It's the only char I have on my bot account with high enough ilvl to farm Firelands, otherwise I'd switch to a different class.

Thanks!
Hey man, this is a very quick fix to just not port. It's not the coding correct way to fix it, but it's a perfect temporary fix.

Open the profile with Wordpad and search for 50977 ( thats the spell code for Death Gate ) and replace all with 50842 ( Blood Boil spell code ). You won't use Death Gate which will stop you from porting. Since I can't code, it was the second best way I got it to not port lol.

try the attached profile
 

Attachments

Hello how to make that when you exit the raid, bot not attack other players who hit you?
replace
PHP:
            <If Condition="!(Me.Class == WoWClass.Druid) &amp;&amp; !(Me.Class == WoWClass.DeathKnight)">
               <!-- Move to Entrance-->
               <while Condition="!Me.Mounted">
                  <CustomBehavior File="ForcedMount" MountType="Ground" />
                  <CustomBehavior File="WaitTimer" WaitTime="1000" />
               </while>
               <MoveTo X="-167.177" Y="200.9855" Z="45.82888" />
               <MoveTo X="-259.4884" Y="196.8092" Z="45.23314" />
               <MoveTo X="-341.0423" Y="166.228" Z="49.53873" />
               <MoveTo X="-528.8029" Y="312.1284" Z="115.2895" />
               <CustomBehavior File="RunCode" Code="waitCounter++;" />
               <!-- exit and reset-->
               <!-- stealth on leave -->
               <If Condition="Me.Class == WoWClass.Druid &amp;&amp; !Me.Combat">
                  <CustomBehavior File="RunCode" Code="SpellManager.Cast(5215);" />
               </If>
               <If Condition="Me.Class == WoWClass.Rogue &amp;&amp; !Me.Combat">
                  <CustomBehavior File="RunCode" Code="SpellManager.Cast(1784);" />
               </If>
               <If Condition="Me.Class == WoWClass.Hunter &amp;&amp; !Me.Combat">
                  <CustomBehavior File="RunCode" Code="SpellManager.Cast(51753);" />
               </If>
               <!-- ReEnter-->
               <MoveTo X="-529.8305" Y="311.5113" Z="115.4845" />
               <CustomBehavior File="WaitTimer" WaitTime="5000" />
               <CustomBehavior File="GoThruPortal" Timeout="30000" X="-558.6042" Y="322.9795" Z="115.4839" />
               <EnableBehavior Name="Death" />
               <CustomBehavior File="WaitTimer" WaitTime="10000" TerminateWhen="!Me.IsInInstance" />
               <CustomBehavior File="Misc\RunLua" Lua="ResetInstances();" />
            </If>

with

PHP:
            <If Condition="!(Me.Class == WoWClass.Druid) &amp;&amp; !(Me.Class == WoWClass.DeathKnight)">
               <!-- Move to Entrance-->
               <while Condition="!Me.Mounted">
                  <CustomBehavior File="ForcedMount" MountType="Ground" />
                  <CustomBehavior File="WaitTimer" WaitTime="1000" />
               </while>
               <MoveTo X="-167.177" Y="200.9855" Z="45.82888" />
               <MoveTo X="-259.4884" Y="196.8092" Z="45.23314" />
               <MoveTo X="-341.0423" Y="166.228" Z="49.53873" />
               <MoveTo X="-528.8029" Y="312.1284" Z="115.2895" />
               <CustomBehavior File="RunCode" Code="waitCounter++;" />
               <!-- exit and reset-->
               <!-- stealth on leave -->
               <If Condition="Me.Class == WoWClass.Druid &amp;&amp; !Me.Combat">
                  <CustomBehavior File="RunCode" Code="SpellManager.Cast(5215);" />
               </If>
               <If Condition="Me.Class == WoWClass.Rogue &amp;&amp; !Me.Combat">
                  <CustomBehavior File="RunCode" Code="SpellManager.Cast(1784);" />
               </If>
               <If Condition="Me.Class == WoWClass.Hunter &amp;&amp; !Me.Combat">
                  <CustomBehavior File="RunCode" Code="SpellManager.Cast(51753);" />
               </If>
               <!-- ReEnter-->
			   <DisableBehavior Name="Combat" />
               <MoveTo X="-529.8305" Y="311.5113" Z="115.4845" />
               <CustomBehavior File="WaitTimer" WaitTime="5000" />
               <CustomBehavior File="GoThruPortal" Timeout="30000" X="-558.6042" Y="322.9795" Z="115.4839" />
               <EnableBehavior Name="Death" />
               <CustomBehavior File="WaitTimer" WaitTime="10000" TerminateWhen="!Me.IsInInstance" />
               <CustomBehavior File="Misc\RunLua" Lua="ResetInstances();" />
            </If>
 
Hi, Zojak. try different profiles, from the 05 to the 07 version, but my character (Guardian Druid), takes all the dungeon teleport, go back and back and back. And it comes back. But mobs does not restart. Dungeons does not restart ((. Tell me, please, in what could be the problem?
 
is it just me that my druid doesn't mount after 1st pull ? Uses travel form instead (settings&tools -> mount selected)

EDIT:
Looks like the condition
<while Condition="!Me.Mounted">
<CustomBehavior File="ForcedMount" MountType="Ground" />
<CustomBehavior File="WaitTimer" WaitTime="1000" />
</while>
Me.Mounted = travel form counts too...


Do you know how to dismiss aura ? So if the travel form is removed - bot will mount up normally.
 
Last edited:
try the attached profile
did you just remove the condition so it will always cast 50977 aka Death Gate?
at line 1182 in the v0.7_hardcore you shouldnt be checking your location again, but instead cast deathgate, interact with it and go back to the beginning of the run. I'll look at this a little more later.
 
Last edited:
is it just me that my druid doesn't mount after 1st pull ? Uses travel form instead (settings&tools -> mount selected)

EDIT:
Looks like the condition

Me.Mounted = travel form counts too...


Do you know how to dismiss aura ? So if the travel form is removed - bot will mount up normally.

disable travelform in singular
 
suicide bot killed shaanox

Hey guys, got a bit of a problem here.

I had 5 suicide bots running this, and one of them (a hunter) killed one of the bosses, Shaanox.
Now that particular guy is locked for 6 days, which really sucks.

Is this a common problem? Is there anything I can do to prevent it?
(I've read the thread and looks like there are others. Is there no fix yet?)

PS. Can i get a hunter to use camouflage/exhilirate to heal himself? They just stand there waiting for regen after pulls.
 
Last edited:
Hey guys, got a bit of a problem here.

I had 5 suicide bots running this, and one of them (a hunter) killed one of the bosses, Shaanox.
Now that particular guy is locked for 6 days, which really sucks.

Is this a common problem? Is there anything I can do to prevent it?
(I've read the thread and looks like there are others. Is there no fix yet?)

PS. Can i get a hunter to use camouflage/exhilirate to heal himself? They just stand there waiting for regen after pulls.

it is possible to heal between pulls. the problem with these accidentally shannox kills is to see whats the cause of it... normaly it is to much selfheal. i will see what i can do about this issue. my problem right now is that i am really limited on time to improve the profile. it takes so much time to test every detail so please be patient and gather logs of your problems
 
I'm almost sure his pet must've solo'd the boss, because I do recall changing some of his pet settings (in order to experiment), whilst I left the 2 other hunters' pet settings unchanged.

That's still totally fine man, this profile is still by far the best of all the ones i've tried.
My next batch of bots are gonna be optimized for AoE/self-healing just to run this profile, and that should tell you just how good it is.

99% of the time when they encounter shaanox they just let themselves get killed, which is fine I guess.
If you could make it so they just run to the instance and reset, that would be amazing.
That sounds pretty easy right? Try to run to the instance, if you die, that's fine. Run out and reset. If you don't die, that's even better; Reset and get back in.

No pressure though. You're a god, man. You're basically paying my rent already with this ratchet crew of 5 I got going. Major kudos to you.
 
Back
Top