No, it will not do anything while flying, although I could add a check for that if it's a problem.does it attack when it's in the air? like 4 yards above ground and it's getting attacked?
if (!Me.IsAlive || Me.IsFlying || Me.IsCasting
|| (Me.Mounted && !Battlegrounds.IsInsideBattleground))
{
return; // don't interrupt bot in these conditions
}
can you input this to the bot?No, it will not do anything while flying, although I could add a check for that if it's a problem.
Code:if (!Me.IsAlive || Me.IsFlying || Me.IsCasting || (Me.Mounted && !Battlegrounds.IsInsideBattleground)) { return; // don't interrupt bot in these conditions }
Not exactly, the code was just showing where it disabled plugin for flying.can you input this to the bot?
basically sometimes AB is doing nothing because of the character being attacked. if its just 4 yards down why not jump down kill it and continue what it needs to do![]()
I added max levels lower and set default to 5. I am running ArchaeologyBuddy with no issues now. Parameters 'MaxLevelsAbove' and 'MaxLevelsBelow' can be adjusted for your farming needs =). Updated original post with latest release.
You can use an addon called PassLoot.Would it be hard to make it roll on loot based on who autoequip needs the item the most in the group.
Or just support to automatically press greed.
This ia very annoying issue with RAF atm. Both characters just stand there and wait out the roll timer.
With the bot stopped, target nearby units and click "Unit Check" button with CombatHelper selected. It should either say "Target is OK" or give a reason why it is a good/bad target. Also, make sure to save and recompile plugins after making changes.Set to not pull targets that are greater than 3 levels below current char level, but CS is still pulling anything and everything in range. Disabled CS to check to see if it was the CC and nothing was targeted more than 3 levels below current char level.
I haven't tested with MrAutoFight. You can comment out the part of the code that clears target (search for "ClearTarget"). Also, could try with the FilterOnly option set to true.After re-reading the first post, I gather that this doesn't work with MrAutoFight? I'm only asking because I tried it with that plug-in and it seemed to keep targeting, then clearning target, then targeting again causing the bot to just stand there as if I were tabbing through targets.
You can use an addon called PassLoot.
FollowDistance = UseAutoAttack() ? 15 : 25; // Distance before moving to leader (RaF only)
That is called the conditional operator. In the example, the follow distance is set to 15 for melee and 25 for ranged.I do have a question, can you explain what this variable structure means/does:
Code:FollowDistance = UseAutoAttack() ? 15 : 25; // Distance before moving to leader (RaF only)
That is called the conditional operator. In the example, the follow distance is set to 15 for melee and 25 for ranged.
Thanks for the plugin seems to work very well the only issue i have come across is that sometimes it will target trapped mob on my hunter. Not sure if this is plugin related or CC related.