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.

Hightmountain - foxflower

Featured Replies

  • 4 weeks later...
On 18/10/2016 at 3:57 PM, Droidz said:

Hello, use grinder product and add fox id in the list of mob to attack (in grinder product wrobot gather also nodes).

The fox is not supposed to be attacked, just followed.

  • 2 weeks later...

would using the quester profile to make a quest of type follow NPC work with the fox being the npc and using hotspots as the intended farm route?

  • 3 months later...

Hello, try this plugin: FoxFlowerGatherer.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using robotManager.Helpful;
using wManager.Wow.Bot.Tasks;
using wManager.Wow.Helpers;
using wManager.Wow.ObjectManager;

public class Main : wManager.Plugin.IPlugin
{
    private bool FoxFlower()
    {
        WoWAreaTrigger scrap = GetFlowerScrap();
        if (scrap != null && scrap.IsValid)
        {
            GoToTask.ToPosition(scrap.Position);
            return true;
        }
        if (IsFoxPresent())
        {
            return true;
        }
        return false;
    }

    private bool IsFoxPresent()
    {
        IEnumerable<WoWUnit> mobsOfInterestQuery =
            from wowUnit in ObjectManager.GetObjectWoWUnit()
            where
                wowUnit.Entry == 98235
                && wowUnit.IsAlive
                && ObjectManager.GetObjectWoWPlayer().All(p => p.IsLocalPlayer || p.Target != wowUnit.Guid)
            orderby
                  wowUnit.GetDistance
            select
                  wowUnit;
        return mobsOfInterestQuery.ToList().Count() > 0;
    }

    private WoWAreaTrigger GetFlowerScrap()
    {
        IEnumerable<WoWAreaTrigger> t =
        from trigger in ObjectManager.GetObjectWoWAreaTrigger()
        where
            trigger.Entry == 9756
        orderby
            trigger.GetDistance
        select
            trigger;

        return t.FirstOrDefault();
    }

    public void Initialize()
    {
        Logging.Write("[FoxFlowerGatherer] Starting");
        robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) =>
        {
            try
            {
                if (state != null && state.DisplayName == "Farming" &&
                    Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)
                {
                    while (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && 
                           !Conditions.IsAttackedAndCannotIgnore &&
                            FoxFlower())
                    {
                        cancelable.Cancel = true;
                        Thread.Sleep(50);
                    }
                }
            }
            catch (Exception l)
            {
                Logging.WriteError("[FoxFlowerGatherer] " + l);
            }
        };
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}

 

  • 2 weeks later...

I cant seem to get this plugin to work with following the fox, are there any other settings that need to be changed?

Every time a fox spawns it will stop but it doesn't pick up the flowers but once I manually pick up them it mounts and continues the profile.

I tried it as well today, it doesn't work. :(

@Droidz can you please have a look? When the fox is spawning, he is just standing around, where it doesen'T matte rif you are infight or not.

  • 3 weeks later...

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.