Jump to content

notme

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by notme

  1.   Hey

    I'm just back in the game and I want to use Wrobot but I find that it doesn't work on the official server anymore.

    I remember that I bought a subscription for 10 years. So?

    Sorry if i sound weird or rude, my english is not that good

  2. On 13/2/2017 at 11:45 AM, Droidz said:

    Hello, Try this plugin: GatheringMobSpawns.cs

    
    using System.Collections.Generic;
    using System.Windows.Forms;
    using robotManager.Helpful;
    using wManager.Wow.Bot.States;
    
    public class Main : wManager.Plugin.IPlugin
    {
        public void Initialize()
        {
            var grinderState = new Grinding {EntryTarget = new List<int> {98232, 98234, 98235 } }; // http://www.wowhead.com/npc=98232/withered-hungerer , http://www.wowhead.com/npc=98234/nightmare-creeper , http://www.wowhead.com/npc=98235/frenzied-fox
            robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) =>
            {
                if (state != null && state.DisplayName == "Farming")
                {
                    if (grinderState.NeedToRun)
                    {
                        grinderState.Run();
                        cancelable.Cancel = true;
                    }
                }
            };
            Logging.Write("[GatheringMobSpawns] Loadded.");
        }
    
        public void Dispose()
        {
            Logging.Write("[GatheringMobSpawns] Disposed.");
        }
    
        public void Settings()
        {
            MessageBox.Show("[GatheringMobSpawns] No settings for this plugin.");
        }
    }

     

    Hello, I downloaded that and I put it in "wrobot / plugins" but when I open the bot I can't activate it, what can I do?

    thanks!

×
×
  • Create New...