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 are sure that it isn't game server bug ?
  2. Hello, try to reboot your computer. If this doesn't solve your problem, share your log file please.
  3. Hello, Your profile is probably bad or not adapted to your game version. If it's not a profile problem, it's maybe a bot settings problem. Same for your fightclass, if it's no fightclass issue, try to disable all wow addons. What profile fightclass do you use ? Can you share your log file please ?
  4. Your figthclass have a lot of spells (steps) (36). You use too many "Lua condition". To check level, you can use csharp condiiton like "wManager.Wow.ObjectManager.ObjectManager.Me.Level - wManager.Wow.ObjectManager.ObjectManager.Target.Level <= 8" That is too much if you want good performance. Try to put lower fps in fightclass settings (like 5)
  5. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ). WRobot works only with original (unmodified) game client. You can try to download again game client (not the client provided by your server, some modify him).
  6. Hello, WRobot works only with default game client. If your server force to use custom client, you can't fix that.
  7. https://wrobot.eu/forums/topic/2018-wrobot-old-versions/
  8. Hello, Yes, WRobot works on 1.12.1 client (if unmodified) https://wrobot.eu/supported-wow-versions/ . You can test WRobot for free, use the key "TRIAL".
  9. Your IP seems to change frequently (check website like https://www.myip.com/ ). But that has nothing to do with WRobot itself. It is the profile authentication system (which is not managed by WRobot) that poses a problem. I can't help you, only the profile creator can. If you want to solve the problem yourself, try to have a fixed IP (internet provider option, VPN with private IP, ...).
  10. In the bot log ?
  11. What is the error message ?
  12. Hello, do you use Wow addons ? If yes, disable all. What is error ?
  13. This profile has already worked for you ? Do you have changed your WRobot key recently ? Do you have an error in your log file ?
  14. Hello, contact @Bando
  15. I'm sorry, I can't explain that.
  16. And without Wow addons?
  17. Try running the command : /reload CPU/Ram usage increment when fps drop?
  18. Hello, maybe your antivirus.
  19. You can use low FPS in game. But you need to use optimised fightclass/plugins/profile (try to call lua codes between lock/unlockframe) You can also change settings : https://wrobot.eu/byme/doc/html/F-wManager.wManagerSetting.ReadObjectManagerFTS.htm https://wrobot.eu/byme/doc/html/F-robotManager.MemoryClass.Hook.SleepTimeWaitCalled.htm https://wrobot.eu/byme/doc/html/F-wManager.wManagerSetting.EventsLuaWithArgsWaitTime.htm And use code like robotManager.Events.FiniteStateMachineEvents.OnAfterRunState += (engine, state) => { Thread.Sleep(10); };
  20. Hello, It's more for network latency than the delay to interact with the game. In the bot, before/after action, I generally use code like "Sleep(Usefuls.Latency + XXms)". Actual code used to get "Latency" : /// <summary> /// Gets the latency (between <see cref="wManagerSetting.LatencyMax"/> and <see cref="wManagerSetting.LatencyMin"/>, to get real latency use <see cref="LatencyReal"/>). /// </summary> /// <value>The latency.</value> public static int Latency { get { lock (_lockLatency) { try { var real = LatencyReal; if (real > wManagerSetting.CurrentSetting.LatencyMax) real = wManagerSetting.CurrentSetting.LatencyMax; if (real < wManagerSetting.CurrentSetting.LatencyMin) real = wManagerSetting.CurrentSetting.LatencyMin; return real; } catch (Exception e) { Logging.WriteError("Latency: " + e); return 0; } } } } private static readonly Object _lockLatencyReal = new Object(); /// <summary> /// Gets the real latency (home+world)). /// </summary> /// <value>The real latency.</value> public static int LatencyReal { get { lock (_lockLatencyReal) { try { if (!_timerLatency.IsReady || !Conditions.InGameAndConnectedAndAlive) return _lastLatency; _timerLatency = new Timer(30 * 1000); var result = Lua.LuaDoString<int>("local _, _, lag = GetNetStats(); return lag;"); if (result > 0) _lastLatency = result; return _lastLatency; } catch (Exception e) { Logging.WriteError("LatencyReal: " + e); return 0; } } } }
  21. Hello, use wManager.wManagerSetting.CurrentSetting.MailRecipient = "Name";
  22. Sorry, "CanCondition" is called only when bot run "PickUp" step. Use IsCompleteCondition
  23. I don't found any information in your log files. What about CPU/Memory usage ? Do you have without plugin and with another fightclass/profile ?
  24. https://wrobot.eu/forums/topic/14612-server-seems-to-be-down-you-may/#comment-66404

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.