Everything posted by Droidz
-
Profil de quêtes
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
- Horde Grinder
-
Horder
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
-
plug in needed
Hello, I have just posted "multi pull" plugin here: I'll work on plugin for buy with honor point.
-
Multi Pull
- 2700 downloads
- Version 2.0
Multi Pull Beta Plugin for multiple pulling in combat.- 24 comments
- 4 reviews
-
Offhand Equipping
Hello, Wait next update, I have added support.
-
mine lvl 3
Je viens d'essayer et ça fonctionne, il faut également dans "advanced general settings" onglet "Others..." désactiver l'option "Use Path Finder".
-
Ashran (Artifact Fragments + Bonus Objective: Molten Quarry)
Try this profile for horde:
-
Ashran (Artifact Fragments + Bonus Objective Brute's Rise)
- 397 downloads
Ashran (Artifact Fragments + Bonus Objective) (Level 100) Recommended Horde ps: You can use -
Profile Creator Help
Hello, Can you give wowhead link of targets and the map zone. You can look this video to understand how to create grinder profile (it is old WRobot version but it is same way)
-
Recalling my hunter pet!
Put at this option: Call Pet 1 And save your fightclass. If this don't works please send me your fightclass (to attach file at your reply look ).
-
Assistance with profile developing please
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.
-
Ranged dps broken
Hello, WRobot not support Wow fullscreen mode (you need to use window mode when you use WRobot). If you can send me your please. For wait you can try to activate option "Use lua to move" and
-
does this bot working fine?
Resolved by private message
-
Probleme Microsoft Visual c++ lancement BOT
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.
- Cant find survey spell
-
Party healer not healing itself
ps: For heal fightclass I recommand to use C# ( ) it is more powerfull.
-
Recalling my hunter pet!
Hello, Check in your fightclass (Button "Create Fightclass" tab "Tools" and load your fightclass) if the spell name of option "Call pet spell name" is good.
-
Des erreurs a l'usage d'anciens profils...
Tu as bien mis public Int128 lastTarget = Int128.Zero(); Et tu utilise bien la dernière version de wManager comme référence?
-
Ashran
Hello, If you can try this profile:
-
Ashran (Artifact Fragments + Bonus Objective: Molten Quarry)
- 444 downloads
Ashran (Artifact Fragments + Bonus Objective) (Level 100) Recommended Alliance ps: You can use - Auto Accept (Wow Popup window)
-
Des erreurs a l'usage d'anciens profils...
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"); } }
-
98-100 Meatgut Needs Bones file Query
Hello, Do you have activated option "Repair", "Sell", "Send mail" and settings the quality of items at sell, and settings mail (in advanced general settings)?
-
gathering lumber
Hello, Go to: Tab "General Settings". Button "Enter advanced settings...". Tab "Looting and Farming options". Activate option "Harvest Timber".