-
Posts
12579 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
I think the problem is that in your profile, the mailbox position has the type "Flying" (and you don't use flying mount).
-
Hello, do you have any errors in your log files? Do you have installed the required programs ( https://wrobot.eu/files/file/2-wrobot-official/ ) ?
-
can't find route to flight master and it black lists it MOP 5.4.8 server
Droidz commented on DarkShado's bug report in Bug Tracker
Hello, when you get this type of problem, check in tab "Tools" button "Taxi database" if the flightmaster position is good. -
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Bonjour, Il existe des add-ons Wow pour ça comme https://www.curseforge.com/wow/addons/junkremover . Utiliser un add-on de ce type compatible avec votre version du jeu est l'approche la plus simple et la plus fiable.
-
New Dragonflight Firestorm server, anyone tested yet?
Droidz replied to ryddla's topic in General discussion
I added support of 10.1.7.51261 -
New Dragonflight Firestorm server, anyone tested yet?
Droidz replied to ryddla's topic in General discussion
No sorry -
New Dragonflight Firestorm server, anyone tested yet?
Droidz replied to ryddla's topic in General discussion
Hello, I added the support of the version "10.2.7 build 55664", you need to download again the updater to be able to select this version. -
[Vanilla] Thousand Needs / Freewind Post Elevator walking off end before elevator gets there
Droidz commented on DarkShado's bug report in Bug Tracker
The profile test_ok.xml works for you ? (if not, share your log file) I gave you the answer, use hotspots rather than static/fixed paths. You can do this with the 'Grinder' by activating the option, or with the 'Quester' (default). If you really want to use a fixed path, you must add the necessary code yourself to take the elevator (the bot does not modify the fixed paths, he trusts the profile creator). -
[Vanilla] Thousand Needs / Freewind Post Elevator walking off end before elevator gets there
Droidz commented on DarkShado's bug report in Bug Tracker
Hello, The problem is that you are using a predefined/static path (which doesn't account for the elevator), and when a predefined path is provided, the bot follows it without question. You can either add the C# code in "Action" to your path to account for the elevator (which is complex) : https://wrobot.eu/bugtracker/add-offmesh-forced-for-barrens-elevator-r1200/?do=findComment&comment=5561&_rid=1 Or you can use hotspots and let the pathfinder do its job (this elevator is supported by the pathfinder, I just tried it and it works) : test_ok.xml If you're still having the issue, please share the session logs where you're using the profile I shared with you. -
In vanilla the previous plugin will not work. You can try : using System.Threading; using robotManager.Helpful; using wManager.Wow.Class; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { Logging.Write("CastSpellByName to /cast plugin loaded."); robotManager.Events.Events.OnCustomEvent += OnEventsOnOnCustomEvent; } private void OnEventsOnOnCustomEvent(string name, object[] args, System.ComponentModel.CancelEventArgs cancelable) { if (name.StartsWith("Spell.Launch") && args.Length >= 1 && args[0] is Spell) { Spell spellName = args[0] as Spell; if (spellName != null){ string luaUnit = null; bool stopMove = false; bool waitIsCast = false; if (args.Length >= 5 && args[4] is string && args[2] is bool && args[1] is bool) { stopMove = (bool)args[1]; waitIsCast = (bool)args[2]; luaUnit = args[4] as string; } cancelable.Cancel = true; if (stopMove) { if (ObjectManager.Me.GetMove) MovementManager.StopMoveTo(true, 1000); if (ObjectManager.Me.GetMove) Thread.Sleep(10); } if (!string.IsNullOrWhiteSpace(luaUnit) && luaUnit != "player" && luaUnit != "none") { Logging.WriteDebug("Casting " + spellName + " on " + luaUnit + " with macro /cast"); wManager.Wow.Helpers.Lua.RunMacroText("/cast [@" + luaUnit + "] " + spellName); } else { Logging.WriteDebug("Casting " + spellName + " with macro /cast"); wManager.Wow.Helpers.Lua.RunMacroText("/cast " + spellName); } if (waitIsCast) Thread.Sleep((int)(Usefuls.Latency * 0.9)); else Thread.Sleep(10); while (waitIsCast && ObjectManager.Me.IsCast) { Thread.Sleep(1); } } } } public void Dispose() { robotManager.Events.Events.OnCustomEvent -= OnEventsOnOnCustomEvent; } public void Settings() { } } Main.cs
-
Hello, can you try this plugin :
-
https://wrobot.eu/forums/topic/15331-new-dragonflight-firestorm-server-anyone-tested-yet/?do=findComment&comment=69603&_rid=1
-
New Dragonflight Firestorm server, anyone tested yet?
Droidz replied to ryddla's topic in General discussion
If you can give me the build number (of the game) used on your servers. -
New Dragonflight Firestorm server, anyone tested yet?
Droidz replied to ryddla's topic in General discussion
Hello, I'm releasing a compatible version in the next week. I'll post a message here when it's done. -
WoW 5.4.8 Profiles?
Droidz replied to Falador's topic in WRobot for Wow Mists of Pandaria - Help and support
Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ). -
***Turtle wow (v1.17) auto loot or looting is bugged. ATTENTION***
Droidz commented on Eithius16's bug report in Bug Tracker
-
Hello, try this plugin : using wManager.Wow.Enums; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var stopWatch = new System.Diagnostics.Stopwatch(); wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { if (stopWatch.ElapsedMilliseconds < 1000 && stopWatch.IsRunning) { return; } var obj = ObjectManager.GetObjectByGuid(target); if (obj.IsValid && (obj.Type == WoWObjectType.Unit || obj.Type == WoWObjectType.GameObject)) { var isLootable = false; if (obj.Type == WoWObjectType.Unit) { var unit = new WoWUnit(obj.GetBaseAddress); isLootable = unit.IsLootable; } else if (obj.Type == WoWObjectType.GameObject) { isLootable = true; } if (isLootable) { stopWatch.Restart(); Interact.InteractGameObject(obj.GetBaseAddress); cancelable.Cancel = true; } } }; } public void Dispose() { } public void Settings() { } } Main.cs
-
Need to Upgrade 1 session/6 months to the 3 sessions/3months
Droidz replied to grogoroo's topic in General assistance
Hello, it's done -
It's sample of repeatable quest : https://wrobot.eu/files/file/409-98-100-meatgut-needs-bones-repeatable-quest-nagrand/
-
Hello, Your quests seem common. Watch these videos to understand how the "Quester" : https://wrobot.eu/forums/topic/3323-quest-profile-creation-video-tutorial/ To use an item at a specific location, use the 'UseItemOn' quest type, don't add mobs/objects (keep empty), the bot will use items at hotspots positions.
-
Hello, Yes, you must have 1 WRobot client (window) per game (which counts as the number of sessions when signing up for a subscription). Try first with 2 or 3 characters, managing 39 characters may be complicated.