Jump to content

Droidz

Administrators
  • Posts

    12590
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, WRobot will not work with a boxer. You can use the product "party" if they are on the same server and in the same group (but not compatible with quests at the moment, I would add it one day). To do quests, the only solution at the moment is to launch wrobot several times with the "Quester" product and use the same profile (but the group are not supported).
  2. Just for the test, you can try to put min latency at 1000 and max at 1500 and tell me if this resolved problem. Do you use wow addon? if you you can try to disable all.
  3. Hello, I am not sure to understand exactly what you want, but you can use code like this: int numberOfEliteNearTank = ObjectManager.GetWoWUnitHostile().Count(u => u.Position.DistanceTo(tank.Position) <= u.InteractDistance && u.IsElite && UnitCanAttack.CanAttack(u.GetBaseAddress, tank.GetBaseAddress)); if (numberOfEliteNearTank >= 3) { // .. }
  4. Hello, To stop to go to tank if it is out of view you can use this code: #region Tank too far bool tankfar() { WoWPlayer tank = getTanks().First(); while (tank.IsValid && tank.GetDistance > 15 && !wManager.Wow.Helpers.TraceLine.TraceLineGo(tank.Position)) { MovementManager.MoveTo(tank); System.Threading.Thread.Sleep(50); } MovementManager.StopMove(); return false; } #endregion To generate path and go to tank you can use code like this: #region Tank too far bool tankfar() { WoWPlayer tank = getTanks().First(); if (tank.IsValid && tank.GetDistance > 15) { wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWith(new WoWUnit(tank.GetBaseAddress), -1, false, context => Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && tank.GetDistance > 15); } MovementManager.StopMove(); return false; } #endregion
  5. Hello, look this: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=12213
  6. Use Portals To use portails, you can look this sample: UsePortal.xml (guide is written in the first step).
  7. Change WRobot settings You can change WRobot settings with step type "RunCode" like this: Disable "Stop bot if player teleported" (to avoid problem with you use Hearthstone or portals): wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false; To disable "attack before being attacked": wManager.wManagerSetting.CurrentSetting.AttackBeforeBeingAttacked = false; ... (to get names of settings, you can edit file with nodepad "WRobot\Settings\General-..........xml")
  8. Hello, Yes, I cannot detect new spells without restart wow client, I don't know cause yet (this problem do not exist on the wotlk official server before). I have add it to my to do list, I'll look it again, I comeback here when is done.
  9. Hello, problem resolved.
  10. Droidz

    3.3.5a quester

    Hello, Can you share the profile used please? (problem is probably caused by an c# code in the profile)
  11. Starting quest from items (picked up)
  12. Add grind area (don't forget to give a name at this "Quest" and add in the steps a step type "Pulse")
  13. Quest by race Two possibilities:
  14. Hello, very good job, thank you. To clear quest log you can look this: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=12203
  15. Force to use Flightmaster / Taxi WRobot takes the taxi automaticly generally, but if you want force to use taxi you can look this sample: UseFlightPath.xml (guide is written in the first step).
  16. Use item on hostile weakened mob Add step type "PickUp" (put quest name in parameter) Add step type "RunCode", in parameter put this code: Thread t = new Thread(() => { uint itemId = 62899; int questId = 28000; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive && ObjectManager.Target.HealthPercent <= 25) { ItemsManager.UseItem(itemId); } } Thread.Sleep(500); } }); t.Start(); (you need to have quest in your questlog, you can replace "62899" but the item id, "28000" by the quest id and "25" by the max target health) Add step type "Pulse" (put quest name in parameter) (use quest type kill or interact) Add step type "TurnIn" (put quest name in parameter) (sample if based on this quest: http://www.wowhead.com/quest=28000/do-the-imp-possible )
  17. Quest log cleaner Abandon all quests Add step type "RunLuaCode" with code: for i=1,GetNumQuestLogEntries() do SelectQuestLogEntry(i); SetAbandonQuest(); AbandonQuest(); end Abandon quest by quest id Add step type "RunLuaCode with code (replace 12345 by the quest id at abandon): local questId = 12345; for i=1,GetNumQuestLogEntries() do local _, _, _, _, _, _, _, id = GetQuestLogTitle(i); if id == questId then SelectQuestLogEntry(i); SetAbandonQuest(); AbandonQuest(); end end
  18. Snippets codes for quest profiles ps: Feel free to share your tips on this post. If your message is poorly presented or contains a question, it will be deleted.
  19. Hello, can you tell me if you get this problem with new update.
  20. Hello, if "reduce input lag" option don't resolve your problem, can you try to launch wrobot with NoFakeCallStack.bat (download and move this file in wrobot folder, double click on it to launch WRobot) (if wow crash again, if you can send me wow crash files by private message).
  21. Hello, I will not add this, (There is an option almost similar of this "Ignore fighting during farm if in druid form" (in advanced general settings tab Looting...).
  22. Hello, disconnection appear only in bg? If you can share log of sessions where your get this problem.
  23. Hello, Can you give me position where bot stuck please (go to tab "Tools" > "Developmen Tools" > "Me/Target Position") You can try to add zone to blacklist (tab "Tools" > "Add current zone to black list").
  24. Hello, quest type "KillAndLoot" are not made to fly, use quest type "FollowPath" if you want use fly path. ramparts[horde] EDITED.xml
  25. Version 1.0.0

    6431 downloads

    Grinder profiles pack for Wotlk Install: Download and extract file in the folder "WRobot Wotlk\Profiles\Grinder\".
×
×
  • Create New...