Jump to content

Droidz

Administrators
  • Posts

    12508
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, before to wait try to "MovementManager.StopMove();"
  2. Hello, sorry I haven't good solution for that, what spell (buff) use your server to regen?
  3. Hello, I have never managed to reproduce the problem, can you share the log file of the session or you have this problem.
  4. Hello, do you launch several WRobot at the same time? do you have installed new software recently ? if yes try to close them
  5. Hello, try to increment your min latency (in advanced general settings)
  6. Hello, I am sorry I never found how to resolve thisproblem
  7. Hello, I keep note, I comeback here if I add this feature
  8. Hello, you need to edit profile to disable step or remove code where is change the settings.
  9. Hello, use code like (not tested, run this code one time): wManager.Events.FightEvents.OnFightLoop += delegate(WoWUnit unit, CancelEventArgs cancelable) { if (your procs condition) { var toPosition = new Vector3(1, 2, 3); wManager.Wow.Helpers.MovementManager.MoveTo(toPosition); while (wManager.Wow.Helpers.MovementManager.InMoveTo && toPosition.DistanceTo(wManager.Wow.ObjectManager.ObjectManager.Me.Position) > 0.7) { System.Threading.Thread.Sleep(10); } } };
  10. Hello, Sorry, he haven't default feature for this. But you can use party product and in product settings use follow player per name option (and use custom fightclass with interrupt spell)
  11. Hello, try code like: wManager.Events.LootingEvents.OnLootingPulse += delegate(WoWUnit unit, CancelEventArgs cancelable) { if (unit.IsValid && unit.GetDistance > 90) { wManager.wManagerSetting.AddBlackList(unit.Guid, 30 * 1000); cancelable.Cancel = true; } }; Line 3 replace 90 by your max distance
  12. Hello, someone can try to run WRobot with shortcut "WRobot No Edit Memory"
  13. Hello, blacklist events is in "wManager.Events.OthersEvents" And try
  14. I'll try to add in next update maxz distance to avoid this type of problem
  15. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 try to install slimdx and vc++
  16. Hello, you can try to use item to open dialog, and to click on dialog button use https://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447
  17. 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/ ).
  18. Hello, no sorry, if npc menu never change you can turnin quest with questtype InteractWithNpc (and run macro to complete quest)
  19. Hello, try: In "CONTAINER_BAG_OFFSET_X" replace X by 1, 2, 3 or 4 and replace "Small Black Pouch" by your bag name
  20. Hello, You can found your license key here: https://wrobot.eu/clients/purchases/ If it is not problem if you can give more details
  21. Hello, try this plugin Ignore all combat fight.cs
  22. Hello, you have too many wrobot plugins and sometime wow addons. Download and install WRobot in new folder, try to run automaton without plugin/fightclass, if you don't get crash try with fightclass, try your profile, try to add plugin one per one
  23. hello, try plugin like: using System.Threading; using wManager.Wow.Bot.States; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state is Resurrect || state is ResurrectBG) { Thread.Sleep(1000 * 30); } }; } public void Dispose() { } public void Settings() { } } Wait Resurrect.cs
×
×
  • Create New...