Eziush

Junior Member
  • Content count

    7
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Eziush

  • Rank
    Newbie
  1. Worked out fine. Thanks!
  2. It just closes after update to 799. Log: http://pastebin.com/d77sxAZ6
  3. The same error occurs. I disabled all content on cdstore -> launched clean hb -> deleted store file in \Bossland -> relaunched clean hb -> enabled only the CR in CDStore -> relaunched HB.
  4. Hi. So everytime I choose hazzpaladin CR from Store it instantly crashes HB. There's some kind of error popping up, but it closes itself so fast i can't take SS. I upload the log instead. http://pastebin.com/M22YuDR1 E: Managed to take SS http://i59.tinypic.com/21ky2dy.png
  5. Dunno where to post it, but wanted to contribute - there's problem with WD not casting Zombie Bears with Russ of Essence (Spirrit Barrage + Well of Souls). You have to comment out the part in trinity : /* // Spirit Barrage Manitou if (!UseOOCBuff && CombatBase.CanCast(SNOPower.Witchdoctor_SpiritBarrage) && Player.PrimaryResource >= 100 && TimeSinceUse(SNOPower.Witchdoctor_SpiritBarrage) > 18000 && hasManitou) { return new TrinityPower(SNOPower.Witchdoctor_SpiritBarrage, 0f, Vector3.Zero, CurrentWorldDynamicId, -1, 2, 2, WAIT_FOR_ANIM); } // Regular spirit barage if (!UseOOCBuff && CombatBase.CanCast(SNOPower.Witchdoctor_SpiritBarrage) && Player.PrimaryResource >= 100 && !hasManitou) { return new TrinityPower(SNOPower.Witchdoctor_SpiritBarrage, 12f, CurrentTarget.ACDGuid); }*/ And later change Mana values for it to not run OOM This is what works for me : // Spirit Barrage + Rush of Essence if (!UseOOCBuff && !IsCurrentlyAvoiding && !Player.IsIncapacitated && CombatBase.CanCast(SNOPower.Witchdoctor_SpiritBarrage) && Player.PrimaryResource < 290 && hasRushOfEssence && Player.PrimaryResourcePct <= 0.35 && !hasManitou) { if (hasWellOfSouls) return new TrinityPower(SNOPower.Witchdoctor_SpiritBarrage, 2, 2); return new TrinityPower(SNOPower.Witchdoctor_SpiritBarrage, 21f, Vector3.Zero, -1, CurrentTarget.ACDGuid, 2, 2, WAIT_FOR_ANIM); } // Zombie Charger backup if (!UseOOCBuff && !IsCurrentlyAvoiding && !Player.IsIncapacitated && CombatBase.CanCast(SNOPower.Witchdoctor_ZombieCharger) && Player.PrimaryResource >= 290) { return new TrinityPower(SNOPower.Witchdoctor_ZombieCharger, zombieChargerRange, CurrentTarget.Position, CurrentWorldDynamicId, -1, 0, 0, WAIT_FOR_ANIM); } I know it is not a trinity topic, but don't know where to post. People are still pointless on DB forums, as trinity developer seems to not give a damn bout WDs. Happy "playing"