no there is not.Hi guys,
I understand the basic CC from "How to Write a Custom Class, a Guide for Beginners."
Now i want to make my cc in TreeSharp
Are there any simple cc writing in TreeSharp that i can learn?
Thank you.
Can you pls let me know a simple treesharp cc?: / I'm not a expert myself but I'm sure there is something you could read to help you out.....
public Composite PriestDiscCombatSolo()
{
return new Sequence
(new PrioritySelector
(EnsureTarget(),
CreateMoveToLosBehavior(),
CreateFaceTargetBehavior(),
BuffSelf
("Power Word: Shield",
ret => !Me.HasAura("Weakened Soul") && !Me.HasAura("Power Word: Shield")),
Cast
("Flash Heal",
ret => Me.HealthPercent < 70),
Cast
("Archangel",
ret => Me.Auras["Evangelism"].StackCount > 4),
Cast
("Holy Fire",
ret => !Me.CurrentTarget.HasAura("Holy Fire")),
Cast
("Smite",
ret => Me.CurrentTarget)));
}