Jump to content

Droidz

Administrators
  • Posts

    12519
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, Try this plugin: GatheringMobSpawns.cs using System.Collections.Generic; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Bot.States; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var grinderState = new Grinding {EntryTarget = new List<int> {98232, 98234, 98235, 98233 } }; // http://www.wowhead.com/npc=98232/withered-hungerer , http://www.wowhead.com/npc=98234/nightmare-creeper , http://www.wowhead.com/npc=98235/frenzied-fox, http://www.wowhead.com/npc=98233/withered-hungerer robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state != null && state.DisplayName == "Farming") { if (grinderState.NeedToRun) { grinderState.Run(); cancelable.Cancel = true; } } }; Logging.Write("[GatheringMobSpawns] Loadded."); } public void Dispose() { Logging.Write("[GatheringMobSpawns] Disposed."); } public void Settings() { MessageBox.Show("[GatheringMobSpawns] No settings for this plugin."); } }
  2. Hello, you get this problem all time or only when you are in combat?
  3. And in advanced general settings you can try to disable option "Blacklist Npc/Node if unable to make full path to reach it"
  4. Not tested but try : Summon Imp Vanilla.xml
  5. Hello,
  6. Hello, sorry you cannot change that
  7. Hello, if you get this error sometimes it is not importante.
  8. Hello, try to remove "Subject" in advanced generals settings tab "Mail"
  9. Hello, try to check in you taxi DB (tab tools) if flightmaster position is good. If yes wait meshes update: http://wrobot.eu/bugtracker/pathing-again-r622/
  10. Hello, you can run this c# code: wManager.Wow.Helpers.Interact.InteractGameObject(wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByEntry(254241)).GetBaseAddress); Or add Portcullis in objects at harvest list (in advanced generals settings)
  11. Hello, try this plugin: CTMWhenSwimming.cs using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.MovementEvents.OnMoveToLoop += () => { if (ObjectManager.Me.IsSwimming) wManager.wManagerSetting.CurrentSetting.UseCTM = true; else wManager.wManagerSetting.CurrentSetting.UseCTM = false; }; } public void Dispose() { wManager.wManagerSetting.CurrentSetting.UseCTM = false; } public void Settings() { } } You can also run this code in your quest profile (only one time by session): wManager.Events.MovementEvents.OnMoveToLoop += () => { if (wManager.Wow.ObjectManager.ObjectManager.Me.IsSwimming) wManager.wManagerSetting.CurrentSetting.UseCTM = true; else wManager.wManagerSetting.CurrentSetting.UseCTM = false; };
  12. Hello, http://wrobot.eu/forums/forum/7-tutorials-wrobot/
  13. http://wrobot.eu/forums/topic/5096-corpse-navigation/
  14. Hello, I'll fix it in next weeks: http://wrobot.eu/bugtracker/pathing-again-r622/
  15. Hello, Can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ). Do you use default bobber?
  16. Hello, yes, use fish bot default settings and in advanced general settings you have mail settings
  17. Droidz

    pathing again

  18. Hello, it is ObjectManager.Me.GetDurabilityPercent
  19. Bonjour, essayé de désactivé votre antivirus
  20. Hello, Do you use CTm?
  21. Hello, you can found eat settings in advanced general settings
×
×
  • Create New...