Jump to content

Droidz

Administrators
  • Posts

    12586
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, I don't know what happened but the problem is solved You can found your license key here: https://wrobot.eu/clients/purchases/ Kind regards
  2. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  3. Hello, try lua function PetAssistMode(); or lua macro /petassist
  4. Is strange, use radar3d (tab map) to check if node is blacklisted correctly. Can you share your log?
  5. yes you need to move file in folder "Data" (don't forget to close bot before, you can copy of your current file before). You need to select your digsite (in product settings, look names) and click on button "Selected dig site is at my current location"
  6. Hello, try https://wrobot.eu/files/file/276-seus-journey-to-the-center-of-the-earth-pandaria-archaeology-100-complete/?tab=comments#comment-6865 or https://github.com/droidzfr/WRobot_Packages/blob/master/legion/Data/Digsites.xml (or fix manually digsites positions)
  7. Hello, yes you can use key on several computers but not at the same time (with 1 session). If you want use on several computers at the same time you need to buy subscription with more session
  8. Hello, Some fight classes do that.
  9. Hello,
  10. Hello, yes WRobot don't support Bliazzard servers
  11. if this don't resolve your problem if you can share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  12. Hello, if you use wow addons try to disable all.
  13. you get this problem since when? Seem fightclass problem
  14. if you can try with the new update
  15. Hello, You play on Warmane?
  16. Hi, no, ISboxer probably read keyboard input to send same key to the second window, but WRobot little use of the keyboard
  17. https://support.avast.com/en-ww/article/168/ Exclude WRobot files and this website (for Wotlk): wrobot.eu pathfinderwotlk.wrobot.eu pathfinderwotlk.mmorobot.com pathfinderwotlk3.wrobot.eu pathfinderwotlk4.wrobot.eu
  18. I cannot reproduce problem: UyR5mNK15a.mp4
  19. Hi, I don't used asynchronous programming with WRobot. Create new thread to run your code.
  20. Hi, I looked several times but I don't understand either. @Kamogli you also don't use food?
  21. Hello, You have error in your log file when avast is enabled?
  22. No tested, but use code like: public static bool CastSpell(Spell spell, WoWUnit unit, bool force) { // Handle bullshit units if (unit == null || !unit.IsValid || unit.IsDead || !spell.KnownSpell || !spell.IsSpellUsable) { return false; } // Check If Toon is Wanding if (spell.Name == "Shoot" && IsAutoRepeating("Shoot")) { return true; } // Fuck off if toon is already casting and (force == false) if (ObjectManager.Me.IsCast && !force) return false; // Stop moving if spell needs to be cast if (spell.CastTime > 0) MovementManager.StopMoveTo(false, Usefuls.Latency + 500); // Force cast spell if (force == true) if (force) Lua.LuaDoString("SpellStopCasting();"); // Cast AoE spells by location if (AreaSpells.Contains(spell.Name)) { Lua.LuaDoString("CastSpellByName(\"" + spell.NameInGame + "\")"); ClickOnTerrain.Pulse(unit.Position); } else { // Face unit to cast if (!unit.IsLocalPlayer) MovementManager.Face(unit); if (unit.IsLocalPlayer || unit.Type == WoWObjectType.Player) SpellManager.CastSpellByNameOn(spell.NameInGame, unit.Name); if (unit.IsMyTarget) SpellManager.CastSpellByNameOn(spell.NameInGame, "target"); else { var old = ObjectManager.Me.MouseOverGuid; ObjectManager.Me.MouseOverGuid = unit.Guid; SpellManager.CastSpellByNameOn(spell.NameInGame, "mouseover"); ObjectManager.Me.MouseOverGuid = old; } } return true; }
×
×
  • Create New...