• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Combat Routine Syntax Help

    Discussion in 'Buddy Wing Forum' started by mastorione, Jan 4, 2014.

    1. mastorione

      mastorione New Member

      Joined:
      Nov 18, 2013
      Messages:
      8
      Likes Received:
      0
      Trophy Points:
      1
      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;
       
    2. walter

      walter Active Member

      Joined:
      Jun 25, 2012
      Messages:
      1,112
      Likes Received:
      10
      Trophy Points:
      38
      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
       

    Share This Page