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.

How To Utilize Demon Hunter Glide & Maneuverability

Featured Replies

So far any effort I have made to utilize the Demon Hunters' maneuverability has looked incredibly bot-like.

The following code is my attempt to find a suitably-far point to move to (to prevent the bot from using the Glide ability, only to immediately turn back because it didn't remove a waypoint passed while flying.

The problem is that, without a way to determine whether or not the bot is on the ground or up in the air, there really isn't a good way to handle cases where the bot might overshoot a waypoint (or perform a simple turn while gliding).

Seems like if I could figure out how to tell when the DH is in the air, it would be possible to have it skip/remove any waypoints if the bot passes withing N yards of its X, Y coordinates.

How can I do this?

Current Code

public void DemonHunterGlide()
	{
		wManager.Events.MovementEvents.OnMovementPulse += (path, cancelable) =>
		{
			var furthestPointInLoS= path.Where(p=> !TraceLine.TraceLineGo(ObjectManager.Me.Position, p, wManager.Wow.Enums.CGWorldFrameHitFlags.HitTestAll)).OrderBy(p=> ObjectManager.Me.Position.DistanceTo(p)).LastOrDefault();
			var distance = ObjectManager.Me.Position.DistanceTo(furthestPointInLoS);
          	Logging.Write("Distance = " + distance + ", Point = " + furthestPointInLoS.ToString());
			Logging.Write(@"Beginning Demon Hunter ""Glide"" ability with a jump");
			wManager.Wow.Helpers.Move.JumpOrAscend();
			Thread.Sleep(500);
			Logging.Write(@"Jump");
			wManager.Wow.Helpers.Move.JumpOrAscend();
			Thread.Sleep(500);
			Logging.Write(@"Jump");
			wManager.Wow.Helpers.Move.JumpOrAscend();
			FelRush.Launch();
			Logging.Write(@"Done");
		};

	}



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.