-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Hello, use quest type UseItemOn, but before pulse this step add step type runcode with c# code; wManager.wManagerSetting.CurrentSetting.ListHarvest.Add(123456); (replace 123456 by the entry id of gameobject at havest)
-
Hello, you can convert it manually, but to do this you need to have good know in HB and WRobot API.
-
Look in your log to find reason.
-
Help WRobot to improve navigation mesh construction
Droidz replied to Droidz's topic in Tutorials - WRobot
Try to change settings (this settings fix falls problem, but this settings can add problems, don't forget to reset it): wManager.wManagerSetting.CurrentSetting.WallDistancePathFinder = 0.5f; // wManager.wManagerSetting.CurrentSetting.PathFinderPostionOffset = 1.5f; -
Help WRobot to improve navigation mesh construction
Droidz replied to Droidz's topic in Tutorials - WRobot
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(5329.017, 1475.776, 104.4991), new Vector3(5314.128, 1482.414, 98.59454) }, (int) wManager.Wow.Enums.ContinentId.Draenor), new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(5314.128, 1482.414, 98.59454), new Vector3(5329.017, 1475.776, 104.4991) }, (int) wManager.Wow.Enums.ContinentId.Draenor), }; wManager.Wow.Helpers.PathFinder.OffMeshConnections.MeshConnection.AddRange(me); //wManager.Wow.Helpers.PathFinder.OffMeshConnections.Save(); -
Help WRobot to improve navigation mesh construction
Droidz replied to Droidz's topic in Tutorials - WRobot
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(4167.176, -2293.402, 59.9585), new Vector3(4167.222, -2319.793, 64.63189) }, (int) wManager.Wow.Enums.ContinentId.TanaanJungleIntro), new PathFinder.OffMeshConnection(new List<Vector3> { new Vector3(4167.222, -2319.793, 64.63189), new Vector3(4167.176, -2293.402, 59.9585) }, (int) wManager.Wow.Enums.ContinentId.TanaanJungleIntro), }; wManager.Wow.Helpers.PathFinder.OffMeshConnections.MeshConnection.AddRange(me); //wManager.Wow.Helpers.PathFinder.OffMeshConnections.Save(); -
Hello, http://wrobot.eu/forums/topic/2018-wrobot-old-versions/
-
Do you have try this: http://wrobot.eu/forums/topic/5116-after-todays-update-for-wrobot/?do=findComment&comment=23709
-
Help WRobot to improve navigation mesh construction
Droidz replied to Droidz's topic in Tutorials - WRobot
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(); -
@bryan2986 @mich125 you use Sky Golem?
-
In avanced general settings tab "Path-finding" try to disable option "Avoid walls with ray (beta)".
-
Help WRobot to improve navigation mesh construction
Droidz replied to Droidz's topic in Tutorials - WRobot
Thank you, can you send me from/to positions where you stuck please. -
Bonjour, essayé d'activer l'option "Use lua to move" dans "advanced general settings".
-
Your Cart You have no items in your cart right now
Droidz commented on vargun09's bug report in Bug Tracker
Hello, try to use another web brower. -
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/ ).
-
All maps of WRobot for legion are update.
-
Hello, it is not wrobot bug, but problem is probably caused by your profile.
-
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
-
CS Error Thrown when making LUA macros optional in settings
Droidz replied to bonsai's topic in Fight Classes assistance
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/ ). -
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() { } }