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.

Need: 'Combat End since MS'

Featured Replies

Is it possible add something like that?

 

I wanna Prowl with my druid after each fight so its not that easy too see that he is a Bot. But the problem is that he use Prowl before looting -.-

I need something like a Delay condition to solve that issue. 

 

Anyone got an idea?

Hello, you could try this as c# code in your fightclass:

        if (wManager.Statistics.RunningTimeInSec() < 2)
        {
            robotManager.Helpful.Logging.Write("Register OnLootSuccessful");
            wManager.Events.LootingEvents.OnLootSuccessful += delegate(WoWUnit unit)
            {
                //task because with thread sleep you would block the thread
                Task.Run(async delegate
                {
                    await System.Threading.Tasks.Task.Delay(2000);//your delay
                    wManager.Wow.Helpers.SpellManager.CastSpellByNameLUA("Prowl");
                });
            };
            System.Threading.Thread.Sleep(2000);//to initialize event only once on startup
        }

So it will cast prowl everytime after you have looted the unit. You can also extend it to do something other after loot if you want.

But i think @eeny's solution would also work with less effort :) just want to show the other possibility.

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.