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.

vector3

Featured Replies

can someone explain me what am doing wrong or why it doesn't work in Silvermoon city

var pos = new Vector3(9992.634, -7113.402, 47.70632);
int clickonobject = 184502;
GoToTask.ToPosition(pos);
        while (MovementManager.InMovement)
        {
            Thread.Sleep(250);
        }
        if (ObjectManager.Me.Position.DistanceTo2D(pos) < 3)
        {
            Interact.InteractGameObject(ObjectManager.GetWoWGameObjectByEntry(clickonobject).FirstOrDefault().GetBaseAddress);
            Thread.Sleep(500);
            
        }
        return true;

after pick up the quest my char should run to the position and click on the object, but this doesn't happens.

Hello,

You don't need to wait (while (MovementManager.InMovement)) with gototask.

You can directly interact with a game object with code like :

var pos = new Vector3(9992.634, -7113.402, 47.70632);
int clickonobject = 184502;
bool result = GoToTask.ToPositionAndIntecractWithGameObject(pos, clickonobject);
return result;

Do you have any error in your log when bot run this task ?

  • Author
3 hours ago, Droidz said:

Hello,

You don't need to wait (while (MovementManager.InMovement)) with gototask.

You can directly interact with a game object with code like :

var pos = new Vector3(9992.634, -7113.402, 47.70632);
int clickonobject = 184502;
bool result = GoToTask.ToPositionAndIntecractWithGameObject(pos, clickonobject);
return result;

Do you have any error in your log when bot run this task ?

this code doesn't work, my char will run different side, and trying to swim to undercity

  • Author
32 minutes ago, Droidz said:

The code is not executed, at no time in the log file is there a path lookup for the position of your code.

everythins should work, but its not, no idea why.

 

  • Author

mb this code doesnt work bcoz the bloodelf location is an instance, and the npc where it need to be turned in, stay out of the instance...

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.