Jump to content

Droidz

Administrators
  • Posts

    12596
  • 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. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  3. return new Vector3(-1791.935f, 3050.169f, 8.208141f).DistanceTo(ObjectManager.Me.Position) < 500; And yes 500 it is yards, you can change this value
  4. Hello, not tested: wManager.Events.FightEvents.OnFightLoop += (unit, cancelable) => { var newTarget = new WoWUnit(0); // your code to found new mobs if (newTarget.IsValid && !newTarget.IsMyTarget) { Fight.StartFight(newTarget.Guid); cancelable.Cancel = true; } }; or wManager.Events.FightEvents.OnFightLoop += (unit, cancelable) => { var newTarget = new WoWUnit(0); // your code to found new mobs if (newTarget.IsValid) { if (!newTarget.IsMyTarget) Interact.InteractGameObject(newTarget.GetBaseAddress); // your code here .... SpellManager.CastSpellByIdLUA(123); } };
  5. Hello, In fightclass general settings, in option "Additional C# code" add code like: static Main() { wManager.Events.FightEvents.OnFightLoop += (unit, cancelable) => { if (unit.IsValid && !ObjectManager.Me.IsCast && (unit.IsStunned || unit.Rooted)) { wManager.Wow.Helpers.Move.Backward(Move.MoveAction.PressKey, 1500); } }; } (code not tested)
  6. Droidz

    Flight Travel Form

    Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  7. Do you have try to clear blacklist (when mobs are lootables)? Try also to increment option "max unit near..."
  8. I cannot reproduct, this problem is probably caused by your fightclass, and in drink % try to put value like 60
  9. Hello, I comeback here when I have check
  10. Hello, no, check your wrobot settings, and try to disable you wow addons
  11. Try to put value like 300-500
  12. Hello, normally it is automatic. But you can blacklists nodes in advanced general settings tab "Lootings..."
  13. Hello, i'll not add this option, but you can run this code for that: robotManager.Helpful.Others.ShutDownPc(); (run this code in quester or custom profile)
  14. Bonjour, pas d'option pour regen. Vous pouvez utiliser le plugin https://wrobot.eu/files/file/650-party-chat-command/ pour regen mais ca fonctionne uniquement si vous contrôlez le chef du groupe
  15. I tried several times I am not able to reproduce the problem, and you are the first to report it.
  16. Hello, Thank you. I added rules: https://wrobot.eu/files/submit/?do=submit&category=1 And yes we need to clean download session, do not hesitate to report bad files (use link "Report this file"), I'll move them in https://wrobot.eu/files/category/39-old-obsolete/
  17. Hello, try to increment your min/max latency in advanced general settings
  18. Hello, By default you cannot remember that it has finished. For you the best way is to check character position in "Can condition" with code like "return new Vector3(1, 2, 3).DistanceTo(ObjectManager.Me.Position) < 500;" But if you have good knowledge, you can do that with "robotManager.Helpful.Var" if you want remember for the current WRobot session, or create profile settings file if you want than WRobot remember for all the time.
  19. Hello, try to blacklist this repair and add a new
  20. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  21. Hello, You cannot buy arrows for now, but for drink/food go in advanced general settings tab "Vendor" put value bigger at 0 in the option "Food/Drink Amount" and in tab "Food/drink..." put your food/drink name (don't forget to add vendor in your "NPC DB" (tab tools) or in your profile
  22. Bonjour, Pouvez vous m'envoyer une capture d’écran de votre configuration "vendor..." dans "Advanced general settings"
  23. Hello,
×
×
  • Create New...