Jump to content

Droidz

Administrators
  • Posts

    12510
  • Joined

  • Last visited

Everything posted by Droidz

  1. To fix this problem, run this c# code (before this step or at profile start): if (wManager.Wow.Helpers.PathFinder.OffMeshConnections.MeshConnection == null || wManager.Wow.Helpers.PathFinder.OffMeshConnections.MeshConnection.Count <= 0) wManager.Wow.Helpers.PathFinder.OffMeshConnections.Load(); var me = new List<PathFinder.OffMeshConnection> { new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(-14240.09, 326.9852, 24.45414), new Vector3(-14269.62, 349.9516, 32.49757) }, (int) wManager.Wow.Enums.ContinentId.Azeroth), new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(-14269.62, 349.9516, 32.49757), new Vector3(-14240.09, 326.9852, 24.45414) }, (int) wManager.Wow.Enums.ContinentId.Azeroth) }; wManager.Wow.Helpers.PathFinder.OffMeshConnections.MeshConnection.AddRange(me); //wManager.Wow.Helpers.PathFinder.OffMeshConnections.Save();
  2. In avanced general settings tab "Path-finding" try to disable option "Avoid walls with ray (beta)".
  3. Thank you, can you send me from/to positions where you stuck please.
  4. Droidz

    Problème de /abs

    Bonjour, essayé d'activer l'option "Use lua to move" dans "advanced general settings".
  5. Droidz

    pathing again

    It is automatic
  6. Hello, can you try to close all WRobot windows and remove folder "WRobot\Data\Meshes\". If your problem is not resolved can you give me position where your are stuck (with map name), can you also share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  7. Droidz

    pathing again

    All maps of WRobot for legion are update.
  8. Droidz

    Starting bot

    Hello, it is not wrobot bug, but problem is probably caused by your profile.
  9. Hello, in relogger general settings, in wrobot path option select file name like "UqtfGgP.exe" (not select file "WRobot.exe"). Edit: Now you need to select again WRobot.exe
  10. Hello, What version of WRobot (and wow) do you use? How do you run this script (screenshot or profile/fightclass)? What is the error (screenshot or log)? Can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  11. Hello, you run WRobot in administrator windows session?
  12. 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() { } }
  13. 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."); } }
  14. Hello, you get this problem all time or only when you are in combat?
  15. And in advanced general settings you can try to disable option "Blacklist Npc/Node if unable to make full path to reach it"
×
×
  • Create New...