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

Ancient Spears (Harpoon) SPAM

kaiserftk

New Member
Joined
Sep 29, 2012
Messages
8
Reaction score
0
Hi guys,

does anyone know the code to get trinity stop spamming AS ? i'd like to tell trinity to only cast it when my COE ring is on physical buff.

at the moment trinity is being retarded with that spell, instead of using WW it give higher priority to AS and spam it ...

I cannot find the condition syntax to put into my barbarian.cs for that.

Thanks for helping out :)
 
I keep looking but cannot find the coe syntax :/ looking into the different files , since we have the use convention only option into the GUI I know the variable exists somewhere ...
just missing that to obtain what i'm looking for

return !UseOOCBuff && !IsWaitingForSpecial && !IsCurrentlyAvoiding && CanCast(SNOPower.X1_Barbarian_AncientSpear) && Player.PrimaryResource >= 25 &&
// Only boulder toss as a rage dump if we have excess resource
(!Runes.Barbarian.BoulderToss.IsActive || Player.PrimaryResourcePct > 0.8) &&
CurrentTarget.HitPointsPct >= V.F("Barbarian.AncientSpear.MinHealthPct") &&
//COE Buff
VariableImlookingFor.IsActive ;
 
Hi guys,

does anyone know the code to get trinity stop spamming AS ? i'd like to tell trinity to only cast it when my COE ring is on physical buff.

at the moment trinity is being retarded with that spell, instead of using WW it give higher priority to AS and spam it ...

I cannot find the condition syntax to put into my barbarian.cs for that.

Thanks for helping out :)

Your answer is in your question. You need to give WW higher priority than AS.
 
Back
Top