Still missing WoG on other teammates... can't figure it out. Hopefully soon.
Does this use Holy Light with Crusade even outside of combat rather than wasting food? My current CC doesn't do that, and I want to find one that does.
Nope... I've been trying to add the rest behavior but it doesn't seem to work. There's no longer a section for "rest" in the default Singular now.![]()
[Class(WoWClass.Paladin)]
[Behavior(BehaviorType.Rest)]
[Context(WoWContext.All)]
this should work, singular (in it's current revision) still supports the rest behaviorSure?
Code:[Class(WoWClass.Paladin)] [Behavior(BehaviorType.Rest)] [Context(WoWContext.All)]
This could work?
public enum BehaviorType
{
Rest = 0x1,
PreCombatBuffs = 0x2,
PullBuffs = 0x4,
Pull = 0x8,
Heal = 0x10,
CombatBuffs = 0x20,
Combat = 0x40,
// this is no guarantee that the bot is in combat
InCombat = Heal | CombatBuffs | Combat,
// this is no guarantee that the bot is out of combat
OutOfCombat = Rest | PreCombatBuffs | PullBuffs | PreCombatBuffs,
All = Rest | PreCombatBuffs | PullBuffs | Pull | Heal | CombatBuffs | Combat,
}
[Class(WoWClass.Paladin)]
[Spec(TalentSpec.RetributionPaladin)]
[Behavior(BehaviorType.Rest)]
[Context(WoWContext.All)]
public static Composite CreateRetributionPaladinRest()
{
return new PrioritySelector(
new Decorator(
ret => (!StyxWoW.Me.IsInRaid || !StyxWoW.Me.IsInParty) && !StyxWoW.Me.HasAura("Drink"),
new PrioritySelector(
Spell.BuffSelf("Word of Glory", ret => StyxWoW.Me.HealthPercent <= SingularSettings.Instance.Paladin.WordOfGloryHealth &&
(StyxWoW.Me.CurrentHolyPower >= 1 || StyxWoW.Me.ActiveAuras.ContainsKey("Divine Purpose"))),
Spell.Heal("Flash of Light",
ret => StyxWoW.Me.HealthPercent < SingularSettings.Instance.Paladin.FlashOfLightHealth && StyxWoW.Me.ManaPercent > 20),
Spell.Heal("Holy Light",
ret => StyxWoW.Me.HealthPercent < SingularSettings.Instance.Paladin.HolyLightHealth && StyxWoW.Me.ManaPercent > 20)
)
),
Rest.CreateDefaultRestBehaviour(),
Spell.BuffSelf("Crusader Aura", ret => StyxWoW.Me.Mounted && !StyxWoW.Me.HasAura("Crusader Aura"))
);
}
no matter how i go about it even with basic singular pally class never loads, reg singular or yours... other classes work fine though
One more thing. Is it hard tom implement this?
http://www.thebuddyforum.com/honorb...request-ultraxion-push-button.html#post473984
Was this implemented?
Hello
I'm having an issue with Consecration in PvP. It seems to be cast randomly, no matter how many targets are near. I've tried to set Consecration count to 0 and it's still being used, tried 50 - still the same. Generally, I'd prefer to not use Consecration and Divine Storm in BGs at all, as they're being cast mostly inappropriately which looks quite bottish. Could you suggest me how to do disable these two spells?
Thank you in advance
That'd be greatNo. I will let the Singular devs implement that if they choose. Yell at them on the main Singular thread.
Thanks, I forgot to change those back to the settings when I got done testing. I'll add a better check to see if we should Divine Storm at all, and make it use the setting for Consecration. I'll be doing testing tonight with Ret to see if I can't figure out the TV issue too.