-
Posts
12624 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Hello, Could you share the versions/builds (of the game) that your servers are using?
-
Hello, What do you mean by "trying to log out" exactly? Is WoW going AFK and showing the disconnect dialog because the bot isn't sending any input? If that's the case, try enabling "Use Lua to move" in the general settings. Can you also share a log file (from the Logs folder) so I can see what's going on?
-
Mining lvl too low when in flight form WOTLK
Droidz replied to piemelmans555's topic in Gatherer assistance
Hello, Can you share a log file (from the Logs folder) showing the issue? It would help see what's happening when the bot says your mining level is too low. Also, which exact WoW client version is this (check the game login screen, bottom left)? And which server? For the ground mount running in circles - are you using "Use Lua to move" in the general settings? On some private servers CTM (click to move) behaves differently and can cause circular movement. -
He stops seeing mobs and just runs along the route
Droidz replied to PavelNevagno's topic in Grinder assistance
Hello, The GetReactionTowards NullReferenceException typically happens on private servers that use custom NPCs with faction template IDs not present in the bot's internal database. The bot can't determine if the mob is hostile or friendly, so it just skips it. -
Hello, You can do this with a C# plugin. Save this as a .cs file in your Plugins folder (no tested): using System; using System.Collections.Generic; using robotManager.Helpful; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using Math = System.Math; public class Main : wManager.Plugin.IPlugin { private bool _isRunning; public void Initialize() { _isRunning = true; EventsLuaWithArgs.OnEventsLuaStringWithArgs += OnCombatLogEvent; Logging.Write("[MoveOnSpell] Started."); } public void Dispose() { _isRunning = false; EventsLuaWithArgs.OnEventsLuaStringWithArgs -= OnCombatLogEvent; Logging.Write("[MoveOnSpell] Stopped."); } public void Settings() { } private void OnCombatLogEvent(string eventid, List<string> args) { if (eventid != "COMBAT_LOG_EVENT_UNFILTERED" || args.Count < 9) return; string subEvent = args[1]; string spellId = args[8]; if (subEvent == "SPELL_SUMMON" && spellId == "95074") { Logging.Write("[MoveOnSpell] Detected spell 95074, moving away!"); var me = ObjectManager.Me.Position; float angle = (float)(new Random().NextDouble() * Math.PI * 2); float dist = 10f; var safePos = new Vector3( me.X + (float)Math.Cos(angle) * dist, me.Y + (float)Math.Sin(angle) * dist, me.Z ); MovementManager.Go(new List<Vector3> { safePos }); } } } This listens to combat log events and when it sees SPELL_SUMMON with spell ID 95074, it moves 10 yards in a random direction. You can adjust the distance if needed. If the random direction sometimes sends you into a wall or off a cliff, you could replace the random angle with a backward movement (opposite of your facing direction) instead.
-
The program crashes after the wrobot update.
Droidz replied to lucksfx's topic in General assistance
Hello, the problem should be resolved. -
Why is it spelled "ContionType" instead of "ConditionType"?
Droidz replied to lucksfx's topic in General assistance
Hello, Yes, it's a typo that made it into production a long time ago. Unfortunately, fixing it now would break all existing FightClass profiles (XML serialization relies on the exact property name), so it has to stay as is. Sorry for the lost time debugging, I understand the frustration. I'll add a note about it in the documentation.- 1 reply
-
- fightclass api
- bug
-
(and 1 more)
Tagged with:
-
Remote function not working (most of the time)
Droidz replied to onero's topic in General assistance
Hello, This problem should be resolved. -
Can't seem to use wrobot on 1.12 (elysium project)
Droidz commented on piemelmans555's bug report in Bug Tracker
Hello, try downloading the game client from another website. Wrobot only works with unmodified game clients. -
Hello, you can find the list of supported versions here: https://wrobot.eu/supported-wow-versions/ . The version you just mentioned appears to be a Classic version that is not supported by Wrobot.
-
I apologize, but I cannot deploy a generic solution to fix this issue. If you're going to specific positions, you can use Off Mesh Connections on your side to resolve it. Attached to this message is an example that solves exactly the problem from your starting position to your destination position. OffMeshConnections.xml
-
-
Hello, On which version of the game are you experiencing this issue?
-
https://wrobot.eu/bugtracker/wrobot_735_26124-pathfinder-problem-r1555/
-
Hello, The version of WRobot that supports The War Within will be available a few weeks after the release of Midnight.
-
I've just released a new update for the Pathfinder server. If you encounter any issues again, please share the logs here along with a brief description, if necessary, of what's happening.
-
Changed Status to In Progress Changed Version to All
-
Hello, your issue should be resolved.
-
Hello, You can find the invoice for your subscription upgrade here: https://wrobot.eu/clients/orders/ Best regards.
-
In the meantime, I've tried to solve the issue. Have you experienced any errors in the past few days?
-
Hello, Could you please share the full log file of the session where you encountered the issue? You can find instructions on how to post your log file here: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
-
Hello, the issue should be resolved.
-
Hello, the issue should be resolved.
-
Hello, Could you please share the full log file of the session where you encountered the issue? You can find instructions on how to post your log file here: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
