Jump to content

Droidz

Administrators
  • Posts

    12519
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, Wait next update for the fix
  2. Droidz

    Path finder seems broken

    In next update I'll fix problem with this security (the bot is often stuck on pause without trying to change servers)
  3. Hello, what is your BfA game version (with build number)? I need to know this to add the supports
  4. I'll check. Are you using the updated version of WRobot?
  5. hi, look https://github.com/goldpaw/WoW_UI_Source_WotLK/blob/7ac7bc5b6ebc57f7de70c64aaf61072bb22bc511/AddOns/Blizzard_DebugTools/Dump.lua#L350 -- DEVTOOLS_MAX_ENTRY_CUTOFF = 0 DevTools_Dump(_G)
  6. Hello, you play in Wotlk? put item name don't works?
  7. Did you notice a particular moment in these crashes? (when movement, cast spell, if wrobot is attached without starting a product he crashes?)
  8. Hello you have try to download client on another website (not in website of the server)?
  9. Hello, in easy quest editor > tools > blacklist editor
  10. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  11. https://wowwiki.fandom.com/wiki/API_GetItemQualityColor Try /run local q;if MerchantFrame:IsVisible()then for i=1,300 do q=GetContainerItemLink(i/35,i%35)if (q and (q:sub(5,10)=="a335ee" or q:sub(5,10)=="0070dd")) then UseContainerItem(i/35,i%35)end;end;end
  12. it is "using" problem, I fixed code, it is sample (starting orc zone): test.xml
  13. Hello, if it is for one dunjon maybe you can try to blacklist zone, or compare zone and move if you are in bad zone. Otherwise I think with events lua or gameobject entry id
  14. Hi, no tested but you can try code like this: using System.Collections.Generic; using robotManager.Helpful; using wManager.Wow.Bot.States; using wManager.Wow.Class; using wManager.Wow.ObjectManager; public class QuestGrindingNearestMobs : QuestClass { public Vector3 HotSpots = new Vector3(1, 2, 3); public float RadiusGrinderZone = 50; public string NameQuest = "QuestGrindingNearestMobs"; private wManager.Wow.Bot.States.GrindingNearestMobs _grinder; private wManager.Wow.Bot.States.MovementLoop _movement; public QuestGrindingNearestMobs() { _grinder = new wManager.Wow.Bot.States.GrindingNearestMobs { Priority = 2, CenterGinderZone = HotSpots, RadiusGrinderZone = RadiusGrinderZone }; _movement = new wManager.Wow.Bot.States.MovementLoop { PathLoop = new List<Vector3>() { HotSpots } }; Name = NameQuest; } public override bool Pulse() { Logging.Status = "Quester > Grinder nearest mobs for \"" + Name + "\""; if (_grinder.NeedToRun) _grinder.Run(); else if (_movement.NeedToRun) { _movement.Run(); } return true; } public override bool IsComplete() { return !_grinder.NeedToRun && ObjectManager.Me.Position.DistanceTo(HotSpots) <= RadiusGrinderZone; } public override bool HasQuest() { return !IsComplete(); } }
  15. Hello, look https://wrobot.eu/forums/topic/9204-addingusing-a-counter/?do=findComment&comment=42769&_rid=1
  16. 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/ ).
  17. 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/ ).
  18. Hello, try to reinstall WRobot, you have problem with one of your plugin (you have a lot of errors)
  19. Settings use PropertyGrid, you can found code to use enum or array in them on google. But better is to create your own settings UI if you want more control
  20. I can't do anything more, and your log file is from the previous version of WRobot (you cannot have this version if you have recently try to reinstall WRobot).
  21. try to disable your antivirus/firewall. Install required software: Redownload and try to reinstall WRobot in new folder
  22. Hi, with easy fightclass editor?
  23. try to relaunch "Updater" and reinstall/update bot
  24. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
×
×
  • Create New...