Jump to content

Droidz

Administrators
  • Posts

    12611
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, if you can tell me if problem is resovled with new update
  2. Hello, When explain here: https://wrobot.eu/bugtracker/offmesh-improvements-r682/?do=findComment&comment=3888 offmeshconnection use already a lot of memory/time But you can edit path with code like: https://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/#comment-26713
  3. Droidz

    Offmesh improvements

    Hello, Sorry but I cannot add this, offmeshconnection with only one use already a lot of memory/time, add more than one will slow down WRobot. But you can record long path to resolve this
  4. Hello, You can found default offmesh connections in: wManager.Wow.Enums.DefaultConstSettings.OffMeshConnectionsDefault If you have list of offmesh connections do not hesitate to share it.
  5. Change position of path generated by WRobot (this can help you to resolve stuck on specific doors and doorways) With this code, you can replace specific point of path by another. // Continent (item1), DefaultPosition (item2), DefaultPositionSearchRange (item3), NewPosition (item4) var positionChange = new List<Tuple<ContinentId, Vector3, float, Vector3>> { new Tuple<ContinentId, Vector3, float, Vector3>(ContinentId.Kalimdor, new Vector3(1422.318, -4662.921, 35.46182), 0.5f, new Vector3(1422.063, -4665.421, 35.46295)), /// new Tuple<ContinentId... }; wManager.Events.MovementEvents.OnMovementPulse += delegate(List<Vector3> points, CancelEventArgs cancelable) { var continent = (ContinentId) Usefuls.ContinentId; foreach (var p in points) { foreach (var pchange in positionChange) { if (p != null && pchange.Item1 == continent && p.DistanceTo(pchange.Item2) <= pchange.Item3) { Logging.WriteDebug("Change path position of " + p + " to " + pchange.Item4); p.X = pchange.Item4.X; p.Y = pchange.Item4.Y; p.Z = pchange.Item4.Z; p.Type = pchange.Item4.Type; p.Action = pchange.Item4.Action; } } } }; (you need to run this code one time by WRobot session, you can run this code in step type "RunCode")
  6. Droidz

    Training Dummies

    Hello, In advanced general settings you can try to disable option "Ignore training dummy". But with default WRobot settings and basic Fightclass, WRotation works on training dummies
  7. I'll check if "CastingTimeLeft > 0" in "IsCast", I hope that will not create new bug. If you can wait next update
  8. Try to run this code (after "pickup" step) Thread t = new Thread(() => { uint spellId = 214482; // http://www.wowhead.com/spell=214482/radiant-ley-crystal int questId = 38015; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; if (ObjectManager.Me.IsValid && ObjectManager.Me.IsAlive && ObjectManager.Me.IsCast && ObjectManager.Me.CastingSpellId == spellId && ObjectManager.Me.CastingTimeLeft <= 0) { Lua.LuaDoString("SpellStopCasting()"); } } Thread.Sleep(1000); } }); t.Start();
  9. Hello, What is values of : Me.CastingSpellId Me.CastingTimeLeft Me.CanInterruptCasting
  10. Hello, try wManager.Wow.Helpers.ClickOnTerrain.Pulse(new Vector3(1, 2, 3)); // or wManager.Wow.Helpers.ClickToMove.CGPlayer_C__ClickToMove(1, 2, 3, Int128.Zero(), (int)wManager.Wow.Enums.ClickToMoveType.Move, 0.5f);
  11. Hello, try this code Lua.LuaDoString(string.Format("if TaxiButton{0} then TaxiNodeOnButtonEnter(TaxiButton{0}); end", 1)); Thread.Sleep(Usefuls.Latency + 100); Lua.LuaDoString(string.Format("if TaxiButton{0} then TaxiButton{0}:Click(); else TakeTaxiNode({0}); end", 1)); (replace 1 by you button id)
  12. Hello, try code like Quester.Bot.QuesterSetting.CurrentSetting.ProfileName = "xxxxx.xml"; Products.ProductRestart();
  13. Changed Status to Confirmed Changed Version to All
  14. Hello, do you have try to disable you wow addon?
  15. No equivalent in wrobot api. I have found this http://www.wowinterface.com/forums/showthread.php?p=317717#post317717 (but no good solution) But you can try to check distance from a position instead subzoneid.
  16. Hello, use grinder bot
  17. 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/ ).
  18. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  19. Hello, in product settings activate option "Back to last profile position"
  20. https://wrobot.eu/forums/topic/5327-bot-stops-combatrotation-after-getting-stuned/
  21. Hello, use task type "ChangeWowPath"
  22. Hello, https://wrobot.eu/forums/topic/5350-start-button-doesnt-work/ https://wrobot.eu/forums/topic/5842-bot-opens-but-will-not-activate/?do=findComment&comment=26661
  23. Hello, can you send me by private message the text of this page: https://wrobot.eu/byme/auth/myIp.php
×
×
  • Create New...