Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Droidz

Administrators
  • Joined

  • Last visited

Everything posted by Droidz

  1. 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
  2. Hello, Reply here:
  3. Droidz replied to Dynasty's topic in General discussion
    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
  4. Hello, I have just posted "multi pull" plugin here: I'll work on plugin for buy with honor point.
    • 2700 downloads
    • Version 2.0
    Multi Pull Beta Plugin for multiple pulling in combat.
  5. Hello, Wait next update, I have added support.
  6. Droidz replied to joelbest's topic in Français
    Je viens d'essayer et ça fonctionne, il faut également dans "advanced general settings" onglet "Others..." désactiver l'option "Use Path Finder".
    • 397 downloads
    Ashran (Artifact Fragments + Bonus Objective) (Level 100) Recommended Horde ps: You can use
  7. 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)
  8. 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 ).
  9. 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.
  10. 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
  11. Resolved by private message
  12. 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.
  13. Hello, can you send me your please.
  14. ps: For heal fightclass I recommand to use C# ( ) it is more powerfull.
  15. 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.
  16. Tu as bien mis public Int128 lastTarget = Int128.Zero(); Et tu utilise bien la dernière version de wManager comme référence?
  17. Hello, If you can try this profile:
    • 444 downloads
    Ashran (Artifact Fragments + Bonus Objective) (Level 100) Recommended Alliance ps: You can use
    • 1474 downloads
    Auto Accept Auto accept pop-up window (works to join Ashran)
  18. 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"); } }
  19. 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)?
  20. Hello, Go to: Tab "General Settings". Button "Enter advanced settings...". Tab "Looting and Farming options". Activate option "Harvest Timber".

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.