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, wManager.Wow.ObjectManager.ObjectManager.Me.IsMovingForward But this detect if player move forward (not only if togglerun is active)
  2. Ok, else you can also create wrapper product (to get full access to "quester" product and override product settings tab) (create your own product and load yourself Quester)
  3. Hello, try to close proxy, firewall and antivirus
  4. ????? Reinstall WRobot in new folder to make clean install will probably resolve your problem
  5. Hello, if you play in legion, you can: wManager.Wow.Helpers.Interact.InteractGameObject(address, true, true, true); bool InteractGameObject(Ptr baseAddress, bool stopMove = false, bool skipWaitTime = false, bool leftClick = false)
  6. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  7. Hello, redownload WRobot
  8. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  9. Changed Status to Fixed
  10. Hello, spell.IsDistanceGood (and distance check option in fightclasses editor) test only max distance (not min spell distance). I tested this code and he seem to works: float min = 8, max = 35; var cMin = ObjectManager.Target.GetDistance - ObjectManager.Target.CombatReach - ObjectManager.Me.CombatReach; var cMax = ObjectManager.Target.GetDistance + ObjectManager.Target.CombatReach + ObjectManager.Me.CombatReach; bool inRange = cMin >= min && cMax <= max; Logging.Write("cMin = " + cMin + " - cMax" + cMax + " - inRange= " + inRange); One line (for xml fightclass): ((ObjectManager.Target.GetDistance - ObjectManager.Target.CombatReach - ObjectManager.Me.CombatReach) >= 8 && (ObjectManager.Target.GetDistance + ObjectManager.Target.CombatReach + ObjectManager.Me.CombatReach) <= 35)
  11. Hello, bool added = false; robotManager.FiniteStateMachine.State myState = null; // ... robotManager.Events.FiniteStateMachineEvents.OnAddState += delegate (robotManager.FiniteStateMachine.Engine engine, robotManager.FiniteStateMachine.State state, System.ComponentModel.CancelEventArgs cancelable) { if (added) return; if (state.DisplayName == "Quester") { added = true; state.NextStates.Add(myState); //engine.AddState(myState); //state.BeforeStates.Add(myState); } };
  12. Do you have try to redownload and reinstall WRobot in new folder?
  13. Hello, try to run this c# code (in steps) before to pulse your quest: wManager.wManagerSetting.CurrentSetting.ListHarvest.Add(192518);
  14. What is resolve when you run command tracert wrobot.eu in command prompt?
  15. Hello, try to remove wow "Chache" folder, try also to launch Wrobot with shortcut "WRobot no dx"
  16. Droidz commented on battlebit's bug report in Bug Tracker
  17. Hello, where do you get this error, can you share screenshot
  18. This fightclass cast Shadowform only when you have target, and cancel form(buff) when you haven't target: shadowFormTest.xml Video: 2018-03-23_17-09-15.mp4
  19. You play on Vanilla?
  20. Hello, https://wrobot.eu/forums/topic/8863-wrobot-stopped-working-for-me/?do=findComment&comment=41100
  21. Hello, use quest type "follow path" and put lower search radius don't resolve this problem?
  22. Hello, to wait change option "Min free bag slots" (in advanced general settings tab "vendor...") and put "size of you ammo bag + 1"
  23. Droidz commented on valetine's bug report in Bug Tracker
    It is not bug: https://wrobot.eu/bugtracker/leave-shadowform-when-dismount-r659/?do=findComment&comment=4877
  24. I ignore where do you have found your code, but in vanilla to cancel Shadowform buff you need to use lua code like: for i=0,15,1 do local currBuffTex = GetPlayerBuffTexture(i); if (currBuffTex and string.find(string.lower(currBuffTex), "spell_shadow_shadowform")) then CancelPlayerBuff(i); end end (and not "CastSpellByName('Shadowform',1)") In one line: for i=0,15,1 do local currBuffTex = GetPlayerBuffTexture(i); if (currBuffTex and string.find(string.lower(currBuffTex), "spell_shadow_shadowform")) then CancelPlayerBuff(i); end end
  25. Try to run this code (after change settings) var pName = robotManager.Products.Products.ProductName; robotManager.Products.Products.DisposeProduct(); robotManager.Products.Products.LoadProducts(pName);

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.