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.

Mouse X Y Z Position

  • Version: All
  • Product: Developers
  • Type: Suggestion
  • Status: Confirmed

Hello, i would like to ask if a method can be added to return the currents cursor position in-game like:

    public static Vector3 GetCursorPosition()
    {
      try
      {
		//return data
 		//return
      }
      catch (Exception ex)
      {
        Logging.WriteError(" " + ex, true);
        return new Vector3(0.0f, 0.0f, 0.0f);
      }
    }

It would be really helpful for e.g. easy profile creating or editing.

 

Thank you in advance.

 

User Feedback

Recommended Comments

reapler

Elite user

Hello, i looked abit in CE and got a few offsets for 3.3.5a which works on right & left click:

        public static Vector3 GetCursorPosition()
        {
            try
            {
                int address = Memory.WowMemory.Memory.ReadInt32((uint)Memory.WowMemory.Memory.ReadInt32((uint)GetWoWBase() + 0x007743A0) + 0x2B0);
                float _X = Memory.WowMemory.Memory.ReadFloat((uint)address + 0x3C);
                float _Y = Memory.WowMemory.Memory.ReadFloat((uint)address + 0x40);
                float _Z = Memory.WowMemory.Memory.ReadFloat((uint)address + 0x44);
                return new Vector3(_X, _Y, _Z);
            }
            catch (Exception ex)
            {
                Logging.WriteError("Error: " + ex, true);
                return new Vector3(0.0f, 0.0f, 0.0f);
            }
        }

I hope it can take off abit work.

 

Best regards

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.