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. Hello, I haven't found how to resolve this problem on old Wow versions. You can try to use lua function http://wow.gamepedia.com/API_IsSpellKnown (and if you use xml fightlcass disable spell setting "Check if know spell").
  2. Hello, If you want use spell only out of combat, add condition "Me In Combat" > "False".
  3. Hello, reply by private message
  4. Hello, use wManager.Wow.Helpers.SpellManager.KnowSpell(1234) or wManager.Wow.Helpers.SpellManager.KnowSpell("Spell Name in english")
  5. Droidz commented on 88Gamer88's bug report in Bug Tracker
    WRobot generates all time log files ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ step 2.2, skip step 2.1)
  6. Droidz commented on 88Gamer88's bug report in Bug Tracker
    Hello, Can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  7. Bonjour, Installer la dernière version de WRobot puis extraire WRobot_7.1.0 22995.rar dans le dossier (remplacé les fichiers existant, n'accepté pas les mise à jours au lancement)
  8. Droidz commented on myselfgod's bug report in Bug Tracker
    Hello, try to activate manually wow option "Auto loot" (https://www.youtube.com/watch?v=7qVIW8BtIgI)
  9. Hello, Currently, WRobot close wow if your character move of more than 450 yards in less than 3 seconds. Sincerely, it is hard to reliably detect a TP if it is only 5 yards. You can try this plugin (plugin no tested): TPpause.cs (you can edit this file with notepad and change 'line 12' max speed, and 'line 13' pause time) You can get your current character speed with wow command (in wow chat): /run print(GetUnitSpeed("player"))
  10. http://wrobot.eu/bugtracker/sizerange-calculation-is-broken-r497/?do=findComment&comment=3329 How do you check if you are at good distance?
  11. Droidz commented on myselfgod's bug report in Bug Tracker
    Hello, can you give more details and your log file.
  12. Hello, Can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
  13. Hello, you get this problem all time at the same position? Can you share your profile please?
  14. Droidz commented on Bugreporter's bug report in Bug Tracker
    Changed Status to Fixed
  15. Droidz commented on Bugreporter's bug report in Bug Tracker
    If you can tell me if problem is resolved with new update
  16. Droidz commented on Arcangelo's bug report in Bug Tracker
    Hello, use quest type "OverridePulseCSharpCode" with code: var doorId = 1234; float distance = 2.5f; var o = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByEntry(doorId)); if (o.IsValid) { if (wManager.Wow.Bot.Tasks.GoToTask.ToPosition(o.Position, distance) && o.IsValid) { wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress); } } return true;
  17. Hello, what version of WRobot do you use? I cannot reproduct this.
  18. http://wrobot.eu/files/file/902-conjurer-margoss-reputation-fishing-loop/
  19. Hello, this problem was caused by the plugin "MultiPull", I'll update it. To wait you can try to use this plugin http://wrobot.eu/forums/topic/2747-clear-session-blacklist/?do=findComment&comment=12547
  20. You can also write log like: robotManager.Helpful.Logging.Write("My test log");
  21. Hello, you can test code return value in development tools like this: var o = wManager.Wow.ObjectManager.ObjectManager.GetUnitAttackPlayer(); if (o.Count > 0) { wManager.DevelopmentTools.OutPutCSharp = o[0].Name + " Distance: " + o[0].GetDistance.ToString(); }
  22. Hello, you need to use c# for this quest, and use code like: var grappleId = 1234; var grapple1 = new Vector3(1, 2, 3); var grapple2 = new Vector3(1, 2, 3); var grapple3 = new Vector3(1, 2, 3); if (ObjectManager.Me.Position.DistanceTo(grapple1) < 8) { var g = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(grappleId), grapple2); if (g.IsValid) { Interact.InteractGameObject(g.GetBaseAddress, true); Thread.Sleep(1000); } } else if (ObjectManager.Me.Position.DistanceTo(grapple2) < 8) { var g = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(grappleId), grapple3); if (g.IsValid) { Interact.InteractGameObject(g.GetBaseAddress, true); Thread.Sleep(1000); } } // ... else { var g = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(grappleId), grapple1); if (g.IsValid) { Interact.InteractGameObject(g.GetBaseAddress, true); Thread.Sleep(1000); } }
  23. You can try to use this plugin to wait fix: http://wrobot.eu/forums/topic/2747-clear-session-blacklist/?do=findComment&comment=12547
  24. Hello, You need to use c# code, and it is very hard to manage this quest, I recommand to skip this quest or request at the user to complete it manually.
  25. If you can wait next update

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.