Not flaming or anything but if you are in a 10 man using this your guild is not doing current content. Playing a paladin requires decision making that the bot cannot accomplish. For example if you have the new Apparatus trinket then you will be popping wings to stack it using HoW and popping Guardian about 5s into wings and then popping Zealotry to take advantage of the stack of newly acquired rating. It isn't something you can be lazy about. In addition you have so many other tools you can be using for raid utility, I am assuming since you want the bot to raid for you then you want it to HoSalv the highest dps automatically (assuming it isn't a tank in kitty form atm - yet another human decision). It just gets really complicated for raiding. I believe fps said he was going to address the Inquisition and cd's in a future release but imo it will never be for raiding unless you want to be sub par.
Nah I am not using it in any raids currently... but for instance doing my dailies, inq is a fundamental part of a ret paladin's rotation. And I don't see why this CC couldn't pull off just as much deeps as a normal human would do... heck CLCret practically tells you what to do, so a it is probably easy (for fps, not for me) to program in a rotation that is based upon the upkeep of one spell and prioritization while under different conditions. The only raid my guild does is 25man FL... and I do that manually, but all the 10mans are now puggable, so I can easily bot them if I just control my char's movement and targetting -shrug- Nevertheless, a ret paladin should be upkeeping inq any time he is in combat no matter whether it's a 10man or just doing dailies.
Both of you seem to know quite a bit about pally's. What do you guys do for a rotation? I see you guys talking about stacking procs, but I don't have any rotations usually I just mash buttons :s I've never played a pally so my knowledges is limited. I'm at level 85 so I have all spells. Thank you guys.
I could give you some insight, but you should check out the ElitistJerks website for a full rundown of rotations.
I will answer all questions as soon as I can. I've been extremely busy with 'life' over the last 3 weeks. My wife has been in and out of hospital over 2 weeks, I started a new job last week and I have other obligations to deal with. I've not given up on anything; development will continue - time permitting.
is there a chance that you can implent so that it uses crusader aura when it's mounted and then switched to ret aura in combat? thanks
I've installed this CustomClass like every other (also from you Fpsware) but hb doesnt show me this setup as a Paladin Class Setup... All others are listed, this one not... Why? :/ Everything is in "\CustomClasses\Fpsware Paladin"
Getting this kind of error when trying to open CC UI (happens with all FPSware CC's): this occurs mainly when starting a new HB, fresh install or just installed CC into Custom class folder. After HB restart everything is fine, untill I launch HB someday later and it happens again. Not that critical error, but annoying. Please fix or tell us how to avoid getting it. Thanks. I think I get it, looks like its trying to open UI file in the last opened folder with quest profile, insted of looking in the usual CC folder, dumbass =)
Yes, but u can simply fix it by copying that file in that folder. Next problem/bug. Link to thread: http://www.thebuddyforum.com/support-issues/31866-instancebuddy.html This error has something to do with this CC It keeps saying "[13:25:46:202] i'm not valid, still on loading schreen X" How to fix that? Really annoying I attached the log.
My Prot Paladin is using Ret Aura when put on 'automatic' instead of Devotion Aura. I would manually put it on Devo Aura, but then it doesnt switch to Crusader when flying like the automatic option does.
I have had this issue as well. The way i fixed this was that I allowed uielements.xml read and write privalages. It occurs again right after you try to load anything else. I notice that you say that its trying to read something else. What did you do to resolve?
I made a few minor modifications. Templar's Verdict on Divine Purpose proc: Combat.cs Code: #region Divine Purpose public class NeedToDivinePurpose : Decorator { public NeedToDivinePurpose(Composite child) : base(child) { } protected override bool CanRun(object context) { string spellName = "Templar's Verdict"; if (!Utils.IsCommonChecksOk(spellName, false)) return false; // Credit to Mord and Bobby for this snipit of code. const string DPBuffName = "Divine Purpose"; Lua.DoString("buffName,_,_,stackCount,_,_,_,_,_=UnitBuff(\"player\",\"" + DPBuffName + "\")"); string buffName = Lua.GetLocalizedText("buffName", Me.BaseAddress); if (buffName != DPBuffName) return false; return (Spell.CanCast(spellName)); } } public class DivinePurpose : Action { protected override RunStatus Run(object context) { string spellName = "Templar's Verdict"; bool result = Spell.Cast(spellName); return result ? RunStatus.Success : RunStatus.Failure; } } #endregion Don't forget to add this to the PrioritySelector, also in combat.cs: Code: // Divine Purpose new NeedToDivinePurpose(new DivinePurpose()), Use Holy Light when Crusader is on and health is above 70%: Classhelper.cs Code: public static class HolyLightCrusadeAllways { public static bool NeedToHolyLightCrusadeAllways { get { if (Self.IsBuffOnMe("Crusader") && !Self.IsHealthAbove(70)) return true; return false; } } public static void CastHolyLightCrusadeAllways() { string spellName = "Holy Light"; if (Me.IsMoving) Movement.StopMoving(); bool result = Spell.Cast(spellName); Utils.LagSleep(); //Utils.WaitWhileCasting(Utils.CastingBreak.HealthIsAbove, Settings.HolyLightHealth, Me); while (Me.IsCasting) { if (!Self.IsBuffOnMe("Crusader")) Spell.StopCasting(); } } } Paladin.cs Code: // Aura. Blessing (if soloing). Seal. if (ClassHelper.HolyLightCrusadeAllways.NeedToHolyLightCrusadeAllways) ClassHelper.HolyLightCrusadeAllways.CastHolyLightCrusadeAllways(); Great CC, thanks alot!
How about: only use exorzism, when its instant? i can only find options for 1+2+3+4+x adds always and never
Is possible that toon not running around pulling 5 mobs and then kill them? It is annoying with casters.
What version are you using? Mine only uses Exorcism on Art of War, there isn't even an option for it other than yes/no on Art of War. I believe it's v0.0.1.
FPS is it possible to turn off crusader aura everytime he mounts ? i just want him to use ret aura and nothing else i have tryed to set it to ret but it keeps turning on crusader when i mount in BG, looks stupid thnx