Hi, I was wondering how to put in a condition that activates ability A after X stacks of Ability B? e.g. three stacks of harnessed shadows for jedi shadow then he cast's telekinetic throw? Tried adding (3) but still activated telekinetic throw with only one stack of HS. Thanks in advance. if (MercCast("Telekinetic Throw", !CTDebuffs.Contains("Harnessed Shadows (3)"))) return true;
if (MercCast("Telekinetic Throw", !CTDebuffs.Contains("Harnessed Shadows (3)"))) return true; You are saying use Telekinetic throw when you DO NOT have the debuff harnessed shadows. if (MercCast("Telekinetic Throw", HaveBuffStacks("Harnessed Shadows", 3))) return; Think that's what you wanted. At work just checking forums so nothing to reference to. Walter