Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, you need to edit profile to disable step or remove code where is change the settings.
  2. 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); } } };
  3. 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)
  4. 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
  5. Hello, someone can try to run WRobot with shortcut "WRobot No Edit Memory"
  6. Hello, blacklist events is in "wManager.Events.OthersEvents" And try
  7. I'll try to add in next update maxz distance to avoid this type of problem
  8. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 try to install slimdx and vc++
  9. 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
  10. 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/ ).
  11. Hello, no sorry, if npc menu never change you can turnin quest with questtype InteractWithNpc (and run macro to complete quest)
  12. Hello, try: In "CONTAINER_BAG_OFFSET_X" replace X by 1, 2, 3 or 4 and replace "Small Black Pouch" by your bag name
  13. Hello, You can found your license key here: https://wrobot.eu/clients/purchases/ If it is not problem if you can give more details
  14. Hello, try this plugin Ignore all combat fight.cs
  15. 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
  16. 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
  17. Hello, I keep note of this suggestion thank you
  18. Hello, in what wow version?
  19. Hello, I think that it is profile problem
  20. Hello, try to pick the quest manually with quest type interactwithnpc (and use lua code to only select your quest)
  21. Hello, To click on crystal you can add object in object to harvest list (in advanced general settings), if you just to to interact with npc you can add it to npc to attack, but in your case it is better to use Quester profile
  22. Hello, some plugins have not settings, but you can open it with notepad to change code (where you have found this plugin?)
  23. 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/ ).
  24. Hello, it's depend of your profile, https://wrobot.eu/forums/topic/1925-sample-dungeon-profile/
×
×
  • Create New...