• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • NoobRage - HolyCow!

    Discussion in 'Archives' started by Ama, May 10, 2012.

    1. lolfan

      lolfan Member

      Joined:
      Dec 16, 2011
      Messages:
      51
      Likes Received:
      1
      Trophy Points:
      8
      It pops divine shield and hand of sac in my experience, have not had any issue.
       
    2. mnipper

      mnipper Member

      Joined:
      Feb 21, 2012
      Messages:
      248
      Likes Received:
      1
      Trophy Points:
      18
      Beacon is only problematic on Ultraxion for me. Tank fades, it beacons someone else. Disable beacon or set to Focus would be good. Other than that, oh my god, on heroic spine, this seriously kicks ass.
       
    3. Piterek

      Piterek New Member

      Joined:
      Dec 30, 2011
      Messages:
      24
      Likes Received:
      0
      Trophy Points:
      0
      The CC works perfect expet that it didint work at all on hagara hc,
       
    4. Venus112

      Venus112 New Member

      Joined:
      Jun 17, 2010
      Messages:
      1,509
      Likes Received:
      13
      Trophy Points:
      0
      You might want to attach that log to help him
       
    5. Piterek

      Piterek New Member

      Joined:
      Dec 30, 2011
      Messages:
      24
      Likes Received:
      0
      Trophy Points:
      0
      That the one i think, had to swich back to old holy cow etc, and didint rly had time for that :)
       

      Attached Files:

    6. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      Can't see much from the logs because they aren't showing any HolyCow errors. Looks like you had max sessions and then you have HB failure to inject. Looks like a problem with you system and HB.
       
    7. quel

      quel Member

      Joined:
      Oct 19, 2010
      Messages:
      844
      Likes Received:
      7
      Trophy Points:
      18
      Hey Ama :)..

      Love your work! Can u by any chance add a dismount feature for pvp when in combat or a healing target nearby? :)..

      Regards
       
    8. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      Yeah, update will be up in a couple hours.
       
      quel likes this.
    9. quel

      quel Member

      Joined:
      Oct 19, 2010
      Messages:
      844
      Likes Received:
      7
      Trophy Points:
      18
      Thanks alot mate! :)

      +rep for your efforts
       
    10. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      Update up...

      Added dismount settings and change some of the settings that required words.

      I was going to do some more requests, but the forums are going really slow for me.
       
    11. quel

      quel Member

      Joined:
      Oct 19, 2010
      Messages:
      844
      Likes Received:
      7
      Trophy Points:
      18
      Thanks alot Ama :)

      I got one more request if u are up for it. Could u by any chance add the human racial for PVP? :)

      And i can't see to get the dismount funtion to work for some reason, do i have to delete the holycow folder and redownload it?

      Edit: Found the setting :).. was a bit blind :p
       
      Last edited: May 26, 2012
    12. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      Sure I can do that. I just have horde characters, so I only put arcane torrent in.
       
    13. quel

      quel Member

      Joined:
      Oct 19, 2010
      Messages:
      844
      Likes Received:
      7
      Trophy Points:
      18
      Last edited: May 26, 2012
    14. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      ok, its up. I don't have a Human, so I cant test that one. I just used the list from my own hunter CC.


      PHP:
      public static string[] immobEffects = {"Crippling Poison",
                  
      "Cyclone",
                  
      "Hamstring",
                  
      "Frostbolt",
                  
      "Concussive Shot",
                  
      "Freeze",
                  
      "Psychic Scream",
                  
      "Mind Flay",
                  
      "Polymorph",
                  
      "Sap",
                  
      "Piercing Howl",
                  
      "Fear",
                  
      "Deep Freeze",
                  
      "Warstomp",
                  
      "Cheap Shot",
                  
      "Kidney Shot",
                  
      "Chains of Ice",
                  
      "Blind",
                  
      "Scatter Shot",
                  
      "Gouge",
                  
      "Daze",
                  
      "Deadly Throw",
                  
      "Psychic Horror",
                  
      "Mind Control"};

      if (
      Me.Race == WoWRace.Human && (Me.Stunned || Me.Dazed || Me.Rooted || Helpers.HaveImmobEffect()) && Cast.Buff("Every Man for Himself"))
                          return 
      true;
       
    15. quel

      quel Member

      Joined:
      Oct 19, 2010
      Messages:
      844
      Likes Received:
      7
      Trophy Points:
      18
      Damn your fast mate :).. thanks again! gonna update and see how it goes

      Edit: Works like a charm
       
    16. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      Ok, I since already had stuff in place for this. :)

      PHP:
      public static bool UsePVPImobTrinket()
              {
                  if ((
      StyxWoW.Me.Stunned || StyxWoW.Me.Dazed || StyxWoW.Me.Rooted || Helpers.HaveImmobEffect()) && Cast.Trinket("Ruthless Gladiator's Medallion"))
                      return 
      true;
                  else
                      return 
      false;
              }
      I called it in HealingCow.cs, so all the Cows can use it. The Cast.Trinket method just looks to see if the trinket name contains what was put in. So should work for all the Ruthless medallion trinkets.

      No more coding today for me. Off to the gym. :)
       
      Last edited: May 26, 2012
    17. quel

      quel Member

      Joined:
      Oct 19, 2010
      Messages:
      844
      Likes Received:
      7
      Trophy Points:
      18
      Thanks yet again :).. Just did my 1st bg and topped the meter ^^, impressed

      Edit: It could use Judgement a whole lot more tho, and sometimes it uses divine shield when theres not even no one around
       
      Last edited: May 26, 2012
    18. Ama

      Ama New Member

      Joined:
      Jun 6, 2011
      Messages:
      1,171
      Likes Received:
      33
      Trophy Points:
      0
      in pve, you just use it once a minute.
       
    19. paul0909

      paul0909 Member

      Joined:
      Jan 15, 2010
      Messages:
      30
      Likes Received:
      0
      Trophy Points:
      6
      Is there anyway you can add engineering gloves to this please, use on cd, thanks.
       
    20. Honorpig

      Honorpig New Member

      Joined:
      Feb 23, 2012
      Messages:
      9
      Likes Received:
      0
      Trophy Points:
      0
      I am hoping there is a way to write some code for casting Cleanse during the Heroic Hagara encounter. I need to cast Cleanse when the player has both the Frostflake and Watery Entrenchment debuffs. If I dispell Frostflake before the player gets into the Watery Entrenchment it leaves a patch of frost in the path of players. Is there any way to insert this into the code?

      In other words, if the player has the debuff "Frostflake" do nothing. If the player has the debuff "Watery Entrenchment" do nothing. If the player has both debuffs simultaneously, cast cleanse on player.

      Thanks in advance for your help with this. I find your CC to work superbly for most encounters.
       

    Share This Page