Jump to content

Droidz

Administrators
  • Posts

    12582
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, use quest type "OverridePulseCSharpCode" with code: var doorId = 1234; float distance = 2.5f; var o = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByEntry(doorId)); if (o.IsValid) { if (wManager.Wow.Bot.Tasks.GoToTask.ToPosition(o.Position, distance) && o.IsValid) { wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress); } } return true;
  2. Hello, what version of WRobot do you use? I cannot reproduct this.
  3. http://wrobot.eu/files/file/902-conjurer-margoss-reputation-fishing-loop/
  4. Hello, this problem was caused by the plugin "MultiPull", I'll update it. To wait you can try to use this plugin http://wrobot.eu/forums/topic/2747-clear-session-blacklist/?do=findComment&comment=12547
  5. You can also write log like: robotManager.Helpful.Logging.Write("My test log");
  6. Hello, you can test code return value in development tools like this: var o = wManager.Wow.ObjectManager.ObjectManager.GetUnitAttackPlayer(); if (o.Count > 0) { wManager.DevelopmentTools.OutPutCSharp = o[0].Name + " Distance: " + o[0].GetDistance.ToString(); }
  7. Hello, you need to use c# for this quest, and use code like: var grappleId = 1234; var grapple1 = new Vector3(1, 2, 3); var grapple2 = new Vector3(1, 2, 3); var grapple3 = new Vector3(1, 2, 3); if (ObjectManager.Me.Position.DistanceTo(grapple1) < 8) { var g = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(grappleId), grapple2); if (g.IsValid) { Interact.InteractGameObject(g.GetBaseAddress, true); Thread.Sleep(1000); } } else if (ObjectManager.Me.Position.DistanceTo(grapple2) < 8) { var g = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(grappleId), grapple3); if (g.IsValid) { Interact.InteractGameObject(g.GetBaseAddress, true); Thread.Sleep(1000); } } // ... else { var g = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(grappleId), grapple1); if (g.IsValid) { Interact.InteractGameObject(g.GetBaseAddress, true); Thread.Sleep(1000); } }
  8. You can try to use this plugin to wait fix: http://wrobot.eu/forums/topic/2747-clear-session-blacklist/?do=findComment&comment=12547
  9. Hello, You need to use c# code, and it is very hard to manage this quest, I recommand to skip this quest or request at the user to complete it manually.
  10. If you can wait next update
  11. Hello, it for tranlates http://wrobot.eu/forums/topic/381-how-to-translate-wrobot/?do=findComment&comment=8581
  12. Hello, I'll add this feature
  13. Hello, sorry for the delay. I have check your PM, all seem good, what fightclass do you use? Do you get this problem with others big mobs (big size)? When you go inside the mob WRobot works correctly (very near )?
  14. Can you try to disable all wow addons, and try to close/desinstall teamviewer please
  15. wManager.Wow.Bot.Tasks.MountTask.DismountMount(); // cancel also druid form wManager.Wow.Helpers.Lua.RunMacroText("/cancelaura " + new wManager.Wow.Class.Spell("Stealth"));
  16. Hello, at start, run code like: wManager.Events.LootingEvents.OnLootingPulse += (unit, cancelable) => { if (unit.IsValid && unit.GetDistance2D > 5) { wManager.wManagerSetting.AddBlackList(unit.Guid, 1000*120, true); cancelable.Cancel = true; } };
  17. Try this code: wManager.wManagerSetting.CurrentSetting.BlackListIfNotCompletePath = false; wManager.wManagerSetting.ClearBlacklistOfCurrentProductSession();
  18. Do you have try to use step type "reset" before?
  19. Hello, can you read this: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
  20. https://msdn.microsoft.com/en-us/library/6373h346.aspx
  21. Hello, Try to remove folder "WRobot\WRobot\Data\Meshes", if your problem is not resolved can you share your log file please.
  22. Hello, do you have try to use lua or disable option "Check if know spell"
  23. Hello, Can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
  24. Hello, do you have try to blacklist this zone (house)?
  25. Hello, lock (wManager.Wow.Helpers.Taxi.TaxiList.Locker) { foreach (var node in wManager.Wow.Helpers.Taxi.TaxiList.Nodes) { wManager.Wow.Helpers.Taxi.TaxiList.Active(node); } }
×
×
  • Create New...