Jump to content

Boomkin - Non C# Moonkin form help


daneh88

Recommended Posts

Hey there.

 

Need help with Moonkin Form. Added the spell, and changed settings to cast moonkin in combat only (false) and to is Buff (true) and also not cast when mounted. But it still seems to just cycle casting moonkin form over and over.

Link to comment
Share on other sites

This should work (Untested)

if (!ObjectManager.Me.HaveBuff("Moonkin Form") && SpellManager.KnowSpell("Moonkin Form") && ObjectManager.Me.ManaPercentage >= 10)
        {
            SpellManager.CastSpellByNameLUA("Moonkin Form");
            Usefuls.WaitIsCasting();
            return;
        }

 

Link to comment
Share on other sites

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...