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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[Request] Blood DK

stlee

New Member
Joined
Mar 27, 2012
Messages
9
Hello everyone,
I am looking for a custom class that makes only two things:
- Horn of winter
- Bone Shield

so that ca manages itself while I tank.
bone shield that starts itself when the cd is up and that there is more of stack and horn of winter so has to have 100% of the time.

if that does not exist, would there a charitable soul who could help me code this to be some of you, this should not pose any problems.

Thank you to the person or persons who will give me a link, or I will code this little custom class.
 
If you only need 2 things done automatically it feels like u could do those things manually also :)

Just create a macro for both those spells and your done. :)

And also, both boneshield and horn of winter is really easy to notice if they are not up (ex with addons). You could check out Curse.com and see if you can find anything useful.
 
thank you for that info, however, it also dps.

I'm just looking for a cc these two little things.

an addon does not interest me at all.
 
thank you for that info, however, it also dps.

I'm just looking for a cc these two little things.

an addon does not interest me at all.

ohhh sorry, i didnt get it.. u may ask an cc coder to do it.. its not that hard (for them)
 
If you take a look at a lazyraider CC, then look at a blood dk cc, I imagine this would be really easy to do yourself. I would do it for you, but with the new rule regarding coding I don't want to step on anyone toes.
You could literally cut everything class-related out of any lazyraider CC, then paste those 2 things from a blood cc into the lazyraider cc, and you'd be set.
 
i would put this in the develop section and someone may whip up a short code for u.
 
Didn't realize people were so dumb they used bots to play their character while they raid.
 
relevant remarks and constructive
this kind of response has nothing to do on this topic.
you're pathetic
 
PHP:
using System;
using Styx;
using Styx.Combat.CombatRoutine;
using Styx.Helpers;
using Styx.Logic;
using Styx.Logic.Combat;
using TreeSharp;
namespace BSHW
{
    class DeathKnight : CombatRoutine
    {


        public override sealed string Name { get { return "BSHW"; } }
        public override WoWClass Class { get { return WoWClass.DeathKnight; } }
        private static LocalPlayer Me { get { return ObjectManager.Me; } }
        public override bool WantButton { get { return false; } }
        private string _spell = null;

        public override void Combat()
        {
            _spell = "Horn of Winter";

            if (!Me.ActiveAuras.ContainsKey(_spell) && SpellManager.CanCast(_spell))
            {
                Logging.Write(_spell);
                SpellManager.Cast(_spell);
            }
            _spell = "Bone Shield";
            if ((!Me.ActiveAuras.ContainsKey(_spell) || Me.ActiveAuras[_spell].StackCount <= 1) && SpellManager.CanCast(_spell))
            {
                Logging.Write(_spell);
                SpellManager.Cast(_spell);
            }
        }

        public override void Initialize()
        {
            Logging.Write("BSHW initialized.");
        }
    }
}
Credits to Stormchasing (this was written within 5 mins, without using templates or copy / pasting anything. if there are any matches between this and another CC i can't do anything cause the API is limited and i do not reinventing the wheel)
should work, never tested.
If any issues ... report back.
 
Back
Top