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.

when the character is dead,Using a custom path to the location of the resurrection

Featured Replies

in quester Is invalid ,but  character will Automatic location to resurrection,Just like the following code:

MovementManager.Go(PathFinder.FindPath(new Vector3(819.1201, 541.1679, 34.26245, "None")), false);
        while (MovementManager.InMovement &&
               Conditions.InGameAndConnectedAndProductStartedNotInPause)
        {
            Thread.Sleep(100);
        }

Hello,

You won't be able to easily manage the character's movements from a quest profile when the character is dead.

One of the possible approaches (untested code):

robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancel) =>
{
    if (state is wManager.Wow.Bot.States.Resurrect)
    {
        if (ObjectManager.Me.IsDead)
        {
            MovementManager.Go(PathFinder.FindPath(new Vector3(819.1201, 541.1679, 34.26245, "None")), false);
            while (MovementManager.InMovement &&
                   Conditions.InGameAndConnectedAndProductStartedNotInPause &&
                   ObjectManager.Me.IsDead)
            {
                Thread.Sleep(100);
            }
            // cancel.Cancel = true;
        }
    }
};

You need to run this code only once and add your own conditions for it to run at the right time.

  • 3 months later...

 

On 7/26/2023 at 5:20 PM, Droidz said:

You won't be able to easily manage the character's movements from a quest profile when the character is dead.

One of the possible approaches (untested code):

I tested the code and although there were no errors, it was invalid. Do you have a better way

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.