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, In wow settings try to limit max foreground fps (at a lower value than your computer can generate).
  2. Yes, sorry, my answer was wrong. Poly_avoid blacklists the area at the same time (but paths made in this area will probably be inconsistent). The solution is to directly use PathFinder.ReportArea(Position, Radius, TypeArea); But, this list is cleared when the bot changes continent.
  3. Hello, use POLYAREA_DANGER or POLYAREA_AVOID.
  4. Hello, Do you have installed all the required software programs? (links in the file 'Reame.txt')
  5. Hello, this flag list is more complete that the WRobot list https://github.com/ajlopez4/ejt-projects/blob/master/Frost/source/Core/ObjectManager/Offsets/Constants.h#LL360C1-L410C5 1536 = 0x600 = 0x200 | 0x400 = TimeValid and Immobilized (if I make no mistake and the values are good)
  6. Hello, you can find the discord link at the top/right of the page (if you are on a computer), current link is https://discord.gg/HXunx8tUpn Shadowland is a recent version, and is not very popular there will be little content (profiles, fightclasses) available.
  7. Hello, There are a few posts about this, there seem to be several working answers : https://www.google.com/search?q=site%3Awrobot.eu+trinkets
  8. Do you have the same problem if you use the 'Relogger' application? You can try if you use only one account, in wow login screen to enable the option "remember account name", I think it should automatically open the correct realmlist.
  9. They are probably using a modified version of the game client. WRobot only supports the original client. You can try to download the default game client in another website and check if it works with your server.
  10. Hello, https://wrobot.eu/forums/topic/15188-work-on-ascension/
  11. An easy way that comes to my mind is: - Force the bot to ignore attacks with a RunCode step https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088&_rid=1 wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = true; - Add a step to go to the position where you want the bot to resume the fight (with a FollowPath quest or other). - Reactivate the fight with a RunCode step: wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = false; Repeat these steps until the end of the dungeon.
  12. Hello, in "Dev... tools" (tab "Tools", when you click on the button "All informations", towards the end of the result there is the name of the realm, it is not correct?
  13. Hello, Maybe WRobot is too fast, try increasing the latency (min/max) in the bot's advanced settings.
  14. Droidz replied to liangzhongwei's topic in 中文
    You seem to have a DNS problem, test with https://1.1.1.1/
  15. Droidz replied to Pudge's topic in General assistance
    (you don't need to update the bot to get this new feature)
  16. Hi, I just added the possibility to execute code when starting the bot (code executed after connecting to the authentication server). The file must be named 'autorun.cs' and be in the 'Plugins' folder. The static method 'Main.Autorun()' is called after compilation. using System.Windows.Forms; public class Main { public static void Autorun() { MessageBox.Show("Hello World!"); } } autorun.cs
  17. Hello, Using a VPN or proxy can solve the problem. But I'm sorry I don't currently have a 100% working solution, you're not the only Chinese user to encounter this problem.
  18. Hello, Configure the bot correctly (for sale), add the sellers/repairer of the area and run the code (from the quest profile): wManager.Wow.Bot.States.ToTown.ForceToTown = true; It will force the bot to go to the seller.
  19. Hello, With the Gatherer profile you can (in the product settings) force the bot to return to the previous profile position. But, to make a more complete profile it is necessary to use the quester (or a custom profile). But it requires very good knowledge of WRobot, Lua and C#.
  20. Hello, you can found one solution in this profile : https://github.com/droidzfr/WRobot_Packages/blob/e495ad6e09c91ec8291018192ed37799f7851690/Old paid files/Maylu/1-60 tbc quest maylu 1.1.xml#L79
  21. Droidz replied to sakado's topic in General discussion
    Hello, I don't know where you got this code, but it can't work, it's missing a lot of methods (did you use chatgpt?).
  22. Hello, Do you have information in the log? Do you have any sellers in your 'NPC DB' (or in the profile)? Are the settings correct?
  23. Use code without "return" and the ";" ObjectManager.GetObjectWoWUnit().Count(u => u.IsAlive && u.MaxHealth > 500 && ((ObjectManager.Me.TargetObject.Position.DistanceTo2D(u.Position) - ObjectManager.Me.TargetObject.CombatReach) <= 15) && u.IsAttackable && !TraceLine.TraceLineGo(u.Position))
  24. Hello, Check the 'Logs' folder to see if there are any errors in the logs. Try downloading the game client from another site and replacing the Wow.exe file from your current installation with the new one.
  25. Hello, you can should look like that : using System.Threading; using wManager.Plugin; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; robotManager.Events.LoggingEvents.OnAddLog += delegate(robotManager.Helpful.Logging.Log log) { if (log != null) { if (log.Text.Contains("[MovementManager] Think we are stuck")) { robotManager.Products.Products.InPause = true; // new thread to unpause after 5 seconds new Thread(t => { Thread.Sleep(5000); if (_isLaunched) robotManager.Products.Products.InPause = false; }).Start(); } } }; } public void Dispose() { _isLaunched = false; } public void Settings() { } }

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.