-
Posts
12604 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Hello, you run WRobot in administrator windows session?
-
Use Item not working in fightclass
Droidz replied to insanity's topic in WRobot for Wow Vanilla - Help and support
Hello, wait next update for the fix.- 2 replies
-
- healthstone
- use item
-
(and 1 more)
Tagged with:
-
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() { } }
-
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, 98233 } }; // http://www.wowhead.com/npc=98232/withered-hungerer , http://www.wowhead.com/npc=98234/nightmare-creeper , http://www.wowhead.com/npc=98235/frenzied-fox, http://www.wowhead.com/npc=98233/withered-hungerer 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, you get this problem all time or only when you are in combat?
-
Gatherer is skipping nodes (logs included)
Droidz replied to testingz's topic in Gatherer assistance
And in advanced general settings you can try to disable option "Blacklist Npc/Node if unable to make full path to reach it" -
Stuck detection, stuck detection, stuck detection...
Droidz replied to waldodamon's topic in General assistance
-
Not tested but try : Summon Imp Vanilla.xml
-
Hello, sorry you cannot change that
-
Hello, if you get this error sometimes it is not importante.
-
Hello, try to remove "Subject" in advanced generals settings tab "Mail"
-
Hello, try to check in you taxi DB (tab tools) if flightmaster position is good. If yes wait meshes update: http://wrobot.eu/bugtracker/pathing-again-r622/
-
-
Hello, you can run this c# code: wManager.Wow.Helpers.Interact.InteractGameObject(wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByEntry(254241)).GetBaseAddress); Or add Portcullis in objects at harvest list (in advanced generals settings)
-
Swimming under water
Droidz replied to insanity's topic in WRobot for Wow Vanilla - Help and support
Hello, try this plugin: CTMWhenSwimming.cs using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.MovementEvents.OnMoveToLoop += () => { if (ObjectManager.Me.IsSwimming) wManager.wManagerSetting.CurrentSetting.UseCTM = true; else wManager.wManagerSetting.CurrentSetting.UseCTM = false; }; } public void Dispose() { wManager.wManagerSetting.CurrentSetting.UseCTM = false; } public void Settings() { } } You can also run this code in your quest profile (only one time by session): wManager.Events.MovementEvents.OnMoveToLoop += () => { if (wManager.Wow.ObjectManager.ObjectManager.Me.IsSwimming) wManager.wManagerSetting.CurrentSetting.UseCTM = true; else wManager.wManagerSetting.CurrentSetting.UseCTM = false; }; -
Hello, http://wrobot.eu/forums/forum/7-tutorials-wrobot/
-
Corpse Navigation
Droidz replied to jacob whats sup's topic in WRobot for Wow Vanilla - Help and support
http://wrobot.eu/forums/topic/5096-corpse-navigation/ -
Corpse Navigation
Droidz replied to jacob whats sup's topic in WRobot for Wow Vanilla - Help and support
Hello, I'll fix it in next weeks: http://wrobot.eu/bugtracker/pathing-again-r622/ -
Hello, Can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ). Do you use default bobber?
-
Hello, yes, use fish bot default settings and in advanced general settings you have mail settings
