Killing Blow Question

Korrigan

Active Member
What would the code line be if I wanted to use a finishing blow like fox overtakes the hare or the Pal/DK ability useable only when the mob is below 20%?

Note: I'd like to use this on the normal attacks, nothing fancy. ;)
 

sylkkdaskr20

Active Member
Im not the best coder, and i could be wrong, but you might try

Code:
if "${Me.TargetHealth}>=20 && ${Me.Ability[${KillingBlow}].IsReady}"
{
          Me.Ability[${KillingBlow}]:Use
}
Of course you have to define Killing Blow in your variables and such, i could be wrong tho. =)
 

Korrigan

Active Member
I've been digging and making adjustments to Vgsham and Kbot and figured this out earlier this morning.

Either way, thank you for the post sylkkdaskr20.
 
Top Bottom