Jump to content

Droidz

Administrators
  • Posts

    12456
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  2. 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
  3. it is "using" problem, I fixed code, it is sample (starting orc zone): test.xml
  4. 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
  5. 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(); } }
  6. Hello, look https://wrobot.eu/forums/topic/9204-addingusing-a-counter/?do=findComment&comment=42769&_rid=1
  7. 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/ ).
  8. 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/ ).
  9. Hello, try to reinstall WRobot, you have problem with one of your plugin (you have a lot of errors)
  10. 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
  11. 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).
  12. try to disable your antivirus/firewall. Install required software: Redownload and try to reinstall WRobot in new folder
  13. Hi, with easy fightclass editor?
  14. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  15. Hello, in advanced general settings tab "looting & farming" you have option "Max try per node", try to increment value
  16. Ignore the attack of a specific mob if (wManager.Wow.ObjectManager.ObjectManager.BlackListGetUnitAttackPlayerGuidTime.ContainsKey(CurrentTarget.Guid)) wManager.Wow.ObjectManager.ObjectManager.BlackListGetUnitAttackPlayerGuidTime.Remove(CurrentTarget.Guid); wManager.Wow.ObjectManager.ObjectManager.BlackListGetUnitAttackPlayerGuidTime.Add(CurrentTarget.Guid, System.DateTime.Now + System.TimeSpan.FromMinutes(5)); (this code ignore mob attack for 5 minutes)
  17. Try resolve navigation problem In some zone (mainly if you are on a moving gameobject like boat) use this option can help to resolve navigation problem (you need to enable this option also when you record path or get npc/gameobject positions) wManager.Wow.ObjectManager.WoWUnit.ForceRelativePosition = true; (don't forget to disable this option after, wrobot only turns it off itself after a restart)
  18. Sample of plugin for Relogger (move file in the folder "WRobot\Plugins\Relogger\") Relogger Plugin Sample.cs
  19. Hello, Have you come back with a new fresh WRobot installation or you use your old install folder? If you use old install try to make fresh. Check if your fightclass / plugins / profiles are up to date, and try to deactivate everything and reactivate 1 by 1 to be sure that the problem does not come from one of them. If the problem is not solved can you send me few log files.
  20. Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  21. Hello, lua code can change from one version of wow to another but you must use lua, try https://wowwiki.fandom.com/wiki/API_SetDungeonDifficulty and https://wowwiki.fandom.com/wiki/API_SetRaidDifficulty
  22. 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/ ).
×
×
  • Create New...