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

grind plugin that targets mobs that party member have target

benbenno1991

New Member
Joined
Nov 11, 2013
Messages
31
Reaction score
0
there are heaps of grind plugins but no party grind plugins is there a plugin or can you change some settings so the grind profile will target any mob even if your party member has half killed a mob ?
 
Hasla assistant kinda does that in "assist mode"

The grinders certainly does that too.
 
Could anyone post the actual code to target party leader's target. It would be appreciated greatly.
 
Here is the code from Haslassitant. You can find it in combat.cs

#region mob targeting
if ((core.mpp() >= prefs.minMP && core.hpp() > prefs.minHP) || GetAggroCount() > 0)
{
if (prefs.assistMode && GetRealAggroCount() == 0)
bestMob = AssistPartyLeader(true);
else
bestMob = GetBestNearestMob(true);


if (bestMob == null)
{
if (!noTargets)
core.Log("No targets available");
noTargets = true;
}
else
{
core.Log("new target: " + bestMob.name + " ("+Math.Round(bestMob.dist(startX, startY, startZ))+"m from anchor)");
noTargets = false;
}
}
#endregion
 
Just note that Haslaassist engage the targets right away when in assist mode, it would be superb if it waits until the mob is engaged :)
 
I cant code but muddle around and cant figure out how to make Haslassitant work. I was just looking for something simple like:
leader = getPartyLeaderObj();
if (leader.inFight)
{
code to target party leader's target
}
else
{
moveToPlayer(leader);
}

}

again, i am too dumb to make this work.
 
Back
Top