July 16, 20205 yr 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
July 19, 20205 yr 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