Jump to content

Droidz

Administrators
  • Posts

    12448
  • Joined

  • Last visited

Community Answers

  1. Droidz's post in [Documentation] WRobot api was marked as the answer   
    I'll write the API documentation but I do not know when.
  2. Droidz's post in Archaeology Digging was marked as the answer   
    Hello, It is an wow bug, the problem (if WRobot continue), your character cannot use mounts. I'll look if I can improve it, but I don't think found a complete solution.
  3. Droidz's post in Won't re-equip was marked as the answer   
    Hello,   You are sure to use the good weapon name (case sensitive)? You can try to clear this option and relanche WRobot for complete auto this option.
  4. Droidz's post in Game version incorrect was marked as the answer   
    The problem is due to Windows account privilege, you need to launch WRobot in administrator mode (to get access at  the wow process memory), for this, you need to use administrator Windows session.
  5. Droidz's post in Interrupt was marked as the answer   
    Hello,
     
    If you use C# code you can use code like this:  (replace Mighty Bash in "_mightyBash = new Spell("Mighty Bash");" by your spell name (in english)).
     
    If you use FightClass editor you can use spell condi like this: InterruptsTest.xml
     
    ps: I haven't tested this code/fightclass, if this don't work tell me.
    ps2: More result here: https://www.google.com/search?q=site%3Awrobot.eu+Interrupt
  6. Droidz's post in Vanish if Elite was marked as the answer   
    Hello,
     
    Try it: ShaiMutilateRogue-avoidelite.xml
     
    I have added code in "General Settings" > "Additional C#".
  7. Droidz's post in Bot does not enter instances properly was marked as the answer   
    Hello,
     
    For the moment WRobot don't support donjon, I'll add this feature with update for WoD.
  8. Droidz's post in Blacklisting the shipwreck debris? was marked as the answer   
    Hello,   Go to tab "Tools", click on button "Black list editor".   I have found this objects (id at end of url): http://www.wowhead.com/object=210216 http://www.wowhead.com/object=207724 http://www.wowhead.com/object=214547 http://www.wowhead.com/object=211423 In window add manually in 'blacklist by type' this ids:
  9. Droidz's post in Hi ... Have you an easy tip for : was marked as the answer   
    Hello,
     
    To get if it is enemy player:
    if (ObjectManager.Target.Type == WoWObjectType.Player) { if (((WoWPlayer) ObjectManager.Target).PlayerFaction != ObjectManager.Me.PlayerFaction) { // Is enemy player } } To interact with your current target (this is useless because it is already your target):
    Interact.InteractGameObject(ObjectManager.Target.GetBaseAddress); I ignore exactly what is your objective, but if you want search and interact with an enemy player you can use code like:
    List<WoWPlayer> enemyPlayerList; if (ObjectManager.Me.IsAlliance) enemyPlayerList = ObjectManager.GetWoWUnitHorde(); else enemyPlayerList = ObjectManager.GetWoWUnitAlliance(); WoWPlayer nearestPlayerEnemy = ObjectManager.GetNearestWoWPlayer(enemyPlayerList); if (nearestPlayerEnemy.IsValid && nearestPlayerEnemy.IsAlive && nearestPlayerEnemy.GetDistance < 150) { Interact.InteractGameObject(nearestPlayerEnemy.GetBaseAddress); if (ObjectManager.Me.Target == nearestPlayerEnemy.Guid) { // OK } } To get the nearest attackable NPC:
    List<WoWUnit> unitList = ObjectManager.GetObjectWoWUnit(); List<WoWUnit> enemyUnitList = new List<WoWUnit>(); foreach (var woWUnit in unitList) { if (woWUnit.IsValid && woWUnit.IsAlive && woWUnit.Reaction <= Reaction.Neutral && UnitCanAttack.CanAttack(woWUnit.GetBaseAddress, ObjectManager.Me.GetBaseAddress)) enemyUnitList.Add(woWUnit); } WoWUnit nearestUnitEnemy = ObjectManager.GetNearestWoWUnit(enemyUnitList); if (nearestUnitEnemy.IsValid && nearestUnitEnemy.IsAlive && nearestUnitEnemy.GetDistance < 150) { Interact.InteractGameObject(nearestUnitEnemy.GetBaseAddress); if (ObjectManager.Me.Target == nearestUnitEnemy.Guid) { // OK } }
  10. Droidz's post in Creation de profile was marked as the answer   
    Bonjour,
     
    Le robot suit le chemin enregistré dans le profil, il sort du chemin que quand il à une cible (tuer un PNJ, ramasser une mine...) puis y revient.
  11. Droidz's post in NPCDB is empty was marked as the answer   
    Hello,   To complete your NPC DB (of tab "Tools") you can, In "Advanced general settings..." tab "Other options"  activate option "Automatically add in database the NPCs of loaded profiles".   And like has say Seumas, if your profile don't contain NPC you need to add it in you profile or in NpcDB a vendors or repairs. You can also use "Tundra Mammoth" (activate this option in "advanced general settings") if you have this mount.   Check also if you settings to sell/repair is good >
  12. Droidz's post in KillandLoot - Won't TurnIn was marked as the answer   
    Hello, I haven't accessed at this quest, Try to put 8 at "Objective count 2", if this not works put 8 at "Objective count 3"... If after this not works, put 0 at all "Objective count" and activate settings "Auto detect objective count (1-4)". Tell me if this works, I'll test again tomorrow if I have access at this quest.
  13. Droidz's post in Pet Hunter Camping module was marked as the answer   
    Hello,   Tame pets is not easy, WRobot is not make for it.   I have coded quickly an "Custom profile" to detect NPC by id (this custom profile play an sound and show on map (in wrobot window tab "Map") NPC detected).   To add/remove NPCs at detect, edit custom profile with notepad here: // Id of NPCs at detect: private readonly List<int> _detectNpc = new List<int> { 38453, // Arcturis: http://www.wowhead.com/npc=38453 54319, // Magria: http://fr.wowhead.com/npc=54319 }; // Play sound when npc detected: private readonly bool _playSound = true; (for the moment I have put only two pet).   To install this custom profile, download Npc detector.zip and extract zip file in folder "WRobot\Profiles\Custom Profile\".   ps: I have noted your suggestion to add "tame pet" feature, but I'll don't add it quickly.  
  14. Droidz's post in gathering to fast? was marked as the answer   
    Hello,
     
    To resolve this problem you can increment min/max latency.
     
    For it:
    Go to tab "General Settings". Button "Enter advanced settings…". Go to tab "Other options". Edit option "Latency – Min x ms | Max: x ms". (try to use 500 and 800)
  15. Droidz's post in Is there any way to downgrade the wrobot? :O was marked as the answer   
    Hello,
     
    No, sorry, wrobot is only for last wow version.
  16. Droidz's post in payment issue! was marked as the answer   
    Hello,
     
    I have reply at your privates messages.
  17. Droidz's post in How to config Fear Ward (Priest) for myself and/or party memeber?? was marked as the answer   
    Hello,   I'll add a spell option like "Cast spell on me"   For wait you can use this lua code instead the spell name (don't forget to activate a spell settings "Not spell, is lua script"): CastSpellByName("Fear Ward", "player")
  18. Droidz's post in Fight class pour démo affli was marked as the answer   
    Bonjour,
     
    Il arrive que wow utilise le nom du sort de base et non le nom du nouveau sort, lancez ce macro dans votre chat wow, il mettra le nom de base et le nom affiché en jeu:
    /run for i=1,200000 do local f=FindSpellBookSlotBySpellID(i,"spell") if f then local n,id=GetSpellBookItemName(f,"spell"),select(2,GetSpellBookItemInfo(f,"spell")) local s=GetSpellInfo(id) s=n==s and " " or "\124cFF4FF763"..s print(id,n,s) end end (si le problème ne viens pas de la me le dire, vous pouvez aussi regarder dans votre fichier log, tous les sorts trouvés y sont écrit en début de fichier).
     
    Pour temporiser vous pouvez utiliser l'option du sort "Timer" (le temps est en millisecondes).
  19. Droidz's post in [Questing] 1 à 90 ?? was marked as the answer   
    Bonjour,
     
    Pour le moment les profils de quêtes ne couvrent pas tous les niveaux/classes.
     
    Vous pouvez utiliser le bot Grinder (ou Automaton), possible de le combiné avec le bot Battlegrounder, plus long que les quêtes mais ça fonctionne aussi.
  20. Droidz's post in Will Not Let Me Pay........ was marked as the answer   
    Hello,   How you have replied in PM that problem is caused by "youtube pop up blocker".   ps: Use AdBlock instead of "youtube blocker" for avoid this problem.
  21. Droidz's post in Probleme Fisherbot tortue de mer was marked as the answer   
    Bonjour,
     
    Je viens de répondre à votre message privé:
  22. Droidz's post in Accidentally Bought 2 Subscriptions was marked as the answer   
    Hello,
     
    Is done.
  23. Droidz's post in Bug: Swift Flight Form and Gathering was marked as the answer   
    Hello,
     
    I have try to fix problem, wait next update and tell me if problem is resolved.
     
    If problem is not solved, please tell me with details problems.
     
    Thanks.
  24. Droidz's post in Prospecting Suggestion was marked as the answer   
    Hello,
     
    For it you can use "My Macro" in advanced general settings.
     
    Or activate option "Auto Make Elemental" (tab "LOOTING AND FARMING OPTIONS") in advanced general settings and add at in the file "WRobot\Data\autoMakeElementalMacro.txt" the line:
    itemName = GetItemInfo(90407) if GetItemCount(itemName) > 9 then RunMacroText("/use " .. itemName) end
  25. Droidz's post in Can anyone tell me what this error means? was marked as the answer   
    Hello,
     
    Can you reinstall redistributable Visual C + + 2010  (X86) and SlimDX (4.0 X86).
     
    If you can try also another profile or use bot "Automaton" if you don't found profile.
     
    What is name of your profile?
×
×
  • Create New...