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.

All Activity

This stream auto-updates

  1. Past hour
  2. aest1an joined the community
  3. Today
  4. nea8 joined the community
  5. cilnite joined the community
  6. sambean joined the community
  7. as5882310 joined the community
  8. Yesterday
  9. evgeniy_pp joined the community
  10. grbtschw joined the community
  11. nenny joined the community
  12. potoranu joined the community
    it doesnt work at all. just walks me to the burning steppes and gets me killed over and over
  13. Last week
    • 1 download
    • Version 1.0.0
    Hey peeps, Made this very simple grinder for Hellfire Ramparts to boost my alts with a level 80. My lvl 80 has 4.4kgs and is a Protection warrior. Used it on Warmane wotlk 3.3.5a - from lvl 55 to 62 flawless. You have to enter the instance and also exit the instance on your own - simple grinder. Only to be used for boosting your alt. WARNING: - Attack before being attacked should be SELECTED - Start fighting with Elite should be SELECTED Any questions lemme know.
  14. Профили работают отлично, ответственность и постоянная связь вызывает 100% доверие к человеку. Sakonung предоставляет самые разные профили и гарантирует их качественную работу, но если требуется что-то доработать/поправить, то он всегда на связи, отвечает быстро, помогает в кратчайшие сроки и без доплат. По его словам, раз я пообещал профиль, который будет работать в полностью автономном режиме и выполнит все необходимые задачи, то я выполню это обещание. Поэтому однозначно рекомендую работу с ним, полностью доволен. Да и цены оказались гораздо ниже, чем я ожидал)
  15. thanks mate, i appreciate that.
  16. melalis started following Droidz
  17. hello i tried to contact dear support of wrobot through Facebook+ email section+ emailing an user who develops profiles in here. but still can't reach to support team, can someone connect me to support team or dev team, plz?!
  18. no mate this bot only works in private servers, main servers or specially blizzard servers you'll need to buy bots which are used for.
  19. Hi just purchased, can this be used with tbc annaversary?
  20. Earlier
  21. Thank you epoch is dead anyways having another problem with octawow new turtle server and its not finishing looting
  22. Very nice! I'll look forward to that update. I may need to refer here for how to use the plugin when it releases. I really should be using this as an excuse to really learn to code, and write plugins & fight classes, but I haven't forced myself to find the time to do that. For now, since I'm always monitoring my bot, I just turned off drinking for mana. Won't work for or all classes/builds, or for all botting purposes, but I can just manually drink occasionally and it's fairly efficient.
  23. Yeah, that's fair. Right now the regen sits once and tops up both health and mana together, there's no way to split them from the settings. I'm adding an option for it in the next update (regen health and mana separately), so a heal-only sit won't drink and a drink-only sit won't eat, while each still goes up to its own max. Once it's out you can turn it on from a plugin or your fight class with: wManagerSetting.CurrentSetting.SeparateHealthAndManaRegen = true; In the meantime you can already get that behavior, take the heal out of the food/drink settings and put it in your fight class.
  24. Anyone else botting in Capycraft? if yes did you guys get banned often? I got banned every few days even though I have created custom profile and custom quest/grind profile for each different account.
  25. Fruitard started following Capycraft
  26. Judgment of Light has a typo
  27. goshun started following Ret Paladin
  28. I understand that this is how it works, and that what you describe will work. I'm just saying there should be a way for it to consider health & mana regen separately. Right now, It's MUCH more efficient to just never drink. But it results in a significantly higher death rate because I'll sometimes start a fight with no mana. What makes sense is to only drink when mana is very low, but when I drink -> drink all the way up. Healing between every fight makes sense. Drinking between every fight goes through waters way too fast. Then I run out, and the bot just stands still waiting to regen. Regen mana & HP independently would be much more efficient, as well as look a lot less like a bot in practice.
  29. Hi, Actions on path points do work, and your format is right (the c#: prefix). The likely issue is that the bot never really lands on that exact point, so the action doesn't fire. It validates a point from a few yards away and moves to the next one, and your points are very close together, so it passes that one without triggering its action. Try spacing that point out from the others first. If that doesn't fix it, share your profile and a log file so I can check.
  30. Hi, It's not the default behavior, the bot only flies to your corpse when it can't make a ground path to it. You can try this plugin (not tested), put it in your Plugins folder and stay on a flying mount when you die: Fly to corpse when dead.cs using System; using System.ComponentModel; using System.Threading; using robotManager.Helpful; using wManager.Events; using wManager.Wow.Helpers; // Force the bot to fly back to its corpse (corpse run on a flying mount). public class Main : wManager.Plugin.IPlugin { private const float MinDistanceToFly = 30f; private const int AscendRetestMs = 5 * 60 * 1000; private const int MinActionIntervalMs = 500; private static bool _testedThisDeath; private static bool _isFlyingMount; private static int _lastAscendTick; private static int _lastActionTick; [ThreadStatic] private static bool _reentry; public void Initialize() { OthersEvents.OnPathFinderFindPath += OnPathFinderFindPath; Logging.Write("[FlyToCorpse] Loaded."); } public void Dispose() { OthersEvents.OnPathFinderFindPath -= OnPathFinderFindPath; Logging.Write("[FlyToCorpse] Unloaded."); } public void Settings() { } private static void OnPathFinderFindPath(Vector3 from, Vector3 to, string continentNameMpq, CancelEventArgs cancelable) { if (_reentry) return; _reentry = true; try { var me = wManager.Wow.ObjectManager.ObjectManager.Me; if (me == null || !me.IsValid) return; if (!me.IsDeadMe) { _testedThisDeath = false; _isFlyingMount = false; return; } if (!me.IsMounted) return; Vector3 corpse = me.PositionCorpse; if (corpse == null || corpse.DistanceTo(Vector3.Zero) <= 0) return; if (to == null || to.DistanceTo(corpse) > 12) return; if (corpse.DistanceTo(me.Position) < MinDistanceToFly) return; int now = Environment.TickCount; if (_lastActionTick != 0 && (uint)(now - _lastActionTick) < MinActionIntervalMs) return; if (!me.IsFlying) { bool mayTest = !_testedThisDeath || (uint)(now - _lastAscendTick) >= AscendRetestMs; if (!mayTest) return; _testedThisDeath = true; _lastAscendTick = now; Move.JumpOrAscend(Move.MoveAction.DownKey); Thread.Sleep(Others.Random(300, 700)); Move.JumpOrAscend(Move.MoveAction.UpKey); Thread.Sleep(Others.Random(300, 700)); _isFlyingMount = me.IsFlying; } if (!me.IsFlying) return; to.Type = "Flying"; _lastActionTick = now; cancelable.Cancel = true; } catch (Exception e) { Logging.WriteError("[FlyToCorpse] " + e); } finally { _reentry = false; } } }
  31. https://wrobot.eu/bugtracker/wow-lk-gatherer-storm-peaks-r1625/
  32. Droidz commented on Endotox's bug report in Bug Tracker
    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/
  33. Droidz commented on Gile's bug report in Bug Tracker
    Hi, Share the full log file from that druid (the .html in the Logs folder, from a session where it got stuck). Also tell me if it gets stuck at the same spot. You can also turn on Radar3D in the Map tab, it draws the bot's path and what it's targeting directly in-game, so you can see where it's trying to go when it gets stuck.
  34. Hi, That error means the bot can't reach our server. It is almost always a VPN or proxy, your antivirus, or your firewall blocking the connection. Disable your VPN, add WRobot to your antivirus and firewall exceptions, and make sure you are on the latest version, then try again.

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.