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.

Blacklist options

Featured Replies

Hi, how can I add npc to blacklist on a pull, combat or loot?

This code only gives ignore pull.

wManager.wManagerSetting.AddBlackListNpcEntry(111, true);

Like HB code

Blacklist.Add(Me.CurrentTarget, BlacklistFlags.Combat, TimeSpan.FromSeconds(120))
Blacklist.Add(Me.CurrentTarget, BlacklistFlags.Loot, TimeSpan.FromSeconds(120))

 

Hello, you cannot blacklist for combat or loot only with default feature.

For blacklist current target for 120 sec for all tasks with default feature: 

wManager.wManagerSetting.AddBlackList(wManager.Wow.ObjectManager.ObjectManager.Me.Target, 1000 * 120, true);

 

You can create your own blacklist system (for combat only in this sample) like:

        System.Collections.Generic.List<object> myGuidBlacklist = new System.Collections.Generic.List<object>(); // (you can replace "object" by "Int128" or "ulong")
        wManager.Events.FightEvents.OnFightStart += (wManager.Wow.ObjectManager.WoWUnit unit, System.ComponentModel.CancelEventArgs cancelable) =>
        {
            if (myGuidBlacklist.Contains(unit.Guid))
                cancelable.Cancel = true;
        };

        // ..........

        // blacklist my target
        myGuidBlacklist.Add(wManager.Wow.ObjectManager.ObjectManager.Me.Target);

 

  • Author

After loot nps is added to the blacklist, can this be set?

And there is one more question. Can I pause the activity of the bot (for example, quest profile) so that the plugin executes its code and turn it back on again.

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.