• Visit Rebornbuddy
  • [Wizard] [Request]

    Discussion in 'Archives' started by Rein, Jan 26, 2016.

    1. Rein

      Rein Member

      Joined:
      Oct 11, 2012
      Messages:
      49
      Likes Received:
      0
      Trophy Points:
      6
      Is it possible to make this build work?

      http://www.d3planner.com/117662853

      The DMO orbit build has been fantastic but I have hit a glass ceiling with spectral blades issues and damage. This build solves both if I could get Energy Twister to stop casting and for Arcane Torrent to cast more often.
       
    2. smylie4201

      smylie4201 New Member

      Joined:
      Sep 15, 2014
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      here is how i fix the build to not spam twister got to: plugins/trinity/combat/abilities/WizardCombat : scroll down to find this line of code and delete it


      // Check to see if we have a signature spell on our hotbar, for energy twister check
      bool hasSignatureSpell = (Hotbar.Contains(SNOPower.Wizard_MagicMissile) || Hotbar.Contains(SNOPower.Wizard_ShockPulse) ||
      Hotbar.Contains(SNOPower.Wizard_SpectralBlade) || Hotbar.Contains(SNOPower.Wizard_Electrocute));

      // Energy Twister SPAMS whenever 35 or more ap to generate Arcane Power
      if (!Player.IsIncapacitated && CanCast(SNOPower.Wizard_EnergyTwister) && !ShouldWaitForConventionElement(Skills.Wizard.EnergyTwister) &&
      Player.PrimaryResource >= 25 &&
      (!Legendary.EtchedSigil.IsEquipped || Sets.TalRashasElements.IsFullyEquipped || Sets.DelseresMagnumOpus.IsFullyEquipped && !Legendary.Deathwish.IsEquipped) &&
      // If using storm chaser, then force a signature spell every 1 stack of the buff, if we have a signature spell
      (!hasSignatureSpell || GetBuffStacks(SNOPower.Wizard_EnergyTwister) < 1))
      {
      Vector3 bestClusterPoint = TargetUtil.GetBestClusterPoint();

      const float twisterRange = 50f;
      return new TrinityPower(SNOPower.Wizard_EnergyTwister, twisterRange, bestClusterPoint);
       

    Share This Page