Jump to content

Droidz

Administrators
  • Posts

    12587
  • Joined

  • Last visited

Everything posted by Droidz

  1. Salut, Essaye un plugin comme: using robotManager.Products; public class Main : wManager.Plugin.IPlugin { private IProduct instanceFromOtherAssembly; public void Initialize() { instanceFromOtherAssembly = Products.LoadProductsWithoutInit("Tracker"); if (instanceFromOtherAssembly != null) { instanceFromOtherAssembly.Initialize(); instanceFromOtherAssembly.Start(); } } public void Dispose() { if (instanceFromOtherAssembly != null) { instanceFromOtherAssembly.Dispose(); instanceFromOtherAssembly = null; } } public void Settings() { } }
  2. Hello, 1. To drink use "party chat command" with setting like https://wrobot.eu/forums/topic/2834-command-to-party-by-party-chat/?do=findComment&comment=13014 2 You cannot change that
  3. Hello, you can select min/max hp % and food/spell name to regen in advanced general settings. Spells are managed by fightclass
  4. Hello, try code like (not tested): static Main() { robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += delegate (Engine engine, State state, CancelEventArgs cancelable) { if (!string.IsNullOrWhiteSpace(state.DisplayName) && state.DisplayName == "Regeneration" && ObjectManager.Pet.IsValid && ObjectManager.Pet.IsAlive && ObjectManager.Pet.HaveBuff("Feed Pet Effect") && !state.NeedToRun) { while (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore && ObjectManager.Pet.IsValid && ObjectManager.Pet.IsAlive && ObjectManager.Pet.HaveBuff("Feed Pet Effect")) { Thread.Sleep(800); } } }; }
  5. Ok, how many time he miss for you before blacklist?
  6. Changed Status to Confirmed Changed Version to All
  7. Hello, try to activate option "use lua to move" in advanced general settings
  8. Hello, blacklist (or disable in NPC DB) this mailbox and add another
  9. In your log you seem to get stuck, WRobot can make path to go to the gate?
  10. Hello, try plugin like: using System.Threading; using robotManager.Products; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { while (Products.IsStarted) { if (Conditions.ProductInPause && Conditions.InGameAndConnectedAndAlive && Conditions.IsAttackedAndCannotIgnore) { Products.InPause = false; } Thread.Sleep(500); } } public void Dispose() { } public void Settings() { } } Main.cs
  11. Hello, you cannot change that, in your profile try to avoid this zone
  12. Hello, yes use fisher bot with underbelly profile, and add guard in your fightclass (or in plugin? macro?)
  13. Hello, this is managed by your fightclass. Try another fightclass.
  14. https://wrobot.eu/forums/topic/8147-using-a-vpn/?page=0#comment-37199
  15. Hello, you get this problem with what WRobot version? Only with casters? You have try with several fightclass?
  16. Hello, Do you have try with another fightclass? with default WRobot settings? and to disable all wrobot plugins/wow addons? If your problem is not resolved, can you share your full log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  17. Hello, Like: Thread t = new Thread(() => { int questId = 28000; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; Lua.LuaDoString("OverrideActionBarButton1:Click()"); } Thread.Sleep(500); } }); t.Start();
  18. Hello, use code like wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(821.2907, 821.2907, 9.0076));
  19. Hello, it is probably plugin problem
  20. Hello, you use last profile update? Try to contact profile creator
  21. Hello, https://wrobot.eu/forums/topic/4918-since-last-update-the-bot-spams-reloadui/?do=findComment&comment=22750
  22. Hello, no you cannot do that
  23. Hello thank you. If anymore can give me "Spirit of Redemption" id, or buff.
  24. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 try to disable firewall, proxy...
  25. 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/ ).
×
×
  • Create New...