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.

The code for the target selected before stealing in the 1.12-60 version

Featured Replies

This is my code, when I traverse through the object, I do "ObjectManager.Me.Target = target. Guid; "Select the target, but the bot will attack the target, and enter the battle, I just want to select the target and not attack, how do I need to change the code.


string[] objectNames = new string[] { "血色信徒"};

while (true)
{
    WoWUnit target = ObjectManager.GetObjectWoWUnit()
        .Where(o => objectNames.Contains(o.Name) && o.IsAlive)
        .OrderBy(o => o.GetDistance)
        .FirstOrDefault();

    if (target != null)
    {
 ObjectManager.Me.Target = target.Guid;
 SpellManager.CastSpellByNameLUA("偷窃");


                Thread.Sleep(100);
     

    }
        Thread.Sleep(1000);
}
 

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.