Artek 3 Posted December 21, 2021 Share Posted December 21, 2021 @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 Share on other sites More sharing options...
Artek 3 Posted December 21, 2021 Author Share Posted December 21, 2021 thank you, it doesnt work. i also tried things from here, and it doesnt work;/ Link to comment Share on other sites More sharing options...
Droidz 2737 Posted December 22, 2021 Share Posted December 22, 2021 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') Link to comment Share on other sites More sharing options...
Apexx 60 Posted December 26, 2021 Share Posted December 26, 2021 (edited) 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 December 27, 2021 by Apexx Link to comment Share on other sites More sharing options...
oyock 0 Posted January 28, 2022 Share Posted January 28, 2022 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 Link to comment Share on other sites More sharing options...
Apexx 60 Posted January 28, 2022 Share Posted January 28, 2022 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? Link to comment Share on other sites More sharing options...
oyock 0 Posted January 28, 2022 Share Posted January 28, 2022 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. Link to comment Share on other sites More sharing options...
oyock 0 Posted February 9, 2022 Share Posted February 9, 2022 (edited) 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 February 9, 2022 by oyock Increased accuracy. Link to comment Share on other sites More sharing options...
oyock 0 Posted February 9, 2022 Share Posted February 9, 2022 Oh you know what it is... Its not detecting the debuff on beasts... Mangle does not work on beasts, humanoids yes. Why is that? Havent tried to see if infected wounds debuff detection works on beasts. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now