Jump to content

Droidz

Administrators
  • Posts

    12618
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hi, yes blacklist zone use 2D distance. Maybe you can solve your problem with MaxZDistanceAttack or MaxZDistanceFarm or MaxZDistanceIsAttacked (you need to use C# or edit xml file manually)
  2. Hello, look https://wowwiki-archive.fandom.com/wiki/API_CallCompanion (I am not sure) https://github.com/goldpaw/WoW_UI_Source_WotLK/blob/7ac7bc5b6ebc57f7de70c64aaf61072bb22bc511/FrameXML/PetPaperDollFrame.lua#L256
  3. Hello, can you share your log file please (you can found files in folder "Logs")
  4. Hello, sorry you cannot do that with default feature.
  5. Hello, I am not sure to understand. But WRobot don't install files, files are where you have extracted WRobot
  6. Hello, try to disable wow addons, wrobot plugins and don't use fightclass (some antivirus can cause this problem also)
  7. Hello, You are sure that your profile don't remove blacklisted zone? With or without flying mount behavior should not change. What is "target info" result (from dev tools) and log?
  8. Hello, try without plugins and wow addons
  9. Version 1.0.0

    67 downloads

    ReloggerBackup Relogger plugin to make backups of "WRobot\Settings\ReloggerGeneralSettings.xml" (this file contain your relogger settings), backups are in folder "WRobot\ReloggerBackup\" and by default removed after 7 days (you can edit file to change that). Download and move plugin file in folder "WRobot\Plugins\Relogger\" (maybe you need to create folder). Launch (or relaunch) relogger, click on button "Plugins", if plugin is correctly installed you can see it. Tips: If you want use/transfert same relogger setting file in different VM/computer without get passwords problems, you can use option https://wrobot.eu/byme/doc/html/F-robotManager.robotManagerGlobalSetting.ForceStaticEncryptKey.htm (edit with notepad file "WRobot\Settings\RobotManagerGlobalSetting.xml")
  10. Droidz

    Improving the quester

    Changed Status to Confirmed Changed Version to All
  11. Hello, in "working schedule" put "From" > "06:00:00" "To" > "18:00:00"
  12. Hello, yes you can run several wrobot at same time (limit is number of sessions of your subscription (look your subscription name, you can downgrade or upgrade number of session, for that send me message)). You can use one or several IPs.
  13. Hello, 1. Yes you can (but not at same time). 2. Yes 3. There isn't a lot of content for BFA You can use key "TRIAL" to test WRobot for free and check if he works on your server.
  14. Droidz

    crash

    Hello, it is strange, Do you have hard drive space?
  15. Hello, WRobot works only on private servers
  16. Hello, Idea is good but it will be complicated to do. You can already compile several profiles to one (if you don't forget to mention creators and that they are agree). If you have some XML knowledge you can easily take quests from one profile and put them on another with notepad.
  17. var playersAttackable = new List<wManager.Wow.ObjectManager.WoWPlayer>(); foreach (var player in wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWPlayer()) { bool canAttack = false; var f = wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid; wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid = player.Guid; if (wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid == player.Guid) canAttack = Lua.LuaDoString<bool>("return UnitCanAttack('player', 'focus')"); wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid = f; if (canAttack) playersAttackable.Add(player); Logging.WriteDebug("Can attack = " + canAttack + " > " + player); } You can change focus several time
  18. Hello, WRobot works only on private server
  19. WoWPlayer player1 = ...; bool canAttack = false; var f = wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid; wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid = player1.Guid; if (wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid == player1.Guid) canAttack = Lua.LuaDoString<bool>("return UnitCanAttack('player', 'focus')"); wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid = f; Logging.WriteDebug("Can attack = " + canAttack + " > " + player1); try code like (no tested)
  20. Hi, use lua Lua.LuaDoString<bool>("return UnitCanAttack('player', 'target')")
  21. Hello, I just checked it is 1 month and not a number of days (if you buy today (February 26) it expires on March 26 (same result for the 28 or 31 days mounths). But I don't found 30 days mention, it is written by mounth.
  22. Hello, try again problem should be resolved.
  23. issecure is https://wow.gamepedia.com/API_issecure , that return true lua can call protected functions. They use it to detect bot/cheat. I looked yesterday so far I have nothing. Be careful but I find it strange that there is a warning, usually they ban directly.
×
×
  • Create New...