Everything posted by Droidz
-
(help) Création d'un Plugin
Dans la liste des fichiers, il y a des versions pour DF https://www.curseforge.com/wow/addons/junkremover/files/all?page=1&pageSize=20 ; J'ignore ce qu'il en est pour la version actuelle du jeu, mais ça serait étonnant qu'ils aient publié des versions de l'addon pour DF si elles ne fonctionnent pas.
-
WoW 10.1.7 relogger, error in game window on start with relogger
Hello, I released new update, tell me if the problem is solved.
-
Mail Box
I think the problem is that in your profile, the mailbox position has the type "Flying" (and you don't use flying mount).
-
Game version
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
Hello, when you get this type of problem, check in tab "Tools" button "Taxi database" if the flightmaster position is good.
-
Mail Box
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
(help) Création d'un Plugin
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?
I added support of 10.1.7.51261
-
New Dragonflight Firestorm server, anyone tested yet?
No sorry
-
New Dragonflight Firestorm server, anyone tested yet?
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
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
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.
-
Change skillname (Rename) Fishing Bot
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
-
Change skillname (Rename) Fishing Bot
Hello, can you try this plugin :
-
Wrobot pour Dragonflight serveur privé
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?
If you can give me the build number (of the game) used on your servers.
-
New Dragonflight Firestorm server, anyone tested yet?
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?
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***
- WRobot didnt loot Vanilla
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- how i force wrobot to ignore combat when mounting or traveling
I don't really understand. Sometimes "IgnoreFightGoundMount" is enabled, sometimes not. Try without plugins, without fightclass (with the "Automaton" product). But I think your profile, or fightclasse or a plugin is the cause of the problem.- how i force wrobot to ignore combat when mounting or traveling
Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).- how i force wrobot to ignore combat when mounting or traveling
Hello, your setting seems good. Maybe it's your fightclass (try without fightclass to check if the bot dismount).- Need to Upgrade 1 session/6 months to the 3 sessions/3months
Hello, it's done- Target a specific mob
It's sample of repeatable quest : https://wrobot.eu/files/file/409-98-100-meatgut-needs-bones-repeatable-quest-nagrand/ - WRobot didnt loot Vanilla