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, You can find the invoice for your subscription upgrade here: https://wrobot.eu/clients/orders/ Best regards.
  2. Droidz commented on bio33's bug report in Bug Tracker
  3. In the meantime, I've tried to solve the issue. Have you experienced any errors in the past few days?
  4. 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/
  5. Hello, the issue should be resolved.
  6. Hello, the issue should be resolved.
  7. 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/
  8. Hello, what version of WRobot do you use, can you share log file please
  9. Hello, for wotlk, you need to install 32bit version vcredist_x86.exe
  10. Hello, What do you call "auto-hunting"? Is it the game that crashes? Do you download the game client from the server's website? (or is it an original game client)
  11. Hello, your problem should sovled
  12. Hello, Direct access (simple but not ideal) : // You can reset the counter to 0 directly wManager.Wow.Helpers.StuckResolver.StuckCount = 0; Differential approach : // At the beginning of your recovery step, save the current value int initialStuckCount = wManager.Wow.Helpers.StuckResolver.StuckCount; // ... your recovery logic ... // After recovery, calculate how many new stuck events occurred int newStuckEvents = wManager.Wow.Helpers.StuckResolver.StuckCount - initialStuckCount; // Reset the counter to what it was initially plus any new events wManager.Wow.Helpers.StuckResolver.StuckCount = initialStuckCount; Local counter with events : var localStuckCounter = 0; wManager.Events.MovementEvents.OnPulseStuckResolver += cancelable => { localStuckCounter++; // cancelable.Cancel(); // if you want to cancel the automatic unstuck }; // Use localStuckCounter instead of StuckResolver.StuckCount // Reset localStuckCounter = 0 after your recovery
  13. Droidz replied to torenka's topic in Français
    Bonjour, Avez-vous ajouté le PNJ entraîneur (type WarriorTrainer ou autre selon votre classe) dans votre profil ou dans votre "NPC DB" (onglet "Tools").
  14. Hello, I think it's a case sensitivity issue. You need to enter the name exactly as it appears in-game. You also have many WoW addons installed, which can sometimes cause problems.
  15. Hello, Sorry, there have been some issues with the server over the past 48 hours, but the problem should now be resolved.
  16. Hello, As bio33 mentions, support for The War Within will be added when the Midnight version is published.
  17. Hello, Epoch uses a modified game client, which is why WRobot no longer works correctly. I apologize, but currently there is no support planned for this server or any other server with a modified game client.
  18. Hello. Currently, WRobot is detected on this server: https://wrobot.eu/byme/CompatibilityReporting/server_details.php?id=3
  19. Hello, Do you have any active WoW addons? If so, please disable them all. 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/
  20. Hello, Try with a game client from the original version downloaded from a site other than the server's website.
  21. Hello, Try with this plugin Main.cs : using System.Threading; using wManager.Wow.Class; using wManager.Wow.Enums; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { const int SpellId = 46457; const int NpcId = 50041; public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state is wManager.Wow.Bot.States.ToTown) { MovementManager.StopMove(); new Spell(SpellId).Launch(true); Thread.Sleep(5000); var npc = new Npc { ContinentId = (ContinentId)Usefuls.ContinentId, Name = "Field Repair Bot 75B", Entry = NpcId, Position = wManager.Wow.ObjectManager.ObjectManager.Me.Position, Type = Npc.NpcType.Repair, Faction = Npc.FactionType.Neutral }; NpcDB.ListNpc.RemoveAll(n => n.Active && n.Entry == npc.Entry && n.Type == npc.Type && n.ContinentId == npc.ContinentId && n.CurrentProfileNpc); NpcDB.AddNpc(npc, false, true); } }; } public void Dispose() { } public void Settings() { } }
  22. Hello, When you use this spell, does an NPC or GameObject appear (if so, could you provide me with the entry ID)? Or do you directly get the sales window?
  23. Hello, the best is to use "Relogger" application. You can also try with the product "Schedule" (or "Quester" if you have good knowledge).
  24. Hello, For this type of request, it's best to send me a private message. You can find the invoice for your subscription upgrade here: https://wrobot.eu/clients/orders/

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.