Thunderage
New Member
- Joined
- Jan 13, 2011
- Messages
- 84
- Reaction score
- 0
It seems like the original poster isn't very active on these forums.. It's a shame. This CC is fantastic.
Probably after patch today it will be a dead CC...
It seems like the original poster isn't very active on these forums.. It's a shame. This CC is fantastic.
Probably after patch today it will be a dead CC...
Ok after 3 hours, I managed to cook up a fix :
I disabled the pull, blacklist, target, behind thing. It worked fine on training dummies, I haven't tested it on PvP,Instances or on real mobs yet. Have fun testing =)
Ok I noticed some things, I'm trying to fix so it does Crusader Strike on single target then Hammer of the Righteous on AoE. Decrease the hp needed on flash of light (it's too much really)
You got to use some cooldowns yourself like Avenging Wrath and Guardian of the Ancient Kings
Besides that I'm having a blast in PvP.
I wish this was good for 85 tanking single and multi target.
I gave it a whirl when it was first out and you don't want to try it.
It pulls everything even neutral mobs.
I am using this CC as I consider is the most efficient, quickest, and most human-like CC available at the moment for prot paladins. However, at the moment I am not grinding -- I am running quests. This is a huge issue as the bot has a tendancy to run long distances in order to pull pointless adds. I poked around in code for a few minutes and found a line which, when removed, greatly improved this for me.
If you wish to stop the long-distance pulling, make the following changes (WARNING, if you're aoe grinding this will probably make the bot worse):
ProtPally.cs
Find
Code:float fMaxDist = 30.0f; if (SpellManager.CanCast(HAND_OF_RECKONING)) fMaxDist += 30.0f;
Remove
Code:if (SpellManager.CanCast(HAND_OF_RECKONING)) fMaxDist += 30.0f;
This fixed the biggest issue for me, however you can also tweak the following line to change the add pulling distance:
Change the 30.0f to whatever distance you want.Code:float fMaxDist += 30.0f;
Thank you author for the fantastic CC!
Can someone show me an example of how to get it to use kings in place of might, I tried tinkering with the code, but can't seem to figure it out. Out of the box it uses might. +Rep for help!
private const int BLESSING_OF_MIGHT = 19740;
private const int BLESSING_OF_MIGHT = 20217;
If you want it to use kings instead of might, search for:
Code:private const int BLESSING_OF_MIGHT = 19740;
replace "19740" with "20217" i.e
Code:private const int BLESSING_OF_MIGHT = 20217;
cheers.