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.

Mouseover ?

Featured Replies

  • 4 weeks later...

Hello, it is possible. Here's an c# example:

        if (wManager.Statistics.RunningTimeInSec() < 2)
        {
            robotManager.Helpful.Logging.Write("Register OnEventsLuaWithArgs");
            wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaWithArgs += delegate (LuaEventsId id, List<string> args)
            {
                if (id == LuaEventsId.UPDATE_MOUSEOVER_UNIT)
                {
                    string name = Lua.LuaDoString("name = UnitName('mouseover')", "name");
                    int minHealth = 110; //cast heal spells if your mouseover target drops under this value
                    int maxrange = 40; //general range for heal spells
                    WoWUnit unit = wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWPlayer().SingleOrDefault(i => i.Name == name);

                    if (unit != null
                        && unit.IsValid
                        && unit.IsAlive
                        && unit.GetDistance < maxrange
                        && unit.HealthPercent < minHealth
                        && !TraceLine.TraceLineGo(ObjectManager.Me.Position, unit.Position, CGWorldFrameHitFlags.HitTestSpellLoS))
                    {
                        //here you can add more conditions which spell should be cast

                        robotManager.Helpful.Logging.Write("cast heal on mouseover");
                        wManager.Wow.Helpers.SpellManager.CastSpellByNameOn("Flash Heal", "mouseover");

                        //here you can start a thread which checks whether you are still mouse over the unit & cast more heals
                    }

                }
            };
            System.Threading.Thread.Sleep(2000);
        }

 

and the example how it can be implemented in fightclass: mouseover heal example.xml

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.