Jump to content

Droidz

Administrators
  • Posts

    12510
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, WRobot haven't this feature yet. You can use wow addon like Zygor for it.
  2. Hello, do you have activated "Harvest Timber" in tab "General Settings"?
  3. You can found some others source code here: http://wrobot.eu/files/category/26-plugins/ I have write sample code (no tested): using System.Collections.Generic; using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using Timer = robotManager.Helpful.Timer; public class Main : IPlugin { private List<string> Names = new List<string> { "ObjNpc Name 1", "ObjNpc Name 2", "ObjNpc Name ...", }; private bool _isLaunched; public void Initialize() { _isLaunched = true; var timer = new Timer(1500); timer.ForceReady(); Logging.Write("[Search Objects] Loadded."); while (_isLaunched && Products.IsStarted) { try { if (timer.IsReady && Conditions.ProductIsStartedNotInPause) { foreach (var o in wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWUnit()) { try { if (o.IsValid && !string.IsNullOrEmpty(o.Name) && Names.Contains(o.Name)) { // Code here where NPC found: MessageBox.Show("Npc found: " + o.Name); } } catch {} } foreach (var o in wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWGameObject()) { try { if (o.IsValid && !string.IsNullOrEmpty(o.Name) && Names.Contains(o.Name)) { // Code here where object found: MessageBox.Show("Object found: " + o.Name); } } catch { } } timer.Reset(); } } catch { } Thread.Sleep(300); } } public void Dispose() { _isLaunched = false; Logging.Write("[Search Objects] Disposed."); } public void Settings() { MessageBox.Show("[Search Objects] No settings for this plugin."); } } (replace "ObjNpc Name ..." line 15 by object or npc name (case sensitivity))
  4. Hello, I fixed problem in WRobot, to wait WRobot update, you can use this profile (code to fix problem is in first steps (in quest order)). Undead Quest FIXED.xml
  5. Je ne sais pas ce qui cause le problème, vous êtes le seul à l'avoir. Il y a de grande chance que WRobot est des problème à accédé au fichier "WRobot\Data\OffMeshConnections.xml" (soit le fichier est corrompu, n’existe pas, soit l'antivirus ou Windows bloque l'accès?). Vous pouvez essayé sur un autre PC ou d'installer Wow et WRobot dans une machine virtuel (avec VMWare).
  6. Hello, Read this to try to resolve problem: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/ If problem is not resolved please give me your log file: http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
  7. In login window (first window) try to unckeck option "DirectX hook".
  8. C'est le code C#: bool cibleAttaquable = Lua.LuaDoString<bool>("return UnitCanAttack('player', 'target')"); if (cibleAttaquable) { // ta rotation... }
  9. Hello, with lastest updates you get yet this problem?
  10. You can use action ( http://wrobot.eu/forums/topic/2202-profile-positions-and-action-column/ ) but you are limited. But if you use quester (or custom profile) you get full control of your character, it is the best solution.
  11. Hello, Do you want check it is your fightclass? if yes, you can use lua condition with this wow function: http://wow.gamepedia.com/API_UnitCanAttack
  12. Hello, You can try to disable option "Detect nodes stuck" and activate option (in gatherer product settings) "Skip nodes Indoors if Outdoors".
  13. Hello, You get some error, can you try to install SlimDX . Do you get again this problem (I have updated wrobot since your post). Do you have try to use another's profile (it is possible that your profile has outdated).
  14. Hello, can you tell me if problem is resolved. You can use main AH of stormwind (I don't get problem).
  15. Droidz

    skip bad hotspot

    Hello, blacklist zone (in profile or in your wrobot settings (tab "Tools")).
  16. Hello, You can see blacklist in game with tools in the tab "Map" (radar3d). Check if the size of blacklisted zone is good. The problem, if wrobot found mob/object after the zone, he will cross it. You can reducte search radius (in "General Settings") or increment blacklisted zone size.
  17. Hello, I have worked on gatherer bot to resolved problems, can you tell me if problems is resolved (or not).
  18. Hello, You can add custom objects to harvest in advanced general settings tab "Farming..." (or in profile/product settings if you use product gatherer/quester/automaton/custom). You can also use tab "Map" and search the object by name (use radar 3d to show it in game). It is possible to create an plugin that stop bot/play soung/... when the object is near.
  19. le code "Lua.LuaDoString<bool>("return UnitCanAttack('player', 'target');")" retourne quoi en arene? ret = UnitCanAttack('player', 'target');
  20. Bonjour, Il y as "gameObject.IsInvisible" pour tester si un objet (ou Unit) est visible ou pas, mais tout les invisible de son pas ajouté à la liste (pour éviter que le bot ce batte ou ramasse un objet invisible, ce qui peut êtres un test des MJ...) La liste d'objet (sans filtre) est: wManager.Wow.ObjectManager.ObjectManager.ObjectListTu peux utiliser la liste de cette façon: foreach (var woWObject in wManager.Wow.ObjectManager.ObjectManager.ObjectList) { if (woWObject.IsValid && woWObject.Type == wManager.Wow.Enums.WoWObjectType.Player) { var wowPlayer = new wManager.Wow.ObjectManager.WoWPlayer(woWObject.GetBaseAddress); bool isInvisible = wowPlayer.IsInvisible; } }Je ne sais pas par contre, si les joueurs invisibles sont dans cette liste, je n'ai jamais regardé.
  21. Bonjour, ce problème apparait de nouveau ou vous l'avez à chaque utilisation depuis vos anciens messages? PS: Le bot c'est fermé car il a considéré que votre personnage a était téléporté.
  22. Hello, you get a lot of errors in your log file, please install SlimDX ( http://slimdx.googlecode.com/files/SlimDX Runtime .NET 4.0 x86 (January 2012).msi ) to resolve it (this will probably resolve a lot of problems). And no you cannot use HearthStone after x number of blockages (you can just close Wow in security settings), but with good profile, if you blacklists unsafe zones you don't get blockages.
  23. Droidz

    Ban %

    Hello, I have reply here: http://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/501225-wrobot-wod-all-one-leveling-gathering-archaeo-free-rotation-bot-4.html#post3342104 It is very rare, but this can happen.
  24. Hello, Try to change directx version in game (don't forget to restart wow before launch wrobot).
  25. Reply here: http://wrobot.eu/forums/topic/2427-hello-first-time-user-here-trying-to-load-up-the-trial-version/
×
×
  • Create New...