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.

plugin auto buff Blood Fury Rogue

Featured Replies

Hi there,

i want to run Blood Fury on my classic wow rogue every 2minutes.

I tried already:

But it does not work.

I would appreciate it if somebody can take a look, thank you

                    if (SpellManager.KnowSpell(20572) && !ObjectManager.Me.IsDeadMe)
                    {

                        wManager.Wow.Helpers.Lua.RunMacroText("/cast Blood Fury");

                        Logging.WriteDebug("Use Blood Fury");

 

I also tried

SpellManager.CastSpellByName("Blood Fury");
                        RunMacroText("/cast Blood Fury");

 

 

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using System.ComponentModel;
using System.Diagnostics;
using System.Threading;

using robotManager.Helpful;
using robotManager.Products;

using wManager.Wow.Helpers;
using wManager.Wow.ObjectManager;

public class Main : wManager.Plugin.IPlugin
{
    private bool isRunning;
    private BackgroundWorker pulseThread;
    private static WoWLocalPlayer Me = ObjectManager.Me;

    public void Start()
    {
        pulseThread = new BackgroundWorker();
        pulseThread.DoWork += Pulse;
        pulseThread.RunWorkerAsync();
    }

    public void Pulse(object sender, DoWorkEventArgs args)
    {
        try
        {
            while (isRunning)
            {
                if (!Products.InPause && Products.IsStarted)
                {

                    if (SpellManager.KnowSpell(20572) && !ObjectManager.Me.IsDeadMe)
                    {

                        wManager.Wow.Helpers.Lua.RunMacroText("/cast Blood Fury");

                        Logging.WriteDebug("Use Blood Fury");
                        Thread.Sleep(Usefuls.Latency + 100);
                    }
                }
                Thread.Sleep(10000);
            }
        }
        catch (Exception ex)
        {
            
        }
    }

    public void Dispose()
    {
        try
        {
            isRunning = false;
        }
        catch (Exception e)
        {

        }
    }

    public void Initialize()
    {
        isRunning = true;
        Start();
    }

    public void Settings()
    {
        
    }
}

 

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.