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

Frost dk pulling off tank !!

roofeano

New Member
Joined
Jan 3, 2012
Messages
1
Reaction score
0
How do i turn off deathgrip ??? On frost dk !!

How do i turn off deathgrip on my frost dk keeps pulling off the tank !!!!!!!!!!:
 
Last edited:
he's using singular for sure. i`m experiencing exactly the same issue with my unholy DK
 
Last edited:
you can try another custom CC

there are many :)
 
it`s smart ass answer for sure.. but not the one that customer needs. "brakes in my car ain working... buy another car".. seriously?
 
it`s smart ass answer for sure.. but not the one that customer needs. "brakes in my car ain working... buy another car".. seriously?

The answer is great, because the car is for free, so why not.
 
it`s smart ass answer for sure.. but not the one that customer needs. "brakes in my car ain working... buy another car".. seriously?

1 day mute to solve your behaviour issues
 
go into your Singular folder>class specific> Death knight> open the common.cs with word tab.

Delete everything in the upper half regarding death grip.

Should be this part:

[Class(WoWClass.DeathKnight)]
[Behavior(BehaviorType.Pull)]
[Spec(TalentSpec.BloodDeathKnight)]
[Spec(TalentSpec.FrostDeathKnight)]
[Spec(TalentSpec.UnholyDeathKnight)]
[Spec(TalentSpec.Lowbie)]
[Context(WoWContext.Battlegrounds | WoWContext.Normal)]
public static Composite CreateDeathKnightNormalAndPvPPull()
{
return
new PrioritySelector(
Movement.CreateMoveToLosBehavior(),
Movement.CreateFaceTargetBehavior(),
new Sequence(
Spell.Cast("Death Grip",
ret => StyxWoW.Me.CurrentTarget.DistanceSqr > 10 * 10),
new DecoratorContinue(
ret => StyxWoW.Me.IsMoving,
new Action(ret => Navigator.PlayerMover.MoveStop())),
new WaitContinue(1, new ActionAlwaysSucceed())),
Spell.Cast("Howling Blast"),
Spell.Cast("Icy Touch"),
Movement.CreateMoveToMeleeBehavior(true)
);



This will only remove it for Frost and Unholy.

If it still casts it, delete the second part for blood too.
 
thank you very much man. that's the help i needed. will test it right away. +rep
 
Back
Top