Jump to content

Droidz

Administrators
  • Posts

    12510
  • Joined

  • Last visited

Everything posted by Droidz

  1. Droidz

    Banwave...

    I wanted to also tell you to beware of unbanning services.
  2. Droidz

    Banwave...

    Hello, Due to recent banwave, I recommand to not use WRobot on your main account (close all wrobot windows and wow before switch on your main account) and you need to know than currently ban risks is high. Ofcourse I have works to avoid new banwave, but keep careful. If you want use WRobot launch it and accept update. Kind regards, Droidz. UPDATE: http://wrobot.eu/forums/topic/4516-banwave-update/
  3. Droidz

    Banwave

    Hello, I'm sorry to tell you than WRobot and the others Wow bot (HB, EWT and TnB) seem currently detected by Blizz and affected by banwave. I come back to you when I get more information. Kind regards, Droidz. EDIT:
  4. Is now fully supported by WRobot (relaunch and update wow and wrobot).
  5. Hello, with lua code like this: TalentMicroButton:Click() if PlayerTalentFrame then PlayerTalentFrameTab2:Click() PlayerTalentFrameTalentsTalentRow1Talent2:Click() PlayerTalentFrameTalentsTalentRow2Talent1:Click() PlayerTalentFrameTalentsTalentRow3Talent1:Click() PlayerTalentFrameTalentsTalentRow4Talent1:Click() PlayerTalentFrameTalentsTalentRow5Talent1:Click() PlayerTalentFrameTalentsTalentRow6Talent1:Click() PlayerTalentFrameTalentsTalentRow7Talent1:Click() PlayerTalentFrameCloseButton:Click() end Replace talent number, in PlayerTalentFrameTalentsTalentRow4Talent1:Click() replace 1 by 1, 2 or 3 (talent number) (in the line, is the row 4, it is the talent for level 60) You can get wow button name with this script: http://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447
  6. Hello, wManager.Events.FightEvents.OnFightStart += (target, cancelable) => { cancelable.Cancel = true; while (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && ObjectManager.Me.InCombat) { // you custom move.... } };
  7. Hello, can you give me wowhead link of one of this quest.
  8. Hello, use c# code like: wManager.Events.FightEvents.OnFightEnd += delegate(Int128 guid) { uint itemId = 86143; // Battle Pet Bandage if (ItemsManager.HasItemById(itemId)) { if (PetBattles.PetJournalGetHealth(1) != PetBattles.PetJournalGetMaxHealth(1) || PetBattles.PetJournalGetHealth(2) != PetBattles.PetJournalGetMaxHealth(2) || PetBattles.PetJournalGetHealth(3) != PetBattles.PetJournalGetMaxHealth(3)) { ItemsManager.UseItem(itemId); Usefuls.WaitIsCasting(); } } };
  9. Hello, you can try to use condition "Target Casting Time Left".
  10. Hello, no sorry, you can only draw lines and circles (check Radar3D class)
  11. Hello, if you can wait next update, I have fixed problem.
  12. http://wrobot.eu/files/category/158-broken-isles/
  13. Hello, like this: wManager.Events.FightEvents.OnFightLoop += (unit, cancelable) => { var me = wManager.Wow.ObjectManager.ObjectManager.Me; var target = wManager.Wow.ObjectManager.ObjectManager.Target; if (me.IsAlive && target.IsAlive && !me.IsCast && me.HaveBuff("Buff name")) { wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.STRAFELEFT, 1000 * 3); // strage left during 3 secondes } }; (run this code only one time by wrobot session)
  14. I'll create meshes for 7.1.0 version soon I'll resolve this problem in next updates.
  15. Changed Status to Confirmed Changed Version to All
  16. Hello, Can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/).
  17. Hello, Go to tab "Tools" > "Development tools", paste this code in textbox: wManager.Wow.Helpers.PathFinder.Pather.LoadAllTiles(); and press button "C# (....", wait (WRobot will download all tiles (meshes) of current continent).
  18. Hello, you cannot, but you can try code like (not tested): wManager.Plugin.PluginsManager.DisposeAllPlugins(); wManager.Events.PluginEvents.OnLoadPlugin += delegate(string pluginfile, CancelEventArgs cancelable) { if (pluginfile == "plugin file name.cs") { cancelable.Cancel = true; } }; wManager.Plugin.PluginsManager.LoadAllPlugins();
  19. Hello, can you send me screenshot of the button (you can also find bouton name in wow interface code https://github.com/tomrus88/BlizzardInterfaceCode )
  20. Hello, to use keyboard: robotManager.Helpful.Keyboard.PressKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.Escape); (You can also use Keyboard.DownKey(...) or Keyboard.UpKey(...) (https://msdn.microsoft.com/fr-fr/library/system.windows.forms.keys(v=vs.110).aspx ) To use Wow keybinding: wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.JUMP);
  21. Hello, Korean servers was not update to wow 7.1.0 build 22989?
×
×
  • Create New...