• Visit Rebornbuddy
  • KingWoW Shaman

    Discussion in 'Archives' started by attilio76, Dec 3, 2012.

    Thread Status:
    Not open for further replies.
    1. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      Svn is included in zip file in first post. Intall as in first post and Just rigth click king-wow directory and choose svn update
       
    2. greken91

      greken91 Member

      Joined:
      May 13, 2012
      Messages:
      30
      Likes Received:
      1
      Trophy Points:
      8
      isnt this one working on dungeonbuddy?
       
    3. Hapie

      Hapie New Member

      Joined:
      Jul 25, 2012
      Messages:
      118
      Likes Received:
      1
      Trophy Points:
      0
      Hey Attilio, was wondering if you implement it so it'll keep Flame Shock up on a target? due to the new Glyph of Flame Shock which heals you for 30% of it's damage done.
       
    4. Crazyness85

      Crazyness85 New Member

      Joined:
      Jan 15, 2010
      Messages:
      237
      Likes Received:
      2
      Trophy Points:
      0
      Been using this, and its a great CC! I updated the SVN today, but I am having issues of it not beginning to heal until its way to late, as in it wont attempt to heal anything until people are dead (if it wants to heal at all) Or I will have to get it started healing by acutally healing for a while manually. Been trying to use this with 5-mans and LFR.
       

      Attached Files:

    5. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      TY!
      It seems there is a problem casting some spell i will try to fix asap
       
    6. Crazyness85

      Crazyness85 New Member

      Joined:
      Jan 15, 2010
      Messages:
      237
      Likes Received:
      2
      Trophy Points:
      0
      BTW this is with a Restro Shammy.
       
    7. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      can you disable use of Spiritwalker's Grace in GUI and give it another try....
      with all those updates in wow and HB many API where broken!!!
       
    8. Crazyness85

      Crazyness85 New Member

      Joined:
      Jan 15, 2010
      Messages:
      237
      Likes Received:
      2
      Trophy Points:
      0
      Sure, testing now.
       
    9. Crazyness85

      Crazyness85 New Member

      Joined:
      Jan 15, 2010
      Messages:
      237
      Likes Received:
      2
      Trophy Points:
      0
      its working again. just did an lfr with spirits grace off.
       
    10. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      ty! so spirit grace was broken in last patch
      i will try to fix asap
       
    11. u12e12a

      u12e12a New Member

      Joined:
      Jun 2, 2011
      Messages:
      256
      Likes Received:
      0
      Trophy Points:
      0
      hi
      is it broken profile ? ??
      is it going to be updated? Just wondering...
       
    12. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      ATM i'm not playng shaman so i dont know if CC works properly or not.
      I'm updating and improving CC that i'm using and where people give me some feedback.
      If people using KingWoW as shaman report i will fix or update.
       
    13. u12e12a

      u12e12a New Member

      Joined:
      Jun 2, 2011
      Messages:
      256
      Likes Received:
      0
      Trophy Points:
      0
      hello
      . .. I see him casting spell then like stop and dose not do riptide only for tank is there way to make it do it every time he cast 2 healing wave or healing s do 1 Riptide to lower HP member even if hp 99% to get the buff from it 20% haste ... and 30% crit for healing S ?
      can he do Riptide person then chain healing on him to get buff better heal with chain healing ..?
       
    14. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      Ty for your post.
      I will examine code in order to fix and add this features.
       
    15. Torlofff

      Torlofff New Member

      Joined:
      Mar 22, 2013
      Messages:
      16
      Likes Received:
      0
      Trophy Points:
      0
      Hello, is it possible to disable spell: Lava Lash because I'm lvling shaman with 2hander and everytime my bot is trying to use it in the battle ?
       
    16. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      enhancement IS 2W meele if i will do this i will introduce a little delay for LL cast and is not good for a dps class.
      If you need it you can add this function in EnhancementShaman.cs:

      Code:
      private bool IsWieldingTwoHandedWeapon()
              {
                  try
                  {
                      switch (Me.Inventory.Equipped.MainHand.ItemInfo.WeaponClass)
                      {
                          case WoWItemWeaponClass.ExoticTwoHand:
                          case WoWItemWeaponClass.MaceTwoHand:
                          case WoWItemWeaponClass.AxeTwoHand:
                          case WoWItemWeaponClass.SwordTwoHand:
                              return true;
                      }
                      return false;
                  }
                  catch (Exception ex)
                  {
                      utils.LogActivity("IsWieldingBigWeapon ", ex.ToString());
                  }
      
                  return false;
              }
      
      and modify line:

      Code:
      if (target.IsWithinMeleeRange && utils.isAuraActive(FLAME_SHOCK, target) && utils.GetSpellCooldown(LAVA_LASH).Milliseconds <= StyxWoW.WoWClient.Latency)
                      {
                          utils.LogActivity(LAVA_LASH, target.Name);
                          return utils.Cast(LAVA_LASH, target);
                      }
      
      with:


      Code:
      if (!IsWieldingTwoHandedWeapon() && target.IsWithinMeleeRange && utils.isAuraActive(FLAME_SHOCK, target) && utils.GetSpellCooldown(LAVA_LASH).Milliseconds <= StyxWoW.WoWClient.Latency)
                      {
                          utils.LogActivity(LAVA_LASH, target.Name);
                          return utils.Cast(LAVA_LASH, target);
                      }
       
    17. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      SVN UPDATE:

      New LoadConfig and SaveNewConfig Settings utility, the Save current settings was not modified.
      configuration path changed in "KingWOWCurrentSettings" so customclass folder in honorbuddy can be deleted.

      ALL class:
      disabled Pause rotation: you can use basebot pause hotkey.

      ALL healing class:
      Added hotkey to disable AOE healing (an ingame notification tell you id aoe enabled or disabled)

      Discipline priest:
      Can enable autocastSpiritShell when PRAYER_OF_HEALING needed in GUI (default disabled).
      Everyone can post his config file on forum and share with community.

      ATM NO xml configuration file in directory so create your own!
       
    18. hbaioni

      hbaioni New Member

      Joined:
      Oct 17, 2011
      Messages:
      299
      Likes Received:
      1
      Trophy Points:
      0
      Hi Attilio,
      A couple of things you would like to add to this shaman routine:
      1) Cast Riptide ONLY for Tidal Waves Buff. Riptide itself is no big deal, it is used just for buffs. So, basically it will be something like "IF NO TIDAL WAVES BUFF ON THE SHAMAN, CAST RIPTIDE ON THE LOWEST HEALTH PLAYER". You can add a new setting: "Cast Riptide for Tidal Waves Only".
      2) Add a New "OH SHIT HEAL". -> UNLEASH ELEMENTS + ANCESTRAL SWIFTNESS + GREATER HEALING WAVE. (instant BIIIIIG HEAL). You just need to cast these three spells at certain threshold. You can also add a setting for this one in the user interface. You also should add another setting: "Oh Shit Heal only for Tank".
      Thank you very much for your effort. The routine is quite good. I can suggest a few other improvements and even help you with the code if you're interested. Please let me know.
       
    19. attilio76

      attilio76 Well-Known Member Buddy Store Developer

      Joined:
      May 26, 2010
      Messages:
      1,858
      Likes Received:
      34
      Trophy Points:
      48
      Sorry for late response i was busy in mage and priest CC.
      I will modify resto cc asap.
       
    20. RobertPaulson

      RobertPaulson Member

      Joined:
      Jun 2, 2012
      Messages:
      56
      Likes Received:
      6
      Trophy Points:
      8
      Just a comment about the "lag" issue that came about recently with Resto not starting to heal unless manually started, or starting just as the tanks dying are the EXACT same issues Singular started having at the same time. I SVN'd KingWoW specifically because of this actually;-). I will dick with the Spirit Walkers Grace in KingWoW, and if possible look at Singular for a fix recommendation to pass on as well.
       
    Thread Status:
    Not open for further replies.

    Share This Page