Jump to content

Paladin


Recommended Posts

So I want my paladin to heal when ever my health get below a certain percent. But I dont know how to. Right now he can only heal after the fight, I want the paladin to heal during the fight.

Link to comment
Share on other sites

What type of paladin is it?

 

Attached is an example of how to cast Flash Heal when your health is below 50%. To make sure it is checked before other spells, keep it's priority high in your fight class.

pallyhealexample.xml

Link to comment
Share on other sites

If you're doing a healing bot for your whole party, the conditions would be different. If you're soloing, you will use heal spells around the same type as what I posted.

Link to comment
Share on other sites

<FightClass xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<FightClassGeneralSettings>
<FightClassName/>
</FightClassGeneralSettings>
<FightClassSpells>
<FightClassSpell>
<SpellName>Denounce</SpellName>
<FightClassConditions>
<FightClassCondition>
<ContionType>HolyPower</ContionType>
<Param xsi:type="FightClassConditionNumber"/>
</FightClassCondition>
</FightClassConditions>
<Priority>2</Priority>
</FightClassSpell>
<FightClassSpell>
<SpellName>Flash of Light</SpellName>
<FightClassConditions>
<FightClassCondition>
<ContionType>HealthPercent</ContionType>
<Param xsi:type="FightClassConditionNumber">
<Type>Smaller</Type>
<Value>80</Value>
</Param>
</FightClassCondition>
</FightClassConditions>
<Priority>1</Priority>
<CombatOnly>false</CombatOnly>
</FightClassSpell>
</FightClassSpells>
</FightClass>

 

I dont know how to attach file so just paste this into a notepad and save it  as a .XML file

Link to comment
Share on other sites

than is there something that I might of done wrong?

I cant make him heal during combat. Because something monster just come in 3 packs ,and I want my paladin to take them out but I dont know how to make him heal during combat.
I only know how to heal after combat

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...