Jump to content

Droidz

Administrators
  • Posts

    12595
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, like that (in simplified): bool RunState(State currentState) { if (currentState.NeedToRun) { foreach (var beforeState in currentState.BeforeStates) { RunState(beforeState); } currentState.Run(); foreach (var nextState in state.NextStates) { RunState(nextState); } return true; } return false; }
  2. Hello, I take note of this problem I try to solve it in the next updates, I come back here when it's done.
  3. Hello, you cannot change that (or put lower to value)
  4. Hello, Disable addons and plugins when you share log. You get this problem with all profiles/quests or only on this quest/profile?
  5. 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/ ).
  6. Get quest instance and call "Reset()" method
  7. here: Select "Reset" instead "RunCode" (in parameter select your quest)
  8. Problem is probably in your profile, plugins change nothing about that
  9. hello, to reset use "Action type" "Reset"
  10. using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { try { if (state is wManager.Wow.Bot.States.Resurrect) cancelable.Cancel = true; } catch { } }; } public void Dispose() { } public void Settings() { } }
  11. Hello, use plugin like (no tested): using System.Threading; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; while (_isLaunched && Products.IsStarted) { if (Conditions.InGameAndConnected && Conditions.ProductIsStartedNotInPause && ObjectManager.Me.IsDead) { Lua.LuaDoString("AcceptResurrect()"); Thread.Sleep(1000); } Thread.Sleep(150); } } public void Dispose() { _isLaunched = false; } public void Settings() { } }
  12. Sorry, except quest type "followpath" Quester don't support aquatic mount, only grinder/gatherer bot can do swimming profile.
  13. It is for a quest (or just gather)?
  14. ok thanks, because i looked i'm pretty sure it's a blacklisted zone problem, but i can not find what where WRobot blacklist zone and cause this problem (WRobot blacklist zone on a distance of 1 yard when you're stuck, but you do not have much stucks in your log)
  15. I think than problem is when WRobot find path from ground to water, path is ground path, you need to add several water hotspots (when if find path from water to water it is swim path) (or use quest type followpath)
  16. Hello, it will be difficult to help you without your profile
  17. No default feature for that sorry, if you use quest profile you can add step for that, or with plugin but you need a good knowledge of Wow and WRobot.
  18. Hello, check if your profile don't change your settings
  19. Hello, use step type reset (to reset your follow path quest before to run it again)
  20. in advanced general settings
  21. Hello, in your profile or in your "NPC DB" (tab "tools") add npc trainer and enable option train new spell
  22. Hello, this is managed by the profile (there can be a lot of different ways to know if a quest is complete or not). You can try to disable wow addons, but can be also profile bug (or profile don't support your game version/server)
  23. When you problem, when you active radar with option to show blacklisted zone what is result (you have a lot of zone blacklisted)? You can provide me profile easy to use (start zone) that can quickly reproduce this problem?
  24. In your profile, you need to use position type "Swimming" to use aquatic mount, you so that?
  25. Droidz

    Gather Herbs

    Hi, I know that WRobot can in some cases ignore node that it has just the level to pick up (that's better than if he try to farm nodes without level). To solve this problem you can wait until you earn a few skill points, or add the name of the mines to the list of objects to harvest. I'm taking note of this problem.
×
×
  • Create New...