Jump to content

Droidz

Administrators
  • Posts

    12440
  • Joined

  • Last visited

Community Answers

  1. Droidz's post in Leader wait for Party was marked as the answer   
    Hello,
     
    If you can test this plugin: 
  2. Droidz's post in Problème condition was marked as the answer   
    Bonjour,
     
    Dans "Spell Settings" essayer:
    "Can move during cast" > Yes "Check if know spell, is usable and good distance" > False "Check if target is in view" > False  
    Dans les conditions (Spell Conditions):
    "Is Spell Usabe", "Name" > Blazing Speed , "Need" > True "Me In Move" > True
  3. Droidz's post in Bot doesn't launch was marked as the answer   
    I am sorry but I don't know what is the cause of your problem.   Make all steps of this post: can skip step 7).   If your problem is not resolved send me private message, I'll refund your subscription.
  4. Droidz's post in Make Easy Your Work :) was marked as the answer   
    Hello,
     
    Thank you.
     
    You have product "Profiles Converters" for grinder and gatherer profiles (work also with pet battle profiles but need some xml edits).
     
    For the quest profiles in "Easy quest profile editor" you have a tool to convert hb profiles to WRobot profiles, but you need to fix converted profiles manually (not all informations has converted).
  5. Droidz's post in Créer profil personnalisé was marked as the answer   
    Bonjour,
     
    Créer un profil est vraiment simple, lisez ce guide: http://download.wrobot.eu/wrobot/guides/WRobot%20guide%20FR.pdf(partie  PROFILE CREATOR – CREER UN PROFIL page 51)
     
    Pour le fief c'est plus compliqué, les instructions sont donné sur ce poste: 
  6. Droidz's post in Food/Drink was marked as the answer   
    Bonjour,
     
    Merci de vérifier les minuscules/majuscules et si vous n'avez pas mis d'espaces en trop.
     
    Vérifiez également que l'option "(no item, is spell)" (onglet Food / Drink) est bien décoché.
     
    Si votre problème n'ai pas résolu merci de poster le d'une session buggé.
  7. Droidz's post in Where to find Minimaps.zip was marked as the answer   
    Hello, Now map files are automatically downloaded.
  8. Droidz's post in Easy question but cant find the answer. Is there a hotkey to start stop bot? was marked as the answer   
    Hello, yes.
     
    To pause/stop pause use: ALT-X
    To start/stop: ALT-C
  9. Droidz's post in Food / Drink items was marked as the answer   
    Hello,
     
    I'll reply here: 
  10. Droidz's post in How can i make an Easy Profile for Leveling? was marked as the answer   
    Hello,   You can look this tuto:   After, the best way is to edit existing profiles for understand how this works.   Do not hesitate if you have any questions (I need more detail on what you do not understand for a precise answer).
  11. Droidz's post in Existe t il un moyen de gerer l'aggro ? was marked as the answer   
    Salut.
     
    Généralement quand le perso perd l'aggro c'est que la cible ne le focus plus, donc:
    var reckoningSpell = new Spell("Reckoning"); // http://www.wowhead.com/spell=62124 var target = ObjectManager.Target; // Utilise la cible que tu veux if (target.IsValid && !target.IsTargetingMe) { if (reckoningSpell.KnownSpell && reckoningSpell.IsSpellUsable && reckoningSpell.IsDistanceGood) { reckoningSpell.Launch(); } } Il y a aussi des fonctions lua si tu veux être plus précis.
  12. Droidz's post in Wrotation ne se declenche pas en cas de duel ou d'arènes was marked as the answer   
    Bonjour,
     
    Dans les configurations de WRotation vous pouvez activer l'option "Attack all selected target...".
     
    Le problème (gène) avec cette option c'est que si vous sélectionnez un PNJ ou joueur amis il va essayer de l'attaquer, vous pouvez utiliser 'ALT-X' pour mettre en pause le bot rapidement.
  13. Droidz's post in Clé à vie was marked as the answer   
    Bonjour,
     
    Vous pouvez télécharger WRobot ici: 
     
    Lancer le programme "Update" pour installer WRobot.
  14. Droidz's post in Need download version wrobot was marked as the answer   
    Hello, it is all old WRobot versions (I don't guarantee that this works now and later).
     
    Go here: 
  15. Droidz's post in Profil de quêtes was marked as the answer   
    Bonjour,
     
    Pour les profils horde niveau 90-100 vous pouvez aller sur ce post: 
     
    Sinon il y a également le site Français de WRobot qui contient quelques profils: http://mmorobot.eu/forum.php
  16. Droidz's post in Horder was marked as the answer   
    Hello,
     
    Try this (not tested), for level 97-100 use this

    H 94- 96 Talador.xml

    H 90-95 Frostfire Ridge 300k.xml

    H 90-96 Darkspears edge.xml

    H 92-94 Gorgrond.xml
  17. Droidz's post in Assistance with profile developing please was marked as the answer   
    Hello, sorry for the delay.   Fightclasses structure is easy. You have the spells list (ordered by priority) and all spells have conditions (if all the conditions are true the spell is launched and WRobot return to the first spell, if any condition are false, WRobot go to the next spell).   For Nocombat,Mounted,... just activate/deactivate the spell options.   If you have questions do not hesitate, you can also edit existing Fightclasses to give you an idea of how this works.   ps: You can use lua code like PQR to check if you need to launch or not the spell.
  18. Droidz's post in does this bot working fine? was marked as the answer   
    Resolved by private message
  19. Droidz's post in Probleme Microsoft Visual c++ lancement BOT was marked as the answer   
    Désolé de me répéter mais pouvez vous réinstaller Slimdx: http://slimdx.googlecode.com/files/SlimDX%20Runtime%20.NET%204.0%20x86%20%28January%202012%29.msiet de re télécharger WRobot et de le réinstaller
     
    Essayé également de désactiver votre antivirus.
     
    Faite moi savoir si votre problème est résolu.
  20. Droidz's post in Des erreurs a l'usage d'anciens profils... was marked as the answer   
    Bonjour, oui il y a eu des changement dans le code de Wow sur WoD, ce code devrait fonctionner (si vous utilisez Visual studio pour écrire votre code ajouter la référence "WRobot\Bin\MemoryRobot.dll" en plus).
    using System; using System.Threading; using System.Windows.Forms; using MemoryRobot; using robotManager.Helpful; using Timer = robotManager.Helpful.Timer; using wManager.Wow.Class; using wManager.Wow.Enums; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : ICustomClass { public float Range { get { return 40; } } internal static float InternalRange = 5.0f; private bool _loop; public Int128 lastTarget = Int128.Zero();//Declaration de loop private Timer _Cible = new Timer(0); private Timer _Sappe = new Timer(0); //Zone Sorts #region Spells public readonly Spell ArcaneShot = new Spell("Arcane Shot"); public readonly Spell ArcaneTorrent = new Spell("Arcane Torrent"); public readonly Spell SteadyShot = new Spell("Steady Shot"); public readonly Spell ConcussiveShot = new Spell("Concussive Shot"); public readonly Spell SerpentSting = new Spell("Serpent Sting"); public readonly Spell KillCommand = new Spell("Kill Command"); public readonly Spell HuntersMark = new Spell("Hunter's Mark"); public readonly Spell AspectoftheHawk = new Spell("Aspect of the Hawk"); public readonly Spell CallPet1 = new Spell("Call Pet 1"); public readonly Spell RevivePet = new Spell("Revive Pet"); public readonly Spell ScatterShot = new Spell("Scatter Shot"); #endregion Spells public void Initialize() { Logging.Write("Chargement CHASSEUR MDB PVP"); InternalRange = 5.0f; _loop = true; while (_loop) { try { if (!ObjectManager.Me.IsDead && !Usefuls.IsLoadingOrConnecting && Usefuls.InGame) { Defense(); if (!ObjectManager.Me.IsMounted) { Permanent(); if (ObjectManager.Me.Target.IsNotZero() && ObjectManager.Target.Reaction <= Reaction.Neutral && ObjectManager.Target.IsAlive) Engagement(); } } } catch (Exception e) { Logging.WriteError("CustomClass > Initialize(): " + e); } Thread.Sleep(15); } _loop = false; } public void Defense() { if (ObjectManager.Target.GetDistance < 8 && ObjectManager.Target.IsCast) ArcaneTorrent.Launch(false); if (ObjectManager.Target.IsCast && ScatterShot.IsDistanceGood && ScatterShot.IsSpellUsable) { ScatterShot.Launch(false); return; } } public void Permanent() { if (!AspectoftheHawk.HaveBuff) AspectoftheHawk.Launch(false); if (!ObjectManager.Me.IsCast && (ObjectManager.Pet.Health == 0 || ObjectManager.Pet.Guid.IsZero()) && CallPet1.IsSpellUsable && ObjectManager.Me.InCombat) { CallPet1.Launch(); Thread.Sleep(1000); } if (!ObjectManager.Me.IsCast && (!ObjectManager.Pet.IsAlive || ObjectManager.Pet.Guid.IsZero()) && RevivePet.KnownSpell && RevivePet.IsSpellUsable && ObjectManager.Target.HealthPercent > 10 && ObjectManager.Me.InCombat) { RevivePet.Launch(); Thread.Sleep(1000); return; } if (!ObjectManager.Me.IsCast && !ObjectManager.Pet.IsAlive && RevivePet.KnownSpell && RevivePet.IsSpellUsable && !ObjectManager.Me.InCombat) { RevivePet.Launch(); Thread.Sleep(1000); } } public void Engagement() { if (ObjectManager.Me.Target != lastTarget) { Pull(); } else { Attaque(); } } public void Pull() { Lua.RunMacroText("/petattack"); if (ConcussiveShot.IsSpellUsable && !ObjectManager.Target.HaveBuff(5116)) ConcussiveShot.Launch(false); lastTarget = ObjectManager.Me.Target; } public void Attaque() { if (ConcussiveShot.IsSpellUsable && !ObjectManager.Target.HaveBuff(5116)) { ConcussiveShot.Launch(false); return; } if (KillCommand.IsSpellUsable) { KillCommand.Launch(false); return; } if (!ObjectManager.Target.HaveBuff(1978)) SerpentSting.Launch(false); if (SteadyShot.IsSpellUsable && ObjectManager.Me.Focus < 40) SteadyShot.Launch(false); } public void Dispose() { Logging.Write("Dispose Fight Class Hunter MDB"); _loop = false; } public void ShowConfiguration() { MessageBox.Show("Script pour Hunter MDB : Mauvaise classe"); } }
  21. Droidz's post in gathering lumber was marked as the answer   
    Hello,
     
    Go to:
    Tab "General Settings". Button "Enter advanced settings...". Tab "Looting and Farming options". Activate option "Harvest Timber".
  22. Droidz's post in mine lvl 3 was marked as the answer   
    Bonjour,
     
    J'ai répondu ici:  pour traduire:
  23. Droidz's post in Gros souci de demarrage WROBOT was marked as the answer   
    Salut,
     
    Peux-tu essayer de changer de version de directx (dans les configurations de wow).
     
    Si ça ne fonctionne pas peux tu m'envoyer le fichier log.
  24. Droidz's post in Skinning profile and request... was marked as the answer   
    I have posted quest profile here: 
  25. Droidz's post in Unable to Upload was marked as the answer   
    Do you have access at this address: http://wrobot.eu/index.php?app=downloads&module=post&section=submit&c= ?
×
×
  • Create New...