Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

probleme de minage legion firestorm

Featured Replies

J'ai toujour le probleme pour miner en pandarie , mon perso veux miner en descendant de monture et du coup ca me dit qu'il est en deplacement et ne peut pas miner ..

quelqun a une idée parcque c est chiant

j'ai le meme probleme jai suivie ton conseille et augmenter a 1000 et 1500 toujours la meme chose.

 

Pour etre plus precis. il descend au sol depop la monture volante mais tente toute suite apres de miner ce qui cree impossible en cours de déplacement. il faudrait quil est une latence entre le moment ou il depop la monture et le minage.

Un peut dans le meme genre que ce probleme --> 

faudrait faire un double clic pour le faire miner

 

 

using System.Threading;
using System.Windows.Forms;
using robotManager.Helpful;
using wManager.Wow.Enums;
using wManager.Wow.Helpers;
using wManager.Wow.ObjectManager;

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) =>
        {
            try
            {
                if (Var.GetVar<object>("LastTargetSkin") == (object)target)
                    return;
                Var.SetVar("LastTargetSkin", target);
                var o = ObjectManager.GetObjectByGuid(target);
                if (o.IsValid && o.Type == WoWObjectType.GameObject)
                {
                    var u = new WoWGameObject(o.GetBaseAddress);
                    if (u.IsValid)
                    {
                        new Thread(delegate ()
                        {
                            Thread.Sleep(500 + Usefuls.Latency);
                            Interact.InteractGameObject(u.GetBaseAddress);
                        }).Start();
                    }
                }
            }
            catch { }
        };


    }

    public void Dispose()
    {
    }

    public void Settings()
    {
        MessageBox.Show("No settings for this plugin.");
    }
}

C'est le double cliques pour les gameobjects

Vous pouvez également essayer cette version (pour que wrobot depop la monture avant de cliquer):

using System.Threading;
using System.Windows.Forms;
using wManager.Wow.Bot.Tasks;
using wManager.Wow.Enums;
using wManager.Wow.Helpers;
using wManager.Wow.ObjectManager;
using Timer = robotManager.Helpful.Timer;

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) =>
        {
            try
            {
                if (!ObjectManager.Me.IsMounted && !ObjectManager.Me.GetMove)
                    return;
                var o = ObjectManager.GetObjectByGuid(target);
                if (o.IsValid && o.Type == WoWObjectType.GameObject)
                {
                    MountTask.DismountMount();
                    Thread.Sleep(Usefuls.Latency + 500);
                    var t = new Timer(2000 + Usefuls.Latency);
                    while (!t.IsReady && (ObjectManager.Me.IsMounted || ObjectManager.Me.GetMove))
                    {
                        Thread.Sleep(50);
                    }
                }
            }
            catch { }
        };
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
        MessageBox.Show("No settings for this plugin.");
    }
}

 

  • Author

re tous le monde , donc apparement il y a une soltion =) c 'est genial mais je dois inserer ce code ou ??

 

je suis novice désoler de demander

  • Author

Ah j'ai trouvé ou le placer , j'avais juste a faire un plugin

Ca marche a la perfection , merci infiniment =))

 

longue vie a vous

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.