Jump to content

Bot not attacking same target with fast respawn rate


Recommended Posts

Hey, i'm trying to grind only 2 mobs on custom private server, but bot after killing them just stand still for 5minutes, waiting for nothing, respawn rate is super high, around 30-60seconds,
is there any hidden blacklist option to not attack same GUID mob? Help
Using Quester, with Grind inside, all i need is:
Stand still on one spot, and attack 2 mobs in 30 yards from me

Link to comment
Share on other sites

This should work but don’t thank me, thank droidz.

 

wManager.Events.FightEvents.OnFightStart += delegate(WoWUnit unit, CancelEventArgs cancelable)
            {
                cancelable.Cancel = true;
                if (unit.IsValid)
                    ObjectManager.BlackListGetUnitAttackPlayerGuidTime.Add(unit.Guid, DateTime.Now + TimeSpan.FromMinutes(10));
            };
Link to comment
Share on other sites

Smokie, what you just posted literally does the exact opposite.
Yes, there's a hidden blacklist. Just clear product session blacklist every 5 seconds and you should be fine @maukor

Link to comment
Share on other sites

3 hours ago, Matenia said:

Smokie, what you just posted literally does the exact opposite.
Yes, there's a hidden blacklist. Just clear product session blacklist every 5 seconds and you should be fine @maukor

As far as i remember, this is not a solution at all. Clearing blacklist will also clear all blacklisted things that you have put there for reason. Mobs that are blacklisted by profile, locations, mobs that are blacklisted because they are stuck/bugged and so on.

Link to comment
Share on other sites

As far as I know, Droidz added blacklist events a while ago.
Otherwise you can just subscribe to OnFightEnd and spawn a new thread that unblacklists that specific GUID 20 seconds after killing the mob.

Link to comment
Share on other sites

  • 10 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...