Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Droidz

Administrators
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hi, Which quester profile are you using? A special objective like absorbing those elementals usually needs a specific step in the profile, the bot doesn't know that custom interaction on its own, so if the profile just kills or interacts normally the absorb won't count.
  2. Hi, When the bot sits to regen, it restores both health and mana in the same sit, and it keeps drinking until the upper drink value (the second %, 95% by default). Your mana is almost always under 95%, so it drinks nearly every time it heals. Lower that upper drink value, for example set drink to 5% -> 30%. Then when it sits to heal it only drinks if mana is really low, and stops fast. If you don't want it to drink at all, leave the drink field empty (or turn off resting for mana) and keep only your heal spell for health.
  3. Hi, The 4.3.4 client workaround doesn't work anymore because Whitemane switched to the newer 4.4.x Cataclysm Classic client. WRobot for Cataclysm only supports the 4.3.4 client, so there is no version that works on Whitemane now.
  4. Hi, There is no workaround. WRobot for Cataclysm only supports the 4.3.4 client, and Whitemane moved to the newer 4.4.x Cataclysm Classic client which isn't supported. There is no version for it at the moment.
  5. Hi, WRobot for Cataclysm only works with the 4.3.4 client. The newer 4.4.x Cataclysm Classic client (Whitemane and others) isn't supported, and there is no version for it at the moment.
  6. Droidz commented on nax's bug report in Bug Tracker
    Hello, Thanks for the suggestion. There's already a protection in place that handles this case, and so far it's been holding up well against Lua-side detection. If you need this on a specific server, a plugin or a fight class override is the cleaner route.
  7. Hello, I can't read the logs on the video.
  8. The last possibility is that it's caused by a wrobot plugin or the fight class. Otherwise, I'm sorry, I don't know what could cause this type of problem.
  9. Try to use the shortcut "WRobot (DX hook)" to launch the bot.
  10. Hello, Your client path shows "TBC-2.4.3.8606-enGB-Repack" - repacks are often slightly modified clients (even if they look "clean"), and that's very likely what's causing the crash. Try to find an original unmodified 2.4.3 client (not a repack) and test with that. That should fix it. No, Vulkan won't help here, the issue is at the memory/hook level, not graphics related.
  11. 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/
  12. Droidz commented on 4mkjp4uh's bug report in Bug Tracker
    Changed Status to Fixed Changed Version to All
  13. Droidz commented on 4mkjp4uh's bug report in Bug Tracker
    Hello, The hosting provider is experiencing a technical issue with their infrastructure. The service will return as soon as the machine hosting the pathfinder server is back online.
  14. Hello, Could you share the versions/builds (of the game) that your servers are using?
  15. 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?
  16. 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.
  17. 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.
  18. 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.
  19. Hello, the problem should be resolved.
  20. 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.
  21. Hello, This problem should be resolved.
  22. 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.
  23. 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

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.