im trying currently to build a Knight, unfortunately its buring mana pots like hell :/
But there is a Skill named Mana Return which fills up your mana depending on how much "Holy Seal"´s you applied to your target.
Holy Seals are applied by a chance by normal Attacks when the "Holy Seal" buff is active on the player and thats the Problem i never know how much "Holy Seal"´s are activ so i never know when to cast Mana Return :/
my onSkillCast curently looks like this(not working...):
Code: Select all
<onSkillCast>
local target = player:getTarget();
target:updateBuffs();
if target:hasDebuff("Holy Seal %(3%)") then
player:cast("KNIGHT_MANA_ABSORPTION");
end;
</onSkillCast>
any suggestions?
-fluxus