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

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

Is there a way to make my warrior spam victory rush and bladestorm rather than the normal routine? I have a lot of downtime because the character is just standing there waiting to regain health. I noticed my warrior gets stuck when he uses charge on the boss Laj in Botanica, I find him stuck inside the platform that the boss sits on and the bot cannot move.
 
Is there a way to make my warrior spam victory rush and bladestorm rather than the normal routine? I have a lot of downtime because the character is just standing there waiting to regain health. I noticed my warrior gets stuck when he uses charge on the boss Laj in Botanica, I find him stuck inside the platform that the boss sits on and the bot cannot move.
The way your character behaves while fighting is purely controlled via your Combat Routine.

I believe there's an option in Singular that tells the bot to use Victory Rush at any time it can.
(Class Config -> Class Specific -> General -> Use Victory Rush on Cooldown)
I use this on all my warrior testers.
As far as Bladestorm goes, I don't think there's an option to spam it on cooldown.
You would need to make changes in Singular's code to it to do that.

I've seen the issue with Laj come up before, but anytime people report it they have never given me a log - so I haven't been able to see exactly what's going.
The bot should be pulling Laj at a distance so that he's off the initial platform. So the bot *shouldn't* be getting stuck there.
Once the combat starts, Laj will teleport randomly around the room onto other platforms - which I have no control over anything that happens at this point since the Combat Routine has taken control.
The only solution I could think of is to use a behavior that will prioritize killing Laj so that he's dead before he can teleport. Either that or find a way to disable charge in your Combat Routine.
 
Heyhey,

is there a way to let the bot Res @ SpiritHealer IF he dies bc HB crashed or something?
Some toon endet by running into the sea over and over after they repaired @ Ba'kari
 
Heyhey,

is there a way to let the bot Res @ SpiritHealer IF he dies bc HB crashed or something?
Some toon endet by running into the sea over and over after they repaired @ Ba'kari
Since there's no death support for dungeons, Honorbuddy will naturally resurrect at a Spirit Healer unless the profile you're using has the death routine disabled.
 
Hm i see they are at the SH with sickness - but what is the reason the characters sometimes run inteo the ocean?
Im running GunDrak and DrakTharon Random @ Horde

BTW the character doesn fly he uses ground mount?
 
Last edited:
I think so, my toon would try to cross the bridge but the bridge was never activated and my toon would fall into the waters and run back up the hill and attempt to cross the bridge again and fall and would do this in circles repeatedly.
I am having the exact same problem, once in 3-4 runs. He falls in the waters and attempts to cross the bridge again and again falling in the water each time.
Gundrak-Moorabi
 
Hm i see they are at the SH with sickness - but what is the reason the characters sometimes run inteo the ocean?
Im running GunDrak and DrakTharon Random @ Horde

BTW the character doesn fly he uses ground mount?
Like I said, there's no death support for the dungeons.
When the bot dies and resurrects, it tries going to the next dungeon coordinate with 9/10 is somewhere in the middle of the ocean somewhere.
This will happen if you die in any dungeon.
 
I am having the exact same problem, once in 3-4 runs. He falls in the waters and attempts to cross the bridge again and again falling in the water each time.
Gundrak-Moorabi
The next time it happens, stop the bot and check to see if all of the altars are activated.
If there's one (or more) that's not then your character is taking longer than a minute to kill a boss which is causing the code to continue without you.
 
The next time it happens, stop the bot and check to see if all of the altars are activated.
If there's one (or more) that's not then your character is taking longer than a minute to kill a boss which is causing the code to continue without you.
Sometimes it takes longer than a minute to kill a boss because the character is standing next to the balcony when fighting the boss, and mobs throw me into the water.
 
Sometimes it takes longer than a minute to kill a boss because the character is standing next to the balcony when fighting the boss, and mobs throw me into the water.
Once my Horde testers are finished leveling, I'll see about adding a coordinate that will pull the bot back to the base of the steps during the Moorabi encounter.
 
Seriously.. Some people are just plain dumb and restarted..! Botting 24/7 ?! They're asking for a ban. It's 1 person farming Halls of lightning with 6 characters. Sigh giving Blizzard the attention of this makes me angry. BOT SAFE and smart and not stupid like this :/ Greedy fuckers :mad:
 
Hey Echo great profiles, im runing 2 warriors in tol'vir and i love it :)
Can you tell me if i can cast spell on exact location like here, this is like last pull of tolovir
Can i use leap strike on last hotspot that would save me half minute especialy if i get randomly dismounted?

<CustomBehavior File="RunLikeHell" AllowCombat="false" >
<Hotspot X="-11100.14" Y="-1359.349" Z="10.80681" />
<Hotspot X="-11076.18" Y="-1385.427" Z="10.93777" />
<Hotspot X="-11056.32" Y="-1378.931" Z="10.80679" />
leap strike
<Hotspot X="-11032.46" Y="-1377.451" Z="10.80562" />
</CustomBehavior>
 
I downloaded and used a few profiles:

Grim Batol
Enters the dungeon normally cleans the trash without a problem, but when he comes out of the dungeon and updates it and it comes in a dungeon runs into the wall at the next round.

The Vortex Pinnacle
No problem.

Stratholme
Not always comes in ziggurats, however the gateway to the slaughterhouse closed, and you can not go there.
 
Hey Echo great profiles, im runing 2 warriors in tol'vir and i love it :)
Can you tell me if i can cast spell on exact location like here, this is like last pull of tolovir
Can i use leap strike on last hotspot that would save me half minute especialy if i get randomly dismounted?
Hm, the behavior won't support anything but the hotspots.
However, you can change the method.

Ex:
PHP:
<DisableBehavior Name="Combat" />
<RunTo X="-11100.14" Y="-1359.349" Z="10.80681" />
<RunTo X="-11076.18" Y="-1385.427" Z="10.93777" />
<RunTo X="-11056.32" Y="-1378.931" Z="10.80679" />
<If Condition="!Me.Mounted &amp;&amp; Me.Class == WoWClass.Warrior" >
	<CustomBehavior File="Misc\RunLua" Lua="CastSpellByID(6544)" />
	<CustomBehavior File="SpellLocation" X="-11032.46" Y="-1377.451" Z="10.80562" />
	<Else>
		<RunTo X="-11032.46" Y="-1377.451" Z="10.80562" />
	</Else>
</If>
<EnableBehavior Name="Combat" />
<CustomBehavior File="WaitTimer" WaitTime="500" /> <!-- Lag the bot for behavior processing -->

I haven't tested the code above, so I'm not entirely sure if it'll work as intended.
You may need to add some wait timers between the cast code and SpellLocation behavior.
 
Last edited:
I downloaded and used a few profiles:

Grim Batol
Enters the dungeon normally cleans the trash without a problem, but when he comes out of the dungeon and updates it and it comes in a dungeon runs into the wall at the next round.

The Vortex Pinnacle
No problem.

Stratholme
Not always comes in ziggurats, however the gateway to the slaughterhouse closed, and you can not go there.
These issues were fixed, but in different profiles. Lol.

Ex: The "Deathcharger's Reins" profile has code checks that ensures all the acolytes in the ziggurats are dead before continuing.
Then once it gets into the slaughter house it "seeks and kills" each abomination if any are still alive after the pull.

I just haven't got around to porting these fixes over to the other profiles.
 
I have the problem only occurs with the kills acolytes in the ziggurats not always kill them. And the abomination, and the Ramstein normally kills
 
DrakTharon right befire Novos Boss - there is a room with Spider that run away @ LowHP
The Bot rans after them and sometimes STUCK because the spider keep attacking the character BEHIND the spiderwebs and the character cant attack because LoS.
Maybe let the toon wait in the middle of the room or smth
 
DrakTharon right befire Novos Boss - there is a room with Spider that run away @ LowHP
The Bot rans after them and sometimes STUCK because the spider keep attacking the character BEHIND the spiderwebs and the character cant attack because LoS.
Maybe let the toon wait in the middle of the room or smth
Yea had that happen to me aswell - that's a good solution, I have no clue how to code such a thing though :D
 
Thx for help works like charm, only problem now is not selling Roasted Beef And Sparkling oasis water i was thinking about plugin destroying it because deleting from protected items doesn't work. Also can't set specific mount in settings, sometimes stuck on mamoth and dismount;p
 
Back
Top