Jump to content
  • i know mount but cant use


    piter007
    • Product: WRobot General Type: Bug Status: Unconfirmed

    i have problem on wow circle for grinder to use tundras mount say that i know it but can not use but some times i can use it but generaly cant



    User Feedback

    Recommended Comments

    Try to use this bot plugin : Main.cs

    using robotManager.Helpful;
    using wManager.Wow.Helpers;
    
    public class Main : wManager.Plugin.IPlugin
    {
        public void Initialize()
        {
            robotManager.Events.LoggingEvents.OnAddLog += delegate(Logging.Log log)
            {
                if (log.Text.Contains("Cast Тундровый мамонт путешественника (Traveler's Tundra Mammoth)"))
                {
                    Lua.LuaDoString("RunMacroText(\"/cast Тундровый мамонт путешественника\")");
                }
            };
        }
    
        public void Dispose()
        {
        }
    
        public void Settings()
        {
        }
    }

     

    Link to comment
    Share on other sites

    thank you for this plugin

    i have tried this code but it not help
    and i try another combinations
    put mount on right bottom bar

    now it casting two times - 1 one its problem and another one is working
    maybe you know how to replace for one casting time

    Main.cs

    Link to comment
    Share on other sites

    using robotManager.Helpful;
    using wManager.Wow.Helpers;
    using System.Diagnostics;
    
    public class Main : wManager.Plugin.IPlugin
    {
        public void Initialize()
        {
            var timer = Stopwatch.StartNew();
            robotManager.Events.LoggingEvents.OnAddLog += delegate (Logging.Log log)
            {
                if (timer.ElapsedMilliseconds > 3000 && log.Text.Contains("(Traveler's Tundra Mammoth)"))
                {
                    Logging.WriteDebug("Press MultiBarBottomRightButton1");
                    Lua.LuaDoString("RunMacroText(\"/click MultiBarBottomRightButton1\")");
                    timer.Restart();
                }
            };
        }
    
        public void Dispose()
        {
        }
    
        public void Settings()
        {
        }
    }

    You can try this code please

    Link to comment
    Share on other sites

    using robotManager.Helpful;
    using wManager.Wow.Helpers;
    using System.Diagnostics;
    
    public class Main : wManager.Plugin.IPlugin
    {
        public void Initialize()
        {
            var timer = Stopwatch.StartNew();
            robotManager.Events.LoggingEvents.OnAddLog += delegate (Logging.Log log)
            {
                if (timer.ElapsedMilliseconds > 3000 && log.Text.Contains("Tundra Mammoth)"))
                {
                    Logging.WriteDebug("Press MultiBarBottomRightButton1");
                    Lua.LuaDoString("RunMacroText(\"/click MultiBarBottomRightButton1\")");
                    timer.Restart();
                }
            };
        }
    
        public void Dispose()
        {
        }
    
        public void Settings()
        {
        }
    }

     

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