• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Truman422-Death Knight-CC

    Discussion in 'Archives' started by Truman422, Aug 21, 2011.

    1. CodenameG

      CodenameG New Member

      Joined:
      Jan 15, 2010
      Messages:
      38,369
      Likes Received:
      231
      Trophy Points:
      0
      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.
       
    2. imdasandman

      imdasandman Active Member

      Joined:
      Feb 2, 2011
      Messages:
      1,207
      Likes Received:
      6
      Trophy Points:
      38
      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.
       
      amputations likes this.
    3. amputations

      amputations Active Member

      Joined:
      Jan 6, 2011
      Messages:
      2,262
      Likes Received:
      11
      Trophy Points:
      38
      Just did that thank you, works like a charm now. Downed both Occu'thar and Al'Akir today with no problems whatsoever with range.
       
    4. Truman422

      Truman422 Member

      Joined:
      Jan 10, 2011
      Messages:
      198
      Likes Received:
      14
      Trophy Points:
      18
      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.
       
    5. hi1674

      hi1674 New Member

      Joined:
      Jan 15, 2010
      Messages:
      1,637
      Likes Received:
      5
      Trophy Points:
      0
      Sometimes the water flows in the opposite direction ;)

      Hope you guys sort it out.
       
    6. spacerideruk

      spacerideruk New Member

      Joined:
      Oct 31, 2010
      Messages:
      50
      Likes Received:
      0
      Trophy Points:
      0
    7. flippyirl

      flippyirl New Member

      Joined:
      Feb 9, 2010
      Messages:
      62
      Likes Received:
      0
      Trophy Points:
      0

      /cast Strangulate
       
    8. NaioN

      NaioN New Member

      Joined:
      Jul 28, 2011
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      il try it now in bg. if its good =D
       
    9. NaioN

      NaioN New Member

      Joined:
      Jul 28, 2011
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      it do not really work in bg.. the hero wont run to his target.
       
    10. amputations

      amputations Active Member

      Joined:
      Jan 6, 2011
      Messages:
      2,262
      Likes Received:
      11
      Trophy Points:
      38
      Omfg its made for lazyraider/combat bot, not AFK. NON-Movement CC
       
    11. reddewman

      reddewman New Member

      Joined:
      Feb 13, 2010
      Messages:
      533
      Likes Received:
      0
      Trophy Points:
      0
      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?
       
    12. flipboi001

      flipboi001 Member

      Joined:
      Sep 30, 2010
      Messages:
      73
      Likes Received:
      1
      Trophy Points:
      8
    13. amputations

      amputations Active Member

      Joined:
      Jan 6, 2011
      Messages:
      2,262
      Likes Received:
      11
      Trophy Points:
      38
      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.
       
    14. imdasandman

      imdasandman Active Member

      Joined:
      Feb 2, 2011
      Messages:
      1,207
      Likes Received:
      6
      Trophy Points:
      38
      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
       
    15. burgermund

      burgermund New Member

      Joined:
      Jan 15, 2010
      Messages:
      20
      Likes Received:
      0
      Trophy Points:
      0
      How do i make sure that it Does use Death grip. kinda sad when your not the tank. any can help me?
       
    16. SirHumpalot

      SirHumpalot New Member

      Joined:
      Jun 23, 2011
      Messages:
      113
      Likes Received:
      1
      Trophy Points:
      0
      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?
       
    17. Algamish

      Algamish New Member

      Joined:
      Mar 7, 2011
      Messages:
      180
      Likes Received:
      1
      Trophy Points:
      0
      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.
       
    18. Truman422

      Truman422 Member

      Joined:
      Jan 10, 2011
      Messages:
      198
      Likes Received:
      14
      Trophy Points:
      18
      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.
       
    19. imdasandman

      imdasandman Active Member

      Joined:
      Feb 2, 2011
      Messages:
      1,207
      Likes Received:
      6
      Trophy Points:
      38
      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
       
    20. Ronkan

      Ronkan New Member

      Joined:
      Jan 15, 2010
      Messages:
      20
      Likes Received:
      0
      Trophy Points:
      0
      Hi Truman

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

      Ronkan
       

    Share This Page