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.

Loop around target

Featured Replies

 

Hi guys, does anyone have any ideas on how to make the bot run around the target within a certain radius using

ObjectManager.Target.Position

 

 

I once knew geometry well, but now "I cannot add 2 + 2", so I will be glad for any help

image.png.8dfdbbdc8189c12d8a0591b46fe6cfde.png

Hi, like that (no tested):

var center = ObjectManager.Target.Position;
var distance = 3.5;
var listPos = new List<Vector3>();
for (double angle = 0; angle < System.Math.PI * 2; angle += 0.6)
{
    var p = new Vector3
    {
        X = (float)(center.X + distance * System.Math.Cos(angle)),
        Y = (float)(center.Y + distance * System.Math.Sin(angle)),
        Z = center.Z
    };
    listPos.Add(p);
}

 

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.