Jump to content

Droidz

Administrators
  • Posts

    12510
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  2. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  3. Hello, check if WRobot and Wow are update
  4. In you log you need to repair? (wath is your durability?), Check if WRobot can make path to the repair and if repair npc is active (in npc db)
  5. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  6. Hello, can you read this: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If you problem is not resolved, can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  7. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  8. Droidz

    Gatherer

    Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  9. Hello, can you share result of "Player/Target Buff/Debuff" (you can found this button in "dev... tools" (tab "tools")) (when you have this buff)
  10. try to active "Use flying mount at all times" and "back to last profile position" (in product settings)
  11. Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  12. You can try code like: wManager.Events.FightEvents.OnFightStart += (target, cancelable) => { if (target.Entry == 1233) { //wManager.wManagerSetting.AddBlackList(target.Guid, 1000 * 60 * 5, true); cancelable.Cancel = true; } }; (run this code only one time)
  13. Ok, I applied the patch to the new version (for wow build 24974)
  14. If you can try with this file (move and replace this file in "Bin" folder), and use this file some time to check if this fix don't add new bugs. wManager.dll
  15. Hello, https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088
  16. Can you share your log and a screenshot of your product settings tab
  17. I cannot reach this mob quickly, can you target this mob and run this code (give me result): var tPos = wManager.Wow.ObjectManager.ObjectManager.Target.Position; var tCombatReach = wManager.Wow.ObjectManager.ObjectManager.Target.CombatReach; var pPos = wManager.Wow.ObjectManager.ObjectManager.Me.Position; robotManager.Helpful.Logging.Write("t = " + wManager.Wow.ObjectManager.ObjectManager.Target); robotManager.Helpful.Logging.Write("r1 = " + wManager.Wow.Helpers.TraceLine.TraceLineGo(tPos)); robotManager.Helpful.Logging.Write("r2 = " + wManager.Wow.Helpers.TraceLine.TraceLineGo(tPos + new Vector3(0, 0, 1.5))); robotManager.Helpful.Logging.Write("r3 = " + wManager.Wow.Helpers.TraceLine.TraceLineGo(tPos + new Vector3(0, 0, 2.5))); robotManager.Helpful.Logging.Write("r4 = " + wManager.Wow.Helpers.TraceLine.TraceLineGo(tPos + new Vector3(0, 0,- 1.5))); robotManager.Helpful.Logging.Write("r5 = " + wManager.Wow.Helpers.TraceLine.TraceLineGo(tPos + new Vector3(0, 0, -2.5))); robotManager.Helpful.Logging.Write("r6 = " + wManager.Wow.Helpers.TraceLine.TraceLineGo(tPos + new Vector3(0, 0, tCombatReach))); robotManager.Helpful.Logging.Write("r7 = " + wManager.Wow.Helpers.TraceLine.TraceLineGo(tPos + new Vector3(0, 0, tCombatReach / 2))); robotManager.Helpful.Logging.Write("r8 = " + wManager.Wow.Helpers.TraceLine.TraceLineGo(tPos + new Vector3(0, 0, tCombatReach / 3))); robotManager.Helpful.Logging.Write("r9 = " + wManager.Wow.Helpers.TraceLine.TraceLineGo(tPos + new Vector3(0, 0, tCombatReach / 4))); robotManager.Helpful.Logging.Write("r10 = " + wManager.Wow.Helpers.TraceLine.TraceLineGo(robotManager.Helpful.Math.GetPostion3DOfLineByDistance(pPos, tPos, pPos.DistanceTo(tPos) - tCombatReach))); robotManager.Helpful.Logging.Write("r11 = " + wManager.Wow.Helpers.TraceLine.TraceLineGo(robotManager.Helpful.Math.GetPostion3DOfLineByDistance(pPos, tPos, pPos.DistanceTo(tPos) - tCombatReach - 1))); robotManager.Helpful.Logging.Write("r12 = " + wManager.Wow.Helpers.TraceLine.TraceLineGo(robotManager.Helpful.Math.GetPostion3DOfLineByDistance(pPos, tPos, pPos.DistanceTo(tPos) - tCombatReach + 1)));
  18. Use Hearthstone sample if (wManager.Wow.Helpers.Usefuls.ContinentId != (int) wManager.Wow.Enums.ContinentId.Azeroth || wManager.Wow.ObjectManager.ObjectManager.Me.Position.DistanceTo2D(new robotManager.Helpful.Vector3(1, 2, 3)) > 1000) { wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false; wManager.Wow.Helpers.ItemsManager.UseItem(6948); // http://www.wowhead.com/item=6948/hearthstone System.Threading.Thread.Sleep(1000 * 20); // 20 secondes wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = true; } Line 1 replace "Azeroth" by your destination continent. Line 2 replace "1, 2, 3" by your destination position (you can also replace "1000" by your minimum distance to destination to use Hearthstone).
×
×
  • Create New...