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.

Ajout d'un point dans la minimap

Featured Replies

Bonjour

Je me demandais comment ajouter un point dans la minimap comme le fait le tracker ?

Parce que j'ai mis cette routine en place afin de reperer les boss de talador

int[] IDrecherchee = new int[] { 82998, 82930, 88436, 82988, 82942, 82930, 82920, 82922, 83008, 88071, 88072, 88083, 82992, 88043, 83019, 87597};

string[] STRrecherchee = new string[] { "Matrone du péché", "Marche-Terreur d'Ombreflamme","Vigilant Paarthos", "Kurlosh Croc-Funeste", "Dame Démofouet", "Marche-terreur d’ombreflamme","Seigneur Korinak", "Xothear le Destructeur", "Haakun l’Insatiable","Stratège Ankor", "Archimagus Tekar", "Lieuse d’âme Naylana", "Compagne gangrefeu", "Avatar de Socrethar", "Gug’tol ", "Bombardier Gu’gok" };
public void RechercheBoss()
    {
        if (_RechBoss.IsReady)
        {
            Logging.Write(" ------------------- ");
            for (int X = 0; X < IDrecherchee.Length; X++)
            {
                GestObjet(IDrecherchee[X], X);
            }
            _RechBoss = new robotManager.Helpful.Timer(1000);
        }
    }
public void GestObjet(int Objet, int PosID)
    {
        var list = wManager.Wow.ObjectManager.ObjectManager.GetObjectWoW();
        foreach (var woWUnit in list)
        {
            if (woWUnit.Entry == Objet)
            {
                Logging.WriteError(STRrecherchee[PosID] + " trouvé");
            }
        }
    }

Cela marche super mais agrémenté d'un point sur la minimap ce serait top.

Ps : J'utilise la liste GetObjectWoW() car c'est la seule liste qui inclue tous les boss. En effet, en faisant la recherche par ObjectManager.GetWoWUnitByEntry(int), je me suis apperçu qu'un grand nombre de boss n'y apparaissaiet pas.

Le tracker helas ne permet pas d'inclure une liste d'ID précise et son usage simultane avec Wrobot Rotation n est pas possible non plus.

 

 

 

 

Salut

        // On supprime les anciens points (WRobot ne supprime pas les points automatiquement):
        wManager.Wow.Forms.UserControlMiniMap.LandmarksMiniMap.Remove("Nom de mes points de repère");


        WoWUnit unitBoss = new WoWUnit(0); //...
        // On ajoute un boss
        wManager.Wow.Forms.UserControlMiniMap.LandmarksMiniMap.Add(unitBoss.Position, "Nom de mes points de repère", System.Drawing.Color.OrangeRed, 10);

 

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.