What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Combat Routine Syntax Help

mastorione

New Member
Joined
Nov 18, 2013
Messages
8
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
 
Back
Top