Jump to content

Droidz

Administrators
  • Posts

    12508
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, you play in what wow version? You have try to reinstall bot?
  2. Droidz

    Development Tools

    I resolved it in new update
  3. Droidz

    Development Tools

    Changed Status to Fixed Changed Version to All
  4. When you told that you use relogger feature you use relogger application or relogger option in advanced general settings? Restart game work only if your use application https://wrobot.eu/forums/topic/3632-relogger-tutorial-video/
  5. Droidz

    Development Tools

    When you open editor with Windows shortcut "Fight Class Editor"? If yes it is normal, you need to attach WRobot at Wow to use dev tools (open WRobot normally and open fightclass editor in WRoobot tab "tools")
  6. Droidz

    Development Tools

    Hello, I am sorry I don't understand. Do you have error in your log?
  7. 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/ ).
  8. Hey, I do not find the message but it seems to me that I had already reported this problem, but it seemed to be only on "home" servers (on large servers no bug).
  9. Hello, active skinning option in general settings
  10. moveto can change from original path position (and wrobot don't parse type), use MovementManager.CurrentPath[MovementManager.PointId]
  11. Droidz

    3.3.5 Relogger bug

    new version use debugging by default to hook wow (with hardware breakpoint). When WRobot closing he remove all breakpoint (but he cannot do it when you kill process), he shoulds do it when relogger close bot (I need to check why relogger don't close correctly WRobot). If your server don't detect directx hook you can in relogger general settings use wrobot arg: -dx
  12. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  13. Hello, use c# condition ObjectManager.Me.FocusObj.IsCast
  14. Droidz

    ClearTarget

    I changed it in last update
  15. Droidz

    ClearTarget

    Do you use last WRobot update?
  16. Hello, in advanced general settings try to active option "use lua to move"
  17. In file "WRobot\Settings\WRobotGlobalSetting.xml" (open it with notepad) you have line "<CloseIfCannotLoginWowMinutes>2</CloseIfCannotLoginWowMinutes>", check if value (2 for me) is bigger than 0 but not to big. EDIT: Do it when WRobot and relogger are closed
  18. yes in all versions but you need to wait next update.
  19. Hello, use lua code to click on button: https://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447
  20. You probably use too old version of WRobot
  21. Hello, try plugin: using System; using System.Threading; using robotManager.Helpful; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using Timer = robotManager.Helpful.Timer; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; var t = new Timer(1000 * 1); // 1 sec while (_isLaunched && Products.IsStarted) { try { if (t.IsReady && Conditions.InGameAndConnectedAndProductStartedNotInPause) { t.Reset(); if (ObjectManager.Me.Scale != 1) { Products.ProductStop(); // or close: Environment.Exit(0); Logging.Write("Size change."); } } } catch (Exception e) { Logging.WriteError("[Size change]: " + e); } Thread.Sleep(150); } } public void Dispose() { _isLaunched = false; } public void Settings() { } }
  22. Hello, I'll release BfA bot after Shadowlands release
  23. Hey, In next update you will be hable to use shortcut ctrl+ and ctrl- (to up/down step). To wait when you mouse click on bouton you can after use key "enter" to avoid to spam mouse click
  24. Hello, try to add it to the list of objects to harvest: wManager.wManagerSetting.CurrentSetting.ListHarvest.Add(18901);
×
×
  • Create New...