HeroRotation

HeroRotation

5M Downloads

Arcan Mage Alpha [8.0.1.03] - Arcane Familiar is called when the buff already exists.

Darkmoded opened this issue ยท 2 comments

commented

Arcane Familiar is called when the buff already exists.

commented

I had the same issue.

The file is missing the check for the buff.
You need to add the spell ID for the buff:

ArcaneFamiliarBuff = Spell(210126),

Then for the code to summon the familiar it becomes:

-- summon_arcane_familiar
if S.SummonArcaneFamiliar:IsCastableP() and (Player:BuffDownP(S.ArcaneFamiliarBuff)) then
  if HR.Cast(S.SummonArcaneFamiliar) then return ""; end
end
commented

Fixed in 2ce2baa.