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

[REQUEST] Simple Hunter Combat Plugin

qlithe

New Member
Joined
Mar 16, 2010
Messages
198
Reaction score
0
Could someone make a plugin that will use feign death if youre stuck in combat without a target?
 
Well, what i need is a plugin to feign death when theres no mobs around, cause it gets stuck
 
Well, what i need is a plugin to feign death when theres no mobs around, cause it gets stuck

Try out my plugin, it is designed to fix the "stuck in combat" problem. Get the plugin version that matches Honorbuddy version you are using. If you want it to feign death instead of engaging targets you can attempt to modify the source code:

// In combat but don't have a good target
if (Me.Combat && !IsGoodTarget(Me.CurrentTarget, 40))
{
SpellManager.Cast("Feign Death");
return;
}
 
Back
Top