Jump to content

Droidz

Administrators
  • Posts

    12508
  • Joined

  • Last visited

Everything posted by Droidz

  1. Get quest instance and call "Reset()" method
  2. here: Select "Reset" instead "RunCode" (in parameter select your quest)
  3. Problem is probably in your profile, plugins change nothing about that
  4. hello, to reset use "Action type" "Reset"
  5. 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() { } }
  6. 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() { } }
  7. Sorry, except quest type "followpath" Quester don't support aquatic mount, only grinder/gatherer bot can do swimming profile.
  8. 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)
  9. 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)
  10. 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.
  11. Hello, use step type reset (to reset your follow path quest before to run it again)
  12. Hello, in your profile or in your "NPC DB" (tab "tools") add npc trainer and enable option train new spell
  13. 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)
  14. 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?
  15. In your profile, you need to use position type "Swimming" to use aquatic mount, you so that?
  16. 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.
  17. Hello, try plugin like (no tested): using System.ComponentModel; using robotManager.FiniteStateMachine; using robotManager.Helpful; using wManager.Wow.Bot.States; using wManager.Wow.Helpers; using Timer = robotManager.Helpful.Timer; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var t = new Timer(5 * 5000); robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += delegate (Engine engine, State state, CancelEventArgs cancelable) { try { if (t.IsReady && Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore && state.DisplayName == "To Town") { t.Reset(); // https://wowwiki.fandom.com/wiki/API_GetInventoryItemDurability if (!ToTown.ForceToTown && Lua.LuaDoString<double>( @"local current, maximum = GetInventoryItemDurability(16); if not maximum then return 1 end if not current then return 0; end return maximum / current;") < 0.1) { Logging.Write("Force go to town weapon broken"); ToTown.ForceToTown = true; } } } catch { } }; } public void Dispose() { } public void Settings() { } }
  18. Hello, try plugin like: using robotManager.Helpful; using wManager.Plugin; using System.Windows.Forms; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : IPlugin { public void Initialize() {} public void Dispose() {} public void Settings() { sTemp.CreateHmpSetting(); } } class sTemp : Settings { public static void CreateHmpSetting() { var filePath = AdviserFilePathAndName("CustomPlugin-Master", ObjectManager.Me.Name + "." + Usefuls.RealmName); var fileContent = @"<?xml version=""1.0"" encoding=""utf-8""?> <PluginSettings xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xmlns:xsd=""http://www.w3.org/2001/XMLSchema""> <TransactionId>123456789</TransactionId> <AutoEquipBlacklist> <int>7005</int> <int>7005</int> <int>7005</int> <int>7005</int> </AutoEquipBlacklist> <FirstAid>false</FirstAid> <TrainFirstAid>false</TrainFirstAid> <Food>false</Food> <Drink>false</Drink> <BlackListIds /> <Looting>false</Looting> <Skinning>false</Skinning> <TrainingLevels /> <TrainerBlacklist /> <EscapeElite>true</EscapeElite> <EscapePercentMana>0</EscapePercentMana> <EscapePercentManaEnemies>0</EscapePercentManaEnemies> <SmartPulls>false</SmartPulls> </PluginSettings>"; Others.WriteFile(filePath, fileContent); MessageBox.Show("HMP file created"); } } (change xml code for your settings)
  19. Hello, by default WRobot don't support that
×
×
  • Create New...