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

[SUPER EASY][REQUEST] Recuperate plugin

FBOMB

New Member
Joined
Oct 29, 2010
Messages
103
Reaction score
0
looking for a simple plugin if somone has time.... all i want it to do is have an ON/ OFF switch,,, and cast recuperate when i have 4 and 5 combo points on a target

this will kinda be a starter plugin for myself to look at code and see how it works for my char,.,,,

Ty ahead of time if somone takes on this simple request :)
 
no one intrested in this... or is it to complex?
 
why don't you open a CC and see how they keep track of combo points and how they cast the spell.
then dump that code into the pulse section of a plugin
 
Code:
   if (Me.ComboPoints >= 5 && SpellManager.CanCast("Recuperate"))
                    {
                        SpellManager.Cast("Recuperate");
                    }

here it is, my suggestion is download Mr.Autofight, and remove everything inside of Pulse()
and replace it with the code above, then have 2 rouge CC's installed, when it asks what one you want to use, close out of it, that will cause HB not to load any CC, but still leave everything else on, then you should be good to go.
 
My rogue CC keeps recuperate up with an on off switch already.
 
Back
Top