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.

Character moving/rotating while Sapped

  • Version: All
  • Product: WRobot General
  • Type: Bug
  • Status: Fixed

When the character is Sapped, it randomly moves, or let's say better: it rotates a little bit in some direction, when it should be stuck in place. I think it's something related to the wrobot "unstuck", in fact if you have "Dismount when stuck" feature checked, it will dismount if you are sapped. So in few words: the robot thinks Sap is a stuck situation, and forces some movements in order to unstuck (at least this is what it seems to me). It should just stop everything unless in the class fight there is something that can remove sap (medallion, bubble, and so on).

This is a small bug of course, but I'm testing some profiles in Battlegrounds and I see this happening a lot, it looks very weird, and may be even being classified as "hack" if reported with video proof (kinda like the hack that allows you to move while cycloned, or rooted, same concept I think).

Thanks for reading

User Feedback

Recommended Comments

Hello, I have taken note.

To wait you can try this plugin Main.cs (not tested):

using wManager.Wow.ObjectManager;

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        wManager.Events.MovementEvents.OnPulseStuckResolver += MovementEvents_OnPulseStuckResolver;
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }

    WoWLocalPlayer m { get { return ObjectManager.Me; } }

    private void MovementEvents_OnPulseStuckResolver(System.ComponentModel.CancelEventArgs cancelable)
    {
        try
        {
            if (m.IsStunned || m.Rooted || m.Confused || m.HaveBuff("Concussive Shot")) // complete list ...
                cancelable.Cancel = true;
        }
        catch { }
    }
}

 

KnightRyder

Members

I've seen this issue come up personally when I have the bot in a 2 seater mount. Sometimes it will turn sideways.

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.