Jump to content

paraglider

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by paraglider

  1. 10 hours ago, Droidz said:

    I am sorry but I cannot fix code of this version, you can try to use wrobot plugin like:

    
    using System.Threading;
    using System.Windows.Forms;
    using robotManager.Helpful;
    using wManager.Wow.Helpers;
    using wManager.Wow.ObjectManager;
    using Keybindings = wManager.Wow.Helpers.Keybindings;
    
    public class Main : wManager.Plugin.IPlugin
    {
        public void Initialize()
        {
            bool last = false;
            while (Conditions.ProductIsStarted)
            {
                while (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)
                {
                    bool isMount = ObjectManager.Me.IsMounted;
                    if (last && !isMount)
                    {
                        try
                        {
                            Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.MOVEFORWARD, 5);
                            Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.MOVEBACKWARD, 5);
                        }
                        catch {}
                    }
                    last = isMount;
                    Thread.Sleep(5);
                }
                last = false;
                Thread.Sleep(20);
            }
            Logging.Write("[DismountMove] Loadded.");
        }
    
        public void Dispose()
        {
            Logging.Write("[DismountMove] Disposed.");
        }
    
        public void Settings()
        {
            MessageBox.Show("[DismountMove] No settings for this plugin.");
        }
    }

     

    Did not work.  But I found a way around it :) on my druid I just set moonkin form as a must have in fight class. So when he lands he cast the spell before picking up or mining.. Works like a charm.

    But still thanks for support on old version.

  2. 1 hour ago, Droidz said:

    Hello, try to increment again your min / max latency

    I have tryed many different settings on ms .. from 0 to 2000 nothing works .. and mining is worst .. the bot does not pick any mines.. just get the message can't do that when moving..

     

    Found out :(

    It is an server bug, you have to move one step before mining or gathering herbs after dismount.. so youre bot do not work for gathering..

    Every thing els works I thing, but not gathering :( (Firestorm server and wrobot 1.6.1 22522) 

×
×
  • Create New...