• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Beta Testers Needed for new Custom Class FightThisWay

    Discussion in 'Honorbuddy Forum' started by Kamilche, Oct 1, 2012.

    1. stormwarr1

      stormwarr1 New Member

      Joined:
      Oct 30, 2011
      Messages:
      846
      Likes Received:
      3
      Trophy Points:
      0
      Your "beta" is a lot more final than Singular. Tested on an afflic warlock, and it uses the right spells at the right time more or less. I'd change the order to:

      1. Curse of Elements
      2. Agony
      3. Corruption
      4. Unstable Afflic
      5. Haunt
      6. Malefic
      7. Drain Soul (under 20%)

      Well done and thank you very much for the only properly working warlock CC on these forums.
       
    2. Kamilche

      Kamilche New Member

      Joined:
      Oct 2, 2010
      Messages:
      551
      Likes Received:
      30
      Trophy Points:
      0
      I'm glad you guys are enjoying it.

      Um, the latest version has the Monk_Mistweaver file worked up. Man, was I surprised to see how it worked! It's more like Monk_Windwalker than a healer - it's obviously meant to be a fighting healer. So made it a melee class, not ranged! And it heals others while it fights mobs. The disadvantage is there is no battle rez.

      I was really surprised to get 10% of the DPS in the dungeon as a healer.

      I tested it on a training dummy, 1 dungeon, and some random world mobs, and it didn't die, so it's a good start. I'm sure it could use some refinement tho, so let the suggestions fly!

      Code:
      10/04/2012
      	Enhanced classes:
      		Druid Moonkin
      			Made 'Starfall' also cast when eclipse going down and balance < 0
      			  (Lunar Eclipse resets cooldown, so it's going to be reset soon, might as well use it.)
      			Cast 'Incarnation' only when in lunar or solar eclipse
      			Made Solar Beam interrupt current spellcasting
      		Monk Mistweaver created.
      
       
      Last edited: Oct 4, 2012
    3. biervertrieb

      biervertrieb New Member

      Joined:
      Feb 16, 2012
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      Struggling with Mistweaver testing.
      I am trying to get him to cast surging and enveloping mist during soothing mist.
      Code:
      Me.Cast Enveloping Mist
      	Me.HasAura("Soothing Mist")
      	Me.Chi > 2
      
      Me.Cast Surging Mist
      	Me.HasAura("Soothing Mist")
      
      Me.Cast Soothing Mist
      	Me.Mana > 30
      
      Me.Cast Mana Tea
      
      is what im testing right now. this should cast soothing mist above 30% mana and use the other spells.
      however what it does is it just spams surging and enveloping mist until oom.
      any ideas?
       
    4. Kamilche

      Kamilche New Member

      Joined:
      Oct 2, 2010
      Messages:
      551
      Likes Received:
      30
      Trophy Points:
      0
      I see a few problems. You're always casting it on yourself, not 'heal'. 'heal' is the person most in need of healing.
      The order is important - put the ones least apt to fire first, then most apt.
      So I would put 'soothing mist' above the auras, but add the condition 'Me.HasAura("Soothing Mist") = 0'.
      And of course - change 'Me' almost everywhere on the heals, to 'Heal.'

      The one exception is Life Cocoon - that looks like a 'tank in danger' spell to me, so I coded it as 'Tank.cast Life cocoon' with a condition of 'health < 90'.


      Anyways - I have worked up this and placed it in the latest version, so download and install it, and start from there.
       
    5. biervertrieb

      biervertrieb New Member

      Joined:
      Feb 16, 2012
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      I am aware of Me.Cast and Heal.Cast
      It's for very basic testing purpose.
      What I want to achieve is to cast Enveloping Mist and Surging Mist while channeling Soothing.
      and yes i forgot "= 1" in my condition
      so now he will only cast soothing mist as channel but ignores enveloping and surging while soothing is still casting

      another problem is mana tea isnt working at all and that is pretty vital
       
    6. Ganstar

      Ganstar New Member

      Joined:
      Oct 18, 2010
      Messages:
      26
      Likes Received:
      0
      Trophy Points:
      0
      This is awesome! I got no coding skills or experience, but I managed to make a basic shadowpriest cc for when I'm fishing.
      However I want my priest to only use Mind blast when it has the Glyph of Mind Spike - Spell - World of Warcraft buff.
      But only when it has 2x the buff, for a instant MB. How do I do this?

      Regards!
       
    7. dynamite

      dynamite New Member

      Joined:
      Feb 19, 2011
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0
      Made some more changes to the Frost DK, was noticing it wasnt keeping up blood plague 100% time if Unholy Blight and Outbreak were on CDs

      getting 100% uptime now on raiding training dummy as well as getting it to stop using up a GCD on Unholy Blight (was my fault for adding it into combat rotation instead of combat debuffs)


      Added
      Code:
      -- Normal attack rotation
      -----------------------------------------------------------------------
      
      Plague Strike
      	Target.HasMyAura("Blood Plague") = 0
      
      Death Strike
      	Me.HasAura("Dark Succor") = 1
      
      Soul Reaper
      	Target.Health < 35
      
      Obliterate
      	Me.HasAura("Killing Machine") = 1
      
      Howling Blast
      	Me.HasAura("Freezing Fog") = 1
      
      Obliterate
      
      Frost Strike
      
      
      
      -- Default
      Me.AutoAttack
      
      --====================================================================
      is how I have it looking now


      and changed Combat Debuffs to look like
      Code:
      -- Combat Debuffs
      -----------------------------------------------------------------------
      Pestilence
      	Target.HasMyAura("Blood Plague") = 1
      	Target.HasMyAura("Frost Fever") = 1
      	Me.AddsCount > 1
      
      Outbreak
      	Target.HasMyAura("Blood Plague") = 0
      
      Unholy Blight
      	Target.HasMyAura("Blood Plague") = 0	
      	Target.HasMyAura("Frost Fever") = 0
      	Me.AddsCount > 1
      
      
      
      
      -----------------------------------------------------------------------
       
    8. dynamite

      dynamite New Member

      Joined:
      Feb 19, 2011
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0
      Still running into targeting issues where its grabbing targets on its own

      Code:
      [LazyRaider] RaidBot mode active, all targeting/following disabled 
      [FTW] 03:44:16 Still in combat and no adds - looking at 0 nearby adds.
      [FTW] 03:44:17 Still in combat and no adds - looking at 1 nearby adds.
      [FTW] 03:44:17 Taking new target Stormwind Rat
      Getting this while flying around stormwind while not in Combat anymore. IE) I can mount / dismount etc

      Also have Scroll Lock enabled (with On-Screen Keyboard) is there a way to personally edit the key to something like
      a F key or Pause/Break, I'm pretty sure this isnt the issue since when in Gatherbuddy I can toggle it back on and it will face the target and such, but if i Toggle it off it stays facing w/e direction he lands (not facing mob half the time) which is telling me its something else grabbing targets and/or thinking I'm in combat when im not.
       
      Last edited: Oct 4, 2012
    9. Oleh

      Oleh New Member

      Joined:
      Jul 5, 2010
      Messages:
      83
      Likes Received:
      0
      Trophy Points:
      0
      Having issues with Rogue Assassination. It does nothing but this. Combat works well. I've tried 3 CC's now (CLU, Singular and this, none work for Assassination for some reason.)

      [​IMG]

      I'm getting 180fps and 20ms ping.
       
      Last edited: Oct 4, 2012
    10. AlucardDG

      AlucardDG New Member

      Joined:
      Apr 9, 2011
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      0
      This is good, i only have one small issue atm. If you have high (ish) latency it will double cast immolate, i think it finish cast and still detects immolate=0 in time to cast it once more
      Edit: Even with ping in the 130~ range it still seems to double cast immolate. Not sure why. Probably an easy fix. Also, if the target moves behind you while you are casting, it will not face the target before the cast is finshed, thus getting a "need to be facing the target" msg.
      Edit: It seems im having double cast issues with other spells too, it will cast enfeeblement twice, and sometimes it seems to summon imp multiple times back to back. And it also seems to like to run into melee range as a warlock often times haha.
      Edit: also tries to cast Fire and brimstone on single targets.
       
      Last edited: Oct 4, 2012
    11. Kamilche

      Kamilche New Member

      Joined:
      Oct 2, 2010
      Messages:
      551
      Likes Received:
      30
      Trophy Points:
      0
      The Mistweaver class has been enhanced to allow Soothing Mist to be cast over by other spells. Check out the latest version, it probably does what you wnat.
       
    12. Kamilche

      Kamilche New Member

      Joined:
      Oct 2, 2010
      Messages:
      551
      Likes Received:
      30
      Trophy Points:
      0
      Mana tea is working now, get the latest version. Thanks for testing!
       
    13. Kamilche

      Kamilche New Member

      Joined:
      Oct 2, 2010
      Messages:
      551
      Likes Received:
      30
      Trophy Points:
      0
      Something like 'Me.StackCount("MYAURANAMEHERE") >= 2' would work.

      The trick will be to catch the aura name it actually gives you. That's can sometimes be a tad difficult. Does anyone know of a good WoW addon that lists all your current auras in a compact format? I don't need color coding, flashing suns or anything too big - just a small text listing, sorted alphabetically, of all the auras on me and my current target.
       
    14. Kamilche

      Kamilche New Member

      Joined:
      Oct 2, 2010
      Messages:
      551
      Likes Received:
      30
      Trophy Points:
      0
      OK, I just tested it, and mutilate works good... and also REQUIRES DAGGERS. Are you wearing daggers?
       
    15. zeldrak

      zeldrak Well-Known Member

      Joined:
      Oct 25, 2010
      Messages:
      3,516
      Likes Received:
      25
      Trophy Points:
      48
      Hey Kamilche,
      Not sure what's wrong, but Demonology warlock isn't working. Log is getting spammed with errors. I'll post the log. I was just trying it out on the dummy. Seem, from a cursory glance, that something is wrong with Metamorphosis and Blood Pact.

      I'm a level 85 Demonology Warlock by the way.
       

      Attached Files:

    16. Kamilche

      Kamilche New Member

      Joined:
      Oct 2, 2010
      Messages:
      551
      Likes Received:
      30
      Trophy Points:
      0
      There's a bug in WoW that leaves you in combat, when you're actually not. This happens everywhere, but it's particularly evident in Deepholm, with fighting the troggs. The only way to 'break free' of this bug, is to kill everything in a 40 yard radius. So that's what that message is talking about - it thinks you're still in combat, but you're actually not.

      If I didn't have that, HonorBuddy would keep sending you 'Combat' messages, and you'd sit there doing nothing until you timed out, or a mob came by.

      I will be able to remove that, as soon as WoW fixes the 'continually in combat' bug.
       
    17. dynamite

      dynamite New Member

      Joined:
      Feb 19, 2011
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      0
      I aware of the Bug your speaking of I usto and still get that but your not allowed to mount and or eat and such when that bug is happening, Im able to mount up, eat and so on, but it was still grabbing targets..If you like I can shoot a log over in a PM.
       
    18. zeldrak

      zeldrak Well-Known Member

      Joined:
      Oct 25, 2010
      Messages:
      3,516
      Likes Received:
      25
      Trophy Points:
      48
      I know what you're talking about. I was in Stormwind testing out the Blood DK file, and it works great. I tried with -- and without -- scroll lock (not NUM lock like last time, lol), and it still finds its own targets. As I walked by each training dummy it would automatically select it and keep its combat stance, as though I clicked Auto Attack, and it even went as far as to Death Grip critters (level 1 critters that are running around). In order to make it stop attacking anything that was attackalbe I had to stop the bot completely.
       
    19. Brentus

      Brentus New Member

      Joined:
      Nov 29, 2011
      Messages:
      132
      Likes Received:
      0
      Trophy Points:
      0
      I just noticed the same issue with the cc. not the most fun when your trying to do dailies and it just randomly starts atking horde and guards gank you :( I also have to fully stop the cc just to pick up quests as trying to pause with lazyraider still does not stop it.
       
    20. Kamilche

      Kamilche New Member

      Joined:
      Oct 2, 2010
      Messages:
      551
      Likes Received:
      30
      Trophy Points:
      0
      Oof, another class that drools! That's 2 so far. It used to work pre-Pandaria, but now, not at all. I've spiffed it up so it works. Let me know if you see any other issues with it, thanks!
       

    Share This Page