September 21, 20169 yr In the process of making a profile for this. Is there a way to follow the fox, or would I need to skip it? (Massive souce of foxfloweR).
October 18, 20169 yr Hello, use grinder product and add fox id in the list of mob to attack (in grinder product wrobot gather also nodes).
October 20, 20169 yr 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.
October 22, 20169 yr 12 hours ago, Droidz said: Like here: https://www.youtube.com/watch?v=Vvmdlgrbz-g ? Yes sir, it'd be really helpful if it can be implemented.
October 31, 20169 yr 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?
February 13, 20179 yr 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() { } }
February 21, 20179 yr 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.
February 27, 20179 yr 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.
Create an account or sign in to comment