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

Anyone got settnings for jade wd s7?

farmerjoe

New Member
Joined
Aug 27, 2016
Messages
1
Reaction score
0
Hello!

I was looking for some Jade wd settnings, but no luck ive tried to do it myself with no luck.. :mad:

Maybe some of you guys have it? if so please share it! :rolleyes:

can you somehow change so the bott times soul harvest better?
 
Play around in WitchDoctorCombat.cs I guess (btw never played witch doctor so I have no idea but this is what I found within 5 seconds.)

Code:
                // Soul Harvest
                if (CanCast(SNOPower.Witchdoctor_SoulHarvest) && !IsCurrentlyAvoiding)
                {
                    if (Player.CurrentHealthPct < 0.6 && TargetUtil.AnyMobsInRange(12f))
                    {
                        return new TrinityPower(SNOPower.Witchdoctor_SoulHarvest);
                    }
                    if (TargetUtil.ClusterExists(3, 12f) && Skills.WitchDoctor.SoulHarvest.BuffStacks < 10)
                    {
                        Logger.Log(LogCategory.Routine, "Im going in to harvest! 4/12");
                        MoveToSoulHarvestPoint(Core.Clusters.BestCluster);
                    }
                    else if(TargetUtil.AnyElitesInRange(12f) || TargetUtil.AnyMobsInRange(10f, 2))
                    {
                        return new TrinityPower(SNOPower.Witchdoctor_SoulHarvest);
                    }
                }


from \Plugins\Trinity\Components\Combat\Abilities


and to answer your question of course you can, you can change anything you want, just do a search on what you're looking for in the folder or try out z-filesearcher to search for specific words inside files if the first option doesn't work for you and do some thinking yourself, the code are not that hard to comprehend.
 
Last edited:
Back
Top