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

Truman422-Death Knight-CC

Yeah, sure. "Hey, what if I create a CC? Oh, wait... I don't know how to do 95% of the stuff behind it, so let's steal the code! Oh and if you could donate some money for stealing other people's work without even adding a fucking comment in the source code, I'd love it."
if you wish to make a case of him using your code without permission, then send me a pm and explain your case. otherwise dont post in this thread again, next time its a two day ban.
 
Yeah the deathgrip is annoying, it steals the aggro from tanks the whole time. Please edit that out so we can use it manually, or just keep it for blood atm.

look for this part of the code in the actual CC

Code:
 if (Me.CurrentTarget.Distance > 10)
                    {
                        CastSpell("Death Grip");
}

this is under
Code:
else if (Settings.UseFrost)

so if you want delete the death grip code.

Only reason for posting this. It is still in his updated CC and will still cause you range issues/taunting the boss/mobs.
 
Just did that thank you, works like a charm now. Downed both Occu'thar and Al'Akir today with no problems whatsoever with range.
 
I won't be updating this anymore. We can wait for cowdude to create one. Seems like he doesn't like other people using his stuff even though he's not reachable. Can't really blame him though I guess. We can wait for him to create a death knight one for us.
 
Sometimes the water flows in the opposite direction ;)

Hope you guys sort it out.
 
Yeah, sure. "Hey, what if I create a CC? Oh, wait... I don't know how to do 95% of the stuff behind it, so let's steal the code! Oh and if you could donate some money for stealing other people's work without even adding a fucking comment in the source code, I'd love it."


/cast Strangulate
 
it do not really work in bg.. the hero wont run to his target.
 
Sorry about the noobish questions, but I notice a lot of stuff is being obtained through SVN which too me i have no damn clue about on how to save CC's I've opened a few current cc's to see that work around but I don't know if I got it correct or not? Do you just copy and paste to the new cc folder, save as a .cs and rise and repeat?
 
I noticed that this one out of the DK CC's I've tested is the best to use for soloing the turtles in firelands.
 
to solo anything in FL just bind HB to any button and spam... I personally use mouse wheel up you don;t need a cc to farm trash
 
How do i make sure that it Does use Death grip. kinda sad when your not the tank. any can help me?
 
The Death grip parts annoys me, i love this cc and using it alot but it keeps using DG on boosses and thats making our tank a sad panda nad got me kicked a few times from group? any way of remove it?
 
The Death grip parts annoys me, i love this cc and using it alot but it keeps using DG on boosses and thats making our tank a sad panda nad got me kicked a few times from group? any way of remove it?
I noticed a few people asking this question so, to fix this issue...

If you edit TrumanDeathKnightCC.cs (Use Notepad, Notepad++, or any document editing software), find the section of code that begins on line #303:
Code:
                    if (Me.CurrentTarget.Distance > 10)
                    {
                        CastSpell("Death Grip");
                    }
and either delete it or comment it out by placing "//" at the start of each line.

If you comment it out, it should look like this:
Code:
                    //if (Me.CurrentTarget.Distance > 10)
                    //{
                        //CastSpell("Death Grip");
                    //}
Once that is done, it will no longer be able to use Death Grip.
 
The Death grip parts annoys me, i love this cc and using it alot but it keeps using DG on boosses and thats making our tank a sad panda nad got me kicked a few times from group? any way of remove it?

You can do the above, or just change:
Code:
                    if (Me.CurrentTarget.Distance > 10)
                    {
                        CastSpell("Death Grip");
                    }

To this:
Code:
                    if (Me.CurrentTarget.Distance > 10 && !Me.IsInInstance)
                    {
                        CastSpell("Death Grip");
                    }

That will make it so it uses it if you're on your own, or not in an instance.
 
Or just simply delete those lines of code.

Btw truman your dk dps cc are the ones I use for raiding and I am 4/7 hm atm with average dps parses of 26k with only an ilvl of 372.
Hope you will keep this cc maintained as the fel series likes to crash at random and since fel seems to inject lua it makes wow crash at times mid fight.

With your cc it never crashes. :D
 
Hi Truman

Do you have any plans to do any CC for pvp?

Ronkan
 
Back
Top