Jump to content

Recommended Posts

@Droidz Can you PLEASE try to find an way for druids to use mangle in fight class?
No matter what, i can't make it working, i searched cataclysm subforum and none of the ways work.

Problem with mangle is that in cataclysm there are 2 skills with the same name "Mangle" but one is for cat form and other for bear form.
Thank you!

Link to comment
https://wrobot.eu/forums/topic/13789-druids-mangle-in-cataclysm/
Share on other sites

look https://www.mmo-champion.com/threads/775852-Cat-Mangle-Macro

RunMacroText('/cast Mangle(Cat Form)')

 

Or, you can try to put spell in actionbar and use code like

RunMacroText('/click ActionBarButton1')

 

You could try:

RunMacroText('/cast [form: 1] Mangle(Bear Form)')

 

try
{
    if (ObjectManager.Me.HaveBuff(bearForm.Ids) && timerMangle.IsReady && ObjectManager.Target.GetDistance <= 5)
    {
        if (SpellManager.GetSpellCooldownTimeLeft(mangle.Id) <= 0)
        {
            await Helpers.RunMacro("/cast [form: 1] Mangle(Bear Form)", timerMangle.IsReady);
            timerMangle = new Timer(SpellManager.GlobalCooldownTimeLeft() + 255 + Usefuls.Latency);
        }
    }
}
catch (Exception ex)
{
    Helpers.LogWrite($"Mangle() Exception error. {ex.Message}.", true);
}
Edited by Apexx
  • 1 month later...
17 minutes ago, oyock said:

I got it to work super easy... I literally just called spell name Mangle. Restarted bot. functions properly. No lua junk. Just add conditionals like energy, lack of debuff on target, conditional buff cat form. etc

And may I ask what game version you are working with?

4.3.4 Apollo servers. Mangle W/ conditions: Target buff = Mangle, false; Combo point = <5

Another Mangle w/ conditions: Buff = Cat Form, true; Comb point = <5; Buff = Frenzied Regeneration, false; Energy = >34

Make sure to save the fightclass and restart wRobot all together. took me so long to realize the entire bot has to be restarted to make changes, not just reloading a different fight class.

  • 2 weeks later...

You know, really strange I notice that Mangle works on my characters up until around 62 +/- 4 levels. But It works all the way until that point. Not sure why. As if some modification in the talent tree leads to it not functioning properly. Strange my bot can do well with a fightclass until it gets to this point (Usually when I start questing in Nagrand) and it just doesnt Mangle after that point... Weird. I have no solutions. Nothing mention has ever fixed it after this point.
 

EDIT: This is not the problem, see below...

Edited by oyock
Increased accuracy.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...