Jump to content

Droidz

Administrators
  • Posts

    12587
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, the npc repair is near the npc vendor? can you check if npc repair is active (tab "Tools" in "Npc DB", or in your profile with profile editor). "Repair" option is activated? (tab "General Settings").
  2. Par exemple, pour http://www.wowhead.com/item=5512/healthstone , à la place du nom du sort mettez l'id de l'item (5512), dans "Spell Settings" mettez "True" à l'option "Not spell, is item id". Dans les condition utiliser "Item Count" et "Item Id Cooldown Enabled". Regarde cette exemple: test.xml
  3. Bonjour, Dans "Spell Settings" utiliser l'option "Timer".
  4. Vous devez le sélectionner de cette façon la ensuite:
  5. Hallo, http://wrobot.eu/forums/topic/2695-disenchant-profile/#comment-12280
  6. Hello, you can try this: http://wrobot.eu/forums/topic/739-disenchanting/?do=findComment&comment=4180
  7. Bonjour, Il n'y a pas d'outil permettant de le faire automatiquement. Mais il est possible de le faire manuellement (pour se rapprocher le plus du code de base, le mieux serait de le traduire vers un fightclass en C#, toutes les fonctions utilisées semblent être disponibles dans WRobot) ref: http://wrobot.eu/forums/topic/12-how-to-create-an-fight-class-developer-only/
  8. Hello, do you get this problem frequently? (if you can tell me the frequency) If you can also share log files after to get this problem. What is bot state when you get this problem (bot where party is running, you can found bot state tab "In game")
  9. Hello, I come back here when is fixed, what is the name of buff applied by this mount?
  10. Ok thank you, I come back here when is fixed.
  11. Hello, I have written this plugin and I have think at you: http://wrobot.eu/files/file/622-memory-clean/
  12. You can try to run WRobot with this plugin activated: http://wrobot.eu/files/file/622-memory-clean/
  13. Version 1.1.0

    912 downloads

    MemoryClean Auto clean wow lua memory (with wow command "/reload") if this exceeds 270000 ko. This plugin is useful if you have a small amount of memory, if you run WRobot for session for a very long time, or if you launch a lot of Wow and WRobot sessions. You can edit file with notepad to change max lua memory size, replace 270000 by new limit size in KO line 28. EDIT: Now WRobot has option to to do this without this plugin: http://wrobot.eu/forums/topic/4918-since-last-update-the-bot-spams-reloadui/#comment-22750
  14. Hello, What product and what profile do you use? Do you have good FPS in wow? Do you run wow in window mode? Do you have all required softwares? Sincerly, you are the first user at say this.
  15. Hello, you play on what version of wow?
  16. Hello, you don't need to add auto shoot in your fightclass (it is managed by wrobot). Look this sample (for low level): hunter.xml
  17. Add "wManager.Wow.Bot.Tasks." before "GoToTask...."
  18. Go to tab "Tools" > click on button "Npc DB" > research the used vendor/repair and activate option "Can Fly To" (you need to use Npc outdoor).
  19. Hello, For the moment the possibility to avoid ground AOE spell is not implemented. To target same mob of the party leader, you need to use c# code like this: if (wManager.Wow.Helpers.Party.IsInGroup()) { var playerLeader = new wManager.Wow.ObjectManager.WoWPlayer(wManager.Wow.ObjectManager.ObjectManager.GetObjectByGuid(wManager.Wow.Helpers.Party.GetPartyLeaderGUIDHomeAndInstance()).GetBaseAddress); if (playerLeader.IsValid) { var target = playerLeader.TargetObject; if (target.IsValid && wManager.Wow.ObjectManager.ObjectManager.Target.GetBaseAddress != target.GetBaseAddress) { wManager.Wow.Helpers.Interact.InteractGameObject(target.GetBaseAddress, !ObjectManager.Me.GetMove); } } }
  20. If you can send me by PM you crash file please.
  21. Thank you, Wait next update and tell me if problem is resolved.
  22. Hello, what product and what fightclass do you use for the arenas? Sorry, you cannot look corps in bg.
  23. 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).
  24. 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.
  25. 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) { // .. }
×
×
  • Create New...