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!

Help tweaking routine pls.

PEWPEW420

New Member
Joined
Aug 4, 2016
Messages
9
Trying to add plasmatize to this routine and I can't get it to cast without it just spamming it. I've tried other ways like spell.Dot but havent found a way to make it work.



public override Composite SingleTarget
{
get
{
return new PrioritySelector(
//Movement
CombatMovement.CloseDistance(Distance.Melee),
new Decorator(ret => Me.ResourcePercent() < 60,
new PrioritySelector(
Spell.Cast("High Impact Bolt", ret => Me.HasBuff("Ionic Accelerator")),
Spell.Cast("Hammer Shot")
)),

Spell.Cast("High Impact Bolt"),
Spell.Cast("Fire Pulse"),
Spell.DoT("Incendiary Round", "", 12000),
Spell.Cast("Shockstrike"),
Spell.Cast("Ion Pulse"),
Spell.Cast("Plasmatize", ret => !Me.CurrentTarget.Hasbuff("Plasmatize")),
);
}
}

public override Composite AreaOfEffect
 
When you hover over the target who has Plasmatize, what is the EXACT name of the debuff? You have it as "Plasmatize", but sometimes it's something like "Burning (Plasmatize)" or even just "Burning". Double check that first.
 
Thanks for the reply. It is Plasmatize. Think I got it figured out. I was changing code in the routine and hitting reload on buddywing and apparently reload only reloads the profile so it was never using the changes i made in the code......the code that ended up getting it done was spell.Dot("Plasmatize", "Plasmatize"),
 
Back
Top