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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Fpsware Paladin

Why doesn't the CC use Crusader Strike? It doesn't use it and can't find anything about it in options. It would really speed up low level levelling if you got that in.

It does use Crusader Strike. Where is your log?

Thank you very much for this CC, but it would be awesome if Redemption was supported, because people spotted me as being a bot when I didn't resurrected them when they asked for it.

I'll see what I can do.

Hey, I get this error ( Check attachement ) when I start the bot and press "cc configuration". I have no idea what causes it, but when I click cc configuration I select FPSware and then the error come.
I've made a new folder in CC folder named: "Fpsware Paladin"!
And if I ignore that window and click the "x" the bot just stands there.

Start the bot and THEN use the CC config button. This will be resolved in the next release.
 
Putting the finishing touches on the latest build.

Nothing major, just minor tweaks and bug fixes. The only semi-major change is the addition of new combat movement code. The same code being used in my rogue CC; using target's interact range, "interact with target", backup if too close etc. This has been hugely successfuly in preventing any melee range bugs.
 
Hi fpsware!

I played alot with your CC and tweaked it a little bit, so that it fit my needs a little bit more. Maybe you are interested in the changes i made:

1.) Added Support for Inquisition:

#region Inquisition
public class NeedToInquisition : Decorator
{
public NeedToInquisition(Composite child) : base(child) { }

protected override bool CanRun(object context)
{
string spellName = "Inquisition";
if (!Utils.IsCommonChecksOk(spellName, false)) return false;

// Credit to Mord and Bobby for this snipit of code.
const string InqBuffName = "Inquisition";
Lua.DoString("buffName,_,_,stackCount,_,_,_,_,_=UnitBuff(\"player\",\"" + InqBuffName + "\")");
string buffName = Lua.GetLocalizedText("buffName", Me.BaseAddress);
if (buffName == InqBuffName) return false;
if (Me.CurrentHolyPower <= 2) return false;

return (Spell.CanCast(spellName));
}
}

public class Inquisition : Action
{
protected override RunStatus Run(object context)
{
string spellName = "Inquisition";
bool result = Spell.Cast(spellName);
return result ? RunStatus.Success : RunStatus.Failure;
}
}
#endregion

2.) Added Support for "Hand of Light" Proc:
If you have no Inquisition Buff, then use Inquisition. Else: use Templer's Verdict.

#region Hand of Light
public class NeedToHandOfLight : Decorator
{
public NeedToHandOfLight(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 HoLBuffName = "Hand of Light";
Lua.DoString("buffName,_,_,stackCount,_,_,_,_,_=UnitBuff(\"player\",\"" + HoLBuffName + "\")");
string buffName = Lua.GetLocalizedText("buffName", Me.BaseAddress);
if (buffName != HoLBuffName) return false;

return (Spell.CanCast(spellName));
}
}

public class HandOfLight : Action
{
protected override RunStatus Run(object context)
{
string spellName = "Templar's Verdict";

const string InqBuffName = "Inquisition";
Lua.DoString("buffName,_,_,stackCount,_,_,_,_,_=UnitBuff(\"player\",\"" + InqBuffName + "\")");
string buffName = Lua.GetLocalizedText("buffName", Me.BaseAddress);
if (buffName != InqBuffName) spellName = "Inquisition";



bool result = Spell.Cast(spellName);
return result ? RunStatus.Success : RunStatus.Failure;
}
}
#endregion

3.) Changed the priority order of certain spells. Inq > HoW > Exo > TV > CS > J > HW > Cons
// ************************************************************************************
// Important/time sensative spells here
// These are spells that need to be case asap

// Hammer Of Wrath
new NeedToHammerOfWrath(new HammerOfWrath()),

// Emergency Heal
new NeedToEmergencyHeal(new EmergencyHeal()),

// Rebuke
new NeedToRebuke(new Rebuke()),

// Inquisition
new NeedToInquisition(new Inquisition()),

// Avenging Wrath
new NeedToAvengingWrath(new AvengingWrath()),

// Zealotry
new NeedToZealotry(new Zealotry()),

// Hammer Of Justice
new NeedToHammerOfJustice(new HammerOfJustice()),

// TheArtOfWar
new NeedToTheArtOfWar(new TheArtOfWar()),

// Hand of Light
new NeedToHandOfLight(new HandOfLight()),

// Templars Verdict
new NeedToTemplarsVerdict(new TemplarsVerdict()),


// Divine Storm
new NeedToDivineStorm(new DivineStorm()),

// Crusader Strike / Hammer of the Righteous
new NeedToMainDPSSpell(new MainDPSSpell()),

// Judgement
new NeedToJudgement(new Judgement()),

// Holy Wrath
new NeedToHolyWrath(new HolyWrath()),

// Consecration
new NeedToConsecration(new Consecration())




Maybe you can add something similar to your CC. For me it works alot better (3892475935 DPS) ! :P
 
Last edited:
is this ok for lower lvl toons, for example LVL40 Pally Ret?
 
Last edited:
+rep what a nice cc nice facing no bottische look great for my reti pally!
 
I can't figure out how to set this up to only use WoG with 3 HP, can anyone help? ATM it just spams WoG at every 1HP.
 
I've got the problem that it doesn't cast exocism under Art of war... playing on French lang pack ... could it be the problem ?
 
I've got the problem that it doesn't cast exocism under Art of war... playing on French lang pack ... could it be the problem ?

Yes, it looks for the english description of the buff. Use english language client.

EDIT: This is on my 'to do' list of things to address.

I can't figure out how to set this up to only use WoG with 3 HP, can anyone help? ATM it just spams WoG at every 1HP.

No log file. No help. Read the first post!
 
Last edited:
Wonderful CC.I was gonna ask how to switch to Crusader aura, but I realized it automatically does when mounted. Ownage!

Thanks!
 
Just wanted to post and say props. This is the only CC I've been able to use and get RAF bot working at all decent.
 
Hey Fpsware I'm having the problem of HB not realizing the this CC is in the customclasses folder, yes it is named correctly.
 
Back
Top