leehindle93 1 Posted September 21, 2016 Share Posted September 21, 2016 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). Droidz 1 Link to comment Share on other sites More sharing options...
Raddyn 1 Posted October 14, 2016 Share Posted October 14, 2016 Im interested in this question also. Link to comment Share on other sites More sharing options...
Droidz 2737 Posted October 18, 2016 Share Posted October 18, 2016 Hello, use grinder product and add fox id in the list of mob to attack (in grinder product wrobot gather also nodes). Link to comment Share on other sites More sharing options...
da8ball 104 Posted October 20, 2016 Share Posted October 20, 2016 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. Link to comment Share on other sites More sharing options...
Droidz 2737 Posted October 21, 2016 Share Posted October 21, 2016 Like here: https://www.youtube.com/watch?v=Vvmdlgrbz-g ? Link to comment Share on other sites More sharing options...
Tele 1 Posted October 22, 2016 Share Posted October 22, 2016 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. Link to comment Share on other sites More sharing options...
cgeorg13 2 Posted October 31, 2016 Share Posted October 31, 2016 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? Link to comment Share on other sites More sharing options...
Droidz 2737 Posted February 13, 2017 Share Posted February 13, 2017 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() { } } Link to comment Share on other sites More sharing options...
sourman 0 Posted February 21, 2017 Share Posted February 21, 2017 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. Link to comment Share on other sites More sharing options...
petertrasg 1 Posted February 27, 2017 Share Posted February 27, 2017 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. Link to comment Share on other sites More sharing options...
h1dr0 0 Posted March 20, 2017 Share Posted March 20, 2017 Any news on this one ? Bot still ignoring the fox. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now