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.

Hello...Je te sollicite une derniere fois :)

Featured Replies

Hello

 

Avant Draenor, j'utilisais cette routine pour cibler automatiquement le futur soigné.

public void Ciblage(int SoinMini)
    {
        List<WoWPlayer> amisPlayerList = ObjectManager.GetWoWUnitAlliance();
        amisPlayerList.Add(ObjectManager.Me);
        WoWUnit[] cibles = new WoWUnit[amisPlayerList.Count];
        cibles = amisPlayerList.OrderBy(p => p.HealthPercent).ToArray();

        for (int i = 0; i < cibles.Length; i++)
        {
            if (cibles[i].IsValid && cibles[i].GetDistance < 40 && cibles[i].IsAlive && (cibles[i].Health < (cibles[i].MaxHealth - SoinMini)) && !TraceLine.TraceLineGo(cibles[i].Position))
            {
                if (ObjectManager.Target.GetBaseAddress != cibles[i].GetBaseAddress)
                {
                    Interact.InteractGameObject(cibles[i].GetBaseAddress);
                }
            }
            break;
        }
    }

ésormais avec la nouvelle mouture la routine

if (ObjectManager.Target.GetBaseAddress != cibles[i].GetBaseAddress)

Ne passe plus. Elle était essentielle afin de ne pas trop solliciter Interact.

 

N'y a t il pas moyen d'avoir quelque chose équivalent avec la nouvelle mouture ?

 

Je suis sincèrement désolé de te solliciter a nouveau.

 

Bientôt je pourrais poster mes profils. Ils sont super intéressants, tu verras. Je dois juste dépasser certaines difficultés du fait que je ne baigne pas dans la programmation depuis tout petit ^^. Merci encore...

Tu peux utiliser une de ces conditions:

if (!ObjectManager.Target.IsValid  || ObjectManager.Target.GetBaseAddress != cibles[i].GetBaseAddress)

if (!ObjectManager.Target.IsValid  || !ObjectManager.Target.IsTaggedByYou)

if (!ObjectManager.Target.IsValid  || ObjectManager.Target.Guid != cibles[i].Guid)

Mais normalement ton code actuel devrait fonctionner, tu as une message d'erreur? ou juste que le bot spam interact?

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.